aws-sdk-codepipeline 1.85.0 → 1.87.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +43 -19
- data/lib/aws-sdk-codepipeline/client_api.rb +15 -0
- data/lib/aws-sdk-codepipeline/types.rb +27 -1
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/sig/client.rbs +16 -10
- data/sig/types.rbs +8 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0b6cdfb6a2522e3b4ebcc1eebc7e79df23a757e0a436fc381af711d8bf52df3
|
4
|
+
data.tar.gz: 22fe96987fbb9d9e4ab8a102d8d933546a4ce0c7f278579d2875ac47000201fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 797f0b411dab3852ce8e59667ea0eeb0f673e7a2a491723d0cf3e8b28c42d0ab12d0fcb0d241f18d246f1641cd29e48d61cfaca29474948da4f73f17f1844820
|
7
|
+
data.tar.gz: 550579c29e612662aa22260bb5a4ca13fbf81bee791ea40b4ac482c036de242fc92d48e40619f98831eb632222166677922aa15ab2f6f824150faddfcd0e7b10
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2024-10-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS CodePipeline introduces a Compute category
|
8
|
+
|
9
|
+
1.86.0 (2024-10-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS CodePipeline introduces Commands action that enables you to easily run shell commands as part of your pipeline execution.
|
13
|
+
|
4
14
|
1.85.0 (2024-09-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -583,7 +583,7 @@ module Aws::CodePipeline
|
|
583
583
|
# @example Request syntax with placeholder values
|
584
584
|
#
|
585
585
|
# resp = client.create_custom_action_type({
|
586
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
586
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
587
587
|
# provider: "ActionProvider", # required
|
588
588
|
# version: "Version", # required
|
589
589
|
# settings: {
|
@@ -621,7 +621,7 @@ module Aws::CodePipeline
|
|
621
621
|
#
|
622
622
|
# @example Response structure
|
623
623
|
#
|
624
|
-
# resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
624
|
+
# resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
625
625
|
# resp.action_type.id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
626
626
|
# resp.action_type.id.provider #=> String
|
627
627
|
# resp.action_type.id.version #=> String
|
@@ -712,7 +712,7 @@ module Aws::CodePipeline
|
|
712
712
|
# {
|
713
713
|
# name: "ActionName", # required
|
714
714
|
# action_type_id: { # required
|
715
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
715
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
716
716
|
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
717
717
|
# provider: "ActionProvider", # required
|
718
718
|
# version: "Version", # required
|
@@ -721,9 +721,11 @@ module Aws::CodePipeline
|
|
721
721
|
# configuration: {
|
722
722
|
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
723
723
|
# },
|
724
|
+
# commands: ["Command"],
|
724
725
|
# output_artifacts: [
|
725
726
|
# {
|
726
727
|
# name: "ArtifactName", # required
|
728
|
+
# files: ["FilePath"],
|
727
729
|
# },
|
728
730
|
# ],
|
729
731
|
# input_artifacts: [
|
@@ -731,6 +733,7 @@ module Aws::CodePipeline
|
|
731
733
|
# name: "ArtifactName", # required
|
732
734
|
# },
|
733
735
|
# ],
|
736
|
+
# output_variables: ["OutputVariable"],
|
734
737
|
# role_arn: "RoleArn",
|
735
738
|
# region: "AWSRegionName",
|
736
739
|
# namespace: "ActionNamespace",
|
@@ -903,17 +906,23 @@ module Aws::CodePipeline
|
|
903
906
|
# resp.pipeline.stages[0].blockers[0].type #=> String, one of "Schedule"
|
904
907
|
# resp.pipeline.stages[0].actions #=> Array
|
905
908
|
# resp.pipeline.stages[0].actions[0].name #=> String
|
906
|
-
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
909
|
+
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
907
910
|
# resp.pipeline.stages[0].actions[0].action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
908
911
|
# resp.pipeline.stages[0].actions[0].action_type_id.provider #=> String
|
909
912
|
# resp.pipeline.stages[0].actions[0].action_type_id.version #=> String
|
910
913
|
# resp.pipeline.stages[0].actions[0].run_order #=> Integer
|
911
914
|
# resp.pipeline.stages[0].actions[0].configuration #=> Hash
|
912
915
|
# resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
|
916
|
+
# resp.pipeline.stages[0].actions[0].commands #=> Array
|
917
|
+
# resp.pipeline.stages[0].actions[0].commands[0] #=> String
|
913
918
|
# resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
|
914
919
|
# resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
|
920
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
|
921
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
|
915
922
|
# resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
|
916
923
|
# resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
|
924
|
+
# resp.pipeline.stages[0].actions[0].output_variables #=> Array
|
925
|
+
# resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
|
917
926
|
# resp.pipeline.stages[0].actions[0].role_arn #=> String
|
918
927
|
# resp.pipeline.stages[0].actions[0].region #=> String
|
919
928
|
# resp.pipeline.stages[0].actions[0].namespace #=> String
|
@@ -1037,7 +1046,7 @@ module Aws::CodePipeline
|
|
1037
1046
|
# @example Request syntax with placeholder values
|
1038
1047
|
#
|
1039
1048
|
# resp = client.delete_custom_action_type({
|
1040
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1049
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
1041
1050
|
# provider: "ActionProvider", # required
|
1042
1051
|
# version: "Version", # required
|
1043
1052
|
# })
|
@@ -1242,7 +1251,7 @@ module Aws::CodePipeline
|
|
1242
1251
|
# @example Request syntax with placeholder values
|
1243
1252
|
#
|
1244
1253
|
# resp = client.get_action_type({
|
1245
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1254
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
1246
1255
|
# owner: "ActionTypeOwner", # required
|
1247
1256
|
# provider: "ActionProvider", # required
|
1248
1257
|
# version: "Version", # required
|
@@ -1259,7 +1268,7 @@ module Aws::CodePipeline
|
|
1259
1268
|
# resp.action_type.executor.type #=> String, one of "JobWorker", "Lambda"
|
1260
1269
|
# resp.action_type.executor.policy_statements_template #=> String
|
1261
1270
|
# resp.action_type.executor.job_timeout #=> Integer
|
1262
|
-
# resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1271
|
+
# resp.action_type.id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1263
1272
|
# resp.action_type.id.owner #=> String
|
1264
1273
|
# resp.action_type.id.provider #=> String
|
1265
1274
|
# resp.action_type.id.version #=> String
|
@@ -1314,7 +1323,7 @@ module Aws::CodePipeline
|
|
1314
1323
|
# @example Response structure
|
1315
1324
|
#
|
1316
1325
|
# resp.job_details.id #=> String
|
1317
|
-
# resp.job_details.data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1326
|
+
# resp.job_details.data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1318
1327
|
# resp.job_details.data.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
1319
1328
|
# resp.job_details.data.action_type_id.provider #=> String
|
1320
1329
|
# resp.job_details.data.action_type_id.version #=> String
|
@@ -1400,17 +1409,23 @@ module Aws::CodePipeline
|
|
1400
1409
|
# resp.pipeline.stages[0].blockers[0].type #=> String, one of "Schedule"
|
1401
1410
|
# resp.pipeline.stages[0].actions #=> Array
|
1402
1411
|
# resp.pipeline.stages[0].actions[0].name #=> String
|
1403
|
-
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1412
|
+
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1404
1413
|
# resp.pipeline.stages[0].actions[0].action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
1405
1414
|
# resp.pipeline.stages[0].actions[0].action_type_id.provider #=> String
|
1406
1415
|
# resp.pipeline.stages[0].actions[0].action_type_id.version #=> String
|
1407
1416
|
# resp.pipeline.stages[0].actions[0].run_order #=> Integer
|
1408
1417
|
# resp.pipeline.stages[0].actions[0].configuration #=> Hash
|
1409
1418
|
# resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
|
1419
|
+
# resp.pipeline.stages[0].actions[0].commands #=> Array
|
1420
|
+
# resp.pipeline.stages[0].actions[0].commands[0] #=> String
|
1410
1421
|
# resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
|
1411
1422
|
# resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
|
1423
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
|
1424
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
|
1412
1425
|
# resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
|
1413
1426
|
# resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
|
1427
|
+
# resp.pipeline.stages[0].actions[0].output_variables #=> Array
|
1428
|
+
# resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
|
1414
1429
|
# resp.pipeline.stages[0].actions[0].role_arn #=> String
|
1415
1430
|
# resp.pipeline.stages[0].actions[0].region #=> String
|
1416
1431
|
# resp.pipeline.stages[0].actions[0].namespace #=> String
|
@@ -1740,7 +1755,7 @@ module Aws::CodePipeline
|
|
1740
1755
|
# @example Response structure
|
1741
1756
|
#
|
1742
1757
|
# resp.job_details.id #=> String
|
1743
|
-
# resp.job_details.data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1758
|
+
# resp.job_details.data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1744
1759
|
# resp.job_details.data.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
1745
1760
|
# resp.job_details.data.action_type_id.provider #=> String
|
1746
1761
|
# resp.job_details.data.action_type_id.version #=> String
|
@@ -1835,7 +1850,7 @@ module Aws::CodePipeline
|
|
1835
1850
|
# resp.action_execution_details[0].last_update_time #=> Time
|
1836
1851
|
# resp.action_execution_details[0].updated_by #=> String
|
1837
1852
|
# resp.action_execution_details[0].status #=> String, one of "InProgress", "Abandoned", "Succeeded", "Failed"
|
1838
|
-
# resp.action_execution_details[0].input.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1853
|
+
# resp.action_execution_details[0].input.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1839
1854
|
# resp.action_execution_details[0].input.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
1840
1855
|
# resp.action_execution_details[0].input.action_type_id.provider #=> String
|
1841
1856
|
# resp.action_execution_details[0].input.action_type_id.version #=> String
|
@@ -1905,7 +1920,7 @@ module Aws::CodePipeline
|
|
1905
1920
|
# @example Response structure
|
1906
1921
|
#
|
1907
1922
|
# resp.action_types #=> Array
|
1908
|
-
# resp.action_types[0].id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
1923
|
+
# resp.action_types[0].id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
1909
1924
|
# resp.action_types[0].id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
1910
1925
|
# resp.action_types[0].id.provider #=> String
|
1911
1926
|
# resp.action_types[0].id.version #=> String
|
@@ -2368,7 +2383,7 @@ module Aws::CodePipeline
|
|
2368
2383
|
#
|
2369
2384
|
# resp = client.poll_for_jobs({
|
2370
2385
|
# action_type_id: { # required
|
2371
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
2386
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
2372
2387
|
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
2373
2388
|
# provider: "ActionProvider", # required
|
2374
2389
|
# version: "Version", # required
|
@@ -2383,7 +2398,7 @@ module Aws::CodePipeline
|
|
2383
2398
|
#
|
2384
2399
|
# resp.jobs #=> Array
|
2385
2400
|
# resp.jobs[0].id #=> String
|
2386
|
-
# resp.jobs[0].data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
2401
|
+
# resp.jobs[0].data.action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
2387
2402
|
# resp.jobs[0].data.action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
2388
2403
|
# resp.jobs[0].data.action_type_id.provider #=> String
|
2389
2404
|
# resp.jobs[0].data.action_type_id.version #=> String
|
@@ -2447,7 +2462,7 @@ module Aws::CodePipeline
|
|
2447
2462
|
#
|
2448
2463
|
# resp = client.poll_for_third_party_jobs({
|
2449
2464
|
# action_type_id: { # required
|
2450
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
2465
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
2451
2466
|
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
2452
2467
|
# provider: "ActionProvider", # required
|
2453
2468
|
# version: "Version", # required
|
@@ -3163,7 +3178,7 @@ module Aws::CodePipeline
|
|
3163
3178
|
# job_timeout: 1,
|
3164
3179
|
# },
|
3165
3180
|
# id: { # required
|
3166
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
3181
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
3167
3182
|
# owner: "ActionTypeOwner", # required
|
3168
3183
|
# provider: "ActionProvider", # required
|
3169
3184
|
# version: "Version", # required
|
@@ -3256,7 +3271,7 @@ module Aws::CodePipeline
|
|
3256
3271
|
# {
|
3257
3272
|
# name: "ActionName", # required
|
3258
3273
|
# action_type_id: { # required
|
3259
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
3274
|
+
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval, Compute
|
3260
3275
|
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
3261
3276
|
# provider: "ActionProvider", # required
|
3262
3277
|
# version: "Version", # required
|
@@ -3265,9 +3280,11 @@ module Aws::CodePipeline
|
|
3265
3280
|
# configuration: {
|
3266
3281
|
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
3267
3282
|
# },
|
3283
|
+
# commands: ["Command"],
|
3268
3284
|
# output_artifacts: [
|
3269
3285
|
# {
|
3270
3286
|
# name: "ArtifactName", # required
|
3287
|
+
# files: ["FilePath"],
|
3271
3288
|
# },
|
3272
3289
|
# ],
|
3273
3290
|
# input_artifacts: [
|
@@ -3275,6 +3292,7 @@ module Aws::CodePipeline
|
|
3275
3292
|
# name: "ArtifactName", # required
|
3276
3293
|
# },
|
3277
3294
|
# ],
|
3295
|
+
# output_variables: ["OutputVariable"],
|
3278
3296
|
# role_arn: "RoleArn",
|
3279
3297
|
# region: "AWSRegionName",
|
3280
3298
|
# namespace: "ActionNamespace",
|
@@ -3441,17 +3459,23 @@ module Aws::CodePipeline
|
|
3441
3459
|
# resp.pipeline.stages[0].blockers[0].type #=> String, one of "Schedule"
|
3442
3460
|
# resp.pipeline.stages[0].actions #=> Array
|
3443
3461
|
# resp.pipeline.stages[0].actions[0].name #=> String
|
3444
|
-
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval"
|
3462
|
+
# resp.pipeline.stages[0].actions[0].action_type_id.category #=> String, one of "Source", "Build", "Deploy", "Test", "Invoke", "Approval", "Compute"
|
3445
3463
|
# resp.pipeline.stages[0].actions[0].action_type_id.owner #=> String, one of "AWS", "ThirdParty", "Custom"
|
3446
3464
|
# resp.pipeline.stages[0].actions[0].action_type_id.provider #=> String
|
3447
3465
|
# resp.pipeline.stages[0].actions[0].action_type_id.version #=> String
|
3448
3466
|
# resp.pipeline.stages[0].actions[0].run_order #=> Integer
|
3449
3467
|
# resp.pipeline.stages[0].actions[0].configuration #=> Hash
|
3450
3468
|
# resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
|
3469
|
+
# resp.pipeline.stages[0].actions[0].commands #=> Array
|
3470
|
+
# resp.pipeline.stages[0].actions[0].commands[0] #=> String
|
3451
3471
|
# resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
|
3452
3472
|
# resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
|
3473
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
|
3474
|
+
# resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
|
3453
3475
|
# resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
|
3454
3476
|
# resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
|
3477
|
+
# resp.pipeline.stages[0].actions[0].output_variables #=> Array
|
3478
|
+
# resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
|
3455
3479
|
# resp.pipeline.stages[0].actions[0].role_arn #=> String
|
3456
3480
|
# resp.pipeline.stages[0].actions[0].region #=> String
|
3457
3481
|
# resp.pipeline.stages[0].actions[0].namespace #=> String
|
@@ -3564,7 +3588,7 @@ module Aws::CodePipeline
|
|
3564
3588
|
tracer: tracer
|
3565
3589
|
)
|
3566
3590
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
3567
|
-
context[:gem_version] = '1.
|
3591
|
+
context[:gem_version] = '1.87.0'
|
3568
3592
|
Seahorse::Client::Request.new(handlers, context)
|
3569
3593
|
end
|
3570
3594
|
|
@@ -99,6 +99,8 @@ module Aws::CodePipeline
|
|
99
99
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
100
100
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
101
101
|
Code = Shapes::StringShape.new(name: 'Code')
|
102
|
+
Command = Shapes::StringShape.new(name: 'Command')
|
103
|
+
CommandList = Shapes::ListShape.new(name: 'CommandList')
|
102
104
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
103
105
|
ConcurrentPipelineExecutionsLimitExceededException = Shapes::StructureShape.new(name: 'ConcurrentPipelineExecutionsLimitExceededException')
|
104
106
|
Condition = Shapes::StructureShape.new(name: 'Condition')
|
@@ -145,6 +147,8 @@ module Aws::CodePipeline
|
|
145
147
|
FailureConditions = Shapes::StructureShape.new(name: 'FailureConditions')
|
146
148
|
FailureDetails = Shapes::StructureShape.new(name: 'FailureDetails')
|
147
149
|
FailureType = Shapes::StringShape.new(name: 'FailureType')
|
150
|
+
FilePath = Shapes::StringShape.new(name: 'FilePath')
|
151
|
+
FilePathList = Shapes::ListShape.new(name: 'FilePathList')
|
148
152
|
GetActionTypeInput = Shapes::StructureShape.new(name: 'GetActionTypeInput')
|
149
153
|
GetActionTypeOutput = Shapes::StructureShape.new(name: 'GetActionTypeOutput')
|
150
154
|
GetJobDetailsInput = Shapes::StructureShape.new(name: 'GetJobDetailsInput')
|
@@ -237,6 +241,8 @@ module Aws::CodePipeline
|
|
237
241
|
NotLatestPipelineExecutionException = Shapes::StructureShape.new(name: 'NotLatestPipelineExecutionException')
|
238
242
|
OutputArtifact = Shapes::StructureShape.new(name: 'OutputArtifact')
|
239
243
|
OutputArtifactList = Shapes::ListShape.new(name: 'OutputArtifactList')
|
244
|
+
OutputVariable = Shapes::StringShape.new(name: 'OutputVariable')
|
245
|
+
OutputVariableList = Shapes::ListShape.new(name: 'OutputVariableList')
|
240
246
|
OutputVariablesKey = Shapes::StringShape.new(name: 'OutputVariablesKey')
|
241
247
|
OutputVariablesMap = Shapes::MapShape.new(name: 'OutputVariablesMap')
|
242
248
|
OutputVariablesSizeExceededException = Shapes::StructureShape.new(name: 'OutputVariablesSizeExceededException')
|
@@ -473,8 +479,10 @@ module Aws::CodePipeline
|
|
473
479
|
ActionDeclaration.add_member(:action_type_id, Shapes::ShapeRef.new(shape: ActionTypeId, required: true, location_name: "actionTypeId"))
|
474
480
|
ActionDeclaration.add_member(:run_order, Shapes::ShapeRef.new(shape: ActionRunOrder, location_name: "runOrder"))
|
475
481
|
ActionDeclaration.add_member(:configuration, Shapes::ShapeRef.new(shape: ActionConfigurationMap, location_name: "configuration"))
|
482
|
+
ActionDeclaration.add_member(:commands, Shapes::ShapeRef.new(shape: CommandList, location_name: "commands"))
|
476
483
|
ActionDeclaration.add_member(:output_artifacts, Shapes::ShapeRef.new(shape: OutputArtifactList, location_name: "outputArtifacts"))
|
477
484
|
ActionDeclaration.add_member(:input_artifacts, Shapes::ShapeRef.new(shape: InputArtifactList, location_name: "inputArtifacts"))
|
485
|
+
ActionDeclaration.add_member(:output_variables, Shapes::ShapeRef.new(shape: OutputVariableList, location_name: "outputVariables"))
|
478
486
|
ActionDeclaration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
479
487
|
ActionDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
|
480
488
|
ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
|
@@ -672,6 +680,8 @@ module Aws::CodePipeline
|
|
672
680
|
BlockerDeclaration.add_member(:type, Shapes::ShapeRef.new(shape: BlockerType, required: true, location_name: "type"))
|
673
681
|
BlockerDeclaration.struct_class = Types::BlockerDeclaration
|
674
682
|
|
683
|
+
CommandList.member = Shapes::ShapeRef.new(shape: Command)
|
684
|
+
|
675
685
|
ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
676
686
|
ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
|
677
687
|
|
@@ -791,6 +801,8 @@ module Aws::CodePipeline
|
|
791
801
|
FailureDetails.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "externalExecutionId"))
|
792
802
|
FailureDetails.struct_class = Types::FailureDetails
|
793
803
|
|
804
|
+
FilePathList.member = Shapes::ShapeRef.new(shape: FilePath)
|
805
|
+
|
794
806
|
GetActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
795
807
|
GetActionTypeInput.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
|
796
808
|
GetActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
@@ -1033,10 +1045,13 @@ module Aws::CodePipeline
|
|
1033
1045
|
NotLatestPipelineExecutionException.struct_class = Types::NotLatestPipelineExecutionException
|
1034
1046
|
|
1035
1047
|
OutputArtifact.add_member(:name, Shapes::ShapeRef.new(shape: ArtifactName, required: true, location_name: "name"))
|
1048
|
+
OutputArtifact.add_member(:files, Shapes::ShapeRef.new(shape: FilePathList, location_name: "files"))
|
1036
1049
|
OutputArtifact.struct_class = Types::OutputArtifact
|
1037
1050
|
|
1038
1051
|
OutputArtifactList.member = Shapes::ShapeRef.new(shape: OutputArtifact)
|
1039
1052
|
|
1053
|
+
OutputVariableList.member = Shapes::ShapeRef.new(shape: OutputVariable)
|
1054
|
+
|
1040
1055
|
OutputVariablesMap.key = Shapes::ShapeRef.new(shape: OutputVariablesKey)
|
1041
1056
|
OutputVariablesMap.value = Shapes::ShapeRef.new(shape: OutputVariablesValue)
|
1042
1057
|
|
@@ -251,6 +251,18 @@ module Aws::CodePipeline
|
|
251
251
|
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html
|
252
252
|
# @return [Hash<String,String>]
|
253
253
|
#
|
254
|
+
# @!attribute [rw] commands
|
255
|
+
# The shell commands to run with your compute action in CodePipeline.
|
256
|
+
# All commands are supported except multi-line formats. While
|
257
|
+
# CodeBuild logs and permissions are used, you do not need to create
|
258
|
+
# any resources in CodeBuild.
|
259
|
+
#
|
260
|
+
# <note markdown="1"> Using compute time for this action will incur separate charges in
|
261
|
+
# CodeBuild.
|
262
|
+
#
|
263
|
+
# </note>
|
264
|
+
# @return [Array<String>]
|
265
|
+
#
|
254
266
|
# @!attribute [rw] output_artifacts
|
255
267
|
# The name or ID of the result of the action declaration, such as a
|
256
268
|
# test or build artifact.
|
@@ -261,6 +273,12 @@ module Aws::CodePipeline
|
|
261
273
|
# test or build artifact.
|
262
274
|
# @return [Array<Types::InputArtifact>]
|
263
275
|
#
|
276
|
+
# @!attribute [rw] output_variables
|
277
|
+
# The list of variables that are to be exported from the compute
|
278
|
+
# action. This is specifically CodeBuild environment variables as used
|
279
|
+
# for that action.
|
280
|
+
# @return [Array<String>]
|
281
|
+
#
|
264
282
|
# @!attribute [rw] role_arn
|
265
283
|
# The ARN of the IAM service role that performs the declared action.
|
266
284
|
# This is assumed through the roleArn for the pipeline.
|
@@ -294,8 +312,10 @@ module Aws::CodePipeline
|
|
294
312
|
:action_type_id,
|
295
313
|
:run_order,
|
296
314
|
:configuration,
|
315
|
+
:commands,
|
297
316
|
:output_artifacts,
|
298
317
|
:input_artifacts,
|
318
|
+
:output_variables,
|
299
319
|
:role_arn,
|
300
320
|
:region,
|
301
321
|
:namespace,
|
@@ -3079,10 +3099,16 @@ module Aws::CodePipeline
|
|
3079
3099
|
# Output artifact names must be unique within a pipeline.
|
3080
3100
|
# @return [String]
|
3081
3101
|
#
|
3102
|
+
# @!attribute [rw] files
|
3103
|
+
# The files that you want to associate with the output artifact that
|
3104
|
+
# will be exported from the compute action.
|
3105
|
+
# @return [Array<String>]
|
3106
|
+
#
|
3082
3107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/OutputArtifact AWS API Documentation
|
3083
3108
|
#
|
3084
3109
|
class OutputArtifact < Struct.new(
|
3085
|
-
:name
|
3110
|
+
:name,
|
3111
|
+
:files)
|
3086
3112
|
SENSITIVE = []
|
3087
3113
|
include Aws::Structure
|
3088
3114
|
end
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -106,7 +106,7 @@ module Aws
|
|
106
106
|
end
|
107
107
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#create_custom_action_type-instance_method
|
108
108
|
def create_custom_action_type: (
|
109
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
109
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
110
110
|
provider: ::String,
|
111
111
|
version: ::String,
|
112
112
|
?settings: {
|
@@ -182,16 +182,18 @@ module Aws
|
|
182
182
|
{
|
183
183
|
name: ::String,
|
184
184
|
action_type_id: {
|
185
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
185
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
186
186
|
owner: ("AWS" | "ThirdParty" | "Custom"),
|
187
187
|
provider: ::String,
|
188
188
|
version: ::String
|
189
189
|
},
|
190
190
|
run_order: ::Integer?,
|
191
191
|
configuration: Hash[::String, ::String]?,
|
192
|
+
commands: Array[::String]?,
|
192
193
|
output_artifacts: Array[
|
193
194
|
{
|
194
|
-
name: ::String
|
195
|
+
name: ::String,
|
196
|
+
files: Array[::String]?
|
195
197
|
},
|
196
198
|
]?,
|
197
199
|
input_artifacts: Array[
|
@@ -199,6 +201,7 @@ module Aws
|
|
199
201
|
name: ::String
|
200
202
|
},
|
201
203
|
]?,
|
204
|
+
output_variables: Array[::String]?,
|
202
205
|
role_arn: ::String?,
|
203
206
|
region: ::String?,
|
204
207
|
namespace: ::String?,
|
@@ -348,7 +351,7 @@ module Aws
|
|
348
351
|
|
349
352
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#delete_custom_action_type-instance_method
|
350
353
|
def delete_custom_action_type: (
|
351
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
354
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
352
355
|
provider: ::String,
|
353
356
|
version: ::String
|
354
357
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -401,7 +404,7 @@ module Aws
|
|
401
404
|
end
|
402
405
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#get_action_type-instance_method
|
403
406
|
def get_action_type: (
|
404
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
407
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
405
408
|
owner: ::String,
|
406
409
|
provider: ::String,
|
407
410
|
version: ::String
|
@@ -601,7 +604,7 @@ module Aws
|
|
601
604
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#poll_for_jobs-instance_method
|
602
605
|
def poll_for_jobs: (
|
603
606
|
action_type_id: {
|
604
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
607
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
605
608
|
owner: ("AWS" | "ThirdParty" | "Custom"),
|
606
609
|
provider: ::String,
|
607
610
|
version: ::String
|
@@ -618,7 +621,7 @@ module Aws
|
|
618
621
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#poll_for_third_party_jobs-instance_method
|
619
622
|
def poll_for_third_party_jobs: (
|
620
623
|
action_type_id: {
|
621
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
624
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
622
625
|
owner: ("AWS" | "ThirdParty" | "Custom"),
|
623
626
|
provider: ::String,
|
624
627
|
version: ::String
|
@@ -869,7 +872,7 @@ module Aws
|
|
869
872
|
job_timeout: ::Integer?
|
870
873
|
},
|
871
874
|
id: {
|
872
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
875
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
873
876
|
owner: ::String,
|
874
877
|
provider: ::String,
|
875
878
|
version: ::String
|
@@ -943,16 +946,18 @@ module Aws
|
|
943
946
|
{
|
944
947
|
name: ::String,
|
945
948
|
action_type_id: {
|
946
|
-
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval"),
|
949
|
+
category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
|
947
950
|
owner: ("AWS" | "ThirdParty" | "Custom"),
|
948
951
|
provider: ::String,
|
949
952
|
version: ::String
|
950
953
|
},
|
951
954
|
run_order: ::Integer?,
|
952
955
|
configuration: Hash[::String, ::String]?,
|
956
|
+
commands: Array[::String]?,
|
953
957
|
output_artifacts: Array[
|
954
958
|
{
|
955
|
-
name: ::String
|
959
|
+
name: ::String,
|
960
|
+
files: Array[::String]?
|
956
961
|
},
|
957
962
|
]?,
|
958
963
|
input_artifacts: Array[
|
@@ -960,6 +965,7 @@ module Aws
|
|
960
965
|
name: ::String
|
961
966
|
},
|
962
967
|
]?,
|
968
|
+
output_variables: Array[::String]?,
|
963
969
|
role_arn: ::String?,
|
964
970
|
region: ::String?,
|
965
971
|
namespace: ::String?,
|
data/sig/types.rbs
CHANGED
@@ -65,8 +65,10 @@ module Aws::CodePipeline
|
|
65
65
|
attr_accessor action_type_id: Types::ActionTypeId
|
66
66
|
attr_accessor run_order: ::Integer
|
67
67
|
attr_accessor configuration: ::Hash[::String, ::String]
|
68
|
+
attr_accessor commands: ::Array[::String]
|
68
69
|
attr_accessor output_artifacts: ::Array[Types::OutputArtifact]
|
69
70
|
attr_accessor input_artifacts: ::Array[Types::InputArtifact]
|
71
|
+
attr_accessor output_variables: ::Array[::String]
|
70
72
|
attr_accessor role_arn: ::String
|
71
73
|
attr_accessor region: ::String
|
72
74
|
attr_accessor namespace: ::String
|
@@ -193,7 +195,7 @@ module Aws::CodePipeline
|
|
193
195
|
end
|
194
196
|
|
195
197
|
class ActionTypeId
|
196
|
-
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
198
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute")
|
197
199
|
attr_accessor owner: ("AWS" | "ThirdParty" | "Custom")
|
198
200
|
attr_accessor provider: ::String
|
199
201
|
attr_accessor version: ::String
|
@@ -201,7 +203,7 @@ module Aws::CodePipeline
|
|
201
203
|
end
|
202
204
|
|
203
205
|
class ActionTypeIdentifier
|
204
|
-
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
206
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute")
|
205
207
|
attr_accessor owner: ::String
|
206
208
|
attr_accessor provider: ::String
|
207
209
|
attr_accessor version: ::String
|
@@ -344,7 +346,7 @@ module Aws::CodePipeline
|
|
344
346
|
end
|
345
347
|
|
346
348
|
class CreateCustomActionTypeInput
|
347
|
-
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
349
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute")
|
348
350
|
attr_accessor provider: ::String
|
349
351
|
attr_accessor version: ::String
|
350
352
|
attr_accessor settings: Types::ActionTypeSettings
|
@@ -382,7 +384,7 @@ module Aws::CodePipeline
|
|
382
384
|
end
|
383
385
|
|
384
386
|
class DeleteCustomActionTypeInput
|
385
|
-
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
387
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute")
|
386
388
|
attr_accessor provider: ::String
|
387
389
|
attr_accessor version: ::String
|
388
390
|
SENSITIVE: []
|
@@ -474,7 +476,7 @@ module Aws::CodePipeline
|
|
474
476
|
end
|
475
477
|
|
476
478
|
class GetActionTypeInput
|
477
|
-
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
479
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute")
|
478
480
|
attr_accessor owner: ::String
|
479
481
|
attr_accessor provider: ::String
|
480
482
|
attr_accessor version: ::String
|
@@ -803,6 +805,7 @@ module Aws::CodePipeline
|
|
803
805
|
|
804
806
|
class OutputArtifact
|
805
807
|
attr_accessor name: ::String
|
808
|
+
attr_accessor files: ::Array[::String]
|
806
809
|
SENSITIVE: []
|
807
810
|
end
|
808
811
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codepipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.87.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|