/// <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 }
/// <summary>Snippet for ListAsync</summary> public async Task ListRequestObjectAsync() { // Snippet: ListAsync(ListTargetTcpProxiesRequest, CallSettings) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest { OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request PagedAsyncEnumerable <TargetTcpProxyList, TargetTcpProxy> response = targetTcpProxiesClient.ListAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((TargetTcpProxy item) => { // Do something with each item Console.WriteLine(item); }); // Or iterate over pages (of server-defined size), performing one RPC per page await response.AsRawResponses().ForEachAsync((TargetTcpProxyList page) => { // 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 = await response.ReadPageAsync(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 }
/// <summary>Snippet for ListAsync</summary> public async Task ListAsync() { // Snippet: ListAsync(string, CallSettings) // Additional: ListAsync(string, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) string project = ""; // Make the request TargetTcpProxyList response = await targetTcpProxiesClient.ListAsync(project); // End snippet }
/// <summary>Snippet for DeleteAsync</summary> public async Task DeleteAsync() { // Snippet: DeleteAsync(string, string, CallSettings) // Additional: DeleteAsync(string, string, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) string project = ""; string targetTcpProxy = ""; // Make the request Operation response = await targetTcpProxiesClient.DeleteAsync(project, targetTcpProxy); // End snippet }
/// <summary>Snippet for InsertAsync</summary> public async Task InsertAsync() { // Snippet: InsertAsync(string, TargetTcpProxy, CallSettings) // Additional: InsertAsync(string, TargetTcpProxy, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) string project = ""; TargetTcpProxy targetTcpProxyResource = new TargetTcpProxy(); // Make the request Operation response = await targetTcpProxiesClient.InsertAsync(project, targetTcpProxyResource); // End snippet }
/// <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 }
/// <summary>Snippet for GetAsync</summary> public async Task GetRequestObjectAsync() { // Snippet: GetAsync(GetTargetTcpProxyRequest, CallSettings) // Additional: GetAsync(GetTargetTcpProxyRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) GetTargetTcpProxyRequest request = new GetTargetTcpProxyRequest { Project = "", TargetTcpProxy = "", }; // Make the request TargetTcpProxy response = await targetTcpProxiesClient.GetAsync(request); // End snippet }
/// <summary>Snippet for DeleteAsync</summary> public async Task DeleteRequestObjectAsync() { // Snippet: DeleteAsync(DeleteTargetTcpProxyRequest, CallSettings) // Additional: DeleteAsync(DeleteTargetTcpProxyRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest { RequestId = "", Project = "", TargetTcpProxy = "", }; // Make the request Operation response = await targetTcpProxiesClient.DeleteAsync(request); // End snippet }
/// <summary>Snippet for InsertAsync</summary> public async Task InsertRequestObjectAsync() { // Snippet: InsertAsync(InsertTargetTcpProxyRequest, CallSettings) // Additional: InsertAsync(InsertTargetTcpProxyRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) InsertTargetTcpProxyRequest request = new InsertTargetTcpProxyRequest { RequestId = "", TargetTcpProxyResource = new TargetTcpProxy(), Project = "", }; // Make the request Operation response = await targetTcpProxiesClient.InsertAsync(request); // End snippet }
/// <summary>Snippet for SetBackendServiceAsync</summary> public async Task SetBackendServiceRequestObjectAsync() { // Snippet: SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest, CallSettings) // Additional: SetBackendServiceAsync(SetBackendServiceTargetTcpProxyRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) SetBackendServiceTargetTcpProxyRequest request = new SetBackendServiceTargetTcpProxyRequest { RequestId = "", Project = "", TargetTcpProxiesSetBackendServiceRequestResource = new TargetTcpProxiesSetBackendServiceRequest(), TargetTcpProxy = "", }; // Make the request Operation response = await targetTcpProxiesClient.SetBackendServiceAsync(request); // End snippet }
/// <summary>Snippet for ListAsync</summary> public async Task ListRequestObjectAsync() { // Snippet: ListAsync(ListTargetTcpProxiesRequest, CallSettings) // Additional: ListAsync(ListTargetTcpProxiesRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) ListTargetTcpProxiesRequest request = new ListTargetTcpProxiesRequest { PageToken = "", MaxResults = 0U, OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request TargetTcpProxyList response = await targetTcpProxiesClient.ListAsync(request); // End snippet }
/// <summary>Snippet for DeleteAsync</summary> public async Task DeleteRequestObjectAsync() { // Snippet: DeleteAsync(DeleteTargetTcpProxyRequest, CallSettings) // Additional: DeleteAsync(DeleteTargetTcpProxyRequest, CancellationToken) // Create client TargetTcpProxiesClient targetTcpProxiesClient = await TargetTcpProxiesClient.CreateAsync(); // Initialize request argument(s) DeleteTargetTcpProxyRequest request = new DeleteTargetTcpProxyRequest { RequestId = "", Project = "", TargetTcpProxy = "", }; // Make the request lro::Operation <Operation, Operation> response = await targetTcpProxiesClient.DeleteAsync(request); // 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.PollOnceDeleteAsync(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 }