aws-sdk-codepipeline 1.95.0 → 1.96.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76661c15d0510792903667beb13281fb264439819b8dca7fdf42996a9e445f15
4
- data.tar.gz: d58dedfd67bdfd49d8f2a21a4fe61f038967f1f6adf398d1f4a5ae9d01ae2f2b
3
+ metadata.gz: 7872601db8f8b1abc866bf84c0cbef4f58d34ea38e00759f6f6341243d171a5a
4
+ data.tar.gz: 5273449510ed6adbe81615eb23769ecb5f995305ef64a36e2e1dbac8ca45d1f2
5
5
  SHA512:
6
- metadata.gz: e27dc32f3678b413398d710549fbacad978a936038ae38142cdec88bfbee5a63de0a418a499420c1a836aeb7246818a4f4b4beeff0dea8f3df069535e40cc6b4
7
- data.tar.gz: 44236da29d88b4fc6d41a4e06808449bab4ac43f9260ae6231a85d8ba06a8f53ea2f5725040bf6aa531d31b1ba2d6e351288bba686f4b00c84e1b2a40f847740
6
+ metadata.gz: 95243854c90b6d24ddd71cdfc5183ec723477a9be9862dff35c13297ceebfefaba5588a2b9d982f757bb9e0a06664275bab8d0d017e46f2bc24eece4278ac8bf
7
+ data.tar.gz: 87894a484c02dcbf09e053d262a57853bb0491bd58cb823732339bdc663e4c23a9b90d9c6e9eaed9f149029f835ce79918cf0913b19dcd6e3813a674cb7fca4c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2025-02-19)
5
+ ------------------
6
+
7
+ * Feature - Add environment variables to codepipeline action declaration.
8
+
4
9
  1.95.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -761,6 +761,12 @@ module Aws::CodePipeline
761
761
  # region: "AWSRegionName",
762
762
  # namespace: "ActionNamespace",
763
763
  # timeout_in_minutes: 1,
764
+ # environment_variables: [
765
+ # {
766
+ # name: "EnvironmentVariableName", # required
767
+ # value: "EnvironmentVariableValue", # required
768
+ # },
769
+ # ],
764
770
  # },
765
771
  # ],
766
772
  # on_failure: {
@@ -956,6 +962,9 @@ module Aws::CodePipeline
956
962
  # resp.pipeline.stages[0].actions[0].region #=> String
957
963
  # resp.pipeline.stages[0].actions[0].namespace #=> String
958
964
  # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
965
+ # resp.pipeline.stages[0].actions[0].environment_variables #=> Array
966
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].name #=> String
967
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].value #=> String
959
968
  # resp.pipeline.stages[0].on_failure.result #=> String, one of "ROLLBACK", "FAIL", "RETRY", "SKIP"
960
969
  # resp.pipeline.stages[0].on_failure.retry_configuration.retry_mode #=> String, one of "FAILED_ACTIONS", "ALL_ACTIONS"
961
970
  # resp.pipeline.stages[0].on_failure.conditions #=> Array
@@ -1468,6 +1477,9 @@ module Aws::CodePipeline
1468
1477
  # resp.pipeline.stages[0].actions[0].region #=> String
1469
1478
  # resp.pipeline.stages[0].actions[0].namespace #=> String
1470
1479
  # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
1480
+ # resp.pipeline.stages[0].actions[0].environment_variables #=> Array
1481
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].name #=> String
1482
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].value #=> String
1471
1483
  # resp.pipeline.stages[0].on_failure.result #=> String, one of "ROLLBACK", "FAIL", "RETRY", "SKIP"
1472
1484
  # resp.pipeline.stages[0].on_failure.retry_configuration.retry_mode #=> String, one of "FAILED_ACTIONS", "ALL_ACTIONS"
1473
1485
  # resp.pipeline.stages[0].on_failure.conditions #=> Array
@@ -2209,13 +2221,15 @@ module Aws::CodePipeline
2209
2221
  end
2210
2222
 
2211
2223
  # Lists the rules for the condition. For more information about
2212
- # conditions, see [Stage conditions][1]. For more information about
2213
- # rules, see the [CodePipeline rule reference][2].
2224
+ # conditions, see [Stage conditions][1] and [How do stage conditions
2225
+ # work?][2].For more information about rules, see the [CodePipeline rule
2226
+ # reference][3].
2214
2227
  #
2215
2228
  #
2216
2229
  #
2217
2230
  # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
2218
- # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
2231
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
2232
+ # [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
2219
2233
  #
2220
2234
  # @option params [String] :rule_owner_filter
2221
2235
  # The rule owner to filter on.
@@ -2372,7 +2386,14 @@ module Aws::CodePipeline
2372
2386
  req.send_request(options)
2373
2387
  end
2374
2388
 
2375
- # Used to override a stage condition.
2389
+ # Used to override a stage condition. For more information about
2390
+ # conditions, see [Stage conditions][1] and [How do stage conditions
2391
+ # work?][2].
2392
+ #
2393
+ #
2394
+ #
2395
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
2396
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
2376
2397
  #
2377
2398
  # @option params [required, String] :pipeline_name
2378
2399
  # The name of the pipeline with the stage that will override the
@@ -2612,9 +2633,10 @@ module Aws::CodePipeline
2612
2633
  # request corresponding to this token is still valid.
2613
2634
  #
2614
2635
  # For a pipeline where the execution mode is set to PARALLEL, the token
2615
- # required to approve/reject approval request as detailed above is not
2616
- # available. Instead, use the `externalExecutionId` from the
2617
- # `GetPipelineState` action as the token in the approval request.
2636
+ # required to approve/reject an approval request as detailed above is
2637
+ # not available. Instead, use the `externalExecutionId` in the response
2638
+ # output from the ListActionExecutions action as the token in the
2639
+ # approval request.
2618
2640
  #
2619
2641
  # @return [Types::PutApprovalResultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2620
2642
  #
@@ -3359,6 +3381,12 @@ module Aws::CodePipeline
3359
3381
  # region: "AWSRegionName",
3360
3382
  # namespace: "ActionNamespace",
3361
3383
  # timeout_in_minutes: 1,
3384
+ # environment_variables: [
3385
+ # {
3386
+ # name: "EnvironmentVariableName", # required
3387
+ # value: "EnvironmentVariableValue", # required
3388
+ # },
3389
+ # ],
3362
3390
  # },
3363
3391
  # ],
3364
3392
  # on_failure: {
@@ -3548,6 +3576,9 @@ module Aws::CodePipeline
3548
3576
  # resp.pipeline.stages[0].actions[0].region #=> String
3549
3577
  # resp.pipeline.stages[0].actions[0].namespace #=> String
3550
3578
  # resp.pipeline.stages[0].actions[0].timeout_in_minutes #=> Integer
3579
+ # resp.pipeline.stages[0].actions[0].environment_variables #=> Array
3580
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].name #=> String
3581
+ # resp.pipeline.stages[0].actions[0].environment_variables[0].value #=> String
3551
3582
  # resp.pipeline.stages[0].on_failure.result #=> String, one of "ROLLBACK", "FAIL", "RETRY", "SKIP"
3552
3583
  # resp.pipeline.stages[0].on_failure.retry_configuration.retry_mode #=> String, one of "FAILED_ACTIONS", "ALL_ACTIONS"
3553
3584
  # resp.pipeline.stages[0].on_failure.conditions #=> Array
@@ -3663,7 +3694,7 @@ module Aws::CodePipeline
3663
3694
  tracer: tracer
3664
3695
  )
3665
3696
  context[:gem_name] = 'aws-sdk-codepipeline'
3666
- context[:gem_version] = '1.95.0'
3697
+ context[:gem_version] = '1.96.0'
3667
3698
  Seahorse::Client::Request.new(handlers, context)
3668
3699
  end
3669
3700
 
@@ -133,6 +133,10 @@ module Aws::CodePipeline
133
133
  EncryptionKey = Shapes::StructureShape.new(name: 'EncryptionKey')
134
134
  EncryptionKeyId = Shapes::StringShape.new(name: 'EncryptionKeyId')
135
135
  EncryptionKeyType = Shapes::StringShape.new(name: 'EncryptionKeyType')
136
+ EnvironmentVariable = Shapes::StructureShape.new(name: 'EnvironmentVariable')
137
+ EnvironmentVariableList = Shapes::ListShape.new(name: 'EnvironmentVariableList')
138
+ EnvironmentVariableName = Shapes::StringShape.new(name: 'EnvironmentVariableName')
139
+ EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
136
140
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
137
141
  ExecutionDetails = Shapes::StructureShape.new(name: 'ExecutionDetails')
138
142
  ExecutionId = Shapes::StringShape.new(name: 'ExecutionId')
@@ -492,6 +496,7 @@ module Aws::CodePipeline
492
496
  ActionDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
493
497
  ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
494
498
  ActionDeclaration.add_member(:timeout_in_minutes, Shapes::ShapeRef.new(shape: ActionTimeout, location_name: "timeoutInMinutes"))
499
+ ActionDeclaration.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableList, location_name: "environmentVariables"))
495
500
  ActionDeclaration.struct_class = Types::ActionDeclaration
496
501
 
497
502
  ActionExecution.add_member(:action_execution_id, Shapes::ShapeRef.new(shape: ActionExecutionId, location_name: "actionExecutionId"))
@@ -782,6 +787,12 @@ module Aws::CodePipeline
782
787
  EncryptionKey.add_member(:type, Shapes::ShapeRef.new(shape: EncryptionKeyType, required: true, location_name: "type"))
783
788
  EncryptionKey.struct_class = Types::EncryptionKey
784
789
 
790
+ EnvironmentVariable.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentVariableName, required: true, location_name: "name"))
791
+ EnvironmentVariable.add_member(:value, Shapes::ShapeRef.new(shape: EnvironmentVariableValue, required: true, location_name: "value"))
792
+ EnvironmentVariable.struct_class = Types::EnvironmentVariable
793
+
794
+ EnvironmentVariableList.member = Shapes::ShapeRef.new(shape: EnvironmentVariable)
795
+
785
796
  ErrorDetails.add_member(:code, Shapes::ShapeRef.new(shape: Code, location_name: "code"))
786
797
  ErrorDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
787
798
  ErrorDetails.struct_class = Types::ErrorDetails
@@ -305,6 +305,10 @@ module Aws::CodePipeline
305
305
  # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html
306
306
  # @return [Integer]
307
307
  #
308
+ # @!attribute [rw] environment_variables
309
+ # The environment variables for the action.
310
+ # @return [Array<Types::EnvironmentVariable>]
311
+ #
308
312
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionDeclaration AWS API Documentation
309
313
  #
310
314
  class ActionDeclaration < Struct.new(
@@ -319,7 +323,8 @@ module Aws::CodePipeline
319
323
  :role_arn,
320
324
  :region,
321
325
  :namespace,
322
- :timeout_in_minutes)
326
+ :timeout_in_minutes,
327
+ :environment_variables)
323
328
  SENSITIVE = []
324
329
  include Aws::Structure
325
330
  end
@@ -1296,7 +1301,14 @@ module Aws::CodePipeline
1296
1301
  include Aws::Structure
1297
1302
  end
1298
1303
 
1299
- # The conditions for making checks for entry to a stage.
1304
+ # The conditions for making checks for entry to a stage. For more
1305
+ # information about conditions, see [Stage conditions][1] and [How do
1306
+ # stage conditions work?][2].
1307
+ #
1308
+ #
1309
+ #
1310
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
1311
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
1300
1312
  #
1301
1313
  # @!attribute [rw] conditions
1302
1314
  # The conditions that are configured as entry conditions.
@@ -1357,13 +1369,15 @@ module Aws::CodePipeline
1357
1369
 
1358
1370
  # The condition for the stage. A condition is made up of the rules and
1359
1371
  # 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].
1372
+ # see [Stage conditions][1] and [How do stage conditions work?][2].. For
1373
+ # more information about rules, see the [CodePipeline rule
1374
+ # reference][3].
1362
1375
  #
1363
1376
  #
1364
1377
  #
1365
1378
  # [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
1379
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
1380
+ # [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
1367
1381
  #
1368
1382
  # @!attribute [rw] result
1369
1383
  # The action to be done when the condition is met. For example,
@@ -1795,6 +1809,25 @@ module Aws::CodePipeline
1795
1809
  include Aws::Structure
1796
1810
  end
1797
1811
 
1812
+ # The environment variables for the action.
1813
+ #
1814
+ # @!attribute [rw] name
1815
+ # The environment variable name in the key-value pair.
1816
+ # @return [String]
1817
+ #
1818
+ # @!attribute [rw] value
1819
+ # The environment variable value in the key-value pair.
1820
+ # @return [String]
1821
+ #
1822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EnvironmentVariable AWS API Documentation
1823
+ #
1824
+ class EnvironmentVariable < Struct.new(
1825
+ :name,
1826
+ :value)
1827
+ SENSITIVE = []
1828
+ include Aws::Structure
1829
+ end
1830
+
1798
1831
  # Represents information about an error in CodePipeline.
1799
1832
  #
1800
1833
  # @!attribute [rw] code
@@ -1886,7 +1919,13 @@ module Aws::CodePipeline
1886
1919
  end
1887
1920
 
1888
1921
  # The configuration that specifies the result, such as rollback, to
1889
- # occur upon stage failure.
1922
+ # occur upon stage failure. For more information about conditions, see
1923
+ # [Stage conditions][1] and [How do stage conditions work?][2].
1924
+ #
1925
+ #
1926
+ #
1927
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
1928
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
1890
1929
  #
1891
1930
  # @!attribute [rw] result
1892
1931
  # The specified result for when the failure conditions are met, such
@@ -1899,7 +1938,14 @@ module Aws::CodePipeline
1899
1938
  # @return [Types::RetryConfiguration]
1900
1939
  #
1901
1940
  # @!attribute [rw] conditions
1902
- # The conditions that are configured as failure conditions.
1941
+ # The conditions that are configured as failure conditions. For more
1942
+ # information about conditions, see [Stage conditions][1] and [How do
1943
+ # stage conditions work?][2].
1944
+ #
1945
+ #
1946
+ #
1947
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
1948
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
1903
1949
  # @return [Array<Types::Condition>]
1904
1950
  #
1905
1951
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/FailureConditions AWS API Documentation
@@ -2282,9 +2328,17 @@ module Aws::CodePipeline
2282
2328
  # The event criteria for the pull request trigger configuration, such as
2283
2329
  # the lists of branches or file paths to include and exclude.
2284
2330
  #
2331
+ # The following are valid values for the events for this filter:
2332
+ #
2333
+ # * CLOSED
2334
+ #
2335
+ # * OPEN
2336
+ #
2337
+ # * UPDATED
2338
+ #
2285
2339
  # @!attribute [rw] events
2286
2340
  # The field that specifies which pull request events to filter on
2287
- # (opened, updated, closed) for the trigger configuration.
2341
+ # (OPEN, UPDATED, CLOSED) for the trigger configuration.
2288
2342
  # @return [Array<String>]
2289
2343
  #
2290
2344
  # @!attribute [rw] branches
@@ -3943,9 +3997,10 @@ module Aws::CodePipeline
3943
3997
  # approval request corresponding to this token is still valid.
3944
3998
  #
3945
3999
  # 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.
4000
+ # token required to approve/reject an approval request as detailed
4001
+ # above is not available. Instead, use the `externalExecutionId` in
4002
+ # the response output from the ListActionExecutions action as the
4003
+ # token in the approval request.
3949
4004
  # @return [String]
3950
4005
  #
3951
4006
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutApprovalResultInput AWS API Documentation
@@ -4383,13 +4438,15 @@ module Aws::CodePipeline
4383
4438
  # condition. An example would be creating a new rule for an entry
4384
4439
  # condition, such as a rule that checks for a test result before
4385
4440
  # 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].
4441
+ # about conditions, see [Stage conditions][1] and [How do stage
4442
+ # conditions work?][2]. For more information about rules, see the
4443
+ # [CodePipeline rule reference][3].
4388
4444
  #
4389
4445
  #
4390
4446
  #
4391
4447
  # [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
4448
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
4449
+ # [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
4393
4450
  #
4394
4451
  # @!attribute [rw] name
4395
4452
  # The name of the rule that is created for the condition, such as
@@ -4606,7 +4663,14 @@ module Aws::CodePipeline
4606
4663
  #
4607
4664
  # @!attribute [rw] rule_type_id
4608
4665
  # The ID for the rule type, which is made up of the combined values
4609
- # for category, owner, provider, and version.
4666
+ # for category, owner, provider, and version. For more information
4667
+ # about conditions, see [Stage conditions][1]. For more information
4668
+ # about rules, see the [CodePipeline rule reference][2].
4669
+ #
4670
+ #
4671
+ #
4672
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
4673
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
4610
4674
  # @return [Types::RuleTypeId]
4611
4675
  #
4612
4676
  # @!attribute [rw] configuration
@@ -4793,7 +4857,14 @@ module Aws::CodePipeline
4793
4857
  end
4794
4858
 
4795
4859
  # The ID for the rule type, which is made up of the combined values for
4796
- # category, owner, provider, and version.
4860
+ # category, owner, provider, and version. For more information about
4861
+ # conditions, see [Stage conditions][1]. For more information about
4862
+ # rules, see the [CodePipeline rule reference][2].
4863
+ #
4864
+ #
4865
+ #
4866
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
4867
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
4797
4868
  #
4798
4869
  # @!attribute [rw] category
4799
4870
  # A category defines what kind of rule can be run in the stage, and
@@ -4807,7 +4878,13 @@ module Aws::CodePipeline
4807
4878
  # @return [String]
4808
4879
  #
4809
4880
  # @!attribute [rw] provider
4810
- # The rule provider, such as the `DeploymentWindow` rule.
4881
+ # The rule provider, such as the `DeploymentWindow` rule. For a list
4882
+ # of rule provider names, see the rules listed in the [CodePipeline
4883
+ # rule reference][1].
4884
+ #
4885
+ #
4886
+ #
4887
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html
4811
4888
  # @return [String]
4812
4889
  #
4813
4890
  # @!attribute [rw] version
@@ -5316,7 +5393,14 @@ module Aws::CodePipeline
5316
5393
  include Aws::Structure
5317
5394
  end
5318
5395
 
5319
- # The conditions for making checks that, if met, succeed a stage.
5396
+ # The conditions for making checks that, if met, succeed a stage. For
5397
+ # more information about conditions, see [Stage conditions][1] and [How
5398
+ # do stage conditions work?][2].
5399
+ #
5400
+ #
5401
+ #
5402
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html
5403
+ # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
5320
5404
  #
5321
5405
  # @!attribute [rw] conditions
5322
5406
  # The conditions that are success conditions.
@@ -54,7 +54,7 @@ module Aws::CodePipeline
54
54
  autoload :EndpointProvider, 'aws-sdk-codepipeline/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-codepipeline/endpoints'
56
56
 
57
- GEM_VERSION = '1.95.0'
57
+ GEM_VERSION = '1.96.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -207,7 +207,13 @@ module Aws
207
207
  role_arn: ::String?,
208
208
  region: ::String?,
209
209
  namespace: ::String?,
210
- timeout_in_minutes: ::Integer?
210
+ timeout_in_minutes: ::Integer?,
211
+ environment_variables: Array[
212
+ {
213
+ name: ::String,
214
+ value: ::String
215
+ },
216
+ ]?
211
217
  },
212
218
  ],
213
219
  on_failure: {
@@ -977,7 +983,13 @@ module Aws
977
983
  role_arn: ::String?,
978
984
  region: ::String?,
979
985
  namespace: ::String?,
980
- timeout_in_minutes: ::Integer?
986
+ timeout_in_minutes: ::Integer?,
987
+ environment_variables: Array[
988
+ {
989
+ name: ::String,
990
+ value: ::String
991
+ },
992
+ ]?
981
993
  },
982
994
  ],
983
995
  on_failure: {
data/sig/types.rbs CHANGED
@@ -73,6 +73,7 @@ module Aws::CodePipeline
73
73
  attr_accessor region: ::String
74
74
  attr_accessor namespace: ::String
75
75
  attr_accessor timeout_in_minutes: ::Integer
76
+ attr_accessor environment_variables: ::Array[Types::EnvironmentVariable]
76
77
  SENSITIVE: []
77
78
  end
78
79
 
@@ -439,6 +440,12 @@ module Aws::CodePipeline
439
440
  SENSITIVE: []
440
441
  end
441
442
 
443
+ class EnvironmentVariable
444
+ attr_accessor name: ::String
445
+ attr_accessor value: ::String
446
+ SENSITIVE: []
447
+ end
448
+
442
449
  class ErrorDetails
443
450
  attr_accessor code: ::String
444
451
  attr_accessor message: ::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.95.0
4
+ version: 1.96.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core