Package flyteidl.admin
Interface WorkflowOuterClass.WorkflowListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkflowOuterClass.WorkflowList,WorkflowOuterClass.WorkflowList.Builder
- Enclosing class:
- WorkflowOuterClass
public static interface WorkflowOuterClass.WorkflowListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.WorkflowOuterClass.WorkflowgetWorkflows(int index)A list of workflows returned based on the request.intgetWorkflowsCount()A list of workflows returned based on the request.List<WorkflowOuterClass.Workflow>getWorkflowsList()A list of workflows returned based on the request.WorkflowOuterClass.WorkflowOrBuildergetWorkflowsOrBuilder(int index)A list of workflows returned based on the request.List<? extends WorkflowOuterClass.WorkflowOrBuilder>getWorkflowsOrBuilderList()A list of workflows returned based on the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkflowsList
List<WorkflowOuterClass.Workflow> getWorkflowsList()
A list of workflows returned based on the request.
repeated .flyteidl.admin.Workflow workflows = 1;
-
getWorkflows
WorkflowOuterClass.Workflow getWorkflows(int index)
A list of workflows returned based on the request.
repeated .flyteidl.admin.Workflow workflows = 1;
-
getWorkflowsCount
int getWorkflowsCount()
A list of workflows returned based on the request.
repeated .flyteidl.admin.Workflow workflows = 1;
-
getWorkflowsOrBuilderList
List<? extends WorkflowOuterClass.WorkflowOrBuilder> getWorkflowsOrBuilderList()
A list of workflows returned based on the request.
repeated .flyteidl.admin.Workflow workflows = 1;
-
getWorkflowsOrBuilder
WorkflowOuterClass.WorkflowOrBuilder getWorkflowsOrBuilder(int index)
A list of workflows returned based on the request.
repeated .flyteidl.admin.Workflow workflows = 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.
-
-