Interface EndpointInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EndpointInfo,EndpointInfo.Builder
public interface EndpointInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDestinationIp()Destination IP address.com.google.protobuf.ByteStringgetDestinationIpBytes()Destination IP address.StringgetDestinationNetworkUri()URI of the network where this packet is sent to.com.google.protobuf.ByteStringgetDestinationNetworkUriBytes()URI of the network where this packet is sent to.intgetDestinationPort()Destination port.StringgetProtocol()IP protocol in string format, for example: "TCP", "UDP", "ICMP".com.google.protobuf.ByteStringgetProtocolBytes()IP protocol in string format, for example: "TCP", "UDP", "ICMP".StringgetSourceAgentUri()URI of the source telemetry agent this packet originates from.com.google.protobuf.ByteStringgetSourceAgentUriBytes()URI of the source telemetry agent this packet originates from.StringgetSourceIp()Source IP address.com.google.protobuf.ByteStringgetSourceIpBytes()Source IP address.StringgetSourceNetworkUri()URI of the network where this packet originates from.com.google.protobuf.ByteStringgetSourceNetworkUriBytes()URI of the network where this packet originates from.intgetSourcePort()Source port.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSourceIp
String getSourceIp()
Source IP address.
string source_ip = 1;- Returns:
- The sourceIp.
-
getSourceIpBytes
com.google.protobuf.ByteString getSourceIpBytes()
Source IP address.
string source_ip = 1;- Returns:
- The bytes for sourceIp.
-
getDestinationIp
String getDestinationIp()
Destination IP address.
string destination_ip = 2;- Returns:
- The destinationIp.
-
getDestinationIpBytes
com.google.protobuf.ByteString getDestinationIpBytes()
Destination IP address.
string destination_ip = 2;- Returns:
- The bytes for destinationIp.
-
getProtocol
String getProtocol()
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
string protocol = 3;- Returns:
- The protocol.
-
getProtocolBytes
com.google.protobuf.ByteString getProtocolBytes()
IP protocol in string format, for example: "TCP", "UDP", "ICMP".
string protocol = 3;- Returns:
- The bytes for protocol.
-
getSourcePort
int getSourcePort()
Source port. Only valid when protocol is TCP or UDP.
int32 source_port = 4;- Returns:
- The sourcePort.
-
getDestinationPort
int getDestinationPort()
Destination port. Only valid when protocol is TCP or UDP.
int32 destination_port = 5;- Returns:
- The destinationPort.
-
getSourceNetworkUri
String getSourceNetworkUri()
URI of the network where this packet originates from.
string source_network_uri = 6;- Returns:
- The sourceNetworkUri.
-
getSourceNetworkUriBytes
com.google.protobuf.ByteString getSourceNetworkUriBytes()
URI of the network where this packet originates from.
string source_network_uri = 6;- Returns:
- The bytes for sourceNetworkUri.
-
getDestinationNetworkUri
String getDestinationNetworkUri()
URI of the network where this packet is sent to.
string destination_network_uri = 7;- Returns:
- The destinationNetworkUri.
-
getDestinationNetworkUriBytes
com.google.protobuf.ByteString getDestinationNetworkUriBytes()
URI of the network where this packet is sent to.
string destination_network_uri = 7;- Returns:
- The bytes for destinationNetworkUri.
-
getSourceAgentUri
String getSourceAgentUri()
URI of the source telemetry agent this packet originates from.
string source_agent_uri = 8;- Returns:
- The sourceAgentUri.
-
getSourceAgentUriBytes
com.google.protobuf.ByteString getSourceAgentUriBytes()
URI of the source telemetry agent this packet originates from.
string source_agent_uri = 8;- Returns:
- The bytes for sourceAgentUri.
-
-