Example #1
0
        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);

            GetUsagePlansResponse resp = new GetUsagePlansResponse();

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

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

                foreach (var obj in resp.Items)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.Position));
        }
        /// <summary>
        /// Initiates the asynchronous execution of the GetUsagePlans operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetUsagePlans operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<GetUsagePlansResponse> GetUsagePlansAsync(GetUsagePlansRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetUsagePlansRequestMarshaller();
            var unmarshaller = GetUsagePlansResponseUnmarshaller.Instance;

            return InvokeAsync<GetUsagePlansRequest,GetUsagePlansResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
        internal GetUsagePlansResponse GetUsagePlans(GetUsagePlansRequest request)
        {
            var marshaller = new GetUsagePlansRequestMarshaller();
            var unmarshaller = GetUsagePlansResponseUnmarshaller.Instance;

            return Invoke<GetUsagePlansRequest,GetUsagePlansResponse>(request, marshaller, unmarshaller);
        }
        /// <summary>
        /// Initiates the asynchronous execution of the GetUsagePlans operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetUsagePlans operation on AmazonAPIGatewayClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetUsagePlans
        ///         operation.</returns>
        public IAsyncResult BeginGetUsagePlans(GetUsagePlansRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new GetUsagePlansRequestMarshaller();
            var unmarshaller = GetUsagePlansResponseUnmarshaller.Instance;

            return BeginInvoke<GetUsagePlansRequest>(request, marshaller, unmarshaller,
                callback, state);
        }