aws-sdk-codepipeline 1.69.0 → 1.70.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9fe941a6b03ff92e266330cc0042c261b94378b35c50119e31dd3e68709b76d
4
- data.tar.gz: 45dcf23845384f62f905b2eb773009424499d8aaeab278aba660cfde216490f1
3
+ metadata.gz: 0bb768510b843cbc6d867232fff48e827f2abd7bcc07591b81c367bc544461f6
4
+ data.tar.gz: cce99685700e96f8398777b6ac19b907a73a1263ee7df91445ba3d59ffdc24fc
5
5
  SHA512:
6
- metadata.gz: 51a73a09e4268e9ca8a924a82136cc6281686cd76d2e2d1d808f18c9935aa9b4be0b61631d3cd00a95ed2ae0d45d131cb12ec7fc633f34735aed3759d8cd6047
7
- data.tar.gz: 66f3cde336c51552746730335c9d45890eefec0aecedd89fd0049660519b7058ff5ac5563ec46a5fc4eb40320250af65254334ec60cf3fef8302b8c0fcc354c0
6
+ metadata.gz: 5c060aa4957a8c4e11ac34582d9d8635648bfc409de66029ecd0eabbb1962f37a5d2f48f9dc95b4a91b9906f29cf3e16ee6169bf39e30923483dc46c3779b80f
7
+ data.tar.gz: 2b9ab64dbb42146f73ade2d29c8daeee9223785c4a1d9817f7c236d524a4cc5a113e81f2bd6b52ec4a3c3872e6e852868afd0701deaff4c24216278639de8386
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.69.0 (2024-02-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CodePipeline
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CodePipeline
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::CodePipeline
347
356
  # @option options [Aws::CodePipeline::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CodePipeline::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -678,6 +702,7 @@ module Aws::CodePipeline
678
702
  # role_arn: "RoleArn",
679
703
  # region: "AWSRegionName",
680
704
  # namespace: "ActionNamespace",
705
+ # timeout_in_minutes: 1,
681
706
  # },
682
707
  # ],
683
708
  # },
@@ -772,6 +797,7 @@ module Aws::CodePipeline
772
797
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
773
798
  # resp.pipeline.stages[0].actions[0].region #=> String
774
799
  # resp.pipeline.stages[0].actions[0].namespace #=> String
800
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
775
801
  # resp.pipeline.version #=> Integer
776
802
  # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
777
803
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
@@ -1222,6 +1248,7 @@ module Aws::CodePipeline
1222
1248
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
1223
1249
  # resp.pipeline.stages[0].actions[0].region #=> String
1224
1250
  # resp.pipeline.stages[0].actions[0].namespace #=> String
1251
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
1225
1252
  # resp.pipeline.version #=> Integer
1226
1253
  # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1227
1254
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
@@ -2729,6 +2756,7 @@ module Aws::CodePipeline
2729
2756
  # role_arn: "RoleArn",
2730
2757
  # region: "AWSRegionName",
2731
2758
  # namespace: "ActionNamespace",
2759
+ # timeout_in_minutes: 1,
2732
2760
  # },
2733
2761
  # ],
2734
2762
  # },
@@ -2817,6 +2845,7 @@ module Aws::CodePipeline
2817
2845
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
2818
2846
  # resp.pipeline.stages[0].actions[0].region #=> String
2819
2847
  # resp.pipeline.stages[0].actions[0].namespace #=> String
2848
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
2820
2849
  # resp.pipeline.version #=> Integer
2821
2850
  # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
2822
2851
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
@@ -2874,7 +2903,7 @@ module Aws::CodePipeline
2874
2903
  params: params,
2875
2904
  config: config)
2876
2905
  context[:gem_name] = 'aws-sdk-codepipeline'
2877
- context[:gem_version] = '1.69.0'
2906
+ context[:gem_version] = '1.70.0'
2878
2907
  Seahorse::Client::Request.new(handlers, context)
2879
2908
  end
2880
2909
 
@@ -51,6 +51,7 @@ module Aws::CodePipeline
51
51
  ActionRunOrder = Shapes::IntegerShape.new(name: 'ActionRunOrder')
52
52
  ActionState = Shapes::StructureShape.new(name: 'ActionState')
53
53
  ActionStateList = Shapes::ListShape.new(name: 'ActionStateList')
54
+ ActionTimeout = Shapes::IntegerShape.new(name: 'ActionTimeout')
54
55
  ActionType = Shapes::StructureShape.new(name: 'ActionType')
55
56
  ActionTypeAlreadyExistsException = Shapes::StructureShape.new(name: 'ActionTypeAlreadyExistsException')
56
57
  ActionTypeArtifactDetails = Shapes::StructureShape.new(name: 'ActionTypeArtifactDetails')
@@ -418,6 +419,7 @@ module Aws::CodePipeline
418
419
  ActionDeclaration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
419
420
  ActionDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
420
421
  ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
422
+ ActionDeclaration.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: ActionTimeout, location_name: "timeoutInMinutes"))
421
423
  ActionDeclaration.struct_class = Types::ActionDeclaration
422
424
 
423
425
  ActionExecution.add_member(:action_execution_id, Shapes::ShapeRef.new(shape: ActionExecutionId, location_name: "actionExecutionId"))
@@ -276,6 +276,17 @@ module Aws::CodePipeline
276
276
  # produced as output by this action fall under this namespace.
277
277
  # @return [String]
278
278
  #
279
+ # @!attribute [rw] timeout_in_minutes
280
+ # A timeout duration in minutes that can be applied against the
281
+ # ActionType’s default timeout value specified in [Quotas for
282
+ # CodePipeline ][1]. This attribute is available only to the manual
283
+ # approval ActionType.
284
+ #
285
+ #
286
+ #
287
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html
288
+ # @return [Integer]
289
+ #
279
290
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionDeclaration AWS API Documentation
280
291
  #
281
292
  class ActionDeclaration < Struct.new(
@@ -287,7 +298,8 @@ module Aws::CodePipeline
287
298
  :input_artifacts,
288
299
  :role_arn,
289
300
  :region,
290
- :namespace)
301
+ :namespace,
302
+ :timeout_in_minutes)
291
303
  SENSITIVE = []
292
304
  include Aws::Structure
293
305
  end
@@ -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.69.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -198,7 +198,8 @@ module Aws
198
198
  ]?,
199
199
  role_arn: ::String?,
200
200
  region: ::String?,
201
- namespace: ::String?
201
+ namespace: ::String?,
202
+ timeout_in_minutes: ::Integer?
202
203
  },
203
204
  ]
204
205
  },
@@ -819,7 +820,8 @@ module Aws
819
820
  ]?,
820
821
  role_arn: ::String?,
821
822
  region: ::String?,
822
- namespace: ::String?
823
+ namespace: ::String?,
824
+ timeout_in_minutes: ::Integer?
823
825
  },
824
826
  ]
825
827
  },
data/sig/types.rbs CHANGED
@@ -70,6 +70,7 @@ module Aws::CodePipeline
70
70
  attr_accessor role_arn: ::String
71
71
  attr_accessor region: ::String
72
72
  attr_accessor namespace: ::String
73
+ attr_accessor timeout_in_minutes: ::Integer
73
74
  SENSITIVE: []
74
75
  end
75
76
 
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.69.0
4
+ version: 1.70.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-02-08 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement