/// <summary>Snippet for AggregatedList</summary>
 public void AggregatedList()
 {
     // Snippet: AggregatedList(string, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     OperationAggregatedList response = globalOperationsClient.AggregatedList(project);
     // End snippet
 }
 /// <summary>Snippet for AggregatedList</summary>
 public void AggregatedListRequestObject()
 {
     // Snippet: AggregatedList(AggregatedListGlobalOperationsRequest, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     AggregatedListGlobalOperationsRequest request = new AggregatedListGlobalOperationsRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         OrderBy              = "",
         Project              = "",
         Filter               = "",
         IncludeAllScopes     = false,
         ReturnPartialSuccess = false,
     };
     // Make the request
     OperationAggregatedList response = globalOperationsClient.AggregatedList(request);
     // End snippet
 }
Exemple #3
0
        /// <summary>Snippet for AggregatedList</summary>
        public void AggregatedListRequestObject()
        {
            // Snippet: AggregatedList(AggregatedListGlobalOperationsRequest, CallSettings)
            // Create client
            GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
            // Initialize request argument(s)
            AggregatedListGlobalOperationsRequest request = new AggregatedListGlobalOperationsRequest
            {
                OrderBy              = "",
                Project              = "",
                Filter               = "",
                IncludeAllScopes     = false,
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedEnumerable <OperationAggregatedList, KeyValuePair <string, OperationsScopedList> > response = globalOperationsClient.AggregatedList(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (KeyValuePair <string, OperationsScopedList> 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 (OperationAggregatedList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (KeyValuePair <string, OperationsScopedList> 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, OperationsScopedList> > 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 (KeyValuePair <string, OperationsScopedList> 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
        }