Esempio n. 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)
        {
            ListServiceActionsForProvisioningArtifactResponse response = new ListServiceActionsForProvisioningArtifactResponse();

            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("ServiceActionSummaries", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ServiceActionSummary, ServiceActionSummaryUnmarshaller>(ServiceActionSummaryUnmarshaller.Instance);
                    response.ServiceActionSummaries = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
Esempio n. 2
0
        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);

            ListServiceActionsForProvisioningArtifactResponse resp = new ListServiceActionsForProvisioningArtifactResponse();

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

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

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