aws-sdk-codepipeline 1.67.0 → 1.69.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: d66c69db55110ed8af59edd3e13680c7946b7b75b589ae45765954f29f26b2df
4
- data.tar.gz: 6fcab4a996637d92d346cf8f4c0c46acd1eb4b4ac594b7de8a8b611153e3e051
3
+ metadata.gz: b9fe941a6b03ff92e266330cc0042c261b94378b35c50119e31dd3e68709b76d
4
+ data.tar.gz: 45dcf23845384f62f905b2eb773009424499d8aaeab278aba660cfde216490f1
5
5
  SHA512:
6
- metadata.gz: 2d725090267f6b8742dc68d6f9ce5669594d648a0856079b0bc8cff8ab6e6fe7a330848da411625d36f5461dc457cbb7b15e0766e66a15e0eb0d901d64636e7e
7
- data.tar.gz: 531e9a8e9204a06f4a9f24c7e11601ab71b67a94bf70a1577dc56f46336964b159cbc70cc4426e82918d1622fc9e6f06a59203621770e188776e152f7aef1959
6
+ metadata.gz: 51a73a09e4268e9ca8a924a82136cc6281686cd76d2e2d1d808f18c9935aa9b4be0b61631d3cd00a95ed2ae0d45d131cb12ec7fc633f34735aed3759d8cd6047
7
+ data.tar.gz: 66f3cde336c51552746730335c9d45890eefec0aecedd89fd0049660519b7058ff5ac5563ec46a5fc4eb40320250af65254334ec60cf3fef8302b8c0fcc354c0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2024-02-08)
5
+ ------------------
6
+
7
+ * Feature - Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
8
+
9
+ 1.68.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.67.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -683,7 +683,15 @@ module Aws::CodePipeline
683
683
  # },
684
684
  # ],
685
685
  # version: 1,
686
+ # execution_mode: "QUEUED", # accepts QUEUED, SUPERSEDED, PARALLEL
686
687
  # pipeline_type: "V1", # accepts V1, V2
688
+ # variables: [
689
+ # {
690
+ # name: "PipelineVariableName", # required
691
+ # default_value: "PipelineVariableValue",
692
+ # description: "PipelineVariableDescription",
693
+ # },
694
+ # ],
687
695
  # triggers: [
688
696
  # {
689
697
  # provider_type: "CodeStarSourceConnection", # required, accepts CodeStarSourceConnection
@@ -695,18 +703,32 @@ module Aws::CodePipeline
695
703
  # includes: ["GitTagNamePattern"],
696
704
  # excludes: ["GitTagNamePattern"],
697
705
  # },
706
+ # branches: {
707
+ # includes: ["GitBranchNamePattern"],
708
+ # excludes: ["GitBranchNamePattern"],
709
+ # },
710
+ # file_paths: {
711
+ # includes: ["GitFilePathPattern"],
712
+ # excludes: ["GitFilePathPattern"],
713
+ # },
714
+ # },
715
+ # ],
716
+ # pull_request: [
717
+ # {
718
+ # events: ["OPEN"], # accepts OPEN, UPDATED, CLOSED
719
+ # branches: {
720
+ # includes: ["GitBranchNamePattern"],
721
+ # excludes: ["GitBranchNamePattern"],
722
+ # },
723
+ # file_paths: {
724
+ # includes: ["GitFilePathPattern"],
725
+ # excludes: ["GitFilePathPattern"],
726
+ # },
698
727
  # },
699
728
  # ],
700
729
  # },
701
730
  # },
702
731
  # ],
703
- # variables: [
704
- # {
705
- # name: "PipelineVariableName", # required
706
- # default_value: "PipelineVariableValue",
707
- # description: "PipelineVariableDescription",
708
- # },
709
- # ],
710
732
  # },
711
733
  # tags: [
712
734
  # {
@@ -751,7 +773,12 @@ module Aws::CodePipeline
751
773
  # resp.pipeline.stages[0].actions[0].region #=> String
752
774
  # resp.pipeline.stages[0].actions[0].namespace #=> String
753
775
  # resp.pipeline.version #=> Integer
776
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
754
777
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
778
+ # resp.pipeline.variables #=> Array
779
+ # resp.pipeline.variables[0].name #=> String
780
+ # resp.pipeline.variables[0].default_value #=> String
781
+ # resp.pipeline.variables[0].description #=> String
755
782
  # resp.pipeline.triggers #=> Array
