Beispiel #1
0
        /// <summary>Snippet for SetProxyHeaderAsync</summary>
        public async Task SetProxyHeaderAsync()
        {
            // Snippet: SetProxyHeaderAsync(string, string, TargetTcpProxiesSetProxyHeaderRequest, CallSettings)
            // Additional: SetProxyHeaderAsync(string, string, TargetTcpProxiesSetProxyHeaderRequest, CancellationToken)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();

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

            // 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.PollOnceSetProxyHeaderAsync(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
        }
Beispiel #2
0
 /// <summary>Snippet for SetProxyHeader</summary>
 public void SetProxyHeader()
 {
     // Snippet: SetProxyHeader(string, string, TargetTcpProxiesSetProxyHeaderRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     string project        = "";
     string targetTcpProxy = "";
     TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest();
     // Make the request
     Operation response = targetTcpProxiesClient.SetProxyHeader(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);
     // End snippet
 }
Beispiel #3
0
        /// <summary>Snippet for SetProxyHeaderAsync</summary>
        public async Task SetProxyHeaderAsync()
        {
            // Snippet: SetProxyHeaderAsync(string, string, TargetTcpProxiesSetProxyHeaderRequest, CallSettings)
            // Additional: SetProxyHeaderAsync(string, string, TargetTcpProxiesSetProxyHeaderRequest, CancellationToken)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync();

            // Initialize request argument(s)
            string project        = "";
            string targetTcpProxy = "";
            TargetTcpProxiesSetProxyHeaderRequest targetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest();
            // Make the request
            Operation response = await targetTcpProxiesClient.SetProxyHeaderAsync(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);

            // End snippet
        }
Beispiel #4
0
        /// <summary>
        /// Changes the ProxyHeaderType for TargetTcpProxy.
        /// Documentation https://developers.google.com/compute/alpha/reference/targetTcpProxies/setProxyHeader
        /// 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 ProxyHeader 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 SetProxyHeader(ComputeService service, string project, string targetTcpProxy, TargetTcpProxiesSetProxyHeaderRequest body, TargetTcpProxiesSetProxyHeaderOptionalParms 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.SetProxyHeader(body, project, targetTcpProxy);

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

                // Requesting data.
                return(request.Execute());
            }
            catch (Exception ex)
            {
                throw new Exception("Request TargetTcpProxies.SetProxyHeader failed.", ex);
            }
        }
        /// <summary>
        /// Changes the ProxyHeaderType for TargetTcpProxy.
        /// Documentation https://developers.google.com/compute/alpha/reference/targetTcpProxies/setProxyHeader
        /// 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 ProxyHeader is to be set.</param>
        /// <param name="body">A valid compute alpha body.</param>
        /// <returns>OperationResponse</returns>
        public static Operation SetProxyHeader(computeService service, string project, string targetTcpProxy, TargetTcpProxiesSetProxyHeaderRequest 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.SetProxyHeader(body, project, targetTcpProxy).Execute());
            }
            catch (Exception ex)
            {
                throw new Exception("Request TargetTcpProxies.SetProxyHeader failed.", ex);
            }
        }