/// <summary>Snippet for PatchAsync</summary> public async Task PatchAsync() { // Snippet: PatchAsync(string, string, Interconnect, CallSettings) // Additional: PatchAsync(string, string, Interconnect, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) string project = ""; string interconnect = ""; Interconnect interconnectResource = new Interconnect(); // Make the request lro::Operation <Operation, Operation> response = await interconnectsClient.PatchAsync(project, interconnect, interconnectResource); // 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 interconnectsClient.PollOncePatchAsync(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(ListInterconnectsRequest, CallSettings) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) ListInterconnectsRequest request = new ListInterconnectsRequest { OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request PagedAsyncEnumerable <InterconnectList, Interconnect> response = interconnectsClient.ListAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((Interconnect 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((InterconnectList page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Interconnect 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 <Interconnect> 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 (Interconnect 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 InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) string project = ""; // Make the request InterconnectList response = await interconnectsClient.ListAsync(project); // End snippet }
/// <summary>Snippet for InsertAsync</summary> public async Task InsertAsync() { // Snippet: InsertAsync(string, Interconnect, CallSettings) // Additional: InsertAsync(string, Interconnect, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) string project = ""; Interconnect interconnectResource = new Interconnect(); // Make the request Operation response = await interconnectsClient.InsertAsync(project, interconnectResource); // End snippet }
/// <summary>Snippet for GetDiagnosticsAsync</summary> public async Task GetDiagnosticsAsync() { // Snippet: GetDiagnosticsAsync(string, string, CallSettings) // Additional: GetDiagnosticsAsync(string, string, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) string project = ""; string interconnect = ""; // Make the request InterconnectsGetDiagnosticsResponse response = await interconnectsClient.GetDiagnosticsAsync(project, interconnect); // End snippet }
/// <summary>Snippet for GetDiagnosticsAsync</summary> public async Task GetDiagnosticsRequestObjectAsync() { // Snippet: GetDiagnosticsAsync(GetDiagnosticsInterconnectRequest, CallSettings) // Additional: GetDiagnosticsAsync(GetDiagnosticsInterconnectRequest, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) GetDiagnosticsInterconnectRequest request = new GetDiagnosticsInterconnectRequest { Interconnect = "", Project = "", }; // Make the request InterconnectsGetDiagnosticsResponse response = await interconnectsClient.GetDiagnosticsAsync(request); // End snippet }
/// <summary>Snippet for DeleteAsync</summary> public async Task DeleteRequestObjectAsync() { // Snippet: DeleteAsync(DeleteInterconnectRequest, CallSettings) // Additional: DeleteAsync(DeleteInterconnectRequest, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) DeleteInterconnectRequest request = new DeleteInterconnectRequest { RequestId = "", Interconnect = "", Project = "", }; // Make the request Operation response = await interconnectsClient.DeleteAsync(request); // End snippet }
/// <summary>Snippet for InsertAsync</summary> public async Task InsertRequestObjectAsync() { // Snippet: InsertAsync(InsertInterconnectRequest, CallSettings) // Additional: InsertAsync(InsertInterconnectRequest, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) InsertInterconnectRequest request = new InsertInterconnectRequest { RequestId = "", Project = "", InterconnectResource = new Interconnect(), }; // Make the request Operation response = await interconnectsClient.InsertAsync(request); // End snippet }
/// <summary>Snippet for ListAsync</summary> public async Task ListRequestObjectAsync() { // Snippet: ListAsync(ListInterconnectsRequest, CallSettings) // Additional: ListAsync(ListInterconnectsRequest, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) ListInterconnectsRequest request = new ListInterconnectsRequest { PageToken = "", MaxResults = 0U, OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request InterconnectList response = await interconnectsClient.ListAsync(request); // End snippet }
/// <summary>Snippet for DeleteAsync</summary> public async Task DeleteRequestObjectAsync() { // Snippet: DeleteAsync(DeleteInterconnectRequest, CallSettings) // Additional: DeleteAsync(DeleteInterconnectRequest, CancellationToken) // Create client InterconnectsClient interconnectsClient = await InterconnectsClient.CreateAsync(); // Initialize request argument(s) DeleteInterconnectRequest request = new DeleteInterconnectRequest { RequestId = "", Interconnect = "", Project = "", }; // Make the request lro::Operation <Operation, Operation> response = await interconnectsClient.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 interconnectsClient.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 }