/// <summary>Snippet for AggregatedListAsync</summary> public async Task AggregatedListAsync() { // Snippet: AggregatedListAsync(string, CallSettings) // Additional: AggregatedListAsync(string, CancellationToken) // Create client ResourcePoliciesClient resourcePoliciesClient = await ResourcePoliciesClient.CreateAsync(); // Initialize request argument(s) string project = ""; // Make the request ResourcePolicyAggregatedList response = await resourcePoliciesClient.AggregatedListAsync(project); // End snippet }
/// <summary>Snippet for AggregatedListAsync</summary> public async Task AggregatedListRequestObjectAsync() { // Snippet: AggregatedListAsync(AggregatedListResourcePoliciesRequest, CallSettings) // Additional: AggregatedListAsync(AggregatedListResourcePoliciesRequest, CancellationToken) // Create client ResourcePoliciesClient resourcePoliciesClient = await ResourcePoliciesClient.CreateAsync(); // Initialize request argument(s) AggregatedListResourcePoliciesRequest request = new AggregatedListResourcePoliciesRequest { PageToken = "", MaxResults = 0U, Filter = "", IncludeAllScopes = false, OrderBy = "", Project = "", ReturnPartialSuccess = false, }; // Make the request ResourcePolicyAggregatedList response = await resourcePoliciesClient.AggregatedListAsync(request); // End snippet }
/// <summary>Snippet for AggregatedListAsync</summary> public async Task AggregatedListRequestObjectAsync() { // Snippet: AggregatedListAsync(AggregatedListResourcePoliciesRequest, CallSettings) // Create client ResourcePoliciesClient resourcePoliciesClient = await ResourcePoliciesClient.CreateAsync(); // Initialize request argument(s) AggregatedListResourcePoliciesRequest request = new AggregatedListResourcePoliciesRequest { OrderBy = "", Project = "", Filter = "", IncludeAllScopes = false, ReturnPartialSuccess = false, }; // Make the request PagedAsyncEnumerable <ResourcePolicyAggregatedList, KeyValuePair <string, ResourcePoliciesScopedList> > response = resourcePoliciesClient.AggregatedListAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((KeyValuePair <string, ResourcePoliciesScopedList> 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((ResourcePolicyAggregatedList page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (KeyValuePair <string, ResourcePoliciesScopedList> 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 <KeyValuePair <string, ResourcePoliciesScopedList> > 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 (KeyValuePair <string, ResourcePoliciesScopedList> 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 }