コード例 #1
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
            lro::Operation <Operation, Operation> response = targetTcpProxiesClient.SetProxyHeader(project, targetTcpProxy, targetTcpProxiesSetProxyHeaderRequestResource);

            // 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 = targetTcpProxiesClient.PollOnceSetProxyHeader(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
        }
コード例 #2
0
        /// <summary>Snippet for Delete</summary>
        public void DeleteRequestObject()
        {
            // Snippet: Delete(DeleteTargetTcpProxyRequest, CallSettings)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
            // Initialize request argument(s)
            DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest
            {
                RequestId      = "",
                Project        = "",
                TargetTcpProxy = "",
            };
            // Make the request
            lro::Operation <Operation, Operation> response = targetTcpProxiesClient.Delete(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 = targetTcpProxiesClient.PollOnceDelete(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
        }
コード例 #3
0
 /// <summary>Snippet for List</summary>
 public void List()
 {
     // Snippet: List(string, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     TargetTcpProxyList response = targetTcpProxiesClient.List(project);
     // End snippet
 }
コード例 #4
0
 /// <summary>Snippet for Delete</summary>
 public void Delete()
 {
     // Snippet: Delete(string, string, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     string project        = "";
     string targetTcpProxy = "";
     // Make the request
     Operation response = targetTcpProxiesClient.Delete(project, targetTcpProxy);
     // End snippet
 }
コード例 #5
0
 /// <summary>Snippet for Insert</summary>
 public void Insert()
 {
     // Snippet: Insert(string, TargetTcpProxy, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     string         project = "";
     TargetTcpProxy targetTcpProxyResource = new TargetTcpProxy();
     // Make the request
     Operation response = targetTcpProxiesClient.Insert(project, targetTcpProxyResource);
     // End snippet
 }
コード例 #6
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
 }
コード例 #7
0
        /// <summary>Snippet for List</summary>
        public void ListRequestObject()
        {
            // Snippet: List(ListTargetTcpProxiesRequest, CallSettings)
            // Create client
            TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
            // Initialize request argument(s)
            ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest
            {
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedEnumerable <TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.List(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (TargetTcpProxy item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (TargetTcpProxyList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (TargetTcpProxy item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            }

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <TargetTcpProxy> singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (TargetTcpProxy item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
コード例 #8
0
 /// <summary>Snippet for Get</summary>
 public void GetRequestObject()
 {
     // Snippet: Get(GetTargetTcpProxyRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     GetTargetTcpProxyRequest request = new GetTargetTcpProxyRequest
     {
         Project        = "",
         TargetTcpProxy = "",
     };
     // Make the request
     TargetTcpProxy response = targetTcpProxiesClient.Get(request);
     // End snippet
 }
コード例 #9
0
 /// <summary>Snippet for Delete</summary>
 public void DeleteRequestObject()
 {
     // Snippet: Delete(DeleteTargetTcpProxyRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest
     {
         RequestId      = "",
         Project        = "",
         TargetTcpProxy = "",
     };
     // Make the request
     Operation response = targetTcpProxiesClient.Delete(request);
     // End snippet
 }
コード例 #10
0
 /// <summary>Snippet for Insert</summary>
 public void InsertRequestObject()
 {
     // Snippet: Insert(InsertTargetTcpProxyRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     InsertTargetTcpProxyRequest request = new InsertTargetTcpProxyRequest
     {
         RequestId = "",
         TargetTcpProxyResource = new TargetTcpProxy(),
         Project = "",
     };
     // Make the request
     Operation response = targetTcpProxiesClient.Insert(request);
     // End snippet
 }
コード例 #11
0
 /// <summary>Snippet for SetProxyHeader</summary>
 public void SetProxyHeaderRequestObject()
 {
     // Snippet: SetProxyHeader(SetProxyHeaderTargetTcpProxyRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     SetProxyHeaderTargetTcpProxyRequest request = new SetProxyHeaderTargetTcpProxyRequest
     {
         RequestId = "",
         TargetTcpProxiesSetProxyHeaderRequestResource = new TargetTcpProxiesSetProxyHeaderRequest(),
         Project        = "",
         TargetTcpProxy = "",
     };
     // Make the request
     Operation response = targetTcpProxiesClient.SetProxyHeader(request);
     // End snippet
 }
コード例 #12
0
 /// <summary>Snippet for List</summary>
 public void ListRequestObject()
 {
     // Snippet: List(ListTargetTcpProxiesRequest, CallSettings)
     // Create client
     TargetTcpProxiesClient targetTcpProxiesClient = TargetTcpProxiesClient.Create();
     // Initialize request argument(s)
     ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         OrderBy              = "",
         Project              = "",
         Filter               = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     TargetTcpProxyList response = targetTcpProxiesClient.List(request);
     // End snippet
 }