io.envoyproxy.envoy.config.accesslog.v3.AccessLogOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/accesslog/v3/accesslog.proto
package io.envoyproxy.envoy.config.accesslog.v3;
public interface AccessLogOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.accesslog.v3.AccessLog)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the access log extension configuration.
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the access log extension configuration.
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Filter which is used to determine if the access log needs to be written.
*
*
* .envoy.config.accesslog.v3.AccessLogFilter filter = 2;
* @return Whether the filter field is set.
*/
boolean hasFilter();
/**
*
* Filter which is used to determine if the access log needs to be written.
*
*
* .envoy.config.accesslog.v3.AccessLogFilter filter = 2;
* @return The filter.
*/
io.envoyproxy.envoy.config.accesslog.v3.AccessLogFilter getFilter();
/**
*
* Filter which is used to determine if the access log needs to be written.
*
*
* .envoy.config.accesslog.v3.AccessLogFilter filter = 2;
*/
io.envoyproxy.envoy.config.accesslog.v3.AccessLogFilterOrBuilder getFilterOrBuilder();
/**
* .google.protobuf.Any typed_config = 4;
* @return Whether the typedConfig field is set.
*/
boolean hasTypedConfig();
/**
* .google.protobuf.Any typed_config = 4;
* @return The typedConfig.
*/
com.google.protobuf.Any getTypedConfig();
/**
* .google.protobuf.Any typed_config = 4;
*/
com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder();
public io.envoyproxy.envoy.config.accesslog.v3.AccessLog.ConfigTypeCase getConfigTypeCase();
}