756
783
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
757
784
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -760,10 +787,25 @@ module Aws::CodePipeline
760
787
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
761
788
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
762
789
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes[0] #=> String
763
- # resp.pipeline.variables #=> Array
764
- # resp.pipeline.variables[0].name #=> String
765
- # resp.pipeline.variables[0].default_value #=> String
766
- # resp.pipeline.variables[0].description #=> String
790
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
791
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
792
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
793
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
794
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
795
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
796
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
797
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
798
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
799
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
800
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
801
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
802
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
803
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
804
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
805
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
806
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
807
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
808
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
767
809
  # resp.tags #=> Array
768
810
  # resp.tags[0].key #=> String
769
811
  # resp.tags[0].value #=> String
@@ -1181,7 +1223,12 @@ module Aws::CodePipeline
1181
1223
  # resp.pipeline.stages[0].actions[0].region #=> String
1182
1224
  # resp.pipeline.stages[0].actions[0].namespace #=> String
1183
1225
  # resp.pipeline.version #=> Integer
1226
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1184
1227
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
1228
+ # resp.pipeline.variables #=> Array
1229
+ # resp.pipeline.variables[0].name #=> String
1230
+ # resp.pipeline.variables[0].default_value #=> String
1231
+ # resp.pipeline.variables[0].description #=> String
1185
1232
  # resp.pipeline.triggers #=> Array
1186
1233
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
1187
1234
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -1190,10 +1237,25 @@ module Aws::CodePipeline
1190
1237
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
1191
1238
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
1192
1239
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes[0] #=> String
1193
- # resp.pipeline.variables #=> Array
1194
- # resp.pipeline.variables[0].name #=> String
1195
- # resp.pipeline.variables[0].default_value #=> String
1196
- # resp.pipeline.variables[0].description #=> String
1240
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
1241
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
1242
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
1243
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
1244
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
1245
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
1246
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
1247
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
1248
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
1249
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
1250
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
1251
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
1252
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
1253
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
1254
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
1255
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
1256
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
1257
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
1258
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
1197
1259
  # resp.metadata.pipeline_arn #=> String
1198
1260
  # resp.metadata.created #=> Time
1199
1261
  # resp.metadata.updated #=> Time
@@ -1245,11 +1307,12 @@ module Aws::CodePipeline
1245
1307
  # resp.pipeline_execution.artifact_revisions[0].revision_summary #=> String
1246
1308
  # resp.pipeline_execution.artifact_revisions[0].created #=> Time
1247
1309
  # resp.pipeline_execution.artifact_revisions[0].revision_url #=> String
1248
- # resp.pipeline_execution.trigger.trigger_type #=> String, one of "CreatePipeline", "StartPipelineExecution", "PollForSourceChanges", "Webhook", "CloudWatchEvent", "PutActionRevision", "WebhookV2"
1249
- # resp.pipeline_execution.trigger.trigger_detail #=> String
1250
1310
  # resp.pipeline_execution.variables #=> Array
1251
1311
  # resp.pipeline_execution.variables[0].name #=> String
1252
1312
  # resp.pipeline_execution.variables[0].resolved_value #=> String
1313
+ # resp.pipeline_execution.trigger.trigger_type #=> String, one of "CreatePipeline", "StartPipelineExecution", "PollForSourceChanges", "Webhook", "CloudWatchEvent", "PutActionRevision", "WebhookV2"
1314
+ # resp.pipeline_execution.trigger.trigger_detail #=> String
1315
+ # resp.pipeline_execution.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1253
1316
  #
1254
1317
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineExecution AWS API Documentation
1255
1318
  #
@@ -1294,6 +1357,9 @@ module Aws::CodePipeline
1294
1357
  # resp.stage_states[0].stage_name #=> String
1295
1358
  # resp.stage_states[0].inbound_execution.pipeline_execution_id #=> String
1296
1359
  # resp.stage_states[0].inbound_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1360
+ # resp.stage_states[0].inbound_executions #=> Array
1361
+ # resp.stage_states[0].inbound_executions[0].pipeline_execution_id #=> String
1362
+ # resp.stage_states[0].inbound_executions[0].status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1297
1363
  # resp.stage_states[0].inbound_transition_state.enabled #=> Boolean
1298
1364
  # resp.stage_states[0].inbound_transition_state.last_changed_by #=> String
1299
1365
  # resp.stage_states[0].inbound_transition_state.last_changed_at #=> Time
@@ -1440,6 +1506,10 @@ module Aws::CodePipeline
1440
1506
  # pipeline_name: "PipelineName", # required
1441
1507
  # filter: {
1442
1508
  # pipeline_execution_id: "PipelineExecutionId",
1509
+ # latest_in_pipeline_execution: {
1510
+ # pipeline_execution_id: "PipelineExecutionId", # required
1511
+ # start_time_range: "Latest", # required, accepts Latest, All
1512
+ # },
1443
1513
  # },
1444
1514
  # max_results: 1,
1445
1515
  # next_token: "NextToken",
@@ -1455,6 +1525,7 @@ module Aws::CodePipeline
1455
1525
  # resp.action_execution_details[0].action_name #=> String
1456
1526
  # resp.action_execution_details[0].start_time #=> Time
1457
1527
  # resp.action_execution_details[0].last_update_time #=> Time
1528
+ # resp.action_execution_details[0].updated_by #=> String
1458
1529
  # resp.action_execution_details[0].status #=> String, one of "InProgress", "Abandoned", "Succeeded", "Failed"
1459
1530
  # resp.action_execution_details[0].input.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
1460
1531
  # resp.action_execution_details[0].input.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
@@ -1478,6 +1549,8 @@ module Aws::CodePipeline
1478
1549
  # resp.action_execution_details[0].output.execution_result.external_execution_id #=> String
1479
1550
  # resp.action_execution_details[0].output.execution_result.external_execution_summary #=> String
1480
1551
  # resp.action_execution_details[0].output.execution_result.external_execution_url #=> String
1552
+ # resp.action_execution_details[0].output.execution_result.error_details.code #=> String
1553
+ # resp.action_execution_details[0].output.execution_result.error_details.message #=> String
1481
1554
  # resp.action_execution_details[0].output.output_variables #=> Hash
1482
1555
  # resp.action_execution_details[0].output.output_variables["OutputVariablesKey"] #=> String
1483
1556
  # resp.next_token #=> String
@@ -1602,6 +1675,7 @@ module Aws::CodePipeline
1602
1675
  # resp.pipeline_execution_summaries[0].trigger.trigger_type #=> String, one of "CreatePipeline", "StartPipelineExecution", "PollForSourceChanges", "Webhook", "CloudWatchEvent", "PutActionRevision", "WebhookV2"
1603
1676
  # resp.pipeline_execution_summaries[0].trigger.trigger_detail #=> String
1604
1677
  # resp.pipeline_execution_summaries[0].stop_trigger.reason #=> String
1678
+ # resp.pipeline_execution_summaries[0].execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1605
1679
  # resp.next_token #=> String
1606
1680
  #
1607
1681
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelineExecutions AWS API Documentation
@@ -1645,6 +1719,7 @@ module Aws::CodePipeline
1645
1719
  # resp.pipelines[0].name #=> String
1646
1720
  # resp.pipelines[0].version #=> Integer
1647
1721
  # resp.pipelines[0].pipeline_type #=> String, one of "V1", "V2"
1722
+ # resp.pipelines[0].execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1648
1723
  # resp.pipelines[0].created #=> Time
1649
1724
  # resp.pipelines[0].updated #=> Time
1650
1725
  # resp.next_token #=> String
@@ -2659,7 +2734,15 @@ module Aws::CodePipeline
2659
2734
  # },
2660
2735
  # ],
2661
2736
  # version: 1,
2737
+ # execution_mode: "QUEUED", # accepts QUEUED, SUPERSEDED, PARALLEL
2662
2738
  # pipeline_type: "V1", # accepts V1, V2
2739
+ # variables: [
2740
+ # {
2741
+ # name: "PipelineVariableName", # required
2742
+ # default_value: "PipelineVariableValue",
2743
+ # description: "PipelineVariableDescription",
2744
+ # },
2745
+ # ],
2663
2746
  # triggers: [
2664
2747
  # {
2665
2748
  # provider_type: "CodeStarSourceConnection", # required, accepts CodeStarSourceConnection
@@ -2671,18 +2754,32 @@ module Aws::CodePipeline
2671
2754
  # includes: ["GitTagNamePattern"],
2672
2755
  # excludes: ["GitTagNamePattern"],
2673
2756
  # },
2757
+ # branches: {
2758
+ # includes: ["GitBranchNamePattern"],
2759
+ # excludes: ["GitBranchNamePattern"],
2760
+ # },
2761
+ # file_paths: {
2762
+ # includes: ["GitFilePathPattern"],
2763
+ # excludes: ["GitFilePathPattern"],
2764
+ # },
2765
+ # },
2766
+ # ],
2767
+ # pull_request: [
2768
+ # {
2769
+ # events: ["OPEN"], # accepts OPEN, UPDATED, CLOSED
2770
+ # branches: {
2771
+ # includes: ["GitBranchNamePattern"],
2772
+ # excludes: ["GitBranchNamePattern"],
2773
+ # },
2774
+ # file_paths: {
2775
+ # includes: ["GitFilePathPattern"],
2776
+ # excludes: ["GitFilePathPattern"],
2777
+ # },
2674
2778
  # },
2675
2779
  # ],
2676
2780
  # },
2677
2781
  # },
2678
2782
  # ],
2679
- # variables: [
2680
- # {
2681
- # name: "PipelineVariableName", # required
2682
- # default_value: "PipelineVariableValue",
2683
- # description: "PipelineVariableDescription",
2684
- # },
2685
- # ],
2686
2783
  # },
2687
2784
  # })
2688
2785
  #
@@ -2721,7 +2818,12 @@ module Aws::CodePipeline
2721
2818
  # resp.pipeline.stages[0].actions[0].region #=> String
2722
2819
  # resp.pipeline.stages[0].actions[0].namespace #=> String
2723
2820
  # resp.pipeline.version #=> Integer
2821
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
2724
2822
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
2823
+ # resp.pipeline.variables #=> Array
2824
+ # resp.pipeline.variables[0].name #=> String
2825
+ # resp.pipeline.variables[0].default_value #=> String
2826
+ # resp.pipeline.variables[0].description #=> String
2725
2827
  # resp.pipeline.triggers #=> Array
2726
2828
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
2727
2829
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -2730,10 +2832,25 @@ module Aws::CodePipeline
2730
2832
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
2731
2833
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
2732
2834
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes[0] #=> String
2733
- # resp.pipeline.variables #=> Array
2734
- # resp.pipeline.variables[0].name #=> String
2735
- # resp.pipeline.variables[0].default_value #=> String
2736
- # resp.pipeline.variables[0].description #=> String
2835
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
2836
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
2837
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
2838
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
2839
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
2840
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
2841
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
2842
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
2843
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
2844
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
2845
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
2846
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
2847
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
2848
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
2849
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
2850
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
2851
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
2852
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
2853
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
2737
2854
  #
2738
2855
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline AWS API Documentation
2739
2856
  #
@@ -2757,7 +2874,7 @@ module Aws::CodePipeline
2757
2874
  params: params,
2758
2875
  config: config)
2759
2876
  context[:gem_name] = 'aws-sdk-codepipeline'
2760
- context[:gem_version] = '1.67.0'
2877
+ context[:gem_version] = '1.69.0'
2761
2878
  Seahorse::Client::Request.new(handlers, context)
2762
2879
  end
2763
2880
 
@@ -97,6 +97,7 @@ module Aws::CodePipeline
97
97
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
98
98
  Code = Shapes::StringShape.new(name: 'Code')
99
99
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
100
+ ConcurrentPipelineExecutionsLimitExceededException = Shapes::StructureShape.new(name: 'ConcurrentPipelineExecutionsLimitExceededException')
100
101
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
101
102
  ContinuationToken = Shapes::StringShape.new(name: 'ContinuationToken')
102
103
  CreateCustomActionTypeInput = Shapes::StructureShape.new(name: 'CreateCustomActionTypeInput')
@@ -122,6 +123,7 @@ module Aws::CodePipeline
122
123
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
123
124
  ExecutionDetails = Shapes::StructureShape.new(name: 'ExecutionDetails')
124
125
  ExecutionId = Shapes::StringShape.new(name: 'ExecutionId')
126
+ ExecutionMode = Shapes::StringShape.new(name: 'ExecutionMode')
125
127
  ExecutionSummary = Shapes::StringShape.new(name: 'ExecutionSummary')
126
128
  ExecutionTrigger = Shapes::StructureShape.new(name: 'ExecutionTrigger')
127
129
  ExecutorConfiguration = Shapes::StructureShape.new(name: 'ExecutorConfiguration')
@@ -142,7 +144,17 @@ module Aws::CodePipeline
142
144
  GetPipelineStateOutput = Shapes::StructureShape.new(name: 'GetPipelineStateOutput')
143
145
  GetThirdPartyJobDetailsInput = Shapes::StructureShape.new(name: 'GetThirdPartyJobDetailsInput')
144
146
  GetThirdPartyJobDetailsOutput = Shapes::StructureShape.new(name: 'GetThirdPartyJobDetailsOutput')
147
+ GitBranchFilterCriteria = Shapes::StructureShape.new(name: 'GitBranchFilterCriteria')
148
+ GitBranchNamePattern = Shapes::StringShape.new(name: 'GitBranchNamePattern')
149
+ GitBranchPatternList = Shapes::ListShape.new(name: 'GitBranchPatternList')
145
150
  GitConfiguration = Shapes::StructureShape.new(name: 'GitConfiguration')
151
+ GitFilePathFilterCriteria = Shapes::StructureShape.new(name: 'GitFilePathFilterCriteria')
152
+ GitFilePathPattern = Shapes::StringShape.new(name: 'GitFilePathPattern')
153
+ GitFilePathPatternList = Shapes::ListShape.new(name: 'GitFilePathPatternList')
154
+ GitPullRequestEventType = Shapes::StringShape.new(name: 'GitPullRequestEventType')
155
+ GitPullRequestEventTypeList = Shapes::ListShape.new(name: 'GitPullRequestEventTypeList')
156
+ GitPullRequestFilter = Shapes::StructureShape.new(name: 'GitPullRequestFilter')
157
+ GitPullRequestFilterList = Shapes::ListShape.new(name: 'GitPullRequestFilterList')
146
158
  GitPushFilter = Shapes::StructureShape.new(name: 'GitPushFilter')
147
159
  GitPushFilterList = Shapes::ListShape.new(name: 'GitPushFilterList')
148
160
  GitTagFilterCriteria = Shapes::StructureShape.new(name: 'GitTagFilterCriteria')
@@ -179,6 +191,7 @@ module Aws::CodePipeline
179
191
  LastChangedAt = Shapes::TimestampShape.new(name: 'LastChangedAt')
180
192
  LastChangedBy = Shapes::StringShape.new(name: 'LastChangedBy')
181
193
  LastUpdatedBy = Shapes::StringShape.new(name: 'LastUpdatedBy')
194
+ LatestInPipelineExecutionFilter = Shapes::StructureShape.new(name: 'LatestInPipelineExecutionFilter')
182
195
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
183
196
  ListActionExecutionsInput = Shapes::StructureShape.new(name: 'ListActionExecutionsInput')
184
197
  ListActionExecutionsOutput = Shapes::StructureShape.new(name: 'ListActionExecutionsOutput')
@@ -295,6 +308,7 @@ module Aws::CodePipeline
295
308
  StageContext = Shapes::StructureShape.new(name: 'StageContext')
296
309
  StageDeclaration = Shapes::StructureShape.new(name: 'StageDeclaration')
297
310
  StageExecution = Shapes::StructureShape.new(name: 'StageExecution')
311
+ StageExecutionList = Shapes::ListShape.new(name: 'StageExecutionList')
298
312
  StageExecutionStatus = Shapes::StringShape.new(name: 'StageExecutionStatus')
299
313
  StageName = Shapes::StringShape.new(name: 'StageName')
300
314
  StageNotFoundException = Shapes::StructureShape.new(name: 'StageNotFoundException')
@@ -305,6 +319,7 @@ module Aws::CodePipeline
305
319
  StageTransitionType = Shapes::StringShape.new(name: 'StageTransitionType')
306
320
  StartPipelineExecutionInput = Shapes::StructureShape.new(name: 'StartPipelineExecutionInput')
307
321
  StartPipelineExecutionOutput = Shapes::StructureShape.new(name: 'StartPipelineExecutionOutput')
322
+ StartTimeRange = Shapes::StringShape.new(name: 'StartTimeRange')
308
323
  StopExecutionTrigger = Shapes::StructureShape.new(name: 'StopExecutionTrigger')
309
324
  StopPipelineExecutionInput = Shapes::StructureShape.new(name: 'StopPipelineExecutionInput')
310
325
  StopPipelineExecutionOutput = Shapes::StructureShape.new(name: 'StopPipelineExecutionOutput')
@@ -424,6 +439,7 @@ module Aws::CodePipeline
424
439
  ActionExecutionDetail.add_member(:action_name, Shapes::ShapeRef.new(shape: ActionName, location_name: "actionName"))
425
440
  ActionExecutionDetail.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
426
441
  ActionExecutionDetail.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
442
+ ActionExecutionDetail.add_member(:updated_by, Shapes::ShapeRef.new(shape: LastUpdatedBy, location_name: "updatedBy"))
427
443
  ActionExecutionDetail.add_member(:status, Shapes::ShapeRef.new(shape: ActionExecutionStatus, location_name: "status"))
428
444
  ActionExecutionDetail.add_member(:input, Shapes::ShapeRef.new(shape: ActionExecutionInput, location_name: "input"))
429
445
  ActionExecutionDetail.add_member(:output, Shapes::ShapeRef.new(shape: ActionExecutionOutput, location_name: "output"))
@@ -432,6 +448,7 @@ module Aws::CodePipeline
432
448
  ActionExecutionDetailList.member = Shapes::ShapeRef.new(shape: ActionExecutionDetail)
433
449
 
434
450
  ActionExecutionFilter.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
451
+ ActionExecutionFilter.add_member(:latest_in_pipeline_execution, Shapes::ShapeRef.new(shape: LatestInPipelineExecutionFilter, location_name: "latestInPipelineExecution"))
435
452
  ActionExecutionFilter.struct_class = Types::ActionExecutionFilter
436
453
 
437
454
  ActionExecutionInput.add_member(:action_type_id, Shapes::ShapeRef.new(shape: ActionTypeId, location_name: "actionTypeId"))
@@ -451,6 +468,7 @@ module Aws::CodePipeline
451
468
  ActionExecutionResult.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExternalExecutionId, location_name: "externalExecutionId"))
452
469
  ActionExecutionResult.add_member(:external_execution_summary, Shapes::ShapeRef.new(shape: ExternalExecutionSummary, location_name: "externalExecutionSummary"))
453
470
  ActionExecutionResult.add_member(:external_execution_url, Shapes::ShapeRef.new(shape: Url, location_name: "externalExecutionUrl"))
471
+ ActionExecutionResult.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "errorDetails"))
454
472
  ActionExecutionResult.struct_class = Types::ActionExecutionResult
455
473
 
456
474
  ActionNotFoundException.struct_class = Types::ActionNotFoundException
@@ -593,6 +611,9 @@ module Aws::CodePipeline
593
611
  ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
594
612
  ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
595
613
 
614
+ ConcurrentPipelineExecutionsLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
615
+ ConcurrentPipelineExecutionsLimitExceededException.struct_class = Types::ConcurrentPipelineExecutionsLimitExceededException
616
+
596
617
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
597
618
  ConflictException.struct_class = Types::ConflictException
598
619
 
@@ -729,11 +750,35 @@ module Aws::CodePipeline
729
750
  GetThirdPartyJobDetailsOutput.add_member(:job_details, Shapes::ShapeRef.new(shape: ThirdPartyJobDetails, location_name: "jobDetails"))
730
751
  GetThirdPartyJobDetailsOutput.struct_class = Types::GetThirdPartyJobDetailsOutput
731
752
 
753
+ GitBranchFilterCriteria.add_member(:includes, Shapes::ShapeRef.new(shape: GitBranchPatternList, location_name: "includes"))
754
+ GitBranchFilterCriteria.add_member(:excludes, Shapes::ShapeRef.new(shape: GitBranchPatternList, location_name: "excludes"))
755
+ GitBranchFilterCriteria.struct_class = Types::GitBranchFilterCriteria
756
+
757
+ GitBranchPatternList.member = Shapes::ShapeRef.new(shape: GitBranchNamePattern)
758
+
732
759
  GitConfiguration.add_member(:source_action_name, Shapes::ShapeRef.new(shape: ActionName, required: true, location_name: "sourceActionName"))
733
760
  GitConfiguration.add_member(:push, Shapes::ShapeRef.new(shape: GitPushFilterList, location_name: "push"))
761
+ GitConfiguration.add_member(:pull_request, Shapes::ShapeRef.new(shape: GitPullRequestFilterList, location_name: "pullRequest"))
734
762
  GitConfiguration.struct_class = Types::GitConfiguration
735
763
 
764
+ GitFilePathFilterCriteria.add_member(:includes, Shapes::ShapeRef.new(shape: GitFilePathPatternList, location_name: "includes"))
765
+ GitFilePathFilterCriteria.add_member(:excludes, Shapes::ShapeRef.new(shape: GitFilePathPatternList, location_name: "excludes"))
766
+ GitFilePathFilterCriteria.struct_class = Types::GitFilePathFilterCriteria
767
+
768
+ GitFilePathPatternList.member = Shapes::ShapeRef.new(shape: GitFilePathPattern)
769
+
770
+ GitPullRequestEventTypeList.member = Shapes::ShapeRef.new(shape: GitPullRequestEventType)
771
+
772
+ GitPullRequestFilter.add_member(:events, Shapes::ShapeRef.new(shape: GitPullRequestEventTypeList, location_name: "events"))
773
+ GitPullRequestFilter.add_member(:branches, Shapes::ShapeRef.new(shape: GitBranchFilterCriteria, location_name: "branches"))
774
+ GitPullRequestFilter.add_member(:file_paths, Shapes::ShapeRef.new(shape: GitFilePathFilterCriteria, location_name: "filePaths"))
775
+ GitPullRequestFilter.struct_class = Types::GitPullRequestFilter
776
+
777
+ GitPullRequestFilterList.member = Shapes::ShapeRef.new(shape: GitPullRequestFilter)
778
+
736
779
  GitPushFilter.add_member(:tags, Shapes::ShapeRef.new(shape: GitTagFilterCriteria, location_name: "tags"))
780
+ GitPushFilter.add_member(:branches, Shapes::ShapeRef.new(shape: GitBranchFilterCriteria, location_name: "branches"))
781
+ GitPushFilter.add_member(:file_paths, Shapes::ShapeRef.new(shape: GitFilePathFilterCriteria, location_name: "filePaths"))
737
782
  GitPushFilter.struct_class = Types::GitPushFilter
738
783
 
739
784
  GitPushFilterList.member = Shapes::ShapeRef.new(shape: GitPushFilter)
@@ -811,6 +856,10 @@ module Aws::CodePipeline
811
856
  LambdaExecutorConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "lambdaFunctionArn"))
812
857
  LambdaExecutorConfiguration.struct_class = Types::LambdaExecutorConfiguration
813
858
 
859
+ LatestInPipelineExecutionFilter.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, required: true, location_name: "pipelineExecutionId"))
860
+ LatestInPipelineExecutionFilter.add_member(:start_time_range, Shapes::ShapeRef.new(shape: StartTimeRange, required: true, location_name: "startTimeRange"))
861
+ LatestInPipelineExecutionFilter.struct_class = Types::LatestInPipelineExecutionFilter
862
+
814
863
  LimitExceededException.struct_class = Types::LimitExceededException
815
864
 
816
865
  ListActionExecutionsInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
@@ -901,9 +950,10 @@ module Aws::CodePipeline
901
950
  PipelineDeclaration.add_member(:artifact_stores, Shapes::ShapeRef.new(shape: ArtifactStoreMap, location_name: "artifactStores"))
902
951
  PipelineDeclaration.add_member(:stages, Shapes::ShapeRef.new(shape: PipelineStageDeclarationList, required: true, location_name: "stages"))
903
952
  PipelineDeclaration.add_member(:version, Shapes::ShapeRef.new(shape: PipelineVersion, location_name: "version"))
953
+ PipelineDeclaration.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "executionMode"))
904
954
  PipelineDeclaration.add_member(:pipeline_type, Shapes::ShapeRef.new(shape: PipelineType, location_name: "pipelineType"))
905
- PipelineDeclaration.add_member(:triggers, Shapes::ShapeRef.new(shape: PipelineTriggerDeclarationList, location_name: "triggers"))
906
955
  PipelineDeclaration.add_member(:variables, Shapes::ShapeRef.new(shape: PipelineVariableDeclarationList, location_name: "variables"))
956
+ PipelineDeclaration.add_member(:triggers, Shapes::ShapeRef.new(shape: PipelineTriggerDeclarationList, location_name: "triggers"))
907
957
  PipelineDeclaration.struct_class = Types::PipelineDeclaration
908
958
 
909
959
  PipelineExecution.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "pipelineName"))
@@ -912,8 +962,9 @@ module Aws::CodePipeline
912
962
  PipelineExecution.add_member(:status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "status"))
913
963
  PipelineExecution.add_member(:status_summary, Shapes::ShapeRef.new(shape: PipelineExecutionStatusSummary, location_name: "statusSummary"))
914
964
  PipelineExecution.add_member(:artifact_revisions, Shapes::ShapeRef.new(shape: ArtifactRevisionList, location_name: "artifactRevisions"))
915
- PipelineExecution.add_member(:trigger, Shapes::ShapeRef.new(shape: ExecutionTrigger, location_name: "trigger"))
916
965
  PipelineExecution.add_member(:variables, Shapes::ShapeRef.new(shape: ResolvedPipelineVariableList, location_name: "variables"))
966
+ PipelineExecution.add_member(:trigger, Shapes::ShapeRef.new(shape: ExecutionTrigger, location_name: "trigger"))
967
+ PipelineExecution.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "executionMode"))
917
968
  PipelineExecution.struct_class = Types::PipelineExecution
918
969
 
919
970
  PipelineExecutionNotFoundException.struct_class = Types::PipelineExecutionNotFoundException
@@ -928,6 +979,7 @@ module Aws::CodePipeline
928
979
  PipelineExecutionSummary.add_member(:source_revisions, Shapes::ShapeRef.new(shape: SourceRevisionList, location_name: "sourceRevisions"))
929
980
  PipelineExecutionSummary.add_member(:trigger, Shapes::ShapeRef.new(shape: ExecutionTrigger, location_name: "trigger"))
930
981
  PipelineExecutionSummary.add_member(:stop_trigger, Shapes::ShapeRef.new(shape: StopExecutionTrigger, location_name: "stopTrigger"))
982
+ PipelineExecutionSummary.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "executionMode"))
931
983
  PipelineExecutionSummary.struct_class = Types::PipelineExecutionSummary
932
984
 
933
985
  PipelineExecutionSummaryList.member = Shapes::ShapeRef.new(shape: PipelineExecutionSummary)
@@ -949,6 +1001,7 @@ module Aws::CodePipeline
949
1001
  PipelineSummary.add_member(:name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "name"))
950
1002
  PipelineSummary.add_member(:version, Shapes::ShapeRef.new(shape: PipelineVersion, location_name: "version"))
951
1003
  PipelineSummary.add_member(:pipeline_type, Shapes::ShapeRef.new(shape: PipelineType, location_name: "pipelineType"))
1004
+ PipelineSummary.add_member(:execution_mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "executionMode"))
952
1005
  PipelineSummary.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
953
1006
  PipelineSummary.add_member(:updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updated"))
954
1007
  PipelineSummary.struct_class = Types::PipelineSummary
@@ -1113,12 +1166,15 @@ module Aws::CodePipeline
1113
1166
  StageExecution.add_member(:status, Shapes::ShapeRef.new(shape: StageExecutionStatus, required: true, location_name: "status"))
1114
1167
  StageExecution.struct_class = Types::StageExecution
1115
1168
 
1169
+ StageExecutionList.member = Shapes::ShapeRef.new(shape: StageExecution)
1170
+
1116
1171
  StageNotFoundException.struct_class = Types::StageNotFoundException
1117
1172
 
1118
1173
  StageNotRetryableException.struct_class = Types::StageNotRetryableException
1119
1174
 
1120
1175
  StageState.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, location_name: "stageName"))
1121
1176
  StageState.add_member(:inbound_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "inboundExecution"))
1177
+ StageState.add_member(:inbound_executions, Shapes::ShapeRef.new(shape: StageExecutionList, location_name: "inboundExecutions"))
1122
1178
  StageState.add_member(:inbound_transition_state, Shapes::ShapeRef.new(shape: TransitionState, location_name: "inboundTransitionState"))
1123
1179
  StageState.add_member(:action_states, Shapes::ShapeRef.new(shape: ActionStateList, location_name: "actionStates"))
1124
1180
  StageState.add_member(:latest_execution, Shapes::ShapeRef.new(shape: StageExecution, location_name: "latestExecution"))
@@ -1671,6 +1727,7 @@ module Aws::CodePipeline
1671
1727
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1672
1728
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1673
1729
  o.errors << Shapes::ShapeRef.new(shape: PipelineNotFoundException)
1730
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentPipelineExecutionsLimitExceededException)
1674
1731
  end)
1675
1732
 
1676
1733
  api.add_operation(:stop_pipeline_execution, Seahorse::Model::Operation.new.tap do |o|
@@ -32,6 +32,7 @@ module Aws::CodePipeline
32
32
  # * {ActionTypeNotFoundException}
33
33
  # * {ApprovalAlreadyCompletedException}
34
34
  # * {ConcurrentModificationException}
35
+ # * {ConcurrentPipelineExecutionsLimitExceededException}
35
36
  # * {ConflictException}
36
37
  # * {DuplicatedStopRequestException}
37
38
  # * {InvalidActionDeclarationException}
@@ -126,6 +127,21 @@ module Aws::CodePipeline
126
127
  end
127
128
  end
128
129
 
130
+ class ConcurrentPipelineExecutionsLimitExceededException < ServiceError
131
+
132
+ # @param [Seahorse::Client::RequestContext] context
133
+ # @param [String] message
134
+ # @param [Aws::CodePipeline::Types::ConcurrentPipelineExecutionsLimitExceededException] data
135
+ def initialize(context, message, data = Aws::EmptyStructure.new)
136
+ super(context, message, data)
137
+ end
138
+
139
+ # @return [String]
140
+ def message
141
+ @message || @data[:message]
142
+ end
143
+ end
144
+
129
145
  class ConflictException < ServiceError
130
146
 
131
147
  # @param [Seahorse::Client::RequestContext] context
@@ -14,6 +14,7 @@ module Aws::CodePipeline
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::CodePipeline::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\