public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeElasticIpsResponse response = new DescribeElasticIpsResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
示例#2
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeElasticIpsResponse response = new DescribeElasticIpsResponse();

            context.Read();

            response.DescribeElasticIpsResult = DescribeElasticIpsResultUnmarshaller.GetInstance().Unmarshall(context);

            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)
        {
            DescribeElasticIpsResponse response = new DescribeElasticIpsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ElasticIps", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ElasticIp, ElasticIpUnmarshaller>(ElasticIpUnmarshaller.Instance);
                    response.ElasticIps = 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);

            DescribeElasticIpsResponse resp = new DescribeElasticIpsResponse();
            DescribeElasticIpsRequest  req  = new DescribeElasticIpsRequest
            {
            };

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

            foreach (var obj in resp.ElasticIps)
            {
                AddObject(obj);
            }
        }
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeElasticIpsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

            return;
        }