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 boolean
containsMatchTargetLabels(String key)
Optional.boolean
containsValues(String key)
Required.Map<String,String>
getMatchTargetLabels()
Deprecated.int
getMatchTargetLabelsCount()
Optional.Map<String,String>
getMatchTargetLabelsMap()
Optional.String
getMatchTargetLabelsOrDefault(String key, String defaultValue)
Optional.String
getMatchTargetLabelsOrThrow(String key)
Optional.Map<String,String>
getValues()
Deprecated.int
getValuesCount()
Required.Map<String,String>
getValuesMap()
Required.String
getValuesOrDefault(String key, String defaultValue)
Required.String
getValuesOrThrow(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];
-
-