Esempio n. 1
0
 /// <summary>Snippet for AggregatedList</summary>
 public void AggregatedList()
 {
     // Snippet: AggregatedList(string, CallSettings)
     // Create client
     NodeGroupsClient nodeGroupsClient = NodeGroupsClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     NodeGroupAggregatedList response = nodeGroupsClient.AggregatedList(project);
     // End snippet
 }
Esempio n. 2
0
 /// <summary>Snippet for AggregatedList</summary>
 public void AggregatedListRequestObject()
 {
     // Snippet: AggregatedList(AggregatedListNodeGroupsRequest, CallSettings)
     // Create client
     NodeGroupsClient nodeGroupsClient = NodeGroupsClient.Create();
     // Initialize request argument(s)
     AggregatedListNodeGroupsRequest request = new AggregatedListNodeGroupsRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         Filter               = "",
         IncludeAllScopes     = false,
         OrderBy              = "",
         Project              = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     NodeGroupAggregatedList response = nodeGroupsClient.AggregatedList(request);
     // End snippet
 }