aws-sdk-codepipeline 1.68.0 → 1.70.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: 49e3809f6751a6dcd699ec4ff4dd2abd9ca77d658cb6f909b4cdfe09013bcc7b
4
- data.tar.gz: 2f7d0058c8a565b5379633b79986755d42a8d4e6fbebb7e015ca79370374878d
3
+ metadata.gz: 0bb768510b843cbc6d867232fff48e827f2abd7bcc07591b81c367bc544461f6
4
+ data.tar.gz: cce99685700e96f8398777b6ac19b907a73a1263ee7df91445ba3d59ffdc24fc
5
5
  SHA512:
6
- metadata.gz: cb184d1c1938f0621356b5cd0d01b7cf4585c1546c601332da2d60d108b0bd6772f6fe99c6036340d6bfaddc7fce3268e262c10343d0f8dd5e834693b5f0e19f
7
- data.tar.gz: 6b07c9ba85d71e5a06ce4a8b6f1eaf575c17db39ec937124d3b558bbee4da49309f3b74deaf4193867c33e088cd109059fbbcc5c2ceb2a7fe44ef3c71137cdbd
6
+ metadata.gz: 5c060aa4957a8c4e11ac34582d9d8635648bfc409de66029ecd0eabbb1962f37a5d2f48f9dc95b4a91b9906f29cf3e16ee6169bf39e30923483dc46c3779b80f
7
+ data.tar.gz: 2b9ab64dbb42146f73ade2d29c8daeee9223785c4a1d9817f7c236d524a4cc5a113e81f2bd6b52ec4a3c3872e6e852868afd0701deaff4c24216278639de8386
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.69.0 (2024-02-08)
10
+ ------------------
11
+
12
+ * Feature - Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
13
+
4
14
  1.68.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CodePipeline
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CodePipeline
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::CodePipeline
347
356
  # @option options [Aws::CodePipeline::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CodePipeline::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -678,12 +702,21 @@ module Aws::CodePipeline
678
702
  # role_arn: "RoleArn",
679
703
  # region: "AWSRegionName",
680
704
  # namespace: "ActionNamespace",
705
+ # timeout_in_minutes: 1,
681
706
  # },
682
707
  # ],
683
708
  # },
684
709
  # ],
685
710
  # version: 1,
711
+ # execution_mode: "QUEUED", # accepts QUEUED, SUPERSEDED, PARALLEL
686
712
  # pipeline_type: "V1", # accepts V1, V2
713
+ # variables: [
714
+ # {
715
+ # name: "PipelineVariableName", # required
716
+ # default_value: "PipelineVariableValue",
717
+ # description: "PipelineVariableDescription",
718
+ # },
719
+ # ],
687
720
  # triggers: [
688
721
  # {
689
722
  # provider_type: "CodeStarSourceConnection", # required, accepts CodeStarSourceConnection
@@ -695,18 +728,32 @@ module Aws::CodePipeline
695
728
  # includes: ["GitTagNamePattern"],
696
729
  # excludes: ["GitTagNamePattern"],
697
730
  # },
731
+ # branches: {
732
+ # includes: ["GitBranchNamePattern"],
733
+ # excludes: ["GitBranchNamePattern"],
734
+ # },
735
+ # file_paths: {
736
+ # includes: ["GitFilePathPattern"],
737
+ # excludes: ["GitFilePathPattern"],
738
+ # },
739
+ # },
740
+ # ],
741
+ # pull_request: [
742
+ # {
743
+ # events: ["OPEN"], # accepts OPEN, UPDATED, CLOSED
744
+ # branches: {
745
+ # includes: ["GitBranchNamePattern"],
746
+ # excludes: ["GitBranchNamePattern"],
747
+ # },
748
+ # file_paths: {
749
+ # includes: ["GitFilePathPattern"],
750
+ # excludes: ["GitFilePathPattern"],
751
+ # },
698
752
  # },
699
753
  # ],
700
754
  # },
701
755
  # },
702
756
  # ],
703
- # variables: [
704
- # {
705
- # name: "PipelineVariableName", # required
706
- # default_value: "PipelineVariableValue",
707
- # description: "PipelineVariableDescription",
708
- # },
709
- # ],
710
757
  # },
711
758
  # tags: [
712
759
  # {
@@ -750,8 +797,14 @@ module Aws::CodePipeline
750
797
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
751
798
  # resp.pipeline.stages[0].actions[0].region #=> String
752
799
  # resp.pipeline.stages[0].actions[0].namespace #=> String
800
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
753
801
  # resp.pipeline.version #=> Integer
802
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
754
803
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
804
+ # resp.pipeline.variables #=> Array
805
+ # resp.pipeline.variables[0].name #=> String
806
+ # resp.pipeline.variables[0].default_value #=> String
807
+ # resp.pipeline.variables[0].description #=> String
755
808
  # resp.pipeline.triggers #=> Array
756
809
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
757
810
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -760,10 +813,25 @@ module Aws::CodePipeline
760
813
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
761
814
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
762
815
  # 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
816
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
817
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
818
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
819
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
820
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
821
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
822
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
823
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
824
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
825
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
826
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
827
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
828
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
829
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
830
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
831
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
832
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
833
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
834
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
767
835
  # resp.tags #=> Array
768
836
  # resp.tags[0].key #=> String
769
837
  # resp.tags[0].value #=> String
@@ -1180,8 +1248,14 @@ module Aws::CodePipeline
1180
1248
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
1181
1249
  # resp.pipeline.stages[0].actions[0].region #=> String
1182
1250
  # resp.pipeline.stages[0].actions[0].namespace #=> String
1251
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
1183
1252
  # resp.pipeline.version #=> Integer
1253
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1184
1254
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
1255
+ # resp.pipeline.variables #=> Array
1256
+ # resp.pipeline.variables[0].name #=> String
1257
+ # resp.pipeline.variables[0].default_value #=> String
1258
+ # resp.pipeline.variables[0].description #=> String
1185
1259
  # resp.pipeline.triggers #=> Array
1186
1260
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
1187
1261
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -1190,10 +1264,25 @@ module Aws::CodePipeline
1190
1264
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
1191
1265
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
1192
1266
  # 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
1267
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
1268
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
1269
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
1270
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
1271
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
1272
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
1273
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
1274
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
1275
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
1276
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
1277
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
1278
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
1279
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
1280
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
1281
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
1282
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
1283
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
1284
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
1285
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
1197
1286
  # resp.metadata.pipeline_arn #=> String
1198
1287
  # resp.metadata.created #=> Time
1199
1288
  # resp.metadata.updated #=> Time
@@ -1245,11 +1334,12 @@ module Aws::CodePipeline
1245
1334
  # resp.pipeline_execution.artifact_revisions[0].revision_summary #=> String
1246
1335
  # resp.pipeline_execution.artifact_revisions[0].created #=> Time
1247
1336
  # 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
1337
  # resp.pipeline_execution.variables #=> Array
1251
1338
  # resp.pipeline_execution.variables[0].name #=> String
1252
1339
  # resp.pipeline_execution.variables[0].resolved_value #=> String
1340
+ # resp.pipeline_execution.trigger.trigger_type #=> String, one of "CreatePipeline", "StartPipelineExecution", "PollForSourceChanges", "Webhook", "CloudWatchEvent", "PutActionRevision", "WebhookV2"
1341
+ # resp.pipeline_execution.trigger.trigger_detail #=> String
1342
+ # resp.pipeline_execution.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1253
1343
  #
1254
1344
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineExecution AWS API Documentation
1255
1345
  #
@@ -1294,6 +1384,9 @@ module Aws::CodePipeline
1294
1384
  # resp.stage_states[0].stage_name #=> String
1295
1385
  # resp.stage_states[0].inbound_execution.pipeline_execution_id #=> String
1296
1386
  # resp.stage_states[0].inbound_execution.status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1387
+ # resp.stage_states[0].inbound_executions #=> Array
1388
+ # resp.stage_states[0].inbound_executions[0].pipeline_execution_id #=> String
1389
+ # resp.stage_states[0].inbound_executions[0].status #=> String, one of "Cancelled", "InProgress", "Failed", "Stopped", "Stopping", "Succeeded"
1297
1390
  # resp.stage_states[0].inbound_transition_state.enabled #=> Boolean
1298
1391
  # resp.stage_states[0].inbound_transition_state.last_changed_by #=> String
1299
1392
  # resp.stage_states[0].inbound_transition_state.last_changed_at #=> Time
@@ -1440,6 +1533,10 @@ module Aws::CodePipeline
1440
1533
  # pipeline_name: "PipelineName", # required
1441
1534
  # filter: {
1442
1535
  # pipeline_execution_id: "PipelineExecutionId",
1536
+ # latest_in_pipeline_execution: {
1537
+ # pipeline_execution_id: "PipelineExecutionId", # required
1538
+ # start_time_range: "Latest", # required, accepts Latest, All
1539
+ # },
1443
1540
  # },
1444
1541
  # max_results: 1,
1445
1542
  # next_token: "NextToken",
@@ -1455,6 +1552,7 @@ module Aws::CodePipeline
1455
1552
  # resp.action_execution_details[0].action_name #=> String
1456
1553
  # resp.action_execution_details[0].start_time #=> Time
1457
1554
  # resp.action_execution_details[0].last_update_time #=> Time
1555
+ # resp.action_execution_details[0].updated_by #=> String
1458
1556
  # resp.action_execution_details[0].status #=> String, one of "InProgress", "Abandoned", "Succeeded", "Failed"
1459
1557
  # resp.action_execution_details[0].input.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
1460
1558
  # resp.action_execution_details[0].input.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
@@ -1478,6 +1576,8 @@ module Aws::CodePipeline
1478
1576
  # resp.action_execution_details[0].output.execution_result.external_execution_id #=> String
1479
1577
  # resp.action_execution_details[0].output.execution_result.external_execution_summary #=> String
1480
1578
  # resp.action_execution_details[0].output.execution_result.external_execution_url #=> String
1579
+ # resp.action_execution_details[0].output.execution_result.error_details.code #=> String
1580
+ # resp.action_execution_details[0].output.execution_result.error_details.message #=> String
1481
1581
  # resp.action_execution_details[0].output.output_variables #=> Hash
1482
1582
  # resp.action_execution_details[0].output.output_variables["OutputVariablesKey"] #=> String
1483
1583
  # resp.next_token #=> String
@@ -1602,6 +1702,7 @@ module Aws::CodePipeline
1602
1702
  # resp.pipeline_execution_summaries[0].trigger.trigger_type #=> String, one of "CreatePipeline", "StartPipelineExecution", "PollForSourceChanges", "Webhook", "CloudWatchEvent", "PutActionRevision", "WebhookV2"
1603
1703
  # resp.pipeline_execution_summaries[0].trigger.trigger_detail #=> String
1604
1704
  # resp.pipeline_execution_summaries[0].stop_trigger.reason #=> String
1705
+ # resp.pipeline_execution_summaries[0].execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1605
1706
  # resp.next_token #=> String
1606
1707
  #
1607
1708
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelineExecutions AWS API Documentation
@@ -1645,6 +1746,7 @@ module Aws::CodePipeline
1645
1746
  # resp.pipelines[0].name #=> String
1646
1747
  # resp.pipelines[0].version #=> Integer
1647
1748
  # resp.pipelines[0].pipeline_type #=> String, one of "V1", "V2"
1749
+ # resp.pipelines[0].execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
1648
1750
  # resp.pipelines[0].created #=> Time
1649
1751
  # resp.pipelines[0].updated #=> Time
1650
1752
  # resp.next_token #=> String
@@ -2654,12 +2756,21 @@ module Aws::CodePipeline
2654
2756
  # role_arn: "RoleArn",
2655
2757
  # region: "AWSRegionName",
2656
2758
  # namespace: "ActionNamespace",
2759
+ # timeout_in_minutes: 1,
2657
2760
  # },
2658
2761
  # ],
2659
2762
  # },
2660
2763
  # ],
2661
2764
  # version: 1,
2765
+ # execution_mode: "QUEUED", # accepts QUEUED, SUPERSEDED, PARALLEL
2662
2766
  # pipeline_type: "V1", # accepts V1, V2
2767
+ # variables: [
2768
+ # {
2769
+ # name: "PipelineVariableName", # required
2770
+ # default_value: "PipelineVariableValue",
2771
+ # description: "PipelineVariableDescription",
2772
+ # },
2773
+ # ],
2663
2774
  # triggers: [
2664
2775
  # {
2665
2776
  # provider_type: "CodeStarSourceConnection", # required, accepts CodeStarSourceConnection
@@ -2671,18 +2782,32 @@ module Aws::CodePipeline
2671
2782
  # includes: ["GitTagNamePattern"],
2672
2783
  # excludes: ["GitTagNamePattern"],
2673
2784
  # },
2785
+ # branches: {
2786
+ # includes: ["GitBranchNamePattern"],
2787
+ # excludes: ["GitBranchNamePattern"],
2788
+ # },
2789
+ # file_paths: {
2790
+ # includes: ["GitFilePathPattern"],
2791
+ # excludes: ["GitFilePathPattern"],
2792
+ # },
2793
+ # },
2794
+ # ],
2795
+ # pull_request: [
2796
+ # {
2797
+ # events: ["OPEN"], # accepts OPEN, UPDATED, CLOSED
2798
+ # branches: {
2799
+ # includes: ["GitBranchNamePattern"],
2800
+ # excludes: ["GitBranchNamePattern"],
2801
+ # },
2802
+ # file_paths: {
2803
+ # includes: ["GitFilePathPattern"],
2804
+ # excludes: ["GitFilePathPattern"],
2805
+ # },
2674
2806
  # },
2675
2807
  # ],
2676
2808
  # },
2677
2809
  # },
2678
2810
  # ],
2679
- # variables: [
2680
- # {
2681
- # name: "PipelineVariableName", # required
2682
- # default_value: "PipelineVariableValue",
2683
- # description: "PipelineVariableDescription",
2684
- # },
2685
- # ],
2686
2811
  # },
2687
2812
  # })
2688
2813
  #
@@ -2720,8 +2845,14 @@ module Aws::CodePipeline
2720
2845
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
2721
2846
  # resp.pipeline.stages[0].actions[0].region #=> String
2722
2847
  # resp.pipeline.stages[0].actions[0].namespace #=> String
2848
+ # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
2723
2849
  # resp.pipeline.version #=> Integer
2850
+ # resp.pipeline.execution_mode #=> String, one of "QUEUED", "SUPERSEDED", "PARALLEL"
2724
2851
  # resp.pipeline.pipeline_type #=> String, one of "V1", "V2"
2852
+ # resp.pipeline.variables #=> Array
2853
+ # resp.pipeline.variables[0].name #=> String
2854
+ # resp.pipeline.variables[0].default_value #=> String
2855
+ # resp.pipeline.variables[0].description #=> String
2725
2856
  # resp.pipeline.triggers #=> Array
2726
2857
  # resp.pipeline.triggers[0].provider_type #=> String, one of "CodeStarSourceConnection"
2727
2858
  # resp.pipeline.triggers[0].git_configuration.source_action_name #=> String
@@ -2730,10 +2861,25 @@ module Aws::CodePipeline
2730
2861
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.includes[0] #=> String
2731
2862
  # resp.pipeline.triggers[0].git_configuration.push[0].tags.excludes #=> Array
2732
2863
  # 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
2864
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes #=> Array
2865
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.includes[0] #=> String
2866
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes #=> Array
2867
+ # resp.pipeline.triggers[0].git_configuration.push[0].branches.excludes[0] #=> String
2868
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes #=> Array
2869
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.includes[0] #=> String
2870
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes #=> Array
2871
+ # resp.pipeline.triggers[0].git_configuration.push[0].file_paths.excludes[0] #=> String
2872
+ # resp.pipeline.triggers[0].git_configuration.pull_request #=> Array
2873
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events #=> Array
2874
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].events[0] #=> String, one of "OPEN", "UPDATED", "CLOSED"
2875
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes #=> Array
2876
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.includes[0] #=> String
2877
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes #=> Array
2878
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].branches.excludes[0] #=> String
2879
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes #=> Array
2880
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.includes[0] #=> String
2881
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes #=> Array
2882
+ # resp.pipeline.triggers[0].git_configuration.pull_request[0].file_paths.excludes[0] #=> String
2737
2883
  #
2738
2884
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline AWS API Documentation
2739
2885
  #
@@ -2757,7 +2903,7 @@ module Aws::CodePipeline
2757
2903
  params: params,
2758
2904
  config: config)
2759
2905
  context[:gem_name] = 'aws-sdk-codepipeline'
2760
- context[:gem_version] = '1.68.0'
2906
+ context[:gem_version] = '1.70.0'
2761
2907
  Seahorse::Client::Request.new(handlers, context)
2762
2908
  end
2763
2909