aws-sdk-codepipeline 1.62.0 → 1.63.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: d2718a5a071f8b8275ab30388e1739d19fd1e2d9fc2a0bcec81a5582ec394c70
4
- data.tar.gz: b6077e6aba6f5918b256ac46ac0929722b0d863b2c9636d767702e1f4f753773
3
+ metadata.gz: 5360971755e1e8ed0c5d87391112f516e5fdfbba921fea681ab5d498816d7466
4
+ data.tar.gz: 8d3a185c6082388e2590444f8061686ff1904442e3972686e3503cae295156af
5
5
  SHA512:
6
- metadata.gz: '07182773c8382f68bf5d222354ff3dc1d7536cd2d20cb12e5e32e10f3203f2a130903a3fc3d6ea07aab84422ce15a6c4727d58f81592802e27f6a9c8c466c2bd'
7
- data.tar.gz: 051a4bccf4ba730a197d1c15689656176dbcb0cc34985daa67e4fe1e3e624d6220f7beee7dfe11a6c8be75a175bbabd6eb503aff082517ffac3d0b28f847fd59
6
+ metadata.gz: e227b1d17ccdb802a952f8a4083e078e892ff761f1952e51443839ab4565c7229873e1f0dd3fcccf8aba11cddc7efd31720c85827594f7e766852be728162d51
7
+ data.tar.gz: 863b155747c085f9ea9f62259229492c3d136cb78ad1c4e026c710253552e5b4c1e0888a9d3afed2bb9db702d54b60ba7e883df4cf837da7ec653eddbdd542c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2023-10-17)
5
+ ------------------
6
+
7
+ * Feature - Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage
8
+
4
9
  1.62.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -2229,10 +2229,15 @@ module Aws::CodePipeline
2229
2229
  req.send_request(options)
2230
2230
  end
2231
2231
 
2232
- # Resumes the pipeline execution by retrying the last failed actions in
2233
- # a stage. You can retry a stage immediately if any of the actions in
2234
- # the stage fail. When you retry, all actions that are still in progress
2235
- # continue working, and failed actions are triggered again.
2232
+ # You can retry a stage that has failed without having to run a pipeline
2233
+ # again from the beginning. You do this by either retrying the failed
2234
+ # actions in a stage or by retrying all actions in the stage starting
2235
+ # from the first action in the stage. When you retry the failed actions
2236
+ # in a stage, all actions that are still in progress continue working,
2237
+ # and failed actions are triggered again. When you retry a failed stage
2238
+ # from the first action in the stage, the stage cannot have any actions
2239
+ # in progress. Before a stage can be retried, it must either have all
2240
+ # actions failed or some actions failed and some succeeded.
2236
2241
  #
2237
2242
  # @option params [required, String] :pipeline_name
2238
2243
  # The name of the pipeline that contains the failed stage.
@@ -2246,8 +2251,7 @@ module Aws::CodePipeline
2246
2251
  # pipelineExecutionId of the failed stage
2247
2252
  #
2248
2253
  # @option params [required, String] :retry_mode
2249
- # The scope of the retry attempt. Currently, the only supported value is
2250
- # FAILED\_ACTIONS.
2254
+ # The scope of the retry attempt.
2251
2255
  #
2252
2256
  # @return [Types::RetryStageExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2253
2257
  #
@@ -2259,7 +2263,7 @@ module Aws::CodePipeline
2259
2263
  # pipeline_name: "PipelineName", # required
2260
2264
  # stage_name: "StageName", # required
2261
2265
  # pipeline_execution_id: "PipelineExecutionId", # required
2262
- # retry_mode: "FAILED_ACTIONS", # required, accepts FAILED_ACTIONS
2266
+ # retry_mode: "FAILED_ACTIONS", # required, accepts FAILED_ACTIONS, ALL_ACTIONS
2263
2267
  # })
2264
2268
  #
2265
2269
  # @example Response structure
@@ -2636,7 +2640,7 @@ module Aws::CodePipeline
2636
2640
  params: params,
2637
2641
  config: config)
2638
2642
  context[:gem_name] = 'aws-sdk-codepipeline'
2639
- context[:gem_version] = '1.62.0'
2643
+ context[:gem_version] = '1.63.0'
2640
2644
  Seahorse::Client::Request.new(handlers, context)
2641
2645
  end
2642
2646
 
@@ -32,7 +32,7 @@ module Aws::CodePipeline
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -3419,8 +3419,7 @@ module Aws::CodePipeline
3419
3419
  # @return [String]
3420
3420
  #
3421
3421
  # @!attribute [rw] retry_mode
3422
- # The scope of the retry attempt. Currently, the only supported value
3423
- # is FAILED\_ACTIONS.
3422
+ # The scope of the retry attempt.
3424
3423
  # @return [String]
3425
3424
  #
3426
3425
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/RetryStageExecutionInput AWS API Documentation
@@ -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.62.0'
55
+ GEM_VERSION = '1.63.0'
56
56
 
57
57
  end
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.62.0
4
+ version: 1.63.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core