public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonAPIGatewayConfig config = new AmazonAPIGatewayConfig();

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

            GetRestApisResponse resp = new GetRestApisResponse();

            do
            {
                GetRestApisRequest req = new GetRestApisRequest
                {
                    Position = resp.Position
                    ,
                    Limit = maxItems
                };

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

                foreach (var obj in resp.Items)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Position));
        }
Example #2
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)
        {
            GetRestApisResponse response = new GetRestApisResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("item", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <RestApi, RestApiUnmarshaller>(RestApiUnmarshaller.Instance);
                    response.Items = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("position", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Position = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
        public async Task <IEnumerable <ApiOverviewModel> > GetAllApis()
        {
            GetRestApisResponse result = await _amazonApiGatewayClient.GetRestApisAsync(new GetRestApisRequest()
            {
                Limit = 100
            }, CancellationToken.None);

            return(result.Items.Where(i => i.Tags.ContainsKey("demo")).Select(x => new ApiOverviewModel
            {
                Id = x.Id,
                Name = x.Name,
                Description = GetDescription(x.Id)
            }));
        }