aws-sdk-codepipeline 1.79.0 → 1.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +18 -1
- data/lib/aws-sdk-codepipeline/types.rb +29 -12
- data/lib/aws-sdk-codepipeline.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cf176f70678acae43b3e51dfecfbbc9efd6bed3d3fd508ef7328e5d22a06b61
|
|
4
|
+
data.tar.gz: 9ef952620db42152a6e20ba1632aa09ca2c117c914ece63e284e192840a0717a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz: '
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '048d7a9222beff382a82d81a1af4ccdd77e5a97d1af50604a0ed7ac48aff1276b32477bb9de35b0765254b83670b462367b704edae6ba10a84e6a6254208ca4f'
|
|
7
|
+
data.tar.gz: f93c15ce365f301b06009e4e54d63f5c57b18ce0a715a084f609a813613e45a0453da19722457d2ae7357ad3f1810a3b0071967965168a2c5ed83181d7bd10ad
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -2232,6 +2232,10 @@ module Aws::CodePipeline
|
|
|
2232
2232
|
# for this account. The output lists all webhooks and includes the
|
|
2233
2233
|
# webhook URL and ARN and the configuration for each webhook.
|
|
2234
2234
|
#
|
|
2235
|
+
# <note markdown="1"> If a secret token was provided, it will be redacted in the response.
|
|
2236
|
+
#
|
|
2237
|
+
# </note>
|
|
2238
|
+
#
|
|
2235
2239
|
# @option params [String] :next_token
|
|
2236
2240
|
# The token that was returned from the previous ListWebhooks call, which
|
|
2237
2241
|
# can be used to return the next set of webhooks in the list.
|
|
@@ -2752,6 +2756,19 @@ module Aws::CodePipeline
|
|
|
2752
2756
|
# DeregisterWebhookWithThirdParty APIs can be used to automatically
|
|
2753
2757
|
# configure supported third parties to call the generated webhook URL.
|
|
2754
2758
|
#
|
|
2759
|
+
# When creating CodePipeline webhooks, do not use your own credentials
|
|
2760
|
+
# or reuse the same secret token across multiple webhooks. For optimal
|
|
2761
|
+
# security, generate a unique secret token for each webhook you create.
|
|
2762
|
+
# The secret token is an arbitrary string that you provide, which GitHub
|
|
2763
|
+
# uses to compute and sign the webhook payloads sent to CodePipeline,
|
|
2764
|
+
# for protecting the integrity and authenticity of the webhook payloads.
|
|
2765
|
+
# Using your own credentials or reusing the same token across multiple
|
|
2766
|
+
# webhooks can lead to security vulnerabilities.
|
|
2767
|
+
#
|
|
2768
|
+
# <note markdown="1"> If a secret token was provided, it will be redacted in the response.
|
|
2769
|
+
#
|
|
2770
|
+
# </note>
|
|
2771
|
+
#
|
|
2755
2772
|
# @option params [required, Types::WebhookDefinition] :webhook
|
|
2756
2773
|
# The detail provided in an input file to create the webhook, such as
|
|
2757
2774
|
# the webhook name, the pipeline name, and the action name. Give the
|
|
@@ -3537,7 +3554,7 @@ module Aws::CodePipeline
|
|
|
3537
3554
|
tracer: tracer
|
|
3538
3555
|
)
|
|
3539
3556
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
|
3540
|
-
context[:gem_version] = '1.
|
|
3557
|
+
context[:gem_version] = '1.80.0'
|
|
3541
3558
|
Seahorse::Client::Request.new(handlers, context)
|
|
3542
3559
|
end
|
|
3543
3560
|
|
|
@@ -4671,14 +4671,8 @@ module Aws::CodePipeline
|
|
|
4671
4671
|
#
|
|
4672
4672
|
# @!attribute [rw] category
|
|
4673
4673
|
# A category defines what kind of rule can be run in the stage, and
|
|
4674
|
-
# constrains the provider type for the rule.
|
|
4675
|
-
#
|
|
4676
|
-
#
|
|
4677
|
-
# * INVOKE
|
|
4678
|
-
#
|
|
4679
|
-
# * Approval
|
|
4680
|
-
#
|
|
4681
|
-
# * Rule
|
|
4674
|
+
# constrains the provider type for the rule. The valid category is
|
|
4675
|
+
# `Rule`.
|
|
4682
4676
|
# @return [String]
|
|
4683
4677
|
#
|
|
4684
4678
|
# @!attribute [rw] owner
|
|
@@ -4687,10 +4681,7 @@ module Aws::CodePipeline
|
|
|
4687
4681
|
# @return [String]
|
|
4688
4682
|
#
|
|
4689
4683
|
# @!attribute [rw] provider
|
|
4690
|
-
# The provider
|
|
4691
|
-
# providers are determined by the rulecategory. For example, a managed
|
|
4692
|
-
# rule in the Rule category type has an owner of AWS, which would be
|
|
4693
|
-
# specified as `AWS`.
|
|
4684
|
+
# The rule provider, such as the `DeploymentWindow` rule.
|
|
4694
4685
|
# @return [String]
|
|
4695
4686
|
#
|
|
4696
4687
|
# @!attribute [rw] version
|
|
@@ -5504,6 +5495,19 @@ module Aws::CodePipeline
|
|
|
5504
5495
|
# @!attribute [rw] secret_token
|
|
5505
5496
|
# The property used to configure GitHub authentication. For
|
|
5506
5497
|
# GITHUB\_HMAC, only the `SecretToken` property must be set.
|
|
5498
|
+
#
|
|
5499
|
+
# When creating CodePipeline webhooks, do not use your own credentials
|
|
5500
|
+
# or reuse the same secret token across multiple webhooks. For optimal
|
|
5501
|
+
# security, generate a unique secret token for each webhook you
|
|
5502
|
+
# create. The secret token is an arbitrary string that you provide,
|
|
5503
|
+
# which GitHub uses to compute and sign the webhook payloads sent to
|
|
5504
|
+
# CodePipeline, for protecting the integrity and authenticity of the
|
|
5505
|
+
# webhook payloads. Using your own credentials or reusing the same
|
|
5506
|
+
# token across multiple webhooks can lead to security vulnerabilities.
|
|
5507
|
+
#
|
|
5508
|
+
# <note markdown="1"> If a secret token was provided, it will be redacted in the response.
|
|
5509
|
+
#
|
|
5510
|
+
# </note>
|
|
5507
5511
|
# @return [String]
|
|
5508
5512
|
#
|
|
5509
5513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/WebhookAuthConfiguration AWS API Documentation
|
|
@@ -5540,6 +5544,19 @@ module Aws::CodePipeline
|
|
|
5540
5544
|
# @!attribute [rw] authentication
|
|
5541
5545
|
# Supported options are GITHUB\_HMAC, IP, and UNAUTHENTICATED.
|
|
5542
5546
|
#
|
|
5547
|
+
# When creating CodePipeline webhooks, do not use your own credentials
|
|
5548
|
+
# or reuse the same secret token across multiple webhooks. For optimal
|
|
5549
|
+
# security, generate a unique secret token for each webhook you
|
|
5550
|
+
# create. The secret token is an arbitrary string that you provide,
|
|
5551
|
+
# which GitHub uses to compute and sign the webhook payloads sent to
|
|
5552
|
+
# CodePipeline, for protecting the integrity and authenticity of the
|
|
5553
|
+
# webhook payloads. Using your own credentials or reusing the same
|
|
5554
|
+
# token across multiple webhooks can lead to security vulnerabilities.
|
|
5555
|
+
#
|
|
5556
|
+
# <note markdown="1"> If a secret token was provided, it will be redacted in the response.
|
|
5557
|
+
#
|
|
5558
|
+
# </note>
|
|
5559
|
+
#
|
|
5543
5560
|
# * For information about the authentication scheme implemented by
|
|
5544
5561
|
# GITHUB\_HMAC, see [Securing your webhooks][1] on the GitHub
|
|
5545
5562
|
# Developer website.
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-codepipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.80.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|