Package org.yamcs.protobuf
Interface ReconfigureInstanceRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReconfigureInstanceRequest,ReconfigureInstanceRequest.Builder
public interface ReconfigureInstanceRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsLabels(String key)Labels assigned to this instance.booleancontainsTemplateArgs(String key)Arguments for substitution in the template definition.StringgetInstance()Yamcs instance name.com.google.protobuf.ByteStringgetInstanceBytes()Yamcs instance name.Map<String,String>getLabels()Deprecated.intgetLabelsCount()Labels assigned to this instance.Map<String,String>getLabelsMap()Labels assigned to this instance.StringgetLabelsOrDefault(String key, String defaultValue)Labels assigned to this instance.StringgetLabelsOrThrow(String key)Labels assigned to this instance.Map<String,String>getTemplateArgs()Deprecated.intgetTemplateArgsCount()Arguments for substitution in the template definition.Map<String,String>getTemplateArgsMap()Arguments for substitution in the template definition.StringgetTemplateArgsOrDefault(String key, String defaultValue)Arguments for substitution in the template definition.StringgetTemplateArgsOrThrow(String key)Arguments for substitution in the template definition.booleanhasInstance()Yamcs instance name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInstance
boolean hasInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstance
String getInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
Yamcs instance name.
optional string instance = 1;
-
getTemplateArgsCount
int getTemplateArgsCount()
Arguments for substitution in the template definition. Each entry is keyed by the argument name. The value must be a string.
map<string, string> templateArgs = 2;
-
containsTemplateArgs
boolean containsTemplateArgs(String key)
Arguments for substitution in the template definition. Each entry is keyed by the argument name. The value must be a string.
map<string, string> templateArgs = 2;
-
getTemplateArgs
@Deprecated Map<String,String> getTemplateArgs()
Deprecated.UsegetTemplateArgsMap()instead.
-
getTemplateArgsMap
Map<String,String> getTemplateArgsMap()
Arguments for substitution in the template definition. Each entry is keyed by the argument name. The value must be a string.
map<string, string> templateArgs = 2;
-
getTemplateArgsOrDefault
String getTemplateArgsOrDefault(String key, String defaultValue)
Arguments for substitution in the template definition. Each entry is keyed by the argument name. The value must be a string.
map<string, string> templateArgs = 2;
-
getTemplateArgsOrThrow
String getTemplateArgsOrThrow(String key)
Arguments for substitution in the template definition. Each entry is keyed by the argument name. The value must be a string.
map<string, string> templateArgs = 2;
-
getLabelsCount
int getLabelsCount()
Labels assigned to this instance. Each entry is keyed by the tag name of the label. The value represent the label value for that tag.
map<string, string> labels = 3;
-
containsLabels
boolean containsLabels(String key)
Labels assigned to this instance. Each entry is keyed by the tag name of the label. The value represent the label value for that tag.
map<string, string> labels = 3;
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()instead.
-
getLabelsMap
Map<String,String> getLabelsMap()
Labels assigned to this instance. Each entry is keyed by the tag name of the label. The value represent the label value for that tag.
map<string, string> labels = 3;
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
Labels assigned to this instance. Each entry is keyed by the tag name of the label. The value represent the label value for that tag.
map<string, string> labels = 3;
-
-