com.google.cloud.bigquery.migration.v2.stub.MigrationServiceStub Maven / Gradle / Ivy
Show all versions of google-cloud-bigquerymigration Show documentation
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.bigquery.migration.v2.stub;
import static com.google.cloud.bigquery.migration.v2.MigrationServiceClient.ListMigrationSubtasksPagedResponse;
import static com.google.cloud.bigquery.migration.v2.MigrationServiceClient.ListMigrationWorkflowsPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.bigquery.migration.v2.CreateMigrationWorkflowRequest;
import com.google.cloud.bigquery.migration.v2.DeleteMigrationWorkflowRequest;
import com.google.cloud.bigquery.migration.v2.GetMigrationSubtaskRequest;
import com.google.cloud.bigquery.migration.v2.GetMigrationWorkflowRequest;
import com.google.cloud.bigquery.migration.v2.ListMigrationSubtasksRequest;
import com.google.cloud.bigquery.migration.v2.ListMigrationSubtasksResponse;
import com.google.cloud.bigquery.migration.v2.ListMigrationWorkflowsRequest;
import com.google.cloud.bigquery.migration.v2.ListMigrationWorkflowsResponse;
import com.google.cloud.bigquery.migration.v2.MigrationSubtask;
import com.google.cloud.bigquery.migration.v2.MigrationWorkflow;
import com.google.cloud.bigquery.migration.v2.StartMigrationWorkflowRequest;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the MigrationService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class MigrationServiceStub implements BackgroundResource {
public UnaryCallable
createMigrationWorkflowCallable() {
throw new UnsupportedOperationException("Not implemented: createMigrationWorkflowCallable()");
}
public UnaryCallable
getMigrationWorkflowCallable() {
throw new UnsupportedOperationException("Not implemented: getMigrationWorkflowCallable()");
}
public UnaryCallable
listMigrationWorkflowsPagedCallable() {
throw new UnsupportedOperationException(
"Not implemented: listMigrationWorkflowsPagedCallable()");
}
public UnaryCallable
listMigrationWorkflowsCallable() {
throw new UnsupportedOperationException("Not implemented: listMigrationWorkflowsCallable()");
}
public UnaryCallable deleteMigrationWorkflowCallable() {
throw new UnsupportedOperationException("Not implemented: deleteMigrationWorkflowCallable()");
}
public UnaryCallable startMigrationWorkflowCallable() {
throw new UnsupportedOperationException("Not implemented: startMigrationWorkflowCallable()");
}
public UnaryCallable getMigrationSubtaskCallable() {
throw new UnsupportedOperationException("Not implemented: getMigrationSubtaskCallable()");
}
public UnaryCallable
listMigrationSubtasksPagedCallable() {
throw new UnsupportedOperationException(
"Not implemented: listMigrationSubtasksPagedCallable()");
}
public UnaryCallable
listMigrationSubtasksCallable() {
throw new UnsupportedOperationException("Not implemented: listMigrationSubtasksCallable()");
}
@Override
public abstract void close();
}