Interface ListMigrationWorkflowsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMigrationWorkflowsResponse
,ListMigrationWorkflowsResponse.Builder
public interface ListMigrationWorkflowsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MigrationWorkflow
getMigrationWorkflows(int index)
The migration workflows for the specified project / location.int
getMigrationWorkflowsCount()
The migration workflows for the specified project / location.List<MigrationWorkflow>
getMigrationWorkflowsList()
The migration workflows for the specified project / location.MigrationWorkflowOrBuilder
getMigrationWorkflowsOrBuilder(int index)
The migration workflows for the specified project / location.List<? extends MigrationWorkflowOrBuilder>
getMigrationWorkflowsOrBuilderList()
The migration workflows for the specified project / location.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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMigrationWorkflowsList
List<MigrationWorkflow> getMigrationWorkflowsList()
The migration workflows for the specified project / location.
repeated .google.cloud.bigquery.migration.v2alpha.MigrationWorkflow migration_workflows = 1;
-
getMigrationWorkflows
MigrationWorkflow getMigrationWorkflows(int index)
The migration workflows for the specified project / location.
repeated .google.cloud.bigquery.migration.v2alpha.MigrationWorkflow migration_workflows = 1;
-
getMigrationWorkflowsCount
int getMigrationWorkflowsCount()
The migration workflows for the specified project / location.
repeated .google.cloud.bigquery.migration.v2alpha.MigrationWorkflow migration_workflows = 1;
-
getMigrationWorkflowsOrBuilderList
List<? extends MigrationWorkflowOrBuilder> getMigrationWorkflowsOrBuilderList()
The migration workflows for the specified project / location.
repeated .google.cloud.bigquery.migration.v2alpha.MigrationWorkflow migration_workflows = 1;
-
getMigrationWorkflowsOrBuilder
MigrationWorkflowOrBuilder getMigrationWorkflowsOrBuilder(int index)
The migration workflows for the specified project / location.
repeated .google.cloud.bigquery.migration.v2alpha.MigrationWorkflow migration_workflows = 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.
-
-