com.google.cloud.deploy.v1.DeployParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Proto library for google-cloud-deploy
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/deploy/v1/cloud_deploy.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.deploy.v1;
/**
*
*
*
* DeployParameters contains deploy parameters information.
*
*
* Protobuf type {@code google.cloud.deploy.v1.DeployParameters}
*/
public final class DeployParameters extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.deploy.v1.DeployParameters)
DeployParametersOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeployParameters.newBuilder() to construct.
private DeployParameters(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeployParameters() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new DeployParameters();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection(
int number) {
switch (number) {
case 1:
return internalGetValues();
case 2:
return internalGetMatchTargetLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.deploy.v1.DeployParameters.class,
com.google.cloud.deploy.v1.DeployParameters.Builder.class);
}
public static final int VALUES_FIELD_NUMBER = 1;
private static final class ValuesDefaultEntryHolder {
static final com.google.protobuf.MapEntry defaultEntry =
com.google.protobuf.MapEntry.newDefaultInstance(
com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_ValuesEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
@SuppressWarnings("serial")
private com.google.protobuf.MapField values_;
private com.google.protobuf.MapField internalGetValues() {
if (values_ == null) {
return com.google.protobuf.MapField.emptyMapField(ValuesDefaultEntryHolder.defaultEntry);
}
return values_;
}
public int getValuesCount() {
return internalGetValues().getMap().size();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public boolean containsValues(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetValues().getMap().containsKey(key);
}
/** Use {@link #getValuesMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getValues() {
return getValuesMap();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.util.Map getValuesMap() {
return internalGetValues().getMap();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public /* nullable */ java.lang.String getValuesOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetValues().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.lang.String getValuesOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetValues().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int MATCH_TARGET_LABELS_FIELD_NUMBER = 2;
private static final class MatchTargetLabelsDefaultEntryHolder {
static final com.google.protobuf.MapEntry defaultEntry =
com.google.protobuf.MapEntry.newDefaultInstance(
com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_MatchTargetLabelsEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
@SuppressWarnings("serial")
private com.google.protobuf.MapField matchTargetLabels_;
private com.google.protobuf.MapField
internalGetMatchTargetLabels() {
if (matchTargetLabels_ == null) {
return com.google.protobuf.MapField.emptyMapField(
MatchTargetLabelsDefaultEntryHolder.defaultEntry);
}
return matchTargetLabels_;
}
public int getMatchTargetLabelsCount() {
return internalGetMatchTargetLabels().getMap().size();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public boolean containsMatchTargetLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetMatchTargetLabels().getMap().containsKey(key);
}
/** Use {@link #getMatchTargetLabelsMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMatchTargetLabels() {
return getMatchTargetLabelsMap();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.util.Map getMatchTargetLabelsMap() {
return internalGetMatchTargetLabels().getMap();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public /* nullable */ java.lang.String getMatchTargetLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetMatchTargetLabels().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.lang.String getMatchTargetLabelsOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetMatchTargetLabels().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
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 {
com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output, internalGetValues(), ValuesDefaultEntryHolder.defaultEntry, 1);
com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output,
internalGetMatchTargetLabels(),
MatchTargetLabelsDefaultEntryHolder.defaultEntry,
2);
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (java.util.Map.Entry entry :
internalGetValues().getMap().entrySet()) {
com.google.protobuf.MapEntry values__ =
ValuesDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, values__);
}
for (java.util.Map.Entry entry :
internalGetMatchTargetLabels().getMap().entrySet()) {
com.google.protobuf.MapEntry matchTargetLabels__ =
MatchTargetLabelsDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, matchTargetLabels__);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.deploy.v1.DeployParameters)) {
return super.equals(obj);
}
com.google.cloud.deploy.v1.DeployParameters other =
(com.google.cloud.deploy.v1.DeployParameters) obj;
if (!internalGetValues().equals(other.internalGetValues())) return false;
if (!internalGetMatchTargetLabels().equals(other.internalGetMatchTargetLabels())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (!internalGetValues().getMap().isEmpty()) {
hash = (37 * hash) + VALUES_FIELD_NUMBER;
hash = (53 * hash) + internalGetValues().hashCode();
}
if (!internalGetMatchTargetLabels().getMap().isEmpty()) {
hash = (37 * hash) + MATCH_TARGET_LABELS_FIELD_NUMBER;
hash = (53 * hash) + internalGetMatchTargetLabels().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.deploy.v1.DeployParameters parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployParameters 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 com.google.cloud.deploy.v1.DeployParameters parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployParameters 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 com.google.cloud.deploy.v1.DeployParameters parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployParameters 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(com.google.cloud.deploy.v1.DeployParameters 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;
}
/**
*
*
*
* DeployParameters contains deploy parameters information.
*
*
* Protobuf type {@code google.cloud.deploy.v1.DeployParameters}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.deploy.v1.DeployParameters)
com.google.cloud.deploy.v1.DeployParametersOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection(
int number) {
switch (number) {
case 1:
return internalGetValues();
case 2:
return internalGetMatchTargetLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection(
int number) {
switch (number) {
case 1:
return internalGetMutableValues();
case 2:
return internalGetMutableMatchTargetLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.deploy.v1.DeployParameters.class,
com.google.cloud.deploy.v1.DeployParameters.Builder.class);
}
// Construct using com.google.cloud.deploy.v1.DeployParameters.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
internalGetMutableValues().clear();
internalGetMutableMatchTargetLabels().clear();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.deploy.v1.CloudDeployProto
.internal_static_google_cloud_deploy_v1_DeployParameters_descriptor;
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployParameters getDefaultInstanceForType() {
return com.google.cloud.deploy.v1.DeployParameters.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployParameters build() {
com.google.cloud.deploy.v1.DeployParameters result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployParameters buildPartial() {
com.google.cloud.deploy.v1.DeployParameters result =
new com.google.cloud.deploy.v1.DeployParameters(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.deploy.v1.DeployParameters result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.values_ = internalGetValues();
result.values_.makeImmutable();
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.matchTargetLabels_ = internalGetMatchTargetLabels();
result.matchTargetLabels_.makeImmutable();
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.deploy.v1.DeployParameters) {
return mergeFrom((com.google.cloud.deploy.v1.DeployParameters) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.deploy.v1.DeployParameters other) {
if (other == com.google.cloud.deploy.v1.DeployParameters.getDefaultInstance()) return this;
internalGetMutableValues().mergeFrom(other.internalGetValues());
bitField0_ |= 0x00000001;
internalGetMutableMatchTargetLabels().mergeFrom(other.internalGetMatchTargetLabels());
bitField0_ |= 0x00000002;
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
com.google.protobuf.MapEntry values__ =
input.readMessage(
ValuesDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
internalGetMutableValues()
.getMutableMap()
.put(values__.getKey(), values__.getValue());
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
com.google.protobuf.MapEntry
matchTargetLabels__ =
input.readMessage(
MatchTargetLabelsDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
internalGetMutableMatchTargetLabels()
.getMutableMap()
.put(matchTargetLabels__.getKey(), matchTargetLabels__.getValue());
bitField0_ |= 0x00000002;
break;
} // case 18
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.MapField values_;
private com.google.protobuf.MapField internalGetValues() {
if (values_ == null) {
return com.google.protobuf.MapField.emptyMapField(ValuesDefaultEntryHolder.defaultEntry);
}
return values_;
}
private com.google.protobuf.MapField
internalGetMutableValues() {
if (values_ == null) {
values_ = com.google.protobuf.MapField.newMapField(ValuesDefaultEntryHolder.defaultEntry);
}
if (!values_.isMutable()) {
values_ = values_.copy();
}
bitField0_ |= 0x00000001;
onChanged();
return values_;
}
public int getValuesCount() {
return internalGetValues().getMap().size();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public boolean containsValues(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetValues().getMap().containsKey(key);
}
/** Use {@link #getValuesMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getValues() {
return getValuesMap();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.util.Map getValuesMap() {
return internalGetValues().getMap();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public /* nullable */ java.lang.String getValuesOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetValues().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.lang.String getValuesOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetValues().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearValues() {
bitField0_ = (bitField0_ & ~0x00000001);
internalGetMutableValues().getMutableMap().clear();
return this;
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder removeValues(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
internalGetMutableValues().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableValues() {
bitField0_ |= 0x00000001;
return internalGetMutableValues().getMutableMap();
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder putValues(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new NullPointerException("map key");
}
if (value == null) {
throw new NullPointerException("map value");
}
internalGetMutableValues().getMutableMap().put(key, value);
bitField0_ |= 0x00000001;
return this;
}
/**
*
*
*
* Required. Values are deploy parameters in key-value pairs.
*
*
* map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder putAllValues(java.util.Map values) {
internalGetMutableValues().getMutableMap().putAll(values);
bitField0_ |= 0x00000001;
return this;
}
private com.google.protobuf.MapField matchTargetLabels_;
private com.google.protobuf.MapField
internalGetMatchTargetLabels() {
if (matchTargetLabels_ == null) {
return com.google.protobuf.MapField.emptyMapField(
MatchTargetLabelsDefaultEntryHolder.defaultEntry);
}
return matchTargetLabels_;
}
private com.google.protobuf.MapField
internalGetMutableMatchTargetLabels() {
if (matchTargetLabels_ == null) {
matchTargetLabels_ =
com.google.protobuf.MapField.newMapField(
MatchTargetLabelsDefaultEntryHolder.defaultEntry);
}
if (!matchTargetLabels_.isMutable()) {
matchTargetLabels_ = matchTargetLabels_.copy();
}
bitField0_ |= 0x00000002;
onChanged();
return matchTargetLabels_;
}
public int getMatchTargetLabelsCount() {
return internalGetMatchTargetLabels().getMap().size();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public boolean containsMatchTargetLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetMatchTargetLabels().getMap().containsKey(key);
}
/** Use {@link #getMatchTargetLabelsMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMatchTargetLabels() {
return getMatchTargetLabelsMap();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.util.Map getMatchTargetLabelsMap() {
return internalGetMatchTargetLabels().getMap();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public /* nullable */ java.lang.String getMatchTargetLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map =
internalGetMatchTargetLabels().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.lang.String getMatchTargetLabelsOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map =
internalGetMatchTargetLabels().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearMatchTargetLabels() {
bitField0_ = (bitField0_ & ~0x00000002);
internalGetMutableMatchTargetLabels().getMutableMap().clear();
return this;
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder removeMatchTargetLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
internalGetMutableMatchTargetLabels().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableMatchTargetLabels() {
bitField0_ |= 0x00000002;
return internalGetMutableMatchTargetLabels().getMutableMap();
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder putMatchTargetLabels(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new NullPointerException("map key");
}
if (value == null) {
throw new NullPointerException("map value");
}
internalGetMutableMatchTargetLabels().getMutableMap().put(key, value);
bitField0_ |= 0x00000002;
return this;
}
/**
*
*
*
* Optional. Deploy parameters are applied to targets with match labels.
* If unspecified, deploy parameters are applied to all targets (including
* child targets of a multi-target).
*
*
*
* map<string, string> match_target_labels = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder putAllMatchTargetLabels(
java.util.Map values) {
internalGetMutableMatchTargetLabels().getMutableMap().putAll(values);
bitField0_ |= 0x00000002;
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:google.cloud.deploy.v1.DeployParameters)
}
// @@protoc_insertion_point(class_scope:google.cloud.deploy.v1.DeployParameters)
private static final com.google.cloud.deploy.v1.DeployParameters DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.deploy.v1.DeployParameters();
}
public static com.google.cloud.deploy.v1.DeployParameters getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeployParameters parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployParameters getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}