Example #1
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListAcceptedPortfolioSharesResponse response = new ListAcceptedPortfolioSharesResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("NextPageToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextPageToken = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("PortfolioDetails", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <PortfolioDetail, PortfolioDetailUnmarshaller>(PortfolioDetailUnmarshaller.Instance);
                    response.PortfolioDetails = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonServiceCatalogConfig config = new AmazonServiceCatalogConfig();

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

            ListAcceptedPortfolioSharesResponse resp = new ListAcceptedPortfolioSharesResponse();

            do
            {
                ListAcceptedPortfolioSharesRequest req = new ListAcceptedPortfolioSharesRequest
                {
                    PageToken = resp.NextPageToken
                    ,
                    PageSize = maxItems
                };

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

                foreach (var obj in resp.PortfolioDetails)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextPageToken));
        }