示例#1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeDeploymentsResponse response = new DescribeDeploymentsResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeDeploymentsResponse response = new DescribeDeploymentsResponse();

            context.Read();

            response.DescribeDeploymentsResult = DescribeDeploymentsResultUnmarshaller.GetInstance().Unmarshall(context);

            return(response);
        }
示例#3
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeDeploymentsResponse response = new DescribeDeploymentsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Deployments", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<Deployment, DeploymentUnmarshaller>(DeploymentUnmarshaller.Instance);
                    response.Deployments = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
示例#4
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonOpsWorksConfig config = new AmazonOpsWorksConfig();

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

            DescribeDeploymentsResponse resp = new DescribeDeploymentsResponse();
            DescribeDeploymentsRequest  req  = new DescribeDeploymentsRequest
            {
            };

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

            foreach (var obj in resp.Deployments)
            {
                AddObject(obj);
            }
        }
示例#5
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeDeploymentsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("Deployments", targetDepth))
                {
                    context.Read();
                    response.Deployments = new List <Deployment>();
                    DeploymentUnmarshaller unmarshaller = DeploymentUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.Deployments.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.CurrentDepth <= originalDepth)
                {
                    return;
                }
            }

            return;
        }