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

            context.Read();

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

            context.Read();

            response.DescribePipelinesResult = DescribePipelinesResultUnmarshaller.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)
        {
            DescribePipelinesResponse response = new DescribePipelinesResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("pipelineDescriptionList", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <PipelineDescription, PipelineDescriptionUnmarshaller>(PipelineDescriptionUnmarshaller.Instance);
                    response.PipelineDescriptionList = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            DescribePipelinesResponse resp = new DescribePipelinesResponse();
            DescribePipelinesRequest  req  = new DescribePipelinesRequest
            {
            };

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

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

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

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

            return;
        }