/// <summary>Snippet for AggregatedListAsync</summary>
        public async Task AggregatedListRequestObjectAsync()
        {
            // Snippet: AggregatedListAsync(AggregatedListUrlMapsRequest, CallSettings)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            AggregatedListUrlMapsRequest request = new AggregatedListUrlMapsRequest
            {
                OrderBy              = "",
                Project              = "",
                Filter               = "",
                IncludeAllScopes     = false,
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedAsyncEnumerable <UrlMapsAggregatedList, KeyValuePair <string, UrlMapsScopedList> > response = urlMapsClient.AggregatedListAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((KeyValuePair <string, UrlMapsScopedList> 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((UrlMapsAggregatedList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (KeyValuePair <string, UrlMapsScopedList> 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, UrlMapsScopedList> > 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, UrlMapsScopedList> 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 AggregatedListAsync</summary>
        public async Task AggregatedListAsync()
        {
            // Snippet: AggregatedListAsync(string, CallSettings)
            // Additional: AggregatedListAsync(string, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            // Make the request
            UrlMapsAggregatedList response = await urlMapsClient.AggregatedListAsync(project);

            // End snippet
        }
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertAsync()
        {
            // Snippet: InsertAsync(string, UrlMap, CallSettings)
            // Additional: InsertAsync(string, UrlMap, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project        = "";
            UrlMap urlMapResource = new UrlMap();
            // Make the request
            Operation response = await urlMapsClient.InsertAsync(project, urlMapResource);

            // End snippet
        }
        /// <summary>Snippet for GetAsync</summary>
        public async Task GetAsync()
        {
            // Snippet: GetAsync(string, string, CallSettings)
            // Additional: GetAsync(string, string, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            string urlMap  = "";
            // Make the request
            UrlMap response = await urlMapsClient.GetAsync(project, urlMap);

            // End snippet
        }
        /// <summary>Snippet for ValidateAsync</summary>
        public async Task ValidateAsync()
        {
            // Snippet: ValidateAsync(string, string, UrlMapsValidateRequest, CallSettings)
            // Additional: ValidateAsync(string, string, UrlMapsValidateRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            string urlMap  = "";
            UrlMapsValidateRequest urlMapsValidateRequestResource = new UrlMapsValidateRequest();
            // Make the request
            UrlMapsValidateResponse response = await urlMapsClient.ValidateAsync(project, urlMap, urlMapsValidateRequestResource);

            // End snippet
        }
        /// <summary>Snippet for InvalidateCacheAsync</summary>
        public async Task InvalidateCacheAsync()
        {
            // Snippet: InvalidateCacheAsync(string, string, CacheInvalidationRule, CallSettings)
            // Additional: InvalidateCacheAsync(string, string, CacheInvalidationRule, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            string urlMap  = "";
            CacheInvalidationRule cacheInvalidationRuleResource = new CacheInvalidationRule();
            // Make the request
            Operation response = await urlMapsClient.InvalidateCacheAsync(project, urlMap, cacheInvalidationRuleResource);

            // End snippet
        }
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListAsync()
        {
            // Snippet: ListAsync(string, string, int?, CallSettings)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            // Make the request
            PagedAsyncEnumerable <UrlMapList, UrlMap> response = urlMapsClient.ListAsync(project);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((UrlMap 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((UrlMapList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (UrlMap 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 <UrlMap> 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 (UrlMap 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 GetAsync</summary>
        public async Task GetRequestObjectAsync()
        {
            // Snippet: GetAsync(GetUrlMapRequest, CallSettings)
            // Additional: GetAsync(GetUrlMapRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            GetUrlMapRequest request = new GetUrlMapRequest
            {
                Project = "",
                UrlMap  = "",
            };
            // Make the request
            UrlMap response = await urlMapsClient.GetAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ValidateAsync</summary>
        public async Task ValidateRequestObjectAsync()
        {
            // Snippet: ValidateAsync(ValidateUrlMapRequest, CallSettings)
            // Additional: ValidateAsync(ValidateUrlMapRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            ValidateUrlMapRequest request = new ValidateUrlMapRequest
            {
                Project = "",
                UrlMap  = "",
                UrlMapsValidateRequestResource = new UrlMapsValidateRequest(),
            };
            // Make the request
            UrlMapsValidateResponse response = await urlMapsClient.ValidateAsync(request);

            // End snippet
        }
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertRequestObjectAsync()
        {
            // Snippet: InsertAsync(InsertUrlMapRequest, CallSettings)
            // Additional: InsertAsync(InsertUrlMapRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            InsertUrlMapRequest request = new InsertUrlMapRequest
            {
                RequestId      = "",
                UrlMapResource = new UrlMap(),
                Project        = "",
            };
            // Make the request
            Operation response = await urlMapsClient.InsertAsync(request);

            // End snippet
        }
        /// <summary>Snippet for DeleteAsync</summary>
        public async Task DeleteRequestObjectAsync()
        {
            // Snippet: DeleteAsync(DeleteUrlMapRequest, CallSettings)
            // Additional: DeleteAsync(DeleteUrlMapRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            DeleteUrlMapRequest request = new DeleteUrlMapRequest
            {
                RequestId = "",
                Project   = "",
                UrlMap    = "",
            };
            // Make the request
            Operation response = await urlMapsClient.DeleteAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListUrlMapsRequest, CallSettings)
            // Additional: ListAsync(ListUrlMapsRequest, CancellationToken)
            // Create client
            UrlMapsClient urlMapsClient = await UrlMapsClient.CreateAsync();

            // Initialize request argument(s)
            ListUrlMapsRequest request = new ListUrlMapsRequest
            {
                PageToken            = "",
                MaxResults           = 0U,
                OrderBy              = "",
                Project              = "",
                Filter               = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            UrlMapList response = await urlMapsClient.ListAsync(request);

            // End snippet
        }