Interface AccessLogOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AccessLog
,AccessLog.Builder
public interface AccessLogOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessLog.ConfigTypeCase
getConfigTypeCase()
AccessLogFilter
getFilter()
Filter which is used to determine if the access log needs to be written.AccessLogFilterOrBuilder
getFilterOrBuilder()
Filter which is used to determine if the access log needs to be written.java.lang.String
getName()
The name of the access log extension configuration.com.google.protobuf.ByteString
getNameBytes()
The name of the access log extension configuration.com.google.protobuf.Any
getTypedConfig()
.google.protobuf.Any typed_config = 4;
com.google.protobuf.AnyOrBuilder
getTypedConfigOrBuilder()
.google.protobuf.Any typed_config = 4;
boolean
hasFilter()
Filter which is used to determine if the access log needs to be written.boolean
hasTypedConfig()
.google.protobuf.Any typed_config = 4;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
The name of the access log extension configuration.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the access log extension configuration.
string name = 1;
- Returns:
- The bytes for name.
-
hasFilter
boolean hasFilter()
Filter which is used to determine if the access log needs to be written.
.envoy.config.accesslog.v3.AccessLogFilter filter = 2;
- Returns:
- Whether the filter field is set.
-
getFilter
AccessLogFilter getFilter()
Filter which is used to determine if the access log needs to be written.
.envoy.config.accesslog.v3.AccessLogFilter filter = 2;
- Returns:
- The filter.
-
getFilterOrBuilder
AccessLogFilterOrBuilder getFilterOrBuilder()
Filter which is used to determine if the access log needs to be written.
.envoy.config.accesslog.v3.AccessLogFilter filter = 2;
-
hasTypedConfig
boolean hasTypedConfig()
.google.protobuf.Any typed_config = 4;
- Returns:
- Whether the typedConfig field is set.
-
getTypedConfig
com.google.protobuf.Any getTypedConfig()
.google.protobuf.Any typed_config = 4;
- Returns:
- The typedConfig.
-
getTypedConfigOrBuilder
com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder()
.google.protobuf.Any typed_config = 4;
-
getConfigTypeCase
AccessLog.ConfigTypeCase getConfigTypeCase()
-
-