aws-sdk-codepipeline 1.53.0 → 1.55.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +20 -3
- data/lib/aws-sdk-codepipeline/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-codepipeline/endpoint_provider.rb +51 -0
- data/lib/aws-sdk-codepipeline/endpoints.rb +561 -0
- data/lib/aws-sdk-codepipeline/plugins/endpoints.rb +146 -0
- data/lib/aws-sdk-codepipeline/types.rb +0 -1078
- data/lib/aws-sdk-codepipeline.rb +5 -1
- metadata +8 -4
@@ -39,14 +39,6 @@ module Aws::CodePipeline
|
|
39
39
|
|
40
40
|
# Represents the input of an AcknowledgeJob action.
|
41
41
|
#
|
42
|
-
# @note When making an API call, you may pass AcknowledgeJobInput
|
43
|
-
# data as a hash:
|
44
|
-
#
|
45
|
-
# {
|
46
|
-
# job_id: "JobId", # required
|
47
|
-
# nonce: "Nonce", # required
|
48
|
-
# }
|
49
|
-
#
|
50
42
|
# @!attribute [rw] job_id
|
51
43
|
# The unique system-generated ID of the job for which you want to
|
52
44
|
# confirm receipt.
|
@@ -84,15 +76,6 @@ module Aws::CodePipeline
|
|
84
76
|
|
85
77
|
# Represents the input of an AcknowledgeThirdPartyJob action.
|
86
78
|
#
|
87
|
-
# @note When making an API call, you may pass AcknowledgeThirdPartyJobInput
|
88
|
-
# data as a hash:
|
89
|
-
#
|
90
|
-
# {
|
91
|
-
# job_id: "ThirdPartyJobId", # required
|
92
|
-
# nonce: "Nonce", # required
|
93
|
-
# client_token: "ClientToken", # required
|
94
|
-
# }
|
95
|
-
#
|
96
79
|
# @!attribute [rw] job_id
|
97
80
|
# The unique system-generated ID of the job.
|
98
81
|
# @return [String]
|
@@ -149,19 +132,6 @@ module Aws::CodePipeline
|
|
149
132
|
|
150
133
|
# Represents information about an action configuration property.
|
151
134
|
#
|
152
|
-
# @note When making an API call, you may pass ActionConfigurationProperty
|
153
|
-
# data as a hash:
|
154
|
-
#
|
155
|
-
# {
|
156
|
-
# name: "ActionConfigurationKey", # required
|
157
|
-
# required: false, # required
|
158
|
-
# key: false, # required
|
159
|
-
# secret: false, # required
|
160
|
-
# queryable: false,
|
161
|
-
# description: "Description",
|
162
|
-
# type: "String", # accepts String, Number, Boolean
|
163
|
-
# }
|
164
|
-
#
|
165
135
|
# @!attribute [rw] name
|
166
136
|
# The name of the action configuration property.
|
167
137
|
# @return [String]
|
@@ -244,36 +214,6 @@ module Aws::CodePipeline
|
|
244
214
|
|
245
215
|
# Represents information about an action declaration.
|
246
216
|
#
|
247
|
-
# @note When making an API call, you may pass ActionDeclaration
|
248
|
-
# data as a hash:
|
249
|
-
#
|
250
|
-
# {
|
251
|
-
# name: "ActionName", # required
|
252
|
-
# action_type_id: { # required
|
253
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
254
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
255
|
-
# provider: "ActionProvider", # required
|
256
|
-
# version: "Version", # required
|
257
|
-
# },
|
258
|
-
# run_order: 1,
|
259
|
-
# configuration: {
|
260
|
-
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
261
|
-
# },
|
262
|
-
# output_artifacts: [
|
263
|
-
# {
|
264
|
-
# name: "ArtifactName", # required
|
265
|
-
# },
|
266
|
-
# ],
|
267
|
-
# input_artifacts: [
|
268
|
-
# {
|
269
|
-
# name: "ArtifactName", # required
|
270
|
-
# },
|
271
|
-
# ],
|
272
|
-
# role_arn: "RoleArn",
|
273
|
-
# region: "AWSRegionName",
|
274
|
-
# namespace: "ActionNamespace",
|
275
|
-
# }
|
276
|
-
#
|
277
217
|
# @!attribute [rw] name
|
278
218
|
# The action declaration's name.
|
279
219
|
# @return [String]
|
@@ -486,13 +426,6 @@ module Aws::CodePipeline
|
|
486
426
|
|
487
427
|
# Filter values for the action execution.
|
488
428
|
#
|
489
|
-
# @note When making an API call, you may pass ActionExecutionFilter
|
490
|
-
# data as a hash:
|
491
|
-
#
|
492
|
-
# {
|
493
|
-
# pipeline_execution_id: "PipelineExecutionId",
|
494
|
-
# }
|
495
|
-
#
|
496
429
|
# @!attribute [rw] pipeline_execution_id
|
497
430
|
# The pipeline execution ID used to filter action execution history.
|
498
431
|
# @return [String]
|
@@ -615,15 +548,6 @@ module Aws::CodePipeline
|
|
615
548
|
|
616
549
|
# Represents information about the version (or revision) of an action.
|
617
550
|
#
|
618
|
-
# @note When making an API call, you may pass ActionRevision
|
619
|
-
# data as a hash:
|
620
|
-
#
|
621
|
-
# {
|
622
|
-
# revision_id: "Revision", # required
|
623
|
-
# revision_change_id: "RevisionChangeIdentifier", # required
|
624
|
-
# created: Time.now, # required
|
625
|
-
# }
|
626
|
-
#
|
627
551
|
# @!attribute [rw] revision_id
|
628
552
|
# The system-generated unique ID that identifies the revision number
|
629
553
|
# of the action.
|
@@ -730,14 +654,6 @@ module Aws::CodePipeline
|
|
730
654
|
# Information about parameters for artifacts associated with the action
|
731
655
|
# type, such as the minimum and maximum artifacts allowed.
|
732
656
|
#
|
733
|
-
# @note When making an API call, you may pass ActionTypeArtifactDetails
|
734
|
-
# data as a hash:
|
735
|
-
#
|
736
|
-
# {
|
737
|
-
# minimum_count: 1, # required
|
738
|
-
# maximum_count: 1, # required
|
739
|
-
# }
|
740
|
-
#
|
741
657
|
# @!attribute [rw] minimum_count
|
742
658
|
# The minimum number of artifacts that can be used with the action
|
743
659
|
# type. For example, you should specify a minimum and maximum of zero
|
@@ -762,60 +678,6 @@ module Aws::CodePipeline
|
|
762
678
|
# The parameters for the action type definition that are provided when
|
763
679
|
# the action type is created or updated.
|
764
680
|
#
|
765
|
-
# @note When making an API call, you may pass ActionTypeDeclaration
|
766
|
-
# data as a hash:
|
767
|
-
#
|
768
|
-
# {
|
769
|
-
# description: "ActionTypeDescription",
|
770
|
-
# executor: { # required
|
771
|
-
# configuration: { # required
|
772
|
-
# lambda_executor_configuration: {
|
773
|
-
# lambda_function_arn: "LambdaFunctionArn", # required
|
774
|
-
# },
|
775
|
-
# job_worker_executor_configuration: {
|
776
|
-
# polling_accounts: ["AccountId"],
|
777
|
-
# polling_service_principals: ["ServicePrincipal"],
|
778
|
-
# },
|
779
|
-
# },
|
780
|
-
# type: "JobWorker", # required, accepts JobWorker, Lambda
|
781
|
-
# policy_statements_template: "PolicyStatementsTemplate",
|
782
|
-
# job_timeout: 1,
|
783
|
-
# },
|
784
|
-
# id: { # required
|
785
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
786
|
-
# owner: "ActionTypeOwner", # required
|
787
|
-
# provider: "ActionProvider", # required
|
788
|
-
# version: "Version", # required
|
789
|
-
# },
|
790
|
-
# input_artifact_details: { # required
|
791
|
-
# minimum_count: 1, # required
|
792
|
-
# maximum_count: 1, # required
|
793
|
-
# },
|
794
|
-
# output_artifact_details: { # required
|
795
|
-
# minimum_count: 1, # required
|
796
|
-
# maximum_count: 1, # required
|
797
|
-
# },
|
798
|
-
# permissions: {
|
799
|
-
# allowed_accounts: ["AllowedAccount"], # required
|
800
|
-
# },
|
801
|
-
# properties: [
|
802
|
-
# {
|
803
|
-
# name: "ActionConfigurationKey", # required
|
804
|
-
# optional: false, # required
|
805
|
-
# key: false, # required
|
806
|
-
# no_echo: false, # required
|
807
|
-
# queryable: false,
|
808
|
-
# description: "PropertyDescription",
|
809
|
-
# },
|
810
|
-
# ],
|
811
|
-
# urls: {
|
812
|
-
# configuration_url: "Url",
|
813
|
-
# entity_url_template: "UrlTemplate",
|
814
|
-
# execution_url_template: "UrlTemplate",
|
815
|
-
# revision_url_template: "UrlTemplate",
|
816
|
-
# },
|
817
|
-
# }
|
818
|
-
#
|
819
681
|
# @!attribute [rw] description
|
820
682
|
# The description for the action type to be updated.
|
821
683
|
# @return [String]
|
@@ -875,24 +737,6 @@ module Aws::CodePipeline
|
|
875
737
|
# The action engine is associated with the model used to create and
|
876
738
|
# update the action, such as the Lambda integration model.
|
877
739
|
#
|
878
|
-
# @note When making an API call, you may pass ActionTypeExecutor
|
879
|
-
# data as a hash:
|
880
|
-
#
|
881
|
-
# {
|
882
|
-
# configuration: { # required
|
883
|
-
# lambda_executor_configuration: {
|
884
|
-
# lambda_function_arn: "LambdaFunctionArn", # required
|
885
|
-
# },
|
886
|
-
# job_worker_executor_configuration: {
|
887
|
-
# polling_accounts: ["AccountId"],
|
888
|
-
# polling_service_principals: ["ServicePrincipal"],
|
889
|
-
# },
|
890
|
-
# },
|
891
|
-
# type: "JobWorker", # required, accepts JobWorker, Lambda
|
892
|
-
# policy_statements_template: "PolicyStatementsTemplate",
|
893
|
-
# job_timeout: 1,
|
894
|
-
# }
|
895
|
-
#
|
896
740
|
# @!attribute [rw] configuration
|
897
741
|
# The action configuration properties for the action type. These
|
898
742
|
# properties are specified in the action definition when the action
|
@@ -938,16 +782,6 @@ module Aws::CodePipeline
|
|
938
782
|
|
939
783
|
# Represents information about an action type.
|
940
784
|
#
|
941
|
-
# @note When making an API call, you may pass ActionTypeId
|
942
|
-
# data as a hash:
|
943
|
-
#
|
944
|
-
# {
|
945
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
946
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
947
|
-
# provider: "ActionProvider", # required
|
948
|
-
# version: "Version", # required
|
949
|
-
# }
|
950
|
-
#
|
951
785
|
# @!attribute [rw] category
|
952
786
|
# A category defines what kind of action can be taken in the stage,
|
953
787
|
# and constrains the provider type for the action. Valid categories
|
@@ -1009,16 +843,6 @@ module Aws::CodePipeline
|
|
1009
843
|
# Specifies the category, owner, provider, and version of the action
|
1010
844
|
# type.
|
1011
845
|
#
|
1012
|
-
# @note When making an API call, you may pass ActionTypeIdentifier
|
1013
|
-
# data as a hash:
|
1014
|
-
#
|
1015
|
-
# {
|
1016
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1017
|
-
# owner: "ActionTypeOwner", # required
|
1018
|
-
# provider: "ActionProvider", # required
|
1019
|
-
# version: "Version", # required
|
1020
|
-
# }
|
1021
|
-
#
|
1022
846
|
# @!attribute [rw] category
|
1023
847
|
# Defines what kind of action can be taken in the stage, one of the
|
1024
848
|
# following:
|
@@ -1068,13 +892,6 @@ module Aws::CodePipeline
|
|
1068
892
|
|
1069
893
|
# Details identifying the users with permissions to use the action type.
|
1070
894
|
#
|
1071
|
-
# @note When making an API call, you may pass ActionTypePermissions
|
1072
|
-
# data as a hash:
|
1073
|
-
#
|
1074
|
-
# {
|
1075
|
-
# allowed_accounts: ["AllowedAccount"], # required
|
1076
|
-
# }
|
1077
|
-
#
|
1078
895
|
# @!attribute [rw] allowed_accounts
|
1079
896
|
# A list of AWS account IDs with access to use the action type in
|
1080
897
|
# their pipelines.
|
@@ -1092,18 +909,6 @@ module Aws::CodePipeline
|
|
1092
909
|
# configuration, such as the description and key name that display for
|
1093
910
|
# the customer using the action type.
|
1094
911
|
#
|
1095
|
-
# @note When making an API call, you may pass ActionTypeProperty
|
1096
|
-
# data as a hash:
|
1097
|
-
#
|
1098
|
-
# {
|
1099
|
-
# name: "ActionConfigurationKey", # required
|
1100
|
-
# optional: false, # required
|
1101
|
-
# key: false, # required
|
1102
|
-
# no_echo: false, # required
|
1103
|
-
# queryable: false,
|
1104
|
-
# description: "PropertyDescription",
|
1105
|
-
# }
|
1106
|
-
#
|
1107
912
|
# @!attribute [rw] name
|
1108
913
|
# The property name that is displayed to users.
|
1109
914
|
# @return [String]
|
@@ -1147,16 +952,6 @@ module Aws::CodePipeline
|
|
1147
952
|
|
1148
953
|
# Returns information about the settings for an action type.
|
1149
954
|
#
|
1150
|
-
# @note When making an API call, you may pass ActionTypeSettings
|
1151
|
-
# data as a hash:
|
1152
|
-
#
|
1153
|
-
# {
|
1154
|
-
# third_party_configuration_url: "Url",
|
1155
|
-
# entity_url_template: "UrlTemplate",
|
1156
|
-
# execution_url_template: "UrlTemplate",
|
1157
|
-
# revision_url_template: "UrlTemplate",
|
1158
|
-
# }
|
1159
|
-
#
|
1160
955
|
# @!attribute [rw] third_party_configuration_url
|
1161
956
|
# The URL of a sign-up page where users can sign up for an external
|
1162
957
|
# service and perform initial configuration of the action provided by
|
@@ -1199,16 +994,6 @@ module Aws::CodePipeline
|
|
1199
994
|
# as links on the pipeline view, such as an external configuration page
|
1200
995
|
# for the action type.
|
1201
996
|
#
|
1202
|
-
# @note When making an API call, you may pass ActionTypeUrls
|
1203
|
-
# data as a hash:
|
1204
|
-
#
|
1205
|
-
# {
|
1206
|
-
# configuration_url: "Url",
|
1207
|
-
# entity_url_template: "UrlTemplate",
|
1208
|
-
# execution_url_template: "UrlTemplate",
|
1209
|
-
# revision_url_template: "UrlTemplate",
|
1210
|
-
# }
|
1211
|
-
#
|
1212
997
|
# @!attribute [rw] configuration_url
|
1213
998
|
# The URL returned to the CodePipeline console that contains a link to
|
1214
999
|
# the page where customers can configure the external action.
|
@@ -1252,14 +1037,6 @@ module Aws::CodePipeline
|
|
1252
1037
|
|
1253
1038
|
# Represents information about the result of an approval request.
|
1254
1039
|
#
|
1255
|
-
# @note When making an API call, you may pass ApprovalResult
|
1256
|
-
# data as a hash:
|
1257
|
-
#
|
1258
|
-
# {
|
1259
|
-
# summary: "ApprovalSummary", # required
|
1260
|
-
# status: "Approved", # required, accepts Approved, Rejected
|
1261
|
-
# }
|
1262
|
-
#
|
1263
1040
|
# @!attribute [rw] summary
|
1264
1041
|
# The summary of the current status of the approval request.
|
1265
1042
|
# @return [String]
|
@@ -1326,14 +1103,6 @@ module Aws::CodePipeline
|
|
1326
1103
|
|
1327
1104
|
# Returns information about the details of an artifact.
|
1328
1105
|
#
|
1329
|
-
# @note When making an API call, you may pass ArtifactDetails
|
1330
|
-
# data as a hash:
|
1331
|
-
#
|
1332
|
-
# {
|
1333
|
-
# minimum_count: 1, # required
|
1334
|
-
# maximum_count: 1, # required
|
1335
|
-
# }
|
1336
|
-
#
|
1337
1106
|
# @!attribute [rw] minimum_count
|
1338
1107
|
# The minimum number of artifacts allowed for the action type.
|
1339
1108
|
# @return [Integer]
|
@@ -1426,18 +1195,6 @@ module Aws::CodePipeline
|
|
1426
1195
|
#
|
1427
1196
|
# </note>
|
1428
1197
|
#
|
1429
|
-
# @note When making an API call, you may pass ArtifactStore
|
1430
|
-
# data as a hash:
|
1431
|
-
#
|
1432
|
-
# {
|
1433
|
-
# type: "S3", # required, accepts S3
|
1434
|
-
# location: "ArtifactStoreLocation", # required
|
1435
|
-
# encryption_key: {
|
1436
|
-
# id: "EncryptionKeyId", # required
|
1437
|
-
# type: "KMS", # required, accepts KMS
|
1438
|
-
# },
|
1439
|
-
# }
|
1440
|
-
#
|
1441
1198
|
# @!attribute [rw] type
|
1442
1199
|
# The type of the artifact store, such as S3.
|
1443
1200
|
# @return [String]
|
@@ -1468,14 +1225,6 @@ module Aws::CodePipeline
|
|
1468
1225
|
|
1469
1226
|
# Reserved for future use.
|
1470
1227
|
#
|
1471
|
-
# @note When making an API call, you may pass BlockerDeclaration
|
1472
|
-
# data as a hash:
|
1473
|
-
#
|
1474
|
-
# {
|
1475
|
-
# name: "BlockerName", # required
|
1476
|
-
# type: "Schedule", # required, accepts Schedule
|
1477
|
-
# }
|
1478
|
-
#
|
1479
1228
|
# @!attribute [rw] name
|
1480
1229
|
# Reserved for future use.
|
1481
1230
|
# @return [String]
|
@@ -1522,46 +1271,6 @@ module Aws::CodePipeline
|
|
1522
1271
|
|
1523
1272
|
# Represents the input of a CreateCustomActionType operation.
|
1524
1273
|
#
|
1525
|
-
# @note When making an API call, you may pass CreateCustomActionTypeInput
|
1526
|
-
# data as a hash:
|
1527
|
-
#
|
1528
|
-
# {
|
1529
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1530
|
-
# provider: "ActionProvider", # required
|
1531
|
-
# version: "Version", # required
|
1532
|
-
# settings: {
|
1533
|
-
# third_party_configuration_url: "Url",
|
1534
|
-
# entity_url_template: "UrlTemplate",
|
1535
|
-
# execution_url_template: "UrlTemplate",
|
1536
|
-
# revision_url_template: "UrlTemplate",
|
1537
|
-
# },
|
1538
|
-
# configuration_properties: [
|
1539
|
-
# {
|
1540
|
-
# name: "ActionConfigurationKey", # required
|
1541
|
-
# required: false, # required
|
1542
|
-
# key: false, # required
|
1543
|
-
# secret: false, # required
|
1544
|
-
# queryable: false,
|
1545
|
-
# description: "Description",
|
1546
|
-
# type: "String", # accepts String, Number, Boolean
|
1547
|
-
# },
|
1548
|
-
# ],
|
1549
|
-
# input_artifact_details: { # required
|
1550
|
-
# minimum_count: 1, # required
|
1551
|
-
# maximum_count: 1, # required
|
1552
|
-
# },
|
1553
|
-
# output_artifact_details: { # required
|
1554
|
-
# minimum_count: 1, # required
|
1555
|
-
# maximum_count: 1, # required
|
1556
|
-
# },
|
1557
|
-
# tags: [
|
1558
|
-
# {
|
1559
|
-
# key: "TagKey", # required
|
1560
|
-
# value: "TagValue", # required
|
1561
|
-
# },
|
1562
|
-
# ],
|
1563
|
-
# }
|
1564
|
-
#
|
1565
1274
|
# @!attribute [rw] category
|
1566
1275
|
# The category of the custom action, such as a build action or a test
|
1567
1276
|
# action.
|
@@ -1646,80 +1355,6 @@ module Aws::CodePipeline
|
|
1646
1355
|
|
1647
1356
|
# Represents the input of a `CreatePipeline` action.
|
1648
1357
|
#
|
1649
|
-
# @note When making an API call, you may pass CreatePipelineInput
|
1650
|
-
# data as a hash:
|
1651
|
-
#
|
1652
|
-
# {
|
1653
|
-
# pipeline: { # required
|
1654
|
-
# name: "PipelineName", # required
|
1655
|
-
# role_arn: "RoleArn", # required
|
1656
|
-
# artifact_store: {
|
1657
|
-
# type: "S3", # required, accepts S3
|
1658
|
-
# location: "ArtifactStoreLocation", # required
|
1659
|
-
# encryption_key: {
|
1660
|
-
# id: "EncryptionKeyId", # required
|
1661
|
-
# type: "KMS", # required, accepts KMS
|
1662
|
-
# },
|
1663
|
-
# },
|
1664
|
-
# artifact_stores: {
|
1665
|
-
# "AWSRegionName" => {
|
1666
|
-
# type: "S3", # required, accepts S3
|
1667
|
-
# location: "ArtifactStoreLocation", # required
|
1668
|
-
# encryption_key: {
|
1669
|
-
# id: "EncryptionKeyId", # required
|
1670
|
-
# type: "KMS", # required, accepts KMS
|
1671
|
-
# },
|
1672
|
-
# },
|
1673
|
-
# },
|
1674
|
-
# stages: [ # required
|
1675
|
-
# {
|
1676
|
-
# name: "StageName", # required
|
1677
|
-
# blockers: [
|
1678
|
-
# {
|
1679
|
-
# name: "BlockerName", # required
|
1680
|
-
# type: "Schedule", # required, accepts Schedule
|
1681
|
-
# },
|
1682
|
-
# ],
|
1683
|
-
# actions: [ # required
|
1684
|
-
# {
|
1685
|
-
# name: "ActionName", # required
|
1686
|
-
# action_type_id: { # required
|
1687
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1688
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
1689
|
-
# provider: "ActionProvider", # required
|
1690
|
-
# version: "Version", # required
|
1691
|
-
# },
|
1692
|
-
# run_order: 1,
|
1693
|
-
# configuration: {
|
1694
|
-
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
1695
|
-
# },
|
1696
|
-
# output_artifacts: [
|
1697
|
-
# {
|
1698
|
-
# name: "ArtifactName", # required
|
1699
|
-
# },
|
1700
|
-
# ],
|
1701
|
-
# input_artifacts: [
|
1702
|
-
# {
|
1703
|
-
# name: "ArtifactName", # required
|
1704
|
-
# },
|
1705
|
-
# ],
|
1706
|
-
# role_arn: "RoleArn",
|
1707
|
-
# region: "AWSRegionName",
|
1708
|
-
# namespace: "ActionNamespace",
|
1709
|
-
# },
|
1710
|
-
# ],
|
1711
|
-
# },
|
1712
|
-
# ],
|
1713
|
-
# version: 1,
|
1714
|
-
# },
|
1715
|
-
# tags: [
|
1716
|
-
# {
|
1717
|
-
# key: "TagKey", # required
|
1718
|
-
# value: "TagValue", # required
|
1719
|
-
# },
|
1720
|
-
# ],
|
1721
|
-
# }
|
1722
|
-
#
|
1723
1358
|
# @!attribute [rw] pipeline
|
1724
1359
|
# Represents the structure of actions and stages to be performed in
|
1725
1360
|
# the pipeline.
|
@@ -1760,16 +1395,6 @@ module Aws::CodePipeline
|
|
1760
1395
|
|
1761
1396
|
# Represents information about a current revision.
|
1762
1397
|
#
|
1763
|
-
# @note When making an API call, you may pass CurrentRevision
|
1764
|
-
# data as a hash:
|
1765
|
-
#
|
1766
|
-
# {
|
1767
|
-
# revision: "Revision", # required
|
1768
|
-
# change_identifier: "RevisionChangeIdentifier", # required
|
1769
|
-
# created: Time.now,
|
1770
|
-
# revision_summary: "RevisionSummary",
|
1771
|
-
# }
|
1772
|
-
#
|
1773
1398
|
# @!attribute [rw] revision
|
1774
1399
|
# The revision ID of the current version of an artifact.
|
1775
1400
|
# @return [String]
|
@@ -1801,15 +1426,6 @@ module Aws::CodePipeline
|
|
1801
1426
|
# Represents the input of a `DeleteCustomActionType` operation. The
|
1802
1427
|
# custom action will be marked as deleted.
|
1803
1428
|
#
|
1804
|
-
# @note When making an API call, you may pass DeleteCustomActionTypeInput
|
1805
|
-
# data as a hash:
|
1806
|
-
#
|
1807
|
-
# {
|
1808
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
1809
|
-
# provider: "ActionProvider", # required
|
1810
|
-
# version: "Version", # required
|
1811
|
-
# }
|
1812
|
-
#
|
1813
1429
|
# @!attribute [rw] category
|
1814
1430
|
# The category of the custom action that you want to delete, such as
|
1815
1431
|
# source or deploy.
|
@@ -1836,13 +1452,6 @@ module Aws::CodePipeline
|
|
1836
1452
|
|
1837
1453
|
# Represents the input of a `DeletePipeline` action.
|
1838
1454
|
#
|
1839
|
-
# @note When making an API call, you may pass DeletePipelineInput
|
1840
|
-
# data as a hash:
|
1841
|
-
#
|
1842
|
-
# {
|
1843
|
-
# name: "PipelineName", # required
|
1844
|
-
# }
|
1845
|
-
#
|
1846
1455
|
# @!attribute [rw] name
|
1847
1456
|
# The name of the pipeline to be deleted.
|
1848
1457
|
# @return [String]
|
@@ -1855,13 +1464,6 @@ module Aws::CodePipeline
|
|
1855
1464
|
include Aws::Structure
|
1856
1465
|
end
|
1857
1466
|
|
1858
|
-
# @note When making an API call, you may pass DeleteWebhookInput
|
1859
|
-
# data as a hash:
|
1860
|
-
#
|
1861
|
-
# {
|
1862
|
-
# name: "WebhookName", # required
|
1863
|
-
# }
|
1864
|
-
#
|
1865
1467
|
# @!attribute [rw] name
|
1866
1468
|
# The name of the webhook you want to delete.
|
1867
1469
|
# @return [String]
|
@@ -1878,13 +1480,6 @@ module Aws::CodePipeline
|
|
1878
1480
|
#
|
1879
1481
|
class DeleteWebhookOutput < Aws::EmptyStructure; end
|
1880
1482
|
|
1881
|
-
# @note When making an API call, you may pass DeregisterWebhookWithThirdPartyInput
|
1882
|
-
# data as a hash:
|
1883
|
-
#
|
1884
|
-
# {
|
1885
|
-
# webhook_name: "WebhookName",
|
1886
|
-
# }
|
1887
|
-
#
|
1888
1483
|
# @!attribute [rw] webhook_name
|
1889
1484
|
# The name of the webhook you want to deregister.
|
1890
1485
|
# @return [String]
|
@@ -1903,16 +1498,6 @@ module Aws::CodePipeline
|
|
1903
1498
|
|
1904
1499
|
# Represents the input of a `DisableStageTransition` action.
|
1905
1500
|
#
|
1906
|
-
# @note When making an API call, you may pass DisableStageTransitionInput
|
1907
|
-
# data as a hash:
|
1908
|
-
#
|
1909
|
-
# {
|
1910
|
-
# pipeline_name: "PipelineName", # required
|
1911
|
-
# stage_name: "StageName", # required
|
1912
|
-
# transition_type: "Inbound", # required, accepts Inbound, Outbound
|
1913
|
-
# reason: "DisabledReason", # required
|
1914
|
-
# }
|
1915
|
-
#
|
1916
1501
|
# @!attribute [rw] pipeline_name
|
1917
1502
|
# The name of the pipeline in which you want to disable the flow of
|
1918
1503
|
# artifacts from one stage to another.
|
@@ -1966,15 +1551,6 @@ module Aws::CodePipeline
|
|
1966
1551
|
|
1967
1552
|
# Represents the input of an `EnableStageTransition` action.
|
1968
1553
|
#
|
1969
|
-
# @note When making an API call, you may pass EnableStageTransitionInput
|
1970
|
-
# data as a hash:
|
1971
|
-
#
|
1972
|
-
# {
|
1973
|
-
# pipeline_name: "PipelineName", # required
|
1974
|
-
# stage_name: "StageName", # required
|
1975
|
-
# transition_type: "Inbound", # required, accepts Inbound, Outbound
|
1976
|
-
# }
|
1977
|
-
#
|
1978
1554
|
# @!attribute [rw] pipeline_name
|
1979
1555
|
# The name of the pipeline in which you want to enable the flow of
|
1980
1556
|
# artifacts from one stage to another.
|
@@ -2006,14 +1582,6 @@ module Aws::CodePipeline
|
|
2006
1582
|
# Represents information about the key used to encrypt data in the
|
2007
1583
|
# artifact store, such as an AWS Key Management Service (AWS KMS) key.
|
2008
1584
|
#
|
2009
|
-
# @note When making an API call, you may pass EncryptionKey
|
2010
|
-
# data as a hash:
|
2011
|
-
#
|
2012
|
-
# {
|
2013
|
-
# id: "EncryptionKeyId", # required
|
2014
|
-
# type: "KMS", # required, accepts KMS
|
2015
|
-
# }
|
2016
|
-
#
|
2017
1585
|
# @!attribute [rw] id
|
2018
1586
|
# The ID used to identify the key. For an AWS KMS key, you can use the
|
2019
1587
|
# key ID, the key ARN, or the alias ARN.
|
@@ -2062,15 +1630,6 @@ module Aws::CodePipeline
|
|
2062
1630
|
# The details of the actions taken and results produced on an artifact
|
2063
1631
|
# as it passes through stages in the pipeline.
|
2064
1632
|
#
|
2065
|
-
# @note When making an API call, you may pass ExecutionDetails
|
2066
|
-
# data as a hash:
|
2067
|
-
#
|
2068
|
-
# {
|
2069
|
-
# summary: "ExecutionSummary",
|
2070
|
-
# external_execution_id: "ExecutionId",
|
2071
|
-
# percent_complete: 1,
|
2072
|
-
# }
|
2073
|
-
#
|
2074
1633
|
# @!attribute [rw] summary
|
2075
1634
|
# The summary of the current status of the actions.
|
2076
1635
|
# @return [String]
|
@@ -2122,19 +1681,6 @@ module Aws::CodePipeline
|
|
2122
1681
|
# model used to create and update the action type. The available
|
2123
1682
|
# executor types are `Lambda` and `JobWorker`.
|
2124
1683
|
#
|
2125
|
-
# @note When making an API call, you may pass ExecutorConfiguration
|
2126
|
-
# data as a hash:
|
2127
|
-
#
|
2128
|
-
# {
|
2129
|
-
# lambda_executor_configuration: {
|
2130
|
-
# lambda_function_arn: "LambdaFunctionArn", # required
|
2131
|
-
# },
|
2132
|
-
# job_worker_executor_configuration: {
|
2133
|
-
# polling_accounts: ["AccountId"],
|
2134
|
-
# polling_service_principals: ["ServicePrincipal"],
|
2135
|
-
# },
|
2136
|
-
# }
|
2137
|
-
#
|
2138
1684
|
# @!attribute [rw] lambda_executor_configuration
|
2139
1685
|
# Details about the `Lambda` executor of the action type.
|
2140
1686
|
# @return [Types::LambdaExecutorConfiguration]
|
@@ -2154,15 +1700,6 @@ module Aws::CodePipeline
|
|
2154
1700
|
|
2155
1701
|
# Represents information about failure details.
|
2156
1702
|
#
|
2157
|
-
# @note When making an API call, you may pass FailureDetails
|
2158
|
-
# data as a hash:
|
2159
|
-
#
|
2160
|
-
# {
|
2161
|
-
# type: "JobFailed", # required, accepts JobFailed, ConfigurationError, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable
|
2162
|
-
# message: "Message", # required
|
2163
|
-
# external_execution_id: "ExecutionId",
|
2164
|
-
# }
|
2165
|
-
#
|
2166
1703
|
# @!attribute [rw] type
|
2167
1704
|
# The type of the failure.
|
2168
1705
|
# @return [String]
|
@@ -2185,16 +1722,6 @@ module Aws::CodePipeline
|
|
2185
1722
|
include Aws::Structure
|
2186
1723
|
end
|
2187
1724
|
|
2188
|
-
# @note When making an API call, you may pass GetActionTypeInput
|
2189
|
-
# data as a hash:
|
2190
|
-
#
|
2191
|
-
# {
|
2192
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
2193
|
-
# owner: "ActionTypeOwner", # required
|
2194
|
-
# provider: "ActionProvider", # required
|
2195
|
-
# version: "Version", # required
|
2196
|
-
# }
|
2197
|
-
#
|
2198
1725
|
# @!attribute [rw] category
|
2199
1726
|
# Defines what kind of action can be taken in the stage. The following
|
2200
1727
|
# are the valid values:
|
@@ -2253,13 +1780,6 @@ module Aws::CodePipeline
|
|
2253
1780
|
|
2254
1781
|
# Represents the input of a `GetJobDetails` action.
|
2255
1782
|
#
|
2256
|
-
# @note When making an API call, you may pass GetJobDetailsInput
|
2257
|
-
# data as a hash:
|
2258
|
-
#
|
2259
|
-
# {
|
2260
|
-
# job_id: "JobId", # required
|
2261
|
-
# }
|
2262
|
-
#
|
2263
1783
|
# @!attribute [rw] job_id
|
2264
1784
|
# The unique system-generated ID for the job.
|
2265
1785
|
# @return [String]
|
@@ -2293,14 +1813,6 @@ module Aws::CodePipeline
|
|
2293
1813
|
|
2294
1814
|
# Represents the input of a `GetPipelineExecution` action.
|
2295
1815
|
#
|
2296
|
-
# @note When making an API call, you may pass GetPipelineExecutionInput
|
2297
|
-
# data as a hash:
|
2298
|
-
#
|
2299
|
-
# {
|
2300
|
-
# pipeline_name: "PipelineName", # required
|
2301
|
-
# pipeline_execution_id: "PipelineExecutionId", # required
|
2302
|
-
# }
|
2303
|
-
#
|
2304
1816
|
# @!attribute [rw] pipeline_name
|
2305
1817
|
# The name of the pipeline about which you want to get execution
|
2306
1818
|
# details.
|
@@ -2336,14 +1848,6 @@ module Aws::CodePipeline
|
|
2336
1848
|
|
2337
1849
|
# Represents the input of a `GetPipeline` action.
|
2338
1850
|
#
|
2339
|
-
# @note When making an API call, you may pass GetPipelineInput
|
2340
|
-
# data as a hash:
|
2341
|
-
#
|
2342
|
-
# {
|
2343
|
-
# name: "PipelineName", # required
|
2344
|
-
# version: 1,
|
2345
|
-
# }
|
2346
|
-
#
|
2347
1851
|
# @!attribute [rw] name
|
2348
1852
|
# The name of the pipeline for which you want to get information.
|
2349
1853
|
# Pipeline names must be unique under an AWS user account.
|
@@ -2386,13 +1890,6 @@ module Aws::CodePipeline
|
|
2386
1890
|
|
2387
1891
|
# Represents the input of a `GetPipelineState` action.
|
2388
1892
|
#
|
2389
|
-
# @note When making an API call, you may pass GetPipelineStateInput
|
2390
|
-
# data as a hash:
|
2391
|
-
#
|
2392
|
-
# {
|
2393
|
-
# name: "PipelineName", # required
|
2394
|
-
# }
|
2395
|
-
#
|
2396
1893
|
# @!attribute [rw] name
|
2397
1894
|
# The name of the pipeline about which you want to get information.
|
2398
1895
|
# @return [String]
|
@@ -2448,14 +1945,6 @@ module Aws::CodePipeline
|
|
2448
1945
|
|
2449
1946
|
# Represents the input of a `GetThirdPartyJobDetails` action.
|
2450
1947
|
#
|
2451
|
-
# @note When making an API call, you may pass GetThirdPartyJobDetailsInput
|
2452
|
-
# data as a hash:
|
2453
|
-
#
|
2454
|
-
# {
|
2455
|
-
# job_id: "ThirdPartyJobId", # required
|
2456
|
-
# client_token: "ClientToken", # required
|
2457
|
-
# }
|
2458
|
-
#
|
2459
1948
|
# @!attribute [rw] job_id
|
2460
1949
|
# The unique system-generated ID used for identifying the job.
|
2461
1950
|
# @return [String]
|
@@ -2493,13 +1982,6 @@ module Aws::CodePipeline
|
|
2493
1982
|
# Represents information about an artifact to be worked on, such as a
|
2494
1983
|
# test or build artifact.
|
2495
1984
|
#
|
2496
|
-
# @note When making an API call, you may pass InputArtifact
|
2497
|
-
# data as a hash:
|
2498
|
-
#
|
2499
|
-
# {
|
2500
|
-
# name: "ArtifactName", # required
|
2501
|
-
# }
|
2502
|
-
#
|
2503
1985
|
# @!attribute [rw] name
|
2504
1986
|
# The name of the artifact to be worked on (for example, "My App").
|
2505
1987
|
#
|
@@ -2743,14 +2225,6 @@ module Aws::CodePipeline
|
|
2743
2225
|
# Details about the polling configuration for the `JobWorker` action
|
2744
2226
|
# engine, or executor.
|
2745
2227
|
#
|
2746
|
-
# @note When making an API call, you may pass JobWorkerExecutorConfiguration
|
2747
|
-
# data as a hash:
|
2748
|
-
#
|
2749
|
-
# {
|
2750
|
-
# polling_accounts: ["AccountId"],
|
2751
|
-
# polling_service_principals: ["ServicePrincipal"],
|
2752
|
-
# }
|
2753
|
-
#
|
2754
2228
|
# @!attribute [rw] polling_accounts
|
2755
2229
|
# The accounts in which the job worker is configured and might poll
|
2756
2230
|
# for jobs as part of the action execution.
|
@@ -2773,13 +2247,6 @@ module Aws::CodePipeline
|
|
2773
2247
|
# Details about the configuration for the `Lambda` action engine, or
|
2774
2248
|
# executor.
|
2775
2249
|
#
|
2776
|
-
# @note When making an API call, you may pass LambdaExecutorConfiguration
|
2777
|
-
# data as a hash:
|
2778
|
-
#
|
2779
|
-
# {
|
2780
|
-
# lambda_function_arn: "LambdaFunctionArn", # required
|
2781
|
-
# }
|
2782
|
-
#
|
2783
2250
|
# @!attribute [rw] lambda_function_arn
|
2784
2251
|
# The ARN of the Lambda function used by the action engine.
|
2785
2252
|
# @return [String]
|
@@ -2799,18 +2266,6 @@ module Aws::CodePipeline
|
|
2799
2266
|
#
|
2800
2267
|
class LimitExceededException < Aws::EmptyStructure; end
|
2801
2268
|
|
2802
|
-
# @note When making an API call, you may pass ListActionExecutionsInput
|
2803
|
-
# data as a hash:
|
2804
|
-
#
|
2805
|
-
# {
|
2806
|
-
# pipeline_name: "PipelineName", # required
|
2807
|
-
# filter: {
|
2808
|
-
# pipeline_execution_id: "PipelineExecutionId",
|
2809
|
-
# },
|
2810
|
-
# max_results: 1,
|
2811
|
-
# next_token: "NextToken",
|
2812
|
-
# }
|
2813
|
-
#
|
2814
2269
|
# @!attribute [rw] pipeline_name
|
2815
2270
|
# The name of the pipeline for which you want to list action execution
|
2816
2271
|
# history.
|
@@ -2872,15 +2327,6 @@ module Aws::CodePipeline
|
|
2872
2327
|
|
2873
2328
|
# Represents the input of a `ListActionTypes` action.
|
2874
2329
|
#
|
2875
|
-
# @note When making an API call, you may pass ListActionTypesInput
|
2876
|
-
# data as a hash:
|
2877
|
-
#
|
2878
|
-
# {
|
2879
|
-
# action_owner_filter: "AWS", # accepts AWS, ThirdParty, Custom
|
2880
|
-
# next_token: "NextToken",
|
2881
|
-
# region_filter: "AWSRegionName",
|
2882
|
-
# }
|
2883
|
-
#
|
2884
2330
|
# @!attribute [rw] action_owner_filter
|
2885
2331
|
# Filters the list of action types to those created by a specified
|
2886
2332
|
# entity.
|
@@ -2930,15 +2376,6 @@ module Aws::CodePipeline
|
|
2930
2376
|
|
2931
2377
|
# Represents the input of a `ListPipelineExecutions` action.
|
2932
2378
|
#
|
2933
|
-
# @note When making an API call, you may pass ListPipelineExecutionsInput
|
2934
|
-
# data as a hash:
|
2935
|
-
#
|
2936
|
-
# {
|
2937
|
-
# pipeline_name: "PipelineName", # required
|
2938
|
-
# max_results: 1,
|
2939
|
-
# next_token: "NextToken",
|
2940
|
-
# }
|
2941
|
-
#
|
2942
2379
|
# @!attribute [rw] pipeline_name
|
2943
2380
|
# The name of the pipeline for which you want to get execution summary
|
2944
2381
|
# information.
|
@@ -2991,14 +2428,6 @@ module Aws::CodePipeline
|
|
2991
2428
|
|
2992
2429
|
# Represents the input of a `ListPipelines` action.
|
2993
2430
|
#
|
2994
|
-
# @note When making an API call, you may pass ListPipelinesInput
|
2995
|
-
# data as a hash:
|
2996
|
-
#
|
2997
|
-
# {
|
2998
|
-
# next_token: "NextToken",
|
2999
|
-
# max_results: 1,
|
3000
|
-
# }
|
3001
|
-
#
|
3002
2431
|
# @!attribute [rw] next_token
|
3003
2432
|
# An identifier that was returned from the previous list pipelines
|
3004
2433
|
# call. It can be used to return the next set of pipelines in the
|
@@ -3042,15 +2471,6 @@ module Aws::CodePipeline
|
|
3042
2471
|
include Aws::Structure
|
3043
2472
|
end
|
3044
2473
|
|
3045
|
-
# @note When making an API call, you may pass ListTagsForResourceInput
|
3046
|
-
# data as a hash:
|
3047
|
-
#
|
3048
|
-
# {
|
3049
|
-
# resource_arn: "ResourceArn", # required
|
3050
|
-
# next_token: "NextToken",
|
3051
|
-
# max_results: 1,
|
3052
|
-
# }
|
3053
|
-
#
|
3054
2474
|
# @!attribute [rw] resource_arn
|
3055
2475
|
# The Amazon Resource Name (ARN) of the resource to get tags for.
|
3056
2476
|
# @return [String]
|
@@ -3147,14 +2567,6 @@ module Aws::CodePipeline
|
|
3147
2567
|
include Aws::Structure
|
3148
2568
|
end
|
3149
2569
|
|
3150
|
-
# @note When making an API call, you may pass ListWebhooksInput
|
3151
|
-
# data as a hash:
|
3152
|
-
#
|
3153
|
-
# {
|
3154
|
-
# next_token: "NextToken",
|
3155
|
-
# max_results: 1,
|
3156
|
-
# }
|
3157
|
-
#
|
3158
2570
|
# @!attribute [rw] next_token
|
3159
2571
|
# The token that was returned from the previous ListWebhooks call,
|
3160
2572
|
# which can be used to return the next set of webhooks in the list.
|
@@ -3204,13 +2616,6 @@ module Aws::CodePipeline
|
|
3204
2616
|
|
3205
2617
|
# Represents information about the output of an action.
|
3206
2618
|
#
|
3207
|
-
# @note When making an API call, you may pass OutputArtifact
|
3208
|
-
# data as a hash:
|
3209
|
-
#
|
3210
|
-
# {
|
3211
|
-
# name: "ArtifactName", # required
|
3212
|
-
# }
|
3213
|
-
#
|
3214
2619
|
# @!attribute [rw] name
|
3215
2620
|
# The name of the output of an artifact, such as "My App".
|
3216
2621
|
#
|
@@ -3290,72 +2695,6 @@ module Aws::CodePipeline
|
|
3290
2695
|
# Represents the structure of actions and stages to be performed in the
|
3291
2696
|
# pipeline.
|
3292
2697
|
#
|
3293
|
-
# @note When making an API call, you may pass PipelineDeclaration
|
3294
|
-
# data as a hash:
|
3295
|
-
#
|
3296
|
-
# {
|
3297
|
-
# name: "PipelineName", # required
|
3298
|
-
# role_arn: "RoleArn", # required
|
3299
|
-
# artifact_store: {
|
3300
|
-
# type: "S3", # required, accepts S3
|
3301
|
-
# location: "ArtifactStoreLocation", # required
|
3302
|
-
# encryption_key: {
|
3303
|
-
# id: "EncryptionKeyId", # required
|
3304
|
-
# type: "KMS", # required, accepts KMS
|
3305
|
-
# },
|
3306
|
-
# },
|
3307
|
-
# artifact_stores: {
|
3308
|
-
# "AWSRegionName" => {
|
3309
|
-
# type: "S3", # required, accepts S3
|
3310
|
-
# location: "ArtifactStoreLocation", # required
|
3311
|
-
# encryption_key: {
|
3312
|
-
# id: "EncryptionKeyId", # required
|
3313
|
-
# type: "KMS", # required, accepts KMS
|
3314
|
-
# },
|
3315
|
-
# },
|
3316
|
-
# },
|
3317
|
-
# stages: [ # required
|
3318
|
-
# {
|
3319
|
-
# name: "StageName", # required
|
3320
|
-
# blockers: [
|
3321
|
-
# {
|
3322
|
-
# name: "BlockerName", # required
|
3323
|
-
# type: "Schedule", # required, accepts Schedule
|
3324
|
-
# },
|
3325
|
-
# ],
|
3326
|
-
# actions: [ # required
|
3327
|
-
# {
|
3328
|
-
# name: "ActionName", # required
|
3329
|
-
# action_type_id: { # required
|
3330
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
3331
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
3332
|
-
# provider: "ActionProvider", # required
|
3333
|
-
# version: "Version", # required
|
3334
|
-
# },
|
3335
|
-
# run_order: 1,
|
3336
|
-
# configuration: {
|
3337
|
-
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
3338
|
-
# },
|
3339
|
-
# output_artifacts: [
|
3340
|
-
# {
|
3341
|
-
# name: "ArtifactName", # required
|
3342
|
-
# },
|
3343
|
-
# ],
|
3344
|
-
# input_artifacts: [
|
3345
|
-
# {
|
3346
|
-
# name: "ArtifactName", # required
|
3347
|
-
# },
|
3348
|
-
# ],
|
3349
|
-
# role_arn: "RoleArn",
|
3350
|
-
# region: "AWSRegionName",
|
3351
|
-
# namespace: "ActionNamespace",
|
3352
|
-
# },
|
3353
|
-
# ],
|
3354
|
-
# },
|
3355
|
-
# ],
|
3356
|
-
# version: 1,
|
3357
|
-
# }
|
3358
|
-
#
|
3359
2698
|
# @!attribute [rw] name
|
3360
2699
|
# The name of the pipeline.
|
3361
2700
|
# @return [String]
|
@@ -3650,22 +2989,6 @@ module Aws::CodePipeline
|
|
3650
2989
|
|
3651
2990
|
# Represents the input of a `PollForJobs` action.
|
3652
2991
|
#
|
3653
|
-
# @note When making an API call, you may pass PollForJobsInput
|
3654
|
-
# data as a hash:
|
3655
|
-
#
|
3656
|
-
# {
|
3657
|
-
# action_type_id: { # required
|
3658
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
3659
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
3660
|
-
# provider: "ActionProvider", # required
|
3661
|
-
# version: "Version", # required
|
3662
|
-
# },
|
3663
|
-
# max_batch_size: 1,
|
3664
|
-
# query_param: {
|
3665
|
-
# "ActionConfigurationKey" => "ActionConfigurationQueryableValue",
|
3666
|
-
# },
|
3667
|
-
# }
|
3668
|
-
#
|
3669
2992
|
# @!attribute [rw] action_type_id
|
3670
2993
|
# Represents information about an action type.
|
3671
2994
|
# @return [Types::ActionTypeId]
|
@@ -3708,19 +3031,6 @@ module Aws::CodePipeline
|
|
3708
3031
|
|
3709
3032
|
# Represents the input of a `PollForThirdPartyJobs` action.
|
3710
3033
|
#
|
3711
|
-
# @note When making an API call, you may pass PollForThirdPartyJobsInput
|
3712
|
-
# data as a hash:
|
3713
|
-
#
|
3714
|
-
# {
|
3715
|
-
# action_type_id: { # required
|
3716
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
3717
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
3718
|
-
# provider: "ActionProvider", # required
|
3719
|
-
# version: "Version", # required
|
3720
|
-
# },
|
3721
|
-
# max_batch_size: 1,
|
3722
|
-
# }
|
3723
|
-
#
|
3724
3034
|
# @!attribute [rw] action_type_id
|
3725
3035
|
# Represents information about an action type.
|
3726
3036
|
# @return [Types::ActionTypeId]
|
@@ -3754,20 +3064,6 @@ module Aws::CodePipeline
|
|
3754
3064
|
|
3755
3065
|
# Represents the input of a `PutActionRevision` action.
|
3756
3066
|
#
|
3757
|
-
# @note When making an API call, you may pass PutActionRevisionInput
|
3758
|
-
# data as a hash:
|
3759
|
-
#
|
3760
|
-
# {
|
3761
|
-
# pipeline_name: "PipelineName", # required
|
3762
|
-
# stage_name: "StageName", # required
|
3763
|
-
# action_name: "ActionName", # required
|
3764
|
-
# action_revision: { # required
|
3765
|
-
# revision_id: "Revision", # required
|
3766
|
-
# revision_change_id: "RevisionChangeIdentifier", # required
|
3767
|
-
# created: Time.now, # required
|
3768
|
-
# },
|
3769
|
-
# }
|
3770
|
-
#
|
3771
3067
|
# @!attribute [rw] pipeline_name
|
3772
3068
|
# The name of the pipeline that starts processing the revision to the
|
3773
3069
|
# source.
|
@@ -3819,20 +3115,6 @@ module Aws::CodePipeline
|
|
3819
3115
|
|
3820
3116
|
# Represents the input of a `PutApprovalResult` action.
|
3821
3117
|
#
|
3822
|
-
# @note When making an API call, you may pass PutApprovalResultInput
|
3823
|
-
# data as a hash:
|
3824
|
-
#
|
3825
|
-
# {
|
3826
|
-
# pipeline_name: "PipelineName", # required
|
3827
|
-
# stage_name: "StageName", # required
|
3828
|
-
# action_name: "ActionName", # required
|
3829
|
-
# result: { # required
|
3830
|
-
# summary: "ApprovalSummary", # required
|
3831
|
-
# status: "Approved", # required, accepts Approved, Rejected
|
3832
|
-
# },
|
3833
|
-
# token: "ApprovalToken", # required
|
3834
|
-
# }
|
3835
|
-
#
|
3836
3118
|
# @!attribute [rw] pipeline_name
|
3837
3119
|
# The name of the pipeline that contains the action.
|
3838
3120
|
# @return [String]
|
@@ -3884,18 +3166,6 @@ module Aws::CodePipeline
|
|
3884
3166
|
|
3885
3167
|
# Represents the input of a `PutJobFailureResult` action.
|
3886
3168
|
#
|
3887
|
-
# @note When making an API call, you may pass PutJobFailureResultInput
|
3888
|
-
# data as a hash:
|
3889
|
-
#
|
3890
|
-
# {
|
3891
|
-
# job_id: "JobId", # required
|
3892
|
-
# failure_details: { # required
|
3893
|
-
# type: "JobFailed", # required, accepts JobFailed, ConfigurationError, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable
|
3894
|
-
# message: "Message", # required
|
3895
|
-
# external_execution_id: "ExecutionId",
|
3896
|
-
# },
|
3897
|
-
# }
|
3898
|
-
#
|
3899
3169
|
# @!attribute [rw] job_id
|
3900
3170
|
# The unique system-generated ID of the job that failed. This is the
|
3901
3171
|
# same ID returned from `PollForJobs`.
|
@@ -3916,28 +3186,6 @@ module Aws::CodePipeline
|
|
3916
3186
|
|
3917
3187
|
# Represents the input of a `PutJobSuccessResult` action.
|
3918
3188
|
#
|
3919
|
-
# @note When making an API call, you may pass PutJobSuccessResultInput
|
3920
|
-
# data as a hash:
|
3921
|
-
#
|
3922
|
-
# {
|
3923
|
-
# job_id: "JobId", # required
|
3924
|
-
# current_revision: {
|
3925
|
-
# revision: "Revision", # required
|
3926
|
-
# change_identifier: "RevisionChangeIdentifier", # required
|
3927
|
-
# created: Time.now,
|
3928
|
-
# revision_summary: "RevisionSummary",
|
3929
|
-
# },
|
3930
|
-
# continuation_token: "ContinuationToken",
|
3931
|
-
# execution_details: {
|
3932
|
-
# summary: "ExecutionSummary",
|
3933
|
-
# external_execution_id: "ExecutionId",
|
3934
|
-
# percent_complete: 1,
|
3935
|
-
# },
|
3936
|
-
# output_variables: {
|
3937
|
-
# "OutputVariablesKey" => "OutputVariablesValue",
|
3938
|
-
# },
|
3939
|
-
# }
|
3940
|
-
#
|
3941
3189
|
# @!attribute [rw] job_id
|
3942
3190
|
# The unique system-generated ID of the job that succeeded. This is
|
3943
3191
|
# the same ID returned from `PollForJobs`.
|
@@ -3983,19 +3231,6 @@ module Aws::CodePipeline
|
|
3983
3231
|
|
3984
3232
|
# Represents the input of a `PutThirdPartyJobFailureResult` action.
|
3985
3233
|
#
|
3986
|
-
# @note When making an API call, you may pass PutThirdPartyJobFailureResultInput
|
3987
|
-
# data as a hash:
|
3988
|
-
#
|
3989
|
-
# {
|
3990
|
-
# job_id: "ThirdPartyJobId", # required
|
3991
|
-
# client_token: "ClientToken", # required
|
3992
|
-
# failure_details: { # required
|
3993
|
-
# type: "JobFailed", # required, accepts JobFailed, ConfigurationError, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable
|
3994
|
-
# message: "Message", # required
|
3995
|
-
# external_execution_id: "ExecutionId",
|
3996
|
-
# },
|
3997
|
-
# }
|
3998
|
-
#
|
3999
3234
|
# @!attribute [rw] job_id
|
4000
3235
|
# The ID of the job that failed. This is the same ID returned from
|
4001
3236
|
# `PollForThirdPartyJobs`.
|
@@ -4023,26 +3258,6 @@ module Aws::CodePipeline
|
|
4023
3258
|
|
4024
3259
|
# Represents the input of a `PutThirdPartyJobSuccessResult` action.
|
4025
3260
|
#
|
4026
|
-
# @note When making an API call, you may pass PutThirdPartyJobSuccessResultInput
|
4027
|
-
# data as a hash:
|
4028
|
-
#
|
4029
|
-
# {
|
4030
|
-
# job_id: "ThirdPartyJobId", # required
|
4031
|
-
# client_token: "ClientToken", # required
|
4032
|
-
# current_revision: {
|
4033
|
-
# revision: "Revision", # required
|
4034
|
-
# change_identifier: "RevisionChangeIdentifier", # required
|
4035
|
-
# created: Time.now,
|
4036
|
-
# revision_summary: "RevisionSummary",
|
4037
|
-
# },
|
4038
|
-
# continuation_token: "ContinuationToken",
|
4039
|
-
# execution_details: {
|
4040
|
-
# summary: "ExecutionSummary",
|
4041
|
-
# external_execution_id: "ExecutionId",
|
4042
|
-
# percent_complete: 1,
|
4043
|
-
# },
|
4044
|
-
# }
|
4045
|
-
#
|
4046
3261
|
# @!attribute [rw] job_id
|
4047
3262
|
# The ID of the job that successfully completed. This is the same ID
|
4048
3263
|
# returned from `PollForThirdPartyJobs`.
|
@@ -4084,34 +3299,6 @@ module Aws::CodePipeline
|
|
4084
3299
|
include Aws::Structure
|
4085
3300
|
end
|
4086
3301
|
|
4087
|
-
# @note When making an API call, you may pass PutWebhookInput
|
4088
|
-
# data as a hash:
|
4089
|
-
#
|
4090
|
-
# {
|
4091
|
-
# webhook: { # required
|
4092
|
-
# name: "WebhookName", # required
|
4093
|
-
# target_pipeline: "PipelineName", # required
|
4094
|
-
# target_action: "ActionName", # required
|
4095
|
-
# filters: [ # required
|
4096
|
-
# {
|
4097
|
-
# json_path: "JsonPath", # required
|
4098
|
-
# match_equals: "MatchEquals",
|
4099
|
-
# },
|
4100
|
-
# ],
|
4101
|
-
# authentication: "GITHUB_HMAC", # required, accepts GITHUB_HMAC, IP, UNAUTHENTICATED
|
4102
|
-
# authentication_configuration: { # required
|
4103
|
-
# allowed_ip_range: "WebhookAuthConfigurationAllowedIPRange",
|
4104
|
-
# secret_token: "WebhookAuthConfigurationSecretToken",
|
4105
|
-
# },
|
4106
|
-
# },
|
4107
|
-
# tags: [
|
4108
|
-
# {
|
4109
|
-
# key: "TagKey", # required
|
4110
|
-
# value: "TagValue", # required
|
4111
|
-
# },
|
4112
|
-
# ],
|
4113
|
-
# }
|
4114
|
-
#
|
4115
3302
|
# @!attribute [rw] webhook
|
4116
3303
|
# The detail provided in an input file to create the webhook, such as
|
4117
3304
|
# the webhook name, the pipeline name, and the action name. Give the
|
@@ -4146,13 +3333,6 @@ module Aws::CodePipeline
|
|
4146
3333
|
include Aws::Structure
|
4147
3334
|
end
|
4148
3335
|
|
4149
|
-
# @note When making an API call, you may pass RegisterWebhookWithThirdPartyInput
|
4150
|
-
# data as a hash:
|
4151
|
-
#
|
4152
|
-
# {
|
4153
|
-
# webhook_name: "WebhookName",
|
4154
|
-
# }
|
4155
|
-
#
|
4156
3336
|
# @!attribute [rw] webhook_name
|
4157
3337
|
# The name of an existing webhook created with PutWebhook to register
|
4158
3338
|
# with a supported third party.
|
@@ -4191,16 +3371,6 @@ module Aws::CodePipeline
|
|
4191
3371
|
|
4192
3372
|
# Represents the input of a `RetryStageExecution` action.
|
4193
3373
|
#
|
4194
|
-
# @note When making an API call, you may pass RetryStageExecutionInput
|
4195
|
-
# data as a hash:
|
4196
|
-
#
|
4197
|
-
# {
|
4198
|
-
# pipeline_name: "PipelineName", # required
|
4199
|
-
# stage_name: "StageName", # required
|
4200
|
-
# pipeline_execution_id: "PipelineExecutionId", # required
|
4201
|
-
# retry_mode: "FAILED_ACTIONS", # required, accepts FAILED_ACTIONS
|
4202
|
-
# }
|
4203
|
-
#
|
4204
3374
|
# @!attribute [rw] pipeline_name
|
4205
3375
|
# The name of the pipeline that contains the failed stage.
|
4206
3376
|
# @return [String]
|
@@ -4338,47 +3508,6 @@ module Aws::CodePipeline
|
|
4338
3508
|
|
4339
3509
|
# Represents information about a stage and its definition.
|
4340
3510
|
#
|
4341
|
-
# @note When making an API call, you may pass StageDeclaration
|
4342
|
-
# data as a hash:
|
4343
|
-
#
|
4344
|
-
# {
|
4345
|
-
# name: "StageName", # required
|
4346
|
-
# blockers: [
|
4347
|
-
# {
|
4348
|
-
# name: "BlockerName", # required
|
4349
|
-
# type: "Schedule", # required, accepts Schedule
|
4350
|
-
# },
|
4351
|
-
# ],
|
4352
|
-
# actions: [ # required
|
4353
|
-
# {
|
4354
|
-
# name: "ActionName", # required
|
4355
|
-
# action_type_id: { # required
|
4356
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
4357
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
4358
|
-
# provider: "ActionProvider", # required
|
4359
|
-
# version: "Version", # required
|
4360
|
-
# },
|
4361
|
-
# run_order: 1,
|
4362
|
-
# configuration: {
|
4363
|
-
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
4364
|
-
# },
|
4365
|
-
# output_artifacts: [
|
4366
|
-
# {
|
4367
|
-
# name: "ArtifactName", # required
|
4368
|
-
# },
|
4369
|
-
# ],
|
4370
|
-
# input_artifacts: [
|
4371
|
-
# {
|
4372
|
-
# name: "ArtifactName", # required
|
4373
|
-
# },
|
4374
|
-
# ],
|
4375
|
-
# role_arn: "RoleArn",
|
4376
|
-
# region: "AWSRegionName",
|
4377
|
-
# namespace: "ActionNamespace",
|
4378
|
-
# },
|
4379
|
-
# ],
|
4380
|
-
# }
|
4381
|
-
#
|
4382
3511
|
# @!attribute [rw] name
|
4383
3512
|
# The name of the stage.
|
4384
3513
|
# @return [String]
|
@@ -4478,14 +3607,6 @@ module Aws::CodePipeline
|
|
4478
3607
|
|
4479
3608
|
# Represents the input of a `StartPipelineExecution` action.
|
4480
3609
|
#
|
4481
|
-
# @note When making an API call, you may pass StartPipelineExecutionInput
|
4482
|
-
# data as a hash:
|
4483
|
-
#
|
4484
|
-
# {
|
4485
|
-
# name: "PipelineName", # required
|
4486
|
-
# client_request_token: "ClientRequestToken",
|
4487
|
-
# }
|
4488
|
-
#
|
4489
3610
|
# @!attribute [rw] name
|
4490
3611
|
# The name of the pipeline to start.
|
4491
3612
|
# @return [String]
|
@@ -4536,16 +3657,6 @@ module Aws::CodePipeline
|
|
4536
3657
|
include Aws::Structure
|
4537
3658
|
end
|
4538
3659
|
|
4539
|
-
# @note When making an API call, you may pass StopPipelineExecutionInput
|
4540
|
-
# data as a hash:
|
4541
|
-
#
|
4542
|
-
# {
|
4543
|
-
# pipeline_name: "PipelineName", # required
|
4544
|
-
# pipeline_execution_id: "PipelineExecutionId", # required
|
4545
|
-
# abandon: false,
|
4546
|
-
# reason: "StopPipelineExecutionReason",
|
4547
|
-
# }
|
4548
|
-
#
|
4549
3660
|
# @!attribute [rw] pipeline_name
|
4550
3661
|
# The name of the pipeline to stop.
|
4551
3662
|
# @return [String]
|
@@ -4596,14 +3707,6 @@ module Aws::CodePipeline
|
|
4596
3707
|
|
4597
3708
|
# A tag is a key-value pair that is used to manage the resource.
|
4598
3709
|
#
|
4599
|
-
# @note When making an API call, you may pass Tag
|
4600
|
-
# data as a hash:
|
4601
|
-
#
|
4602
|
-
# {
|
4603
|
-
# key: "TagKey", # required
|
4604
|
-
# value: "TagValue", # required
|
4605
|
-
# }
|
4606
|
-
#
|
4607
3710
|
# @!attribute [rw] key
|
4608
3711
|
# The tag's key.
|
4609
3712
|
# @return [String]
|
@@ -4621,19 +3724,6 @@ module Aws::CodePipeline
|
|
4621
3724
|
include Aws::Structure
|
4622
3725
|
end
|
4623
3726
|
|
4624
|
-
# @note When making an API call, you may pass TagResourceInput
|
4625
|
-
# data as a hash:
|
4626
|
-
#
|
4627
|
-
# {
|
4628
|
-
# resource_arn: "ResourceArn", # required
|
4629
|
-
# tags: [ # required
|
4630
|
-
# {
|
4631
|
-
# key: "TagKey", # required
|
4632
|
-
# value: "TagValue", # required
|
4633
|
-
# },
|
4634
|
-
# ],
|
4635
|
-
# }
|
4636
|
-
#
|
4637
3727
|
# @!attribute [rw] resource_arn
|
4638
3728
|
# The Amazon Resource Name (ARN) of the resource you want to add tags
|
4639
3729
|
# to.
|
@@ -4817,14 +3907,6 @@ module Aws::CodePipeline
|
|
4817
3907
|
include Aws::Structure
|
4818
3908
|
end
|
4819
3909
|
|
4820
|
-
# @note When making an API call, you may pass UntagResourceInput
|
4821
|
-
# data as a hash:
|
4822
|
-
#
|
4823
|
-
# {
|
4824
|
-
# resource_arn: "ResourceArn", # required
|
4825
|
-
# tag_keys: ["TagKey"], # required
|
4826
|
-
# }
|
4827
|
-
#
|
4828
3910
|
# @!attribute [rw] resource_arn
|
4829
3911
|
# The Amazon Resource Name (ARN) of the resource to remove tags from.
|
4830
3912
|
# @return [String]
|
@@ -4846,62 +3928,6 @@ module Aws::CodePipeline
|
|
4846
3928
|
#
|
4847
3929
|
class UntagResourceOutput < Aws::EmptyStructure; end
|
4848
3930
|
|
4849
|
-
# @note When making an API call, you may pass UpdateActionTypeInput
|
4850
|
-
# data as a hash:
|
4851
|
-
#
|
4852
|
-
# {
|
4853
|
-
# action_type: { # required
|
4854
|
-
# description: "ActionTypeDescription",
|
4855
|
-
# executor: { # required
|
4856
|
-
# configuration: { # required
|
4857
|
-
# lambda_executor_configuration: {
|
4858
|
-
# lambda_function_arn: "LambdaFunctionArn", # required
|
4859
|
-
# },
|
4860
|
-
# job_worker_executor_configuration: {
|
4861
|
-
# polling_accounts: ["AccountId"],
|
4862
|
-
# polling_service_principals: ["ServicePrincipal"],
|
4863
|
-
# },
|
4864
|
-
# },
|
4865
|
-
# type: "JobWorker", # required, accepts JobWorker, Lambda
|
4866
|
-
# policy_statements_template: "PolicyStatementsTemplate",
|
4867
|
-
# job_timeout: 1,
|
4868
|
-
# },
|
4869
|
-
# id: { # required
|
4870
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
4871
|
-
# owner: "ActionTypeOwner", # required
|
4872
|
-
# provider: "ActionProvider", # required
|
4873
|
-
# version: "Version", # required
|
4874
|
-
# },
|
4875
|
-
# input_artifact_details: { # required
|
4876
|
-
# minimum_count: 1, # required
|
4877
|
-
# maximum_count: 1, # required
|
4878
|
-
# },
|
4879
|
-
# output_artifact_details: { # required
|
4880
|
-
# minimum_count: 1, # required
|
4881
|
-
# maximum_count: 1, # required
|
4882
|
-
# },
|
4883
|
-
# permissions: {
|
4884
|
-
# allowed_accounts: ["AllowedAccount"], # required
|
4885
|
-
# },
|
4886
|
-
# properties: [
|
4887
|
-
# {
|
4888
|
-
# name: "ActionConfigurationKey", # required
|
4889
|
-
# optional: false, # required
|
4890
|
-
# key: false, # required
|
4891
|
-
# no_echo: false, # required
|
4892
|
-
# queryable: false,
|
4893
|
-
# description: "PropertyDescription",
|
4894
|
-
# },
|
4895
|
-
# ],
|
4896
|
-
# urls: {
|
4897
|
-
# configuration_url: "Url",
|
4898
|
-
# entity_url_template: "UrlTemplate",
|
4899
|
-
# execution_url_template: "UrlTemplate",
|
4900
|
-
# revision_url_template: "UrlTemplate",
|
4901
|
-
# },
|
4902
|
-
# },
|
4903
|
-
# }
|
4904
|
-
#
|
4905
3931
|
# @!attribute [rw] action_type
|
4906
3932
|
# The action type definition for the action type to be updated.
|
4907
3933
|
# @return [Types::ActionTypeDeclaration]
|
@@ -4916,74 +3942,6 @@ module Aws::CodePipeline
|
|
4916
3942
|
|
4917
3943
|
# Represents the input of an `UpdatePipeline` action.
|
4918
3944
|
#
|
4919
|
-
# @note When making an API call, you may pass UpdatePipelineInput
|
4920
|
-
# data as a hash:
|
4921
|
-
#
|
4922
|
-
# {
|
4923
|
-
# pipeline: { # required
|
4924
|
-
# name: "PipelineName", # required
|
4925
|
-
# role_arn: "RoleArn", # required
|
4926
|
-
# artifact_store: {
|
4927
|
-
# type: "S3", # required, accepts S3
|
4928
|
-
# location: "ArtifactStoreLocation", # required
|
4929
|
-
# encryption_key: {
|
4930
|
-
# id: "EncryptionKeyId", # required
|
4931
|
-
# type: "KMS", # required, accepts KMS
|
4932
|
-
# },
|
4933
|
-
# },
|
4934
|
-
# artifact_stores: {
|
4935
|
-
# "AWSRegionName" => {
|
4936
|
-
# type: "S3", # required, accepts S3
|
4937
|
-
# location: "ArtifactStoreLocation", # required
|
4938
|
-
# encryption_key: {
|
4939
|
-
# id: "EncryptionKeyId", # required
|
4940
|
-
# type: "KMS", # required, accepts KMS
|
4941
|
-
# },
|
4942
|
-
# },
|
4943
|
-
# },
|
4944
|
-
# stages: [ # required
|
4945
|
-
# {
|
4946
|
-
# name: "StageName", # required
|
4947
|
-
# blockers: [
|
4948
|
-
# {
|
4949
|
-
# name: "BlockerName", # required
|
4950
|
-
# type: "Schedule", # required, accepts Schedule
|
4951
|
-
# },
|
4952
|
-
# ],
|
4953
|
-
# actions: [ # required
|
4954
|
-
# {
|
4955
|
-
# name: "ActionName", # required
|
4956
|
-
# action_type_id: { # required
|
4957
|
-
# category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
|
4958
|
-
# owner: "AWS", # required, accepts AWS, ThirdParty, Custom
|
4959
|
-
# provider: "ActionProvider", # required
|
4960
|
-
# version: "Version", # required
|
4961
|
-
# },
|
4962
|
-
# run_order: 1,
|
4963
|
-
# configuration: {
|
4964
|
-
# "ActionConfigurationKey" => "ActionConfigurationValue",
|
4965
|
-
# },
|
4966
|
-
# output_artifacts: [
|
4967
|
-
# {
|
4968
|
-
# name: "ArtifactName", # required
|
4969
|
-
# },
|
4970
|
-
# ],
|
4971
|
-
# input_artifacts: [
|
4972
|
-
# {
|
4973
|
-
# name: "ArtifactName", # required
|
4974
|
-
# },
|
4975
|
-
# ],
|
4976
|
-
# role_arn: "RoleArn",
|
4977
|
-
# region: "AWSRegionName",
|
4978
|
-
# namespace: "ActionNamespace",
|
4979
|
-
# },
|
4980
|
-
# ],
|
4981
|
-
# },
|
4982
|
-
# ],
|
4983
|
-
# version: 1,
|
4984
|
-
# },
|
4985
|
-
# }
|
4986
|
-
#
|
4987
3945
|
# @!attribute [rw] pipeline
|
4988
3946
|
# The name of the pipeline to be updated.
|
4989
3947
|
# @return [Types::PipelineDeclaration]
|
@@ -5018,14 +3976,6 @@ module Aws::CodePipeline
|
|
5018
3976
|
|
5019
3977
|
# The authentication applied to incoming webhook trigger requests.
|
5020
3978
|
#
|
5021
|
-
# @note When making an API call, you may pass WebhookAuthConfiguration
|
5022
|
-
# data as a hash:
|
5023
|
-
#
|
5024
|
-
# {
|
5025
|
-
# allowed_ip_range: "WebhookAuthConfigurationAllowedIPRange",
|
5026
|
-
# secret_token: "WebhookAuthConfigurationSecretToken",
|
5027
|
-
# }
|
5028
|
-
#
|
5029
3979
|
# @!attribute [rw] allowed_ip_range
|
5030
3980
|
# The property used to configure acceptance of webhooks in an IP
|
5031
3981
|
# address range. For IP, only the `AllowedIPRange` property must be
|
@@ -5048,26 +3998,6 @@ module Aws::CodePipeline
|
|
5048
3998
|
|
5049
3999
|
# Represents information about a webhook and its definition.
|
5050
4000
|
#
|
5051
|
-
# @note When making an API call, you may pass WebhookDefinition
|
5052
|
-
# data as a hash:
|
5053
|
-
#
|
5054
|
-
# {
|
5055
|
-
# name: "WebhookName", # required
|
5056
|
-
# target_pipeline: "PipelineName", # required
|
5057
|
-
# target_action: "ActionName", # required
|
5058
|
-
# filters: [ # required
|
5059
|
-
# {
|
5060
|
-
# json_path: "JsonPath", # required
|
5061
|
-
# match_equals: "MatchEquals",
|
5062
|
-
# },
|
5063
|
-
# ],
|
5064
|
-
# authentication: "GITHUB_HMAC", # required, accepts GITHUB_HMAC, IP, UNAUTHENTICATED
|
5065
|
-
# authentication_configuration: { # required
|
5066
|
-
# allowed_ip_range: "WebhookAuthConfigurationAllowedIPRange",
|
5067
|
-
# secret_token: "WebhookAuthConfigurationSecretToken",
|
5068
|
-
# },
|
5069
|
-
# }
|
5070
|
-
#
|
5071
4001
|
# @!attribute [rw] name
|
5072
4002
|
# The name of the webhook.
|
5073
4003
|
# @return [String]
|
@@ -5132,14 +4062,6 @@ module Aws::CodePipeline
|
|
5132
4062
|
# The event criteria that specify when a webhook notification is sent to
|
5133
4063
|
# your URL.
|
5134
4064
|
#
|
5135
|
-
# @note When making an API call, you may pass WebhookFilterRule
|
5136
|
-
# data as a hash:
|
5137
|
-
#
|
5138
|
-
# {
|
5139
|
-
# json_path: "JsonPath", # required
|
5140
|
-
# match_equals: "MatchEquals",
|
5141
|
-
# }
|
5142
|
-
#
|
5143
4065
|
# @!attribute [rw] json_path
|
5144
4066
|
# A JsonPath expression that is applied to the body/payload of the
|
5145
4067
|
# webhook. The value selected by the JsonPath expression must match
|