/// <summary>Snippet for DisableService</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void DisableServiceRequestObject() { // Create client ServiceManagerClient serviceManagerClient = ServiceManagerClient.Create(); // Initialize request argument(s) DisableServiceRequest request = new DisableServiceRequest { ServiceName = "", ConsumerId = "", }; // Make the request #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> response = serviceManagerClient.DisableService(request); #pragma warning restore CS0612 // Poll until the returned long-running operation is complete Operation <DisableServiceResponse, OperationMetadata> completedResponse = response.PollUntilCompleted(); // Retrieve the operation result DisableServiceResponse 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 #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> retrievedResponse = serviceManagerClient.PollOnceDisableService(operationName); #pragma warning restore CS0612 // Check if the retrieved long-running operation has completed if (retrievedResponse.IsCompleted) { // If it has completed, then access the result DisableServiceResponse retrievedResult = retrievedResponse.Result; } }
/// <summary>Snippet for DisableService</summary> public void DisableServiceRequestObject() { // Snippet: DisableService(DisableServiceRequest, CallSettings) // Create client ServiceUsageClient serviceUsageClient = ServiceUsageClient.Create(); // Initialize request argument(s) DisableServiceRequest request = new DisableServiceRequest { Name = "", DisableDependentServices = false, CheckIfServiceHasUsage = DisableServiceRequest.Types.CheckIfServiceHasUsage.Unspecified, }; // Make the request Operation <DisableServiceResponse, OperationMetadata> response = serviceUsageClient.DisableService(request); // Poll until the returned long-running operation is complete Operation <DisableServiceResponse, OperationMetadata> completedResponse = response.PollUntilCompleted(); // Retrieve the operation result DisableServiceResponse 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 <DisableServiceResponse, OperationMetadata> retrievedResponse = serviceUsageClient.PollOnceDisableService(operationName); // Check if the retrieved long-running operation has completed if (retrievedResponse.IsCompleted) { // If it has completed, then access the result DisableServiceResponse retrievedResult = retrievedResponse.Result; } // End snippet }
/// <summary>Snippet for DisableServiceAsync</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 DisableServiceAsync() { // Create client ServiceManagerClient serviceManagerClient = await ServiceManagerClient.CreateAsync(); // Initialize request argument(s) string serviceName = ""; string consumerId = ""; // Make the request #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> response = await serviceManagerClient.DisableServiceAsync(serviceName, consumerId); #pragma warning restore CS0612 // Poll until the returned long-running operation is complete Operation <DisableServiceResponse, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync(); // Retrieve the operation result DisableServiceResponse 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 #pragma warning disable CS0612 Operation <DisableServiceResponse, OperationMetadata> retrievedResponse = await serviceManagerClient.PollOnceDisableServiceAsync(operationName); #pragma warning restore CS0612 // Check if the retrieved long-running operation has completed if (retrievedResponse.IsCompleted) { // If it has completed, then access the result DisableServiceResponse retrievedResult = retrievedResponse.Result; } }