Service to handle EDW migrations.
Equality
Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection>
objects compare equal. Objects that compare equal share the same underlying resources.
Performance
Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.
Thread Safety
Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.
Constructors
MigrationServiceClient(MigrationServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
MigrationServiceClient const &
|
MigrationServiceClient(MigrationServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
MigrationServiceClient &&
|
MigrationServiceClient(std::shared_ptr< MigrationServiceConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< MigrationServiceConnection >
|
opts |
Options
|
Operators
operator=(MigrationServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
MigrationServiceClient const &
|
Returns | |
---|---|
Type | Description |
MigrationServiceClient & |
operator=(MigrationServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
MigrationServiceClient &&
|
Returns | |
---|---|
Type | Description |
MigrationServiceClient & |
Functions
CreateMigrationWorkflow(std::string const &, google::cloud::bigquery::migration::v2::MigrationWorkflow const &, Options)
Creates a migration workflow.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The name of the project to which this migration workflow belongs. Example: |
migration_workflow |
google::cloud::bigquery::migration::v2::MigrationWorkflow const &
Required. The migration workflow to create. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationWorkflow) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateMigrationWorkflow(google::cloud::bigquery::migration::v2::CreateMigrationWorkflowRequest const &, Options)
Creates a migration workflow.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::CreateMigrationWorkflowRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationWorkflow) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetMigrationWorkflow(std::string const &, Options)
Gets a previously created migration workflow.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The unique identifier for the migration workflow. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationWorkflow) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetMigrationWorkflow(google::cloud::bigquery::migration::v2::GetMigrationWorkflowRequest const &, Options)
Gets a previously created migration workflow.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::GetMigrationWorkflowRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationWorkflow) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListMigrationWorkflows(std::string const &, Options)
Lists previously created migration workflow.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The project and location of the migration workflows to list. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListMigrationWorkflows(google::cloud::bigquery::migration::v2::ListMigrationWorkflowsRequest, Options)
Lists previously created migration workflow.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::ListMigrationWorkflowsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
DeleteMigrationWorkflow(std::string const &, Options)
Deletes a migration workflow by name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The unique identifier for the migration workflow. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteMigrationWorkflow(google::cloud::bigquery::migration::v2::DeleteMigrationWorkflowRequest const &, Options)
Deletes a migration workflow by name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::DeleteMigrationWorkflowRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
StartMigrationWorkflow(std::string const &, Options)
Starts a previously created migration workflow.
I.e., the state transitions from DRAFT to RUNNING. This is a no-op if the state is already RUNNING. An error will be signaled if the state is anything other than DRAFT or RUNNING.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The unique identifier for the migration workflow. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
StartMigrationWorkflow(google::cloud::bigquery::migration::v2::StartMigrationWorkflowRequest const &, Options)
Starts a previously created migration workflow.
I.e., the state transitions from DRAFT to RUNNING. This is a no-op if the state is already RUNNING. An error will be signaled if the state is anything other than DRAFT or RUNNING.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::StartMigrationWorkflowRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
GetMigrationSubtask(std::string const &, Options)
Gets a previously created migration subtask.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The unique identifier for the migration subtask. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationSubtask) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetMigrationSubtask(google::cloud::bigquery::migration::v2::GetMigrationSubtaskRequest const &, Options)
Gets a previously created migration subtask.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::GetMigrationSubtaskRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > |
the result of the RPC. The response message type (google.cloud.bigquery.migration.v2.MigrationSubtask) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListMigrationSubtasks(std::string const &, Options)
Lists previously created migration subtasks.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The migration task of the subtasks to list. Example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListMigrationSubtasks(google::cloud::bigquery::migration::v2::ListMigrationSubtasksRequest, Options)
Lists previously created migration subtasks.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::bigquery::migration::v2::ListMigrationSubtasksRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |