protocol property

String? protocol
getter/setter pair

Specifies the network protocol of the agent.

When not specified, the default value of NetworkProtocol NETWORK_PROTOCOL_HTTPS is used. Possible string values are:

  • "NETWORK_PROTOCOL_UNSPECIFIED" : NetworkProtocol is not specified.
  • "NETWORK_PROTOCOL_HTTPS" : Perform requests using HTTPS.
  • "NETWORK_PROTOCOL_HTTP" : Not recommended: This sends data in clear-text. This is only appropriate within a closed network or for publicly available data. Perform requests using HTTP.

Implementation

core.String? protocol;