google-cloud-bigquerymigration overview (0.24.0)

com.google.cloud.bigquery.migration.v2

A client to BigQuery Migration API

The interfaces provided are listed below, along with usage samples.

MigrationServiceClient

Service Description: Service to handle EDW migrations.

Sample for MigrationServiceClient:

  // This snippet has been automatically generated and should be regarded as a code template only.  // It will require modifications to work:  // - It may require correct/in-range values for request initialization.  // - It may require specifying regional endpoints when creating the service client as shown in  // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library  try (MigrationServiceClient migrationServiceClient = MigrationServiceClient.create()) {  LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");  MigrationWorkflow migrationWorkflow = MigrationWorkflow.newBuilder().build();  MigrationWorkflow response =  migrationServiceClient.createMigrationWorkflow(parent, migrationWorkflow);  }  

com.google.cloud.bigquery.migration.v2.stub

com.google.cloud.bigquery.migration.v2alpha

A client to BigQuery Migration API

The interfaces provided are listed below, along with usage samples.

MigrationServiceClient

Service Description: Service to handle EDW migrations.

Sample for MigrationServiceClient:

  // This snippet has been automatically generated and should be regarded as a code template only.  // It will require modifications to work:  // - It may require correct/in-range values for request initialization.  // - It may require specifying regional endpoints when creating the service client as shown in  // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library  try (MigrationServiceClient migrationServiceClient = MigrationServiceClient.create()) {  LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");  MigrationWorkflow migrationWorkflow = MigrationWorkflow.newBuilder().build();  MigrationWorkflow response =  migrationServiceClient.createMigrationWorkflow(parent, migrationWorkflow);  }  

SqlTranslationServiceClient

Service Description: Provides other SQL dialects to GoogleSQL translation operations.

Sample for SqlTranslationServiceClient:

  // This snippet has been automatically generated and should be regarded as a code template only.  // It will require modifications to work:  // - It may require correct/in-range values for request initialization.  // - It may require specifying regional endpoints when creating the service client as shown in  // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library  try (SqlTranslationServiceClient sqlTranslationServiceClient =  SqlTranslationServiceClient.create()) {  LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");  TranslateQueryRequest.SqlTranslationSourceDialect sourceDialect =  TranslateQueryRequest.SqlTranslationSourceDialect.forNumber(0);  String query = "query107944136";  TranslateQueryResponse response =  sqlTranslationServiceClient.translateQuery(parent, sourceDialect, query);  }  

com.google.cloud.bigquery.migration.v2alpha.stub