Interface MigrationServiceGrpc.AsyncService
-
- All Known Implementing Classes:
MigrationServiceGrpc.MigrationServiceImplBase
- Enclosing class:
- MigrationServiceGrpc
public static interface MigrationServiceGrpc.AsyncService
Service to handle EDW migrations.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
createMigrationWorkflow(CreateMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<MigrationWorkflow> responseObserver)
Creates a migration workflow.default void
deleteMigrationWorkflow(DeleteMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes a migration workflow by name.default void
getMigrationSubtask(GetMigrationSubtaskRequest request, io.grpc.stub.StreamObserver<MigrationSubtask> responseObserver)
Gets a previously created migration subtask.default void
getMigrationWorkflow(GetMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<MigrationWorkflow> responseObserver)
Gets a previously created migration workflow.default void
listMigrationSubtasks(ListMigrationSubtasksRequest request, io.grpc.stub.StreamObserver<ListMigrationSubtasksResponse> responseObserver)
Lists previously created migration subtasks.default void
listMigrationWorkflows(ListMigrationWorkflowsRequest request, io.grpc.stub.StreamObserver<ListMigrationWorkflowsResponse> responseObserver)
Lists previously created migration workflow.default void
startMigrationWorkflow(StartMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Starts a previously created migration workflow.
-
-
-
Method Detail
-
createMigrationWorkflow
default void createMigrationWorkflow(CreateMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<MigrationWorkflow> responseObserver)
Creates a migration workflow.
-
getMigrationWorkflow
default void getMigrationWorkflow(GetMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<MigrationWorkflow> responseObserver)
Gets a previously created migration workflow.
-
listMigrationWorkflows
default void listMigrationWorkflows(ListMigrationWorkflowsRequest request, io.grpc.stub.StreamObserver<ListMigrationWorkflowsResponse> responseObserver)
Lists previously created migration workflow.
-
deleteMigrationWorkflow
default void deleteMigrationWorkflow(DeleteMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes a migration workflow by name.
-
startMigrationWorkflow
default void startMigrationWorkflow(StartMigrationWorkflowRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
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.
-
getMigrationSubtask
default void getMigrationSubtask(GetMigrationSubtaskRequest request, io.grpc.stub.StreamObserver<MigrationSubtask> responseObserver)
Gets a previously created migration subtask.
-
listMigrationSubtasks
default void listMigrationSubtasks(ListMigrationSubtasksRequest request, io.grpc.stub.StreamObserver<ListMigrationSubtasksResponse> responseObserver)
Lists previously created migration subtasks.
-
-