/// <summary>Snippet for SearchAllResources</summary> public async Task SearchAllResourcesRequestObjectAsync() { // Snippet: SearchAllResourcesAsync(SearchAllResourcesRequest, CallSettings) // Create client AssetServiceClient assetServiceClient = await AssetServiceClient.CreateAsync(); // Initialize request argument(s) SearchAllResourcesRequest request = new SearchAllResourcesRequest { Scope = "", Query = "", AssetTypes = { "", }, OrderBy = "", }; // Make the request PagedAsyncEnumerable <SearchAllResourcesResponse, ResourceSearchResult> response = assetServiceClient.SearchAllResourcesAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((ResourceSearchResult 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((SearchAllResourcesResponse page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (ResourceSearchResult 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 <ResourceSearchResult> 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 (ResourceSearchResult 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 SearchAllResources</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void SearchAllResourcesRequestObject() { // Create client AssetServiceClient assetServiceClient = AssetServiceClient.Create(); // Initialize request argument(s) SearchAllResourcesRequest request = new SearchAllResourcesRequest { Scope = "", Query = "", AssetTypes = { "", }, OrderBy = "", }; // Make the request PagedEnumerable <SearchAllResourcesResponse, StandardResourceMetadata> response = assetServiceClient.SearchAllResources(request); // Iterate over all response items, lazily performing RPCs as required foreach (StandardResourceMetadata 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 (SearchAllResourcesResponse page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (StandardResourceMetadata 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 <StandardResourceMetadata> 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 (StandardResourceMetadata 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; }
public SearchAllResourcesResponse SearchAllResources(string scope, string query) { // Create the client. AssetServiceClient client = AssetServiceClient.Create(); // Build the request. SearchAllResourcesRequest request = new SearchAllResourcesRequest { Scope = scope, Query = query, }; // Call the API. PagedEnumerable <SearchAllResourcesResponse, ResourceSearchResult> response = client.SearchAllResources(request); // Return the first page. IEnumerable <SearchAllResourcesResponse> byPages = response.AsRawResponses(); return(byPages.First()); }
/// <summary> /// Searches all the resources under a given accessible CRM scope /// (project/folder/organization). This RPC gives callers /// especially admins the ability to search all the resources under a scope, /// even if they don't have .get permission of all the resources. Callers /// should have cloud.assets.SearchAllResources permission on the requested /// scope, otherwise it will be rejected. /// </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="StandardResourceMetadata"/> resources.</returns> public override gax::PagedAsyncEnumerable <SearchAllResourcesResponse, StandardResourceMetadata> SearchAllResourcesAsync(SearchAllResourcesRequest request, gaxgrpc::CallSettings callSettings = null) { Modify_SearchAllResourcesRequest(ref request, ref callSettings); return(new gaxgrpc::GrpcPagedAsyncEnumerable <SearchAllResourcesRequest, SearchAllResourcesResponse, StandardResourceMetadata>(_callSearchAllResources, request, callSettings)); }
partial void Modify_SearchAllResourcesRequest(ref SearchAllResourcesRequest request, ref gaxgrpc::CallSettings settings);
/// <summary> /// Searches all the resources under a given accessible CRM scope /// (project/folder/organization). This RPC gives callers /// especially admins the ability to search all the resources under a scope, /// even if they don't have .get permission of all the resources. Callers /// should have cloud.assets.SearchAllResources permission on the requested /// scope, otherwise it will be rejected. /// </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="StandardResourceMetadata"/> resources.</returns> public virtual gax::PagedAsyncEnumerable <SearchAllResourcesResponse, StandardResourceMetadata> SearchAllResourcesAsync(SearchAllResourcesRequest request, gaxgrpc::CallSettings callSettings = null) => throw new sys::NotImplementedException();