/// <summary>Snippet for RunTransferJob</summary>
        public void RunTransferJobRequestObject()
        {
            // Snippet: RunTransferJob(RunTransferJobRequest, CallSettings)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
            // Initialize request argument(s)
            RunTransferJobRequest request = new RunTransferJobRequest
            {
                JobName   = "",
                ProjectId = "",
            };
            // Make the request
            Operation <Empty, TransferOperation> response = storageTransferServiceClient.RunTransferJob(request);

            // Poll until the returned long-running operation is complete
            Operation <Empty, TransferOperation> completedResponse = response.PollUntilCompleted();
            // Retrieve the operation result
            Empty result = completedResponse.Result;

            // Or get the name of the operation
            string operationName = response.Name;
            // This name can be stored, then the long-running operation retrieved later by name
            Operation <Empty, TransferOperation> retrievedResponse = storageTransferServiceClient.PollOnceRunTransferJob(operationName);

            // Check if the retrieved long-running operation has completed
            if (retrievedResponse.IsCompleted)
            {
                // If it has completed, then access the result
                Empty retrievedResult = retrievedResponse.Result;
            }
            // End snippet
        }
예제 #2
0
        public TransferJob Quickstart(
            // Your Google Cloud Project ID
            string projectId = "my-project-id",
            // The GCS bucket to transfer data from
            string sourceBucket = "my-source-bucket",
            // The GCS bucket to transfer data to
            string sinkBucket = "my-sink-bucket")
        {
            TransferJob transferJob = new TransferJob
            {
                ProjectId    = projectId,
                TransferSpec = new TransferSpec
                {
                    GcsDataSink = new GcsData {
                        BucketName = sourceBucket
                    },
                    GcsDataSource = new GcsData {
                        BucketName = sinkBucket
                    }
                },
                Status = TransferJob.Types.Status.Enabled
            };

            StorageTransferServiceClient client = StorageTransferServiceClient.Create();
            TransferJob response = client.CreateTransferJob(new CreateTransferJobRequest {
                TransferJob = transferJob
            });

            client.RunTransferJob(new RunTransferJobRequest
            {
                JobName   = response.Name,
                ProjectId = projectId
            });

            Console.WriteLine($"Created and ran transfer job from {sourceBucket} to {sinkBucket} with name {response.Name}");

            return(response);
        }