/// <summary>Snippet for ListTagBindingsAsync</summary>
        public async Task ListTagBindingsRequestObjectAsync()
        {
            // Snippet: ListTagBindingsAsync(ListTagBindingsRequest, CallSettings)
            // Create client
            TagBindingsClient tagBindingsClient = await TagBindingsClient.CreateAsync();

            // Initialize request argument(s)
            ListTagBindingsRequest request = new ListTagBindingsRequest
            {
                ParentAsResourceName = new UnparsedResourceName("a/wildcard/resource"),
            };
            // Make the request
            PagedAsyncEnumerable <ListTagBindingsResponse, TagBinding> response = tagBindingsClient.ListTagBindingsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((TagBinding 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((ListTagBindingsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (TagBinding 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 <TagBinding> 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 (TagBinding 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>
 /// Lists the TagBindings for the given cloud resource, as specified with
 /// `parent`.
 ///
 /// NOTE: The `parent` field is expected to be a full resource name:
 /// https://cloud.google.com/apis/design/resource_names#full_resource_name
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="TagBinding"/> resources.</returns>
 public override gax::PagedAsyncEnumerable <ListTagBindingsResponse, TagBinding> ListTagBindingsAsync(ListTagBindingsRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListTagBindingsRequest(ref request, ref callSettings);
     return(new gaxgrpc::GrpcPagedAsyncEnumerable <ListTagBindingsRequest, ListTagBindingsResponse, TagBinding>(_callListTagBindings, request, callSettings));
 }
 partial void Modify_ListTagBindingsRequest(ref ListTagBindingsRequest request, ref gaxgrpc::CallSettings settings);
 /// <summary>
 /// Lists the TagBindings for the given cloud resource, as specified with
 /// `parent`.
 ///
 /// NOTE: The `parent` field is expected to be a full resource name:
 /// https://cloud.google.com/apis/design/resource_names#full_resource_name
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="TagBinding"/> resources.</returns>
 public virtual gax::PagedAsyncEnumerable <ListTagBindingsResponse, TagBinding> ListTagBindingsAsync(ListTagBindingsRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();