/// <summary>Snippet for Patch</summary>
        public void PatchRequestObject()
        {
            // Snippet: Patch(PatchInterconnectAttachmentRequest, CallSettings)
            // Create client
            InterconnectAttachmentsClient interconnectAttachmentsClient = InterconnectAttachmentsClient.Create();
            // Initialize request argument(s)
            PatchInterconnectAttachmentRequest request = new PatchInterconnectAttachmentRequest
            {
                RequestId = "",
                Region    = "",
                InterconnectAttachmentResource = new InterconnectAttachment(),
                Project = "",
                InterconnectAttachment = "",
            };
            // Make the request
            lro::Operation <Operation, Operation> response = interconnectAttachmentsClient.Patch(request);

            // Poll until the returned long-running operation is complete
            lro::Operation <Operation, Operation> completedResponse = response.PollUntilCompleted();
            // Retrieve the operation result
            Operation 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
            lro::Operation <Operation, Operation> retrievedResponse = interconnectAttachmentsClient.PollOncePatch(operationName);

            // Check if the retrieved long-running operation has completed
            if (retrievedResponse.IsCompleted)
            {
                // If it has completed, then access the result
                Operation retrievedResult = retrievedResponse.Result;
            }
            // End snippet
        }
        public async stt::Task PatchRequestObjectAsync()
        {
            moq::Mock <InterconnectAttachments.InterconnectAttachmentsClient> mockGrpcClient = new moq::Mock <InterconnectAttachments.InterconnectAttachmentsClient>(moq::MockBehavior.Strict);
            PatchInterconnectAttachmentRequest request = new PatchInterconnectAttachmentRequest
            {
                RequestId = "request_id362c8df6",
                Region    = "regionedb20d96",
                InterconnectAttachmentResource = new InterconnectAttachment(),
                Project = "projectaa6ff846",
                InterconnectAttachment = "interconnect_attachmentc83a7a7c",
            };
            Operation expectedResponse = new Operation
            {
                Id   = 11672635353343658936UL,
                Kind = "kindf7aa39d9",
                Name = "name1c9368b0",
                User = "******",
                Zone = "zone255f4ea8",
                CreationTimestamp   = "creation_timestamp235e59a1",
                StartTime           = "start_timebd8dd9c4",
                OperationGroupId    = "operation_group_idd2040cf0",
                TargetLink          = "target_link9b435dc0",
                Progress            = 278622268,
                Error               = new Error(),
                EndTime             = "end_time89285d30",
                Region              = "regionedb20d96",
                OperationType       = "operation_typeece9e153",
                Status              = Operation.Types.Status.Pending,
                HttpErrorMessage    = "http_error_messageb5ef3c7f",
                TargetId            = 6263187990225347157UL,
                ClientOperationId   = "client_operation_id4e51b631",
                StatusMessage       = "status_message2c618f86",
                HttpErrorStatusCode = 1766362655,
                Description         = "description2cf9da67",
                InsertTime          = "insert_time7467185a",
                SelfLink            = "self_link7e87f12d",
                Warnings            = { new Warnings(), },
            };

            mockGrpcClient.Setup(x => x.PatchAsync(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(new grpccore::AsyncUnaryCall <Operation>(stt::Task.FromResult(expectedResponse), null, null, null, null));
            InterconnectAttachmentsClient client = new InterconnectAttachmentsClientImpl(mockGrpcClient.Object, null);
            Operation responseCallSettings       = await client.PatchAsync(request, gaxgrpc::CallSettings.FromCancellationToken(st::CancellationToken.None));

            xunit::Assert.Same(expectedResponse, responseCallSettings);
            Operation responseCancellationToken = await client.PatchAsync(request, st::CancellationToken.None);

            xunit::Assert.Same(expectedResponse, responseCancellationToken);
            mockGrpcClient.VerifyAll();
        }
Exemple #3
0
 /// <summary>Snippet for Patch</summary>
 public void PatchRequestObject()
 {
     // Snippet: Patch(PatchInterconnectAttachmentRequest, CallSettings)
     // Create client
     InterconnectAttachmentsClient interconnectAttachmentsClient = InterconnectAttachmentsClient.Create();
     // Initialize request argument(s)
     PatchInterconnectAttachmentRequest request = new PatchInterconnectAttachmentRequest
     {
         RequestId = "",
         Region    = "",
         InterconnectAttachmentResource = new InterconnectAttachment(),
         Project = "",
         InterconnectAttachment = "",
     };
     // Make the request
     Operation response = interconnectAttachmentsClient.Patch(request);
     // End snippet
 }
Exemple #4
0
        /// <summary>Snippet for PatchAsync</summary>
        public async Task PatchRequestObjectAsync()
        {
            // Snippet: PatchAsync(PatchInterconnectAttachmentRequest, CallSettings)
            // Additional: PatchAsync(PatchInterconnectAttachmentRequest, CancellationToken)
            // Create client
            InterconnectAttachmentsClient interconnectAttachmentsClient = await InterconnectAttachmentsClient.CreateAsync();

            // Initialize request argument(s)
            PatchInterconnectAttachmentRequest request = new PatchInterconnectAttachmentRequest
            {
                RequestId = "",
                Region    = "",
                InterconnectAttachmentResource = new InterconnectAttachment(),
                Project = "",
                InterconnectAttachment = "",
            };
            // Make the request
            Operation response = await interconnectAttachmentsClient.PatchAsync(request);

            // End snippet
        }