Пример #1
0
        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);

            ListFileSystemAssociationsResponse resp = new ListFileSystemAssociationsResponse();

            do
            {
                ListFileSystemAssociationsRequest req = new ListFileSystemAssociationsRequest
                {
                    Marker = resp.NextMarker
                    ,
                    Limit = maxItems
                };

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

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

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("FileSystemAssociationSummaryList", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <FileSystemAssociationSummary, FileSystemAssociationSummaryUnmarshaller>(FileSystemAssociationSummaryUnmarshaller.Instance);
                    response.FileSystemAssociationSummaryList = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("Marker", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Marker = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("NextMarker", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextMarker = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }