/// <summary>Snippet for RunTransferJobAsync</summary>
        public async Task RunTransferJobRequestObjectAsync()
        {
            // Snippet: RunTransferJobAsync(RunTransferJobRequest, CallSettings)
            // Additional: RunTransferJobAsync(RunTransferJobRequest, CancellationToken)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            RunTransferJobRequest request = new RunTransferJobRequest
            {
                JobName   = "",
                ProjectId = "",
            };
            // Make the request
            Operation <Empty, TransferOperation> response = await storageTransferServiceClient.RunTransferJobAsync(request);

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

            // 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 = await storageTransferServiceClient.PollOnceRunTransferJobAsync(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
        }
 /// <summary>Snippet for GetGoogleServiceAccount</summary>
 public void GetGoogleServiceAccountRequestObject()
 {
     // Snippet: GetGoogleServiceAccount(GetGoogleServiceAccountRequest, CallSettings)
     // Create client
     StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
     // Initialize request argument(s)
     GetGoogleServiceAccountRequest request = new GetGoogleServiceAccountRequest {
         ProjectId = "",
     };
     // Make the request
     GoogleServiceAccount response = storageTransferServiceClient.GetGoogleServiceAccount(request);
     // End snippet
 }
 /// <summary>Snippet for CreateTransferJob</summary>
 public void CreateTransferJobRequestObject()
 {
     // Snippet: CreateTransferJob(CreateTransferJobRequest, CallSettings)
     // Create client
     StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
     // Initialize request argument(s)
     CreateTransferJobRequest request = new CreateTransferJobRequest
     {
         TransferJob = new TransferJob(),
     };
     // Make the request
     TransferJob response = storageTransferServiceClient.CreateTransferJob(request);
     // End snippet
 }
        /// <summary>Snippet for ResumeTransferOperation</summary>
        public void ResumeTransferOperationRequestObject()
        {
            // Snippet: ResumeTransferOperation(ResumeTransferOperationRequest, CallSettings)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
            // Initialize request argument(s)
            ResumeTransferOperationRequest request = new ResumeTransferOperationRequest {
                Name = "",
            };

            // Make the request
            storageTransferServiceClient.ResumeTransferOperation(request);
            // End snippet
        }
 /// <summary>Snippet for GetTransferJob</summary>
 public void GetTransferJobRequestObject()
 {
     // Snippet: GetTransferJob(GetTransferJobRequest, CallSettings)
     // Create client
     StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
     // Initialize request argument(s)
     GetTransferJobRequest request = new GetTransferJobRequest
     {
         JobName   = "",
         ProjectId = "",
     };
     // Make the request
     TransferJob response = storageTransferServiceClient.GetTransferJob(request);
     // End snippet
 }
        /// <summary>Snippet for GetGoogleServiceAccountAsync</summary>
        public async Task GetGoogleServiceAccountRequestObjectAsync()
        {
            // Snippet: GetGoogleServiceAccountAsync(GetGoogleServiceAccountRequest, CallSettings)
            // Additional: GetGoogleServiceAccountAsync(GetGoogleServiceAccountRequest, CancellationToken)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            GetGoogleServiceAccountRequest request = new GetGoogleServiceAccountRequest {
                ProjectId = "",
            };
            // Make the request
            GoogleServiceAccount response = await storageTransferServiceClient.GetGoogleServiceAccountAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ResumeTransferOperationAsync</summary>
        public async Task ResumeTransferOperationRequestObjectAsync()
        {
            // Snippet: ResumeTransferOperationAsync(ResumeTransferOperationRequest, CallSettings)
            // Additional: ResumeTransferOperationAsync(ResumeTransferOperationRequest, CancellationToken)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            ResumeTransferOperationRequest request = new ResumeTransferOperationRequest {
                Name = "",
            };
            // Make the request
            await storageTransferServiceClient.ResumeTransferOperationAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ListTransferJobsAsync</summary>
        public async Task ListTransferJobsRequestObjectAsync()
        {
            // Snippet: ListTransferJobsAsync(ListTransferJobsRequest, CallSettings)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListTransferJobsRequest request = new ListTransferJobsRequest {
                Filter = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListTransferJobsResponse, TransferJob> response = storageTransferServiceClient.ListTransferJobsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((TransferJob item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListTransferJobsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (TransferJob item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <TransferJob> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (TransferJob item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
 /// <summary>Snippet for UpdateTransferJob</summary>
 public void UpdateTransferJobRequestObject()
 {
     // Snippet: UpdateTransferJob(UpdateTransferJobRequest, CallSettings)
     // Create client
     StorageTransferServiceClient storageTransferServiceClient = StorageTransferServiceClient.Create();
     // Initialize request argument(s)
     UpdateTransferJobRequest request = new UpdateTransferJobRequest
     {
         JobName     = "",
         ProjectId   = "",
         TransferJob = new TransferJob(),
         UpdateTransferJobFieldMask = new FieldMask(),
     };
     // Make the request
     TransferJob response = storageTransferServiceClient.UpdateTransferJob(request);
     // End snippet
 }
        /// <summary>Snippet for CreateTransferJobAsync</summary>
        public async Task CreateTransferJobRequestObjectAsync()
        {
            // Snippet: CreateTransferJobAsync(CreateTransferJobRequest, CallSettings)
            // Additional: CreateTransferJobAsync(CreateTransferJobRequest, CancellationToken)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            CreateTransferJobRequest request = new CreateTransferJobRequest
            {
                TransferJob = new TransferJob(),
            };
            // Make the request
            TransferJob response = await storageTransferServiceClient.CreateTransferJobAsync(request);

            // End snippet
        }
        /// <summary>Snippet for UpdateTransferJobAsync</summary>
        public async Task UpdateTransferJobRequestObjectAsync()
        {
            // Snippet: UpdateTransferJobAsync(UpdateTransferJobRequest, CallSettings)
            // Additional: UpdateTransferJobAsync(UpdateTransferJobRequest, CancellationToken)
            // Create client
            StorageTransferServiceClient storageTransferServiceClient = await StorageTransferServiceClient.CreateAsync();

            // Initialize request argument(s)
            UpdateTransferJobRequest request = new UpdateTransferJobRequest
            {
                JobName     = "",
                ProjectId   = "",
                TransferJob = new TransferJob(),
                UpdateTransferJobFieldMask = new FieldMask(),
            };
            // Make the request
            TransferJob response = await storageTransferServiceClient.UpdateTransferJobAsync(request);

            // End snippet
        }
Esempio n. 12
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);
        }