aws-sdk-codepipeline 1.90.0 → 1.92.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +42 -2
- data/lib/aws-sdk-codepipeline/client_api.rb +4 -0
- data/lib/aws-sdk-codepipeline/types.rb +53 -5
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +3 -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: 6c3e62de91196b93541edcfc09a403fbf425e83924ff98f8bf5b1ceb7ea83c85
|
4
|
+
data.tar.gz: 1558613a9c4d833ec3f3be2ed02d63f23ecc96fa02b18b71cfa86d422903662f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45f06b1b8a3dfb0009446c7239e0f9781ae1096edff4c0c772acf9ecf43d6c5f5b6e22a08d8da50026011f588cda0d9c93b4f45fb11b199331d3fc771747306b
|
7
|
+
data.tar.gz: 189b738f7a694027b42daa1a49687e45c98a7024fe4ea2e9d2076ae2240fb79bb9cb10ab61547c61a250360ff6ad815ede2ed628cd30a3ffcc05b835a9887eb9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.92.0 (2024-12-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS CodePipeline V2 type pipelines now support Managed Compute Rule.
|
8
|
+
|
9
|
+
1.91.0 (2024-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS CodePipeline V2 type pipelines now support ECRBuildAndPublish and InspectorScan actions.
|
13
|
+
|
4
14
|
1.90.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.92.0
|
@@ -760,6 +760,7 @@ module Aws::CodePipeline
|
|
760
760
|
# configuration: {
|
761
761
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
762
762
|
# },
|
763
|
+
# commands: ["Command"],
|
763
764
|
# input_artifacts: [
|
764
765
|
# {
|
765
766
|
# name: "ArtifactName", # required
|
@@ -789,6 +790,7 @@ module Aws::CodePipeline
|
|
789
790
|
# configuration: {
|
790
791
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
791
792
|
# },
|
793
|
+
# commands: ["Command"],
|
792
794
|
# input_artifacts: [
|
793
795
|
# {
|
794
796
|
# name: "ArtifactName", # required
|
@@ -818,6 +820,7 @@ module Aws::CodePipeline
|
|
818
820
|
# configuration: {
|
819
821
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
820
822
|
# },
|
823
|
+
# commands: ["Command"],
|
821
824
|
# input_artifacts: [
|
822
825
|
# {
|
823
826
|
# name: "ArtifactName", # required
|
@@ -942,6 +945,8 @@ module Aws::CodePipeline
|
|
942
945
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].rule_type_id.version #=> String
|
943
946
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration #=> Hash
|
944
947
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
948
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands #=> Array
|
949
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands[0] #=> String
|
945
950
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts #=> Array
|
946
951
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts[0].name #=> String
|
947
952
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].role_arn #=> String
|
@@ -957,6 +962,8 @@ module Aws::CodePipeline
|
|
957
962
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].rule_type_id.version #=> String
|
958
963
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration #=> Hash
|
959
964
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
965
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands #=> Array
|
966
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands[0] #=> String
|
960
967
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts #=> Array
|
961
968
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts[0].name #=> String
|
962
969
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].role_arn #=> String
|
@@ -972,6 +979,8 @@ module Aws::CodePipeline
|
|
972
979
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].rule_type_id.version #=> String
|
973
980
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration #=> Hash
|
974
981
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
982
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands #=> Array
|
983
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands[0] #=> String
|
975
984
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts #=> Array
|
976
985
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts[0].name #=> String
|
977
986
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].role_arn #=> String
|
@@ -1237,6 +1246,8 @@ module Aws::CodePipeline
|
|
1237
1246
|
#
|
1238
1247
|
# * `Invoke`
|
1239
1248
|
#
|
1249
|
+
# * `Compute`
|
1250
|
+
#
|
1240
1251
|
# @option params [required, String] :owner
|
1241
1252
|
# The creator of an action type that was created with any supported
|
1242
1253
|
# integration model. There are two valid values: `AWS` and `ThirdParty`.
|
@@ -1446,6 +1457,8 @@ module Aws::CodePipeline
|
|
1446
1457
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].rule_type_id.version #=> String
|
1447
1458
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration #=> Hash
|
1448
1459
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
1460
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands #=> Array
|
1461
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands[0] #=> String
|
1449
1462
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts #=> Array
|
1450
1463
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts[0].name #=> String
|
1451
1464
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].role_arn #=> String
|
@@ -1461,6 +1474,8 @@ module Aws::CodePipeline
|
|
1461
1474
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].rule_type_id.version #=> String
|
1462
1475
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration #=> Hash
|
1463
1476
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
1477
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands #=> Array
|
1478
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands[0] #=> String
|
1464
1479
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts #=> Array
|
1465
1480
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts[0].name #=> String
|
1466
1481
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].role_arn #=> String
|
@@ -1476,6 +1491,8 @@ module Aws::CodePipeline
|
|
1476
1491
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].rule_type_id.version #=> String
|
1477
1492
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration #=> Hash
|
1478
1493
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
1494
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands #=> Array
|
1495
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands[0] #=> String
|
1479
1496
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts #=> Array
|
1480
1497
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts[0].name #=> String
|
1481
1498
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].role_arn #=> String
|
@@ -1643,6 +1660,7 @@ module Aws::CodePipeline
|
|
1643
1660
|
# resp.stage_states[0].action_states[0].latest_execution.percent_complete #=> Integer
|
1644
1661
|
# resp.stage_states[0].action_states[0].latest_execution.error_details.code #=> String
|
1645
1662
|
# resp.stage_states[0].action_states[0].latest_execution.error_details.message #=> String
|
1663
|
+
# resp.stage_states[0].action_states[0].latest_execution.log_stream_arn #=> String
|
1646
1664
|
# resp.stage_states[0].action_states[0].entity_url #=> String
|
1647
1665
|
# resp.stage_states[0].action_states[0].revision_url #=> String
|
1648
1666
|
# resp.stage_states[0].latest_execution.pipeline_execution_id #=> String
|
@@ -1882,6 +1900,7 @@ module Aws::CodePipeline
|
|
1882
1900
|
# resp.action_execution_details[0].output.execution_result.external_execution_url #=> String
|
1883
1901
|
# resp.action_execution_details[0].output.execution_result.error_details.code #=> String
|
1884
1902
|
# resp.action_execution_details[0].output.execution_result.error_details.message #=> String
|
1903
|
+
# resp.action_execution_details[0].output.execution_result.log_stream_arn #=> String
|
1885
1904
|
# resp.action_execution_details[0].output.output_variables #=> Hash
|
1886
1905
|
# resp.action_execution_details[0].output.output_variables["OutputVariablesKey"] #=> String
|
1887
1906
|
# resp.next_token #=> String
|
@@ -2166,7 +2185,14 @@ module Aws::CodePipeline
|
|
2166
2185
|
req.send_request(options)
|
2167
2186
|
end
|
2168
2187
|
|
2169
|
-
# Lists the rules for the condition.
|
2188
|
+
# Lists the rules for the condition. For more information about
|
2189
|
+
# conditions, see [Stage conditions][1]. For more information about
|
2190
|
+
# rules, see the [CodePipeline rule reference][2].
|
2191
|
+
#
|
2192
|
+
#
|
2193
|
+
#
|
2194
|
+
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
|
2195
|
+
# [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
|
2170
2196
|
#
|
2171
2197
|
# @option params [String] :rule_owner_filter
|
2172
2198
|
# The rule owner to filter on.
|
@@ -2562,6 +2588,11 @@ module Aws::CodePipeline
|
|
2562
2588
|
# GetPipelineState action. It is used to validate that the approval
|
2563
2589
|
# request corresponding to this token is still valid.
|
2564
2590
|
#
|
2591
|
+
# For a pipeline where the execution mode is set to PARALLEL, the token
|
2592
|
+
# required to approve/reject approval request as detailed above is not
|
2593
|
+
# available. Instead, use the `externalExecutionId` from the
|
2594
|
+
# `GetPipelineState` action as the token in the approval request.
|
2595
|
+
#
|
2565
2596
|
# @return [Types::PutApprovalResultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2566
2597
|
#
|
2567
2598
|
# * {Types::PutApprovalResultOutput#approved_at #approved_at} => Time
|
@@ -3327,6 +3358,7 @@ module Aws::CodePipeline
|
|
3327
3358
|
# configuration: {
|
3328
3359
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
3329
3360
|
# },
|
3361
|
+
# commands: ["Command"],
|
3330
3362
|
# input_artifacts: [
|
3331
3363
|
# {
|
3332
3364
|
# name: "ArtifactName", # required
|
@@ -3356,6 +3388,7 @@ module Aws::CodePipeline
|
|
3356
3388
|
# configuration: {
|
3357
3389
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
3358
3390
|
# },
|
3391
|
+
# commands: ["Command"],
|
3359
3392
|
# input_artifacts: [
|
3360
3393
|
# {
|
3361
3394
|
# name: "ArtifactName", # required
|
@@ -3385,6 +3418,7 @@ module Aws::CodePipeline
|
|
3385
3418
|
# configuration: {
|
3386
3419
|
# "RuleConfigurationKey" => "RuleConfigurationValue",
|
3387
3420
|
# },
|
3421
|
+
# commands: ["Command"],
|
3388
3422
|
# input_artifacts: [
|
3389
3423
|
# {
|
3390
3424
|
# name: "ArtifactName", # required
|
@@ -3503,6 +3537,8 @@ module Aws::CodePipeline
|
|
3503
3537
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].rule_type_id.version #=> String
|
3504
3538
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration #=> Hash
|
3505
3539
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
3540
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands #=> Array
|
3541
|
+
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].commands[0] #=> String
|
3506
3542
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts #=> Array
|
3507
3543
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].input_artifacts[0].name #=> String
|
3508
3544
|
# resp.pipeline.stages[0].on_failure.conditions[0].rules[0].role_arn #=> String
|
@@ -3518,6 +3554,8 @@ module Aws::CodePipeline
|
|
3518
3554
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].rule_type_id.version #=> String
|
3519
3555
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration #=> Hash
|
3520
3556
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
3557
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands #=> Array
|
3558
|
+
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].commands[0] #=> String
|
3521
3559
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts #=> Array
|
3522
3560
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].input_artifacts[0].name #=> String
|
3523
3561
|
# resp.pipeline.stages[0].on_success.conditions[0].rules[0].role_arn #=> String
|
@@ -3533,6 +3571,8 @@ module Aws::CodePipeline
|
|
3533
3571
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].rule_type_id.version #=> String
|
3534
3572
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration #=> Hash
|
3535
3573
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].configuration["RuleConfigurationKey"] #=> String
|
3574
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands #=> Array
|
3575
|
+
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].commands[0] #=> String
|
3536
3576
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts #=> Array
|
3537
3577
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].input_artifacts[0].name #=> String
|
3538
3578
|
# resp.pipeline.stages[0].before_entry.conditions[0].rules[0].role_arn #=> String
|
@@ -3600,7 +3640,7 @@ module Aws::CodePipeline
|
|
3600
3640
|
tracer: tracer
|
3601
3641
|
)
|
3602
3642
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
3603
|
-
context[:gem_version] = '1.
|
3643
|
+
context[:gem_version] = '1.92.0'
|
3604
3644
|
Seahorse::Client::Request.new(handlers, context)
|
3605
3645
|
end
|
3606
3646
|
|
@@ -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
|
@@ -1309,6 +1312,7 @@ module Aws::CodePipeline
|
|
1309
1312
|
RuleDeclaration.add_member(:name, Shapes::ShapeRef.new(shape: RuleName, required: true, location_name: "name"))
|
1310
1313
|
RuleDeclaration.add_member(:rule_type_id, Shapes::ShapeRef.new(shape: RuleTypeId, required: true, location_name: "ruleTypeId"))
|
1311
1314
|
RuleDeclaration.add_member(:configuration, Shapes::ShapeRef.new(shape: RuleConfigurationMap, location_name: "configuration"))
|
1315
|
+
RuleDeclaration.add_member(:commands, Shapes::ShapeRef.new(shape: CommandList, location_name: "commands"))
|
1312
1316
|
RuleDeclaration.add_member(:input_artifacts, Shapes::ShapeRef.new(shape: InputArtifactList, location_name: "inputArtifacts"))
|
1313
1317
|
RuleDeclaration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
1314
1318
|
RuleDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
|
@@ -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
|
@@ -853,6 +865,8 @@ module Aws::CodePipeline
|
|
853
865
|
# * Invoke
|
854
866
|
#
|
855
867
|
# * Approval
|
868
|
+
#
|
869
|
+
# * Compute
|
856
870
|
# @return [String]
|
857
871
|
#
|
858
872
|
# @!attribute [rw] owner
|
@@ -1342,7 +1356,14 @@ module Aws::CodePipeline
|
|
1342
1356
|
end
|
1343
1357
|
|
1344
1358
|
# The condition for the stage. A condition is made up of the rules and
|
1345
|
-
# the result for the condition.
|
1359
|
+
# the result for the condition. For more information about conditions,
|
1360
|
+
# see [Stage conditions][1]. For more information about rules, see the
|
1361
|
+
# [CodePipeline rule reference][2].
|
1362
|
+
#
|
1363
|
+
#
|
1364
|
+
#
|
1365
|
+
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
|
1366
|
+
# [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
|
1346
1367
|
#
|
1347
1368
|
# @!attribute [rw] result
|
1348
1369
|
# The action to be done when the condition is met. For example,
|
@@ -1930,6 +1951,8 @@ module Aws::CodePipeline
|
|
1930
1951
|
# * `Approval`
|
1931
1952
|
#
|
1932
1953
|
# * `Invoke`
|
1954
|
+
#
|
1955
|
+
# * `Compute`
|
1933
1956
|
# @return [String]
|
1934
1957
|
#
|
1935
1958
|
# @!attribute [rw] owner
|
@@ -3918,6 +3941,11 @@ module Aws::CodePipeline
|
|
3918
3941
|
# request. The token for each open approval request can be obtained
|
3919
3942
|
# using the GetPipelineState action. It is used to validate that the
|
3920
3943
|
# approval request corresponding to this token is still valid.
|
3944
|
+
#
|
3945
|
+
# For a pipeline where the execution mode is set to PARALLEL, the
|
3946
|
+
# token required to approve/reject approval request as detailed above
|
3947
|
+
# is not available. Instead, use the `externalExecutionId` from the
|
3948
|
+
# `GetPipelineState` action as the token in the approval request.
|
3921
3949
|
# @return [String]
|
3922
3950
|
#
|
3923
3951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutApprovalResultInput AWS API Documentation
|
@@ -4354,11 +4382,18 @@ module Aws::CodePipeline
|
|
4354
4382
|
# Represents information about the rule to be created for an associated
|
4355
4383
|
# condition. An example would be creating a new rule for an entry
|
4356
4384
|
# condition, such as a rule that checks for a test result before
|
4357
|
-
# allowing the run to enter the deployment stage.
|
4385
|
+
# allowing the run to enter the deployment stage. For more information
|
4386
|
+
# about conditions, see [Stage conditions][1]. For more information
|
4387
|
+
# about rules, see the [CodePipeline rule reference][2].
|
4388
|
+
#
|
4389
|
+
#
|
4390
|
+
#
|
4391
|
+
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
|
4392
|
+
# [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
|
4358
4393
|
#
|
4359
4394
|
# @!attribute [rw] name
|
4360
4395
|
# The name of the rule that is created for the condition, such as
|
4361
|
-
#
|
4396
|
+
# `VariableCheck`.
|
4362
4397
|
# @return [String]
|
4363
4398
|
#
|
4364
4399
|
# @!attribute [rw] rule_type_id
|
@@ -4370,6 +4405,18 @@ module Aws::CodePipeline
|
|
4370
4405
|
# The action configuration fields for the rule.
|
4371
4406
|
# @return [Hash<String,String>]
|
4372
4407
|
#
|
4408
|
+
# @!attribute [rw] commands
|
4409
|
+
# The shell commands to run with your commands rule in CodePipeline.
|
4410
|
+
# All commands are supported except multi-line formats. While
|
4411
|
+
# CodeBuild logs and permissions are used, you do not need to create
|
4412
|
+
# any resources in CodeBuild.
|
4413
|
+
#
|
4414
|
+
# <note markdown="1"> Using compute time for this action will incur separate charges in
|
4415
|
+
# CodeBuild.
|
4416
|
+
#
|
4417
|
+
# </note>
|
4418
|
+
# @return [Array<String>]
|
4419
|
+
#
|
4373
4420
|
# @!attribute [rw] input_artifacts
|
4374
4421
|
# The input artifacts fields for the rule, such as specifying an input
|
4375
4422
|
# file for the rule.
|
@@ -4393,6 +4440,7 @@ module Aws::CodePipeline
|
|
4393
4440
|
:name,
|
4394
4441
|
:rule_type_id,
|
4395
4442
|
:configuration,
|
4443
|
+
:commands,
|
4396
4444
|
:input_artifacts,
|
4397
4445
|
:role_arn,
|
4398
4446
|
:region,
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -226,6 +226,7 @@ module Aws
|
|
226
226
|
version: ::String?
|
227
227
|
},
|
228
228
|
configuration: Hash[::String, ::String]?,
|
229
|
+
commands: Array[::String]?,
|
229
230
|
input_artifacts: Array[
|
230
231
|
{
|
231
232
|
name: ::String
|
@@ -253,6 +254,7 @@ module Aws
|
|
253
254
|
version: ::String?
|
254
255
|
},
|
255
256
|
configuration: Hash[::String, ::String]?,
|
257
|
+
commands: Array[::String]?,
|
256
258
|
input_artifacts: Array[
|
257
259
|
{
|
258
260
|
name: ::String
|
@@ -280,6 +282,7 @@ module Aws
|
|
280
282
|
version: ::String?
|
281
283
|
},
|
282
284
|
configuration: Hash[::String, ::String]?,
|
285
|
+
commands: Array[::String]?,
|
283
286
|
input_artifacts: Array[
|
284
287
|
{
|
285
288
|
name: ::String
|
@@ -993,6 +996,7 @@ module Aws
|
|
993
996
|
version: ::String?
|
994
997
|
},
|
995
998
|
configuration: Hash[::String, ::String]?,
|
999
|
+
commands: Array[::String]?,
|
996
1000
|
input_artifacts: Array[
|
997
1001
|
{
|
998
1002
|
name: ::String
|
@@ -1020,6 +1024,7 @@ module Aws
|
|
1020
1024
|
version: ::String?
|
1021
1025
|
},
|
1022
1026
|
configuration: Hash[::String, ::String]?,
|
1027
|
+
commands: Array[::String]?,
|
1023
1028
|
input_artifacts: Array[
|
1024
1029
|
{
|
1025
1030
|
name: ::String
|
@@ -1047,6 +1052,7 @@ module Aws
|
|
1047
1052
|
version: ::String?
|
1048
1053
|
},
|
1049
1054
|
configuration: Hash[::String, ::String]?,
|
1055
|
+
commands: Array[::String]?,
|
1050
1056
|
input_artifacts: Array[
|
1051
1057
|
{
|
1052
1058
|
name: ::String
|
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
|
|
@@ -1112,6 +1114,7 @@ module Aws::CodePipeline
|
|
1112
1114
|
attr_accessor name: ::String
|
1113
1115
|
attr_accessor rule_type_id: Types::RuleTypeId
|
1114
1116
|
attr_accessor configuration: ::Hash[::String, ::String]
|
1117
|
+
attr_accessor commands: ::Array[::String]
|
1115
1118
|
attr_accessor input_artifacts: ::Array[Types::InputArtifact]
|
1116
1119
|
attr_accessor role_arn: ::String
|
1117
1120
|
attr_accessor region: ::String
|
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.92.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
|
+
date: 2024-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|