Пример #1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeCachediSCSIVolumesResponse response = new DescribeCachediSCSIVolumesResponse();

            context.Read();

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

            context.Read();

            response.DescribeCachediSCSIVolumesResult = DescribeCachediSCSIVolumesResultUnmarshaller.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)
        {
            DescribeCachediSCSIVolumesResponse response = new DescribeCachediSCSIVolumesResponse();

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

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

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

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

            DescribeCachediSCSIVolumesResponse resp = new DescribeCachediSCSIVolumesResponse();
            DescribeCachediSCSIVolumesRequest  req  = new DescribeCachediSCSIVolumesRequest
            {
            };

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

            foreach (var obj in resp.CachediSCSIVolumes)
            {
                AddObject(obj);
            }
        }
Пример #5
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeCachediSCSIVolumesResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

            return;
        }