Пример #1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListDeploymentsResponse response = new ListDeploymentsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("deployments", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <string, StringUnmarshaller>(StringUnmarshaller.Instance);
                    response.Deployments = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            ListDeploymentsResponse resp = new ListDeploymentsResponse();

            do
            {
                ListDeploymentsRequest req = new ListDeploymentsRequest
                {
                    NextToken = resp.NextToken
                };

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

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