private static void UnmarshallResult(XmlUnmarshallerContext context, DescribeUpdateActionsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            if (context.IsStartOfDocument)
            {
                targetDepth += 2;
            }

            while (context.ReadAtDepth(originalDepth))
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("Marker", targetDepth))
                    {
                        var unmarshaller = StringUnmarshaller.Instance;
                        response.Marker = unmarshaller.Unmarshall(context);
                        continue;
                    }
                    if (context.TestExpression("UpdateActions/UpdateAction", targetDepth))
                    {
                        var unmarshaller = UpdateActionUnmarshaller.Instance;
                        var item         = unmarshaller.Unmarshall(context);
                        response.UpdateActions.Add(item);
                        continue;
                    }
                }
            }

            return;
        }
Exemplo n.º 2
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonElastiCacheConfig config = new AmazonElastiCacheConfig();

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

            DescribeUpdateActionsResponse resp = new DescribeUpdateActionsResponse();

            do
            {
                DescribeUpdateActionsRequest req = new DescribeUpdateActionsRequest
                {
                    Marker = resp.Marker
                    ,
                    MaxRecords = maxItems
                };

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

                foreach (var obj in resp.UpdateActions)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Marker));
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            DescribeUpdateActionsResponse response = new DescribeUpdateActionsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.IsStartElement)
                {
                    if (context.TestExpression("DescribeUpdateActionsResult", 2))
                    {
                        UnmarshallResult(context, response);
                        continue;
                    }

                    if (context.TestExpression("ResponseMetadata", 2))
                    {
                        response.ResponseMetadata = ResponseMetadataUnmarshaller.Instance.Unmarshall(context);
                    }
                }
            }

            return(response);
        }