/// <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 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 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
        }