Interface QueryWorkflowInvocationActionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryWorkflowInvocationActionsResponse
,QueryWorkflowInvocationActionsResponse.Builder
public interface QueryWorkflowInvocationActionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page.WorkflowInvocationAction
getWorkflowInvocationActions(int index)
List of workflow invocation actions.int
getWorkflowInvocationActionsCount()
List of workflow invocation actions.List<WorkflowInvocationAction>
getWorkflowInvocationActionsList()
List of workflow invocation actions.WorkflowInvocationActionOrBuilder
getWorkflowInvocationActionsOrBuilder(int index)
List of workflow invocation actions.List<? extends WorkflowInvocationActionOrBuilder>
getWorkflowInvocationActionsOrBuilderList()
List of workflow invocation actions.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkflowInvocationActionsList
List<WorkflowInvocationAction> getWorkflowInvocationActionsList()
List of workflow invocation actions.
repeated .google.cloud.dataform.v1beta1.WorkflowInvocationAction workflow_invocation_actions = 1;
-
getWorkflowInvocationActions
WorkflowInvocationAction getWorkflowInvocationActions(int index)
List of workflow invocation actions.
repeated .google.cloud.dataform.v1beta1.WorkflowInvocationAction workflow_invocation_actions = 1;
-
getWorkflowInvocationActionsCount
int getWorkflowInvocationActionsCount()
List of workflow invocation actions.
repeated .google.cloud.dataform.v1beta1.WorkflowInvocationAction workflow_invocation_actions = 1;
-
getWorkflowInvocationActionsOrBuilderList
List<? extends WorkflowInvocationActionOrBuilder> getWorkflowInvocationActionsOrBuilderList()
List of workflow invocation actions.
repeated .google.cloud.dataform.v1beta1.WorkflowInvocationAction workflow_invocation_actions = 1;
-
getWorkflowInvocationActionsOrBuilder
WorkflowInvocationActionOrBuilder getWorkflowInvocationActionsOrBuilder(int index)
List of workflow invocation actions.
repeated .google.cloud.dataform.v1beta1.WorkflowInvocationAction workflow_invocation_actions = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-