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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +12 -8
- data/lib/aws-sdk-codepipeline/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-codepipeline/types.rb +1 -2
- 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: 5360971755e1e8ed0c5d87391112f516e5fdfbba921fea681ab5d498816d7466
|
4
|
+
data.tar.gz: 8d3a185c6082388e2590444f8061686ff1904442e3972686e3503cae295156af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.63.0
|
@@ -2229,10 +2229,15 @@ module Aws::CodePipeline
|
|
2229
2229
|
req.send_request(options)
|
2230
2230
|
end
|
2231
2231
|
|
2232
|
-
#
|
2233
|
-
#
|
2234
|
-
#
|
2235
|
-
#
|
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.
|
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.
|
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?(
|
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.
|
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
|
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.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-
|
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
|