Package com.google.cloud.deploy.v1
Interface DeployParametersOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeployParameters,DeployParameters.Builder
public interface DeployParametersOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsMatchTargetLabels(String key)Optional.booleancontainsValues(String key)Required.Map<String,String>getMatchTargetLabels()Deprecated.intgetMatchTargetLabelsCount()Optional.Map<String,String>getMatchTargetLabelsMap()Optional.StringgetMatchTargetLabelsOrDefault(String key, String defaultValue)Optional.StringgetMatchTargetLabelsOrThrow(String key)Optional.Map<String,String>getValues()Deprecated.intgetValuesCount()Required.Map<String,String>getValuesMap()Required.StringgetValuesOrDefault(String key, String defaultValue)Required.StringgetValuesOrThrow(String key)Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesCount
int getValuesCount()
Required. Values are deploy parameters in key-value pairs.
map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
-
containsValues
boolean containsValues(String key)
Required. Values are deploy parameters in key-value pairs.
map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
-
getValues
@Deprecated Map<String,String> getValues()
Deprecated.UsegetValuesMap()instead.
-
getValuesMap
Map<String,String> getValuesMap()
Required. Values are deploy parameters in key-value pairs.
map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
-
getValuesOrDefault
String getValuesOrDefault(String key, String defaultValue)
Required. Values are deploy parameters in key-value pairs.
map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
-
getValuesOrThrow
String getValuesOrThrow(String key)
Required. Values are deploy parameters in key-value pairs.
map<string, string> values = 1 [(.google.api.field_behavior) = REQUIRED];
-
getMatchTargetLabelsCount
int getMatchTargetLabelsCount()
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];
-
containsMatchTargetLabels
boolean containsMatchTargetLabels(String key)
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];
-
getMatchTargetLabels
@Deprecated Map<String,String> getMatchTargetLabels()
Deprecated.UsegetMatchTargetLabelsMap()instead.
-
getMatchTargetLabelsMap
Map<String,String> 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];
-
getMatchTargetLabelsOrDefault
String getMatchTargetLabelsOrDefault(String key, String 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];
-
getMatchTargetLabelsOrThrow
String getMatchTargetLabelsOrThrow(String key)
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];
-
-