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

            try
            {
                request = new ListAppCatalogListingsRequest
                {
                    Limit         = Limit,
                    Page          = Page,
                    SortOrder     = SortOrder,
                    PublisherName = PublisherName,
                    PublisherType = PublisherType,
                    DisplayName   = DisplayName
                };
                IEnumerable <ListAppCatalogListingsResponse> 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();
            ListAppCatalogListingsRequest request;

            try
            {
                request = new ListAppCatalogListingsRequest
                {
                    Limit         = Limit,
                    Page          = Page,
                    SortOrder     = SortOrder,
                    PublisherName = PublisherName,
                    PublisherType = PublisherType,
                    DisplayName   = DisplayName
                };
                IEnumerable <ListAppCatalogListingsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Example #3
0
        /// <summary>
        /// Lists the published listings.
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public ListAppCatalogListingsResponse ListAppCatalogListings(ListAppCatalogListingsRequest request)
        {
            var uri = new Uri($"{GetEndPoint(CoreServices.AppCatalogListings, this.Region)}?{request.GetOptionQuery()}");

            using (var webResponse = this.RestClient.Get(uri))
                using (var stream = webResponse.GetResponseStream())
                    using (var reader = new StreamReader(stream))
                    {
                        var response = reader.ReadToEnd();

                        return(new ListAppCatalogListingsResponse()
                        {
                            Items = this.JsonSerializer.Deserialize <List <AppCatalogListingSummary> >(response),
                            OpcRequestId = webResponse.Headers.Get("opc-request-id"),
                            OpcNextPage = webResponse.Headers.Get("opc-next-page")
                        });
                    }
        }