/// <summary>Snippet for RunBatchJobAsync</summary>
        public async Task RunBatchJobResourceNamesAsync()
        {
            // Snippet: RunBatchJobAsync(BatchJobName, CallSettings)
            // Additional: RunBatchJobAsync(BatchJobName, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]");
            // Make the request
            Operation <Empty, BatchJob.Types.BatchJobMetadata> response = await batchJobServiceClient.RunBatchJobAsync(resourceName);

            // Poll until the returned long-running operation is complete
            Operation <Empty, BatchJob.Types.BatchJobMetadata> 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, BatchJob.Types.BatchJobMetadata> retrievedResponse = await batchJobServiceClient.PollOnceRunBatchJobAsync(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
        }
Example #2
0
        /// <summary>Snippet for RunBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task RunBatchJobAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER_ID]/batchJobs/[BATCH_JOB_ID]";
            // Make the request
            Operation <Empty, BatchJob.Types.BatchJobMetadata> response = await batchJobServiceClient.RunBatchJobAsync(resourceName);

            // Poll until the returned long-running operation is complete
            Operation <Empty, BatchJob.Types.BatchJobMetadata> 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, BatchJob.Types.BatchJobMetadata> retrievedResponse = await batchJobServiceClient.PollOnceRunBatchJobAsync(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;
            }
        }
        /// <summary>Snippet for GetBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task GetBatchJobResourceNamesAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]");
            // Make the request
            BatchJob response = await batchJobServiceClient.GetBatchJobAsync(resourceName);
        }
        /// <summary>Snippet for GetBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task GetBatchJobAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]";
            // Make the request
            BatchJob response = await batchJobServiceClient.GetBatchJobAsync(resourceName);
        }
        /// <summary>Snippet for MutateBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task MutateBatchJobAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string            customerId = "";
            BatchJobOperation operation  = new BatchJobOperation();
            // Make the request
            MutateBatchJobResponse response = await batchJobServiceClient.MutateBatchJobAsync(customerId, operation);
        }
        /// <summary>Snippet for GetBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task GetBatchJobRequestObjectAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            GetBatchJobRequest request = new GetBatchJobRequest
            {
                ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"),
            };
            // Make the request
            BatchJob response = await batchJobServiceClient.GetBatchJobAsync(request);
        }
        /// <summary>Snippet for GetBatchJobAsync</summary>
        public async Task GetBatchJobAsync()
        {
            // Snippet: GetBatchJobAsync(string, CallSettings)
            // Additional: GetBatchJobAsync(string, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]";
            // Make the request
            BatchJob response = await batchJobServiceClient.GetBatchJobAsync(resourceName);

            // End snippet
        }
Example #8
0
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task AddBatchJobOperations2ResourceNamesAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]");
            IEnumerable <MutateOperation> mutateOperations = new MutateOperation[]
            {
                new MutateOperation(),
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(resourceName, mutateOperations);
        }
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task AddBatchJobOperations2Async()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]";
            IEnumerable <MutateOperation> mutateOperations = new MutateOperation[]
            {
                new MutateOperation(),
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(resourceName, mutateOperations);
        }
Example #10
0
        /// <summary>Snippet for MutateBatchJobAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task MutateBatchJobRequestObjectAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            MutateBatchJobRequest request = new MutateBatchJobRequest
            {
                CustomerId = "",
                Operation  = new BatchJobOperation(),
            };
            // Make the request
            MutateBatchJobResponse response = await batchJobServiceClient.MutateBatchJobAsync(request);
        }
        /// <summary>Snippet for GetBatchJobAsync</summary>
        public async Task GetBatchJobResourceNamesAsync()
        {
            // Snippet: GetBatchJobAsync(BatchJobName, CallSettings)
            // Additional: GetBatchJobAsync(BatchJobName, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]");
            // Make the request
            BatchJob response = await batchJobServiceClient.GetBatchJobAsync(resourceName);

            // End snippet
        }
Example #12
0
        /// <summary>Snippet for ListBatchJobResultsAsync</summary>
        public async Task ListBatchJobResultsRequestObjectAsync()
        {
            // Snippet: ListBatchJobResultsAsync(ListBatchJobResultsRequest, CallSettings)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListBatchJobResultsRequest request = new ListBatchJobResultsRequest
            {
                ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"),
                ResponseContentType        = ResponseContentTypeEnum.Types.ResponseContentType.Unspecified,
            };
            // Make the request
            PagedAsyncEnumerable <ListBatchJobResultsResponse, BatchJobResult> response = batchJobServiceClient.ListBatchJobResultsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((BatchJobResult 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((ListBatchJobResultsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (BatchJobResult 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 <BatchJobResult> 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 (BatchJobResult 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 MutateBatchJobAsync</summary>
        public async Task MutateBatchJobAsync()
        {
            // Snippet: MutateBatchJobAsync(string, BatchJobOperation, CallSettings)
            // Additional: MutateBatchJobAsync(string, BatchJobOperation, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string            customerId = "";
            BatchJobOperation operation  = new BatchJobOperation();
            // Make the request
            MutateBatchJobResponse response = await batchJobServiceClient.MutateBatchJobAsync(customerId, operation);

            // End snippet
        }
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task AddBatchJobOperationsRequestObjectAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            AddBatchJobOperationsRequest request = new AddBatchJobOperationsRequest
            {
                ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"),
                SequenceToken    = "",
                MutateOperations =
                {
                    new MutateOperation(),
                },
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(request);
        }
Example #15
0
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        public async Task AddBatchJobOperations2ResourceNamesAsync()
        {
            // Snippet: AddBatchJobOperationsAsync(BatchJobName, IEnumerable<MutateOperation>, CallSettings)
            // Additional: AddBatchJobOperationsAsync(BatchJobName, IEnumerable<MutateOperation>, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]");
            IEnumerable <MutateOperation> mutateOperations = new MutateOperation[]
            {
                new MutateOperation(),
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(resourceName, mutateOperations);

            // End snippet
        }
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        public async Task AddBatchJobOperations2Async()
        {
            // Snippet: AddBatchJobOperationsAsync(string, IEnumerable<MutateOperation>, CallSettings)
            // Additional: AddBatchJobOperationsAsync(string, IEnumerable<MutateOperation>, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]";
            IEnumerable <MutateOperation> mutateOperations = new MutateOperation[]
            {
                new MutateOperation(),
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(resourceName, mutateOperations);

            // End snippet
        }
        /// <summary>Snippet for MutateBatchJobAsync</summary>
        public async Task MutateBatchJobRequestObjectAsync()
        {
            // Snippet: MutateBatchJobAsync(MutateBatchJobRequest, CallSettings)
            // Additional: MutateBatchJobAsync(MutateBatchJobRequest, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            MutateBatchJobRequest request = new MutateBatchJobRequest
            {
                CustomerId = "",
                Operation  = new BatchJobOperation(),
            };
            // Make the request
            MutateBatchJobResponse response = await batchJobServiceClient.MutateBatchJobAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ListBatchJobResultsAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task ListBatchJobResultsAsync()
        {
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]";
            // Make the request
            PagedAsyncEnumerable <ListBatchJobResultsResponse, BatchJobResult> response = batchJobServiceClient.ListBatchJobResultsAsync(resourceName);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((BatchJobResult 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((ListBatchJobResultsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (BatchJobResult 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 <BatchJobResult> 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 (BatchJobResult 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;
        }
        /// <summary>Snippet for AddBatchJobOperationsAsync</summary>
        public async Task AddBatchJobOperationsRequestObjectAsync()
        {
            // Snippet: AddBatchJobOperationsAsync(AddBatchJobOperationsRequest, CallSettings)
            // Additional: AddBatchJobOperationsAsync(AddBatchJobOperationsRequest, CancellationToken)
            // Create client
            BatchJobServiceClient batchJobServiceClient = await BatchJobServiceClient.CreateAsync();

            // Initialize request argument(s)
            AddBatchJobOperationsRequest request = new AddBatchJobOperationsRequest
            {
                ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]"),
                SequenceToken    = "",
                MutateOperations =
                {
                    new MutateOperation(),
                },
            };
            // Make the request
            AddBatchJobOperationsResponse response = await batchJobServiceClient.AddBatchJobOperationsAsync(request);

            // End snippet
        }