Package flyteidl.admin
Interface Common.NamedEntityIdentifierListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.NamedEntityIdentifierList,Common.NamedEntityIdentifierList.Builder
- Enclosing class:
- Common
public static interface Common.NamedEntityIdentifierListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Common.NamedEntityIdentifiergetEntities(int index)A list of identifiers.intgetEntitiesCount()A list of identifiers.List<Common.NamedEntityIdentifier>getEntitiesList()A list of identifiers.Common.NamedEntityIdentifierOrBuildergetEntitiesOrBuilder(int index)A list of identifiers.List<? extends Common.NamedEntityIdentifierOrBuilder>getEntitiesOrBuilderList()A list of identifiers.StringgetToken()In the case of multiple pages of results, the server-provided token can be used to fetch the next page in a query.com.google.protobuf.ByteStringgetTokenBytes()In the case of multiple pages of results, the server-provided token can be used to fetch the next page in a query.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntitiesList
List<Common.NamedEntityIdentifier> getEntitiesList()
A list of identifiers.
repeated .flyteidl.admin.NamedEntityIdentifier entities = 1;
-
getEntities
Common.NamedEntityIdentifier getEntities(int index)
A list of identifiers.
repeated .flyteidl.admin.NamedEntityIdentifier entities = 1;
-
getEntitiesCount
int getEntitiesCount()
A list of identifiers.
repeated .flyteidl.admin.NamedEntityIdentifier entities = 1;
-
getEntitiesOrBuilderList
List<? extends Common.NamedEntityIdentifierOrBuilder> getEntitiesOrBuilderList()
A list of identifiers.
repeated .flyteidl.admin.NamedEntityIdentifier entities = 1;
-
getEntitiesOrBuilder
Common.NamedEntityIdentifierOrBuilder getEntitiesOrBuilder(int index)
A list of identifiers.
repeated .flyteidl.admin.NamedEntityIdentifier entities = 1;
-
getToken
String getToken()
In the case of multiple pages of results, the server-provided token can be used to fetch the next page in a query. If there are no more results, this value will be empty.
string token = 2;- Returns:
- The token.
-
getTokenBytes
com.google.protobuf.ByteString getTokenBytes()
In the case of multiple pages of results, the server-provided token can be used to fetch the next page in a query. If there are no more results, this value will be empty.
string token = 2;- Returns:
- The bytes for token.
-
-