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

io.envoyproxy.envoy.admin.v3.BootstrapConfigDump Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/admin/v3/config_dump.proto

// Protobuf Java Version: 3.25.5
package io.envoyproxy.envoy.admin.v3;

/**
 * 
 * This message describes the bootstrap configuration that Envoy was started with. This includes
 * any CLI overrides that were merged. Bootstrap configuration information can be used to recreate
 * the static portions of an Envoy configuration by reusing the output as the bootstrap
 * configuration for another Envoy.
 * 
* * Protobuf type {@code envoy.admin.v3.BootstrapConfigDump} */ public final class BootstrapConfigDump extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.admin.v3.BootstrapConfigDump) BootstrapConfigDumpOrBuilder { private static final long serialVersionUID = 0L; // Use BootstrapConfigDump.newBuilder() to construct. private BootstrapConfigDump(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BootstrapConfigDump() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new BootstrapConfigDump(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.admin.v3.ConfigDumpProto.internal_static_envoy_admin_v3_BootstrapConfigDump_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.admin.v3.ConfigDumpProto.internal_static_envoy_admin_v3_BootstrapConfigDump_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.class, io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.Builder.class); } private int bitField0_; public static final int BOOTSTRAP_FIELD_NUMBER = 1; private io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap bootstrap_; /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; * @return Whether the bootstrap field is set. */ @java.lang.Override public boolean hasBootstrap() { return ((bitField0_ & 0x00000001) != 0); } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; * @return The bootstrap. */ @java.lang.Override public io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap getBootstrap() { return bootstrap_ == null ? io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.getDefaultInstance() : bootstrap_; } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ @java.lang.Override public io.envoyproxy.envoy.config.bootstrap.v3.BootstrapOrBuilder getBootstrapOrBuilder() { return bootstrap_ == null ? io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.getDefaultInstance() : bootstrap_; } public static final int LAST_UPDATED_FIELD_NUMBER = 2; private com.google.protobuf.Timestamp lastUpdated_; /** *
   * The timestamp when the BootstrapConfig was last updated.
   * 
* * .google.protobuf.Timestamp last_updated = 2; * @return Whether the lastUpdated field is set. */ @java.lang.Override public boolean hasLastUpdated() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * The timestamp when the BootstrapConfig was last updated.
   * 
* * .google.protobuf.Timestamp last_updated = 2; * @return The lastUpdated. */ @java.lang.Override public com.google.protobuf.Timestamp getLastUpdated() { return lastUpdated_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastUpdated_; } /** *
   * The timestamp when the BootstrapConfig was last updated.
   * 
* * .google.protobuf.Timestamp last_updated = 2; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getLastUpdatedOrBuilder() { return lastUpdated_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastUpdated_; } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(1, getBootstrap()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(2, getLastUpdated()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getBootstrap()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getLastUpdated()); } size += getUnknownFields().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.admin.v3.BootstrapConfigDump)) { return super.equals(obj); } io.envoyproxy.envoy.admin.v3.BootstrapConfigDump other = (io.envoyproxy.envoy.admin.v3.BootstrapConfigDump) obj; if (hasBootstrap() != other.hasBootstrap()) return false; if (hasBootstrap()) { if (!getBootstrap() .equals(other.getBootstrap())) return false; } if (hasLastUpdated() != other.hasLastUpdated()) return false; if (hasLastUpdated()) { if (!getLastUpdated() .equals(other.getLastUpdated())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasBootstrap()) { hash = (37 * hash) + BOOTSTRAP_FIELD_NUMBER; hash = (53 * hash) + getBootstrap().hashCode(); } if (hasLastUpdated()) { hash = (37 * hash) + LAST_UPDATED_FIELD_NUMBER; hash = (53 * hash) + getLastUpdated().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump 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.admin.v3.BootstrapConfigDump parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump 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.admin.v3.BootstrapConfigDump parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump 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.admin.v3.BootstrapConfigDump parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump 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.admin.v3.BootstrapConfigDump parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump 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.admin.v3.BootstrapConfigDump 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; } /** *
   * This message describes the bootstrap configuration that Envoy was started with. This includes
   * any CLI overrides that were merged. Bootstrap configuration information can be used to recreate
   * the static portions of an Envoy configuration by reusing the output as the bootstrap
   * configuration for another Envoy.
   * 
* * Protobuf type {@code envoy.admin.v3.BootstrapConfigDump} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.admin.v3.BootstrapConfigDump) io.envoyproxy.envoy.admin.v3.BootstrapConfigDumpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.admin.v3.ConfigDumpProto.internal_static_envoy_admin_v3_BootstrapConfigDump_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.admin.v3.ConfigDumpProto.internal_static_envoy_admin_v3_BootstrapConfigDump_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.class, io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.Builder.class); } // Construct using io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getBootstrapFieldBuilder(); getLastUpdatedFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; bootstrap_ = null; if (bootstrapBuilder_ != null) { bootstrapBuilder_.dispose(); bootstrapBuilder_ = null; } lastUpdated_ = null; if (lastUpdatedBuilder_ != null) { lastUpdatedBuilder_.dispose(); lastUpdatedBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.admin.v3.ConfigDumpProto.internal_static_envoy_admin_v3_BootstrapConfigDump_descriptor; } @java.lang.Override public io.envoyproxy.envoy.admin.v3.BootstrapConfigDump getDefaultInstanceForType() { return io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.admin.v3.BootstrapConfigDump build() { io.envoyproxy.envoy.admin.v3.BootstrapConfigDump result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.admin.v3.BootstrapConfigDump buildPartial() { io.envoyproxy.envoy.admin.v3.BootstrapConfigDump result = new io.envoyproxy.envoy.admin.v3.BootstrapConfigDump(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(io.envoyproxy.envoy.admin.v3.BootstrapConfigDump result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.bootstrap_ = bootstrapBuilder_ == null ? bootstrap_ : bootstrapBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.lastUpdated_ = lastUpdatedBuilder_ == null ? lastUpdated_ : lastUpdatedBuilder_.build(); to_bitField0_ |= 0x00000002; } result.bitField0_ |= to_bitField0_; } @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.admin.v3.BootstrapConfigDump) { return mergeFrom((io.envoyproxy.envoy.admin.v3.BootstrapConfigDump)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.admin.v3.BootstrapConfigDump other) { if (other == io.envoyproxy.envoy.admin.v3.BootstrapConfigDump.getDefaultInstance()) return this; if (other.hasBootstrap()) { mergeBootstrap(other.getBootstrap()); } if (other.hasLastUpdated()) { mergeLastUpdated(other.getLastUpdated()); } this.mergeUnknownFields(other.getUnknownFields()); 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 { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { input.readMessage( getBootstrapFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage( getLastUpdatedFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap bootstrap_; private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap, io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.Builder, io.envoyproxy.envoy.config.bootstrap.v3.BootstrapOrBuilder> bootstrapBuilder_; /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; * @return Whether the bootstrap field is set. */ public boolean hasBootstrap() { return ((bitField0_ & 0x00000001) != 0); } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; * @return The bootstrap. */ public io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap getBootstrap() { if (bootstrapBuilder_ == null) { return bootstrap_ == null ? io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.getDefaultInstance() : bootstrap_; } else { return bootstrapBuilder_.getMessage(); } } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public Builder setBootstrap(io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap value) { if (bootstrapBuilder_ == null) { if (value == null) { throw new NullPointerException(); } bootstrap_ = value; } else { bootstrapBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public Builder setBootstrap( io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.Builder builderForValue) { if (bootstrapBuilder_ == null) { bootstrap_ = builderForValue.build(); } else { bootstrapBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public Builder mergeBootstrap(io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap value) { if (bootstrapBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && bootstrap_ != null && bootstrap_ != io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.getDefaultInstance()) { getBootstrapBuilder().mergeFrom(value); } else { bootstrap_ = value; } } else { bootstrapBuilder_.mergeFrom(value); } if (bootstrap_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public Builder clearBootstrap() { bitField0_ = (bitField0_ & ~0x00000001); bootstrap_ = null; if (bootstrapBuilder_ != null) { bootstrapBuilder_.dispose(); bootstrapBuilder_ = null; } onChanged(); return this; } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.Builder getBootstrapBuilder() { bitField0_ |= 0x00000001; onChanged(); return getBootstrapFieldBuilder().getBuilder(); } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ public io.envoyproxy.envoy.config.bootstrap.v3.BootstrapOrBuilder getBootstrapOrBuilder() { if (bootstrapBuilder_ != null) { return bootstrapBuilder_.getMessageOrBuilder(); } else { return bootstrap_ == null ? io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.getDefaultInstance() : bootstrap_; } } /** * .envoy.config.bootstrap.v3.Bootstrap bootstrap = 1; */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap, io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.Builder, io.envoyproxy.envoy.config.bootstrap.v3.BootstrapOrBuilder> getBootstrapFieldBuilder() { if (bootstrapBuilder_ == null) { bootstrapBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap, io.envoyproxy.envoy.config.bootstrap.v3.Bootstrap.Builder, io.envoyproxy.envoy.config.bootstrap.v3.BootstrapOrBuilder>( getBootstrap(), getParentForChildren(), isClean()); bootstrap_ = null; } return bootstrapBuilder_; } private com.google.protobuf.Timestamp lastUpdated_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> lastUpdatedBuilder_; /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; * @return Whether the lastUpdated field is set. */ public boolean hasLastUpdated() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; * @return The lastUpdated. */ public com.google.protobuf.Timestamp getLastUpdated() { if (lastUpdatedBuilder_ == null) { return lastUpdated_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastUpdated_; } else { return lastUpdatedBuilder_.getMessage(); } } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public Builder setLastUpdated(com.google.protobuf.Timestamp value) { if (lastUpdatedBuilder_ == null) { if (value == null) { throw new NullPointerException(); } lastUpdated_ = value; } else { lastUpdatedBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public Builder setLastUpdated( com.google.protobuf.Timestamp.Builder builderForValue) { if (lastUpdatedBuilder_ == null) { lastUpdated_ = builderForValue.build(); } else { lastUpdatedBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public Builder mergeLastUpdated(com.google.protobuf.Timestamp value) { if (lastUpdatedBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && lastUpdated_ != null && lastUpdated_ != com.google.protobuf.Timestamp.getDefaultInstance()) { getLastUpdatedBuilder().mergeFrom(value); } else { lastUpdated_ = value; } } else { lastUpdatedBuilder_.mergeFrom(value); } if (lastUpdated_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public Builder clearLastUpdated() { bitField0_ = (bitField0_ & ~0x00000002); lastUpdated_ = null; if (lastUpdatedBuilder_ != null) { lastUpdatedBuilder_.dispose(); lastUpdatedBuilder_ = null; } onChanged(); return this; } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public com.google.protobuf.Timestamp.Builder getLastUpdatedBuilder() { bitField0_ |= 0x00000002; onChanged(); return getLastUpdatedFieldBuilder().getBuilder(); } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ public com.google.protobuf.TimestampOrBuilder getLastUpdatedOrBuilder() { if (lastUpdatedBuilder_ != null) { return lastUpdatedBuilder_.getMessageOrBuilder(); } else { return lastUpdated_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lastUpdated_; } } /** *
     * The timestamp when the BootstrapConfig was last updated.
     * 
* * .google.protobuf.Timestamp last_updated = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getLastUpdatedFieldBuilder() { if (lastUpdatedBuilder_ == null) { lastUpdatedBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( getLastUpdated(), getParentForChildren(), isClean()); lastUpdated_ = null; } return lastUpdatedBuilder_; } @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.admin.v3.BootstrapConfigDump) } // @@protoc_insertion_point(class_scope:envoy.admin.v3.BootstrapConfigDump) private static final io.envoyproxy.envoy.admin.v3.BootstrapConfigDump DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.admin.v3.BootstrapConfigDump(); } public static io.envoyproxy.envoy.admin.v3.BootstrapConfigDump getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public BootstrapConfigDump parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; 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.admin.v3.BootstrapConfigDump getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy