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

io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog 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/file.proto

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

/**
 * 
 * Custom configuration for an :ref:`AccessLog <envoy_api_msg_config.filter.accesslog.v2.AccessLog>`
 * that writes log entries directly to a file. Configures the built-in *envoy.access_loggers.file*
 * AccessLog.
 * 
* * Protobuf type {@code envoy.config.accesslog.v2.FileAccessLog} */ public final class FileAccessLog extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.config.accesslog.v2.FileAccessLog) FileAccessLogOrBuilder { private static final long serialVersionUID = 0L; // Use FileAccessLog.newBuilder() to construct. private FileAccessLog(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FileAccessLog() { path_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new FileAccessLog(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private FileAccessLog( 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(); path_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); accessLogFormatCase_ = 2; accessLogFormat_ = s; break; } case 26: { com.google.protobuf.Struct.Builder subBuilder = null; if (accessLogFormatCase_ == 3) { subBuilder = ((com.google.protobuf.Struct) accessLogFormat_).toBuilder(); } accessLogFormat_ = input.readMessage(com.google.protobuf.Struct.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.google.protobuf.Struct) accessLogFormat_); accessLogFormat_ = subBuilder.buildPartial(); } accessLogFormatCase_ = 3; break; } case 34: { com.google.protobuf.Struct.Builder subBuilder = null; if (accessLogFormatCase_ == 4) { subBuilder = ((com.google.protobuf.Struct) accessLogFormat_).toBuilder(); } accessLogFormat_ = input.readMessage(com.google.protobuf.Struct.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.google.protobuf.Struct) accessLogFormat_); accessLogFormat_ = subBuilder.buildPartial(); } accessLogFormatCase_ = 4; 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.config.accesslog.v2.FileProto.internal_static_envoy_config_accesslog_v2_FileAccessLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.accesslog.v2.FileProto.internal_static_envoy_config_accesslog_v2_FileAccessLog_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.class, io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.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 { FORMAT(2), JSON_FORMAT(3), TYPED_JSON_FORMAT(4), 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 2: return FORMAT; case 3: return JSON_FORMAT; case 4: return TYPED_JSON_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 PATH_FIELD_NUMBER = 1; private volatile java.lang.Object path_; /** *
   * A path to a local file to which to write the access log entries.
   * 
* * string path = 1 [(.validate.rules) = { ... } * @return The path. */ @java.lang.Override public java.lang.String getPath() { java.lang.Object ref = path_; 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(); path_ = s; return s; } } /** *
   * A path to a local file to which to write the access log entries.
   * 
* * string path = 1 [(.validate.rules) = { ... } * @return The bytes for path. */ @java.lang.Override public com.google.protobuf.ByteString getPathBytes() { java.lang.Object ref = path_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); path_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int FORMAT_FIELD_NUMBER = 2; /** *
   * Access log :ref:`format string<config_access_log_format_strings>`.
   * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
   * :ref:`default format <config_access_log_default_format>`.
   * 
* * string format = 2; * @return Whether the format field is set. */ public boolean hasFormat() { return accessLogFormatCase_ == 2; } /** *
   * Access log :ref:`format string<config_access_log_format_strings>`.
   * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
   * :ref:`default format <config_access_log_default_format>`.
   * 
* * string format = 2; * @return The format. */ public java.lang.String getFormat() { java.lang.Object ref = ""; if (accessLogFormatCase_ == 2) { ref = accessLogFormat_; } 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(); if (accessLogFormatCase_ == 2) { accessLogFormat_ = s; } return s; } } /** *
   * Access log :ref:`format string<config_access_log_format_strings>`.
   * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
   * :ref:`default format <config_access_log_default_format>`.
   * 
* * string format = 2; * @return The bytes for format. */ public com.google.protobuf.ByteString getFormatBytes() { java.lang.Object ref = ""; if (accessLogFormatCase_ == 2) { ref = accessLogFormat_; } if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (accessLogFormatCase_ == 2) { accessLogFormat_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int JSON_FORMAT_FIELD_NUMBER = 3; /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
   * are rendered as strings.
   * 
* * .google.protobuf.Struct json_format = 3; * @return Whether the jsonFormat field is set. */ @java.lang.Override public boolean hasJsonFormat() { return accessLogFormatCase_ == 3; } /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
   * are rendered as strings.
   * 
* * .google.protobuf.Struct json_format = 3; * @return The jsonFormat. */ @java.lang.Override public com.google.protobuf.Struct getJsonFormat() { if (accessLogFormatCase_ == 3) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
   * are rendered as strings.
   * 
* * .google.protobuf.Struct json_format = 3; */ @java.lang.Override public com.google.protobuf.StructOrBuilder getJsonFormatOrBuilder() { if (accessLogFormatCase_ == 3) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } public static final int TYPED_JSON_FORMAT_FIELD_NUMBER = 4; /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
   * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
   * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
   * documentation for a specific command operator for details.
   * 
* * .google.protobuf.Struct typed_json_format = 4; * @return Whether the typedJsonFormat field is set. */ @java.lang.Override public boolean hasTypedJsonFormat() { return accessLogFormatCase_ == 4; } /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
   * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
   * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
   * documentation for a specific command operator for details.
   * 
* * .google.protobuf.Struct typed_json_format = 4; * @return The typedJsonFormat. */ @java.lang.Override public com.google.protobuf.Struct getTypedJsonFormat() { if (accessLogFormatCase_ == 4) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } /** *
   * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
   * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
   * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
   * documentation for a specific command operator for details.
   * 
* * .google.protobuf.Struct typed_json_format = 4; */ @java.lang.Override public com.google.protobuf.StructOrBuilder getTypedJsonFormatOrBuilder() { if (accessLogFormatCase_ == 4) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, path_); } if (accessLogFormatCase_ == 2) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, accessLogFormat_); } if (accessLogFormatCase_ == 3) { output.writeMessage(3, (com.google.protobuf.Struct) accessLogFormat_); } if (accessLogFormatCase_ == 4) { output.writeMessage(4, (com.google.protobuf.Struct) accessLogFormat_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, path_); } if (accessLogFormatCase_ == 2) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, accessLogFormat_); } if (accessLogFormatCase_ == 3) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, (com.google.protobuf.Struct) accessLogFormat_); } if (accessLogFormatCase_ == 4) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, (com.google.protobuf.Struct) 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.config.accesslog.v2.FileAccessLog)) { return super.equals(obj); } io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog other = (io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog) obj; if (!getPath() .equals(other.getPath())) return false; if (!getAccessLogFormatCase().equals(other.getAccessLogFormatCase())) return false; switch (accessLogFormatCase_) { case 2: if (!getFormat() .equals(other.getFormat())) return false; break; case 3: if (!getJsonFormat() .equals(other.getJsonFormat())) return false; break; case 4: if (!getTypedJsonFormat() .equals(other.getTypedJsonFormat())) 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(); hash = (37 * hash) + PATH_FIELD_NUMBER; hash = (53 * hash) + getPath().hashCode(); switch (accessLogFormatCase_) { case 2: hash = (37 * hash) + FORMAT_FIELD_NUMBER; hash = (53 * hash) + getFormat().hashCode(); break; case 3: hash = (37 * hash) + JSON_FORMAT_FIELD_NUMBER; hash = (53 * hash) + getJsonFormat().hashCode(); break; case 4: hash = (37 * hash) + TYPED_JSON_FORMAT_FIELD_NUMBER; hash = (53 * hash) + getTypedJsonFormat().hashCode(); break; case 0: default: } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog 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.FileAccessLog parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog 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.FileAccessLog parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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.FileAccessLog 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_api_msg_config.filter.accesslog.v2.AccessLog>`
   * that writes log entries directly to a file. Configures the built-in *envoy.access_loggers.file*
   * AccessLog.
   * 
* * Protobuf type {@code envoy.config.accesslog.v2.FileAccessLog} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.config.accesslog.v2.FileAccessLog) io.envoyproxy.envoy.config.accesslog.v2.FileAccessLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.config.accesslog.v2.FileProto.internal_static_envoy_config_accesslog_v2_FileAccessLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.config.accesslog.v2.FileProto.internal_static_envoy_config_accesslog_v2_FileAccessLog_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.class, io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.Builder.class); } // Construct using io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.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(); path_ = ""; accessLogFormatCase_ = 0; accessLogFormat_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.config.accesslog.v2.FileProto.internal_static_envoy_config_accesslog_v2_FileAccessLog_descriptor; } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog getDefaultInstanceForType() { return io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog build() { io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog buildPartial() { io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog result = new io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog(this); result.path_ = path_; if (accessLogFormatCase_ == 2) { result.accessLogFormat_ = accessLogFormat_; } if (accessLogFormatCase_ == 3) { if (jsonFormatBuilder_ == null) { result.accessLogFormat_ = accessLogFormat_; } else { result.accessLogFormat_ = jsonFormatBuilder_.build(); } } if (accessLogFormatCase_ == 4) { if (typedJsonFormatBuilder_ == null) { result.accessLogFormat_ = accessLogFormat_; } else { result.accessLogFormat_ = typedJsonFormatBuilder_.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.config.accesslog.v2.FileAccessLog) { return mergeFrom((io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog other) { if (other == io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog.getDefaultInstance()) return this; if (!other.getPath().isEmpty()) { path_ = other.path_; onChanged(); } switch (other.getAccessLogFormatCase()) { case FORMAT: { accessLogFormatCase_ = 2; accessLogFormat_ = other.accessLogFormat_; onChanged(); break; } case JSON_FORMAT: { mergeJsonFormat(other.getJsonFormat()); break; } case TYPED_JSON_FORMAT: { mergeTypedJsonFormat(other.getTypedJsonFormat()); 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.config.accesslog.v2.FileAccessLog parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog) 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 java.lang.Object path_ = ""; /** *
     * A path to a local file to which to write the access log entries.
     * 
* * string path = 1 [(.validate.rules) = { ... } * @return The path. */ public java.lang.String getPath() { java.lang.Object ref = path_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); path_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * A path to a local file to which to write the access log entries.
     * 
* * string path = 1 [(.validate.rules) = { ... } * @return The bytes for path. */ public com.google.protobuf.ByteString getPathBytes() { java.lang.Object ref = path_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); path_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * A path to a local file to which to write the access log entries.
     * 
* * string path = 1 [(.validate.rules) = { ... } * @param value The path to set. * @return This builder for chaining. */ public Builder setPath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } path_ = value; onChanged(); return this; } /** *
     * A path to a local file to which to write the access log entries.
     * 
* * string path = 1 [(.validate.rules) = { ... } * @return This builder for chaining. */ public Builder clearPath() { path_ = getDefaultInstance().getPath(); onChanged(); return this; } /** *
     * A path to a local file to which to write the access log entries.
     * 
* * string path = 1 [(.validate.rules) = { ... } * @param value The bytes for path to set. * @return This builder for chaining. */ public Builder setPathBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); path_ = value; onChanged(); return this; } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @return Whether the format field is set. */ @java.lang.Override public boolean hasFormat() { return accessLogFormatCase_ == 2; } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @return The format. */ @java.lang.Override public java.lang.String getFormat() { java.lang.Object ref = ""; if (accessLogFormatCase_ == 2) { ref = accessLogFormat_; } if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (accessLogFormatCase_ == 2) { accessLogFormat_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @return The bytes for format. */ @java.lang.Override public com.google.protobuf.ByteString getFormatBytes() { java.lang.Object ref = ""; if (accessLogFormatCase_ == 2) { ref = accessLogFormat_; } if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (accessLogFormatCase_ == 2) { accessLogFormat_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @param value The format to set. * @return This builder for chaining. */ public Builder setFormat( java.lang.String value) { if (value == null) { throw new NullPointerException(); } accessLogFormatCase_ = 2; accessLogFormat_ = value; onChanged(); return this; } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @return This builder for chaining. */ public Builder clearFormat() { if (accessLogFormatCase_ == 2) { accessLogFormatCase_ = 0; accessLogFormat_ = null; onChanged(); } return this; } /** *
     * Access log :ref:`format string<config_access_log_format_strings>`.
     * Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
     * :ref:`default format <config_access_log_default_format>`.
     * 
* * string format = 2; * @param value The bytes for format to set. * @return This builder for chaining. */ public Builder setFormatBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); accessLogFormatCase_ = 2; accessLogFormat_ = value; onChanged(); return this; } private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> jsonFormatBuilder_; /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; * @return Whether the jsonFormat field is set. */ @java.lang.Override public boolean hasJsonFormat() { return accessLogFormatCase_ == 3; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; * @return The jsonFormat. */ @java.lang.Override public com.google.protobuf.Struct getJsonFormat() { if (jsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 3) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } else { if (accessLogFormatCase_ == 3) { return jsonFormatBuilder_.getMessage(); } return com.google.protobuf.Struct.getDefaultInstance(); } } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ public Builder setJsonFormat(com.google.protobuf.Struct value) { if (jsonFormatBuilder_ == null) { if (value == null) { throw new NullPointerException(); } accessLogFormat_ = value; onChanged(); } else { jsonFormatBuilder_.setMessage(value); } accessLogFormatCase_ = 3; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ public Builder setJsonFormat( com.google.protobuf.Struct.Builder builderForValue) { if (jsonFormatBuilder_ == null) { accessLogFormat_ = builderForValue.build(); onChanged(); } else { jsonFormatBuilder_.setMessage(builderForValue.build()); } accessLogFormatCase_ = 3; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ public Builder mergeJsonFormat(com.google.protobuf.Struct value) { if (jsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 3 && accessLogFormat_ != com.google.protobuf.Struct.getDefaultInstance()) { accessLogFormat_ = com.google.protobuf.Struct.newBuilder((com.google.protobuf.Struct) accessLogFormat_) .mergeFrom(value).buildPartial(); } else { accessLogFormat_ = value; } onChanged(); } else { if (accessLogFormatCase_ == 3) { jsonFormatBuilder_.mergeFrom(value); } else { jsonFormatBuilder_.setMessage(value); } } accessLogFormatCase_ = 3; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ public Builder clearJsonFormat() { if (jsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 3) { accessLogFormatCase_ = 0; accessLogFormat_ = null; onChanged(); } } else { if (accessLogFormatCase_ == 3) { accessLogFormatCase_ = 0; accessLogFormat_ = null; } jsonFormatBuilder_.clear(); } return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ public com.google.protobuf.Struct.Builder getJsonFormatBuilder() { return getJsonFormatFieldBuilder().getBuilder(); } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ @java.lang.Override public com.google.protobuf.StructOrBuilder getJsonFormatOrBuilder() { if ((accessLogFormatCase_ == 3) && (jsonFormatBuilder_ != null)) { return jsonFormatBuilder_.getMessageOrBuilder(); } else { if (accessLogFormatCase_ == 3) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
     * are rendered as strings.
     * 
* * .google.protobuf.Struct json_format = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> getJsonFormatFieldBuilder() { if (jsonFormatBuilder_ == null) { if (!(accessLogFormatCase_ == 3)) { accessLogFormat_ = com.google.protobuf.Struct.getDefaultInstance(); } jsonFormatBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder>( (com.google.protobuf.Struct) accessLogFormat_, getParentForChildren(), isClean()); accessLogFormat_ = null; } accessLogFormatCase_ = 3; onChanged();; return jsonFormatBuilder_; } private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> typedJsonFormatBuilder_; /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; * @return Whether the typedJsonFormat field is set. */ @java.lang.Override public boolean hasTypedJsonFormat() { return accessLogFormatCase_ == 4; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; * @return The typedJsonFormat. */ @java.lang.Override public com.google.protobuf.Struct getTypedJsonFormat() { if (typedJsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 4) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } else { if (accessLogFormatCase_ == 4) { return typedJsonFormatBuilder_.getMessage(); } return com.google.protobuf.Struct.getDefaultInstance(); } } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ public Builder setTypedJsonFormat(com.google.protobuf.Struct value) { if (typedJsonFormatBuilder_ == null) { if (value == null) { throw new NullPointerException(); } accessLogFormat_ = value; onChanged(); } else { typedJsonFormatBuilder_.setMessage(value); } accessLogFormatCase_ = 4; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ public Builder setTypedJsonFormat( com.google.protobuf.Struct.Builder builderForValue) { if (typedJsonFormatBuilder_ == null) { accessLogFormat_ = builderForValue.build(); onChanged(); } else { typedJsonFormatBuilder_.setMessage(builderForValue.build()); } accessLogFormatCase_ = 4; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ public Builder mergeTypedJsonFormat(com.google.protobuf.Struct value) { if (typedJsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 4 && accessLogFormat_ != com.google.protobuf.Struct.getDefaultInstance()) { accessLogFormat_ = com.google.protobuf.Struct.newBuilder((com.google.protobuf.Struct) accessLogFormat_) .mergeFrom(value).buildPartial(); } else { accessLogFormat_ = value; } onChanged(); } else { if (accessLogFormatCase_ == 4) { typedJsonFormatBuilder_.mergeFrom(value); } else { typedJsonFormatBuilder_.setMessage(value); } } accessLogFormatCase_ = 4; return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ public Builder clearTypedJsonFormat() { if (typedJsonFormatBuilder_ == null) { if (accessLogFormatCase_ == 4) { accessLogFormatCase_ = 0; accessLogFormat_ = null; onChanged(); } } else { if (accessLogFormatCase_ == 4) { accessLogFormatCase_ = 0; accessLogFormat_ = null; } typedJsonFormatBuilder_.clear(); } return this; } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ public com.google.protobuf.Struct.Builder getTypedJsonFormatBuilder() { return getTypedJsonFormatFieldBuilder().getBuilder(); } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ @java.lang.Override public com.google.protobuf.StructOrBuilder getTypedJsonFormatOrBuilder() { if ((accessLogFormatCase_ == 4) && (typedJsonFormatBuilder_ != null)) { return typedJsonFormatBuilder_.getMessageOrBuilder(); } else { if (accessLogFormatCase_ == 4) { return (com.google.protobuf.Struct) accessLogFormat_; } return com.google.protobuf.Struct.getDefaultInstance(); } } /** *
     * Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
     * rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
     * be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
     * documentation for a specific command operator for details.
     * 
* * .google.protobuf.Struct typed_json_format = 4; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> getTypedJsonFormatFieldBuilder() { if (typedJsonFormatBuilder_ == null) { if (!(accessLogFormatCase_ == 4)) { accessLogFormat_ = com.google.protobuf.Struct.getDefaultInstance(); } typedJsonFormatBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder>( (com.google.protobuf.Struct) accessLogFormat_, getParentForChildren(), isClean()); accessLogFormat_ = null; } accessLogFormatCase_ = 4; onChanged();; return typedJsonFormatBuilder_; } @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.FileAccessLog) } // @@protoc_insertion_point(class_scope:envoy.config.accesslog.v2.FileAccessLog) private static final io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog(); } public static io.envoyproxy.envoy.config.accesslog.v2.FileAccessLog getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public FileAccessLog parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new FileAccessLog(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.FileAccessLog getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy