aws-sdk-codepipeline 1.90.0 → 1.91.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 +8 -1
- data/lib/aws-sdk-codepipeline/client_api.rb +3 -0
- data/lib/aws-sdk-codepipeline/types.rb +19 -2
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/sig/types.rbs +2 -0
- 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: af14680b4830e1433203270242a9d79e7cf1bd8fd690df48961f1076b436d9e4
|
|
4
|
+
data.tar.gz: 3096ac5424b0c7e4f69ab00a9dcb0eec5b0d6ea4372b6e804551eb3fe0b02615
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fe68be2b11df2bd812c65cd782eac83cef725156b175a781336bd9d5cde5147ff48f922538876151266ad86468a4d04aefbf8966fe6ad45747b90d8113c7cc8
|
|
7
|
+
data.tar.gz: d94a8574b9d82061c8fc2ce5ecf90cd7694dfc0bd094f59696543aeac8e35048545fd81d3c7789c9aa60816e6db422cebf067b13ed6fba14989a807b7dadeb45
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -1643,6 +1643,7 @@ module Aws::CodePipeline
|
|
|
1643
1643
|
# resp.stage_states[0].action_states[0].latest_execution.percent_complete #=> Integer
|
|
1644
1644
|
# resp.stage_states[0].action_states[0].latest_execution.error_details.code #=> String
|
|
1645
1645
|
# resp.stage_states[0].action_states[0].latest_execution.error_details.message #=> String
|
|
1646
|
+
# resp.stage_states[0].action_states[0].latest_execution.log_stream_arn #=> String
|
|
1646
1647
|
# resp.stage_states[0].action_states[0].entity_url #=> String
|
|
1647
1648
|
# resp.stage_states[0].action_states[0].revision_url #=> String
|
|
1648
1649
|
# resp.stage_states[0].latest_execution.pipeline_execution_id #=> String
|
|
@@ -1882,6 +1883,7 @@ module Aws::CodePipeline
|
|
|
1882
1883
|
# resp.action_execution_details[0].output.execution_result.external_execution_url #=> String
|
|
1883
1884
|
# resp.action_execution_details[0].output.execution_result.error_details.code #=> String
|
|
1884
1885
|
# resp.action_execution_details[0].output.execution_result.error_details.message #=> String
|
|
1886
|
+
# resp.action_execution_details[0].output.execution_result.log_stream_arn #=> String
|
|
1885
1887
|
# resp.action_execution_details[0].output.output_variables #=> Hash
|
|
1886
1888
|
# resp.action_execution_details[0].output.output_variables["OutputVariablesKey"] #=> String
|
|
1887
1889
|
# resp.next_token #=> String
|
|
@@ -2562,6 +2564,11 @@ module Aws::CodePipeline
|
|
|
2562
2564
|
# GetPipelineState action. It is used to validate that the approval
|
|
2563
2565
|
# request corresponding to this token is still valid.
|
|
2564
2566
|
#
|
|
2567
|
+
# For a pipeline where the execution mode is set to PARALLEL, the token
|
|
2568
|
+
# required to approve/reject approval request as detailed above is not
|
|
2569
|
+
# available. Instead, use the `externalExecutionId` from the
|
|
2570
|
+
# `GetPipelineState` action as the token in the approval request.
|
|
2571
|
+
#
|
|
2565
2572
|
# @return [Types::PutApprovalResultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2566
2573
|
#
|
|
2567
2574
|
# * {Types::PutApprovalResultOutput#approved_at #approved_at} => Time
|
|
@@ -3600,7 +3607,7 @@ module Aws::CodePipeline
|
|
|
3600
3607
|
tracer: tracer
|
|
3601
3608
|
)
|
|
3602
3609
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
|
3603
|
-
context[:gem_version] = '1.
|
|
3610
|
+
context[:gem_version] = '1.91.0'
|
|
3604
3611
|
Seahorse::Client::Request.new(handlers, context)
|
|
3605
3612
|
end
|
|
3606
3613
|
|
|
@@ -227,6 +227,7 @@ module Aws::CodePipeline
|
|
|
227
227
|
ListWebhookItem = Shapes::StructureShape.new(name: 'ListWebhookItem')
|
|
228
228
|
ListWebhooksInput = Shapes::StructureShape.new(name: 'ListWebhooksInput')
|
|
229
229
|
ListWebhooksOutput = Shapes::StructureShape.new(name: 'ListWebhooksOutput')
|
|
230
|
+
LogStreamARN = Shapes::StringShape.new(name: 'LogStreamARN')
|
|
230
231
|
MatchEquals = Shapes::StringShape.new(name: 'MatchEquals')
|
|
231
232
|
MaxBatchSize = Shapes::IntegerShape.new(name: 'MaxBatchSize')
|
|
232
233
|
MaxPipelines = Shapes::IntegerShape.new(name: 'MaxPipelines')
|
|
@@ -503,6 +504,7 @@ module Aws::CodePipeline
|
|
|
503
504
|
ActionExecution.add_member(:external_execution_url, Shapes::ShapeRef.new(shape: Url, location_name: "externalExecutionUrl"))
|
|
504
505
|
ActionExecution.add_member(:percent_complete, Shapes::ShapeRef.new(shape: Percentage, location_name: "percentComplete"))
|
|
505
506
|
ActionExecution.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "errorDetails"))
|
|
507
|
+
ActionExecution.add_member(:log_stream_arn, Shapes::ShapeRef.new(shape: LogStreamARN, location_name: "logStreamARN"))
|
|
506
508
|
ActionExecution.struct_class = Types::ActionExecution
|
|
507
509
|
|
|
508
510
|
ActionExecutionDetail.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
|
|
@@ -542,6 +544,7 @@ module Aws::CodePipeline
|
|
|
542
544
|
ActionExecutionResult.add_member(:external_execution_summary, Shapes::ShapeRef.new(shape: ExternalExecutionSummary, location_name: "externalExecutionSummary"))
|
|
543
545
|
ActionExecutionResult.add_member(:external_execution_url, Shapes::ShapeRef.new(shape: Url, location_name: "externalExecutionUrl"))
|
|
544
546
|
ActionExecutionResult.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "errorDetails"))
|
|
547
|
+
ActionExecutionResult.add_member(:log_stream_arn, Shapes::ShapeRef.new(shape: LogStreamARN, location_name: "logStreamARN"))
|
|
545
548
|
ActionExecutionResult.struct_class = Types::ActionExecutionResult
|
|
546
549
|
|
|
547
550
|
ActionNotFoundException.struct_class = Types::ActionNotFoundException
|
|
@@ -379,6 +379,11 @@ module Aws::CodePipeline
|
|
|
379
379
|
# Services.
|
|
380
380
|
# @return [Types::ErrorDetails]
|
|
381
381
|
#
|
|
382
|
+
# @!attribute [rw] log_stream_arn
|
|
383
|
+
# The Amazon Resource Name (ARN) of the log stream for the action
|
|
384
|
+
# compute.
|
|
385
|
+
# @return [String]
|
|
386
|
+
#
|
|
382
387
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecution AWS API Documentation
|
|
383
388
|
#
|
|
384
389
|
class ActionExecution < Struct.new(
|
|
@@ -391,7 +396,8 @@ module Aws::CodePipeline
|
|
|
391
396
|
:external_execution_id,
|
|
392
397
|
:external_execution_url,
|
|
393
398
|
:percent_complete,
|
|
394
|
-
:error_details
|
|
399
|
+
:error_details,
|
|
400
|
+
:log_stream_arn)
|
|
395
401
|
SENSITIVE = []
|
|
396
402
|
include Aws::Structure
|
|
397
403
|
end
|
|
@@ -584,13 +590,19 @@ module Aws::CodePipeline
|
|
|
584
590
|
# Represents information about an error in CodePipeline.
|
|
585
591
|
# @return [Types::ErrorDetails]
|
|
586
592
|
#
|
|
593
|
+
# @!attribute [rw] log_stream_arn
|
|
594
|
+
# The Amazon Resource Name (ARN) of the log stream for the action
|
|
595
|
+
# compute.
|
|
596
|
+
# @return [String]
|
|
597
|
+
#
|
|
587
598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionResult AWS API Documentation
|
|
588
599
|
#
|
|
589
600
|
class ActionExecutionResult < Struct.new(
|
|
590
601
|
:external_execution_id,
|
|
591
602
|
:external_execution_summary,
|
|
592
603
|
:external_execution_url,
|
|
593
|
-
:error_details
|
|
604
|
+
:error_details,
|
|
605
|
+
:log_stream_arn)
|
|
594
606
|
SENSITIVE = []
|
|
595
607
|
include Aws::Structure
|
|
596
608
|
end
|
|
@@ -3918,6 +3930,11 @@ module Aws::CodePipeline
|
|
|
3918
3930
|
# request. The token for each open approval request can be obtained
|
|
3919
3931
|
# using the GetPipelineState action. It is used to validate that the
|
|
3920
3932
|
# approval request corresponding to this token is still valid.
|
|
3933
|
+
#
|
|
3934
|
+
# For a pipeline where the execution mode is set to PARALLEL, the
|
|
3935
|
+
# token required to approve/reject approval request as detailed above
|
|
3936
|
+
# is not available. Instead, use the `externalExecutionId` from the
|
|
3937
|
+
# `GetPipelineState` action as the token in the approval request.
|
|
3921
3938
|
# @return [String]
|
|
3922
3939
|
#
|
|
3923
3940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutApprovalResultInput AWS API Documentation
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -87,6 +87,7 @@ module Aws::CodePipeline
|
|
|
87
87
|
attr_accessor external_execution_url: ::String
|
|
88
88
|
attr_accessor percent_complete: ::Integer
|
|
89
89
|
attr_accessor error_details: Types::ErrorDetails
|
|
90
|
+
attr_accessor log_stream_arn: ::String
|
|
90
91
|
SENSITIVE: []
|
|
91
92
|
end
|
|
92
93
|
|
|
@@ -134,6 +135,7 @@ module Aws::CodePipeline
|
|
|
134
135
|
attr_accessor external_execution_summary: ::String
|
|
135
136
|
attr_accessor external_execution_url: ::String
|
|
136
137
|
attr_accessor error_details: Types::ErrorDetails
|
|
138
|
+
attr_accessor log_stream_arn: ::String
|
|
137
139
|
SENSITIVE: []
|
|
138
140
|
end
|
|
139
141
|
|
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.91.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-11-
|
|
11
|
+
date: 2024-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|