/// <summary>Snippet for RunBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void RunBatchJob() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]"; // Make the request Operation <Empty, BatchJob.Types.BatchJobMetadata> response = batchJobServiceClient.RunBatchJob(resourceName); // Poll until the returned long-running operation is complete Operation <Empty, BatchJob.Types.BatchJobMetadata> 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, BatchJob.Types.BatchJobMetadata> retrievedResponse = batchJobServiceClient.PollOnceRunBatchJob(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 RunBatchJob</summary> public void RunBatchJobRequestObject() { // Snippet: RunBatchJob(RunBatchJobRequest, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) RunBatchJobRequest request = new RunBatchJobRequest { ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]"), }; // Make the request Operation <Empty, BatchJob.Types.BatchJobMetadata> response = batchJobServiceClient.RunBatchJob(request); // Poll until the returned long-running operation is complete Operation <Empty, BatchJob.Types.BatchJobMetadata> 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, BatchJob.Types.BatchJobMetadata> retrievedResponse = batchJobServiceClient.PollOnceRunBatchJob(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 GetBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetBatchJobResourceNames() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]"); // Make the request BatchJob response = batchJobServiceClient.GetBatchJob(resourceName); }
/// <summary>Snippet for GetBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetBatchJob() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER_ID]/batchJobs/[BATCH_JOB_ID]"; // Make the request BatchJob response = batchJobServiceClient.GetBatchJob(resourceName); }
/// <summary>Snippet for MutateBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void MutateBatchJob() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string customerId = ""; BatchJobOperation operation = new BatchJobOperation(); // Make the request MutateBatchJobResponse response = batchJobServiceClient.MutateBatchJob(customerId, operation); }
/// <summary>Snippet for GetBatchJob</summary> public void GetBatchJob() { // Snippet: GetBatchJob(string, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]"; // Make the request BatchJob response = batchJobServiceClient.GetBatchJob(resourceName); // End snippet }
/// <summary>Snippet for GetBatchJob</summary> public void GetBatchJobResourceNames() { // Snippet: GetBatchJob(BatchJobName, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"); // Make the request BatchJob response = batchJobServiceClient.GetBatchJob(resourceName); // End snippet }
/// <summary>Snippet for GetBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetBatchJobRequestObject() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) GetBatchJobRequest request = new GetBatchJobRequest { ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"), }; // Make the request BatchJob response = batchJobServiceClient.GetBatchJob(request); }
/// <summary>Snippet for MutateBatchJob</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void MutateBatchJobRequestObject() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) MutateBatchJobRequest request = new MutateBatchJobRequest { CustomerId = "", Operation = new BatchJobOperation(), }; // Make the request MutateBatchJobResponse response = batchJobServiceClient.MutateBatchJob(request); }
/// <summary>Snippet for AddBatchJobOperations</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void AddBatchJobOperations2ResourceNames() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // 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 = batchJobServiceClient.AddBatchJobOperations(resourceName, mutateOperations); }
/// <summary>Snippet for AddBatchJobOperations</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void AddBatchJobOperations2() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]"; IEnumerable <MutateOperation> mutateOperations = new MutateOperation[] { new MutateOperation(), }; // Make the request AddBatchJobOperationsResponse response = batchJobServiceClient.AddBatchJobOperations(resourceName, mutateOperations); }
/// <summary>Snippet for ListBatchJobResults</summary> public void ListBatchJobResultsRequestObject() { // Snippet: ListBatchJobResults(ListBatchJobResultsRequest, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) ListBatchJobResultsRequest request = new ListBatchJobResultsRequest { ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER_ID]", "[BATCH_JOB_ID]"), ResponseContentType = ResponseContentTypeEnum.Types.ResponseContentType.Unspecified, }; // Make the request PagedEnumerable <ListBatchJobResultsResponse, BatchJobResult> response = batchJobServiceClient.ListBatchJobResults(request); // Iterate over all response items, lazily performing RPCs as required foreach (BatchJobResult item in response) { // Do something with each item Console.WriteLine(item); } // Or iterate over pages (of server-defined size), performing one RPC per page foreach (ListBatchJobResultsResponse page in response.AsRawResponses()) { // 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 = response.ReadPage(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 AddBatchJobOperations</summary> public void AddBatchJobOperations1ResourceNames() { // Snippet: AddBatchJobOperations(BatchJobName, string, IEnumerable<MutateOperation>, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) BatchJobName resourceName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]"); string sequenceToken = ""; IEnumerable <MutateOperation> mutateOperations = new MutateOperation[] { new MutateOperation(), }; // Make the request AddBatchJobOperationsResponse response = batchJobServiceClient.AddBatchJobOperations(resourceName, sequenceToken, mutateOperations); // End snippet }
/// <summary>Snippet for AddBatchJobOperations</summary> public void AddBatchJobOperations1() { // Snippet: AddBatchJobOperations(string, string, IEnumerable<MutateOperation>, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER_ID]/batchJobs/[BATCH_JOB_ID]"; string sequenceToken = ""; IEnumerable <MutateOperation> mutateOperations = new MutateOperation[] { new MutateOperation(), }; // Make the request AddBatchJobOperationsResponse response = batchJobServiceClient.AddBatchJobOperations(resourceName, sequenceToken, mutateOperations); // End snippet }
/// <summary>Snippet for AddBatchJobOperations</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void AddBatchJobOperationsRequestObject() { // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) AddBatchJobOperationsRequest request = new AddBatchJobOperationsRequest { ResourceNameAsBatchJobName = BatchJobName.FromCustomerBatchJob("[CUSTOMER]", "[BATCH_JOB]"), SequenceToken = "", MutateOperations = { new MutateOperation(), }, }; // Make the request AddBatchJobOperationsResponse response = batchJobServiceClient.AddBatchJobOperations(request); }
/// <summary>Snippet for ListBatchJobResults</summary> public void ListBatchJobResults() { // Snippet: ListBatchJobResults(string, string, int?, CallSettings) // Create client BatchJobServiceClient batchJobServiceClient = BatchJobServiceClient.Create(); // Initialize request argument(s) string resourceName = "customers/[CUSTOMER]/batchJobs/[BATCH_JOB]"; // Make the request PagedEnumerable <ListBatchJobResultsResponse, BatchJobResult> response = batchJobServiceClient.ListBatchJobResults(resourceName); // Iterate over all response items, lazily performing RPCs as required foreach (BatchJobResult item in response) { // Do something with each item Console.WriteLine(item); } // Or iterate over pages (of server-defined size), performing one RPC per page foreach (ListBatchJobResultsResponse page in response.AsRawResponses()) { // 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 = response.ReadPage(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 }