Package flyteidl.admin
Interface Common.LabelsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.Labels,Common.Labels.Builder
- Enclosing class:
- Common
public static interface Common.LabelsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsValues(String key)Map of custom labels to be applied to the execution resource.Map<String,String>getValues()Deprecated.intgetValuesCount()Map of custom labels to be applied to the execution resource.Map<String,String>getValuesMap()Map of custom labels to be applied to the execution resource.StringgetValuesOrDefault(String key, String defaultValue)Map of custom labels to be applied to the execution resource.StringgetValuesOrThrow(String key)Map of custom labels to be applied to the execution resource.-
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()
Map of custom labels to be applied to the execution resource.
map<string, string> values = 1;
-
containsValues
boolean containsValues(String key)
Map of custom labels to be applied to the execution resource.
map<string, string> values = 1;
-
getValues
@Deprecated Map<String,String> getValues()
Deprecated.UsegetValuesMap()instead.
-
getValuesMap
Map<String,String> getValuesMap()
Map of custom labels to be applied to the execution resource.
map<string, string> values = 1;
-
getValuesOrDefault
String getValuesOrDefault(String key, String defaultValue)
Map of custom labels to be applied to the execution resource.
map<string, string> values = 1;
-
-