io.kubernetes.client.proto.V1beta1Apps Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: k8s.io/api/apps/v1beta1/generated.proto
package io.kubernetes.client.proto;
public final class V1beta1Apps {
private V1beta1Apps() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface ControllerRevisionOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.ControllerRevision)
com.google.protobuf.MessageOrBuilder {
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMeta getMetadata();
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder();
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
boolean hasData();
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
io.kubernetes.client.proto.Runtime.RawExtension getData();
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder getDataOrBuilder();
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
boolean hasRevision();
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
long getRevision();
}
/**
*
* DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the
* release notes for more information.
* ControllerRevision implements an immutable snapshot of state data. Clients
* are responsible for serializing and deserializing the objects that contain
* their internal state.
* Once a ControllerRevision has been successfully created, it can not be updated.
* The API Server will fail validation of all requests that attempt to mutate
* the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
* the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
* it may be subject to name and representation changes in future releases, and clients should not
* depend on its stability. It is primarily for internal use by controllers.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ControllerRevision}
*/
public static final class ControllerRevision extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.ControllerRevision)
ControllerRevisionOrBuilder {
private static final long serialVersionUID = 0L;
// Use ControllerRevision.newBuilder() to construct.
private ControllerRevision(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ControllerRevision() {
revision_ = 0L;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ControllerRevision(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ObjectMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ObjectMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
io.kubernetes.client.proto.Runtime.RawExtension.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = data_.toBuilder();
}
data_ = input.readMessage(io.kubernetes.client.proto.Runtime.RawExtension.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(data_);
data_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 24: {
bitField0_ |= 0x00000004;
revision_ = input.readInt64();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.class, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_;
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
public static final int DATA_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.Runtime.RawExtension data_;
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public boolean hasData() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public io.kubernetes.client.proto.Runtime.RawExtension getData() {
return data_ == null ? io.kubernetes.client.proto.Runtime.RawExtension.getDefaultInstance() : data_;
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder getDataOrBuilder() {
return data_ == null ? io.kubernetes.client.proto.Runtime.RawExtension.getDefaultInstance() : data_;
}
public static final int REVISION_FIELD_NUMBER = 3;
private long revision_;
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public boolean hasRevision() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public long getRevision() {
return revision_;
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getData());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt64(3, revision_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getData());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, revision_);
}
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.kubernetes.client.proto.V1beta1Apps.ControllerRevision)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision other = (io.kubernetes.client.proto.V1beta1Apps.ControllerRevision) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && (hasData() == other.hasData());
if (hasData()) {
result = result && getData()
.equals(other.getData());
}
result = result && (hasRevision() == other.hasRevision());
if (hasRevision()) {
result = result && (getRevision()
== other.getRevision());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (hasData()) {
hash = (37 * hash) + DATA_FIELD_NUMBER;
hash = (53 * hash) + getData().hashCode();
}
if (hasRevision()) {
hash = (37 * hash) + REVISION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getRevision());
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision 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.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision 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.kubernetes.client.proto.V1beta1Apps.ControllerRevision parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision 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.kubernetes.client.proto.V1beta1Apps.ControllerRevision 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;
}
/**
*
* DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the
* release notes for more information.
* ControllerRevision implements an immutable snapshot of state data. Clients
* are responsible for serializing and deserializing the objects that contain
* their internal state.
* Once a ControllerRevision has been successfully created, it can not be updated.
* The API Server will fail validation of all requests that attempt to mutate
* the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
* the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
* it may be subject to name and representation changes in future releases, and clients should not
* depend on its stability. It is primarily for internal use by controllers.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ControllerRevision}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.ControllerRevision)
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.class, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getDataFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (dataBuilder_ == null) {
data_ = null;
} else {
dataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
revision_ = 0L;
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision build() {
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision result = new io.kubernetes.client.proto.V1beta1Apps.ControllerRevision(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (dataBuilder_ == null) {
result.data_ = data_;
} else {
result.data_ = dataBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.revision_ = revision_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.ControllerRevision) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.ControllerRevision)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.ControllerRevision other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (other.hasData()) {
mergeData(other.getData());
}
if (other.hasRevision()) {
setRevision(other.getRevision());
}
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.kubernetes.client.proto.V1beta1Apps.ControllerRevision parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.ControllerRevision) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder> metadataBuilder_;
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ObjectMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ObjectMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* Standard object's metadata.
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private io.kubernetes.client.proto.Runtime.RawExtension data_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Runtime.RawExtension, io.kubernetes.client.proto.Runtime.RawExtension.Builder, io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder> dataBuilder_;
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public boolean hasData() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public io.kubernetes.client.proto.Runtime.RawExtension getData() {
if (dataBuilder_ == null) {
return data_ == null ? io.kubernetes.client.proto.Runtime.RawExtension.getDefaultInstance() : data_;
} else {
return dataBuilder_.getMessage();
}
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public Builder setData(io.kubernetes.client.proto.Runtime.RawExtension value) {
if (dataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
data_ = value;
onChanged();
} else {
dataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public Builder setData(
io.kubernetes.client.proto.Runtime.RawExtension.Builder builderForValue) {
if (dataBuilder_ == null) {
data_ = builderForValue.build();
onChanged();
} else {
dataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public Builder mergeData(io.kubernetes.client.proto.Runtime.RawExtension value) {
if (dataBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
data_ != null &&
data_ != io.kubernetes.client.proto.Runtime.RawExtension.getDefaultInstance()) {
data_ =
io.kubernetes.client.proto.Runtime.RawExtension.newBuilder(data_).mergeFrom(value).buildPartial();
} else {
data_ = value;
}
onChanged();
} else {
dataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public Builder clearData() {
if (dataBuilder_ == null) {
data_ = null;
onChanged();
} else {
dataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public io.kubernetes.client.proto.Runtime.RawExtension.Builder getDataBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getDataFieldBuilder().getBuilder();
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
public io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder getDataOrBuilder() {
if (dataBuilder_ != null) {
return dataBuilder_.getMessageOrBuilder();
} else {
return data_ == null ?
io.kubernetes.client.proto.Runtime.RawExtension.getDefaultInstance() : data_;
}
}
/**
*
* Data is the serialized representation of the state.
*
*
* optional .k8s.io.apimachinery.pkg.runtime.RawExtension data = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Runtime.RawExtension, io.kubernetes.client.proto.Runtime.RawExtension.Builder, io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder>
getDataFieldBuilder() {
if (dataBuilder_ == null) {
dataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Runtime.RawExtension, io.kubernetes.client.proto.Runtime.RawExtension.Builder, io.kubernetes.client.proto.Runtime.RawExtensionOrBuilder>(
getData(),
getParentForChildren(),
isClean());
data_ = null;
}
return dataBuilder_;
}
private long revision_ ;
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public boolean hasRevision() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public long getRevision() {
return revision_;
}
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public Builder setRevision(long value) {
bitField0_ |= 0x00000004;
revision_ = value;
onChanged();
return this;
}
/**
*
* Revision indicates the revision of the state represented by Data.
*
*
* optional int64 revision = 3;
*/
public Builder clearRevision() {
bitField0_ = (bitField0_ & ~0x00000004);
revision_ = 0L;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.ControllerRevision)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.ControllerRevision)
private static final io.kubernetes.client.proto.V1beta1Apps.ControllerRevision DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.ControllerRevision();
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevision getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ControllerRevision parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ControllerRevision(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.kubernetes.client.proto.V1beta1Apps.ControllerRevision getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ControllerRevisionListOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.ControllerRevisionList)
com.google.protobuf.MessageOrBuilder {
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMeta getMetadata();
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder();
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
java.util.List
getItemsList();
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision getItems(int index);
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
int getItemsCount();
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
java.util.List extends io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder>
getItemsOrBuilderList();
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder getItemsOrBuilder(
int index);
}
/**
*
* ControllerRevisionList is a resource containing a list of ControllerRevision objects.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ControllerRevisionList}
*/
public static final class ControllerRevisionList extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.ControllerRevisionList)
ControllerRevisionListOrBuilder {
private static final long serialVersionUID = 0L;
// Use ControllerRevisionList.newBuilder() to construct.
private ControllerRevisionList(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ControllerRevisionList() {
items_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ControllerRevisionList(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ListMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ListMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
items_.add(
input.readMessage(io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.PARSER, extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.class, io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ListMeta metadata_;
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
public static final int ITEMS_FIELD_NUMBER = 2;
private java.util.List items_;
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public java.util.List getItemsList() {
return items_;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder>
getItemsOrBuilderList() {
return items_;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public int getItemsCount() {
return items_.size();
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision getItems(int index) {
return items_.get(index);
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder getItemsOrBuilder(
int index) {
return items_.get(index);
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
output.writeMessage(2, items_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, items_.get(i));
}
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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList other = (io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && getItemsList()
.equals(other.getItemsList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (getItemsCount() > 0) {
hash = (37 * hash) + ITEMS_FIELD_NUMBER;
hash = (53 * hash) + getItemsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList 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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList 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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList 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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList 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;
}
/**
*
* ControllerRevisionList is a resource containing a list of ControllerRevision objects.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ControllerRevisionList}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.ControllerRevisionList)
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionListOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.class, io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getItemsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
itemsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList build() {
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList result = new io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (itemsBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.items_ = items_;
} else {
result.items_ = itemsBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (itemsBuilder_ == null) {
if (!other.items_.isEmpty()) {
if (items_.isEmpty()) {
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureItemsIsMutable();
items_.addAll(other.items_);
}
onChanged();
}
} else {
if (!other.items_.isEmpty()) {
if (itemsBuilder_.isEmpty()) {
itemsBuilder_.dispose();
itemsBuilder_ = null;
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
itemsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getItemsFieldBuilder() : null;
} else {
itemsBuilder_.addAllMessages(other.items_);
}
}
}
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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ListMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder> metadataBuilder_;
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ListMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ListMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private java.util.List items_ =
java.util.Collections.emptyList();
private void ensureItemsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList(items_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder, io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder> itemsBuilder_;
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public java.util.List getItemsList() {
if (itemsBuilder_ == null) {
return java.util.Collections.unmodifiableList(items_);
} else {
return itemsBuilder_.getMessageList();
}
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public int getItemsCount() {
if (itemsBuilder_ == null) {
return items_.size();
} else {
return itemsBuilder_.getCount();
}
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision getItems(int index) {
if (itemsBuilder_ == null) {
return items_.get(index);
} else {
return itemsBuilder_.getMessage(index);
}
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.set(index, value);
onChanged();
} else {
itemsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.set(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder addItems(io.kubernetes.client.proto.V1beta1Apps.ControllerRevision value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(value);
onChanged();
} else {
itemsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(index, value);
onChanged();
} else {
itemsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder addItems(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder addAllItems(
java.lang.Iterable extends io.kubernetes.client.proto.V1beta1Apps.ControllerRevision> values) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, items_);
onChanged();
} else {
itemsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder clearItems() {
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
itemsBuilder_.clear();
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public Builder removeItems(int index) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.remove(index);
onChanged();
} else {
itemsBuilder_.remove(index);
}
return this;
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder getItemsBuilder(
int index) {
return getItemsFieldBuilder().getBuilder(index);
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder getItemsOrBuilder(
int index) {
if (itemsBuilder_ == null) {
return items_.get(index); } else {
return itemsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder>
getItemsOrBuilderList() {
if (itemsBuilder_ != null) {
return itemsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(items_);
}
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder addItemsBuilder() {
return getItemsFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.getDefaultInstance());
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder addItemsBuilder(
int index) {
return getItemsFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.getDefaultInstance());
}
/**
*
* Items is the list of ControllerRevisions
*
*
* repeated .k8s.io.api.apps.v1beta1.ControllerRevision items = 2;
*/
public java.util.List
getItemsBuilderList() {
return getItemsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder, io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder>
getItemsFieldBuilder() {
if (itemsBuilder_ == null) {
itemsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ControllerRevision, io.kubernetes.client.proto.V1beta1Apps.ControllerRevision.Builder, io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionOrBuilder>(
items_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
items_ = null;
}
return itemsBuilder_;
}
@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:k8s.io.api.apps.v1beta1.ControllerRevisionList)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.ControllerRevisionList)
private static final io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList();
}
public static io.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ControllerRevisionList parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ControllerRevisionList(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.kubernetes.client.proto.V1beta1Apps.ControllerRevisionList getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.Deployment)
com.google.protobuf.MessageOrBuilder {
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMeta getMetadata();
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder();
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
boolean hasSpec();
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getSpec();
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder getSpecOrBuilder();
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
boolean hasStatus();
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getStatus();
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder getStatusOrBuilder();
}
/**
*
* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
* more information.
* Deployment enables declarative updates for Pods and ReplicaSets.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.Deployment}
*/
public static final class Deployment extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.Deployment)
DeploymentOrBuilder {
private static final long serialVersionUID = 0L;
// Use Deployment.newBuilder() to construct.
private Deployment(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Deployment() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Deployment(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ObjectMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ObjectMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = spec_.toBuilder();
}
spec_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(spec_);
spec_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = status_.toBuilder();
}
status_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(status_);
status_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Deployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.Deployment.class, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_;
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
public static final int SPEC_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec spec_;
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getSpec() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance() : spec_;
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder getSpecOrBuilder() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance() : spec_;
}
public static final int STATUS_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus status_;
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getStatus() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance() : status_;
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder getStatusOrBuilder() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance() : status_;
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getStatus());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.Deployment)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.Deployment other = (io.kubernetes.client.proto.V1beta1Apps.Deployment) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && (hasSpec() == other.hasSpec());
if (hasSpec()) {
result = result && getSpec()
.equals(other.getSpec());
}
result = result && (hasStatus() == other.hasStatus());
if (hasStatus()) {
result = result && getStatus()
.equals(other.getStatus());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (hasSpec()) {
hash = (37 * hash) + SPEC_FIELD_NUMBER;
hash = (53 * hash) + getSpec().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment 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.kubernetes.client.proto.V1beta1Apps.Deployment parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment 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.kubernetes.client.proto.V1beta1Apps.Deployment parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment 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.kubernetes.client.proto.V1beta1Apps.Deployment 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;
}
/**
*
* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
* more information.
* Deployment enables declarative updates for Pods and ReplicaSets.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.Deployment}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.Deployment)
io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Deployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.Deployment.class, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.Deployment.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getSpecFieldBuilder();
getStatusFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (specBuilder_ == null) {
spec_ = null;
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (statusBuilder_ == null) {
status_ = null;
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Deployment getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.Deployment.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Deployment build() {
io.kubernetes.client.proto.V1beta1Apps.Deployment result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Deployment buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.Deployment result = new io.kubernetes.client.proto.V1beta1Apps.Deployment(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (specBuilder_ == null) {
result.spec_ = spec_;
} else {
result.spec_ = specBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (statusBuilder_ == null) {
result.status_ = status_;
} else {
result.status_ = statusBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.Deployment) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.Deployment)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.Deployment other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.Deployment.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (other.hasSpec()) {
mergeSpec(other.getSpec());
}
if (other.hasStatus()) {
mergeStatus(other.getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.Deployment parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.Deployment) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder> metadataBuilder_;
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ObjectMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ObjectMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* Standard object metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec spec_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder> specBuilder_;
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getSpec() {
if (specBuilder_ == null) {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance() : spec_;
} else {
return specBuilder_.getMessage();
}
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public Builder setSpec(io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec value) {
if (specBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
spec_ = value;
onChanged();
} else {
specBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public Builder setSpec(
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder builderForValue) {
if (specBuilder_ == null) {
spec_ = builderForValue.build();
onChanged();
} else {
specBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public Builder mergeSpec(io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec value) {
if (specBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
spec_ != null &&
spec_ != io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance()) {
spec_ =
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.newBuilder(spec_).mergeFrom(value).buildPartial();
} else {
spec_ = value;
}
onChanged();
} else {
specBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public Builder clearSpec() {
if (specBuilder_ == null) {
spec_ = null;
onChanged();
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder getSpecBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getSpecFieldBuilder().getBuilder();
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder getSpecOrBuilder() {
if (specBuilder_ != null) {
return specBuilder_.getMessageOrBuilder();
} else {
return spec_ == null ?
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance() : spec_;
}
}
/**
*
* Specification of the desired behavior of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentSpec spec = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder>
getSpecFieldBuilder() {
if (specBuilder_ == null) {
specBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder>(
getSpec(),
getParentForChildren(),
isClean());
spec_ = null;
}
return specBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus status_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder> statusBuilder_;
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getStatus() {
if (statusBuilder_ == null) {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance() : status_;
} else {
return statusBuilder_.getMessage();
}
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public Builder setStatus(io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus value) {
if (statusBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
status_ = value;
onChanged();
} else {
statusBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public Builder setStatus(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder builderForValue) {
if (statusBuilder_ == null) {
status_ = builderForValue.build();
onChanged();
} else {
statusBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public Builder mergeStatus(io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus value) {
if (statusBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
status_ != null &&
status_ != io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance()) {
status_ =
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.newBuilder(status_).mergeFrom(value).buildPartial();
} else {
status_ = value;
}
onChanged();
} else {
statusBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public Builder clearStatus() {
if (statusBuilder_ == null) {
status_ = null;
onChanged();
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder getStatusBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getStatusFieldBuilder().getBuilder();
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder getStatusOrBuilder() {
if (statusBuilder_ != null) {
return statusBuilder_.getMessageOrBuilder();
} else {
return status_ == null ?
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance() : status_;
}
}
/**
*
* Most recently observed status of the Deployment.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStatus status = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder>
getStatusFieldBuilder() {
if (statusBuilder_ == null) {
statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder>(
getStatus(),
getParentForChildren(),
isClean());
status_ = null;
}
return statusBuilder_;
}
@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:k8s.io.api.apps.v1beta1.Deployment)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.Deployment)
private static final io.kubernetes.client.proto.V1beta1Apps.Deployment DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.Deployment();
}
public static io.kubernetes.client.proto.V1beta1Apps.Deployment getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Deployment parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Deployment(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.kubernetes.client.proto.V1beta1Apps.Deployment getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentConditionOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentCondition)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
boolean hasType();
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
java.lang.String getType();
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
boolean hasStatus();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
java.lang.String getStatus();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
com.google.protobuf.ByteString
getStatusBytes();
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
boolean hasLastUpdateTime();
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
io.kubernetes.client.proto.Meta.Time getLastUpdateTime();
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
io.kubernetes.client.proto.Meta.TimeOrBuilder getLastUpdateTimeOrBuilder();
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
boolean hasLastTransitionTime();
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
io.kubernetes.client.proto.Meta.Time getLastTransitionTime();
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder();
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
boolean hasReason();
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
java.lang.String getReason();
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
com.google.protobuf.ByteString
getReasonBytes();
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
boolean hasMessage();
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
java.lang.String getMessage();
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
com.google.protobuf.ByteString
getMessageBytes();
}
/**
*
* DeploymentCondition describes the state of a deployment at a certain point.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentCondition}
*/
public static final class DeploymentCondition extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentCondition)
DeploymentConditionOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentCondition.newBuilder() to construct.
private DeploymentCondition(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentCondition() {
type_ = "";
status_ = "";
reason_ = "";
message_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentCondition(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
type_ = bs;
break;
}
case 18: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000002;
status_ = bs;
break;
}
case 34: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000010;
reason_ = bs;
break;
}
case 42: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000020;
message_ = bs;
break;
}
case 50: {
io.kubernetes.client.proto.Meta.Time.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = lastUpdateTime_.toBuilder();
}
lastUpdateTime_ = input.readMessage(io.kubernetes.client.proto.Meta.Time.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(lastUpdateTime_);
lastUpdateTime_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 58: {
io.kubernetes.client.proto.Meta.Time.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = lastTransitionTime_.toBuilder();
}
lastTransitionTime_ = input.readMessage(io.kubernetes.client.proto.Meta.Time.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(lastTransitionTime_);
lastTransitionTime_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder.class);
}
private int bitField0_;
public static final int TYPE_FIELD_NUMBER = 1;
private volatile java.lang.Object type_;
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
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 (bs.isValidUtf8()) {
type_ = s;
}
return s;
}
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int STATUS_FIELD_NUMBER = 2;
private volatile java.lang.Object status_;
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public java.lang.String getStatus() {
java.lang.Object ref = status_;
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 (bs.isValidUtf8()) {
status_ = s;
}
return s;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public com.google.protobuf.ByteString
getStatusBytes() {
java.lang.Object ref = status_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
status_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LASTUPDATETIME_FIELD_NUMBER = 6;
private io.kubernetes.client.proto.Meta.Time lastUpdateTime_;
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public boolean hasLastUpdateTime() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public io.kubernetes.client.proto.Meta.Time getLastUpdateTime() {
return lastUpdateTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastUpdateTime_;
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastUpdateTimeOrBuilder() {
return lastUpdateTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastUpdateTime_;
}
public static final int LASTTRANSITIONTIME_FIELD_NUMBER = 7;
private io.kubernetes.client.proto.Meta.Time lastTransitionTime_;
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public boolean hasLastTransitionTime() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public io.kubernetes.client.proto.Meta.Time getLastTransitionTime() {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder() {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
public static final int REASON_FIELD_NUMBER = 4;
private volatile java.lang.Object reason_;
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public boolean hasReason() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public java.lang.String getReason() {
java.lang.Object ref = reason_;
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 (bs.isValidUtf8()) {
reason_ = s;
}
return s;
}
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public com.google.protobuf.ByteString
getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int MESSAGE_FIELD_NUMBER = 5;
private volatile java.lang.Object message_;
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
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 (bs.isValidUtf8()) {
message_ = s;
}
return s;
}
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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) == 0x00000001)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, status_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, reason_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, message_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(6, getLastUpdateTime());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(7, getLastTransitionTime());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, status_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, reason_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, message_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, getLastUpdateTime());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, getLastTransitionTime());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition) obj;
boolean result = true;
result = result && (hasType() == other.hasType());
if (hasType()) {
result = result && getType()
.equals(other.getType());
}
result = result && (hasStatus() == other.hasStatus());
if (hasStatus()) {
result = result && getStatus()
.equals(other.getStatus());
}
result = result && (hasLastUpdateTime() == other.hasLastUpdateTime());
if (hasLastUpdateTime()) {
result = result && getLastUpdateTime()
.equals(other.getLastUpdateTime());
}
result = result && (hasLastTransitionTime() == other.hasLastTransitionTime());
if (hasLastTransitionTime()) {
result = result && getLastTransitionTime()
.equals(other.getLastTransitionTime());
}
result = result && (hasReason() == other.hasReason());
if (hasReason()) {
result = result && getReason()
.equals(other.getReason());
}
result = result && (hasMessage() == other.hasMessage());
if (hasMessage()) {
result = result && getMessage()
.equals(other.getMessage());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasType()) {
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + getType().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
if (hasLastUpdateTime()) {
hash = (37 * hash) + LASTUPDATETIME_FIELD_NUMBER;
hash = (53 * hash) + getLastUpdateTime().hashCode();
}
if (hasLastTransitionTime()) {
hash = (37 * hash) + LASTTRANSITIONTIME_FIELD_NUMBER;
hash = (53 * hash) + getLastTransitionTime().hashCode();
}
if (hasReason()) {
hash = (37 * hash) + REASON_FIELD_NUMBER;
hash = (53 * hash) + getReason().hashCode();
}
if (hasMessage()) {
hash = (37 * hash) + MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getMessage().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition 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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition 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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition 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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition 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;
}
/**
*
* DeploymentCondition describes the state of a deployment at a certain point.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentCondition}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentCondition)
io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLastUpdateTimeFieldBuilder();
getLastTransitionTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
type_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
status_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
if (lastUpdateTimeBuilder_ == null) {
lastUpdateTime_ = null;
} else {
lastUpdateTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = null;
} else {
lastTransitionTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
reason_ = "";
bitField0_ = (bitField0_ & ~0x00000010);
message_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.status_ = status_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (lastUpdateTimeBuilder_ == null) {
result.lastUpdateTime_ = lastUpdateTime_;
} else {
result.lastUpdateTime_ = lastUpdateTimeBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (lastTransitionTimeBuilder_ == null) {
result.lastTransitionTime_ = lastTransitionTime_;
} else {
result.lastTransitionTime_ = lastTransitionTimeBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.reason_ = reason_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.message_ = message_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.getDefaultInstance()) return this;
if (other.hasType()) {
bitField0_ |= 0x00000001;
type_ = other.type_;
onChanged();
}
if (other.hasStatus()) {
bitField0_ |= 0x00000002;
status_ = other.status_;
onChanged();
}
if (other.hasLastUpdateTime()) {
mergeLastUpdateTime(other.getLastUpdateTime());
}
if (other.hasLastTransitionTime()) {
mergeLastTransitionTime(other.getLastTransitionTime());
}
if (other.hasReason()) {
bitField0_ |= 0x00000010;
reason_ = other.reason_;
onChanged();
}
if (other.hasMessage()) {
bitField0_ |= 0x00000020;
message_ = other.message_;
onChanged();
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object type_ = "";
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public Builder setType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000001);
type_ = getDefaultInstance().getType();
onChanged();
return this;
}
/**
*
* Type of deployment condition.
*
*
* optional string type = 1;
*/
public Builder setTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
private java.lang.Object status_ = "";
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public java.lang.String getStatus() {
java.lang.Object ref = status_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
status_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public com.google.protobuf.ByteString
getStatusBytes() {
java.lang.Object ref = status_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
status_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder setStatus(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
status_ = value;
onChanged();
return this;
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder clearStatus() {
bitField0_ = (bitField0_ & ~0x00000002);
status_ = getDefaultInstance().getStatus();
onChanged();
return this;
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder setStatusBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
status_ = value;
onChanged();
return this;
}
private io.kubernetes.client.proto.Meta.Time lastUpdateTime_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder> lastUpdateTimeBuilder_;
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public boolean hasLastUpdateTime() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public io.kubernetes.client.proto.Meta.Time getLastUpdateTime() {
if (lastUpdateTimeBuilder_ == null) {
return lastUpdateTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastUpdateTime_;
} else {
return lastUpdateTimeBuilder_.getMessage();
}
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public Builder setLastUpdateTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastUpdateTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
lastUpdateTime_ = value;
onChanged();
} else {
lastUpdateTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public Builder setLastUpdateTime(
io.kubernetes.client.proto.Meta.Time.Builder builderForValue) {
if (lastUpdateTimeBuilder_ == null) {
lastUpdateTime_ = builderForValue.build();
onChanged();
} else {
lastUpdateTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public Builder mergeLastUpdateTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastUpdateTimeBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
lastUpdateTime_ != null &&
lastUpdateTime_ != io.kubernetes.client.proto.Meta.Time.getDefaultInstance()) {
lastUpdateTime_ =
io.kubernetes.client.proto.Meta.Time.newBuilder(lastUpdateTime_).mergeFrom(value).buildPartial();
} else {
lastUpdateTime_ = value;
}
onChanged();
} else {
lastUpdateTimeBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public Builder clearLastUpdateTime() {
if (lastUpdateTimeBuilder_ == null) {
lastUpdateTime_ = null;
onChanged();
} else {
lastUpdateTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public io.kubernetes.client.proto.Meta.Time.Builder getLastUpdateTimeBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getLastUpdateTimeFieldBuilder().getBuilder();
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastUpdateTimeOrBuilder() {
if (lastUpdateTimeBuilder_ != null) {
return lastUpdateTimeBuilder_.getMessageOrBuilder();
} else {
return lastUpdateTime_ == null ?
io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastUpdateTime_;
}
}
/**
*
* The last time this condition was updated.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>
getLastUpdateTimeFieldBuilder() {
if (lastUpdateTimeBuilder_ == null) {
lastUpdateTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>(
getLastUpdateTime(),
getParentForChildren(),
isClean());
lastUpdateTime_ = null;
}
return lastUpdateTimeBuilder_;
}
private io.kubernetes.client.proto.Meta.Time lastTransitionTime_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder> lastTransitionTimeBuilder_;
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public boolean hasLastTransitionTime() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public io.kubernetes.client.proto.Meta.Time getLastTransitionTime() {
if (lastTransitionTimeBuilder_ == null) {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
} else {
return lastTransitionTimeBuilder_.getMessage();
}
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public Builder setLastTransitionTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastTransitionTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
lastTransitionTime_ = value;
onChanged();
} else {
lastTransitionTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public Builder setLastTransitionTime(
io.kubernetes.client.proto.Meta.Time.Builder builderForValue) {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = builderForValue.build();
onChanged();
} else {
lastTransitionTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public Builder mergeLastTransitionTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastTransitionTimeBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
lastTransitionTime_ != null &&
lastTransitionTime_ != io.kubernetes.client.proto.Meta.Time.getDefaultInstance()) {
lastTransitionTime_ =
io.kubernetes.client.proto.Meta.Time.newBuilder(lastTransitionTime_).mergeFrom(value).buildPartial();
} else {
lastTransitionTime_ = value;
}
onChanged();
} else {
lastTransitionTimeBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public Builder clearLastTransitionTime() {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = null;
onChanged();
} else {
lastTransitionTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public io.kubernetes.client.proto.Meta.Time.Builder getLastTransitionTimeBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getLastTransitionTimeFieldBuilder().getBuilder();
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder() {
if (lastTransitionTimeBuilder_ != null) {
return lastTransitionTimeBuilder_.getMessageOrBuilder();
} else {
return lastTransitionTime_ == null ?
io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
}
/**
*
* Last time the condition transitioned from one status to another.
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>
getLastTransitionTimeFieldBuilder() {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>(
getLastTransitionTime(),
getParentForChildren(),
isClean());
lastTransitionTime_ = null;
}
return lastTransitionTimeBuilder_;
}
private java.lang.Object reason_ = "";
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public boolean hasReason() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public java.lang.String getReason() {
java.lang.Object ref = reason_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
reason_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public com.google.protobuf.ByteString
getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public Builder setReason(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
reason_ = value;
onChanged();
return this;
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public Builder clearReason() {
bitField0_ = (bitField0_ & ~0x00000010);
reason_ = getDefaultInstance().getReason();
onChanged();
return this;
}
/**
*
* The reason for the condition's last transition.
*
*
* optional string reason = 4;
*/
public Builder setReasonBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
reason_ = value;
onChanged();
return this;
}
private java.lang.Object message_ = "";
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
message_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public Builder setMessage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
message_ = value;
onChanged();
return this;
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public Builder clearMessage() {
bitField0_ = (bitField0_ & ~0x00000020);
message_ = getDefaultInstance().getMessage();
onChanged();
return this;
}
/**
*
* A human readable message indicating details about the transition.
*
*
* optional string message = 5;
*/
public Builder setMessageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
message_ = value;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.DeploymentCondition)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentCondition)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentCondition parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentCondition(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.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentListOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentList)
com.google.protobuf.MessageOrBuilder {
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMeta getMetadata();
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder();
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
java.util.List
getItemsList();
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.Deployment getItems(int index);
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
int getItemsCount();
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder>
getItemsOrBuilderList();
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder getItemsOrBuilder(
int index);
}
/**
*
* DeploymentList is a list of Deployments.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentList}
*/
public static final class DeploymentList extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentList)
DeploymentListOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentList.newBuilder() to construct.
private DeploymentList(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentList() {
items_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentList(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ListMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ListMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
items_.add(
input.readMessage(io.kubernetes.client.proto.V1beta1Apps.Deployment.PARSER, extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentList.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentList.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ListMeta metadata_;
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
public static final int ITEMS_FIELD_NUMBER = 2;
private java.util.List items_;
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public java.util.List getItemsList() {
return items_;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder>
getItemsOrBuilderList() {
return items_;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public int getItemsCount() {
return items_.size();
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.Deployment getItems(int index) {
return items_.get(index);
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder getItemsOrBuilder(
int index) {
return items_.get(index);
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
output.writeMessage(2, items_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, items_.get(i));
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentList)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentList other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentList) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && getItemsList()
.equals(other.getItemsList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (getItemsCount() > 0) {
hash = (37 * hash) + ITEMS_FIELD_NUMBER;
hash = (53 * hash) + getItemsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList 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.kubernetes.client.proto.V1beta1Apps.DeploymentList parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList 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.kubernetes.client.proto.V1beta1Apps.DeploymentList parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList 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.kubernetes.client.proto.V1beta1Apps.DeploymentList 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;
}
/**
*
* DeploymentList is a list of Deployments.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentList}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentList)
io.kubernetes.client.proto.V1beta1Apps.DeploymentListOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentList.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentList.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentList.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getItemsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
itemsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentList getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentList.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentList build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentList result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentList buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentList result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentList(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (itemsBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.items_ = items_;
} else {
result.items_ = itemsBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentList) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentList)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentList other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentList.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (itemsBuilder_ == null) {
if (!other.items_.isEmpty()) {
if (items_.isEmpty()) {
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureItemsIsMutable();
items_.addAll(other.items_);
}
onChanged();
}
} else {
if (!other.items_.isEmpty()) {
if (itemsBuilder_.isEmpty()) {
itemsBuilder_.dispose();
itemsBuilder_ = null;
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
itemsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getItemsFieldBuilder() : null;
} else {
itemsBuilder_.addAllMessages(other.items_);
}
}
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentList parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentList) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ListMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder> metadataBuilder_;
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ListMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ListMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* Standard list metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private java.util.List items_ =
java.util.Collections.emptyList();
private void ensureItemsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList(items_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.Deployment, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder> itemsBuilder_;
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public java.util.List getItemsList() {
if (itemsBuilder_ == null) {
return java.util.Collections.unmodifiableList(items_);
} else {
return itemsBuilder_.getMessageList();
}
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public int getItemsCount() {
if (itemsBuilder_ == null) {
return items_.size();
} else {
return itemsBuilder_.getCount();
}
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.Deployment getItems(int index) {
if (itemsBuilder_ == null) {
return items_.get(index);
} else {
return itemsBuilder_.getMessage(index);
}
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.Deployment value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.set(index, value);
onChanged();
} else {
itemsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.set(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder addItems(io.kubernetes.client.proto.V1beta1Apps.Deployment value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(value);
onChanged();
} else {
itemsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.Deployment value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(index, value);
onChanged();
} else {
itemsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder addItems(
io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder addAllItems(
java.lang.Iterable extends io.kubernetes.client.proto.V1beta1Apps.Deployment> values) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, items_);
onChanged();
} else {
itemsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder clearItems() {
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
itemsBuilder_.clear();
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public Builder removeItems(int index) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.remove(index);
onChanged();
} else {
itemsBuilder_.remove(index);
}
return this;
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder getItemsBuilder(
int index) {
return getItemsFieldBuilder().getBuilder(index);
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder getItemsOrBuilder(
int index) {
if (itemsBuilder_ == null) {
return items_.get(index); } else {
return itemsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder>
getItemsOrBuilderList() {
if (itemsBuilder_ != null) {
return itemsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(items_);
}
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder addItemsBuilder() {
return getItemsFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1beta1Apps.Deployment.getDefaultInstance());
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder addItemsBuilder(
int index) {
return getItemsFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1beta1Apps.Deployment.getDefaultInstance());
}
/**
*
* Items is the list of Deployments.
*
*
* repeated .k8s.io.api.apps.v1beta1.Deployment items = 2;
*/
public java.util.List
getItemsBuilderList() {
return getItemsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.Deployment, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder>
getItemsFieldBuilder() {
if (itemsBuilder_ == null) {
itemsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.Deployment, io.kubernetes.client.proto.V1beta1Apps.Deployment.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentOrBuilder>(
items_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
items_ = null;
}
return itemsBuilder_;
}
@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:k8s.io.api.apps.v1beta1.DeploymentList)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentList)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentList DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentList();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentList getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentList parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentList(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.kubernetes.client.proto.V1beta1Apps.DeploymentList getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentRollbackOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentRollback)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
boolean hasName();
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
java.lang.String getName();
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
int getUpdatedAnnotationsCount();
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
boolean containsUpdatedAnnotations(
java.lang.String key);
/**
* Use {@link #getUpdatedAnnotationsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getUpdatedAnnotations();
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
java.util.Map
getUpdatedAnnotationsMap();
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
java.lang.String getUpdatedAnnotationsOrDefault(
java.lang.String key,
java.lang.String defaultValue);
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
java.lang.String getUpdatedAnnotationsOrThrow(
java.lang.String key);
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
boolean hasRollbackTo();
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo();
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder();
}
/**
*
* DEPRECATED.
* DeploymentRollback stores the information required to rollback a deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentRollback}
*/
public static final class DeploymentRollback extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentRollback)
DeploymentRollbackOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentRollback.newBuilder() to construct.
private DeploymentRollback(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentRollback() {
name_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentRollback(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
name_ = bs;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
updatedAnnotations_ = com.google.protobuf.MapField.newMapField(
UpdatedAnnotationsDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000002;
}
com.google.protobuf.MapEntry
updatedAnnotations__ = input.readMessage(
UpdatedAnnotationsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
updatedAnnotations_.getMutableMap().put(
updatedAnnotations__.getKey(), updatedAnnotations__.getValue());
break;
}
case 26: {
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = rollbackTo_.toBuilder();
}
rollbackTo_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(rollbackTo_);
rollbackTo_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 2:
return internalGetUpdatedAnnotations();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.Builder.class);
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object name_;
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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 (bs.isValidUtf8()) {
name_ = s;
}
return s;
}
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UPDATEDANNOTATIONS_FIELD_NUMBER = 2;
private static final class UpdatedAnnotationsDefaultEntryHolder {
static final com.google.protobuf.MapEntry<
java.lang.String, java.lang.String> defaultEntry =
com.google.protobuf.MapEntry
.newDefaultInstance(
io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> updatedAnnotations_;
private com.google.protobuf.MapField
internalGetUpdatedAnnotations() {
if (updatedAnnotations_ == null) {
return com.google.protobuf.MapField.emptyMapField(
UpdatedAnnotationsDefaultEntryHolder.defaultEntry);
}
return updatedAnnotations_;
}
public int getUpdatedAnnotationsCount() {
return internalGetUpdatedAnnotations().getMap().size();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public boolean containsUpdatedAnnotations(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetUpdatedAnnotations().getMap().containsKey(key);
}
/**
* Use {@link #getUpdatedAnnotationsMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getUpdatedAnnotations() {
return getUpdatedAnnotationsMap();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.util.Map getUpdatedAnnotationsMap() {
return internalGetUpdatedAnnotations().getMap();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.lang.String getUpdatedAnnotationsOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetUpdatedAnnotations().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.lang.String getUpdatedAnnotationsOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetUpdatedAnnotations().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int ROLLBACKTO_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1beta1Apps.RollbackConfig rollbackTo_;
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public boolean hasRollbackTo() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo() {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder() {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
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) == 0x00000001)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
com.google.protobuf.GeneratedMessageV3
.serializeStringMapTo(
output,
internalGetUpdatedAnnotations(),
UpdatedAnnotationsDefaultEntryHolder.defaultEntry,
2);
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(3, getRollbackTo());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
for (java.util.Map.Entry entry
: internalGetUpdatedAnnotations().getMap().entrySet()) {
com.google.protobuf.MapEntry
updatedAnnotations__ = UpdatedAnnotationsDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, updatedAnnotations__);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getRollbackTo());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback) obj;
boolean result = true;
result = result && (hasName() == other.hasName());
if (hasName()) {
result = result && getName()
.equals(other.getName());
}
result = result && internalGetUpdatedAnnotations().equals(
other.internalGetUpdatedAnnotations());
result = result && (hasRollbackTo() == other.hasRollbackTo());
if (hasRollbackTo()) {
result = result && getRollbackTo()
.equals(other.getRollbackTo());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasName()) {
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
}
if (!internalGetUpdatedAnnotations().getMap().isEmpty()) {
hash = (37 * hash) + UPDATEDANNOTATIONS_FIELD_NUMBER;
hash = (53 * hash) + internalGetUpdatedAnnotations().hashCode();
}
if (hasRollbackTo()) {
hash = (37 * hash) + ROLLBACKTO_FIELD_NUMBER;
hash = (53 * hash) + getRollbackTo().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback 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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback 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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback 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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback 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;
}
/**
*
* DEPRECATED.
* DeploymentRollback stores the information required to rollback a deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentRollback}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentRollback)
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollbackOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 2:
return internalGetUpdatedAnnotations();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 2:
return internalGetMutableUpdatedAnnotations();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getRollbackToFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
name_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
internalGetMutableUpdatedAnnotations().clear();
if (rollbackToBuilder_ == null) {
rollbackTo_ = null;
} else {
rollbackToBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.name_ = name_;
result.updatedAnnotations_ = internalGetUpdatedAnnotations();
result.updatedAnnotations_.makeImmutable();
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000002;
}
if (rollbackToBuilder_ == null) {
result.rollbackTo_ = rollbackTo_;
} else {
result.rollbackTo_ = rollbackToBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback.getDefaultInstance()) return this;
if (other.hasName()) {
bitField0_ |= 0x00000001;
name_ = other.name_;
onChanged();
}
internalGetMutableUpdatedAnnotations().mergeFrom(
other.internalGetUpdatedAnnotations());
if (other.hasRollbackTo()) {
mergeRollbackTo(other.getRollbackTo());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
name_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public Builder clearName() {
bitField0_ = (bitField0_ & ~0x00000001);
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* Required: This must match the Name of a deployment.
*
*
* optional string name = 1;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> updatedAnnotations_;
private com.google.protobuf.MapField
internalGetUpdatedAnnotations() {
if (updatedAnnotations_ == null) {
return com.google.protobuf.MapField.emptyMapField(
UpdatedAnnotationsDefaultEntryHolder.defaultEntry);
}
return updatedAnnotations_;
}
private com.google.protobuf.MapField
internalGetMutableUpdatedAnnotations() {
onChanged();;
if (updatedAnnotations_ == null) {
updatedAnnotations_ = com.google.protobuf.MapField.newMapField(
UpdatedAnnotationsDefaultEntryHolder.defaultEntry);
}
if (!updatedAnnotations_.isMutable()) {
updatedAnnotations_ = updatedAnnotations_.copy();
}
return updatedAnnotations_;
}
public int getUpdatedAnnotationsCount() {
return internalGetUpdatedAnnotations().getMap().size();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public boolean containsUpdatedAnnotations(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetUpdatedAnnotations().getMap().containsKey(key);
}
/**
* Use {@link #getUpdatedAnnotationsMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getUpdatedAnnotations() {
return getUpdatedAnnotationsMap();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.util.Map getUpdatedAnnotationsMap() {
return internalGetUpdatedAnnotations().getMap();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.lang.String getUpdatedAnnotationsOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetUpdatedAnnotations().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public java.lang.String getUpdatedAnnotationsOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetUpdatedAnnotations().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearUpdatedAnnotations() {
internalGetMutableUpdatedAnnotations().getMutableMap()
.clear();
return this;
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public Builder removeUpdatedAnnotations(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
internalGetMutableUpdatedAnnotations().getMutableMap()
.remove(key);
return this;
}
/**
* Use alternate mutation accessors instead.
*/
@java.lang.Deprecated
public java.util.Map
getMutableUpdatedAnnotations() {
return internalGetMutableUpdatedAnnotations().getMutableMap();
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public Builder putUpdatedAnnotations(
java.lang.String key,
java.lang.String value) {
if (key == null) { throw new java.lang.NullPointerException(); }
if (value == null) { throw new java.lang.NullPointerException(); }
internalGetMutableUpdatedAnnotations().getMutableMap()
.put(key, value);
return this;
}
/**
*
* The annotations to be updated to a deployment
* +optional
*
*
* map<string, string> updatedAnnotations = 2;
*/
public Builder putAllUpdatedAnnotations(
java.util.Map values) {
internalGetMutableUpdatedAnnotations().getMutableMap()
.putAll(values);
return this;
}
private io.kubernetes.client.proto.V1beta1Apps.RollbackConfig rollbackTo_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder> rollbackToBuilder_;
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public boolean hasRollbackTo() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo() {
if (rollbackToBuilder_ == null) {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
} else {
return rollbackToBuilder_.getMessage();
}
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public Builder setRollbackTo(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig value) {
if (rollbackToBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rollbackTo_ = value;
onChanged();
} else {
rollbackToBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public Builder setRollbackTo(
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder builderForValue) {
if (rollbackToBuilder_ == null) {
rollbackTo_ = builderForValue.build();
onChanged();
} else {
rollbackToBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public Builder mergeRollbackTo(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig value) {
if (rollbackToBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
rollbackTo_ != null &&
rollbackTo_ != io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance()) {
rollbackTo_ =
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.newBuilder(rollbackTo_).mergeFrom(value).buildPartial();
} else {
rollbackTo_ = value;
}
onChanged();
} else {
rollbackToBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public Builder clearRollbackTo() {
if (rollbackToBuilder_ == null) {
rollbackTo_ = null;
onChanged();
} else {
rollbackToBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder getRollbackToBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getRollbackToFieldBuilder().getBuilder();
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder() {
if (rollbackToBuilder_ != null) {
return rollbackToBuilder_.getMessageOrBuilder();
} else {
return rollbackTo_ == null ?
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
}
/**
*
* The config of this deployment rollback.
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder>
getRollbackToFieldBuilder() {
if (rollbackToBuilder_ == null) {
rollbackToBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder>(
getRollbackTo(),
getParentForChildren(),
isClean());
rollbackTo_ = null;
}
return rollbackToBuilder_;
}
@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:k8s.io.api.apps.v1beta1.DeploymentRollback)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentRollback)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentRollback getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentRollback parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentRollback(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.kubernetes.client.proto.V1beta1Apps.DeploymentRollback getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentSpecOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentSpec)
com.google.protobuf.MessageOrBuilder {
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
boolean hasReplicas();
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
int getReplicas();
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
boolean hasSelector();
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
io.kubernetes.client.proto.Meta.LabelSelector getSelector();
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder();
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
boolean hasTemplate();
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate();
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder();
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
boolean hasStrategy();
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getStrategy();
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder getStrategyOrBuilder();
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
boolean hasMinReadySeconds();
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
int getMinReadySeconds();
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
boolean hasRevisionHistoryLimit();
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
int getRevisionHistoryLimit();
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
boolean hasPaused();
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
boolean getPaused();
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
boolean hasRollbackTo();
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo();
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder();
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
boolean hasProgressDeadlineSeconds();
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
int getProgressDeadlineSeconds();
}
/**
*
* DeploymentSpec is the specification of the desired behavior of the Deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentSpec}
*/
public static final class DeploymentSpec extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentSpec)
DeploymentSpecOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentSpec.newBuilder() to construct.
private DeploymentSpec(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentSpec() {
replicas_ = 0;
minReadySeconds_ = 0;
revisionHistoryLimit_ = 0;
paused_ = false;
progressDeadlineSeconds_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentSpec(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
replicas_ = input.readInt32();
break;
}
case 18: {
io.kubernetes.client.proto.Meta.LabelSelector.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = selector_.toBuilder();
}
selector_ = input.readMessage(io.kubernetes.client.proto.Meta.LabelSelector.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(selector_);
selector_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
io.kubernetes.client.proto.V1.PodTemplateSpec.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = template_.toBuilder();
}
template_ = input.readMessage(io.kubernetes.client.proto.V1.PodTemplateSpec.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(template_);
template_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 34: {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder subBuilder = null;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
subBuilder = strategy_.toBuilder();
}
strategy_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(strategy_);
strategy_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000008;
break;
}
case 40: {
bitField0_ |= 0x00000010;
minReadySeconds_ = input.readInt32();
break;
}
case 48: {
bitField0_ |= 0x00000020;
revisionHistoryLimit_ = input.readInt32();
break;
}
case 56: {
bitField0_ |= 0x00000040;
paused_ = input.readBool();
break;
}
case 66: {
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder subBuilder = null;
if (((bitField0_ & 0x00000080) == 0x00000080)) {
subBuilder = rollbackTo_.toBuilder();
}
rollbackTo_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(rollbackTo_);
rollbackTo_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000080;
break;
}
case 72: {
bitField0_ |= 0x00000100;
progressDeadlineSeconds_ = input.readInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder.class);
}
private int bitField0_;
public static final int REPLICAS_FIELD_NUMBER = 1;
private int replicas_;
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
public static final int SELECTOR_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.Meta.LabelSelector selector_;
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public boolean hasSelector() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector getSelector() {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder() {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
public static final int TEMPLATE_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1.PodTemplateSpec template_;
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public boolean hasTemplate() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate() {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder() {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
public static final int STRATEGY_FIELD_NUMBER = 4;
private io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy strategy_;
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public boolean hasStrategy() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getStrategy() {
return strategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance() : strategy_;
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder getStrategyOrBuilder() {
return strategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance() : strategy_;
}
public static final int MINREADYSECONDS_FIELD_NUMBER = 5;
private int minReadySeconds_;
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public boolean hasMinReadySeconds() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public int getMinReadySeconds() {
return minReadySeconds_;
}
public static final int REVISIONHISTORYLIMIT_FIELD_NUMBER = 6;
private int revisionHistoryLimit_;
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public boolean hasRevisionHistoryLimit() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public int getRevisionHistoryLimit() {
return revisionHistoryLimit_;
}
public static final int PAUSED_FIELD_NUMBER = 7;
private boolean paused_;
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public boolean hasPaused() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public boolean getPaused() {
return paused_;
}
public static final int ROLLBACKTO_FIELD_NUMBER = 8;
private io.kubernetes.client.proto.V1beta1Apps.RollbackConfig rollbackTo_;
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public boolean hasRollbackTo() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo() {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder() {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
public static final int PROGRESSDEADLINESECONDS_FIELD_NUMBER = 9;
private int progressDeadlineSeconds_;
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public boolean hasProgressDeadlineSeconds() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public int getProgressDeadlineSeconds() {
return progressDeadlineSeconds_;
}
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) == 0x00000001)) {
output.writeInt32(1, replicas_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getSelector());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getTemplate());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeMessage(4, getStrategy());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeInt32(5, minReadySeconds_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, revisionHistoryLimit_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeBool(7, paused_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeMessage(8, getRollbackTo());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
output.writeInt32(9, progressDeadlineSeconds_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, replicas_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSelector());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getTemplate());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getStrategy());
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, minReadySeconds_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, revisionHistoryLimit_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(7, paused_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(8, getRollbackTo());
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(9, progressDeadlineSeconds_);
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec) obj;
boolean result = true;
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && (hasSelector() == other.hasSelector());
if (hasSelector()) {
result = result && getSelector()
.equals(other.getSelector());
}
result = result && (hasTemplate() == other.hasTemplate());
if (hasTemplate()) {
result = result && getTemplate()
.equals(other.getTemplate());
}
result = result && (hasStrategy() == other.hasStrategy());
if (hasStrategy()) {
result = result && getStrategy()
.equals(other.getStrategy());
}
result = result && (hasMinReadySeconds() == other.hasMinReadySeconds());
if (hasMinReadySeconds()) {
result = result && (getMinReadySeconds()
== other.getMinReadySeconds());
}
result = result && (hasRevisionHistoryLimit() == other.hasRevisionHistoryLimit());
if (hasRevisionHistoryLimit()) {
result = result && (getRevisionHistoryLimit()
== other.getRevisionHistoryLimit());
}
result = result && (hasPaused() == other.hasPaused());
if (hasPaused()) {
result = result && (getPaused()
== other.getPaused());
}
result = result && (hasRollbackTo() == other.hasRollbackTo());
if (hasRollbackTo()) {
result = result && getRollbackTo()
.equals(other.getRollbackTo());
}
result = result && (hasProgressDeadlineSeconds() == other.hasProgressDeadlineSeconds());
if (hasProgressDeadlineSeconds()) {
result = result && (getProgressDeadlineSeconds()
== other.getProgressDeadlineSeconds());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
if (hasSelector()) {
hash = (37 * hash) + SELECTOR_FIELD_NUMBER;
hash = (53 * hash) + getSelector().hashCode();
}
if (hasTemplate()) {
hash = (37 * hash) + TEMPLATE_FIELD_NUMBER;
hash = (53 * hash) + getTemplate().hashCode();
}
if (hasStrategy()) {
hash = (37 * hash) + STRATEGY_FIELD_NUMBER;
hash = (53 * hash) + getStrategy().hashCode();
}
if (hasMinReadySeconds()) {
hash = (37 * hash) + MINREADYSECONDS_FIELD_NUMBER;
hash = (53 * hash) + getMinReadySeconds();
}
if (hasRevisionHistoryLimit()) {
hash = (37 * hash) + REVISIONHISTORYLIMIT_FIELD_NUMBER;
hash = (53 * hash) + getRevisionHistoryLimit();
}
if (hasPaused()) {
hash = (37 * hash) + PAUSED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getPaused());
}
if (hasRollbackTo()) {
hash = (37 * hash) + ROLLBACKTO_FIELD_NUMBER;
hash = (53 * hash) + getRollbackTo().hashCode();
}
if (hasProgressDeadlineSeconds()) {
hash = (37 * hash) + PROGRESSDEADLINESECONDS_FIELD_NUMBER;
hash = (53 * hash) + getProgressDeadlineSeconds();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec 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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec 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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec 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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec 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;
}
/**
*
* DeploymentSpec is the specification of the desired behavior of the Deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentSpec}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentSpec)
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpecOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getSelectorFieldBuilder();
getTemplateFieldBuilder();
getStrategyFieldBuilder();
getRollbackToFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
if (selectorBuilder_ == null) {
selector_ = null;
} else {
selectorBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (templateBuilder_ == null) {
template_ = null;
} else {
templateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
if (strategyBuilder_ == null) {
strategy_ = null;
} else {
strategyBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
minReadySeconds_ = 0;
bitField0_ = (bitField0_ & ~0x00000010);
revisionHistoryLimit_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
paused_ = false;
bitField0_ = (bitField0_ & ~0x00000040);
if (rollbackToBuilder_ == null) {
rollbackTo_ = null;
} else {
rollbackToBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000080);
progressDeadlineSeconds_ = 0;
bitField0_ = (bitField0_ & ~0x00000100);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.replicas_ = replicas_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (selectorBuilder_ == null) {
result.selector_ = selector_;
} else {
result.selector_ = selectorBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (templateBuilder_ == null) {
result.template_ = template_;
} else {
result.template_ = templateBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
if (strategyBuilder_ == null) {
result.strategy_ = strategy_;
} else {
result.strategy_ = strategyBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.minReadySeconds_ = minReadySeconds_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.revisionHistoryLimit_ = revisionHistoryLimit_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.paused_ = paused_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
if (rollbackToBuilder_ == null) {
result.rollbackTo_ = rollbackTo_;
} else {
result.rollbackTo_ = rollbackToBuilder_.build();
}
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
result.progressDeadlineSeconds_ = progressDeadlineSeconds_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec.getDefaultInstance()) return this;
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
if (other.hasSelector()) {
mergeSelector(other.getSelector());
}
if (other.hasTemplate()) {
mergeTemplate(other.getTemplate());
}
if (other.hasStrategy()) {
mergeStrategy(other.getStrategy());
}
if (other.hasMinReadySeconds()) {
setMinReadySeconds(other.getMinReadySeconds());
}
if (other.hasRevisionHistoryLimit()) {
setRevisionHistoryLimit(other.getRevisionHistoryLimit());
}
if (other.hasPaused()) {
setPaused(other.getPaused());
}
if (other.hasRollbackTo()) {
mergeRollbackTo(other.getRollbackTo());
}
if (other.hasProgressDeadlineSeconds()) {
setProgressDeadlineSeconds(other.getProgressDeadlineSeconds());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int replicas_ ;
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000001;
replicas_ = value;
onChanged();
return this;
}
/**
*
* Number of desired pods. This is a pointer to distinguish between explicit
* zero and not specified. Defaults to 1.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
onChanged();
return this;
}
private io.kubernetes.client.proto.Meta.LabelSelector selector_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder> selectorBuilder_;
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public boolean hasSelector() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector getSelector() {
if (selectorBuilder_ == null) {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
} else {
return selectorBuilder_.getMessage();
}
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder setSelector(io.kubernetes.client.proto.Meta.LabelSelector value) {
if (selectorBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
selector_ = value;
onChanged();
} else {
selectorBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder setSelector(
io.kubernetes.client.proto.Meta.LabelSelector.Builder builderForValue) {
if (selectorBuilder_ == null) {
selector_ = builderForValue.build();
onChanged();
} else {
selectorBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder mergeSelector(io.kubernetes.client.proto.Meta.LabelSelector value) {
if (selectorBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
selector_ != null &&
selector_ != io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance()) {
selector_ =
io.kubernetes.client.proto.Meta.LabelSelector.newBuilder(selector_).mergeFrom(value).buildPartial();
} else {
selector_ = value;
}
onChanged();
} else {
selectorBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder clearSelector() {
if (selectorBuilder_ == null) {
selector_ = null;
onChanged();
} else {
selectorBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector.Builder getSelectorBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getSelectorFieldBuilder().getBuilder();
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder() {
if (selectorBuilder_ != null) {
return selectorBuilder_.getMessageOrBuilder();
} else {
return selector_ == null ?
io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
}
/**
*
* Label selector for pods. Existing ReplicaSets whose pods are
* selected by this will be the ones affected by this deployment.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder>
getSelectorFieldBuilder() {
if (selectorBuilder_ == null) {
selectorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder>(
getSelector(),
getParentForChildren(),
isClean());
selector_ = null;
}
return selectorBuilder_;
}
private io.kubernetes.client.proto.V1.PodTemplateSpec template_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder> templateBuilder_;
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public boolean hasTemplate() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate() {
if (templateBuilder_ == null) {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
} else {
return templateBuilder_.getMessage();
}
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder setTemplate(io.kubernetes.client.proto.V1.PodTemplateSpec value) {
if (templateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
template_ = value;
onChanged();
} else {
templateBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder setTemplate(
io.kubernetes.client.proto.V1.PodTemplateSpec.Builder builderForValue) {
if (templateBuilder_ == null) {
template_ = builderForValue.build();
onChanged();
} else {
templateBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder mergeTemplate(io.kubernetes.client.proto.V1.PodTemplateSpec value) {
if (templateBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
template_ != null &&
template_ != io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance()) {
template_ =
io.kubernetes.client.proto.V1.PodTemplateSpec.newBuilder(template_).mergeFrom(value).buildPartial();
} else {
template_ = value;
}
onChanged();
} else {
templateBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder clearTemplate() {
if (templateBuilder_ == null) {
template_ = null;
onChanged();
} else {
templateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec.Builder getTemplateBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getTemplateFieldBuilder().getBuilder();
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder() {
if (templateBuilder_ != null) {
return templateBuilder_.getMessageOrBuilder();
} else {
return template_ == null ?
io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
}
/**
*
* Template describes the pods that will be created.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder>
getTemplateFieldBuilder() {
if (templateBuilder_ == null) {
templateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder>(
getTemplate(),
getParentForChildren(),
isClean());
template_ = null;
}
return templateBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy strategy_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder> strategyBuilder_;
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public boolean hasStrategy() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getStrategy() {
if (strategyBuilder_ == null) {
return strategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance() : strategy_;
} else {
return strategyBuilder_.getMessage();
}
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public Builder setStrategy(io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy value) {
if (strategyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
strategy_ = value;
onChanged();
} else {
strategyBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public Builder setStrategy(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder builderForValue) {
if (strategyBuilder_ == null) {
strategy_ = builderForValue.build();
onChanged();
} else {
strategyBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public Builder mergeStrategy(io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy value) {
if (strategyBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008) &&
strategy_ != null &&
strategy_ != io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance()) {
strategy_ =
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.newBuilder(strategy_).mergeFrom(value).buildPartial();
} else {
strategy_ = value;
}
onChanged();
} else {
strategyBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
return this;
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public Builder clearStrategy() {
if (strategyBuilder_ == null) {
strategy_ = null;
onChanged();
} else {
strategyBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder getStrategyBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getStrategyFieldBuilder().getBuilder();
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder getStrategyOrBuilder() {
if (strategyBuilder_ != null) {
return strategyBuilder_.getMessageOrBuilder();
} else {
return strategy_ == null ?
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance() : strategy_;
}
}
/**
*
* The deployment strategy to use to replace existing pods with new ones.
* +optional
* +patchStrategy=retainKeys
*
*
* optional .k8s.io.api.apps.v1beta1.DeploymentStrategy strategy = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder>
getStrategyFieldBuilder() {
if (strategyBuilder_ == null) {
strategyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder>(
getStrategy(),
getParentForChildren(),
isClean());
strategy_ = null;
}
return strategyBuilder_;
}
private int minReadySeconds_ ;
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public boolean hasMinReadySeconds() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public int getMinReadySeconds() {
return minReadySeconds_;
}
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public Builder setMinReadySeconds(int value) {
bitField0_ |= 0x00000010;
minReadySeconds_ = value;
onChanged();
return this;
}
/**
*
* Minimum number of seconds for which a newly created pod should be ready
* without any of its container crashing, for it to be considered available.
* Defaults to 0 (pod will be considered available as soon as it is ready)
* +optional
*
*
* optional int32 minReadySeconds = 5;
*/
public Builder clearMinReadySeconds() {
bitField0_ = (bitField0_ & ~0x00000010);
minReadySeconds_ = 0;
onChanged();
return this;
}
private int revisionHistoryLimit_ ;
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public boolean hasRevisionHistoryLimit() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public int getRevisionHistoryLimit() {
return revisionHistoryLimit_;
}
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public Builder setRevisionHistoryLimit(int value) {
bitField0_ |= 0x00000020;
revisionHistoryLimit_ = value;
onChanged();
return this;
}
/**
*
* The number of old ReplicaSets to retain to allow rollback.
* This is a pointer to distinguish between explicit zero and not specified.
* Defaults to 2.
* +optional
*
*
* optional int32 revisionHistoryLimit = 6;
*/
public Builder clearRevisionHistoryLimit() {
bitField0_ = (bitField0_ & ~0x00000020);
revisionHistoryLimit_ = 0;
onChanged();
return this;
}
private boolean paused_ ;
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public boolean hasPaused() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public boolean getPaused() {
return paused_;
}
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public Builder setPaused(boolean value) {
bitField0_ |= 0x00000040;
paused_ = value;
onChanged();
return this;
}
/**
*
* Indicates that the deployment is paused.
* +optional
*
*
* optional bool paused = 7;
*/
public Builder clearPaused() {
bitField0_ = (bitField0_ & ~0x00000040);
paused_ = false;
onChanged();
return this;
}
private io.kubernetes.client.proto.V1beta1Apps.RollbackConfig rollbackTo_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder> rollbackToBuilder_;
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public boolean hasRollbackTo() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getRollbackTo() {
if (rollbackToBuilder_ == null) {
return rollbackTo_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
} else {
return rollbackToBuilder_.getMessage();
}
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public Builder setRollbackTo(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig value) {
if (rollbackToBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rollbackTo_ = value;
onChanged();
} else {
rollbackToBuilder_.setMessage(value);
}
bitField0_ |= 0x00000080;
return this;
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public Builder setRollbackTo(
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder builderForValue) {
if (rollbackToBuilder_ == null) {
rollbackTo_ = builderForValue.build();
onChanged();
} else {
rollbackToBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000080;
return this;
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public Builder mergeRollbackTo(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig value) {
if (rollbackToBuilder_ == null) {
if (((bitField0_ & 0x00000080) == 0x00000080) &&
rollbackTo_ != null &&
rollbackTo_ != io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance()) {
rollbackTo_ =
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.newBuilder(rollbackTo_).mergeFrom(value).buildPartial();
} else {
rollbackTo_ = value;
}
onChanged();
} else {
rollbackToBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000080;
return this;
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public Builder clearRollbackTo() {
if (rollbackToBuilder_ == null) {
rollbackTo_ = null;
onChanged();
} else {
rollbackToBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000080);
return this;
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder getRollbackToBuilder() {
bitField0_ |= 0x00000080;
onChanged();
return getRollbackToFieldBuilder().getBuilder();
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder getRollbackToOrBuilder() {
if (rollbackToBuilder_ != null) {
return rollbackToBuilder_.getMessageOrBuilder();
} else {
return rollbackTo_ == null ?
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance() : rollbackTo_;
}
}
/**
*
* DEPRECATED.
* The config this deployment is rolling back to. Will be cleared after rollback is done.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollbackConfig rollbackTo = 8;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder>
getRollbackToFieldBuilder() {
if (rollbackToBuilder_ == null) {
rollbackToBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder, io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder>(
getRollbackTo(),
getParentForChildren(),
isClean());
rollbackTo_ = null;
}
return rollbackToBuilder_;
}
private int progressDeadlineSeconds_ ;
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public boolean hasProgressDeadlineSeconds() {
return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public int getProgressDeadlineSeconds() {
return progressDeadlineSeconds_;
}
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public Builder setProgressDeadlineSeconds(int value) {
bitField0_ |= 0x00000100;
progressDeadlineSeconds_ = value;
onChanged();
return this;
}
/**
*
* The maximum time in seconds for a deployment to make progress before it
* is considered to be failed. The deployment controller will continue to
* process failed deployments and a condition with a ProgressDeadlineExceeded
* reason will be surfaced in the deployment status. Note that progress will
* not be estimated during the time a deployment is paused. Defaults to 600s.
* +optional
*
*
* optional int32 progressDeadlineSeconds = 9;
*/
public Builder clearProgressDeadlineSeconds() {
bitField0_ = (bitField0_ & ~0x00000100);
progressDeadlineSeconds_ = 0;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.DeploymentSpec)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentSpec)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentSpec parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentSpec(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.kubernetes.client.proto.V1beta1Apps.DeploymentSpec getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentStatusOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentStatus)
com.google.protobuf.MessageOrBuilder {
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
boolean hasObservedGeneration();
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
long getObservedGeneration();
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
boolean hasReplicas();
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
int getReplicas();
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
boolean hasUpdatedReplicas();
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
int getUpdatedReplicas();
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
boolean hasReadyReplicas();
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
int getReadyReplicas();
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
boolean hasAvailableReplicas();
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
int getAvailableReplicas();
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
boolean hasUnavailableReplicas();
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
int getUnavailableReplicas();
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
java.util.List
getConditionsList();
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getConditions(int index);
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
int getConditionsCount();
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder>
getConditionsOrBuilderList();
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder getConditionsOrBuilder(
int index);
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
boolean hasCollisionCount();
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
int getCollisionCount();
}
/**
*
* DeploymentStatus is the most recently observed status of the Deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentStatus}
*/
public static final class DeploymentStatus extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentStatus)
DeploymentStatusOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentStatus.newBuilder() to construct.
private DeploymentStatus(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentStatus() {
observedGeneration_ = 0L;
replicas_ = 0;
updatedReplicas_ = 0;
readyReplicas_ = 0;
availableReplicas_ = 0;
unavailableReplicas_ = 0;
conditions_ = java.util.Collections.emptyList();
collisionCount_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentStatus(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
observedGeneration_ = input.readInt64();
break;
}
case 16: {
bitField0_ |= 0x00000002;
replicas_ = input.readInt32();
break;
}
case 24: {
bitField0_ |= 0x00000004;
updatedReplicas_ = input.readInt32();
break;
}
case 32: {
bitField0_ |= 0x00000010;
availableReplicas_ = input.readInt32();
break;
}
case 40: {
bitField0_ |= 0x00000020;
unavailableReplicas_ = input.readInt32();
break;
}
case 50: {
if (!((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
conditions_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000040;
}
conditions_.add(
input.readMessage(io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.PARSER, extensionRegistry));
break;
}
case 56: {
bitField0_ |= 0x00000008;
readyReplicas_ = input.readInt32();
break;
}
case 64: {
bitField0_ |= 0x00000040;
collisionCount_ = input.readInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
conditions_ = java.util.Collections.unmodifiableList(conditions_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder.class);
}
private int bitField0_;
public static final int OBSERVEDGENERATION_FIELD_NUMBER = 1;
private long observedGeneration_;
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public boolean hasObservedGeneration() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public long getObservedGeneration() {
return observedGeneration_;
}
public static final int REPLICAS_FIELD_NUMBER = 2;
private int replicas_;
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public int getReplicas() {
return replicas_;
}
public static final int UPDATEDREPLICAS_FIELD_NUMBER = 3;
private int updatedReplicas_;
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public boolean hasUpdatedReplicas() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public int getUpdatedReplicas() {
return updatedReplicas_;
}
public static final int READYREPLICAS_FIELD_NUMBER = 7;
private int readyReplicas_;
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public boolean hasReadyReplicas() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public int getReadyReplicas() {
return readyReplicas_;
}
public static final int AVAILABLEREPLICAS_FIELD_NUMBER = 4;
private int availableReplicas_;
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public boolean hasAvailableReplicas() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public int getAvailableReplicas() {
return availableReplicas_;
}
public static final int UNAVAILABLEREPLICAS_FIELD_NUMBER = 5;
private int unavailableReplicas_;
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public boolean hasUnavailableReplicas() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public int getUnavailableReplicas() {
return unavailableReplicas_;
}
public static final int CONDITIONS_FIELD_NUMBER = 6;
private java.util.List conditions_;
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public java.util.List getConditionsList() {
return conditions_;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder>
getConditionsOrBuilderList() {
return conditions_;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public int getConditionsCount() {
return conditions_.size();
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getConditions(int index) {
return conditions_.get(index);
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder getConditionsOrBuilder(
int index) {
return conditions_.get(index);
}
public static final int COLLISIONCOUNT_FIELD_NUMBER = 8;
private int collisionCount_;
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public boolean hasCollisionCount() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public int getCollisionCount() {
return collisionCount_;
}
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) == 0x00000001)) {
output.writeInt64(1, observedGeneration_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, replicas_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, updatedReplicas_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeInt32(4, availableReplicas_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(5, unavailableReplicas_);
}
for (int i = 0; i < conditions_.size(); i++) {
output.writeMessage(6, conditions_.get(i));
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeInt32(7, readyReplicas_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeInt32(8, collisionCount_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, observedGeneration_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, replicas_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, updatedReplicas_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, availableReplicas_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, unavailableReplicas_);
}
for (int i = 0; i < conditions_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, conditions_.get(i));
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(7, readyReplicas_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(8, collisionCount_);
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus) obj;
boolean result = true;
result = result && (hasObservedGeneration() == other.hasObservedGeneration());
if (hasObservedGeneration()) {
result = result && (getObservedGeneration()
== other.getObservedGeneration());
}
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && (hasUpdatedReplicas() == other.hasUpdatedReplicas());
if (hasUpdatedReplicas()) {
result = result && (getUpdatedReplicas()
== other.getUpdatedReplicas());
}
result = result && (hasReadyReplicas() == other.hasReadyReplicas());
if (hasReadyReplicas()) {
result = result && (getReadyReplicas()
== other.getReadyReplicas());
}
result = result && (hasAvailableReplicas() == other.hasAvailableReplicas());
if (hasAvailableReplicas()) {
result = result && (getAvailableReplicas()
== other.getAvailableReplicas());
}
result = result && (hasUnavailableReplicas() == other.hasUnavailableReplicas());
if (hasUnavailableReplicas()) {
result = result && (getUnavailableReplicas()
== other.getUnavailableReplicas());
}
result = result && getConditionsList()
.equals(other.getConditionsList());
result = result && (hasCollisionCount() == other.hasCollisionCount());
if (hasCollisionCount()) {
result = result && (getCollisionCount()
== other.getCollisionCount());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasObservedGeneration()) {
hash = (37 * hash) + OBSERVEDGENERATION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getObservedGeneration());
}
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
if (hasUpdatedReplicas()) {
hash = (37 * hash) + UPDATEDREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getUpdatedReplicas();
}
if (hasReadyReplicas()) {
hash = (37 * hash) + READYREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReadyReplicas();
}
if (hasAvailableReplicas()) {
hash = (37 * hash) + AVAILABLEREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getAvailableReplicas();
}
if (hasUnavailableReplicas()) {
hash = (37 * hash) + UNAVAILABLEREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getUnavailableReplicas();
}
if (getConditionsCount() > 0) {
hash = (37 * hash) + CONDITIONS_FIELD_NUMBER;
hash = (53 * hash) + getConditionsList().hashCode();
}
if (hasCollisionCount()) {
hash = (37 * hash) + COLLISIONCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getCollisionCount();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus 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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus 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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus 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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus 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;
}
/**
*
* DeploymentStatus is the most recently observed status of the Deployment.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentStatus}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentStatus)
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatusOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getConditionsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
observedGeneration_ = 0L;
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
updatedReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
readyReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000008);
availableReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000010);
unavailableReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
if (conditionsBuilder_ == null) {
conditions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
} else {
conditionsBuilder_.clear();
}
collisionCount_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.observedGeneration_ = observedGeneration_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.replicas_ = replicas_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.updatedReplicas_ = updatedReplicas_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.readyReplicas_ = readyReplicas_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.availableReplicas_ = availableReplicas_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.unavailableReplicas_ = unavailableReplicas_;
if (conditionsBuilder_ == null) {
if (((bitField0_ & 0x00000040) == 0x00000040)) {
conditions_ = java.util.Collections.unmodifiableList(conditions_);
bitField0_ = (bitField0_ & ~0x00000040);
}
result.conditions_ = conditions_;
} else {
result.conditions_ = conditionsBuilder_.build();
}
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000040;
}
result.collisionCount_ = collisionCount_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus.getDefaultInstance()) return this;
if (other.hasObservedGeneration()) {
setObservedGeneration(other.getObservedGeneration());
}
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
if (other.hasUpdatedReplicas()) {
setUpdatedReplicas(other.getUpdatedReplicas());
}
if (other.hasReadyReplicas()) {
setReadyReplicas(other.getReadyReplicas());
}
if (other.hasAvailableReplicas()) {
setAvailableReplicas(other.getAvailableReplicas());
}
if (other.hasUnavailableReplicas()) {
setUnavailableReplicas(other.getUnavailableReplicas());
}
if (conditionsBuilder_ == null) {
if (!other.conditions_.isEmpty()) {
if (conditions_.isEmpty()) {
conditions_ = other.conditions_;
bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureConditionsIsMutable();
conditions_.addAll(other.conditions_);
}
onChanged();
}
} else {
if (!other.conditions_.isEmpty()) {
if (conditionsBuilder_.isEmpty()) {
conditionsBuilder_.dispose();
conditionsBuilder_ = null;
conditions_ = other.conditions_;
bitField0_ = (bitField0_ & ~0x00000040);
conditionsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getConditionsFieldBuilder() : null;
} else {
conditionsBuilder_.addAllMessages(other.conditions_);
}
}
}
if (other.hasCollisionCount()) {
setCollisionCount(other.getCollisionCount());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private long observedGeneration_ ;
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public boolean hasObservedGeneration() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public long getObservedGeneration() {
return observedGeneration_;
}
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public Builder setObservedGeneration(long value) {
bitField0_ |= 0x00000001;
observedGeneration_ = value;
onChanged();
return this;
}
/**
*
* The generation observed by the deployment controller.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public Builder clearObservedGeneration() {
bitField0_ = (bitField0_ & ~0x00000001);
observedGeneration_ = 0L;
onChanged();
return this;
}
private int replicas_ ;
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000002;
replicas_ = value;
onChanged();
return this;
}
/**
*
* Total number of non-terminated pods targeted by this deployment (their labels match the selector).
* +optional
*
*
* optional int32 replicas = 2;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000002);
replicas_ = 0;
onChanged();
return this;
}
private int updatedReplicas_ ;
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public boolean hasUpdatedReplicas() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public int getUpdatedReplicas() {
return updatedReplicas_;
}
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public Builder setUpdatedReplicas(int value) {
bitField0_ |= 0x00000004;
updatedReplicas_ = value;
onChanged();
return this;
}
/**
*
* Total number of non-terminated pods targeted by this deployment that have the desired template spec.
* +optional
*
*
* optional int32 updatedReplicas = 3;
*/
public Builder clearUpdatedReplicas() {
bitField0_ = (bitField0_ & ~0x00000004);
updatedReplicas_ = 0;
onChanged();
return this;
}
private int readyReplicas_ ;
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public boolean hasReadyReplicas() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public int getReadyReplicas() {
return readyReplicas_;
}
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public Builder setReadyReplicas(int value) {
bitField0_ |= 0x00000008;
readyReplicas_ = value;
onChanged();
return this;
}
/**
*
* Total number of ready pods targeted by this deployment.
* +optional
*
*
* optional int32 readyReplicas = 7;
*/
public Builder clearReadyReplicas() {
bitField0_ = (bitField0_ & ~0x00000008);
readyReplicas_ = 0;
onChanged();
return this;
}
private int availableReplicas_ ;
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public boolean hasAvailableReplicas() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public int getAvailableReplicas() {
return availableReplicas_;
}
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public Builder setAvailableReplicas(int value) {
bitField0_ |= 0x00000010;
availableReplicas_ = value;
onChanged();
return this;
}
/**
*
* Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
* +optional
*
*
* optional int32 availableReplicas = 4;
*/
public Builder clearAvailableReplicas() {
bitField0_ = (bitField0_ & ~0x00000010);
availableReplicas_ = 0;
onChanged();
return this;
}
private int unavailableReplicas_ ;
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public boolean hasUnavailableReplicas() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public int getUnavailableReplicas() {
return unavailableReplicas_;
}
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public Builder setUnavailableReplicas(int value) {
bitField0_ |= 0x00000020;
unavailableReplicas_ = value;
onChanged();
return this;
}
/**
*
* Total number of unavailable pods targeted by this deployment. This is the total number of
* pods that are still required for the deployment to have 100% available capacity. They may
* either be pods that are running but not yet available or pods that still have not been created.
* +optional
*
*
* optional int32 unavailableReplicas = 5;
*/
public Builder clearUnavailableReplicas() {
bitField0_ = (bitField0_ & ~0x00000020);
unavailableReplicas_ = 0;
onChanged();
return this;
}
private java.util.List conditions_ =
java.util.Collections.emptyList();
private void ensureConditionsIsMutable() {
if (!((bitField0_ & 0x00000040) == 0x00000040)) {
conditions_ = new java.util.ArrayList(conditions_);
bitField0_ |= 0x00000040;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder> conditionsBuilder_;
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public java.util.List getConditionsList() {
if (conditionsBuilder_ == null) {
return java.util.Collections.unmodifiableList(conditions_);
} else {
return conditionsBuilder_.getMessageList();
}
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public int getConditionsCount() {
if (conditionsBuilder_ == null) {
return conditions_.size();
} else {
return conditionsBuilder_.getCount();
}
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition getConditions(int index) {
if (conditionsBuilder_ == null) {
return conditions_.get(index);
} else {
return conditionsBuilder_.getMessage(index);
}
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder setConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.set(index, value);
onChanged();
} else {
conditionsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder setConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.set(index, builderForValue.build());
onChanged();
} else {
conditionsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder addConditions(io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.add(value);
onChanged();
} else {
conditionsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder addConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.add(index, value);
onChanged();
} else {
conditionsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder addConditions(
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.add(builderForValue.build());
onChanged();
} else {
conditionsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder addConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.add(index, builderForValue.build());
onChanged();
} else {
conditionsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder addAllConditions(
java.lang.Iterable extends io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition> values) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, conditions_);
onChanged();
} else {
conditionsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder clearConditions() {
if (conditionsBuilder_ == null) {
conditions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
} else {
conditionsBuilder_.clear();
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public Builder removeConditions(int index) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.remove(index);
onChanged();
} else {
conditionsBuilder_.remove(index);
}
return this;
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder getConditionsBuilder(
int index) {
return getConditionsFieldBuilder().getBuilder(index);
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder getConditionsOrBuilder(
int index) {
if (conditionsBuilder_ == null) {
return conditions_.get(index); } else {
return conditionsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder>
getConditionsOrBuilderList() {
if (conditionsBuilder_ != null) {
return conditionsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(conditions_);
}
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder addConditionsBuilder() {
return getConditionsFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.getDefaultInstance());
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder addConditionsBuilder(
int index) {
return getConditionsFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.getDefaultInstance());
}
/**
*
* Represents the latest available observations of a deployment's current state.
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.DeploymentCondition conditions = 6;
*/
public java.util.List
getConditionsBuilderList() {
return getConditionsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder>
getConditionsFieldBuilder() {
if (conditionsBuilder_ == null) {
conditionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition, io.kubernetes.client.proto.V1beta1Apps.DeploymentCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.DeploymentConditionOrBuilder>(
conditions_,
((bitField0_ & 0x00000040) == 0x00000040),
getParentForChildren(),
isClean());
conditions_ = null;
}
return conditionsBuilder_;
}
private int collisionCount_ ;
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public boolean hasCollisionCount() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public int getCollisionCount() {
return collisionCount_;
}
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public Builder setCollisionCount(int value) {
bitField0_ |= 0x00000080;
collisionCount_ = value;
onChanged();
return this;
}
/**
*
* Count of hash collisions for the Deployment. The Deployment controller uses this
* field as a collision avoidance mechanism when it needs to create the name for the
* newest ReplicaSet.
* +optional
*
*
* optional int32 collisionCount = 8;
*/
public Builder clearCollisionCount() {
bitField0_ = (bitField0_ & ~0x00000080);
collisionCount_ = 0;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.DeploymentStatus)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentStatus)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentStatus parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentStatus(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.kubernetes.client.proto.V1beta1Apps.DeploymentStatus getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface DeploymentStrategyOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.DeploymentStrategy)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
boolean hasType();
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
java.lang.String getType();
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
boolean hasRollingUpdate();
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getRollingUpdate();
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder getRollingUpdateOrBuilder();
}
/**
*
* DeploymentStrategy describes how to replace existing pods with new ones.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentStrategy}
*/
public static final class DeploymentStrategy extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.DeploymentStrategy)
DeploymentStrategyOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeploymentStrategy.newBuilder() to construct.
private DeploymentStrategy(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeploymentStrategy() {
type_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DeploymentStrategy(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
type_ = bs;
break;
}
case 18: {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = rollingUpdate_.toBuilder();
}
rollingUpdate_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(rollingUpdate_);
rollingUpdate_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder.class);
}
private int bitField0_;
public static final int TYPE_FIELD_NUMBER = 1;
private volatile java.lang.Object type_;
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
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 (bs.isValidUtf8()) {
type_ = s;
}
return s;
}
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ROLLINGUPDATE_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment rollingUpdate_;
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public boolean hasRollingUpdate() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getRollingUpdate() {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance() : rollingUpdate_;
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder getRollingUpdateOrBuilder() {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance() : rollingUpdate_;
}
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) == 0x00000001)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getRollingUpdate());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getRollingUpdate());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy other = (io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy) obj;
boolean result = true;
result = result && (hasType() == other.hasType());
if (hasType()) {
result = result && getType()
.equals(other.getType());
}
result = result && (hasRollingUpdate() == other.hasRollingUpdate());
if (hasRollingUpdate()) {
result = result && getRollingUpdate()
.equals(other.getRollingUpdate());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasType()) {
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + getType().hashCode();
}
if (hasRollingUpdate()) {
hash = (37 * hash) + ROLLINGUPDATE_FIELD_NUMBER;
hash = (53 * hash) + getRollingUpdate().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy 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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy 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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy 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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy 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;
}
/**
*
* DeploymentStrategy describes how to replace existing pods with new ones.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.DeploymentStrategy}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.DeploymentStrategy)
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.class, io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getRollingUpdateFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
type_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = null;
} else {
rollingUpdateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy build() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy result = new io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (rollingUpdateBuilder_ == null) {
result.rollingUpdate_ = rollingUpdate_;
} else {
result.rollingUpdate_ = rollingUpdateBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy.getDefaultInstance()) return this;
if (other.hasType()) {
bitField0_ |= 0x00000001;
type_ = other.type_;
onChanged();
}
if (other.hasRollingUpdate()) {
mergeRollingUpdate(other.getRollingUpdate());
}
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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object type_ = "";
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public Builder setType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000001);
type_ = getDefaultInstance().getType();
onChanged();
return this;
}
/**
*
* Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
* +optional
*
*
* optional string type = 1;
*/
public Builder setTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
private io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment rollingUpdate_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder> rollingUpdateBuilder_;
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public boolean hasRollingUpdate() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getRollingUpdate() {
if (rollingUpdateBuilder_ == null) {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance() : rollingUpdate_;
} else {
return rollingUpdateBuilder_.getMessage();
}
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public Builder setRollingUpdate(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment value) {
if (rollingUpdateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rollingUpdate_ = value;
onChanged();
} else {
rollingUpdateBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public Builder setRollingUpdate(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder builderForValue) {
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = builderForValue.build();
onChanged();
} else {
rollingUpdateBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public Builder mergeRollingUpdate(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment value) {
if (rollingUpdateBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
rollingUpdate_ != null &&
rollingUpdate_ != io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance()) {
rollingUpdate_ =
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.newBuilder(rollingUpdate_).mergeFrom(value).buildPartial();
} else {
rollingUpdate_ = value;
}
onChanged();
} else {
rollingUpdateBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public Builder clearRollingUpdate() {
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = null;
onChanged();
} else {
rollingUpdateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder getRollingUpdateBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getRollingUpdateFieldBuilder().getBuilder();
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder getRollingUpdateOrBuilder() {
if (rollingUpdateBuilder_ != null) {
return rollingUpdateBuilder_.getMessageOrBuilder();
} else {
return rollingUpdate_ == null ?
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance() : rollingUpdate_;
}
}
/**
*
* Rolling update config params. Present only if DeploymentStrategyType =
* RollingUpdate.
* ---
* TODO: Update this to follow our convention for oneOf, whatever we decide it
* to be.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateDeployment rollingUpdate = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder>
getRollingUpdateFieldBuilder() {
if (rollingUpdateBuilder_ == null) {
rollingUpdateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder>(
getRollingUpdate(),
getParentForChildren(),
isClean());
rollingUpdate_ = null;
}
return rollingUpdateBuilder_;
}
@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:k8s.io.api.apps.v1beta1.DeploymentStrategy)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.DeploymentStrategy)
private static final io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy();
}
public static io.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeploymentStrategy parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DeploymentStrategy(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.kubernetes.client.proto.V1beta1Apps.DeploymentStrategy getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RollbackConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.RollbackConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
boolean hasRevision();
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
long getRevision();
}
/**
*
* DEPRECATED.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollbackConfig}
*/
public static final class RollbackConfig extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.RollbackConfig)
RollbackConfigOrBuilder {
private static final long serialVersionUID = 0L;
// Use RollbackConfig.newBuilder() to construct.
private RollbackConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RollbackConfig() {
revision_ = 0L;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RollbackConfig(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
revision_ = input.readInt64();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.class, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder.class);
}
private int bitField0_;
public static final int REVISION_FIELD_NUMBER = 1;
private long revision_;
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public boolean hasRevision() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public long getRevision() {
return revision_;
}
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) == 0x00000001)) {
output.writeInt64(1, revision_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, revision_);
}
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.kubernetes.client.proto.V1beta1Apps.RollbackConfig)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig other = (io.kubernetes.client.proto.V1beta1Apps.RollbackConfig) obj;
boolean result = true;
result = result && (hasRevision() == other.hasRevision());
if (hasRevision()) {
result = result && (getRevision()
== other.getRevision());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasRevision()) {
hash = (37 * hash) + REVISION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getRevision());
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig 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.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig 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.kubernetes.client.proto.V1beta1Apps.RollbackConfig parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig 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.kubernetes.client.proto.V1beta1Apps.RollbackConfig 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;
}
/**
*
* DEPRECATED.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollbackConfig}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.RollbackConfig)
io.kubernetes.client.proto.V1beta1Apps.RollbackConfigOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.class, io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.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();
revision_ = 0L;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig build() {
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollbackConfig buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.RollbackConfig result = new io.kubernetes.client.proto.V1beta1Apps.RollbackConfig(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.revision_ = revision_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.RollbackConfig) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.RollbackConfig)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.RollbackConfig other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.RollbackConfig.getDefaultInstance()) return this;
if (other.hasRevision()) {
setRevision(other.getRevision());
}
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.kubernetes.client.proto.V1beta1Apps.RollbackConfig parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.RollbackConfig) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private long revision_ ;
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public boolean hasRevision() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public long getRevision() {
return revision_;
}
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public Builder setRevision(long value) {
bitField0_ |= 0x00000001;
revision_ = value;
onChanged();
return this;
}
/**
*
* The revision to rollback to. If set to 0, rollback to the last revision.
* +optional
*
*
* optional int64 revision = 1;
*/
public Builder clearRevision() {
bitField0_ = (bitField0_ & ~0x00000001);
revision_ = 0L;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.RollbackConfig)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.RollbackConfig)
private static final io.kubernetes.client.proto.V1beta1Apps.RollbackConfig DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.RollbackConfig();
}
public static io.kubernetes.client.proto.V1beta1Apps.RollbackConfig getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RollbackConfig parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RollbackConfig(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.kubernetes.client.proto.V1beta1Apps.RollbackConfig getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RollingUpdateDeploymentOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.RollingUpdateDeployment)
com.google.protobuf.MessageOrBuilder {
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
boolean hasMaxUnavailable();
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
io.kubernetes.client.proto.IntStr.IntOrString getMaxUnavailable();
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxUnavailableOrBuilder();
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
boolean hasMaxSurge();
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
io.kubernetes.client.proto.IntStr.IntOrString getMaxSurge();
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxSurgeOrBuilder();
}
/**
*
* Spec to control the desired behavior of rolling update.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollingUpdateDeployment}
*/
public static final class RollingUpdateDeployment extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.RollingUpdateDeployment)
RollingUpdateDeploymentOrBuilder {
private static final long serialVersionUID = 0L;
// Use RollingUpdateDeployment.newBuilder() to construct.
private RollingUpdateDeployment(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RollingUpdateDeployment() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RollingUpdateDeployment(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.IntStr.IntOrString.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = maxUnavailable_.toBuilder();
}
maxUnavailable_ = input.readMessage(io.kubernetes.client.proto.IntStr.IntOrString.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(maxUnavailable_);
maxUnavailable_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
io.kubernetes.client.proto.IntStr.IntOrString.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = maxSurge_.toBuilder();
}
maxSurge_ = input.readMessage(io.kubernetes.client.proto.IntStr.IntOrString.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(maxSurge_);
maxSurge_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.class, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder.class);
}
private int bitField0_;
public static final int MAXUNAVAILABLE_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.IntStr.IntOrString maxUnavailable_;
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public boolean hasMaxUnavailable() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public io.kubernetes.client.proto.IntStr.IntOrString getMaxUnavailable() {
return maxUnavailable_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxUnavailable_;
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxUnavailableOrBuilder() {
return maxUnavailable_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxUnavailable_;
}
public static final int MAXSURGE_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.IntStr.IntOrString maxSurge_;
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public boolean hasMaxSurge() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public io.kubernetes.client.proto.IntStr.IntOrString getMaxSurge() {
return maxSurge_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxSurge_;
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxSurgeOrBuilder() {
return maxSurge_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxSurge_;
}
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) == 0x00000001)) {
output.writeMessage(1, getMaxUnavailable());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getMaxSurge());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMaxUnavailable());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getMaxSurge());
}
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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment other = (io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment) obj;
boolean result = true;
result = result && (hasMaxUnavailable() == other.hasMaxUnavailable());
if (hasMaxUnavailable()) {
result = result && getMaxUnavailable()
.equals(other.getMaxUnavailable());
}
result = result && (hasMaxSurge() == other.hasMaxSurge());
if (hasMaxSurge()) {
result = result && getMaxSurge()
.equals(other.getMaxSurge());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMaxUnavailable()) {
hash = (37 * hash) + MAXUNAVAILABLE_FIELD_NUMBER;
hash = (53 * hash) + getMaxUnavailable().hashCode();
}
if (hasMaxSurge()) {
hash = (37 * hash) + MAXSURGE_FIELD_NUMBER;
hash = (53 * hash) + getMaxSurge().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment 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;
}
/**
*
* Spec to control the desired behavior of rolling update.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollingUpdateDeployment}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.RollingUpdateDeployment)
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeploymentOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.class, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMaxUnavailableFieldBuilder();
getMaxSurgeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (maxUnavailableBuilder_ == null) {
maxUnavailable_ = null;
} else {
maxUnavailableBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (maxSurgeBuilder_ == null) {
maxSurge_ = null;
} else {
maxSurgeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment build() {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment result = new io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (maxUnavailableBuilder_ == null) {
result.maxUnavailable_ = maxUnavailable_;
} else {
result.maxUnavailable_ = maxUnavailableBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (maxSurgeBuilder_ == null) {
result.maxSurge_ = maxSurge_;
} else {
result.maxSurge_ = maxSurgeBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment.getDefaultInstance()) return this;
if (other.hasMaxUnavailable()) {
mergeMaxUnavailable(other.getMaxUnavailable());
}
if (other.hasMaxSurge()) {
mergeMaxSurge(other.getMaxSurge());
}
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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.IntStr.IntOrString maxUnavailable_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder> maxUnavailableBuilder_;
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public boolean hasMaxUnavailable() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public io.kubernetes.client.proto.IntStr.IntOrString getMaxUnavailable() {
if (maxUnavailableBuilder_ == null) {
return maxUnavailable_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxUnavailable_;
} else {
return maxUnavailableBuilder_.getMessage();
}
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public Builder setMaxUnavailable(io.kubernetes.client.proto.IntStr.IntOrString value) {
if (maxUnavailableBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
maxUnavailable_ = value;
onChanged();
} else {
maxUnavailableBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public Builder setMaxUnavailable(
io.kubernetes.client.proto.IntStr.IntOrString.Builder builderForValue) {
if (maxUnavailableBuilder_ == null) {
maxUnavailable_ = builderForValue.build();
onChanged();
} else {
maxUnavailableBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public Builder mergeMaxUnavailable(io.kubernetes.client.proto.IntStr.IntOrString value) {
if (maxUnavailableBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
maxUnavailable_ != null &&
maxUnavailable_ != io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance()) {
maxUnavailable_ =
io.kubernetes.client.proto.IntStr.IntOrString.newBuilder(maxUnavailable_).mergeFrom(value).buildPartial();
} else {
maxUnavailable_ = value;
}
onChanged();
} else {
maxUnavailableBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public Builder clearMaxUnavailable() {
if (maxUnavailableBuilder_ == null) {
maxUnavailable_ = null;
onChanged();
} else {
maxUnavailableBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public io.kubernetes.client.proto.IntStr.IntOrString.Builder getMaxUnavailableBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMaxUnavailableFieldBuilder().getBuilder();
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
public io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxUnavailableOrBuilder() {
if (maxUnavailableBuilder_ != null) {
return maxUnavailableBuilder_.getMessageOrBuilder();
} else {
return maxUnavailable_ == null ?
io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxUnavailable_;
}
}
/**
*
* The maximum number of pods that can be unavailable during the update.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* Absolute number is calculated from percentage by rounding down.
* This can not be 0 if MaxSurge is 0.
* Defaults to 25%.
* Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
* immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
* can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
* that the total number of pods available at all times during the update is at
* least 70% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder>
getMaxUnavailableFieldBuilder() {
if (maxUnavailableBuilder_ == null) {
maxUnavailableBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder>(
getMaxUnavailable(),
getParentForChildren(),
isClean());
maxUnavailable_ = null;
}
return maxUnavailableBuilder_;
}
private io.kubernetes.client.proto.IntStr.IntOrString maxSurge_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder> maxSurgeBuilder_;
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public boolean hasMaxSurge() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public io.kubernetes.client.proto.IntStr.IntOrString getMaxSurge() {
if (maxSurgeBuilder_ == null) {
return maxSurge_ == null ? io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxSurge_;
} else {
return maxSurgeBuilder_.getMessage();
}
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public Builder setMaxSurge(io.kubernetes.client.proto.IntStr.IntOrString value) {
if (maxSurgeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
maxSurge_ = value;
onChanged();
} else {
maxSurgeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public Builder setMaxSurge(
io.kubernetes.client.proto.IntStr.IntOrString.Builder builderForValue) {
if (maxSurgeBuilder_ == null) {
maxSurge_ = builderForValue.build();
onChanged();
} else {
maxSurgeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public Builder mergeMaxSurge(io.kubernetes.client.proto.IntStr.IntOrString value) {
if (maxSurgeBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
maxSurge_ != null &&
maxSurge_ != io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance()) {
maxSurge_ =
io.kubernetes.client.proto.IntStr.IntOrString.newBuilder(maxSurge_).mergeFrom(value).buildPartial();
} else {
maxSurge_ = value;
}
onChanged();
} else {
maxSurgeBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public Builder clearMaxSurge() {
if (maxSurgeBuilder_ == null) {
maxSurge_ = null;
onChanged();
} else {
maxSurgeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public io.kubernetes.client.proto.IntStr.IntOrString.Builder getMaxSurgeBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getMaxSurgeFieldBuilder().getBuilder();
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
public io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder getMaxSurgeOrBuilder() {
if (maxSurgeBuilder_ != null) {
return maxSurgeBuilder_.getMessageOrBuilder();
} else {
return maxSurge_ == null ?
io.kubernetes.client.proto.IntStr.IntOrString.getDefaultInstance() : maxSurge_;
}
}
/**
*
* The maximum number of pods that can be scheduled above the desired number of
* pods.
* Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
* This can not be 0 if MaxUnavailable is 0.
* Absolute number is calculated from percentage by rounding up.
* Defaults to 25%.
* Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
* the rolling update starts, such that the total number of old and new pods do not exceed
* 130% of desired pods. Once old pods have been killed,
* new ReplicaSet can be scaled up further, ensuring that total number of pods running
* at any time during the update is atmost 130% of desired pods.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder>
getMaxSurgeFieldBuilder() {
if (maxSurgeBuilder_ == null) {
maxSurgeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.IntStr.IntOrString, io.kubernetes.client.proto.IntStr.IntOrString.Builder, io.kubernetes.client.proto.IntStr.IntOrStringOrBuilder>(
getMaxSurge(),
getParentForChildren(),
isClean());
maxSurge_ = null;
}
return maxSurgeBuilder_;
}
@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:k8s.io.api.apps.v1beta1.RollingUpdateDeployment)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.RollingUpdateDeployment)
private static final io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment();
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RollingUpdateDeployment parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RollingUpdateDeployment(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.kubernetes.client.proto.V1beta1Apps.RollingUpdateDeployment getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RollingUpdateStatefulSetStrategyOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy)
com.google.protobuf.MessageOrBuilder {
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
boolean hasPartition();
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
int getPartition();
}
/**
*
* RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy}
*/
public static final class RollingUpdateStatefulSetStrategy extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy)
RollingUpdateStatefulSetStrategyOrBuilder {
private static final long serialVersionUID = 0L;
// Use RollingUpdateStatefulSetStrategy.newBuilder() to construct.
private RollingUpdateStatefulSetStrategy(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RollingUpdateStatefulSetStrategy() {
partition_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RollingUpdateStatefulSetStrategy(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
partition_ = input.readInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.class, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder.class);
}
private int bitField0_;
public static final int PARTITION_FIELD_NUMBER = 1;
private int partition_;
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public boolean hasPartition() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public int getPartition() {
return partition_;
}
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) == 0x00000001)) {
output.writeInt32(1, partition_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, partition_);
}
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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy other = (io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy) obj;
boolean result = true;
result = result && (hasPartition() == other.hasPartition());
if (hasPartition()) {
result = result && (getPartition()
== other.getPartition());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasPartition()) {
hash = (37 * hash) + PARTITION_FIELD_NUMBER;
hash = (53 * hash) + getPartition();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy 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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy 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;
}
/**
*
* RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy)
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.class, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.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();
partition_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy build() {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy result = new io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.partition_ = partition_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance()) return this;
if (other.hasPartition()) {
setPartition(other.getPartition());
}
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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int partition_ ;
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public boolean hasPartition() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public int getPartition() {
return partition_;
}
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public Builder setPartition(int value) {
bitField0_ |= 0x00000001;
partition_ = value;
onChanged();
return this;
}
/**
*
* Partition indicates the ordinal at which the StatefulSet should be
* partitioned.
*
*
* optional int32 partition = 1;
*/
public Builder clearPartition() {
bitField0_ = (bitField0_ & ~0x00000001);
partition_ = 0;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy)
private static final io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy();
}
public static io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RollingUpdateStatefulSetStrategy parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RollingUpdateStatefulSetStrategy(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.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ScaleOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.Scale)
com.google.protobuf.MessageOrBuilder {
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMeta getMetadata();
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder();
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
boolean hasSpec();
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec getSpec();
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder getSpecOrBuilder();
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
boolean hasStatus();
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus getStatus();
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder getStatusOrBuilder();
}
/**
*
* Scale represents a scaling request for a resource.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.Scale}
*/
public static final class Scale extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.Scale)
ScaleOrBuilder {
private static final long serialVersionUID = 0L;
// Use Scale.newBuilder() to construct.
private Scale(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Scale() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Scale(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ObjectMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ObjectMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = spec_.toBuilder();
}
spec_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(spec_);
spec_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = status_.toBuilder();
}
status_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(status_);
status_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Scale_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.Scale.class, io.kubernetes.client.proto.V1beta1Apps.Scale.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_;
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
public static final int SPEC_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.V1beta1Apps.ScaleSpec spec_;
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec getSpec() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance() : spec_;
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder getSpecOrBuilder() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance() : spec_;
}
public static final int STATUS_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1beta1Apps.ScaleStatus status_;
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus getStatus() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance() : status_;
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder getStatusOrBuilder() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance() : status_;
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getStatus());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.Scale)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.Scale other = (io.kubernetes.client.proto.V1beta1Apps.Scale) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && (hasSpec() == other.hasSpec());
if (hasSpec()) {
result = result && getSpec()
.equals(other.getSpec());
}
result = result && (hasStatus() == other.hasStatus());
if (hasStatus()) {
result = result && getStatus()
.equals(other.getStatus());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (hasSpec()) {
hash = (37 * hash) + SPEC_FIELD_NUMBER;
hash = (53 * hash) + getSpec().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale 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.kubernetes.client.proto.V1beta1Apps.Scale parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale 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.kubernetes.client.proto.V1beta1Apps.Scale parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale 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.kubernetes.client.proto.V1beta1Apps.Scale 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;
}
/**
*
* Scale represents a scaling request for a resource.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.Scale}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.Scale)
io.kubernetes.client.proto.V1beta1Apps.ScaleOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Scale_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.Scale.class, io.kubernetes.client.proto.V1beta1Apps.Scale.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.Scale.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getSpecFieldBuilder();
getStatusFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (specBuilder_ == null) {
spec_ = null;
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (statusBuilder_ == null) {
status_ = null;
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Scale getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.Scale.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Scale build() {
io.kubernetes.client.proto.V1beta1Apps.Scale result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.Scale buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.Scale result = new io.kubernetes.client.proto.V1beta1Apps.Scale(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (specBuilder_ == null) {
result.spec_ = spec_;
} else {
result.spec_ = specBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (statusBuilder_ == null) {
result.status_ = status_;
} else {
result.status_ = statusBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.Scale) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.Scale)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.Scale other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.Scale.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (other.hasSpec()) {
mergeSpec(other.getSpec());
}
if (other.hasStatus()) {
mergeStatus(other.getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.Scale parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.Scale) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder> metadataBuilder_;
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ObjectMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ObjectMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.ScaleSpec spec_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec, io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder> specBuilder_;
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec getSpec() {
if (specBuilder_ == null) {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance() : spec_;
} else {
return specBuilder_.getMessage();
}
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public Builder setSpec(io.kubernetes.client.proto.V1beta1Apps.ScaleSpec value) {
if (specBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
spec_ = value;
onChanged();
} else {
specBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public Builder setSpec(
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder builderForValue) {
if (specBuilder_ == null) {
spec_ = builderForValue.build();
onChanged();
} else {
specBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public Builder mergeSpec(io.kubernetes.client.proto.V1beta1Apps.ScaleSpec value) {
if (specBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
spec_ != null &&
spec_ != io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance()) {
spec_ =
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.newBuilder(spec_).mergeFrom(value).buildPartial();
} else {
spec_ = value;
}
onChanged();
} else {
specBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public Builder clearSpec() {
if (specBuilder_ == null) {
spec_ = null;
onChanged();
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder getSpecBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getSpecFieldBuilder().getBuilder();
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder getSpecOrBuilder() {
if (specBuilder_ != null) {
return specBuilder_.getMessageOrBuilder();
} else {
return spec_ == null ?
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance() : spec_;
}
}
/**
*
* defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleSpec spec = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec, io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder>
getSpecFieldBuilder() {
if (specBuilder_ == null) {
specBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec, io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder>(
getSpec(),
getParentForChildren(),
isClean());
spec_ = null;
}
return specBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.ScaleStatus status_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus, io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder> statusBuilder_;
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus getStatus() {
if (statusBuilder_ == null) {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance() : status_;
} else {
return statusBuilder_.getMessage();
}
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public Builder setStatus(io.kubernetes.client.proto.V1beta1Apps.ScaleStatus value) {
if (statusBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
status_ = value;
onChanged();
} else {
statusBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public Builder setStatus(
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder builderForValue) {
if (statusBuilder_ == null) {
status_ = builderForValue.build();
onChanged();
} else {
statusBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public Builder mergeStatus(io.kubernetes.client.proto.V1beta1Apps.ScaleStatus value) {
if (statusBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
status_ != null &&
status_ != io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance()) {
status_ =
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.newBuilder(status_).mergeFrom(value).buildPartial();
} else {
status_ = value;
}
onChanged();
} else {
statusBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public Builder clearStatus() {
if (statusBuilder_ == null) {
status_ = null;
onChanged();
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder getStatusBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getStatusFieldBuilder().getBuilder();
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder getStatusOrBuilder() {
if (statusBuilder_ != null) {
return statusBuilder_.getMessageOrBuilder();
} else {
return status_ == null ?
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance() : status_;
}
}
/**
*
* current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.ScaleStatus status = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus, io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder>
getStatusFieldBuilder() {
if (statusBuilder_ == null) {
statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus, io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder>(
getStatus(),
getParentForChildren(),
isClean());
status_ = null;
}
return statusBuilder_;
}
@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:k8s.io.api.apps.v1beta1.Scale)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.Scale)
private static final io.kubernetes.client.proto.V1beta1Apps.Scale DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.Scale();
}
public static io.kubernetes.client.proto.V1beta1Apps.Scale getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Scale parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Scale(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.kubernetes.client.proto.V1beta1Apps.Scale getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ScaleSpecOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.ScaleSpec)
com.google.protobuf.MessageOrBuilder {
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
boolean hasReplicas();
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
int getReplicas();
}
/**
*
* ScaleSpec describes the attributes of a scale subresource
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ScaleSpec}
*/
public static final class ScaleSpec extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.ScaleSpec)
ScaleSpecOrBuilder {
private static final long serialVersionUID = 0L;
// Use ScaleSpec.newBuilder() to construct.
private ScaleSpec(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ScaleSpec() {
replicas_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ScaleSpec(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
replicas_ = input.readInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.class, io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder.class);
}
private int bitField0_;
public static final int REPLICAS_FIELD_NUMBER = 1;
private int replicas_;
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
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) == 0x00000001)) {
output.writeInt32(1, replicas_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, replicas_);
}
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.kubernetes.client.proto.V1beta1Apps.ScaleSpec)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec other = (io.kubernetes.client.proto.V1beta1Apps.ScaleSpec) obj;
boolean result = true;
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec 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.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec 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.kubernetes.client.proto.V1beta1Apps.ScaleSpec parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec 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.kubernetes.client.proto.V1beta1Apps.ScaleSpec 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;
}
/**
*
* ScaleSpec describes the attributes of a scale subresource
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ScaleSpec}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.ScaleSpec)
io.kubernetes.client.proto.V1beta1Apps.ScaleSpecOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.class, io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.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();
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec build() {
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleSpec buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.ScaleSpec result = new io.kubernetes.client.proto.V1beta1Apps.ScaleSpec(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.replicas_ = replicas_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.ScaleSpec) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.ScaleSpec)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.ScaleSpec other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.ScaleSpec.getDefaultInstance()) return this;
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
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.kubernetes.client.proto.V1beta1Apps.ScaleSpec parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.ScaleSpec) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int replicas_ ;
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000001;
replicas_ = value;
onChanged();
return this;
}
/**
*
* desired number of instances for the scaled object.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.ScaleSpec)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.ScaleSpec)
private static final io.kubernetes.client.proto.V1beta1Apps.ScaleSpec DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.ScaleSpec();
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleSpec getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ScaleSpec parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ScaleSpec(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.kubernetes.client.proto.V1beta1Apps.ScaleSpec getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ScaleStatusOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.ScaleStatus)
com.google.protobuf.MessageOrBuilder {
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
boolean hasReplicas();
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
int getReplicas();
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
int getSelectorCount();
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
boolean containsSelector(
java.lang.String key);
/**
* Use {@link #getSelectorMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getSelector();
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
java.util.Map
getSelectorMap();
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
java.lang.String getSelectorOrDefault(
java.lang.String key,
java.lang.String defaultValue);
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
java.lang.String getSelectorOrThrow(
java.lang.String key);
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
boolean hasTargetSelector();
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
java.lang.String getTargetSelector();
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
com.google.protobuf.ByteString
getTargetSelectorBytes();
}
/**
*
* ScaleStatus represents the current status of a scale subresource.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ScaleStatus}
*/
public static final class ScaleStatus extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.ScaleStatus)
ScaleStatusOrBuilder {
private static final long serialVersionUID = 0L;
// Use ScaleStatus.newBuilder() to construct.
private ScaleStatus(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ScaleStatus() {
replicas_ = 0;
targetSelector_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ScaleStatus(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
replicas_ = input.readInt32();
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
selector_ = com.google.protobuf.MapField.newMapField(
SelectorDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000002;
}
com.google.protobuf.MapEntry
selector__ = input.readMessage(
SelectorDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
selector_.getMutableMap().put(
selector__.getKey(), selector__.getValue());
break;
}
case 26: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000002;
targetSelector_ = bs;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 2:
return internalGetSelector();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.class, io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder.class);
}
private int bitField0_;
public static final int REPLICAS_FIELD_NUMBER = 1;
private int replicas_;
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
public static final int SELECTOR_FIELD_NUMBER = 2;
private static final class SelectorDefaultEntryHolder {
static final com.google.protobuf.MapEntry<
java.lang.String, java.lang.String> defaultEntry =
com.google.protobuf.MapEntry
.newDefaultInstance(
io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> selector_;
private com.google.protobuf.MapField
internalGetSelector() {
if (selector_ == null) {
return com.google.protobuf.MapField.emptyMapField(
SelectorDefaultEntryHolder.defaultEntry);
}
return selector_;
}
public int getSelectorCount() {
return internalGetSelector().getMap().size();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public boolean containsSelector(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetSelector().getMap().containsKey(key);
}
/**
* Use {@link #getSelectorMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getSelector() {
return getSelectorMap();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.util.Map getSelectorMap() {
return internalGetSelector().getMap();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.lang.String getSelectorOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetSelector().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.lang.String getSelectorOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetSelector().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int TARGETSELECTOR_FIELD_NUMBER = 3;
private volatile java.lang.Object targetSelector_;
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public boolean hasTargetSelector() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public java.lang.String getTargetSelector() {
java.lang.Object ref = targetSelector_;
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 (bs.isValidUtf8()) {
targetSelector_ = s;
}
return s;
}
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public com.google.protobuf.ByteString
getTargetSelectorBytes() {
java.lang.Object ref = targetSelector_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
targetSelector_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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) == 0x00000001)) {
output.writeInt32(1, replicas_);
}
com.google.protobuf.GeneratedMessageV3
.serializeStringMapTo(
output,
internalGetSelector(),
SelectorDefaultEntryHolder.defaultEntry,
2);
if (((bitField0_ & 0x00000002) == 0x00000002)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, targetSelector_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, replicas_);
}
for (java.util.Map.Entry entry
: internalGetSelector().getMap().entrySet()) {
com.google.protobuf.MapEntry
selector__ = SelectorDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, selector__);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, targetSelector_);
}
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.kubernetes.client.proto.V1beta1Apps.ScaleStatus)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus other = (io.kubernetes.client.proto.V1beta1Apps.ScaleStatus) obj;
boolean result = true;
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && internalGetSelector().equals(
other.internalGetSelector());
result = result && (hasTargetSelector() == other.hasTargetSelector());
if (hasTargetSelector()) {
result = result && getTargetSelector()
.equals(other.getTargetSelector());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
if (!internalGetSelector().getMap().isEmpty()) {
hash = (37 * hash) + SELECTOR_FIELD_NUMBER;
hash = (53 * hash) + internalGetSelector().hashCode();
}
if (hasTargetSelector()) {
hash = (37 * hash) + TARGETSELECTOR_FIELD_NUMBER;
hash = (53 * hash) + getTargetSelector().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus 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.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus 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.kubernetes.client.proto.V1beta1Apps.ScaleStatus parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus 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.kubernetes.client.proto.V1beta1Apps.ScaleStatus 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;
}
/**
*
* ScaleStatus represents the current status of a scale subresource.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.ScaleStatus}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.ScaleStatus)
io.kubernetes.client.proto.V1beta1Apps.ScaleStatusOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 2:
return internalGetSelector();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 2:
return internalGetMutableSelector();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.class, io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.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();
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
internalGetMutableSelector().clear();
targetSelector_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus build() {
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.ScaleStatus buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.ScaleStatus result = new io.kubernetes.client.proto.V1beta1Apps.ScaleStatus(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.replicas_ = replicas_;
result.selector_ = internalGetSelector();
result.selector_.makeImmutable();
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000002;
}
result.targetSelector_ = targetSelector_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.ScaleStatus) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.ScaleStatus)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.ScaleStatus other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.ScaleStatus.getDefaultInstance()) return this;
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
internalGetMutableSelector().mergeFrom(
other.internalGetSelector());
if (other.hasTargetSelector()) {
bitField0_ |= 0x00000004;
targetSelector_ = other.targetSelector_;
onChanged();
}
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.kubernetes.client.proto.V1beta1Apps.ScaleStatus parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.ScaleStatus) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int replicas_ ;
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000001;
replicas_ = value;
onChanged();
return this;
}
/**
*
* actual number of observed instances of the scaled object.
*
*
* optional int32 replicas = 1;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
onChanged();
return this;
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> selector_;
private com.google.protobuf.MapField
internalGetSelector() {
if (selector_ == null) {
return com.google.protobuf.MapField.emptyMapField(
SelectorDefaultEntryHolder.defaultEntry);
}
return selector_;
}
private com.google.protobuf.MapField
internalGetMutableSelector() {
onChanged();;
if (selector_ == null) {
selector_ = com.google.protobuf.MapField.newMapField(
SelectorDefaultEntryHolder.defaultEntry);
}
if (!selector_.isMutable()) {
selector_ = selector_.copy();
}
return selector_;
}
public int getSelectorCount() {
return internalGetSelector().getMap().size();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public boolean containsSelector(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetSelector().getMap().containsKey(key);
}
/**
* Use {@link #getSelectorMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getSelector() {
return getSelectorMap();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.util.Map getSelectorMap() {
return internalGetSelector().getMap();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.lang.String getSelectorOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetSelector().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public java.lang.String getSelectorOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetSelector().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearSelector() {
internalGetMutableSelector().getMutableMap()
.clear();
return this;
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public Builder removeSelector(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
internalGetMutableSelector().getMutableMap()
.remove(key);
return this;
}
/**
* Use alternate mutation accessors instead.
*/
@java.lang.Deprecated
public java.util.Map
getMutableSelector() {
return internalGetMutableSelector().getMutableMap();
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public Builder putSelector(
java.lang.String key,
java.lang.String value) {
if (key == null) { throw new java.lang.NullPointerException(); }
if (value == null) { throw new java.lang.NullPointerException(); }
internalGetMutableSelector().getMutableMap()
.put(key, value);
return this;
}
/**
*
* label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
* +optional
*
*
* map<string, string> selector = 2;
*/
public Builder putAllSelector(
java.util.Map values) {
internalGetMutableSelector().getMutableMap()
.putAll(values);
return this;
}
private java.lang.Object targetSelector_ = "";
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public boolean hasTargetSelector() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public java.lang.String getTargetSelector() {
java.lang.Object ref = targetSelector_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
targetSelector_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public com.google.protobuf.ByteString
getTargetSelectorBytes() {
java.lang.Object ref = targetSelector_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
targetSelector_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public Builder setTargetSelector(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
targetSelector_ = value;
onChanged();
return this;
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public Builder clearTargetSelector() {
bitField0_ = (bitField0_ & ~0x00000004);
targetSelector_ = getDefaultInstance().getTargetSelector();
onChanged();
return this;
}
/**
*
* label selector for pods that should match the replicas count. This is a serializated
* version of both map-based and more expressive set-based selectors. This is done to
* avoid introspection in the clients. The string will be in the same format as the
* query-param syntax. If the target type only supports map-based selectors, both this
* field and map-based selector field are populated.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional string targetSelector = 3;
*/
public Builder setTargetSelectorBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
targetSelector_ = value;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.ScaleStatus)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.ScaleStatus)
private static final io.kubernetes.client.proto.V1beta1Apps.ScaleStatus DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.ScaleStatus();
}
public static io.kubernetes.client.proto.V1beta1Apps.ScaleStatus getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ScaleStatus parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ScaleStatus(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.kubernetes.client.proto.V1beta1Apps.ScaleStatus getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSet)
com.google.protobuf.MessageOrBuilder {
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMeta getMetadata();
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder();
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
boolean hasSpec();
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getSpec();
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder getSpecOrBuilder();
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
boolean hasStatus();
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getStatus();
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder getStatusOrBuilder();
}
/**
*
* DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for
* more information.
* StatefulSet represents a set of pods with consistent identities.
* Identities are defined as:
* - Network: A single stable DNS and hostname.
* - Storage: As many VolumeClaims as requested.
* The StatefulSet guarantees that a given network identity will always
* map to the same storage identity.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSet}
*/
public static final class StatefulSet extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSet)
StatefulSetOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSet.newBuilder() to construct.
private StatefulSet(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSet() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSet(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ObjectMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ObjectMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = spec_.toBuilder();
}
spec_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(spec_);
spec_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = status_.toBuilder();
}
status_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(status_);
status_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSet.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_;
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
public static final int SPEC_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec spec_;
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getSpec() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance() : spec_;
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder getSpecOrBuilder() {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance() : spec_;
}
public static final int STATUS_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus status_;
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getStatus() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance() : status_;
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder getStatusOrBuilder() {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance() : status_;
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getStatus());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSpec());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSet)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSet other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSet) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && (hasSpec() == other.hasSpec());
if (hasSpec()) {
result = result && getSpec()
.equals(other.getSpec());
}
result = result && (hasStatus() == other.hasStatus());
if (hasStatus()) {
result = result && getStatus()
.equals(other.getStatus());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (hasSpec()) {
hash = (37 * hash) + SPEC_FIELD_NUMBER;
hash = (53 * hash) + getSpec().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet 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.kubernetes.client.proto.V1beta1Apps.StatefulSet parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet 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.kubernetes.client.proto.V1beta1Apps.StatefulSet parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet 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.kubernetes.client.proto.V1beta1Apps.StatefulSet 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;
}
/**
*
* DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for
* more information.
* StatefulSet represents a set of pods with consistent identities.
* Identities are defined as:
* - Network: A single stable DNS and hostname.
* - Storage: As many VolumeClaims as requested.
* The StatefulSet guarantees that a given network identity will always
* map to the same storage identity.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSet}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSet)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSet.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSet.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getSpecFieldBuilder();
getStatusFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (specBuilder_ == null) {
spec_ = null;
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (statusBuilder_ == null) {
status_ = null;
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSet.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSet result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSet result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSet(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (specBuilder_ == null) {
result.spec_ = spec_;
} else {
result.spec_ = specBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (statusBuilder_ == null) {
result.status_ = status_;
} else {
result.status_ = statusBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSet) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSet)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSet other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSet.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (other.hasSpec()) {
mergeSpec(other.getSpec());
}
if (other.hasStatus()) {
mergeStatus(other.getStatus());
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSet parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSet) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ObjectMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder> metadataBuilder_;
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ObjectMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ObjectMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ObjectMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ObjectMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ObjectMeta, io.kubernetes.client.proto.Meta.ObjectMeta.Builder, io.kubernetes.client.proto.Meta.ObjectMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec spec_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder> specBuilder_;
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public boolean hasSpec() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getSpec() {
if (specBuilder_ == null) {
return spec_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance() : spec_;
} else {
return specBuilder_.getMessage();
}
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public Builder setSpec(io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec value) {
if (specBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
spec_ = value;
onChanged();
} else {
specBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public Builder setSpec(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder builderForValue) {
if (specBuilder_ == null) {
spec_ = builderForValue.build();
onChanged();
} else {
specBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public Builder mergeSpec(io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec value) {
if (specBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
spec_ != null &&
spec_ != io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance()) {
spec_ =
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.newBuilder(spec_).mergeFrom(value).buildPartial();
} else {
spec_ = value;
}
onChanged();
} else {
specBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public Builder clearSpec() {
if (specBuilder_ == null) {
spec_ = null;
onChanged();
} else {
specBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder getSpecBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getSpecFieldBuilder().getBuilder();
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder getSpecOrBuilder() {
if (specBuilder_ != null) {
return specBuilder_.getMessageOrBuilder();
} else {
return spec_ == null ?
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance() : spec_;
}
}
/**
*
* Spec defines the desired identities of pods in this set.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetSpec spec = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder>
getSpecFieldBuilder() {
if (specBuilder_ == null) {
specBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder>(
getSpec(),
getParentForChildren(),
isClean());
spec_ = null;
}
return specBuilder_;
}
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus status_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder> statusBuilder_;
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getStatus() {
if (statusBuilder_ == null) {
return status_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance() : status_;
} else {
return statusBuilder_.getMessage();
}
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public Builder setStatus(io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus value) {
if (statusBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
status_ = value;
onChanged();
} else {
statusBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public Builder setStatus(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder builderForValue) {
if (statusBuilder_ == null) {
status_ = builderForValue.build();
onChanged();
} else {
statusBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public Builder mergeStatus(io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus value) {
if (statusBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
status_ != null &&
status_ != io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance()) {
status_ =
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.newBuilder(status_).mergeFrom(value).buildPartial();
} else {
status_ = value;
}
onChanged();
} else {
statusBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public Builder clearStatus() {
if (statusBuilder_ == null) {
status_ = null;
onChanged();
} else {
statusBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder getStatusBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getStatusFieldBuilder().getBuilder();
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder getStatusOrBuilder() {
if (statusBuilder_ != null) {
return statusBuilder_.getMessageOrBuilder();
} else {
return status_ == null ?
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance() : status_;
}
}
/**
*
* Status is the current status of Pods in this StatefulSet. This data
* may be out of date by some window of time.
* +optional
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetStatus status = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder>
getStatusFieldBuilder() {
if (statusBuilder_ == null) {
statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder>(
getStatus(),
getParentForChildren(),
isClean());
status_ = null;
}
return statusBuilder_;
}
@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:k8s.io.api.apps.v1beta1.StatefulSet)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSet)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSet DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSet();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSet getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSet parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSet(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.kubernetes.client.proto.V1beta1Apps.StatefulSet getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetConditionOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSetCondition)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
boolean hasType();
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
java.lang.String getType();
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
boolean hasStatus();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
java.lang.String getStatus();
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
com.google.protobuf.ByteString
getStatusBytes();
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
boolean hasLastTransitionTime();
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
io.kubernetes.client.proto.Meta.Time getLastTransitionTime();
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder();
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
boolean hasReason();
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
java.lang.String getReason();
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
com.google.protobuf.ByteString
getReasonBytes();
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
boolean hasMessage();
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
java.lang.String getMessage();
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
com.google.protobuf.ByteString
getMessageBytes();
}
/**
*
* StatefulSetCondition describes the state of a statefulset at a certain point.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetCondition}
*/
public static final class StatefulSetCondition extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSetCondition)
StatefulSetConditionOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSetCondition.newBuilder() to construct.
private StatefulSetCondition(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSetCondition() {
type_ = "";
status_ = "";
reason_ = "";
message_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSetCondition(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
type_ = bs;
break;
}
case 18: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000002;
status_ = bs;
break;
}
case 26: {
io.kubernetes.client.proto.Meta.Time.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = lastTransitionTime_.toBuilder();
}
lastTransitionTime_ = input.readMessage(io.kubernetes.client.proto.Meta.Time.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(lastTransitionTime_);
lastTransitionTime_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 34: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000008;
reason_ = bs;
break;
}
case 42: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000010;
message_ = bs;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder.class);
}
private int bitField0_;
public static final int TYPE_FIELD_NUMBER = 1;
private volatile java.lang.Object type_;
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
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 (bs.isValidUtf8()) {
type_ = s;
}
return s;
}
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int STATUS_FIELD_NUMBER = 2;
private volatile java.lang.Object status_;
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public java.lang.String getStatus() {
java.lang.Object ref = status_;
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 (bs.isValidUtf8()) {
status_ = s;
}
return s;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public com.google.protobuf.ByteString
getStatusBytes() {
java.lang.Object ref = status_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
status_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LASTTRANSITIONTIME_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.Meta.Time lastTransitionTime_;
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public boolean hasLastTransitionTime() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public io.kubernetes.client.proto.Meta.Time getLastTransitionTime() {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder() {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
public static final int REASON_FIELD_NUMBER = 4;
private volatile java.lang.Object reason_;
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public boolean hasReason() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public java.lang.String getReason() {
java.lang.Object ref = reason_;
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 (bs.isValidUtf8()) {
reason_ = s;
}
return s;
}
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public com.google.protobuf.ByteString
getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int MESSAGE_FIELD_NUMBER = 5;
private volatile java.lang.Object message_;
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
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 (bs.isValidUtf8()) {
message_ = s;
}
return s;
}
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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) == 0x00000001)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, status_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getLastTransitionTime());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, reason_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, message_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, status_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getLastTransitionTime());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, reason_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, message_);
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition) obj;
boolean result = true;
result = result && (hasType() == other.hasType());
if (hasType()) {
result = result && getType()
.equals(other.getType());
}
result = result && (hasStatus() == other.hasStatus());
if (hasStatus()) {
result = result && getStatus()
.equals(other.getStatus());
}
result = result && (hasLastTransitionTime() == other.hasLastTransitionTime());
if (hasLastTransitionTime()) {
result = result && getLastTransitionTime()
.equals(other.getLastTransitionTime());
}
result = result && (hasReason() == other.hasReason());
if (hasReason()) {
result = result && getReason()
.equals(other.getReason());
}
result = result && (hasMessage() == other.hasMessage());
if (hasMessage()) {
result = result && getMessage()
.equals(other.getMessage());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasType()) {
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + getType().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
if (hasLastTransitionTime()) {
hash = (37 * hash) + LASTTRANSITIONTIME_FIELD_NUMBER;
hash = (53 * hash) + getLastTransitionTime().hashCode();
}
if (hasReason()) {
hash = (37 * hash) + REASON_FIELD_NUMBER;
hash = (53 * hash) + getReason().hashCode();
}
if (hasMessage()) {
hash = (37 * hash) + MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getMessage().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition 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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition 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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition 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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition 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;
}
/**
*
* StatefulSetCondition describes the state of a statefulset at a certain point.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetCondition}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSetCondition)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLastTransitionTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
type_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
status_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = null;
} else {
lastTransitionTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
reason_ = "";
bitField0_ = (bitField0_ & ~0x00000008);
message_ = "";
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.status_ = status_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (lastTransitionTimeBuilder_ == null) {
result.lastTransitionTime_ = lastTransitionTime_;
} else {
result.lastTransitionTime_ = lastTransitionTimeBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.reason_ = reason_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.message_ = message_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.getDefaultInstance()) return this;
if (other.hasType()) {
bitField0_ |= 0x00000001;
type_ = other.type_;
onChanged();
}
if (other.hasStatus()) {
bitField0_ |= 0x00000002;
status_ = other.status_;
onChanged();
}
if (other.hasLastTransitionTime()) {
mergeLastTransitionTime(other.getLastTransitionTime());
}
if (other.hasReason()) {
bitField0_ |= 0x00000008;
reason_ = other.reason_;
onChanged();
}
if (other.hasMessage()) {
bitField0_ |= 0x00000010;
message_ = other.message_;
onChanged();
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object type_ = "";
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public Builder setType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000001);
type_ = getDefaultInstance().getType();
onChanged();
return this;
}
/**
*
* Type of statefulset condition.
*
*
* optional string type = 1;
*/
public Builder setTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
private java.lang.Object status_ = "";
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public boolean hasStatus() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public java.lang.String getStatus() {
java.lang.Object ref = status_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
status_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public com.google.protobuf.ByteString
getStatusBytes() {
java.lang.Object ref = status_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
status_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder setStatus(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
status_ = value;
onChanged();
return this;
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder clearStatus() {
bitField0_ = (bitField0_ & ~0x00000002);
status_ = getDefaultInstance().getStatus();
onChanged();
return this;
}
/**
*
* Status of the condition, one of True, False, Unknown.
*
*
* optional string status = 2;
*/
public Builder setStatusBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
status_ = value;
onChanged();
return this;
}
private io.kubernetes.client.proto.Meta.Time lastTransitionTime_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder> lastTransitionTimeBuilder_;
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public boolean hasLastTransitionTime() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public io.kubernetes.client.proto.Meta.Time getLastTransitionTime() {
if (lastTransitionTimeBuilder_ == null) {
return lastTransitionTime_ == null ? io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
} else {
return lastTransitionTimeBuilder_.getMessage();
}
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public Builder setLastTransitionTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastTransitionTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
lastTransitionTime_ = value;
onChanged();
} else {
lastTransitionTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public Builder setLastTransitionTime(
io.kubernetes.client.proto.Meta.Time.Builder builderForValue) {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = builderForValue.build();
onChanged();
} else {
lastTransitionTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public Builder mergeLastTransitionTime(io.kubernetes.client.proto.Meta.Time value) {
if (lastTransitionTimeBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
lastTransitionTime_ != null &&
lastTransitionTime_ != io.kubernetes.client.proto.Meta.Time.getDefaultInstance()) {
lastTransitionTime_ =
io.kubernetes.client.proto.Meta.Time.newBuilder(lastTransitionTime_).mergeFrom(value).buildPartial();
} else {
lastTransitionTime_ = value;
}
onChanged();
} else {
lastTransitionTimeBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public Builder clearLastTransitionTime() {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTime_ = null;
onChanged();
} else {
lastTransitionTimeBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public io.kubernetes.client.proto.Meta.Time.Builder getLastTransitionTimeBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getLastTransitionTimeFieldBuilder().getBuilder();
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
public io.kubernetes.client.proto.Meta.TimeOrBuilder getLastTransitionTimeOrBuilder() {
if (lastTransitionTimeBuilder_ != null) {
return lastTransitionTimeBuilder_.getMessageOrBuilder();
} else {
return lastTransitionTime_ == null ?
io.kubernetes.client.proto.Meta.Time.getDefaultInstance() : lastTransitionTime_;
}
}
/**
*
* Last time the condition transitioned from one status to another.
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>
getLastTransitionTimeFieldBuilder() {
if (lastTransitionTimeBuilder_ == null) {
lastTransitionTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.Time, io.kubernetes.client.proto.Meta.Time.Builder, io.kubernetes.client.proto.Meta.TimeOrBuilder>(
getLastTransitionTime(),
getParentForChildren(),
isClean());
lastTransitionTime_ = null;
}
return lastTransitionTimeBuilder_;
}
private java.lang.Object reason_ = "";
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public boolean hasReason() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public java.lang.String getReason() {
java.lang.Object ref = reason_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
reason_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public com.google.protobuf.ByteString
getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public Builder setReason(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
reason_ = value;
onChanged();
return this;
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public Builder clearReason() {
bitField0_ = (bitField0_ & ~0x00000008);
reason_ = getDefaultInstance().getReason();
onChanged();
return this;
}
/**
*
* The reason for the condition's last transition.
* +optional
*
*
* optional string reason = 4;
*/
public Builder setReasonBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
reason_ = value;
onChanged();
return this;
}
private java.lang.Object message_ = "";
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public boolean hasMessage() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
message_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public com.google.protobuf.ByteString
getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public Builder setMessage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
message_ = value;
onChanged();
return this;
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public Builder clearMessage() {
bitField0_ = (bitField0_ & ~0x00000010);
message_ = getDefaultInstance().getMessage();
onChanged();
return this;
}
/**
*
* A human readable message indicating details about the transition.
* +optional
*
*
* optional string message = 5;
*/
public Builder setMessageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
message_ = value;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.StatefulSetCondition)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSetCondition)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSetCondition parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSetCondition(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.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetListOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSetList)
com.google.protobuf.MessageOrBuilder {
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
boolean hasMetadata();
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMeta getMetadata();
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder();
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
java.util.List
getItemsList();
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSet getItems(int index);
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
int getItemsCount();
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder>
getItemsOrBuilderList();
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder getItemsOrBuilder(
int index);
}
/**
*
* StatefulSetList is a collection of StatefulSets.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetList}
*/
public static final class StatefulSetList extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSetList)
StatefulSetListOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSetList.newBuilder() to construct.
private StatefulSetList(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSetList() {
items_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSetList(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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.kubernetes.client.proto.Meta.ListMeta.Builder subBuilder = null;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
subBuilder = metadata_.toBuilder();
}
metadata_ = input.readMessage(io.kubernetes.client.proto.Meta.ListMeta.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadata_);
metadata_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000001;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
items_.add(
input.readMessage(io.kubernetes.client.proto.V1beta1Apps.StatefulSet.PARSER, extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.Builder.class);
}
private int bitField0_;
public static final int METADATA_FIELD_NUMBER = 1;
private io.kubernetes.client.proto.Meta.ListMeta metadata_;
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
public static final int ITEMS_FIELD_NUMBER = 2;
private java.util.List items_;
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public java.util.List getItemsList() {
return items_;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder>
getItemsOrBuilderList() {
return items_;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public int getItemsCount() {
return items_.size();
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet getItems(int index) {
return items_.get(index);
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder getItemsOrBuilder(
int index) {
return items_.get(index);
}
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) == 0x00000001)) {
output.writeMessage(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
output.writeMessage(2, items_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getMetadata());
}
for (int i = 0; i < items_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, items_.get(i));
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetList)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSetList other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetList) obj;
boolean result = true;
result = result && (hasMetadata() == other.hasMetadata());
if (hasMetadata()) {
result = result && getMetadata()
.equals(other.getMetadata());
}
result = result && getItemsList()
.equals(other.getItemsList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasMetadata()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + getMetadata().hashCode();
}
if (getItemsCount() > 0) {
hash = (37 * hash) + ITEMS_FIELD_NUMBER;
hash = (53 * hash) + getItemsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList 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.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList 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.kubernetes.client.proto.V1beta1Apps.StatefulSetList parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList 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.kubernetes.client.proto.V1beta1Apps.StatefulSetList 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;
}
/**
*
* StatefulSetList is a collection of StatefulSets.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetList}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSetList)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetListOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getMetadataFieldBuilder();
getItemsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
itemsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetList getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetList build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetList result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetList buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetList result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetList(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
if (itemsBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = java.util.Collections.unmodifiableList(items_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.items_ = items_;
} else {
result.items_ = itemsBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSetList) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSetList)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSetList other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSetList.getDefaultInstance()) return this;
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (itemsBuilder_ == null) {
if (!other.items_.isEmpty()) {
if (items_.isEmpty()) {
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureItemsIsMutable();
items_.addAll(other.items_);
}
onChanged();
}
} else {
if (!other.items_.isEmpty()) {
if (itemsBuilder_.isEmpty()) {
itemsBuilder_.dispose();
itemsBuilder_ = null;
items_ = other.items_;
bitField0_ = (bitField0_ & ~0x00000002);
itemsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getItemsFieldBuilder() : null;
} else {
itemsBuilder_.addAllMessages(other.items_);
}
}
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetList parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetList) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.kubernetes.client.proto.Meta.ListMeta metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder> metadataBuilder_;
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public boolean hasMetadata() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder setMetadata(
io.kubernetes.client.proto.Meta.ListMeta.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder mergeMetadata(io.kubernetes.client.proto.Meta.ListMeta value) {
if (metadataBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001) &&
metadata_ != null &&
metadata_ != io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance()) {
metadata_ =
io.kubernetes.client.proto.Meta.ListMeta.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMeta.Builder getMetadataBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
public io.kubernetes.client.proto.Meta.ListMetaOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
io.kubernetes.client.proto.Meta.ListMeta.getDefaultInstance() : metadata_;
}
}
/**
*
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.ListMeta, io.kubernetes.client.proto.Meta.ListMeta.Builder, io.kubernetes.client.proto.Meta.ListMetaOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private java.util.List items_ =
java.util.Collections.emptyList();
private void ensureItemsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
items_ = new java.util.ArrayList(items_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSet, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder> itemsBuilder_;
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public java.util.List getItemsList() {
if (itemsBuilder_ == null) {
return java.util.Collections.unmodifiableList(items_);
} else {
return itemsBuilder_.getMessageList();
}
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public int getItemsCount() {
if (itemsBuilder_ == null) {
return items_.size();
} else {
return itemsBuilder_.getCount();
}
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet getItems(int index) {
if (itemsBuilder_ == null) {
return items_.get(index);
} else {
return itemsBuilder_.getMessage(index);
}
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSet value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.set(index, value);
onChanged();
} else {
itemsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder setItems(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.set(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder addItems(io.kubernetes.client.proto.V1beta1Apps.StatefulSet value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(value);
onChanged();
} else {
itemsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSet value) {
if (itemsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureItemsIsMutable();
items_.add(index, value);
onChanged();
} else {
itemsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder addItems(
io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder addItems(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder builderForValue) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.add(index, builderForValue.build());
onChanged();
} else {
itemsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder addAllItems(
java.lang.Iterable extends io.kubernetes.client.proto.V1beta1Apps.StatefulSet> values) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, items_);
onChanged();
} else {
itemsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder clearItems() {
if (itemsBuilder_ == null) {
items_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
itemsBuilder_.clear();
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public Builder removeItems(int index) {
if (itemsBuilder_ == null) {
ensureItemsIsMutable();
items_.remove(index);
onChanged();
} else {
itemsBuilder_.remove(index);
}
return this;
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder getItemsBuilder(
int index) {
return getItemsFieldBuilder().getBuilder(index);
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder getItemsOrBuilder(
int index) {
if (itemsBuilder_ == null) {
return items_.get(index); } else {
return itemsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder>
getItemsOrBuilderList() {
if (itemsBuilder_ != null) {
return itemsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(items_);
}
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder addItemsBuilder() {
return getItemsFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1beta1Apps.StatefulSet.getDefaultInstance());
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder addItemsBuilder(
int index) {
return getItemsFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.getDefaultInstance());
}
/**
* repeated .k8s.io.api.apps.v1beta1.StatefulSet items = 2;
*/
public java.util.List
getItemsBuilderList() {
return getItemsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSet, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder>
getItemsFieldBuilder() {
if (itemsBuilder_ == null) {
itemsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSet, io.kubernetes.client.proto.V1beta1Apps.StatefulSet.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetOrBuilder>(
items_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
items_ = null;
}
return itemsBuilder_;
}
@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:k8s.io.api.apps.v1beta1.StatefulSetList)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSetList)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSetList DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetList();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetList getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSetList parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSetList(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.kubernetes.client.proto.V1beta1Apps.StatefulSetList getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetSpecOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSetSpec)
com.google.protobuf.MessageOrBuilder {
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
boolean hasReplicas();
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
int getReplicas();
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
boolean hasSelector();
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
io.kubernetes.client.proto.Meta.LabelSelector getSelector();
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder();
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
boolean hasTemplate();
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate();
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder();
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
java.util.List
getVolumeClaimTemplatesList();
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
io.kubernetes.client.proto.V1.PersistentVolumeClaim getVolumeClaimTemplates(int index);
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
int getVolumeClaimTemplatesCount();
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
java.util.List extends io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder>
getVolumeClaimTemplatesOrBuilderList();
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder getVolumeClaimTemplatesOrBuilder(
int index);
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
boolean hasServiceName();
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
java.lang.String getServiceName();
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
com.google.protobuf.ByteString
getServiceNameBytes();
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
boolean hasPodManagementPolicy();
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
java.lang.String getPodManagementPolicy();
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
com.google.protobuf.ByteString
getPodManagementPolicyBytes();
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
boolean hasUpdateStrategy();
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getUpdateStrategy();
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder getUpdateStrategyOrBuilder();
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
boolean hasRevisionHistoryLimit();
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
int getRevisionHistoryLimit();
}
/**
*
* A StatefulSetSpec is the specification of a StatefulSet.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetSpec}
*/
public static final class StatefulSetSpec extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSetSpec)
StatefulSetSpecOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSetSpec.newBuilder() to construct.
private StatefulSetSpec(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSetSpec() {
replicas_ = 0;
volumeClaimTemplates_ = java.util.Collections.emptyList();
serviceName_ = "";
podManagementPolicy_ = "";
revisionHistoryLimit_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSetSpec(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
replicas_ = input.readInt32();
break;
}
case 18: {
io.kubernetes.client.proto.Meta.LabelSelector.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = selector_.toBuilder();
}
selector_ = input.readMessage(io.kubernetes.client.proto.Meta.LabelSelector.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(selector_);
selector_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
case 26: {
io.kubernetes.client.proto.V1.PodTemplateSpec.Builder subBuilder = null;
if (((bitField0_ & 0x00000004) == 0x00000004)) {
subBuilder = template_.toBuilder();
}
template_ = input.readMessage(io.kubernetes.client.proto.V1.PodTemplateSpec.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(template_);
template_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000004;
break;
}
case 34: {
if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
volumeClaimTemplates_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000008;
}
volumeClaimTemplates_.add(
input.readMessage(io.kubernetes.client.proto.V1.PersistentVolumeClaim.PARSER, extensionRegistry));
break;
}
case 42: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000008;
serviceName_ = bs;
break;
}
case 50: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000010;
podManagementPolicy_ = bs;
break;
}
case 58: {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder subBuilder = null;
if (((bitField0_ & 0x00000020) == 0x00000020)) {
subBuilder = updateStrategy_.toBuilder();
}
updateStrategy_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(updateStrategy_);
updateStrategy_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000020;
break;
}
case 64: {
bitField0_ |= 0x00000040;
revisionHistoryLimit_ = input.readInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
volumeClaimTemplates_ = java.util.Collections.unmodifiableList(volumeClaimTemplates_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder.class);
}
private int bitField0_;
public static final int REPLICAS_FIELD_NUMBER = 1;
private int replicas_;
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
public static final int SELECTOR_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.Meta.LabelSelector selector_;
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public boolean hasSelector() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector getSelector() {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder() {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
public static final int TEMPLATE_FIELD_NUMBER = 3;
private io.kubernetes.client.proto.V1.PodTemplateSpec template_;
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public boolean hasTemplate() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate() {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder() {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
public static final int VOLUMECLAIMTEMPLATES_FIELD_NUMBER = 4;
private java.util.List volumeClaimTemplates_;
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public java.util.List getVolumeClaimTemplatesList() {
return volumeClaimTemplates_;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public java.util.List extends io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder>
getVolumeClaimTemplatesOrBuilderList() {
return volumeClaimTemplates_;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public int getVolumeClaimTemplatesCount() {
return volumeClaimTemplates_.size();
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaim getVolumeClaimTemplates(int index) {
return volumeClaimTemplates_.get(index);
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder getVolumeClaimTemplatesOrBuilder(
int index) {
return volumeClaimTemplates_.get(index);
}
public static final int SERVICENAME_FIELD_NUMBER = 5;
private volatile java.lang.Object serviceName_;
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public boolean hasServiceName() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public java.lang.String getServiceName() {
java.lang.Object ref = serviceName_;
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 (bs.isValidUtf8()) {
serviceName_ = s;
}
return s;
}
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public com.google.protobuf.ByteString
getServiceNameBytes() {
java.lang.Object ref = serviceName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
serviceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PODMANAGEMENTPOLICY_FIELD_NUMBER = 6;
private volatile java.lang.Object podManagementPolicy_;
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public boolean hasPodManagementPolicy() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public java.lang.String getPodManagementPolicy() {
java.lang.Object ref = podManagementPolicy_;
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 (bs.isValidUtf8()) {
podManagementPolicy_ = s;
}
return s;
}
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public com.google.protobuf.ByteString
getPodManagementPolicyBytes() {
java.lang.Object ref = podManagementPolicy_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
podManagementPolicy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UPDATESTRATEGY_FIELD_NUMBER = 7;
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy updateStrategy_;
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public boolean hasUpdateStrategy() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getUpdateStrategy() {
return updateStrategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance() : updateStrategy_;
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder getUpdateStrategyOrBuilder() {
return updateStrategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance() : updateStrategy_;
}
public static final int REVISIONHISTORYLIMIT_FIELD_NUMBER = 8;
private int revisionHistoryLimit_;
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public boolean hasRevisionHistoryLimit() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public int getRevisionHistoryLimit() {
return revisionHistoryLimit_;
}
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) == 0x00000001)) {
output.writeInt32(1, replicas_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getSelector());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeMessage(3, getTemplate());
}
for (int i = 0; i < volumeClaimTemplates_.size(); i++) {
output.writeMessage(4, volumeClaimTemplates_.get(i));
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, serviceName_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, podManagementPolicy_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeMessage(7, getUpdateStrategy());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeInt32(8, revisionHistoryLimit_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, replicas_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSelector());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getTemplate());
}
for (int i = 0; i < volumeClaimTemplates_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, volumeClaimTemplates_.get(i));
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, serviceName_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, podManagementPolicy_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(7, getUpdateStrategy());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(8, revisionHistoryLimit_);
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec) obj;
boolean result = true;
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && (hasSelector() == other.hasSelector());
if (hasSelector()) {
result = result && getSelector()
.equals(other.getSelector());
}
result = result && (hasTemplate() == other.hasTemplate());
if (hasTemplate()) {
result = result && getTemplate()
.equals(other.getTemplate());
}
result = result && getVolumeClaimTemplatesList()
.equals(other.getVolumeClaimTemplatesList());
result = result && (hasServiceName() == other.hasServiceName());
if (hasServiceName()) {
result = result && getServiceName()
.equals(other.getServiceName());
}
result = result && (hasPodManagementPolicy() == other.hasPodManagementPolicy());
if (hasPodManagementPolicy()) {
result = result && getPodManagementPolicy()
.equals(other.getPodManagementPolicy());
}
result = result && (hasUpdateStrategy() == other.hasUpdateStrategy());
if (hasUpdateStrategy()) {
result = result && getUpdateStrategy()
.equals(other.getUpdateStrategy());
}
result = result && (hasRevisionHistoryLimit() == other.hasRevisionHistoryLimit());
if (hasRevisionHistoryLimit()) {
result = result && (getRevisionHistoryLimit()
== other.getRevisionHistoryLimit());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
if (hasSelector()) {
hash = (37 * hash) + SELECTOR_FIELD_NUMBER;
hash = (53 * hash) + getSelector().hashCode();
}
if (hasTemplate()) {
hash = (37 * hash) + TEMPLATE_FIELD_NUMBER;
hash = (53 * hash) + getTemplate().hashCode();
}
if (getVolumeClaimTemplatesCount() > 0) {
hash = (37 * hash) + VOLUMECLAIMTEMPLATES_FIELD_NUMBER;
hash = (53 * hash) + getVolumeClaimTemplatesList().hashCode();
}
if (hasServiceName()) {
hash = (37 * hash) + SERVICENAME_FIELD_NUMBER;
hash = (53 * hash) + getServiceName().hashCode();
}
if (hasPodManagementPolicy()) {
hash = (37 * hash) + PODMANAGEMENTPOLICY_FIELD_NUMBER;
hash = (53 * hash) + getPodManagementPolicy().hashCode();
}
if (hasUpdateStrategy()) {
hash = (37 * hash) + UPDATESTRATEGY_FIELD_NUMBER;
hash = (53 * hash) + getUpdateStrategy().hashCode();
}
if (hasRevisionHistoryLimit()) {
hash = (37 * hash) + REVISIONHISTORYLIMIT_FIELD_NUMBER;
hash = (53 * hash) + getRevisionHistoryLimit();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec 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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec 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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec 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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec 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;
}
/**
*
* A StatefulSetSpec is the specification of a StatefulSet.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetSpec}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSetSpec)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpecOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getSelectorFieldBuilder();
getTemplateFieldBuilder();
getVolumeClaimTemplatesFieldBuilder();
getUpdateStrategyFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
if (selectorBuilder_ == null) {
selector_ = null;
} else {
selectorBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (templateBuilder_ == null) {
template_ = null;
} else {
templateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
if (volumeClaimTemplatesBuilder_ == null) {
volumeClaimTemplates_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000008);
} else {
volumeClaimTemplatesBuilder_.clear();
}
serviceName_ = "";
bitField0_ = (bitField0_ & ~0x00000010);
podManagementPolicy_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
if (updateStrategyBuilder_ == null) {
updateStrategy_ = null;
} else {
updateStrategyBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
revisionHistoryLimit_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.replicas_ = replicas_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (selectorBuilder_ == null) {
result.selector_ = selector_;
} else {
result.selector_ = selectorBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (templateBuilder_ == null) {
result.template_ = template_;
} else {
result.template_ = templateBuilder_.build();
}
if (volumeClaimTemplatesBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008)) {
volumeClaimTemplates_ = java.util.Collections.unmodifiableList(volumeClaimTemplates_);
bitField0_ = (bitField0_ & ~0x00000008);
}
result.volumeClaimTemplates_ = volumeClaimTemplates_;
} else {
result.volumeClaimTemplates_ = volumeClaimTemplatesBuilder_.build();
}
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000008;
}
result.serviceName_ = serviceName_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000010;
}
result.podManagementPolicy_ = podManagementPolicy_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000020;
}
if (updateStrategyBuilder_ == null) {
result.updateStrategy_ = updateStrategy_;
} else {
result.updateStrategy_ = updateStrategyBuilder_.build();
}
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000040;
}
result.revisionHistoryLimit_ = revisionHistoryLimit_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec.getDefaultInstance()) return this;
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
if (other.hasSelector()) {
mergeSelector(other.getSelector());
}
if (other.hasTemplate()) {
mergeTemplate(other.getTemplate());
}
if (volumeClaimTemplatesBuilder_ == null) {
if (!other.volumeClaimTemplates_.isEmpty()) {
if (volumeClaimTemplates_.isEmpty()) {
volumeClaimTemplates_ = other.volumeClaimTemplates_;
bitField0_ = (bitField0_ & ~0x00000008);
} else {
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.addAll(other.volumeClaimTemplates_);
}
onChanged();
}
} else {
if (!other.volumeClaimTemplates_.isEmpty()) {
if (volumeClaimTemplatesBuilder_.isEmpty()) {
volumeClaimTemplatesBuilder_.dispose();
volumeClaimTemplatesBuilder_ = null;
volumeClaimTemplates_ = other.volumeClaimTemplates_;
bitField0_ = (bitField0_ & ~0x00000008);
volumeClaimTemplatesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getVolumeClaimTemplatesFieldBuilder() : null;
} else {
volumeClaimTemplatesBuilder_.addAllMessages(other.volumeClaimTemplates_);
}
}
}
if (other.hasServiceName()) {
bitField0_ |= 0x00000010;
serviceName_ = other.serviceName_;
onChanged();
}
if (other.hasPodManagementPolicy()) {
bitField0_ |= 0x00000020;
podManagementPolicy_ = other.podManagementPolicy_;
onChanged();
}
if (other.hasUpdateStrategy()) {
mergeUpdateStrategy(other.getUpdateStrategy());
}
if (other.hasRevisionHistoryLimit()) {
setRevisionHistoryLimit(other.getRevisionHistoryLimit());
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int replicas_ ;
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000001;
replicas_ = value;
onChanged();
return this;
}
/**
*
* replicas is the desired number of replicas of the given Template.
* These are replicas in the sense that they are instantiations of the
* same Template, but individual replicas also have a consistent identity.
* If unspecified, defaults to 1.
* TODO: Consider a rename of this field.
* +optional
*
*
* optional int32 replicas = 1;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
onChanged();
return this;
}
private io.kubernetes.client.proto.Meta.LabelSelector selector_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder> selectorBuilder_;
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public boolean hasSelector() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector getSelector() {
if (selectorBuilder_ == null) {
return selector_ == null ? io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
} else {
return selectorBuilder_.getMessage();
}
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder setSelector(io.kubernetes.client.proto.Meta.LabelSelector value) {
if (selectorBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
selector_ = value;
onChanged();
} else {
selectorBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder setSelector(
io.kubernetes.client.proto.Meta.LabelSelector.Builder builderForValue) {
if (selectorBuilder_ == null) {
selector_ = builderForValue.build();
onChanged();
} else {
selectorBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder mergeSelector(io.kubernetes.client.proto.Meta.LabelSelector value) {
if (selectorBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
selector_ != null &&
selector_ != io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance()) {
selector_ =
io.kubernetes.client.proto.Meta.LabelSelector.newBuilder(selector_).mergeFrom(value).buildPartial();
} else {
selector_ = value;
}
onChanged();
} else {
selectorBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public Builder clearSelector() {
if (selectorBuilder_ == null) {
selector_ = null;
onChanged();
} else {
selectorBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelector.Builder getSelectorBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getSelectorFieldBuilder().getBuilder();
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
public io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder getSelectorOrBuilder() {
if (selectorBuilder_ != null) {
return selectorBuilder_.getMessageOrBuilder();
} else {
return selector_ == null ?
io.kubernetes.client.proto.Meta.LabelSelector.getDefaultInstance() : selector_;
}
}
/**
*
* selector is a label query over pods that should match the replica count.
* If empty, defaulted to labels on the pod template.
* More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
* +optional
*
*
* optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder>
getSelectorFieldBuilder() {
if (selectorBuilder_ == null) {
selectorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.Meta.LabelSelector, io.kubernetes.client.proto.Meta.LabelSelector.Builder, io.kubernetes.client.proto.Meta.LabelSelectorOrBuilder>(
getSelector(),
getParentForChildren(),
isClean());
selector_ = null;
}
return selectorBuilder_;
}
private io.kubernetes.client.proto.V1.PodTemplateSpec template_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder> templateBuilder_;
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public boolean hasTemplate() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec getTemplate() {
if (templateBuilder_ == null) {
return template_ == null ? io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
} else {
return templateBuilder_.getMessage();
}
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder setTemplate(io.kubernetes.client.proto.V1.PodTemplateSpec value) {
if (templateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
template_ = value;
onChanged();
} else {
templateBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder setTemplate(
io.kubernetes.client.proto.V1.PodTemplateSpec.Builder builderForValue) {
if (templateBuilder_ == null) {
template_ = builderForValue.build();
onChanged();
} else {
templateBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder mergeTemplate(io.kubernetes.client.proto.V1.PodTemplateSpec value) {
if (templateBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
template_ != null &&
template_ != io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance()) {
template_ =
io.kubernetes.client.proto.V1.PodTemplateSpec.newBuilder(template_).mergeFrom(value).buildPartial();
} else {
template_ = value;
}
onChanged();
} else {
templateBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public Builder clearTemplate() {
if (templateBuilder_ == null) {
template_ = null;
onChanged();
} else {
templateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpec.Builder getTemplateBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getTemplateFieldBuilder().getBuilder();
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
public io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder getTemplateOrBuilder() {
if (templateBuilder_ != null) {
return templateBuilder_.getMessageOrBuilder();
} else {
return template_ == null ?
io.kubernetes.client.proto.V1.PodTemplateSpec.getDefaultInstance() : template_;
}
}
/**
*
* template is the object that describes the pod that will be created if
* insufficient replicas are detected. Each pod stamped out by the StatefulSet
* will fulfill this Template, but have a unique identity from the rest
* of the StatefulSet.
*
*
* optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder>
getTemplateFieldBuilder() {
if (templateBuilder_ == null) {
templateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1.PodTemplateSpec, io.kubernetes.client.proto.V1.PodTemplateSpec.Builder, io.kubernetes.client.proto.V1.PodTemplateSpecOrBuilder>(
getTemplate(),
getParentForChildren(),
isClean());
template_ = null;
}
return templateBuilder_;
}
private java.util.List volumeClaimTemplates_ =
java.util.Collections.emptyList();
private void ensureVolumeClaimTemplatesIsMutable() {
if (!((bitField0_ & 0x00000008) == 0x00000008)) {
volumeClaimTemplates_ = new java.util.ArrayList(volumeClaimTemplates_);
bitField0_ |= 0x00000008;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1.PersistentVolumeClaim, io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder, io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder> volumeClaimTemplatesBuilder_;
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public java.util.List getVolumeClaimTemplatesList() {
if (volumeClaimTemplatesBuilder_ == null) {
return java.util.Collections.unmodifiableList(volumeClaimTemplates_);
} else {
return volumeClaimTemplatesBuilder_.getMessageList();
}
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public int getVolumeClaimTemplatesCount() {
if (volumeClaimTemplatesBuilder_ == null) {
return volumeClaimTemplates_.size();
} else {
return volumeClaimTemplatesBuilder_.getCount();
}
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaim getVolumeClaimTemplates(int index) {
if (volumeClaimTemplatesBuilder_ == null) {
return volumeClaimTemplates_.get(index);
} else {
return volumeClaimTemplatesBuilder_.getMessage(index);
}
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder setVolumeClaimTemplates(
int index, io.kubernetes.client.proto.V1.PersistentVolumeClaim value) {
if (volumeClaimTemplatesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.set(index, value);
onChanged();
} else {
volumeClaimTemplatesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder setVolumeClaimTemplates(
int index, io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder builderForValue) {
if (volumeClaimTemplatesBuilder_ == null) {
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.set(index, builderForValue.build());
onChanged();
} else {
volumeClaimTemplatesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder addVolumeClaimTemplates(io.kubernetes.client.proto.V1.PersistentVolumeClaim value) {
if (volumeClaimTemplatesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.add(value);
onChanged();
} else {
volumeClaimTemplatesBuilder_.addMessage(value);
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder addVolumeClaimTemplates(
int index, io.kubernetes.client.proto.V1.PersistentVolumeClaim value) {
if (volumeClaimTemplatesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.add(index, value);
onChanged();
} else {
volumeClaimTemplatesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder addVolumeClaimTemplates(
io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder builderForValue) {
if (volumeClaimTemplatesBuilder_ == null) {
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.add(builderForValue.build());
onChanged();
} else {
volumeClaimTemplatesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder addVolumeClaimTemplates(
int index, io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder builderForValue) {
if (volumeClaimTemplatesBuilder_ == null) {
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.add(index, builderForValue.build());
onChanged();
} else {
volumeClaimTemplatesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder addAllVolumeClaimTemplates(
java.lang.Iterable extends io.kubernetes.client.proto.V1.PersistentVolumeClaim> values) {
if (volumeClaimTemplatesBuilder_ == null) {
ensureVolumeClaimTemplatesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, volumeClaimTemplates_);
onChanged();
} else {
volumeClaimTemplatesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder clearVolumeClaimTemplates() {
if (volumeClaimTemplatesBuilder_ == null) {
volumeClaimTemplates_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
} else {
volumeClaimTemplatesBuilder_.clear();
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public Builder removeVolumeClaimTemplates(int index) {
if (volumeClaimTemplatesBuilder_ == null) {
ensureVolumeClaimTemplatesIsMutable();
volumeClaimTemplates_.remove(index);
onChanged();
} else {
volumeClaimTemplatesBuilder_.remove(index);
}
return this;
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder getVolumeClaimTemplatesBuilder(
int index) {
return getVolumeClaimTemplatesFieldBuilder().getBuilder(index);
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder getVolumeClaimTemplatesOrBuilder(
int index) {
if (volumeClaimTemplatesBuilder_ == null) {
return volumeClaimTemplates_.get(index); } else {
return volumeClaimTemplatesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public java.util.List extends io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder>
getVolumeClaimTemplatesOrBuilderList() {
if (volumeClaimTemplatesBuilder_ != null) {
return volumeClaimTemplatesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(volumeClaimTemplates_);
}
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder addVolumeClaimTemplatesBuilder() {
return getVolumeClaimTemplatesFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1.PersistentVolumeClaim.getDefaultInstance());
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder addVolumeClaimTemplatesBuilder(
int index) {
return getVolumeClaimTemplatesFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1.PersistentVolumeClaim.getDefaultInstance());
}
/**
*
* volumeClaimTemplates is a list of claims that pods are allowed to reference.
* The StatefulSet controller is responsible for mapping network identities to
* claims in a way that maintains the identity of a pod. Every claim in
* this list must have at least one matching (by name) volumeMount in one
* container in the template. A claim in this list takes precedence over
* any volumes in the template, with the same name.
* TODO: Define the behavior if a claim already exists with the same name.
* +optional
*
*
* repeated .k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
*/
public java.util.List
getVolumeClaimTemplatesBuilderList() {
return getVolumeClaimTemplatesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1.PersistentVolumeClaim, io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder, io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder>
getVolumeClaimTemplatesFieldBuilder() {
if (volumeClaimTemplatesBuilder_ == null) {
volumeClaimTemplatesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1.PersistentVolumeClaim, io.kubernetes.client.proto.V1.PersistentVolumeClaim.Builder, io.kubernetes.client.proto.V1.PersistentVolumeClaimOrBuilder>(
volumeClaimTemplates_,
((bitField0_ & 0x00000008) == 0x00000008),
getParentForChildren(),
isClean());
volumeClaimTemplates_ = null;
}
return volumeClaimTemplatesBuilder_;
}
private java.lang.Object serviceName_ = "";
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public boolean hasServiceName() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public java.lang.String getServiceName() {
java.lang.Object ref = serviceName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
serviceName_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public com.google.protobuf.ByteString
getServiceNameBytes() {
java.lang.Object ref = serviceName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
serviceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public Builder setServiceName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
serviceName_ = value;
onChanged();
return this;
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public Builder clearServiceName() {
bitField0_ = (bitField0_ & ~0x00000010);
serviceName_ = getDefaultInstance().getServiceName();
onChanged();
return this;
}
/**
*
* serviceName is the name of the service that governs this StatefulSet.
* This service must exist before the StatefulSet, and is responsible for
* the network identity of the set. Pods get DNS/hostnames that follow the
* pattern: pod-specific-string.serviceName.default.svc.cluster.local
* where "pod-specific-string" is managed by the StatefulSet controller.
*
*
* optional string serviceName = 5;
*/
public Builder setServiceNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
serviceName_ = value;
onChanged();
return this;
}
private java.lang.Object podManagementPolicy_ = "";
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public boolean hasPodManagementPolicy() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public java.lang.String getPodManagementPolicy() {
java.lang.Object ref = podManagementPolicy_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
podManagementPolicy_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public com.google.protobuf.ByteString
getPodManagementPolicyBytes() {
java.lang.Object ref = podManagementPolicy_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
podManagementPolicy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public Builder setPodManagementPolicy(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
podManagementPolicy_ = value;
onChanged();
return this;
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public Builder clearPodManagementPolicy() {
bitField0_ = (bitField0_ & ~0x00000020);
podManagementPolicy_ = getDefaultInstance().getPodManagementPolicy();
onChanged();
return this;
}
/**
*
* podManagementPolicy controls how pods are created during initial scale up,
* when replacing pods on nodes, or when scaling down. The default policy is
* `OrderedReady`, where pods are created in increasing order (pod-0, then
* pod-1, etc) and the controller will wait until each pod is ready before
* continuing. When scaling down, the pods are removed in the opposite order.
* The alternative policy is `Parallel` which will create pods in parallel
* to match the desired scale without waiting, and on scale down will delete
* all pods at once.
* +optional
*
*
* optional string podManagementPolicy = 6;
*/
public Builder setPodManagementPolicyBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
podManagementPolicy_ = value;
onChanged();
return this;
}
private io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy updateStrategy_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder> updateStrategyBuilder_;
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public boolean hasUpdateStrategy() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getUpdateStrategy() {
if (updateStrategyBuilder_ == null) {
return updateStrategy_ == null ? io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance() : updateStrategy_;
} else {
return updateStrategyBuilder_.getMessage();
}
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public Builder setUpdateStrategy(io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy value) {
if (updateStrategyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
updateStrategy_ = value;
onChanged();
} else {
updateStrategyBuilder_.setMessage(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public Builder setUpdateStrategy(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder builderForValue) {
if (updateStrategyBuilder_ == null) {
updateStrategy_ = builderForValue.build();
onChanged();
} else {
updateStrategyBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000040;
return this;
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public Builder mergeUpdateStrategy(io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy value) {
if (updateStrategyBuilder_ == null) {
if (((bitField0_ & 0x00000040) == 0x00000040) &&
updateStrategy_ != null &&
updateStrategy_ != io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance()) {
updateStrategy_ =
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.newBuilder(updateStrategy_).mergeFrom(value).buildPartial();
} else {
updateStrategy_ = value;
}
onChanged();
} else {
updateStrategyBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000040;
return this;
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public Builder clearUpdateStrategy() {
if (updateStrategyBuilder_ == null) {
updateStrategy_ = null;
onChanged();
} else {
updateStrategyBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder getUpdateStrategyBuilder() {
bitField0_ |= 0x00000040;
onChanged();
return getUpdateStrategyFieldBuilder().getBuilder();
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder getUpdateStrategyOrBuilder() {
if (updateStrategyBuilder_ != null) {
return updateStrategyBuilder_.getMessageOrBuilder();
} else {
return updateStrategy_ == null ?
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance() : updateStrategy_;
}
}
/**
*
* updateStrategy indicates the StatefulSetUpdateStrategy that will be
* employed to update Pods in the StatefulSet when a revision is made to
* Template.
*
*
* optional .k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy updateStrategy = 7;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder>
getUpdateStrategyFieldBuilder() {
if (updateStrategyBuilder_ == null) {
updateStrategyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder>(
getUpdateStrategy(),
getParentForChildren(),
isClean());
updateStrategy_ = null;
}
return updateStrategyBuilder_;
}
private int revisionHistoryLimit_ ;
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public boolean hasRevisionHistoryLimit() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public int getRevisionHistoryLimit() {
return revisionHistoryLimit_;
}
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public Builder setRevisionHistoryLimit(int value) {
bitField0_ |= 0x00000080;
revisionHistoryLimit_ = value;
onChanged();
return this;
}
/**
*
* revisionHistoryLimit is the maximum number of revisions that will
* be maintained in the StatefulSet's revision history. The revision history
* consists of all revisions not represented by a currently applied
* StatefulSetSpec version. The default value is 10.
*
*
* optional int32 revisionHistoryLimit = 8;
*/
public Builder clearRevisionHistoryLimit() {
bitField0_ = (bitField0_ & ~0x00000080);
revisionHistoryLimit_ = 0;
onChanged();
return this;
}
@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:k8s.io.api.apps.v1beta1.StatefulSetSpec)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSetSpec)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSetSpec parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSetSpec(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.kubernetes.client.proto.V1beta1Apps.StatefulSetSpec getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetStatusOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSetStatus)
com.google.protobuf.MessageOrBuilder {
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
boolean hasObservedGeneration();
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
long getObservedGeneration();
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
boolean hasReplicas();
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
int getReplicas();
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
boolean hasReadyReplicas();
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
int getReadyReplicas();
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
boolean hasCurrentReplicas();
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
int getCurrentReplicas();
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
boolean hasUpdatedReplicas();
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
int getUpdatedReplicas();
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
boolean hasCurrentRevision();
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
java.lang.String getCurrentRevision();
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
com.google.protobuf.ByteString
getCurrentRevisionBytes();
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
boolean hasUpdateRevision();
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
java.lang.String getUpdateRevision();
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
com.google.protobuf.ByteString
getUpdateRevisionBytes();
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
boolean hasCollisionCount();
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
int getCollisionCount();
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
java.util.List
getConditionsList();
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getConditions(int index);
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
int getConditionsCount();
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder>
getConditionsOrBuilderList();
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder getConditionsOrBuilder(
int index);
}
/**
*
* StatefulSetStatus represents the current state of a StatefulSet.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetStatus}
*/
public static final class StatefulSetStatus extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSetStatus)
StatefulSetStatusOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSetStatus.newBuilder() to construct.
private StatefulSetStatus(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSetStatus() {
observedGeneration_ = 0L;
replicas_ = 0;
readyReplicas_ = 0;
currentReplicas_ = 0;
updatedReplicas_ = 0;
currentRevision_ = "";
updateRevision_ = "";
collisionCount_ = 0;
conditions_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSetStatus(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 8: {
bitField0_ |= 0x00000001;
observedGeneration_ = input.readInt64();
break;
}
case 16: {
bitField0_ |= 0x00000002;
replicas_ = input.readInt32();
break;
}
case 24: {
bitField0_ |= 0x00000004;
readyReplicas_ = input.readInt32();
break;
}
case 32: {
bitField0_ |= 0x00000008;
currentReplicas_ = input.readInt32();
break;
}
case 40: {
bitField0_ |= 0x00000010;
updatedReplicas_ = input.readInt32();
break;
}
case 50: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000020;
currentRevision_ = bs;
break;
}
case 58: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000040;
updateRevision_ = bs;
break;
}
case 72: {
bitField0_ |= 0x00000080;
collisionCount_ = input.readInt32();
break;
}
case 82: {
if (!((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
conditions_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000100;
}
conditions_.add(
input.readMessage(io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.PARSER, extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
conditions_ = java.util.Collections.unmodifiableList(conditions_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder.class);
}
private int bitField0_;
public static final int OBSERVEDGENERATION_FIELD_NUMBER = 1;
private long observedGeneration_;
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public boolean hasObservedGeneration() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public long getObservedGeneration() {
return observedGeneration_;
}
public static final int REPLICAS_FIELD_NUMBER = 2;
private int replicas_;
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public int getReplicas() {
return replicas_;
}
public static final int READYREPLICAS_FIELD_NUMBER = 3;
private int readyReplicas_;
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public boolean hasReadyReplicas() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public int getReadyReplicas() {
return readyReplicas_;
}
public static final int CURRENTREPLICAS_FIELD_NUMBER = 4;
private int currentReplicas_;
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public boolean hasCurrentReplicas() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public int getCurrentReplicas() {
return currentReplicas_;
}
public static final int UPDATEDREPLICAS_FIELD_NUMBER = 5;
private int updatedReplicas_;
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public boolean hasUpdatedReplicas() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public int getUpdatedReplicas() {
return updatedReplicas_;
}
public static final int CURRENTREVISION_FIELD_NUMBER = 6;
private volatile java.lang.Object currentRevision_;
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public boolean hasCurrentRevision() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public java.lang.String getCurrentRevision() {
java.lang.Object ref = currentRevision_;
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 (bs.isValidUtf8()) {
currentRevision_ = s;
}
return s;
}
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public com.google.protobuf.ByteString
getCurrentRevisionBytes() {
java.lang.Object ref = currentRevision_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
currentRevision_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UPDATEREVISION_FIELD_NUMBER = 7;
private volatile java.lang.Object updateRevision_;
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public boolean hasUpdateRevision() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public java.lang.String getUpdateRevision() {
java.lang.Object ref = updateRevision_;
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 (bs.isValidUtf8()) {
updateRevision_ = s;
}
return s;
}
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public com.google.protobuf.ByteString
getUpdateRevisionBytes() {
java.lang.Object ref = updateRevision_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
updateRevision_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLLISIONCOUNT_FIELD_NUMBER = 9;
private int collisionCount_;
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public boolean hasCollisionCount() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public int getCollisionCount() {
return collisionCount_;
}
public static final int CONDITIONS_FIELD_NUMBER = 10;
private java.util.List conditions_;
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public java.util.List getConditionsList() {
return conditions_;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder>
getConditionsOrBuilderList() {
return conditions_;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public int getConditionsCount() {
return conditions_.size();
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getConditions(int index) {
return conditions_.get(index);
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder getConditionsOrBuilder(
int index) {
return conditions_.get(index);
}
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) == 0x00000001)) {
output.writeInt64(1, observedGeneration_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, replicas_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, readyReplicas_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeInt32(4, currentReplicas_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeInt32(5, updatedReplicas_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, currentRevision_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, updateRevision_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeInt32(9, collisionCount_);
}
for (int i = 0; i < conditions_.size(); i++) {
output.writeMessage(10, conditions_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, observedGeneration_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, replicas_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, readyReplicas_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, currentReplicas_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, updatedReplicas_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, currentRevision_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, updateRevision_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(9, collisionCount_);
}
for (int i = 0; i < conditions_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(10, conditions_.get(i));
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus) obj;
boolean result = true;
result = result && (hasObservedGeneration() == other.hasObservedGeneration());
if (hasObservedGeneration()) {
result = result && (getObservedGeneration()
== other.getObservedGeneration());
}
result = result && (hasReplicas() == other.hasReplicas());
if (hasReplicas()) {
result = result && (getReplicas()
== other.getReplicas());
}
result = result && (hasReadyReplicas() == other.hasReadyReplicas());
if (hasReadyReplicas()) {
result = result && (getReadyReplicas()
== other.getReadyReplicas());
}
result = result && (hasCurrentReplicas() == other.hasCurrentReplicas());
if (hasCurrentReplicas()) {
result = result && (getCurrentReplicas()
== other.getCurrentReplicas());
}
result = result && (hasUpdatedReplicas() == other.hasUpdatedReplicas());
if (hasUpdatedReplicas()) {
result = result && (getUpdatedReplicas()
== other.getUpdatedReplicas());
}
result = result && (hasCurrentRevision() == other.hasCurrentRevision());
if (hasCurrentRevision()) {
result = result && getCurrentRevision()
.equals(other.getCurrentRevision());
}
result = result && (hasUpdateRevision() == other.hasUpdateRevision());
if (hasUpdateRevision()) {
result = result && getUpdateRevision()
.equals(other.getUpdateRevision());
}
result = result && (hasCollisionCount() == other.hasCollisionCount());
if (hasCollisionCount()) {
result = result && (getCollisionCount()
== other.getCollisionCount());
}
result = result && getConditionsList()
.equals(other.getConditionsList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasObservedGeneration()) {
hash = (37 * hash) + OBSERVEDGENERATION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getObservedGeneration());
}
if (hasReplicas()) {
hash = (37 * hash) + REPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReplicas();
}
if (hasReadyReplicas()) {
hash = (37 * hash) + READYREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getReadyReplicas();
}
if (hasCurrentReplicas()) {
hash = (37 * hash) + CURRENTREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getCurrentReplicas();
}
if (hasUpdatedReplicas()) {
hash = (37 * hash) + UPDATEDREPLICAS_FIELD_NUMBER;
hash = (53 * hash) + getUpdatedReplicas();
}
if (hasCurrentRevision()) {
hash = (37 * hash) + CURRENTREVISION_FIELD_NUMBER;
hash = (53 * hash) + getCurrentRevision().hashCode();
}
if (hasUpdateRevision()) {
hash = (37 * hash) + UPDATEREVISION_FIELD_NUMBER;
hash = (53 * hash) + getUpdateRevision().hashCode();
}
if (hasCollisionCount()) {
hash = (37 * hash) + COLLISIONCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getCollisionCount();
}
if (getConditionsCount() > 0) {
hash = (37 * hash) + CONDITIONS_FIELD_NUMBER;
hash = (53 * hash) + getConditionsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus 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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus 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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus 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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus 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;
}
/**
*
* StatefulSetStatus represents the current state of a StatefulSet.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetStatus}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSetStatus)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatusOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getConditionsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
observedGeneration_ = 0L;
bitField0_ = (bitField0_ & ~0x00000001);
replicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
readyReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
currentReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000008);
updatedReplicas_ = 0;
bitField0_ = (bitField0_ & ~0x00000010);
currentRevision_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
updateRevision_ = "";
bitField0_ = (bitField0_ & ~0x00000040);
collisionCount_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
if (conditionsBuilder_ == null) {
conditions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000100);
} else {
conditionsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.observedGeneration_ = observedGeneration_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.replicas_ = replicas_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.readyReplicas_ = readyReplicas_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.currentReplicas_ = currentReplicas_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.updatedReplicas_ = updatedReplicas_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.currentRevision_ = currentRevision_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.updateRevision_ = updateRevision_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.collisionCount_ = collisionCount_;
if (conditionsBuilder_ == null) {
if (((bitField0_ & 0x00000100) == 0x00000100)) {
conditions_ = java.util.Collections.unmodifiableList(conditions_);
bitField0_ = (bitField0_ & ~0x00000100);
}
result.conditions_ = conditions_;
} else {
result.conditions_ = conditionsBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus.getDefaultInstance()) return this;
if (other.hasObservedGeneration()) {
setObservedGeneration(other.getObservedGeneration());
}
if (other.hasReplicas()) {
setReplicas(other.getReplicas());
}
if (other.hasReadyReplicas()) {
setReadyReplicas(other.getReadyReplicas());
}
if (other.hasCurrentReplicas()) {
setCurrentReplicas(other.getCurrentReplicas());
}
if (other.hasUpdatedReplicas()) {
setUpdatedReplicas(other.getUpdatedReplicas());
}
if (other.hasCurrentRevision()) {
bitField0_ |= 0x00000020;
currentRevision_ = other.currentRevision_;
onChanged();
}
if (other.hasUpdateRevision()) {
bitField0_ |= 0x00000040;
updateRevision_ = other.updateRevision_;
onChanged();
}
if (other.hasCollisionCount()) {
setCollisionCount(other.getCollisionCount());
}
if (conditionsBuilder_ == null) {
if (!other.conditions_.isEmpty()) {
if (conditions_.isEmpty()) {
conditions_ = other.conditions_;
bitField0_ = (bitField0_ & ~0x00000100);
} else {
ensureConditionsIsMutable();
conditions_.addAll(other.conditions_);
}
onChanged();
}
} else {
if (!other.conditions_.isEmpty()) {
if (conditionsBuilder_.isEmpty()) {
conditionsBuilder_.dispose();
conditionsBuilder_ = null;
conditions_ = other.conditions_;
bitField0_ = (bitField0_ & ~0x00000100);
conditionsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getConditionsFieldBuilder() : null;
} else {
conditionsBuilder_.addAllMessages(other.conditions_);
}
}
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private long observedGeneration_ ;
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public boolean hasObservedGeneration() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public long getObservedGeneration() {
return observedGeneration_;
}
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public Builder setObservedGeneration(long value) {
bitField0_ |= 0x00000001;
observedGeneration_ = value;
onChanged();
return this;
}
/**
*
* observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
* StatefulSet's generation, which is updated on mutation by the API Server.
* +optional
*
*
* optional int64 observedGeneration = 1;
*/
public Builder clearObservedGeneration() {
bitField0_ = (bitField0_ & ~0x00000001);
observedGeneration_ = 0L;
onChanged();
return this;
}
private int replicas_ ;
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public boolean hasReplicas() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public int getReplicas() {
return replicas_;
}
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public Builder setReplicas(int value) {
bitField0_ |= 0x00000002;
replicas_ = value;
onChanged();
return this;
}
/**
*
* replicas is the number of Pods created by the StatefulSet controller.
*
*
* optional int32 replicas = 2;
*/
public Builder clearReplicas() {
bitField0_ = (bitField0_ & ~0x00000002);
replicas_ = 0;
onChanged();
return this;
}
private int readyReplicas_ ;
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public boolean hasReadyReplicas() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public int getReadyReplicas() {
return readyReplicas_;
}
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public Builder setReadyReplicas(int value) {
bitField0_ |= 0x00000004;
readyReplicas_ = value;
onChanged();
return this;
}
/**
*
* readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
*
*
* optional int32 readyReplicas = 3;
*/
public Builder clearReadyReplicas() {
bitField0_ = (bitField0_ & ~0x00000004);
readyReplicas_ = 0;
onChanged();
return this;
}
private int currentReplicas_ ;
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public boolean hasCurrentReplicas() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public int getCurrentReplicas() {
return currentReplicas_;
}
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public Builder setCurrentReplicas(int value) {
bitField0_ |= 0x00000008;
currentReplicas_ = value;
onChanged();
return this;
}
/**
*
* currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by currentRevision.
*
*
* optional int32 currentReplicas = 4;
*/
public Builder clearCurrentReplicas() {
bitField0_ = (bitField0_ & ~0x00000008);
currentReplicas_ = 0;
onChanged();
return this;
}
private int updatedReplicas_ ;
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public boolean hasUpdatedReplicas() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public int getUpdatedReplicas() {
return updatedReplicas_;
}
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public Builder setUpdatedReplicas(int value) {
bitField0_ |= 0x00000010;
updatedReplicas_ = value;
onChanged();
return this;
}
/**
*
* updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
* indicated by updateRevision.
*
*
* optional int32 updatedReplicas = 5;
*/
public Builder clearUpdatedReplicas() {
bitField0_ = (bitField0_ & ~0x00000010);
updatedReplicas_ = 0;
onChanged();
return this;
}
private java.lang.Object currentRevision_ = "";
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public boolean hasCurrentRevision() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public java.lang.String getCurrentRevision() {
java.lang.Object ref = currentRevision_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
currentRevision_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public com.google.protobuf.ByteString
getCurrentRevisionBytes() {
java.lang.Object ref = currentRevision_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
currentRevision_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public Builder setCurrentRevision(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
currentRevision_ = value;
onChanged();
return this;
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public Builder clearCurrentRevision() {
bitField0_ = (bitField0_ & ~0x00000020);
currentRevision_ = getDefaultInstance().getCurrentRevision();
onChanged();
return this;
}
/**
*
* currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
* sequence [0,currentReplicas).
*
*
* optional string currentRevision = 6;
*/
public Builder setCurrentRevisionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
currentRevision_ = value;
onChanged();
return this;
}
private java.lang.Object updateRevision_ = "";
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public boolean hasUpdateRevision() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public java.lang.String getUpdateRevision() {
java.lang.Object ref = updateRevision_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
updateRevision_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public com.google.protobuf.ByteString
getUpdateRevisionBytes() {
java.lang.Object ref = updateRevision_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
updateRevision_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public Builder setUpdateRevision(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
updateRevision_ = value;
onChanged();
return this;
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public Builder clearUpdateRevision() {
bitField0_ = (bitField0_ & ~0x00000040);
updateRevision_ = getDefaultInstance().getUpdateRevision();
onChanged();
return this;
}
/**
*
* updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
* [replicas-updatedReplicas,replicas)
*
*
* optional string updateRevision = 7;
*/
public Builder setUpdateRevisionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
updateRevision_ = value;
onChanged();
return this;
}
private int collisionCount_ ;
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public boolean hasCollisionCount() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public int getCollisionCount() {
return collisionCount_;
}
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public Builder setCollisionCount(int value) {
bitField0_ |= 0x00000080;
collisionCount_ = value;
onChanged();
return this;
}
/**
*
* collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
* uses this field as a collision avoidance mechanism when it needs to create the name for the
* newest ControllerRevision.
* +optional
*
*
* optional int32 collisionCount = 9;
*/
public Builder clearCollisionCount() {
bitField0_ = (bitField0_ & ~0x00000080);
collisionCount_ = 0;
onChanged();
return this;
}
private java.util.List conditions_ =
java.util.Collections.emptyList();
private void ensureConditionsIsMutable() {
if (!((bitField0_ & 0x00000100) == 0x00000100)) {
conditions_ = new java.util.ArrayList(conditions_);
bitField0_ |= 0x00000100;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder> conditionsBuilder_;
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public java.util.List getConditionsList() {
if (conditionsBuilder_ == null) {
return java.util.Collections.unmodifiableList(conditions_);
} else {
return conditionsBuilder_.getMessageList();
}
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public int getConditionsCount() {
if (conditionsBuilder_ == null) {
return conditions_.size();
} else {
return conditionsBuilder_.getCount();
}
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition getConditions(int index) {
if (conditionsBuilder_ == null) {
return conditions_.get(index);
} else {
return conditionsBuilder_.getMessage(index);
}
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder setConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.set(index, value);
onChanged();
} else {
conditionsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder setConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.set(index, builderForValue.build());
onChanged();
} else {
conditionsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder addConditions(io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.add(value);
onChanged();
} else {
conditionsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder addConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition value) {
if (conditionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureConditionsIsMutable();
conditions_.add(index, value);
onChanged();
} else {
conditionsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder addConditions(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.add(builderForValue.build());
onChanged();
} else {
conditionsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder addConditions(
int index, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder builderForValue) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.add(index, builderForValue.build());
onChanged();
} else {
conditionsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder addAllConditions(
java.lang.Iterable extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition> values) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, conditions_);
onChanged();
} else {
conditionsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder clearConditions() {
if (conditionsBuilder_ == null) {
conditions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000100);
onChanged();
} else {
conditionsBuilder_.clear();
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public Builder removeConditions(int index) {
if (conditionsBuilder_ == null) {
ensureConditionsIsMutable();
conditions_.remove(index);
onChanged();
} else {
conditionsBuilder_.remove(index);
}
return this;
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder getConditionsBuilder(
int index) {
return getConditionsFieldBuilder().getBuilder(index);
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder getConditionsOrBuilder(
int index) {
if (conditionsBuilder_ == null) {
return conditions_.get(index); } else {
return conditionsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public java.util.List extends io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder>
getConditionsOrBuilderList() {
if (conditionsBuilder_ != null) {
return conditionsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(conditions_);
}
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder addConditionsBuilder() {
return getConditionsFieldBuilder().addBuilder(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.getDefaultInstance());
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder addConditionsBuilder(
int index) {
return getConditionsFieldBuilder().addBuilder(
index, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.getDefaultInstance());
}
/**
*
* Represents the latest available observations of a statefulset's current state.
* +optional
* +patchMergeKey=type
* +patchStrategy=merge
*
*
* repeated .k8s.io.api.apps.v1beta1.StatefulSetCondition conditions = 10;
*/
public java.util.List
getConditionsBuilderList() {
return getConditionsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder>
getConditionsFieldBuilder() {
if (conditionsBuilder_ == null) {
conditionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition, io.kubernetes.client.proto.V1beta1Apps.StatefulSetCondition.Builder, io.kubernetes.client.proto.V1beta1Apps.StatefulSetConditionOrBuilder>(
conditions_,
((bitField0_ & 0x00000100) == 0x00000100),
getParentForChildren(),
isClean());
conditions_ = null;
}
return conditionsBuilder_;
}
@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:k8s.io.api.apps.v1beta1.StatefulSetStatus)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSetStatus)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSetStatus parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSetStatus(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.kubernetes.client.proto.V1beta1Apps.StatefulSetStatus getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface StatefulSetUpdateStrategyOrBuilder extends
// @@protoc_insertion_point(interface_extends:k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
boolean hasType();
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
java.lang.String getType();
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
boolean hasRollingUpdate();
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getRollingUpdate();
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder getRollingUpdateOrBuilder();
}
/**
*
* StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
* controller will use to perform updates. It includes any additional parameters
* necessary to perform the update for the indicated strategy.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy}
*/
public static final class StatefulSetUpdateStrategy extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy)
StatefulSetUpdateStrategyOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatefulSetUpdateStrategy.newBuilder() to construct.
private StatefulSetUpdateStrategy(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatefulSetUpdateStrategy() {
type_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatefulSetUpdateStrategy(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
type_ = bs;
break;
}
case 18: {
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder subBuilder = null;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
subBuilder = rollingUpdate_.toBuilder();
}
rollingUpdate_ = input.readMessage(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.PARSER, extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(rollingUpdate_);
rollingUpdate_ = subBuilder.buildPartial();
}
bitField0_ |= 0x00000002;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder.class);
}
private int bitField0_;
public static final int TYPE_FIELD_NUMBER = 1;
private volatile java.lang.Object type_;
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
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 (bs.isValidUtf8()) {
type_ = s;
}
return s;
}
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ROLLINGUPDATE_FIELD_NUMBER = 2;
private io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy rollingUpdate_;
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public boolean hasRollingUpdate() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getRollingUpdate() {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance() : rollingUpdate_;
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder getRollingUpdateOrBuilder() {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance() : rollingUpdate_;
}
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) == 0x00000001)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeMessage(2, getRollingUpdate());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getRollingUpdate());
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy)) {
return super.equals(obj);
}
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy other = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy) obj;
boolean result = true;
result = result && (hasType() == other.hasType());
if (hasType()) {
result = result && getType()
.equals(other.getType());
}
result = result && (hasRollingUpdate() == other.hasRollingUpdate());
if (hasRollingUpdate()) {
result = result && getRollingUpdate()
.equals(other.getRollingUpdate());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasType()) {
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + getType().hashCode();
}
if (hasRollingUpdate()) {
hash = (37 * hash) + ROLLINGUPDATE_FIELD_NUMBER;
hash = (53 * hash) + getRollingUpdate().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy 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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy 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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy 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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy 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;
}
/**
*
* StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
* controller will use to perform updates. It includes any additional parameters
* necessary to perform the update for the indicated strategy.
*
*
* Protobuf type {@code k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy)
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.class, io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.Builder.class);
}
// Construct using io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getRollingUpdateFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
type_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = null;
} else {
rollingUpdateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.kubernetes.client.proto.V1beta1Apps.internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getDefaultInstanceForType() {
return io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance();
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy build() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy buildPartial() {
io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy result = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (rollingUpdateBuilder_ == null) {
result.rollingUpdate_ = rollingUpdate_;
} else {
result.rollingUpdate_ = rollingUpdateBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy) {
return mergeFrom((io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy other) {
if (other == io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy.getDefaultInstance()) return this;
if (other.hasType()) {
bitField0_ |= 0x00000001;
type_ = other.type_;
onChanged();
}
if (other.hasRollingUpdate()) {
mergeRollingUpdate(other.getRollingUpdate());
}
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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object type_ = "";
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public Builder setType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000001);
type_ = getDefaultInstance().getType();
onChanged();
return this;
}
/**
*
* Type indicates the type of the StatefulSetUpdateStrategy.
*
*
* optional string type = 1;
*/
public Builder setTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
private io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy rollingUpdate_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder> rollingUpdateBuilder_;
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public boolean hasRollingUpdate() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy getRollingUpdate() {
if (rollingUpdateBuilder_ == null) {
return rollingUpdate_ == null ? io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance() : rollingUpdate_;
} else {
return rollingUpdateBuilder_.getMessage();
}
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public Builder setRollingUpdate(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy value) {
if (rollingUpdateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rollingUpdate_ = value;
onChanged();
} else {
rollingUpdateBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public Builder setRollingUpdate(
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder builderForValue) {
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = builderForValue.build();
onChanged();
} else {
rollingUpdateBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public Builder mergeRollingUpdate(io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy value) {
if (rollingUpdateBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
rollingUpdate_ != null &&
rollingUpdate_ != io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance()) {
rollingUpdate_ =
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.newBuilder(rollingUpdate_).mergeFrom(value).buildPartial();
} else {
rollingUpdate_ = value;
}
onChanged();
} else {
rollingUpdateBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public Builder clearRollingUpdate() {
if (rollingUpdateBuilder_ == null) {
rollingUpdate_ = null;
onChanged();
} else {
rollingUpdateBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder getRollingUpdateBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getRollingUpdateFieldBuilder().getBuilder();
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
public io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder getRollingUpdateOrBuilder() {
if (rollingUpdateBuilder_ != null) {
return rollingUpdateBuilder_.getMessageOrBuilder();
} else {
return rollingUpdate_ == null ?
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.getDefaultInstance() : rollingUpdate_;
}
}
/**
*
* RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
*
*
* optional .k8s.io.api.apps.v1beta1.RollingUpdateStatefulSetStrategy rollingUpdate = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder>
getRollingUpdateFieldBuilder() {
if (rollingUpdateBuilder_ == null) {
rollingUpdateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategy.Builder, io.kubernetes.client.proto.V1beta1Apps.RollingUpdateStatefulSetStrategyOrBuilder>(
getRollingUpdate(),
getParentForChildren(),
isClean());
rollingUpdate_ = null;
}
return rollingUpdateBuilder_;
}
@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:k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy)
}
// @@protoc_insertion_point(class_scope:k8s.io.api.apps.v1beta1.StatefulSetUpdateStrategy)
private static final io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy();
}
public static io.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatefulSetUpdateStrategy parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatefulSetUpdateStrategy(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.kubernetes.client.proto.V1beta1Apps.StatefulSetUpdateStrategy getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_Deployment_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentList_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_Scale_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSet_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\'k8s.io/api/apps/v1beta1/generated.prot" +
"o\022\027k8s.io.api.apps.v1beta1\032\"k8s.io/api/c" +
"ore/v1/generated.proto\0324k8s.io/apimachin" +
"ery/pkg/apis/meta/v1/generated.proto\032/k8" +
"s.io/apimachinery/pkg/runtime/generated." +
"proto\0326k8s.io/apimachinery/pkg/runtime/s" +
"chema/generated.proto\0323k8s.io/apimachine" +
"ry/pkg/util/intstr/generated.proto\"\247\001\n\022C" +
"ontrollerRevision\022B\n\010metadata\030\001 \001(\01320.k8" +
"s.io.apimachinery.pkg.apis.meta.v1.Objec" +
"tMeta\022;\n\004data\030\002 \001(\0132-.k8s.io.apimachiner" +
"y.pkg.runtime.RawExtension\022\020\n\010revision\030\003" +
" \001(\003\"\226\001\n\026ControllerRevisionList\022@\n\010metad" +
"ata\030\001 \001(\0132..k8s.io.apimachinery.pkg.apis" +
".meta.v1.ListMeta\022:\n\005items\030\002 \003(\0132+.k8s.i" +
"o.api.apps.v1beta1.ControllerRevision\"\302\001" +
"\n\nDeployment\022B\n\010metadata\030\001 \001(\01320.k8s.io." +
"apimachinery.pkg.apis.meta.v1.ObjectMeta" +
"\0225\n\004spec\030\002 \001(\0132\'.k8s.io.api.apps.v1beta1" +
".DeploymentSpec\0229\n\006status\030\003 \001(\0132).k8s.io" +
".api.apps.v1beta1.DeploymentStatus\"\340\001\n\023D" +
"eploymentCondition\022\014\n\004type\030\001 \001(\t\022\016\n\006stat" +
"us\030\002 \001(\t\022B\n\016lastUpdateTime\030\006 \001(\0132*.k8s.i" +
"o.apimachinery.pkg.apis.meta.v1.Time\022F\n\022" +
"lastTransitionTime\030\007 \001(\0132*.k8s.io.apimac" +
"hinery.pkg.apis.meta.v1.Time\022\016\n\006reason\030\004" +
" \001(\t\022\017\n\007message\030\005 \001(\t\"\206\001\n\016DeploymentList" +
"\022@\n\010metadata\030\001 \001(\0132..k8s.io.apimachinery" +
".pkg.apis.meta.v1.ListMeta\0222\n\005items\030\002 \003(" +
"\0132#.k8s.io.api.apps.v1beta1.Deployment\"\373" +
"\001\n\022DeploymentRollback\022\014\n\004name\030\001 \001(\t\022_\n\022u" +
"pdatedAnnotations\030\002 \003(\0132C.k8s.io.api.app" +
"s.v1beta1.DeploymentRollback.UpdatedAnno" +
"tationsEntry\022;\n\nrollbackTo\030\003 \001(\0132\'.k8s.i" +
"o.api.apps.v1beta1.RollbackConfig\0329\n\027Upd" +
"atedAnnotationsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" +
"ue\030\002 \001(\t:\0028\001\"\204\003\n\016DeploymentSpec\022\020\n\010repli" +
"cas\030\001 \001(\005\022E\n\010selector\030\002 \001(\01323.k8s.io.api" +
"machinery.pkg.apis.meta.v1.LabelSelector" +
"\0225\n\010template\030\003 \001(\0132#.k8s.io.api.core.v1." +
"PodTemplateSpec\022=\n\010strategy\030\004 \001(\0132+.k8s." +
"io.api.apps.v1beta1.DeploymentStrategy\022\027" +
"\n\017minReadySeconds\030\005 \001(\005\022\034\n\024revisionHisto" +
"ryLimit\030\006 \001(\005\022\016\n\006paused\030\007 \001(\010\022;\n\nrollbac" +
"kTo\030\010 \001(\0132\'.k8s.io.api.apps.v1beta1.Roll" +
"backConfig\022\037\n\027progressDeadlineSeconds\030\t " +
"\001(\005\"\202\002\n\020DeploymentStatus\022\032\n\022observedGene" +
"ration\030\001 \001(\003\022\020\n\010replicas\030\002 \001(\005\022\027\n\017update" +
"dReplicas\030\003 \001(\005\022\025\n\rreadyReplicas\030\007 \001(\005\022\031" +
"\n\021availableReplicas\030\004 \001(\005\022\033\n\023unavailable" +
"Replicas\030\005 \001(\005\022@\n\nconditions\030\006 \003(\0132,.k8s" +
".io.api.apps.v1beta1.DeploymentCondition" +
"\022\026\n\016collisionCount\030\010 \001(\005\"k\n\022DeploymentSt" +
"rategy\022\014\n\004type\030\001 \001(\t\022G\n\rrollingUpdate\030\002 " +
"\001(\01320.k8s.io.api.apps.v1beta1.RollingUpd" +
"ateDeployment\"\"\n\016RollbackConfig\022\020\n\010revis" +
"ion\030\001 \001(\003\"\247\001\n\027RollingUpdateDeployment\022H\n" +
"\016maxUnavailable\030\001 \001(\01320.k8s.io.apimachin" +
"ery.pkg.util.intstr.IntOrString\022B\n\010maxSu" +
"rge\030\002 \001(\01320.k8s.io.apimachinery.pkg.util" +
".intstr.IntOrString\"5\n RollingUpdateStat" +
"efulSetStrategy\022\021\n\tpartition\030\001 \001(\005\"\263\001\n\005S" +
"cale\022B\n\010metadata\030\001 \001(\01320.k8s.io.apimachi" +
"nery.pkg.apis.meta.v1.ObjectMeta\0220\n\004spec" +
"\030\002 \001(\0132\".k8s.io.api.apps.v1beta1.ScaleSp" +
"ec\0224\n\006status\030\003 \001(\0132$.k8s.io.api.apps.v1b" +
"eta1.ScaleStatus\"\035\n\tScaleSpec\022\020\n\010replica" +
"s\030\001 \001(\005\"\256\001\n\013ScaleStatus\022\020\n\010replicas\030\001 \001(" +
"\005\022D\n\010selector\030\002 \003(\01322.k8s.io.api.apps.v1" +
"beta1.ScaleStatus.SelectorEntry\022\026\n\016targe" +
"tSelector\030\003 \001(\t\032/\n\rSelectorEntry\022\013\n\003key\030" +
"\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\305\001\n\013StatefulSet" +
"\022B\n\010metadata\030\001 \001(\01320.k8s.io.apimachinery" +
".pkg.apis.meta.v1.ObjectMeta\0226\n\004spec\030\002 \001" +
"(\0132(.k8s.io.api.apps.v1beta1.StatefulSet" +
"Spec\022:\n\006status\030\003 \001(\0132*.k8s.io.api.apps.v" +
"1beta1.StatefulSetStatus\"\235\001\n\024StatefulSet" +
"Condition\022\014\n\004type\030\001 \001(\t\022\016\n\006status\030\002 \001(\t\022" +
"F\n\022lastTransitionTime\030\003 \001(\0132*.k8s.io.api" +
"machinery.pkg.apis.meta.v1.Time\022\016\n\006reaso" +
"n\030\004 \001(\t\022\017\n\007message\030\005 \001(\t\"\210\001\n\017StatefulSet" +
"List\022@\n\010metadata\030\001 \001(\0132..k8s.io.apimachi" +
"nery.pkg.apis.meta.v1.ListMeta\0223\n\005items\030" +
"\002 \003(\0132$.k8s.io.api.apps.v1beta1.Stateful" +
"Set\"\206\003\n\017StatefulSetSpec\022\020\n\010replicas\030\001 \001(" +
"\005\022E\n\010selector\030\002 \001(\01323.k8s.io.apimachiner" +
"y.pkg.apis.meta.v1.LabelSelector\0225\n\010temp" +
"late\030\003 \001(\0132#.k8s.io.api.core.v1.PodTempl" +
"ateSpec\022G\n\024volumeClaimTemplates\030\004 \003(\0132)." +
"k8s.io.api.core.v1.PersistentVolumeClaim" +
"\022\023\n\013serviceName\030\005 \001(\t\022\033\n\023podManagementPo" +
"licy\030\006 \001(\t\022J\n\016updateStrategy\030\007 \001(\01322.k8s" +
".io.api.apps.v1beta1.StatefulSetUpdateSt" +
"rategy\022\034\n\024revisionHistoryLimit\030\010 \001(\005\"\226\002\n" +
"\021StatefulSetStatus\022\032\n\022observedGeneration" +
"\030\001 \001(\003\022\020\n\010replicas\030\002 \001(\005\022\025\n\rreadyReplica" +
"s\030\003 \001(\005\022\027\n\017currentReplicas\030\004 \001(\005\022\027\n\017upda" +
"tedReplicas\030\005 \001(\005\022\027\n\017currentRevision\030\006 \001" +
"(\t\022\026\n\016updateRevision\030\007 \001(\t\022\026\n\016collisionC" +
"ount\030\t \001(\005\022A\n\nconditions\030\n \003(\0132-.k8s.io." +
"api.apps.v1beta1.StatefulSetCondition\"{\n" +
"\031StatefulSetUpdateStrategy\022\014\n\004type\030\001 \001(\t" +
"\022P\n\rrollingUpdate\030\002 \001(\01329.k8s.io.api.app" +
"s.v1beta1.RollingUpdateStatefulSetStrate" +
"gyB2\n\032io.kubernetes.client.protoB\013V1beta" +
"1AppsZ\007v1beta1"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() {
public com.google.protobuf.ExtensionRegistry assignDescriptors(
com.google.protobuf.Descriptors.FileDescriptor root) {
descriptor = root;
return null;
}
};
com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
io.kubernetes.client.proto.V1.getDescriptor(),
io.kubernetes.client.proto.Meta.getDescriptor(),
io.kubernetes.client.proto.Runtime.getDescriptor(),
io.kubernetes.client.proto.RuntimeSchema.getDescriptor(),
io.kubernetes.client.proto.IntStr.getDescriptor(),
}, assigner);
internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_ControllerRevision_descriptor,
new java.lang.String[] { "Metadata", "Data", "Revision", });
internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_ControllerRevisionList_descriptor,
new java.lang.String[] { "Metadata", "Items", });
internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_k8s_io_api_apps_v1beta1_Deployment_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_Deployment_descriptor,
new java.lang.String[] { "Metadata", "Spec", "Status", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentCondition_descriptor,
new java.lang.String[] { "Type", "Status", "LastUpdateTime", "LastTransitionTime", "Reason", "Message", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor =
getDescriptor().getMessageTypes().get(4);
internal_static_k8s_io_api_apps_v1beta1_DeploymentList_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentList_descriptor,
new java.lang.String[] { "Metadata", "Items", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor =
getDescriptor().getMessageTypes().get(5);
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor,
new java.lang.String[] { "Name", "UpdatedAnnotations", "RollbackTo", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_descriptor =
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_descriptor.getNestedTypes().get(0);
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentRollback_UpdatedAnnotationsEntry_descriptor,
new java.lang.String[] { "Key", "Value", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor =
getDescriptor().getMessageTypes().get(6);
internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentSpec_descriptor,
new java.lang.String[] { "Replicas", "Selector", "Template", "Strategy", "MinReadySeconds", "RevisionHistoryLimit", "Paused", "RollbackTo", "ProgressDeadlineSeconds", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor =
getDescriptor().getMessageTypes().get(7);
internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentStatus_descriptor,
new java.lang.String[] { "ObservedGeneration", "Replicas", "UpdatedReplicas", "ReadyReplicas", "AvailableReplicas", "UnavailableReplicas", "Conditions", "CollisionCount", });
internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor =
getDescriptor().getMessageTypes().get(8);
internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_DeploymentStrategy_descriptor,
new java.lang.String[] { "Type", "RollingUpdate", });
internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor =
getDescriptor().getMessageTypes().get(9);
internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_RollbackConfig_descriptor,
new java.lang.String[] { "Revision", });
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor =
getDescriptor().getMessageTypes().get(10);
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateDeployment_descriptor,
new java.lang.String[] { "MaxUnavailable", "MaxSurge", });
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor =
getDescriptor().getMessageTypes().get(11);
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_RollingUpdateStatefulSetStrategy_descriptor,
new java.lang.String[] { "Partition", });
internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor =
getDescriptor().getMessageTypes().get(12);
internal_static_k8s_io_api_apps_v1beta1_Scale_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_Scale_descriptor,
new java.lang.String[] { "Metadata", "Spec", "Status", });
internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor =
getDescriptor().getMessageTypes().get(13);
internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_ScaleSpec_descriptor,
new java.lang.String[] { "Replicas", });
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor =
getDescriptor().getMessageTypes().get(14);
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor,
new java.lang.String[] { "Replicas", "Selector", "TargetSelector", });
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_descriptor =
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_descriptor.getNestedTypes().get(0);
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_ScaleStatus_SelectorEntry_descriptor,
new java.lang.String[] { "Key", "Value", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor =
getDescriptor().getMessageTypes().get(15);
internal_static_k8s_io_api_apps_v1beta1_StatefulSet_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSet_descriptor,
new java.lang.String[] { "Metadata", "Spec", "Status", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor =
getDescriptor().getMessageTypes().get(16);
internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSetCondition_descriptor,
new java.lang.String[] { "Type", "Status", "LastTransitionTime", "Reason", "Message", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor =
getDescriptor().getMessageTypes().get(17);
internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSetList_descriptor,
new java.lang.String[] { "Metadata", "Items", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor =
getDescriptor().getMessageTypes().get(18);
internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSetSpec_descriptor,
new java.lang.String[] { "Replicas", "Selector", "Template", "VolumeClaimTemplates", "ServiceName", "PodManagementPolicy", "UpdateStrategy", "RevisionHistoryLimit", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor =
getDescriptor().getMessageTypes().get(19);
internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSetStatus_descriptor,
new java.lang.String[] { "ObservedGeneration", "Replicas", "ReadyReplicas", "CurrentReplicas", "UpdatedReplicas", "CurrentRevision", "UpdateRevision", "CollisionCount", "Conditions", });
internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor =
getDescriptor().getMessageTypes().get(20);
internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_k8s_io_api_apps_v1beta1_StatefulSetUpdateStrategy_descriptor,
new java.lang.String[] { "Type", "RollingUpdate", });
io.kubernetes.client.proto.V1.getDescriptor();
io.kubernetes.client.proto.Meta.getDescriptor();
io.kubernetes.client.proto.Runtime.getDescriptor();
io.kubernetes.client.proto.RuntimeSchema.getDescriptor();
io.kubernetes.client.proto.IntStr.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy