/// <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);
        }
コード例 #2
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);
        }
コード例 #3
0
        /// <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
        }
コード例 #4
0
        /// <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
        }