protected override void ProcessRecord() { base.ProcessRecord(); ListApmDomainWorkRequestsRequest request; try { request = new ListApmDomainWorkRequestsRequest { ApmDomainId = ApmDomainId, OpcRequestId = OpcRequestId, Page = Page, Limit = Limit }; IEnumerable <ListApmDomainWorkRequestsResponse> responses = GetRequestDelegate().Invoke(request); foreach (var item in responses) { response = item; WriteOutput(response, response.Items, 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); } }
protected override void ProcessRecord() { base.ProcessRecord(); ListApmDomainWorkRequestsRequest request; try { request = new ListApmDomainWorkRequestsRequest { ApmDomainId = ApmDomainId, OpcRequestId = OpcRequestId }; response = client.ListApmDomainWorkRequests(request).GetAwaiter().GetResult(); WriteOutput(response, response.Items, true); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <summary> /// Returns a (paginated) list of work requests related to a specific APM Domain. /// /// </summary> /// <param name="request">The request object containing the details to send. Required.</param> /// <param name="retryConfiguration">The retry configuration that will be used by to send this request. Optional.</param> /// <param name="cancellationToken">The cancellation token to cancel this operation. Optional.</param> /// <returns>A response object containing details about the completed operation</returns> /// <example>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/dot-net-examples/latest/apmcontrolplane/ListApmDomainWorkRequests.cs.html">here</a> to see an example of how to use ListApmDomainWorkRequests API.</example> public async Task <ListApmDomainWorkRequestsResponse> ListApmDomainWorkRequests(ListApmDomainWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { logger.Trace("Called listApmDomainWorkRequests"); Uri uri = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/apmDomains/{apmDomainId}/workRequests".Trim('/'))); HttpMethod method = new HttpMethod("GET"); HttpRequestMessage requestMessage = Converter.ToHttpRequestMessage(uri, method, request); requestMessage.Headers.Add("Accept", "application/json"); GenericRetrier retryingClient = Retrier.GetPreferredRetrier(retryConfiguration, this.retryConfiguration); HttpResponseMessage responseMessage; try { if (retryingClient != null) { responseMessage = await retryingClient.MakeRetryingCall(this.restClient.HttpSend, requestMessage, cancellationToken).ConfigureAwait(false); } else { responseMessage = await this.restClient.HttpSend(requestMessage).ConfigureAwait(false); } this.restClient.CheckHttpResponseMessage(requestMessage, responseMessage); return(Converter.FromHttpResponseMessage <ListApmDomainWorkRequestsResponse>(responseMessage)); } catch (Exception e) { logger.Error($"ListApmDomainWorkRequests failed with error: {e.Message}"); throw; } }