Exemplo n.º 1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeVirtualGatewaysResponse response = new DescribeVirtualGatewaysResponse();

            context.Read();

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

            context.Read();

            response.DescribeVirtualGatewaysResult = DescribeVirtualGatewaysResultUnmarshaller.GetInstance().Unmarshall(context);

            return(response);
        }
Exemplo n.º 3
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)
        {
            DescribeVirtualGatewaysResponse response = new DescribeVirtualGatewaysResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("virtualGateways", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <VirtualGateway, VirtualGatewayUnmarshaller>(VirtualGatewayUnmarshaller.Instance);
                    response.VirtualGateways = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            DescribeVirtualGatewaysResponse resp = new DescribeVirtualGatewaysResponse();
            DescribeVirtualGatewaysRequest  req  = new DescribeVirtualGatewaysRequest
            {
            };

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

            foreach (var obj in resp.VirtualGateways)
            {
                AddObject(obj);
            }
        }
Exemplo n.º 5
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeVirtualGatewaysResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

            return;
        }