Interface TCPAccessLogEntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TCPAccessLogEntry,TCPAccessLogEntry.Builder
public interface TCPAccessLogEntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessLogCommongetCommonProperties()Common properties shared by all Envoy access logs.AccessLogCommonOrBuildergetCommonPropertiesOrBuilder()Common properties shared by all Envoy access logs.ConnectionPropertiesgetConnectionProperties()Properties of the TCP connection.ConnectionPropertiesOrBuildergetConnectionPropertiesOrBuilder()Properties of the TCP connection.booleanhasCommonProperties()Common properties shared by all Envoy access logs.booleanhasConnectionProperties()Properties of the TCP connection.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCommonProperties
boolean hasCommonProperties()
Common properties shared by all Envoy access logs.
.envoy.data.accesslog.v3.AccessLogCommon common_properties = 1;- Returns:
- Whether the commonProperties field is set.
-
getCommonProperties
AccessLogCommon getCommonProperties()
Common properties shared by all Envoy access logs.
.envoy.data.accesslog.v3.AccessLogCommon common_properties = 1;- Returns:
- The commonProperties.
-
getCommonPropertiesOrBuilder
AccessLogCommonOrBuilder getCommonPropertiesOrBuilder()
Common properties shared by all Envoy access logs.
.envoy.data.accesslog.v3.AccessLogCommon common_properties = 1;
-
hasConnectionProperties
boolean hasConnectionProperties()
Properties of the TCP connection.
.envoy.data.accesslog.v3.ConnectionProperties connection_properties = 2;- Returns:
- Whether the connectionProperties field is set.
-
getConnectionProperties
ConnectionProperties getConnectionProperties()
Properties of the TCP connection.
.envoy.data.accesslog.v3.ConnectionProperties connection_properties = 2;- Returns:
- The connectionProperties.
-
getConnectionPropertiesOrBuilder
ConnectionPropertiesOrBuilder getConnectionPropertiesOrBuilder()
Properties of the TCP connection.
.envoy.data.accesslog.v3.ConnectionProperties connection_properties = 2;
-
-