Interface ListMigrationSubtasksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMigrationSubtasksResponse
,ListMigrationSubtasksResponse.Builder
public interface ListMigrationSubtasksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MigrationSubtask
getMigrationSubtasks(int index)
The migration subtasks for the specified task.int
getMigrationSubtasksCount()
The migration subtasks for the specified task.List<MigrationSubtask>
getMigrationSubtasksList()
The migration subtasks for the specified task.MigrationSubtaskOrBuilder
getMigrationSubtasksOrBuilder(int index)
The migration subtasks for the specified task.List<? extends MigrationSubtaskOrBuilder>
getMigrationSubtasksOrBuilderList()
The migration subtasks for the specified task.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
-
getMigrationSubtasksList
List<MigrationSubtask> getMigrationSubtasksList()
The migration subtasks for the specified task.
repeated .google.cloud.bigquery.migration.v2.MigrationSubtask migration_subtasks = 1;
-
getMigrationSubtasks
MigrationSubtask getMigrationSubtasks(int index)
The migration subtasks for the specified task.
repeated .google.cloud.bigquery.migration.v2.MigrationSubtask migration_subtasks = 1;
-
getMigrationSubtasksCount
int getMigrationSubtasksCount()
The migration subtasks for the specified task.
repeated .google.cloud.bigquery.migration.v2.MigrationSubtask migration_subtasks = 1;
-
getMigrationSubtasksOrBuilderList
List<? extends MigrationSubtaskOrBuilder> getMigrationSubtasksOrBuilderList()
The migration subtasks for the specified task.
repeated .google.cloud.bigquery.migration.v2.MigrationSubtask migration_subtasks = 1;
-
getMigrationSubtasksOrBuilder
MigrationSubtaskOrBuilder getMigrationSubtasksOrBuilder(int index)
The migration subtasks for the specified task.
repeated .google.cloud.bigquery.migration.v2.MigrationSubtask migration_subtasks = 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.
-
-