コード例 #1
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonCodePipelineConfig config = new AmazonCodePipelineConfig();

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

            ListWebhooksResponse resp = new ListWebhooksResponse();

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

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

                foreach (var obj in resp.Webhooks)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
コード例 #2
0
        public BaseResponse <PagingResponse <GetWebhookResponse> > ListWebhooks(ListWebhooksRequest request)
        {
            var method   = HttpMethod.Get;
            var endpoint = $"/hooks";
            var query    = request.ToDictionary();

            return(this.HttpClientUtil.SendRequest <PagingResponse <GetWebhookResponse> >(method, endpoint, null, query));
        }
コード例 #3
0
        /// <summary>Snippet for ListWebhooks</summary>
        public async Task ListWebhooksRequestObjectAsync()
        {
            // Snippet: ListWebhooksAsync(ListWebhooksRequest, CallSettings)
            // Create client
            WebhooksClient webhooksClient = await WebhooksClient.CreateAsync();

            // Initialize request argument(s)
            ListWebhooksRequest request = new ListWebhooksRequest
            {
                ParentAsAgentName = AgentName.FromProjectLocationAgent("[PROJECT]", "[LOCATION]", "[AGENT]"),
            };
            // Make the request
            PagedAsyncEnumerable <ListWebhooksResponse, Webhook> response = webhooksClient.ListWebhooksAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Webhook 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((ListWebhooksResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Webhook 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 <Webhook> 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 (Webhook 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
        }