Exemplo n.º 1
0
        /// <summary>Snippet for SetBackendServiceAsync</summary>
        public async Task SetBackendServiceAsync()
        {
            // Snippet: SetBackendServiceAsync(string, string, TargetTcpProxiesSetBackendServiceRequest, CallSettings)
            // Additional: SetBackendServiceAsync(string, string, TargetTcpProxiesSetBackendServiceRequest, CancellationToken)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();

            // Initialize request argument(s)
            string project        = "";
            string targetTcpProxy = "";
            TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
            // Make the request
            lro::Operation <Operation, Operation> response = await targetTcpProxiesClient.SetBackendServiceAsync(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);

            // Poll until the returned long-running operation is complete
            lro::Operation <Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();

            // 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 = await targetTcpProxiesClient.PollOnceSetBackendServiceAsync(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
        }
Exemplo n.º 2
0
 /// <summary>Snippet for SetBackendService</summary>
 public void SetBackendService()
 {
     // Snippet: SetBackendService(string, string, TargetTcpProxiesSetBackendServiceRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     string project        = "";
     string targetTcpProxy = "";
     TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
     // Make the request
     Operation response = targetTcpProxiesClient.SetBackendService(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);
     // End snippet
 }
Exemplo n.º 3
0
        /// <summary>Snippet for SetBackendServiceAsync</summary>
        public async Task SetBackendServiceAsync()
        {
            // Snippet: SetBackendServiceAsync(string, string, TargetTcpProxiesSetBackendServiceRequest, CallSettings)
            // Additional: SetBackendServiceAsync(string, string, TargetTcpProxiesSetBackendServiceRequest, CancellationToken)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();

            // Initialize request argument(s)
            string project        = "";
            string targetTcpProxy = "";
            TargetTcpProxiesSetBackendServiceRequest targetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest();
            // Make the request
            Operation response = await targetTcpProxiesClient.SetBackendServiceAsync(project, targetTcpProxy, targetTcpProxiesSetBackendServiceRequestResource);

            // End snippet
        }
Exemplo n.º 4
0
        /// <summary>
        /// Changes the BackendService for TargetTcpProxy.
        /// Documentation https://developers.google.com/compute/alpha/reference/targetTcpProxies/setBackendService
        /// Generation Note: This does not always build corectly.  Google needs to standardise things I need to figuer out which ones are wrong.
        /// </summary>
        /// <param name="service">Authenticated Compute service.</param>
        /// <param name="project">Project ID for this request.</param>
        /// <param name="targetTcpProxy">Name of the TargetTcpProxy resource whose BackendService resource is to be set.</param>
        /// <param name="body">A valid Compute alpha body.</param>
        /// <param name="optional">Optional paramaters.</param>
        /// <returns>OperationResponse</returns>
        public static Operation SetBackendService(ComputeService service, string project, string targetTcpProxy, TargetTcpProxiesSetBackendServiceRequest body, TargetTcpProxiesSetBackendServiceOptionalParms optional = null)
        {
            try
            {
                // Initial validation.
                if (service == null)
                {
                    throw new ArgumentNullException("service");
                }
                if (body == null)
                {
                    throw new ArgumentNullException("body");
                }
                if (project == null)
                {
                    throw new ArgumentNullException(project);
                }
                if (targetTcpProxy == null)
                {
                    throw new ArgumentNullException(targetTcpProxy);
                }

                // Building the initial request.
                var request = service.TargetTcpProxies.SetBackendService(body, project, targetTcpProxy);

                // Applying optional parameters to the request.
                request = (TargetTcpProxiesResource.SetBackendServiceRequest)SampleHelpers.ApplyOptionalParms(request, optional);

                // Requesting data.
                return(request.Execute());
            }
            catch (Exception ex)
            {
                throw new Exception("Request TargetTcpProxies.SetBackendService failed.", ex);
            }
        }
        /// <summary>
        /// Changes the BackendService for TargetTcpProxy.
        /// Documentation https://developers.google.com/compute/alpha/reference/targetTcpProxies/setBackendService
        /// Generation Note: This does not always build corectly.  Google needs to standardise things I need to figuer out which ones are wrong.
        /// </summary>
        /// <param name="service">Authenticated compute service.</param>
        /// <param name="project">Project ID for this request.</param>
        /// <param name="targetTcpProxy">Name of the TargetTcpProxy resource whose BackendService resource is to be set.</param>
        /// <param name="body">A valid compute alpha body.</param>
        /// <returns>OperationResponse</returns>
        public static Operation SetBackendService(computeService service, string project, string targetTcpProxy, TargetTcpProxiesSetBackendServiceRequest body)
        {
            try
            {
                // Initial validation.
                if (service == null)
                {
                    throw new ArgumentNullException("service");
                }
                if (body == null)
                {
                    throw new ArgumentNullException("body");
                }
                if (project == null)
                {
                    throw new ArgumentNullException(project);
                }
                if (targetTcpProxy == null)
                {
                    throw new ArgumentNullException(targetTcpProxy);
                }

                // Make the request.
                return(service.TargetTcpProxies.SetBackendService(body, project, targetTcpProxy).Execute());
            }
            catch (Exception ex)
            {
                throw new Exception("Request TargetTcpProxies.SetBackendService failed.", ex);
            }
        }