/// <summary>Snippet for GetNatMappingInfoAsync</summary>
        public async Task GetNatMappingInfoRequestObjectAsync()
        {
            // Snippet: GetNatMappingInfoAsync(GetNatMappingInfoRoutersRequest, CallSettings)
            // Create client
            RoutersClient routersClient = await RoutersClient.CreateAsync();

            // Initialize request argument(s)
            GetNatMappingInfoRoutersRequest request = new GetNatMappingInfoRoutersRequest
            {
                Region  = "",
                Router  = "",
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedAsyncEnumerable <VmEndpointNatMappingsList, VmEndpointNatMappings> response = routersClient.GetNatMappingInfoAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((VmEndpointNatMappings 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((VmEndpointNatMappingsList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (VmEndpointNatMappings 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 <VmEndpointNatMappings> 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 (VmEndpointNatMappings 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
        }
Ejemplo n.º 2
0
 /// <summary>Snippet for GetNatMappingInfo</summary>
 public void GetNatMappingInfoRequestObject()
 {
     // Snippet: GetNatMappingInfo(GetNatMappingInfoRoutersRequest, CallSettings)
     // Create client
     RoutersClient routersClient = RoutersClient.Create();
     // Initialize request argument(s)
     GetNatMappingInfoRoutersRequest request = new GetNatMappingInfoRoutersRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         Filter               = "",
         Region               = "",
         Router               = "",
         OrderBy              = "",
         Project              = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     VmEndpointNatMappingsList response = routersClient.GetNatMappingInfo(request);
     // End snippet
 }
Ejemplo n.º 3
0
        /// <summary>Snippet for GetNatMappingInfoAsync</summary>
        public async Task GetNatMappingInfoRequestObjectAsync()
        {
            // Snippet: GetNatMappingInfoAsync(GetNatMappingInfoRoutersRequest, CallSettings)
            // Additional: GetNatMappingInfoAsync(GetNatMappingInfoRoutersRequest, CancellationToken)
            // Create client
            RoutersClient routersClient = await RoutersClient.CreateAsync();

            // Initialize request argument(s)
            GetNatMappingInfoRoutersRequest request = new GetNatMappingInfoRoutersRequest
            {
                PageToken            = "",
                MaxResults           = 0U,
                Filter               = "",
                Region               = "",
                Router               = "",
                OrderBy              = "",
                Project              = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            VmEndpointNatMappingsList response = await routersClient.GetNatMappingInfoAsync(request);

            // End snippet
        }