Google Cloud BigQuery C++ Client 2.11.0
A C++ Client Library for Google Cloud BigQuery
|
Service to handle EDW migrations. More...
#include <google/cloud/bigquery/migration/v2/migration_client.h>
Public Member Functions | |
MigrationServiceClient (std::shared_ptr< MigrationServiceConnection > connection, Options opts={}) | |
~MigrationServiceClient () | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > | CreateMigrationWorkflow (std::string const &parent, google::cloud::bigquery::migration::v2::MigrationWorkflow const &migration_workflow, Options opts={}) |
Creates a migration workflow. More... | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > | CreateMigrationWorkflow (google::cloud::bigquery::migration::v2::CreateMigrationWorkflowRequest const &request, Options opts={}) |
Creates a migration workflow. More... | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > | GetMigrationWorkflow (std::string const &name, Options opts={}) |
Gets a previously created migration workflow. More... | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > | GetMigrationWorkflow (google::cloud::bigquery::migration::v2::GetMigrationWorkflowRequest const &request, Options opts={}) |
Gets a previously created migration workflow. More... | |
StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > | ListMigrationWorkflows (std::string const &parent, Options opts={}) |
Lists previously created migration workflow. More... | |
StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > | ListMigrationWorkflows (google::cloud::bigquery::migration::v2::ListMigrationWorkflowsRequest request, Options opts={}) |
Lists previously created migration workflow. More... | |
Status | DeleteMigrationWorkflow (std::string const &name, Options opts={}) |
Deletes a migration workflow by name. More... | |
Status | DeleteMigrationWorkflow (google::cloud::bigquery::migration::v2::DeleteMigrationWorkflowRequest const &request, Options opts={}) |
Deletes a migration workflow by name. More... | |
Status | StartMigrationWorkflow (std::string const &name, Options opts={}) |
Starts a previously created migration workflow. More... | |
Status | StartMigrationWorkflow (google::cloud::bigquery::migration::v2::StartMigrationWorkflowRequest const &request, Options opts={}) |
Starts a previously created migration workflow. More... | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > | GetMigrationSubtask (std::string const &name, Options opts={}) |
Gets a previously created migration subtask. More... | |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > | GetMigrationSubtask (google::cloud::bigquery::migration::v2::GetMigrationSubtaskRequest const &request, Options opts={}) |
Gets a previously created migration subtask. More... | |
StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > | ListMigrationSubtasks (std::string const &parent, Options opts={}) |
Lists previously created migration subtasks. More... | |
StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > | ListMigrationSubtasks (google::cloud::bigquery::migration::v2::ListMigrationSubtasksRequest request, Options opts={}) |
Lists previously created migration subtasks. More... | |
Copy and move support | |
MigrationServiceClient (MigrationServiceClient const &)=default | |
MigrationServiceClient & | operator= (MigrationServiceClient const &)=default |
MigrationServiceClient (MigrationServiceClient &&)=default | |
MigrationServiceClient & | operator= (MigrationServiceClient &&)=default |
Friends | |
Equality | |
bool | operator== (MigrationServiceClient const &a, MigrationServiceClient const &b) |
bool | operator!= (MigrationServiceClient const &a, MigrationServiceClient const &b) |
Service to handle EDW migrations.
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.
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.
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.
|
explicit |
google::cloud::bigquery_migration_v2::MigrationServiceClient::~MigrationServiceClient | ( | ) |
|
default |
|
default |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::CreateMigrationWorkflow | ( | google::cloud::bigquery::migration::v2::CreateMigrationWorkflowRequest const & | request, |
Options | opts = {} |
||
) |
Creates a migration workflow.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.CreateMigrationWorkflowRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::CreateMigrationWorkflow | ( | std::string const & | parent, |
google::cloud::bigquery::migration::v2::MigrationWorkflow const & | migration_workflow, | ||
Options | opts = {} |
||
) |
Creates a migration workflow.
parent | Required. The name of the project to which this migration workflow belongs. Example: projects/foo/locations/bar |
migration_workflow | Required. The migration workflow to create. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
Status google::cloud::bigquery_migration_v2::MigrationServiceClient::DeleteMigrationWorkflow | ( | google::cloud::bigquery::migration::v2::DeleteMigrationWorkflowRequest const & | request, |
Options | opts = {} |
||
) |
Deletes a migration workflow by name.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.DeleteMigrationWorkflowRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
Status google::cloud::bigquery_migration_v2::MigrationServiceClient::DeleteMigrationWorkflow | ( | std::string const & | name, |
Options | opts = {} |
||
) |
Deletes a migration workflow by name.
name | Required. The unique identifier for the migration workflow. Example: projects/123/locations/us/workflows/1234 |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > google::cloud::bigquery_migration_v2::MigrationServiceClient::GetMigrationSubtask | ( | google::cloud::bigquery::migration::v2::GetMigrationSubtaskRequest const & | request, |
Options | opts = {} |
||
) |
Gets a previously created migration subtask.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.GetMigrationSubtaskRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StatusOr< google::cloud::bigquery::migration::v2::MigrationSubtask > google::cloud::bigquery_migration_v2::MigrationServiceClient::GetMigrationSubtask | ( | std::string const & | name, |
Options | opts = {} |
||
) |
Gets a previously created migration subtask.
name | Required. The unique identifier for the migration subtask. Example: projects/123/locations/us/workflows/1234/subtasks/543 |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::GetMigrationWorkflow | ( | google::cloud::bigquery::migration::v2::GetMigrationWorkflowRequest const & | request, |
Options | opts = {} |
||
) |
Gets a previously created migration workflow.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.GetMigrationWorkflowRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StatusOr< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::GetMigrationWorkflow | ( | std::string const & | name, |
Options | opts = {} |
||
) |
Gets a previously created migration workflow.
name | Required. The unique identifier for the migration workflow. Example: projects/123/locations/us/workflows/1234 |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > google::cloud::bigquery_migration_v2::MigrationServiceClient::ListMigrationSubtasks | ( | google::cloud::bigquery::migration::v2::ListMigrationSubtasksRequest | request, |
Options | opts = {} |
||
) |
Lists previously created migration subtasks.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.ListMigrationSubtasksRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
begin()
and end()
member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a `StatusOr` as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T>
contains elements of type google.cloud.bigquery.migration.v2.MigrationSubtask, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules. StreamRange< google::cloud::bigquery::migration::v2::MigrationSubtask > google::cloud::bigquery_migration_v2::MigrationServiceClient::ListMigrationSubtasks | ( | std::string const & | parent, |
Options | opts = {} |
||
) |
Lists previously created migration subtasks.
parent | Required. The migration task of the subtasks to list. Example: projects/123/locations/us/workflows/1234 |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
begin()
and end()
member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a `StatusOr` as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T>
contains elements of type google.cloud.bigquery.migration.v2.MigrationSubtask, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules. StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::ListMigrationWorkflows | ( | google::cloud::bigquery::migration::v2::ListMigrationWorkflowsRequest | request, |
Options | opts = {} |
||
) |
Lists previously created migration workflow.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.ListMigrationWorkflowsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
begin()
and end()
member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a `StatusOr` as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T>
contains elements of type google.cloud.bigquery.migration.v2.MigrationWorkflow, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules. StreamRange< google::cloud::bigquery::migration::v2::MigrationWorkflow > google::cloud::bigquery_migration_v2::MigrationServiceClient::ListMigrationWorkflows | ( | std::string const & | parent, |
Options | opts = {} |
||
) |
Lists previously created migration workflow.
parent | Required. The project and location of the migration workflows to list. Example: projects/123/locations/us |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
begin()
and end()
member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a `StatusOr` as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T>
contains elements of type google.cloud.bigquery.migration.v2.MigrationWorkflow, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.
|
default |
|
default |
Status google::cloud::bigquery_migration_v2::MigrationServiceClient::StartMigrationWorkflow | ( | google::cloud::bigquery::migration::v2::StartMigrationWorkflowRequest const & | request, |
Options | opts = {} |
||
) |
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.
request | Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.bigquery.migration.v2.StartMigrationWorkflowRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules. |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
Status google::cloud::bigquery_migration_v2::MigrationServiceClient::StartMigrationWorkflow | ( | std::string const & | name, |
Options | opts = {} |
||
) |
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.
name | Required. The unique identifier for the migration workflow. Example: projects/123/locations/us/workflows/1234 |
opts | Optional. Override the class-level options, such as retry and backoff policies. |
|
friend |
|
friend |