protected override void ProcessRecord() { base.ProcessRecord(); ListProfilesRequest request; try { request = new ListProfilesRequest { CompartmentId = CompartmentId, Name = Name, Limit = Limit, Page = Page, SortOrder = SortOrder, SortBy = SortBy, LifecycleState = LifecycleState, OpcRequestId = OpcRequestId }; IEnumerable <ListProfilesResponse> responses = GetRequestDelegate().Invoke(request); foreach (var item in responses) { response = item; WriteOutput(response, response.ProfileCollection, true); } if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null) { WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources."); } FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <summary>Snippet for ListProfilesAsync</summary> public async Task ListProfilesRequestObjectAsync() { // Snippet: ListProfilesAsync(ListProfilesRequest, CallSettings) // Create client ProfileServiceClient profileServiceClient = await ProfileServiceClient.CreateAsync(); // Initialize request argument(s) ListProfilesRequest request = new ListProfilesRequest { ParentAsTenantName = TenantName.FromProjectTenant("[PROJECT]", "[TENANT]"), ReadMask = new FieldMask(), Filter = "", }; // Make the request PagedAsyncEnumerable <ListProfilesResponse, Profile> response = profileServiceClient.ListProfilesAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((Profile 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((ListProfilesResponse page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Profile 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 <Profile> 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 (Profile 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 ListProfiles</summary> public void ListProfilesRequestObject() { // Snippet: ListProfiles(ListProfilesRequest, CallSettings) // Create client ProfileServiceClient profileServiceClient = ProfileServiceClient.Create(); // Initialize request argument(s) ListProfilesRequest request = new ListProfilesRequest { Parent = "", ReadMask = new FieldMask(), Filter = "", }; // Make the request PagedEnumerable <ListProfilesResponse, Profile> response = profileServiceClient.ListProfiles(request); // Iterate over all response items, lazily performing RPCs as required foreach (Profile 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 (ListProfilesResponse page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Profile 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 <Profile> 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 (Profile 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> /// Creates a new enumerable which will iterate over the responses received from the ListProfiles operation. This enumerable /// will fetch more data from the server as needed. /// </summary> /// <param name="request">The request object containing the details to send</param> /// <param name="retryConfiguration">The configuration for retrying, may be null</param> /// <param name="cancellationToken">The cancellation token object</param> /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns> public IEnumerable <ListProfilesResponse> ListProfilesResponseEnumerator(ListProfilesRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { return(new Common.Utils.ResponseEnumerable <ListProfilesRequest, ListProfilesResponse>( response => response.OpcNextPage, input => { if (!string.IsNullOrEmpty(input)) { request.Page = input; } return request; }, request => client.ListProfiles(request, retryConfiguration, cancellationToken) )); }