コード例 #1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeElasticLoadBalancersResponse response = new DescribeElasticLoadBalancersResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeElasticLoadBalancersResponse response = new DescribeElasticLoadBalancersResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ElasticLoadBalancers", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ElasticLoadBalancer, ElasticLoadBalancerUnmarshaller>(ElasticLoadBalancerUnmarshaller.Instance);
                    response.ElasticLoadBalancers = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
コード例 #3
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);

            DescribeElasticLoadBalancersResponse resp = new DescribeElasticLoadBalancersResponse();
            DescribeElasticLoadBalancersRequest  req  = new DescribeElasticLoadBalancersRequest
            {
            };

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

            foreach (var obj in resp.ElasticLoadBalancers)
            {
                AddObject(obj);
            }
        }
コード例 #4
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeElasticLoadBalancersResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

            return;
        }