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

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

            ListFlowsResponse resp = new ListFlowsResponse();

            do
            {
                ListFlowsRequest req = new ListFlowsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

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

                foreach (var obj in resp.Flows)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
Exemplo n.º 2
0
        internal virtual ListFlowsResponse ListFlows(ListFlowsRequest request)
        {
            var marshaller   = ListFlowsRequestMarshaller.Instance;
            var unmarshaller = ListFlowsResponseUnmarshaller.Instance;

            return(Invoke <ListFlowsRequest, ListFlowsResponse>(request, marshaller, unmarshaller));
        }
Exemplo n.º 3
0
        /// <summary>
        /// Initiates the asynchronous execution of the ListFlows operation.
        /// </summary>
        ///
        /// <param name="request">Container for the necessary parameters to execute the ListFlows 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>
        /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlows">REST API Reference for ListFlows Operation</seealso>
        public virtual Task <ListFlowsResponse> ListFlowsAsync(ListFlowsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller   = ListFlowsRequestMarshaller.Instance;
            var unmarshaller = ListFlowsResponseUnmarshaller.Instance;

            return(InvokeAsync <ListFlowsRequest, ListFlowsResponse>(request, marshaller,
                                                                     unmarshaller, cancellationToken));
        }
        /// <summary>
        /// Initiates the asynchronous execution of the ListFlows operation.
        /// </summary>
        ///
        /// <param name="request">Container for the necessary parameters to execute the ListFlows 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>
        /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlows">REST API Reference for ListFlows Operation</seealso>
        public virtual Task <ListFlowsResponse> ListFlowsAsync(ListFlowsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var options = new InvokeOptions();

            options.RequestMarshaller    = ListFlowsRequestMarshaller.Instance;
            options.ResponseUnmarshaller = ListFlowsResponseUnmarshaller.Instance;

            return(InvokeAsync <ListFlowsResponse>(request, options, cancellationToken));
        }
        internal virtual ListFlowsResponse ListFlows(ListFlowsRequest request)
        {
            var options = new InvokeOptions();

            options.RequestMarshaller    = ListFlowsRequestMarshaller.Instance;
            options.ResponseUnmarshaller = ListFlowsResponseUnmarshaller.Instance;

            return(Invoke <ListFlowsResponse>(request, options));
        }
Exemplo n.º 6
0
        /// <summary>Snippet for ListFlowsAsync</summary>
        public async Task ListFlowsRequestObjectAsync()
        {
            // Snippet: ListFlowsAsync(ListFlowsRequest, CallSettings)
            // Create client
            FlowsClient flowsClient = await FlowsClient.CreateAsync();

            // Initialize request argument(s)
            ListFlowsRequest request = new ListFlowsRequest
            {
                ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
                LanguageCode      = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListFlowsResponse, Flow> response = flowsClient.ListFlowsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Flow item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListFlowsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Flow item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int         pageSize   = 10;
            Page <Flow> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Flow item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }