aws-sdk-codepipeline 1.78.0 → 1.80.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ec540d3179bb16c4c8e677e2cde8cf5a221e7a5ef56e21721182f79f60a97f7
4
- data.tar.gz: f0644534297578957789acf8cc0eade8820d554d750f29cac37388c3a2b98de6
3
+ metadata.gz: 8cf176f70678acae43b3e51dfecfbbc9efd6bed3d3fd508ef7328e5d22a06b61
4
+ data.tar.gz: 9ef952620db42152a6e20ba1632aa09ca2c117c914ece63e284e192840a0717a
5
5
  SHA512:
6
- metadata.gz: 031dabc1a171e6b88d5f5b8081a2e9f6de82c0ca7d3554645c7e485059cfc8acbeb7c2a90b30257530e591a5c4fa3b633baddbca7fec7b7b015cd2f1c736c2a6
7
- data.tar.gz: 9abf168ad05c49ca91a29f3b87d11a142d8c2596262f5932b788382d96ee8f25f92a92d0ca42c28091190b2d0ec3895117691169ad6363d8f71fe18ee2f86ac1
6
+ metadata.gz: '048d7a9222beff382a82d81a1af4ccdd77e5a97d1af50604a0ed7ac48aff1276b32477bb9de35b0765254b83670b462367b704edae6ba10a84e6a6254208ca4f'
7
+ data.tar.gz: f93c15ce365f301b06009e4e54d63f5c57b18ce0a715a084f609a813613e45a0453da19722457d2ae7357ad3f1810a3b0071967965168a2c5ed83181d7bd10ad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2024-09-05)
5
+ ------------------
6
+
7
+ * Feature - Updates to add recent notes to APIs and to replace example S3 bucket names globally.
8
+
9
+ 1.79.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.78.0 (2024-07-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.80.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::CodePipeline
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::CodePipeline::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::CodePipeline
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -2220,6 +2232,10 @@ module Aws::CodePipeline
2220
2232
  # for this account. The output lists all webhooks and includes the
2221
2233
  # webhook URL and ARN and the configuration for each webhook.
2222
2234
  #
2235
+ # <note markdown="1"> If a secret token was provided, it will be redacted in the response.
2236
+ #
2237
+ # </note>
2238
+ #
2223
2239
  # @option params [String] :next_token
2224
2240
  # The token that was returned from the previous ListWebhooks call, which
2225
2241
  # can be used to return the next set of webhooks in the list.
@@ -2740,6 +2756,19 @@ module Aws::CodePipeline
2740
2756
  # DeregisterWebhookWithThirdParty APIs can be used to automatically
2741
2757
  # configure supported third parties to call the generated webhook URL.
2742
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
+ #
2743
2772
  # @option params [required, Types::WebhookDefinition] :webhook
2744
2773
  # The detail provided in an input file to create the webhook, such as
2745
2774
  # the webhook name, the pipeline name, and the action name. Give the
@@ -3513,14 +3542,19 @@ module Aws::CodePipeline
3513
3542
  # @api private
3514
3543
  def build_request(operation_name, params = {})
3515
3544
  handlers = @handlers.for(operation_name)
3545
+ tracer = config.telemetry_provider.tracer_provider.tracer(
3546
+ Aws::Telemetry.module_to_tracer_name('Aws::CodePipeline')
3547
+ )
3516
3548
  context = Seahorse::Client::RequestContext.new(
3517
3549
  operation_name: operation_name,
3518
3550
  operation: config.api.operation(operation_name),
3519
3551
  client: self,
3520
3552
  params: params,
3521
- config: config)
3553
+ config: config,
3554
+ tracer: tracer
3555
+ )
3522
3556
  context[:gem_name] = 'aws-sdk-codepipeline'
3523
- context[:gem_version] = '1.78.0'
3557
+ context[:gem_version] = '1.80.0'
3524
3558
  Seahorse::Client::Request.new(handlers, context)
3525
3559
  end
3526
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. Valid categories are
4675
- # limited to one of the following values.
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 of the service being called by the rule. Valid
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.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
52
52
  # @!group service
53
53
  module Aws::CodePipeline
54
54
 
55
- GEM_VERSION = '1.78.0'
55
+ GEM_VERSION = '1.80.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
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.78.0
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-07-30 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement