Package org.yamcs.protobuf
Interface GetArchivedParametersInfoRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetArchivedParametersInfoRequest,GetArchivedParametersInfoRequest.Builder
public interface GetArchivedParametersInfoRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetInstance()optional string instance = 1;com.google.protobuf.ByteStringgetInstanceBytes()optional string instance = 1;intgetLimit()The maximum number of returned parameters.StringgetQ()The search keywords.com.google.protobuf.ByteStringgetQBytes()The search keywords.StringgetSystem()List only direct child parameters of the specified system.com.google.protobuf.ByteStringgetSystemBytes()List only direct child parameters of the specified system.booleanhasInstance()optional string instance = 1;booleanhasLimit()The maximum number of returned parameters.booleanhasQ()The search keywords.booleanhasSystem()List only direct child parameters of the specified system.-
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()
optional string instance = 1;
-
getInstance
String getInstance()
optional string instance = 1;
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
optional string instance = 1;
-
hasQ
boolean hasQ()
The search keywords.
optional string q = 2;
-
getQ
String getQ()
The search keywords.
optional string q = 2;
-
getQBytes
com.google.protobuf.ByteString getQBytes()
The search keywords.
optional string q = 2;
-
hasSystem
boolean hasSystem()
List only direct child parameters of the specified system. Only the parameters whose fully qualified name start with system will be returned. When ``system`` and ``q`` are used together, the q search will be matched on the parameters filtered by system.
optional string system = 3;
-
getSystem
String getSystem()
List only direct child parameters of the specified system. Only the parameters whose fully qualified name start with system will be returned. When ``system`` and ``q`` are used together, the q search will be matched on the parameters filtered by system.
optional string system = 3;
-
getSystemBytes
com.google.protobuf.ByteString getSystemBytes()
List only direct child parameters of the specified system. Only the parameters whose fully qualified name start with system will be returned. When ``system`` and ``q`` are used together, the q search will be matched on the parameters filtered by system.
optional string system = 3;
-
hasLimit
boolean hasLimit()
The maximum number of returned parameters. Choose this value too high and you risk hitting the maximum response size limit enforced by the server. Default: ``100``
optional int32 limit = 7;
-
getLimit
int getLimit()
The maximum number of returned parameters. Choose this value too high and you risk hitting the maximum response size limit enforced by the server. Default: ``100``
optional int32 limit = 7;
-
-