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

io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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/extensions/access_loggers/stream/v3/stream.proto

package io.envoyproxy.envoy.extensions.access_loggers.stream.v3;

/**
 * 
 * Custom configuration for an :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>`
 * that writes log entries directly to the operating system's standard output.
 * [#extension: envoy.access_loggers.stdout]
 * 
* * Protobuf type {@code envoy.extensions.access_loggers.stream.v3.StdoutAccessLog} */ public final class StdoutAccessLog extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.extensions.access_loggers.stream.v3.StdoutAccessLog) StdoutAccessLogOrBuilder { private static final long serialVersionUID = 0L; // Use StdoutAccessLog.newBuilder() to construct. private StdoutAccessLog(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private StdoutAccessLog() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new StdoutAccessLog(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private StdoutAccessLog( 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: { io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder subBuilder = null; if (accessLogFormatCase_ == 1) { subBuilder = ((io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_).toBuilder(); } accessLogFormat_ = input.readMessage(io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_); accessLogFormat_ = subBuilder.buildPartial(); } accessLogFormatCase_ = 1; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().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.extensions.access_loggers.stream.v3.StreamProto.internal_static_envoy_extensions_access_loggers_stream_v3_StdoutAccessLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StreamProto.internal_static_envoy_extensions_access_loggers_stream_v3_StdoutAccessLog_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.class, io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.Builder.class); } private int accessLogFormatCase_ = 0; private java.lang.Object accessLogFormat_; public enum AccessLogFormatCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { LOG_FORMAT(1), ACCESSLOGFORMAT_NOT_SET(0); private final int value; private AccessLogFormatCase(int value) { this.value = value; } /** * @param value The number of the enum to look for. * @return The enum associated with the given number. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static AccessLogFormatCase valueOf(int value) { return forNumber(value); } public static AccessLogFormatCase forNumber(int value) { switch (value) { case 1: return LOG_FORMAT; case 0: return ACCESSLOGFORMAT_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public AccessLogFormatCase getAccessLogFormatCase() { return AccessLogFormatCase.forNumber( accessLogFormatCase_); } public static final int LOG_FORMAT_FIELD_NUMBER = 1; /** *
   * Configuration to form access log data and format.
   * If not specified, use :ref:`default format <config_access_log_default_format>`.
   * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } * @return Whether the logFormat field is set. */ @java.lang.Override public boolean hasLogFormat() { return accessLogFormatCase_ == 1; } /** *
   * Configuration to form access log data and format.
   * If not specified, use :ref:`default format <config_access_log_default_format>`.
   * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } * @return The logFormat. */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString getLogFormat() { if (accessLogFormatCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_; } return io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } /** *
   * Configuration to form access log data and format.
   * If not specified, use :ref:`default format <config_access_log_default_format>`.
   * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.SubstitutionFormatStringOrBuilder getLogFormatOrBuilder() { if (accessLogFormatCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_; } return io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } 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 (accessLogFormatCase_ == 1) { output.writeMessage(1, (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (accessLogFormatCase_ == 1) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_); } 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.extensions.access_loggers.stream.v3.StdoutAccessLog)) { return super.equals(obj); } io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog other = (io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog) obj; if (!getAccessLogFormatCase().equals(other.getAccessLogFormatCase())) return false; switch (accessLogFormatCase_) { case 1: if (!getLogFormat() .equals(other.getLogFormat())) return false; break; case 0: default: } 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(); switch (accessLogFormatCase_) { case 1: hash = (37 * hash) + LOG_FORMAT_FIELD_NUMBER; hash = (53 * hash) + getLogFormat().hashCode(); break; case 0: default: } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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.extensions.access_loggers.stream.v3.StdoutAccessLog parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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.extensions.access_loggers.stream.v3.StdoutAccessLog parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog 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.extensions.access_loggers.stream.v3.StdoutAccessLog 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; } /** *
   * Custom configuration for an :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>`
   * that writes log entries directly to the operating system's standard output.
   * [#extension: envoy.access_loggers.stdout]
   * 
* * Protobuf type {@code envoy.extensions.access_loggers.stream.v3.StdoutAccessLog} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.extensions.access_loggers.stream.v3.StdoutAccessLog) io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StreamProto.internal_static_envoy_extensions_access_loggers_stream_v3_StdoutAccessLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StreamProto.internal_static_envoy_extensions_access_loggers_stream_v3_StdoutAccessLog_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.class, io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.Builder.class); } // Construct using io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.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(); accessLogFormatCase_ = 0; accessLogFormat_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StreamProto.internal_static_envoy_extensions_access_loggers_stream_v3_StdoutAccessLog_descriptor; } @java.lang.Override public io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog getDefaultInstanceForType() { return io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog build() { io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog buildPartial() { io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog result = new io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog(this); if (accessLogFormatCase_ == 1) { if (logFormatBuilder_ == null) { result.accessLogFormat_ = accessLogFormat_; } else { result.accessLogFormat_ = logFormatBuilder_.build(); } } result.accessLogFormatCase_ = accessLogFormatCase_; 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.extensions.access_loggers.stream.v3.StdoutAccessLog) { return mergeFrom((io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog other) { if (other == io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog.getDefaultInstance()) return this; switch (other.getAccessLogFormatCase()) { case LOG_FORMAT: { mergeLogFormat(other.getLogFormat()); break; } case ACCESSLOGFORMAT_NOT_SET: { break; } } 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.extensions.access_loggers.stream.v3.StdoutAccessLog parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int accessLogFormatCase_ = 0; private java.lang.Object accessLogFormat_; public AccessLogFormatCase getAccessLogFormatCase() { return AccessLogFormatCase.forNumber( accessLogFormatCase_); } public Builder clearAccessLogFormat() { accessLogFormatCase_ = 0; accessLogFormat_ = null; onChanged(); return this; } private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatStringOrBuilder> logFormatBuilder_; /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } * @return Whether the logFormat field is set. */ @java.lang.Override public boolean hasLogFormat() { return accessLogFormatCase_ == 1; } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } * @return The logFormat. */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString getLogFormat() { if (logFormatBuilder_ == null) { if (accessLogFormatCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_; } return io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } else { if (accessLogFormatCase_ == 1) { return logFormatBuilder_.getMessage(); } return io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ public Builder setLogFormat(io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString value) { if (logFormatBuilder_ == null) { if (value == null) { throw new NullPointerException(); } accessLogFormat_ = value; onChanged(); } else { logFormatBuilder_.setMessage(value); } accessLogFormatCase_ = 1; return this; } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ public Builder setLogFormat( io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder builderForValue) { if (logFormatBuilder_ == null) { accessLogFormat_ = builderForValue.build(); onChanged(); } else { logFormatBuilder_.setMessage(builderForValue.build()); } accessLogFormatCase_ = 1; return this; } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ public Builder mergeLogFormat(io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString value) { if (logFormatBuilder_ == null) { if (accessLogFormatCase_ == 1 && accessLogFormat_ != io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance()) { accessLogFormat_ = io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.newBuilder((io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_) .mergeFrom(value).buildPartial(); } else { accessLogFormat_ = value; } onChanged(); } else { if (accessLogFormatCase_ == 1) { logFormatBuilder_.mergeFrom(value); } else { logFormatBuilder_.setMessage(value); } } accessLogFormatCase_ = 1; return this; } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ public Builder clearLogFormat() { if (logFormatBuilder_ == null) { if (accessLogFormatCase_ == 1) { accessLogFormatCase_ = 0; accessLogFormat_ = null; onChanged(); } } else { if (accessLogFormatCase_ == 1) { accessLogFormatCase_ = 0; accessLogFormat_ = null; } logFormatBuilder_.clear(); } return this; } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder getLogFormatBuilder() { return getLogFormatFieldBuilder().getBuilder(); } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ @java.lang.Override public io.envoyproxy.envoy.config.core.v3.SubstitutionFormatStringOrBuilder getLogFormatOrBuilder() { if ((accessLogFormatCase_ == 1) && (logFormatBuilder_ != null)) { return logFormatBuilder_.getMessageOrBuilder(); } else { if (accessLogFormatCase_ == 1) { return (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_; } return io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } } /** *
     * Configuration to form access log data and format.
     * If not specified, use :ref:`default format <config_access_log_default_format>`.
     * 
* * .envoy.config.core.v3.SubstitutionFormatString log_format = 1 [(.validate.rules) = { ... } */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatStringOrBuilder> getLogFormatFieldBuilder() { if (logFormatBuilder_ == null) { if (!(accessLogFormatCase_ == 1)) { accessLogFormat_ = io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.getDefaultInstance(); } logFormatBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString.Builder, io.envoyproxy.envoy.config.core.v3.SubstitutionFormatStringOrBuilder>( (io.envoyproxy.envoy.config.core.v3.SubstitutionFormatString) accessLogFormat_, getParentForChildren(), isClean()); accessLogFormat_ = null; } accessLogFormatCase_ = 1; onChanged();; return logFormatBuilder_; } @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.extensions.access_loggers.stream.v3.StdoutAccessLog) } // @@protoc_insertion_point(class_scope:envoy.extensions.access_loggers.stream.v3.StdoutAccessLog) private static final io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog(); } public static io.envoyproxy.envoy.extensions.access_loggers.stream.v3.StdoutAccessLog getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public StdoutAccessLog parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new StdoutAccessLog(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.extensions.access_loggers.stream.v3.StdoutAccessLog getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy