protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListIncidentsRequest request;

            try
            {
                request = new ListIncidentsRequest
                {
                    Csi            = Csi,
                    CompartmentId  = CompartmentId,
                    Ocid           = Ocid,
                    Limit          = Limit,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    LifecycleState = LifecycleState,
                    Page           = Page,
                    OpcRequestId   = OpcRequestId,
                    Homeregion     = Homeregion,
                    ProblemType    = ProblemType
                };
                IEnumerable <ListIncidentsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Пример #2
0
        /// <summary>
        /// This API returns the list of incidents raised by the tenant
        /// </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>
        public async Task <ListIncidentsResponse> ListIncidents(ListIncidentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called listIncidents");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/v2/incidents".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);
                }
                else
                {
                    responseMessage = await this.restClient.HttpSend(requestMessage);
                }

                return(Converter.FromHttpResponseMessage <ListIncidentsResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ListIncidents failed with error: {e.Message}");
                throw;
            }
        }
Пример #3
0
        /// <summary>
        /// Returns the list of support tickets raised by the tenancy.
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public ListIncidentsResponse ListIncidents(ListIncidentsRequest request)
        {
            var uri = new Uri($"{GetEndPoint(SupportManagementServices.Incidents, this.Region)}?{request.GetOptionQuery()}");

            var headers = new HttpRequestHeaderParam()
            {
                OpcRequestId = request.OpcRequestId
            };

            headers.FreeHeader.Add("csi", request.Csi);
            headers.FreeHeader.Add("ocid", request.Ocid);
            if (!string.IsNullOrEmpty(request.Homeregion))
            {
                headers.FreeHeader.Add("homeregion", request.Homeregion);
            }
            using (var webResponse = this.RestClient.Get(uri, headers))
                using (var stream = webResponse.GetResponseStream())
                    using (var reader = new StreamReader(stream))
                    {
                        var response = reader.ReadToEnd();

                        return(new ListIncidentsResponse()
                        {
                            Items = this.JsonSerializer.Deserialize <List <IncidentSummary> >(response),
                            OpcRequestId = webResponse.Headers.Get("opc-request-id"),
                            OpcNextPage = webResponse.Headers.Get("opc-next-page"),
                            ETag = webResponse.Headers.Get("ETag")
                        });
                    }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListIncidents 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 <ListIncidentsResponse> ListIncidentsResponseEnumerator(ListIncidentsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListIncidentsRequest, ListIncidentsResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListIncidents(request, retryConfiguration, cancellationToken)
                ));
 }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListIncidentsRequest request;

            try
            {
                request = new ListIncidentsRequest
                {
                    Csi            = Csi,
                    CompartmentId  = CompartmentId,
                    Ocid           = Ocid,
                    Limit          = Limit,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    LifecycleState = LifecycleState,
                    Page           = Page,
                    OpcRequestId   = OpcRequestId,
                    Homeregion     = Homeregion,
                    ProblemType    = ProblemType
                };
                IEnumerable <ListIncidentsResponse> 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);
            }
        }
        public static void Example(ClientConfig config)
        {
            var client = new SupportManagementClient(config)
            {
                Region = config.HomeRegion
            };

            var commercialClient = new CommercialClient(config)
            {
                Region = config.HomeRegion
            };

            ListPurchaseEntitlementsRequest listPurchaseEntitlementsRequest = new ListPurchaseEntitlementsRequest
            {
                CompartmentId = config.TenancyId
            };
            var entitys = commercialClient.ListPurchaseEntitlements(listPurchaseEntitlementsRequest);

            if (entitys.Items.Count <= 0 && entitys.Items.Where(e => !string.IsNullOrEmpty(e.CsiNumber)).Count() <= 0)
            {
                Console.WriteLine("not entity data!");
            }

            ListIncidentsRequest listIncidentsRequest = new ListIncidentsRequest
            {
                CompartmentId = config.TenancyId,
                Csi           = entitys.Items[0].CsiNumber,
                Ocid          = config.UserId
            };

            var incidents = client.ListIncidents(listIncidentsRequest);

            foreach (var incident in incidents.Items)
            {
                Console.WriteLine("* " + incident.Key + ": " + incident.Ticket.Title);
                Console.WriteLine("  status - " + incident.Ticket.LifecycleState);
            }
        }