Esempio n. 1
0
        private ListReportsResponse ListReports(ListReportsRequest request)
        {
            IList <Report> reports = new List <Report>();

            if (request.OrderRef != null)
            {
                // list only reports for this order
                var order = this.PersistenceContext.Load <Order>(request.OrderRef, EntityLoadFlags.Proxy);
                reports = this.PersistenceContext.GetBroker <IPatientHistoryBroker>().GetReportsForOrder(order);
            }
            else if (request.PatientRef != null)
            {
                var patient = this.PersistenceContext.Load <Patient>(request.PatientRef, EntityLoadFlags.Proxy);
                reports = this.PersistenceContext.GetBroker <IPatientHistoryBroker>().GetReportHistory(patient);
            }

            var assembler       = new BrowsePatientDataAssembler();
            var reportListItems = new List <ReportListItem>();

            foreach (var report in reports)
            {
                foreach (var procedure in report.Procedures)
                {
                    reportListItems.Add(assembler.CreateReportListItem(report, procedure, this.PersistenceContext));
                }
            }

            return(new ListReportsResponse(reportListItems));
        }
Esempio n. 2
0
        /// <summary>
        /// Lists reports in the compartment that match the specified report type and date.
        /// </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/marketplace/ListReports.cs.html">here</a> to see an example of how to use ListReports API.</example>
        public async Task <ListReportsResponse> ListReports(ListReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called listReports");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/reports".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 <ListReportsResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ListReports failed with error: {e.Message}");
                throw;
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListReportsRequest request;

            try
            {
                request = new ListReportsRequest
                {
                    ReportType    = ReportType,
                    Date          = Date,
                    CompartmentId = CompartmentId,
                    OpcRequestId  = OpcRequestId,
                    Page          = Page
                };
                IEnumerable <ListReportsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.ReportCollection, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && 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);
            }
        }
Esempio n. 4
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListReportsRequest request;

            try
            {
                request = new ListReportsRequest
                {
                    ReportType    = ReportType,
                    Date          = Date,
                    CompartmentId = CompartmentId,
                    OpcRequestId  = OpcRequestId,
                    Page          = Page
                };
                IEnumerable <ListReportsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.ReportCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Esempio n. 5
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonCodeBuildConfig config = new AmazonCodeBuildConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonCodeBuildClient client = new AmazonCodeBuildClient(creds, config);

            ListReportsResponse resp = new ListReportsResponse();

            do
            {
                ListReportsRequest req = new ListReportsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

                resp = client.ListReports(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.Reports)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListReports 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 <ListReportsResponse> ListReportsResponseEnumerator(ListReportsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListReportsRequest, ListReportsResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListReports(request, retryConfiguration, cancellationToken)
                ));
 }
Esempio n. 7
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListReportsRequest request;

            try
            {
                request = new ListReportsRequest
                {
                    CompartmentId          = CompartmentId,
                    CompartmentIdInSubtree = CompartmentIdInSubtree,
                    AccessLevel            = AccessLevel,
                    DisplayName            = DisplayName,
                    Limit              = Limit,
                    Page               = Page,
                    SortOrder          = SortOrder,
                    SortBy             = SortBy,
                    ReportDefinitionId = ReportDefinitionId,
                    OpcRequestId       = OpcRequestId,
                    LifecycleState     = LifecycleState
                };
                IEnumerable <ListReportsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.ReportCollection, 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);
            }
        }