All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/config/accesslog/v2/als.proto

package io.envoyproxy.envoy.config.accesslog.v2;

/**
 * 
 * Common configuration for gRPC access logs.
 * 
* * Protobuf type {@code envoy.config.accesslog.v2.CommonGrpcAccessLogConfig} */ public final class CommonGrpcAccessLogConfig extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) CommonGrpcAccessLogConfigOrBuilder { private static final long serialVersionUID = 0L; // Use CommonGrpcAccessLogConfig.newBuilder() to construct. private CommonGrpcAccessLogConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CommonGrpcAccessLogConfig() { logName_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CommonGrpcAccessLogConfig(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private CommonGrpcAccessLogConfig( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); logName_ = s; break; } case 18: { io.envoyproxy.envoy.api.v2.core.GrpcService.Builder subBuilder = null; if (grpcService_ != null) { subBuilder = grpcService_.toBuilder(); } grpcService_ = input.readMessage(io.envoyproxy.envoy.api.v2.core.GrpcService.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(grpcService_); grpcService_ = subBuilder.buildPartial(); } break; } case 26: { com.google.protobuf.Duration.Builder subBuilder = null; if (bufferFlushInterval_ != null) { subBuilder = bufferFlushInterval_.toBuilder(); } bufferFlushInterval_ = input.readMessage(com.google.protobuf.Duration.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(bufferFlushInterval_); bufferFlushInterval_ = subBuilder.buildPartial(); } break; } case 34: { com.google.protobuf.UInt32Value.Builder subBuilder = null; if (bufferSizeBytes_ != null) { subBuilder = bufferSizeBytes_.toBuilder(); } bufferSizeBytes_ = input.readMessage(com.google.protobuf.UInt32Value.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(bufferSizeBytes_); bufferSizeBytes_ = subBuilder.buildPartial(); } break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.config.accesslog.v2.AlsProto.internal_static_envoy_config_accesslog_v2_CommonGrpcAccessLogConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.accesslog.v2.AlsProto.internal_static_envoy_config_accesslog_v2_CommonGrpcAccessLogConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.class, io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.Builder.class); } public static final int LOG_NAME_FIELD_NUMBER = 1; private volatile java.lang.Object logName_; /** *
   * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
   * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
   * access log server to differentiate between different access logs coming from the same Envoy.
   * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public java.lang.String getLogName() { java.lang.Object ref = logName_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); logName_ = s; return s; } } /** *
   * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
   * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
   * access log server to differentiate between different access logs coming from the same Envoy.
   * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public com.google.protobuf.ByteString getLogNameBytes() { java.lang.Object ref = logName_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); logName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int GRPC_SERVICE_FIELD_NUMBER = 2; private io.envoyproxy.envoy.api.v2.core.GrpcService grpcService_; /** *
   * The gRPC service for the access log service.
   * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public boolean hasGrpcService() { return grpcService_ != null; } /** *
   * The gRPC service for the access log service.
   * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.api.v2.core.GrpcService getGrpcService() { return grpcService_ == null ? io.envoyproxy.envoy.api.v2.core.GrpcService.getDefaultInstance() : grpcService_; } /** *
   * The gRPC service for the access log service.
   * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.api.v2.core.GrpcServiceOrBuilder getGrpcServiceOrBuilder() { return getGrpcService(); } public static final int BUFFER_FLUSH_INTERVAL_FIELD_NUMBER = 3; private com.google.protobuf.Duration bufferFlushInterval_; /** *
   * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
   * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
   * 1 second.
   * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public boolean hasBufferFlushInterval() { return bufferFlushInterval_ != null; } /** *
   * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
   * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
   * 1 second.
   * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public com.google.protobuf.Duration getBufferFlushInterval() { return bufferFlushInterval_ == null ? com.google.protobuf.Duration.getDefaultInstance() : bufferFlushInterval_; } /** *
   * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
   * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
   * 1 second.
   * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public com.google.protobuf.DurationOrBuilder getBufferFlushIntervalOrBuilder() { return getBufferFlushInterval(); } public static final int BUFFER_SIZE_BYTES_FIELD_NUMBER = 4; private com.google.protobuf.UInt32Value bufferSizeBytes_; /** *
   * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
   * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
   * to zero effectively disables the batching. Defaults to 16384.
   * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public boolean hasBufferSizeBytes() { return bufferSizeBytes_ != null; } /** *
   * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
   * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
   * to zero effectively disables the batching. Defaults to 16384.
   * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public com.google.protobuf.UInt32Value getBufferSizeBytes() { return bufferSizeBytes_ == null ? com.google.protobuf.UInt32Value.getDefaultInstance() : bufferSizeBytes_; } /** *
   * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
   * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
   * to zero effectively disables the batching. Defaults to 16384.
   * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public com.google.protobuf.UInt32ValueOrBuilder getBufferSizeBytesOrBuilder() { return getBufferSizeBytes(); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getLogNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, logName_); } if (grpcService_ != null) { output.writeMessage(2, getGrpcService()); } if (bufferFlushInterval_ != null) { output.writeMessage(3, getBufferFlushInterval()); } if (bufferSizeBytes_ != null) { output.writeMessage(4, getBufferSizeBytes()); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getLogNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, logName_); } if (grpcService_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getGrpcService()); } if (bufferFlushInterval_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getBufferFlushInterval()); } if (bufferSizeBytes_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, getBufferSizeBytes()); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig)) { return super.equals(obj); } io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig other = (io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) obj; if (!getLogName() .equals(other.getLogName())) return false; if (hasGrpcService() != other.hasGrpcService()) return false; if (hasGrpcService()) { if (!getGrpcService() .equals(other.getGrpcService())) return false; } if (hasBufferFlushInterval() != other.hasBufferFlushInterval()) return false; if (hasBufferFlushInterval()) { if (!getBufferFlushInterval() .equals(other.getBufferFlushInterval())) return false; } if (hasBufferSizeBytes() != other.hasBufferSizeBytes()) return false; if (hasBufferSizeBytes()) { if (!getBufferSizeBytes() .equals(other.getBufferSizeBytes())) return false; } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + LOG_NAME_FIELD_NUMBER; hash = (53 * hash) + getLogName().hashCode(); if (hasGrpcService()) { hash = (37 * hash) + GRPC_SERVICE_FIELD_NUMBER; hash = (53 * hash) + getGrpcService().hashCode(); } if (hasBufferFlushInterval()) { hash = (37 * hash) + BUFFER_FLUSH_INTERVAL_FIELD_NUMBER; hash = (53 * hash) + getBufferFlushInterval().hashCode(); } if (hasBufferSizeBytes()) { hash = (37 * hash) + BUFFER_SIZE_BYTES_FIELD_NUMBER; hash = (53 * hash) + getBufferSizeBytes().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Common configuration for gRPC access logs.
   * 
* * Protobuf type {@code envoy.config.accesslog.v2.CommonGrpcAccessLogConfig} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfigOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.config.accesslog.v2.AlsProto.internal_static_envoy_config_accesslog_v2_CommonGrpcAccessLogConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.accesslog.v2.AlsProto.internal_static_envoy_config_accesslog_v2_CommonGrpcAccessLogConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.class, io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.Builder.class); } // Construct using io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); logName_ = ""; if (grpcServiceBuilder_ == null) { grpcService_ = null; } else { grpcService_ = null; grpcServiceBuilder_ = null; } if (bufferFlushIntervalBuilder_ == null) { bufferFlushInterval_ = null; } else { bufferFlushInterval_ = null; bufferFlushIntervalBuilder_ = null; } if (bufferSizeBytesBuilder_ == null) { bufferSizeBytes_ = null; } else { bufferSizeBytes_ = null; bufferSizeBytesBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.config.accesslog.v2.AlsProto.internal_static_envoy_config_accesslog_v2_CommonGrpcAccessLogConfig_descriptor; } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig getDefaultInstanceForType() { return io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig build() { io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig buildPartial() { io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig result = new io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig(this); result.logName_ = logName_; if (grpcServiceBuilder_ == null) { result.grpcService_ = grpcService_; } else { result.grpcService_ = grpcServiceBuilder_.build(); } if (bufferFlushIntervalBuilder_ == null) { result.bufferFlushInterval_ = bufferFlushInterval_; } else { result.bufferFlushInterval_ = bufferFlushIntervalBuilder_.build(); } if (bufferSizeBytesBuilder_ == null) { result.bufferSizeBytes_ = bufferSizeBytes_; } else { result.bufferSizeBytes_ = bufferSizeBytesBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) { return mergeFrom((io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig other) { if (other == io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig.getDefaultInstance()) return this; if (!other.getLogName().isEmpty()) { logName_ = other.logName_; onChanged(); } if (other.hasGrpcService()) { mergeGrpcService(other.getGrpcService()); } if (other.hasBufferFlushInterval()) { mergeBufferFlushInterval(other.getBufferFlushInterval()); } if (other.hasBufferSizeBytes()) { mergeBufferSizeBytes(other.getBufferSizeBytes()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object logName_ = ""; /** *
     * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
     * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
     * access log server to differentiate between different access logs coming from the same Envoy.
     * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public java.lang.String getLogName() { java.lang.Object ref = logName_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); logName_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
     * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
     * access log server to differentiate between different access logs coming from the same Envoy.
     * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public com.google.protobuf.ByteString getLogNameBytes() { java.lang.Object ref = logName_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); logName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
     * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
     * access log server to differentiate between different access logs coming from the same Envoy.
     * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public Builder setLogName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } logName_ = value; onChanged(); return this; } /** *
     * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
     * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
     * access log server to differentiate between different access logs coming from the same Envoy.
     * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public Builder clearLogName() { logName_ = getDefaultInstance().getLogName(); onChanged(); return this; } /** *
     * The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier
     * <envoy_api_msg_service.accesslog.v2.StreamAccessLogsMessage.Identifier>`. This allows the
     * access log server to differentiate between different access logs coming from the same Envoy.
     * 
* * string log_name = 1 [(.validate.rules) = { ... } */ public Builder setLogNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); logName_ = value; onChanged(); return this; } private io.envoyproxy.envoy.api.v2.core.GrpcService grpcService_; private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.GrpcService, io.envoyproxy.envoy.api.v2.core.GrpcService.Builder, io.envoyproxy.envoy.api.v2.core.GrpcServiceOrBuilder> grpcServiceBuilder_; /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public boolean hasGrpcService() { return grpcServiceBuilder_ != null || grpcService_ != null; } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.api.v2.core.GrpcService getGrpcService() { if (grpcServiceBuilder_ == null) { return grpcService_ == null ? io.envoyproxy.envoy.api.v2.core.GrpcService.getDefaultInstance() : grpcService_; } else { return grpcServiceBuilder_.getMessage(); } } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public Builder setGrpcService(io.envoyproxy.envoy.api.v2.core.GrpcService value) { if (grpcServiceBuilder_ == null) { if (value == null) { throw new NullPointerException(); } grpcService_ = value; onChanged(); } else { grpcServiceBuilder_.setMessage(value); } return this; } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public Builder setGrpcService( io.envoyproxy.envoy.api.v2.core.GrpcService.Builder builderForValue) { if (grpcServiceBuilder_ == null) { grpcService_ = builderForValue.build(); onChanged(); } else { grpcServiceBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public Builder mergeGrpcService(io.envoyproxy.envoy.api.v2.core.GrpcService value) { if (grpcServiceBuilder_ == null) { if (grpcService_ != null) { grpcService_ = io.envoyproxy.envoy.api.v2.core.GrpcService.newBuilder(grpcService_).mergeFrom(value).buildPartial(); } else { grpcService_ = value; } onChanged(); } else { grpcServiceBuilder_.mergeFrom(value); } return this; } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public Builder clearGrpcService() { if (grpcServiceBuilder_ == null) { grpcService_ = null; onChanged(); } else { grpcService_ = null; grpcServiceBuilder_ = null; } return this; } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.api.v2.core.GrpcService.Builder getGrpcServiceBuilder() { onChanged(); return getGrpcServiceFieldBuilder().getBuilder(); } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.api.v2.core.GrpcServiceOrBuilder getGrpcServiceOrBuilder() { if (grpcServiceBuilder_ != null) { return grpcServiceBuilder_.getMessageOrBuilder(); } else { return grpcService_ == null ? io.envoyproxy.envoy.api.v2.core.GrpcService.getDefaultInstance() : grpcService_; } } /** *
     * The gRPC service for the access log service.
     * 
* * .envoy.api.v2.core.GrpcService grpc_service = 2 [(.validate.rules) = { ... } */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.GrpcService, io.envoyproxy.envoy.api.v2.core.GrpcService.Builder, io.envoyproxy.envoy.api.v2.core.GrpcServiceOrBuilder> getGrpcServiceFieldBuilder() { if (grpcServiceBuilder_ == null) { grpcServiceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.GrpcService, io.envoyproxy.envoy.api.v2.core.GrpcService.Builder, io.envoyproxy.envoy.api.v2.core.GrpcServiceOrBuilder>( getGrpcService(), getParentForChildren(), isClean()); grpcService_ = null; } return grpcServiceBuilder_; } private com.google.protobuf.Duration bufferFlushInterval_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> bufferFlushIntervalBuilder_; /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public boolean hasBufferFlushInterval() { return bufferFlushIntervalBuilder_ != null || bufferFlushInterval_ != null; } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public com.google.protobuf.Duration getBufferFlushInterval() { if (bufferFlushIntervalBuilder_ == null) { return bufferFlushInterval_ == null ? com.google.protobuf.Duration.getDefaultInstance() : bufferFlushInterval_; } else { return bufferFlushIntervalBuilder_.getMessage(); } } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public Builder setBufferFlushInterval(com.google.protobuf.Duration value) { if (bufferFlushIntervalBuilder_ == null) { if (value == null) { throw new NullPointerException(); } bufferFlushInterval_ = value; onChanged(); } else { bufferFlushIntervalBuilder_.setMessage(value); } return this; } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public Builder setBufferFlushInterval( com.google.protobuf.Duration.Builder builderForValue) { if (bufferFlushIntervalBuilder_ == null) { bufferFlushInterval_ = builderForValue.build(); onChanged(); } else { bufferFlushIntervalBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public Builder mergeBufferFlushInterval(com.google.protobuf.Duration value) { if (bufferFlushIntervalBuilder_ == null) { if (bufferFlushInterval_ != null) { bufferFlushInterval_ = com.google.protobuf.Duration.newBuilder(bufferFlushInterval_).mergeFrom(value).buildPartial(); } else { bufferFlushInterval_ = value; } onChanged(); } else { bufferFlushIntervalBuilder_.mergeFrom(value); } return this; } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public Builder clearBufferFlushInterval() { if (bufferFlushIntervalBuilder_ == null) { bufferFlushInterval_ = null; onChanged(); } else { bufferFlushInterval_ = null; bufferFlushIntervalBuilder_ = null; } return this; } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public com.google.protobuf.Duration.Builder getBufferFlushIntervalBuilder() { onChanged(); return getBufferFlushIntervalFieldBuilder().getBuilder(); } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ public com.google.protobuf.DurationOrBuilder getBufferFlushIntervalOrBuilder() { if (bufferFlushIntervalBuilder_ != null) { return bufferFlushIntervalBuilder_.getMessageOrBuilder(); } else { return bufferFlushInterval_ == null ? com.google.protobuf.Duration.getDefaultInstance() : bufferFlushInterval_; } } /** *
     * Interval for flushing access logs to the gRPC stream. Logger will flush requests every time
     * this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to
     * 1 second.
     * 
* * .google.protobuf.Duration buffer_flush_interval = 3 [(.validate.rules) = { ... } */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getBufferFlushIntervalFieldBuilder() { if (bufferFlushIntervalBuilder_ == null) { bufferFlushIntervalBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( getBufferFlushInterval(), getParentForChildren(), isClean()); bufferFlushInterval_ = null; } return bufferFlushIntervalBuilder_; } private com.google.protobuf.UInt32Value bufferSizeBytes_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.UInt32Value, com.google.protobuf.UInt32Value.Builder, com.google.protobuf.UInt32ValueOrBuilder> bufferSizeBytesBuilder_; /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public boolean hasBufferSizeBytes() { return bufferSizeBytesBuilder_ != null || bufferSizeBytes_ != null; } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public com.google.protobuf.UInt32Value getBufferSizeBytes() { if (bufferSizeBytesBuilder_ == null) { return bufferSizeBytes_ == null ? com.google.protobuf.UInt32Value.getDefaultInstance() : bufferSizeBytes_; } else { return bufferSizeBytesBuilder_.getMessage(); } } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public Builder setBufferSizeBytes(com.google.protobuf.UInt32Value value) { if (bufferSizeBytesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } bufferSizeBytes_ = value; onChanged(); } else { bufferSizeBytesBuilder_.setMessage(value); } return this; } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public Builder setBufferSizeBytes( com.google.protobuf.UInt32Value.Builder builderForValue) { if (bufferSizeBytesBuilder_ == null) { bufferSizeBytes_ = builderForValue.build(); onChanged(); } else { bufferSizeBytesBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public Builder mergeBufferSizeBytes(com.google.protobuf.UInt32Value value) { if (bufferSizeBytesBuilder_ == null) { if (bufferSizeBytes_ != null) { bufferSizeBytes_ = com.google.protobuf.UInt32Value.newBuilder(bufferSizeBytes_).mergeFrom(value).buildPartial(); } else { bufferSizeBytes_ = value; } onChanged(); } else { bufferSizeBytesBuilder_.mergeFrom(value); } return this; } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public Builder clearBufferSizeBytes() { if (bufferSizeBytesBuilder_ == null) { bufferSizeBytes_ = null; onChanged(); } else { bufferSizeBytes_ = null; bufferSizeBytesBuilder_ = null; } return this; } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public com.google.protobuf.UInt32Value.Builder getBufferSizeBytesBuilder() { onChanged(); return getBufferSizeBytesFieldBuilder().getBuilder(); } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ public com.google.protobuf.UInt32ValueOrBuilder getBufferSizeBytesOrBuilder() { if (bufferSizeBytesBuilder_ != null) { return bufferSizeBytesBuilder_.getMessageOrBuilder(); } else { return bufferSizeBytes_ == null ? com.google.protobuf.UInt32Value.getDefaultInstance() : bufferSizeBytes_; } } /** *
     * Soft size limit in bytes for access log entries buffer. Logger will buffer requests until
     * this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it
     * to zero effectively disables the batching. Defaults to 16384.
     * 
* * .google.protobuf.UInt32Value buffer_size_bytes = 4; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.UInt32Value, com.google.protobuf.UInt32Value.Builder, com.google.protobuf.UInt32ValueOrBuilder> getBufferSizeBytesFieldBuilder() { if (bufferSizeBytesBuilder_ == null) { bufferSizeBytesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.UInt32Value, com.google.protobuf.UInt32Value.Builder, com.google.protobuf.UInt32ValueOrBuilder>( getBufferSizeBytes(), getParentForChildren(), isClean()); bufferSizeBytes_ = null; } return bufferSizeBytesBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) } // @@protoc_insertion_point(class_scope:envoy.config.accesslog.v2.CommonGrpcAccessLogConfig) private static final io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig(); } public static io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CommonGrpcAccessLogConfig parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new CommonGrpcAccessLogConfig(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.CommonGrpcAccessLogConfig getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy