aws-sdk-codepipeline 1.28.0 → 1.33.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 +5 -5
- data/lib/aws-sdk-codepipeline.rb +9 -4
- data/lib/aws-sdk-codepipeline/client.rb +84 -14
- data/lib/aws-sdk-codepipeline/client_api.rb +56 -0
- data/lib/aws-sdk-codepipeline/customizations.rb +1 -0
- data/lib/aws-sdk-codepipeline/errors.rb +322 -1
- data/lib/aws-sdk-codepipeline/resource.rb +3 -0
- data/lib/aws-sdk-codepipeline/types.rb +298 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CodePipeline
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::CodePipeline
|
|
31
33
|
:access_key_id,
|
32
34
|
:secret_access_key,
|
33
35
|
:session_token)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -61,6 +64,7 @@ module Aws::CodePipeline
|
|
61
64
|
class AcknowledgeJobInput < Struct.new(
|
62
65
|
:job_id,
|
63
66
|
:nonce)
|
67
|
+
SENSITIVE = []
|
64
68
|
include Aws::Structure
|
65
69
|
end
|
66
70
|
|
@@ -74,6 +78,7 @@ module Aws::CodePipeline
|
|
74
78
|
#
|
75
79
|
class AcknowledgeJobOutput < Struct.new(
|
76
80
|
:status)
|
81
|
+
SENSITIVE = []
|
77
82
|
include Aws::Structure
|
78
83
|
end
|
79
84
|
|
@@ -110,6 +115,7 @@ module Aws::CodePipeline
|
|
110
115
|
:job_id,
|
111
116
|
:nonce,
|
112
117
|
:client_token)
|
118
|
+
SENSITIVE = []
|
113
119
|
include Aws::Structure
|
114
120
|
end
|
115
121
|
|
@@ -123,6 +129,7 @@ module Aws::CodePipeline
|
|
123
129
|
#
|
124
130
|
class AcknowledgeThirdPartyJobOutput < Struct.new(
|
125
131
|
:status)
|
132
|
+
SENSITIVE = []
|
126
133
|
include Aws::Structure
|
127
134
|
end
|
128
135
|
|
@@ -136,6 +143,7 @@ module Aws::CodePipeline
|
|
136
143
|
#
|
137
144
|
class ActionConfiguration < Struct.new(
|
138
145
|
:configuration)
|
146
|
+
SENSITIVE = []
|
139
147
|
include Aws::Structure
|
140
148
|
end
|
141
149
|
|
@@ -209,6 +217,7 @@ module Aws::CodePipeline
|
|
209
217
|
:queryable,
|
210
218
|
:description,
|
211
219
|
:type)
|
220
|
+
SENSITIVE = []
|
212
221
|
include Aws::Structure
|
213
222
|
end
|
214
223
|
|
@@ -229,6 +238,7 @@ module Aws::CodePipeline
|
|
229
238
|
class ActionContext < Struct.new(
|
230
239
|
:name,
|
231
240
|
:action_execution_id)
|
241
|
+
SENSITIVE = []
|
232
242
|
include Aws::Structure
|
233
243
|
end
|
234
244
|
|
@@ -336,6 +346,7 @@ module Aws::CodePipeline
|
|
336
346
|
:role_arn,
|
337
347
|
:region,
|
338
348
|
:namespace)
|
349
|
+
SENSITIVE = []
|
339
350
|
include Aws::Structure
|
340
351
|
end
|
341
352
|
|
@@ -394,6 +405,7 @@ module Aws::CodePipeline
|
|
394
405
|
:external_execution_url,
|
395
406
|
:percent_complete,
|
396
407
|
:error_details)
|
408
|
+
SENSITIVE = []
|
397
409
|
include Aws::Structure
|
398
410
|
end
|
399
411
|
|
@@ -456,6 +468,7 @@ module Aws::CodePipeline
|
|
456
468
|
:status,
|
457
469
|
:input,
|
458
470
|
:output)
|
471
|
+
SENSITIVE = []
|
459
472
|
include Aws::Structure
|
460
473
|
end
|
461
474
|
|
@@ -476,6 +489,7 @@ module Aws::CodePipeline
|
|
476
489
|
#
|
477
490
|
class ActionExecutionFilter < Struct.new(
|
478
491
|
:pipeline_execution_id)
|
492
|
+
SENSITIVE = []
|
479
493
|
include Aws::Structure
|
480
494
|
end
|
481
495
|
|
@@ -523,6 +537,7 @@ module Aws::CodePipeline
|
|
523
537
|
:region,
|
524
538
|
:input_artifacts,
|
525
539
|
:namespace)
|
540
|
+
SENSITIVE = []
|
526
541
|
include Aws::Structure
|
527
542
|
end
|
528
543
|
|
@@ -550,6 +565,7 @@ module Aws::CodePipeline
|
|
550
565
|
:output_artifacts,
|
551
566
|
:execution_result,
|
552
567
|
:output_variables)
|
568
|
+
SENSITIVE = []
|
553
569
|
include Aws::Structure
|
554
570
|
end
|
555
571
|
|
@@ -575,9 +591,16 @@ module Aws::CodePipeline
|
|
575
591
|
:external_execution_id,
|
576
592
|
:external_execution_summary,
|
577
593
|
:external_execution_url)
|
594
|
+
SENSITIVE = []
|
578
595
|
include Aws::Structure
|
579
596
|
end
|
580
597
|
|
598
|
+
# The specified action cannot be found.
|
599
|
+
#
|
600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionNotFoundException AWS API Documentation
|
601
|
+
#
|
602
|
+
class ActionNotFoundException < Aws::EmptyStructure; end
|
603
|
+
|
581
604
|
# Represents information about the version (or revision) of an action.
|
582
605
|
#
|
583
606
|
# @note When making an API call, you may pass ActionRevision
|
@@ -610,6 +633,7 @@ module Aws::CodePipeline
|
|
610
633
|
:revision_id,
|
611
634
|
:revision_change_id,
|
612
635
|
:created)
|
636
|
+
SENSITIVE = []
|
613
637
|
include Aws::Structure
|
614
638
|
end
|
615
639
|
|
@@ -645,6 +669,7 @@ module Aws::CodePipeline
|
|
645
669
|
:latest_execution,
|
646
670
|
:entity_url,
|
647
671
|
:revision_url)
|
672
|
+
SENSITIVE = []
|
648
673
|
include Aws::Structure
|
649
674
|
end
|
650
675
|
|
@@ -680,6 +705,7 @@ module Aws::CodePipeline
|
|
680
705
|
:action_configuration_properties,
|
681
706
|
:input_artifact_details,
|
682
707
|
:output_artifact_details)
|
708
|
+
SENSITIVE = []
|
683
709
|
include Aws::Structure
|
684
710
|
end
|
685
711
|
|
@@ -729,9 +755,16 @@ module Aws::CodePipeline
|
|
729
755
|
:owner,
|
730
756
|
:provider,
|
731
757
|
:version)
|
758
|
+
SENSITIVE = []
|
732
759
|
include Aws::Structure
|
733
760
|
end
|
734
761
|
|
762
|
+
# The specified action type cannot be found.
|
763
|
+
#
|
764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypeNotFoundException AWS API Documentation
|
765
|
+
#
|
766
|
+
class ActionTypeNotFoundException < Aws::EmptyStructure; end
|
767
|
+
|
735
768
|
# Returns information about the settings for an action type.
|
736
769
|
#
|
737
770
|
# @note When making an API call, you may pass ActionTypeSettings
|
@@ -778,9 +811,16 @@ module Aws::CodePipeline
|
|
778
811
|
:entity_url_template,
|
779
812
|
:execution_url_template,
|
780
813
|
:revision_url_template)
|
814
|
+
SENSITIVE = []
|
781
815
|
include Aws::Structure
|
782
816
|
end
|
783
817
|
|
818
|
+
# The approval action has already been approved or rejected.
|
819
|
+
#
|
820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ApprovalAlreadyCompletedException AWS API Documentation
|
821
|
+
#
|
822
|
+
class ApprovalAlreadyCompletedException < Aws::EmptyStructure; end
|
823
|
+
|
784
824
|
# Represents information about the result of an approval request.
|
785
825
|
#
|
786
826
|
# @note When making an API call, you may pass ApprovalResult
|
@@ -805,6 +845,7 @@ module Aws::CodePipeline
|
|
805
845
|
class ApprovalResult < Struct.new(
|
806
846
|
:summary,
|
807
847
|
:status)
|
848
|
+
SENSITIVE = []
|
808
849
|
include Aws::Structure
|
809
850
|
end
|
810
851
|
|
@@ -830,6 +871,7 @@ module Aws::CodePipeline
|
|
830
871
|
:name,
|
831
872
|
:revision,
|
832
873
|
:location)
|
874
|
+
SENSITIVE = []
|
833
875
|
include Aws::Structure
|
834
876
|
end
|
835
877
|
|
@@ -849,6 +891,7 @@ module Aws::CodePipeline
|
|
849
891
|
class ArtifactDetail < Struct.new(
|
850
892
|
:name,
|
851
893
|
:s3location)
|
894
|
+
SENSITIVE = []
|
852
895
|
include Aws::Structure
|
853
896
|
end
|
854
897
|
|
@@ -875,6 +918,7 @@ module Aws::CodePipeline
|
|
875
918
|
class ArtifactDetails < Struct.new(
|
876
919
|
:minimum_count,
|
877
920
|
:maximum_count)
|
921
|
+
SENSITIVE = []
|
878
922
|
include Aws::Structure
|
879
923
|
end
|
880
924
|
|
@@ -893,6 +937,7 @@ module Aws::CodePipeline
|
|
893
937
|
class ArtifactLocation < Struct.new(
|
894
938
|
:type,
|
895
939
|
:s3_location)
|
940
|
+
SENSITIVE = []
|
896
941
|
include Aws::Structure
|
897
942
|
end
|
898
943
|
|
@@ -940,6 +985,7 @@ module Aws::CodePipeline
|
|
940
985
|
:revision_summary,
|
941
986
|
:created,
|
942
987
|
:revision_url)
|
988
|
+
SENSITIVE = []
|
943
989
|
include Aws::Structure
|
944
990
|
end
|
945
991
|
|
@@ -987,6 +1033,7 @@ module Aws::CodePipeline
|
|
987
1033
|
:type,
|
988
1034
|
:location,
|
989
1035
|
:encryption_key)
|
1036
|
+
SENSITIVE = []
|
990
1037
|
include Aws::Structure
|
991
1038
|
end
|
992
1039
|
|
@@ -1013,6 +1060,7 @@ module Aws::CodePipeline
|
|
1013
1060
|
class BlockerDeclaration < Struct.new(
|
1014
1061
|
:name,
|
1015
1062
|
:type)
|
1063
|
+
SENSITIVE = []
|
1016
1064
|
include Aws::Structure
|
1017
1065
|
end
|
1018
1066
|
|
@@ -1025,6 +1073,7 @@ module Aws::CodePipeline
|
|
1025
1073
|
#
|
1026
1074
|
class ConcurrentModificationException < Struct.new(
|
1027
1075
|
:message)
|
1076
|
+
SENSITIVE = []
|
1028
1077
|
include Aws::Structure
|
1029
1078
|
end
|
1030
1079
|
|
@@ -1135,6 +1184,7 @@ module Aws::CodePipeline
|
|
1135
1184
|
:input_artifact_details,
|
1136
1185
|
:output_artifact_details,
|
1137
1186
|
:tags)
|
1187
|
+
SENSITIVE = []
|
1138
1188
|
include Aws::Structure
|
1139
1189
|
end
|
1140
1190
|
|
@@ -1153,6 +1203,7 @@ module Aws::CodePipeline
|
|
1153
1203
|
class CreateCustomActionTypeOutput < Struct.new(
|
1154
1204
|
:action_type,
|
1155
1205
|
:tags)
|
1206
|
+
SENSITIVE = []
|
1156
1207
|
include Aws::Structure
|
1157
1208
|
end
|
1158
1209
|
|
@@ -1246,6 +1297,7 @@ module Aws::CodePipeline
|
|
1246
1297
|
class CreatePipelineInput < Struct.new(
|
1247
1298
|
:pipeline,
|
1248
1299
|
:tags)
|
1300
|
+
SENSITIVE = []
|
1249
1301
|
include Aws::Structure
|
1250
1302
|
end
|
1251
1303
|
|
@@ -1265,6 +1317,7 @@ module Aws::CodePipeline
|
|
1265
1317
|
class CreatePipelineOutput < Struct.new(
|
1266
1318
|
:pipeline,
|
1267
1319
|
:tags)
|
1320
|
+
SENSITIVE = []
|
1268
1321
|
include Aws::Structure
|
1269
1322
|
end
|
1270
1323
|
|
@@ -1304,6 +1357,7 @@ module Aws::CodePipeline
|
|
1304
1357
|
:change_identifier,
|
1305
1358
|
:created,
|
1306
1359
|
:revision_summary)
|
1360
|
+
SENSITIVE = []
|
1307
1361
|
include Aws::Structure
|
1308
1362
|
end
|
1309
1363
|
|
@@ -1339,6 +1393,7 @@ module Aws::CodePipeline
|
|
1339
1393
|
:category,
|
1340
1394
|
:provider,
|
1341
1395
|
:version)
|
1396
|
+
SENSITIVE = []
|
1342
1397
|
include Aws::Structure
|
1343
1398
|
end
|
1344
1399
|
|
@@ -1359,6 +1414,7 @@ module Aws::CodePipeline
|
|
1359
1414
|
#
|
1360
1415
|
class DeletePipelineInput < Struct.new(
|
1361
1416
|
:name)
|
1417
|
+
SENSITIVE = []
|
1362
1418
|
include Aws::Structure
|
1363
1419
|
end
|
1364
1420
|
|
@@ -1377,6 +1433,7 @@ module Aws::CodePipeline
|
|
1377
1433
|
#
|
1378
1434
|
class DeleteWebhookInput < Struct.new(
|
1379
1435
|
:name)
|
1436
|
+
SENSITIVE = []
|
1380
1437
|
include Aws::Structure
|
1381
1438
|
end
|
1382
1439
|
|
@@ -1399,6 +1456,7 @@ module Aws::CodePipeline
|
|
1399
1456
|
#
|
1400
1457
|
class DeregisterWebhookWithThirdPartyInput < Struct.new(
|
1401
1458
|
:webhook_name)
|
1459
|
+
SENSITIVE = []
|
1402
1460
|
include Aws::Structure
|
1403
1461
|
end
|
1404
1462
|
|
@@ -1448,6 +1506,7 @@ module Aws::CodePipeline
|
|
1448
1506
|
:stage_name,
|
1449
1507
|
:transition_type,
|
1450
1508
|
:reason)
|
1509
|
+
SENSITIVE = []
|
1451
1510
|
include Aws::Structure
|
1452
1511
|
end
|
1453
1512
|
|
@@ -1464,6 +1523,7 @@ module Aws::CodePipeline
|
|
1464
1523
|
#
|
1465
1524
|
class DuplicatedStopRequestException < Struct.new(
|
1466
1525
|
:message)
|
1526
|
+
SENSITIVE = []
|
1467
1527
|
include Aws::Structure
|
1468
1528
|
end
|
1469
1529
|
|
@@ -1502,6 +1562,7 @@ module Aws::CodePipeline
|
|
1502
1562
|
:pipeline_name,
|
1503
1563
|
:stage_name,
|
1504
1564
|
:transition_type)
|
1565
|
+
SENSITIVE = []
|
1505
1566
|
include Aws::Structure
|
1506
1567
|
end
|
1507
1568
|
|
@@ -1538,6 +1599,7 @@ module Aws::CodePipeline
|
|
1538
1599
|
class EncryptionKey < Struct.new(
|
1539
1600
|
:id,
|
1540
1601
|
:type)
|
1602
|
+
SENSITIVE = []
|
1541
1603
|
include Aws::Structure
|
1542
1604
|
end
|
1543
1605
|
|
@@ -1556,6 +1618,7 @@ module Aws::CodePipeline
|
|
1556
1618
|
class ErrorDetails < Struct.new(
|
1557
1619
|
:code,
|
1558
1620
|
:message)
|
1621
|
+
SENSITIVE = []
|
1559
1622
|
include Aws::Structure
|
1560
1623
|
end
|
1561
1624
|
|
@@ -1591,6 +1654,7 @@ module Aws::CodePipeline
|
|
1591
1654
|
:summary,
|
1592
1655
|
:external_execution_id,
|
1593
1656
|
:percent_complete)
|
1657
|
+
SENSITIVE = []
|
1594
1658
|
include Aws::Structure
|
1595
1659
|
end
|
1596
1660
|
|
@@ -1613,6 +1677,7 @@ module Aws::CodePipeline
|
|
1613
1677
|
class ExecutionTrigger < Struct.new(
|
1614
1678
|
:trigger_type,
|
1615
1679
|
:trigger_detail)
|
1680
|
+
SENSITIVE = []
|
1616
1681
|
include Aws::Structure
|
1617
1682
|
end
|
1618
1683
|
|
@@ -1645,6 +1710,7 @@ module Aws::CodePipeline
|
|
1645
1710
|
:type,
|
1646
1711
|
:message,
|
1647
1712
|
:external_execution_id)
|
1713
|
+
SENSITIVE = []
|
1648
1714
|
include Aws::Structure
|
1649
1715
|
end
|
1650
1716
|
|
@@ -1665,6 +1731,7 @@ module Aws::CodePipeline
|
|
1665
1731
|
#
|
1666
1732
|
class GetJobDetailsInput < Struct.new(
|
1667
1733
|
:job_id)
|
1734
|
+
SENSITIVE = []
|
1668
1735
|
include Aws::Structure
|
1669
1736
|
end
|
1670
1737
|
|
@@ -1683,6 +1750,7 @@ module Aws::CodePipeline
|
|
1683
1750
|
#
|
1684
1751
|
class GetJobDetailsOutput < Struct.new(
|
1685
1752
|
:job_details)
|
1753
|
+
SENSITIVE = []
|
1686
1754
|
include Aws::Structure
|
1687
1755
|
end
|
1688
1756
|
|
@@ -1711,6 +1779,7 @@ module Aws::CodePipeline
|
|
1711
1779
|
class GetPipelineExecutionInput < Struct.new(
|
1712
1780
|
:pipeline_name,
|
1713
1781
|
:pipeline_execution_id)
|
1782
|
+
SENSITIVE = []
|
1714
1783
|
include Aws::Structure
|
1715
1784
|
end
|
1716
1785
|
|
@@ -1724,6 +1793,7 @@ module Aws::CodePipeline
|
|
1724
1793
|
#
|
1725
1794
|
class GetPipelineExecutionOutput < Struct.new(
|
1726
1795
|
:pipeline_execution)
|
1796
|
+
SENSITIVE = []
|
1727
1797
|
include Aws::Structure
|
1728
1798
|
end
|
1729
1799
|
|
@@ -1752,6 +1822,7 @@ module Aws::CodePipeline
|
|
1752
1822
|
class GetPipelineInput < Struct.new(
|
1753
1823
|
:name,
|
1754
1824
|
:version)
|
1825
|
+
SENSITIVE = []
|
1755
1826
|
include Aws::Structure
|
1756
1827
|
end
|
1757
1828
|
|
@@ -1772,6 +1843,7 @@ module Aws::CodePipeline
|
|
1772
1843
|
class GetPipelineOutput < Struct.new(
|
1773
1844
|
:pipeline,
|
1774
1845
|
:metadata)
|
1846
|
+
SENSITIVE = []
|
1775
1847
|
include Aws::Structure
|
1776
1848
|
end
|
1777
1849
|
|
@@ -1792,6 +1864,7 @@ module Aws::CodePipeline
|
|
1792
1864
|
#
|
1793
1865
|
class GetPipelineStateInput < Struct.new(
|
1794
1866
|
:name)
|
1867
|
+
SENSITIVE = []
|
1795
1868
|
include Aws::Structure
|
1796
1869
|
end
|
1797
1870
|
|
@@ -1832,6 +1905,7 @@ module Aws::CodePipeline
|
|
1832
1905
|
:stage_states,
|
1833
1906
|
:created,
|
1834
1907
|
:updated)
|
1908
|
+
SENSITIVE = []
|
1835
1909
|
include Aws::Structure
|
1836
1910
|
end
|
1837
1911
|
|
@@ -1860,6 +1934,7 @@ module Aws::CodePipeline
|
|
1860
1934
|
class GetThirdPartyJobDetailsInput < Struct.new(
|
1861
1935
|
:job_id,
|
1862
1936
|
:client_token)
|
1937
|
+
SENSITIVE = []
|
1863
1938
|
include Aws::Structure
|
1864
1939
|
end
|
1865
1940
|
|
@@ -1874,6 +1949,7 @@ module Aws::CodePipeline
|
|
1874
1949
|
#
|
1875
1950
|
class GetThirdPartyJobDetailsOutput < Struct.new(
|
1876
1951
|
:job_details)
|
1952
|
+
SENSITIVE = []
|
1877
1953
|
include Aws::Structure
|
1878
1954
|
end
|
1879
1955
|
|
@@ -1902,9 +1978,22 @@ module Aws::CodePipeline
|
|
1902
1978
|
#
|
1903
1979
|
class InputArtifact < Struct.new(
|
1904
1980
|
:name)
|
1981
|
+
SENSITIVE = []
|
1905
1982
|
include Aws::Structure
|
1906
1983
|
end
|
1907
1984
|
|
1985
|
+
# The action declaration was specified in an invalid format.
|
1986
|
+
#
|
1987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidActionDeclarationException AWS API Documentation
|
1988
|
+
#
|
1989
|
+
class InvalidActionDeclarationException < Aws::EmptyStructure; end
|
1990
|
+
|
1991
|
+
# The approval request already received a response or has expired.
|
1992
|
+
#
|
1993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidApprovalTokenException AWS API Documentation
|
1994
|
+
#
|
1995
|
+
class InvalidApprovalTokenException < Aws::EmptyStructure; end
|
1996
|
+
|
1908
1997
|
# The specified resource ARN is invalid.
|
1909
1998
|
#
|
1910
1999
|
# @!attribute [rw] message
|
@@ -1914,9 +2003,59 @@ module Aws::CodePipeline
|
|
1914
2003
|
#
|
1915
2004
|
class InvalidArnException < Struct.new(
|
1916
2005
|
:message)
|
2006
|
+
SENSITIVE = []
|
1917
2007
|
include Aws::Structure
|
1918
2008
|
end
|
1919
2009
|
|
2010
|
+
# Reserved for future use.
|
2011
|
+
#
|
2012
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidBlockerDeclarationException AWS API Documentation
|
2013
|
+
#
|
2014
|
+
class InvalidBlockerDeclarationException < Aws::EmptyStructure; end
|
2015
|
+
|
2016
|
+
# The client token was specified in an invalid format
|
2017
|
+
#
|
2018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidClientTokenException AWS API Documentation
|
2019
|
+
#
|
2020
|
+
class InvalidClientTokenException < Aws::EmptyStructure; end
|
2021
|
+
|
2022
|
+
# The job was specified in an invalid format or cannot be found.
|
2023
|
+
#
|
2024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidJobException AWS API Documentation
|
2025
|
+
#
|
2026
|
+
class InvalidJobException < Aws::EmptyStructure; end
|
2027
|
+
|
2028
|
+
# The job state was specified in an invalid format.
|
2029
|
+
#
|
2030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidJobStateException AWS API Documentation
|
2031
|
+
#
|
2032
|
+
class InvalidJobStateException < Aws::EmptyStructure; end
|
2033
|
+
|
2034
|
+
# The next token was specified in an invalid format. Make sure that the
|
2035
|
+
# next token you provide is the token returned by a previous call.
|
2036
|
+
#
|
2037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidNextTokenException AWS API Documentation
|
2038
|
+
#
|
2039
|
+
class InvalidNextTokenException < Aws::EmptyStructure; end
|
2040
|
+
|
2041
|
+
# The nonce was specified in an invalid format.
|
2042
|
+
#
|
2043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidNonceException AWS API Documentation
|
2044
|
+
#
|
2045
|
+
class InvalidNonceException < Aws::EmptyStructure; end
|
2046
|
+
|
2047
|
+
# The stage declaration was specified in an invalid format.
|
2048
|
+
#
|
2049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidStageDeclarationException AWS API Documentation
|
2050
|
+
#
|
2051
|
+
class InvalidStageDeclarationException < Aws::EmptyStructure; end
|
2052
|
+
|
2053
|
+
# The structure was specified in an invalid format.
|
2054
|
+
#
|
2055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidStructureException AWS API Documentation
|
2056
|
+
#
|
2057
|
+
class InvalidStructureException < Aws::EmptyStructure; end
|
2058
|
+
|
1920
2059
|
# The specified resource tags are invalid.
|
1921
2060
|
#
|
1922
2061
|
# @!attribute [rw] message
|
@@ -1926,9 +2065,22 @@ module Aws::CodePipeline
|
|
1926
2065
|
#
|
1927
2066
|
class InvalidTagsException < Struct.new(
|
1928
2067
|
:message)
|
2068
|
+
SENSITIVE = []
|
1929
2069
|
include Aws::Structure
|
1930
2070
|
end
|
1931
2071
|
|
2072
|
+
# The specified authentication type is in an invalid format.
|
2073
|
+
#
|
2074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidWebhookAuthenticationParametersException AWS API Documentation
|
2075
|
+
#
|
2076
|
+
class InvalidWebhookAuthenticationParametersException < Aws::EmptyStructure; end
|
2077
|
+
|
2078
|
+
# The specified event filter rule is in an invalid format.
|
2079
|
+
#
|
2080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidWebhookFilterPatternException AWS API Documentation
|
2081
|
+
#
|
2082
|
+
class InvalidWebhookFilterPatternException < Aws::EmptyStructure; end
|
2083
|
+
|
1932
2084
|
# Represents information about a job.
|
1933
2085
|
#
|
1934
2086
|
# @!attribute [rw] id
|
@@ -1956,6 +2108,7 @@ module Aws::CodePipeline
|
|
1956
2108
|
:data,
|
1957
2109
|
:nonce,
|
1958
2110
|
:account_id)
|
2111
|
+
SENSITIVE = []
|
1959
2112
|
include Aws::Structure
|
1960
2113
|
end
|
1961
2114
|
|
@@ -2015,6 +2168,7 @@ module Aws::CodePipeline
|
|
2015
2168
|
:artifact_credentials,
|
2016
2169
|
:continuation_token,
|
2017
2170
|
:encryption_key)
|
2171
|
+
SENSITIVE = [:artifact_credentials]
|
2018
2172
|
include Aws::Structure
|
2019
2173
|
end
|
2020
2174
|
|
@@ -2039,9 +2193,23 @@ module Aws::CodePipeline
|
|
2039
2193
|
:id,
|
2040
2194
|
:data,
|
2041
2195
|
:account_id)
|
2196
|
+
SENSITIVE = []
|
2042
2197
|
include Aws::Structure
|
2043
2198
|
end
|
2044
2199
|
|
2200
|
+
# The job was specified in an invalid format or cannot be found.
|
2201
|
+
#
|
2202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/JobNotFoundException AWS API Documentation
|
2203
|
+
#
|
2204
|
+
class JobNotFoundException < Aws::EmptyStructure; end
|
2205
|
+
|
2206
|
+
# The number of pipelines associated with the AWS account has exceeded
|
2207
|
+
# the limit allowed for the account.
|
2208
|
+
#
|
2209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/LimitExceededException AWS API Documentation
|
2210
|
+
#
|
2211
|
+
class LimitExceededException < Aws::EmptyStructure; end
|
2212
|
+
|
2045
2213
|
# @note When making an API call, you may pass ListActionExecutionsInput
|
2046
2214
|
# data as a hash:
|
2047
2215
|
#
|
@@ -2088,6 +2256,7 @@ module Aws::CodePipeline
|
|
2088
2256
|
:filter,
|
2089
2257
|
:max_results,
|
2090
2258
|
:next_token)
|
2259
|
+
SENSITIVE = []
|
2091
2260
|
include Aws::Structure
|
2092
2261
|
end
|
2093
2262
|
|
@@ -2108,6 +2277,7 @@ module Aws::CodePipeline
|
|
2108
2277
|
class ListActionExecutionsOutput < Struct.new(
|
2109
2278
|
:action_execution_details,
|
2110
2279
|
:next_token)
|
2280
|
+
SENSITIVE = []
|
2111
2281
|
include Aws::Structure
|
2112
2282
|
end
|
2113
2283
|
|
@@ -2137,6 +2307,7 @@ module Aws::CodePipeline
|
|
2137
2307
|
class ListActionTypesInput < Struct.new(
|
2138
2308
|
:action_owner_filter,
|
2139
2309
|
:next_token)
|
2310
|
+
SENSITIVE = []
|
2140
2311
|
include Aws::Structure
|
2141
2312
|
end
|
2142
2313
|
|
@@ -2158,6 +2329,7 @@ module Aws::CodePipeline
|
|
2158
2329
|
class ListActionTypesOutput < Struct.new(
|
2159
2330
|
:action_types,
|
2160
2331
|
:next_token)
|
2332
|
+
SENSITIVE = []
|
2161
2333
|
include Aws::Structure
|
2162
2334
|
end
|
2163
2335
|
|
@@ -2197,6 +2369,7 @@ module Aws::CodePipeline
|
|
2197
2369
|
:pipeline_name,
|
2198
2370
|
:max_results,
|
2199
2371
|
:next_token)
|
2372
|
+
SENSITIVE = []
|
2200
2373
|
include Aws::Structure
|
2201
2374
|
end
|
2202
2375
|
|
@@ -2217,6 +2390,7 @@ module Aws::CodePipeline
|
|
2217
2390
|
class ListPipelineExecutionsOutput < Struct.new(
|
2218
2391
|
:pipeline_execution_summaries,
|
2219
2392
|
:next_token)
|
2393
|
+
SENSITIVE = []
|
2220
2394
|
include Aws::Structure
|
2221
2395
|
end
|
2222
2396
|
|
@@ -2239,6 +2413,7 @@ module Aws::CodePipeline
|
|
2239
2413
|
#
|
2240
2414
|
class ListPipelinesInput < Struct.new(
|
2241
2415
|
:next_token)
|
2416
|
+
SENSITIVE = []
|
2242
2417
|
include Aws::Structure
|
2243
2418
|
end
|
2244
2419
|
|
@@ -2259,6 +2434,7 @@ module Aws::CodePipeline
|
|
2259
2434
|
class ListPipelinesOutput < Struct.new(
|
2260
2435
|
:pipelines,
|
2261
2436
|
:next_token)
|
2437
|
+
SENSITIVE = []
|
2262
2438
|
include Aws::Structure
|
2263
2439
|
end
|
2264
2440
|
|
@@ -2292,6 +2468,7 @@ module Aws::CodePipeline
|
|
2292
2468
|
:resource_arn,
|
2293
2469
|
:next_token,
|
2294
2470
|
:max_results)
|
2471
|
+
SENSITIVE = []
|
2295
2472
|
include Aws::Structure
|
2296
2473
|
end
|
2297
2474
|
|
@@ -2311,6 +2488,7 @@ module Aws::CodePipeline
|
|
2311
2488
|
class ListTagsForResourceOutput < Struct.new(
|
2312
2489
|
:tags,
|
2313
2490
|
:next_token)
|
2491
|
+
SENSITIVE = []
|
2314
2492
|
include Aws::Structure
|
2315
2493
|
end
|
2316
2494
|
|
@@ -2361,6 +2539,7 @@ module Aws::CodePipeline
|
|
2361
2539
|
:last_triggered,
|
2362
2540
|
:arn,
|
2363
2541
|
:tags)
|
2542
|
+
SENSITIVE = []
|
2364
2543
|
include Aws::Structure
|
2365
2544
|
end
|
2366
2545
|
|
@@ -2388,6 +2567,7 @@ module Aws::CodePipeline
|
|
2388
2567
|
class ListWebhooksInput < Struct.new(
|
2389
2568
|
:next_token,
|
2390
2569
|
:max_results)
|
2570
|
+
SENSITIVE = []
|
2391
2571
|
include Aws::Structure
|
2392
2572
|
end
|
2393
2573
|
|
@@ -2407,9 +2587,17 @@ module Aws::CodePipeline
|
|
2407
2587
|
class ListWebhooksOutput < Struct.new(
|
2408
2588
|
:webhooks,
|
2409
2589
|
:next_token)
|
2590
|
+
SENSITIVE = []
|
2410
2591
|
include Aws::Structure
|
2411
2592
|
end
|
2412
2593
|
|
2594
|
+
# The stage has failed in a later run of the pipeline and the
|
2595
|
+
# pipelineExecutionId associated with the request is out of date.
|
2596
|
+
#
|
2597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/NotLatestPipelineExecutionException AWS API Documentation
|
2598
|
+
#
|
2599
|
+
class NotLatestPipelineExecutionException < Aws::EmptyStructure; end
|
2600
|
+
|
2413
2601
|
# Represents information about the output of an action.
|
2414
2602
|
#
|
2415
2603
|
# @note When making an API call, you may pass OutputArtifact
|
@@ -2436,6 +2624,7 @@ module Aws::CodePipeline
|
|
2436
2624
|
#
|
2437
2625
|
class OutputArtifact < Struct.new(
|
2438
2626
|
:name)
|
2627
|
+
SENSITIVE = []
|
2439
2628
|
include Aws::Structure
|
2440
2629
|
end
|
2441
2630
|
|
@@ -2448,6 +2637,7 @@ module Aws::CodePipeline
|
|
2448
2637
|
#
|
2449
2638
|
class OutputVariablesSizeExceededException < Struct.new(
|
2450
2639
|
:message)
|
2640
|
+
SENSITIVE = []
|
2451
2641
|
include Aws::Structure
|
2452
2642
|
end
|
2453
2643
|
|
@@ -2489,6 +2679,7 @@ module Aws::CodePipeline
|
|
2489
2679
|
:action,
|
2490
2680
|
:pipeline_arn,
|
2491
2681
|
:pipeline_execution_id)
|
2682
|
+
SENSITIVE = []
|
2492
2683
|
include Aws::Structure
|
2493
2684
|
end
|
2494
2685
|
|
@@ -2613,6 +2804,7 @@ module Aws::CodePipeline
|
|
2613
2804
|
:artifact_stores,
|
2614
2805
|
:stages,
|
2615
2806
|
:version)
|
2807
|
+
SENSITIVE = []
|
2616
2808
|
include Aws::Structure
|
2617
2809
|
end
|
2618
2810
|
|
@@ -2672,9 +2864,17 @@ module Aws::CodePipeline
|
|
2672
2864
|
:pipeline_execution_id,
|
2673
2865
|
:status,
|
2674
2866
|
:artifact_revisions)
|
2867
|
+
SENSITIVE = []
|
2675
2868
|
include Aws::Structure
|
2676
2869
|
end
|
2677
2870
|
|
2871
|
+
# The pipeline execution was specified in an invalid format or cannot be
|
2872
|
+
# found, or an execution ID does not belong to the specified pipeline.
|
2873
|
+
#
|
2874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecutionNotFoundException AWS API Documentation
|
2875
|
+
#
|
2876
|
+
class PipelineExecutionNotFoundException < Aws::EmptyStructure; end
|
2877
|
+
|
2678
2878
|
# Unable to stop the pipeline execution. The execution might already be
|
2679
2879
|
# in a `Stopped` state, or it might no longer be in progress.
|
2680
2880
|
#
|
@@ -2685,6 +2885,7 @@ module Aws::CodePipeline
|
|
2685
2885
|
#
|
2686
2886
|
class PipelineExecutionNotStoppableException < Struct.new(
|
2687
2887
|
:message)
|
2888
|
+
SENSITIVE = []
|
2688
2889
|
include Aws::Structure
|
2689
2890
|
end
|
2690
2891
|
|
@@ -2756,6 +2957,7 @@ module Aws::CodePipeline
|
|
2756
2957
|
:source_revisions,
|
2757
2958
|
:trigger,
|
2758
2959
|
:stop_trigger)
|
2960
|
+
SENSITIVE = []
|
2759
2961
|
include Aws::Structure
|
2760
2962
|
end
|
2761
2963
|
|
@@ -2780,9 +2982,22 @@ module Aws::CodePipeline
|
|
2780
2982
|
:pipeline_arn,
|
2781
2983
|
:created,
|
2782
2984
|
:updated)
|
2985
|
+
SENSITIVE = []
|
2783
2986
|
include Aws::Structure
|
2784
2987
|
end
|
2785
2988
|
|
2989
|
+
# The specified pipeline name is already in use.
|
2990
|
+
#
|
2991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineNameInUseException AWS API Documentation
|
2992
|
+
#
|
2993
|
+
class PipelineNameInUseException < Aws::EmptyStructure; end
|
2994
|
+
|
2995
|
+
# The pipeline was specified in an invalid format or cannot be found.
|
2996
|
+
#
|
2997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineNotFoundException AWS API Documentation
|
2998
|
+
#
|
2999
|
+
class PipelineNotFoundException < Aws::EmptyStructure; end
|
3000
|
+
|
2786
3001
|
# Returns a summary of a pipeline.
|
2787
3002
|
#
|
2788
3003
|
# @!attribute [rw] name
|
@@ -2809,9 +3024,17 @@ module Aws::CodePipeline
|
|
2809
3024
|
:version,
|
2810
3025
|
:created,
|
2811
3026
|
:updated)
|
3027
|
+
SENSITIVE = []
|
2812
3028
|
include Aws::Structure
|
2813
3029
|
end
|
2814
3030
|
|
3031
|
+
# The pipeline version was specified in an invalid format or cannot be
|
3032
|
+
# found.
|
3033
|
+
#
|
3034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineVersionNotFoundException AWS API Documentation
|
3035
|
+
#
|
3036
|
+
class PipelineVersionNotFoundException < Aws::EmptyStructure; end
|
3037
|
+
|
2815
3038
|
# Represents the input of a `PollForJobs` action.
|
2816
3039
|
#
|
2817
3040
|
# @note When making an API call, you may pass PollForJobsInput
|
@@ -2852,6 +3075,7 @@ module Aws::CodePipeline
|
|
2852
3075
|
:action_type_id,
|
2853
3076
|
:max_batch_size,
|
2854
3077
|
:query_param)
|
3078
|
+
SENSITIVE = []
|
2855
3079
|
include Aws::Structure
|
2856
3080
|
end
|
2857
3081
|
|
@@ -2865,6 +3089,7 @@ module Aws::CodePipeline
|
|
2865
3089
|
#
|
2866
3090
|
class PollForJobsOutput < Struct.new(
|
2867
3091
|
:jobs)
|
3092
|
+
SENSITIVE = []
|
2868
3093
|
include Aws::Structure
|
2869
3094
|
end
|
2870
3095
|
|
@@ -2896,6 +3121,7 @@ module Aws::CodePipeline
|
|
2896
3121
|
class PollForThirdPartyJobsInput < Struct.new(
|
2897
3122
|
:action_type_id,
|
2898
3123
|
:max_batch_size)
|
3124
|
+
SENSITIVE = []
|
2899
3125
|
include Aws::Structure
|
2900
3126
|
end
|
2901
3127
|
|
@@ -2909,6 +3135,7 @@ module Aws::CodePipeline
|
|
2909
3135
|
#
|
2910
3136
|
class PollForThirdPartyJobsOutput < Struct.new(
|
2911
3137
|
:jobs)
|
3138
|
+
SENSITIVE = []
|
2912
3139
|
include Aws::Structure
|
2913
3140
|
end
|
2914
3141
|
|
@@ -2953,6 +3180,7 @@ module Aws::CodePipeline
|
|
2953
3180
|
:stage_name,
|
2954
3181
|
:action_name,
|
2955
3182
|
:action_revision)
|
3183
|
+
SENSITIVE = []
|
2956
3184
|
include Aws::Structure
|
2957
3185
|
end
|
2958
3186
|
|
@@ -2972,6 +3200,7 @@ module Aws::CodePipeline
|
|
2972
3200
|
class PutActionRevisionOutput < Struct.new(
|
2973
3201
|
:new_revision,
|
2974
3202
|
:pipeline_execution_id)
|
3203
|
+
SENSITIVE = []
|
2975
3204
|
include Aws::Structure
|
2976
3205
|
end
|
2977
3206
|
|
@@ -3022,6 +3251,7 @@ module Aws::CodePipeline
|
|
3022
3251
|
:action_name,
|
3023
3252
|
:result,
|
3024
3253
|
:token)
|
3254
|
+
SENSITIVE = []
|
3025
3255
|
include Aws::Structure
|
3026
3256
|
end
|
3027
3257
|
|
@@ -3035,6 +3265,7 @@ module Aws::CodePipeline
|
|
3035
3265
|
#
|
3036
3266
|
class PutApprovalResultOutput < Struct.new(
|
3037
3267
|
:approved_at)
|
3268
|
+
SENSITIVE = []
|
3038
3269
|
include Aws::Structure
|
3039
3270
|
end
|
3040
3271
|
|
@@ -3066,6 +3297,7 @@ module Aws::CodePipeline
|
|
3066
3297
|
class PutJobFailureResultInput < Struct.new(
|
3067
3298
|
:job_id,
|
3068
3299
|
:failure_details)
|
3300
|
+
SENSITIVE = []
|
3069
3301
|
include Aws::Structure
|
3070
3302
|
end
|
3071
3303
|
|
@@ -3132,6 +3364,7 @@ module Aws::CodePipeline
|
|
3132
3364
|
:continuation_token,
|
3133
3365
|
:execution_details,
|
3134
3366
|
:output_variables)
|
3367
|
+
SENSITIVE = []
|
3135
3368
|
include Aws::Structure
|
3136
3369
|
end
|
3137
3370
|
|
@@ -3171,6 +3404,7 @@ module Aws::CodePipeline
|
|
3171
3404
|
:job_id,
|
3172
3405
|
:client_token,
|
3173
3406
|
:failure_details)
|
3407
|
+
SENSITIVE = []
|
3174
3408
|
include Aws::Structure
|
3175
3409
|
end
|
3176
3410
|
|
@@ -3233,6 +3467,7 @@ module Aws::CodePipeline
|
|
3233
3467
|
:current_revision,
|
3234
3468
|
:continuation_token,
|
3235
3469
|
:execution_details)
|
3470
|
+
SENSITIVE = []
|
3236
3471
|
include Aws::Structure
|
3237
3472
|
end
|
3238
3473
|
|
@@ -3281,6 +3516,7 @@ module Aws::CodePipeline
|
|
3281
3516
|
class PutWebhookInput < Struct.new(
|
3282
3517
|
:webhook,
|
3283
3518
|
:tags)
|
3519
|
+
SENSITIVE = []
|
3284
3520
|
include Aws::Structure
|
3285
3521
|
end
|
3286
3522
|
|
@@ -3293,6 +3529,7 @@ module Aws::CodePipeline
|
|
3293
3529
|
#
|
3294
3530
|
class PutWebhookOutput < Struct.new(
|
3295
3531
|
:webhook)
|
3532
|
+
SENSITIVE = []
|
3296
3533
|
include Aws::Structure
|
3297
3534
|
end
|
3298
3535
|
|
@@ -3312,6 +3549,7 @@ module Aws::CodePipeline
|
|
3312
3549
|
#
|
3313
3550
|
class RegisterWebhookWithThirdPartyInput < Struct.new(
|
3314
3551
|
:webhook_name)
|
3552
|
+
SENSITIVE = []
|
3315
3553
|
include Aws::Structure
|
3316
3554
|
end
|
3317
3555
|
|
@@ -3319,6 +3557,12 @@ module Aws::CodePipeline
|
|
3319
3557
|
#
|
3320
3558
|
class RegisterWebhookWithThirdPartyOutput < Aws::EmptyStructure; end
|
3321
3559
|
|
3560
|
+
# The resource was specified in an invalid format.
|
3561
|
+
#
|
3562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ResourceNotFoundException AWS API Documentation
|
3563
|
+
#
|
3564
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
3565
|
+
|
3322
3566
|
# Represents the input of a `RetryStageExecution` action.
|
3323
3567
|
#
|
3324
3568
|
# @note When making an API call, you may pass RetryStageExecutionInput
|
@@ -3357,6 +3601,7 @@ module Aws::CodePipeline
|
|
3357
3601
|
:stage_name,
|
3358
3602
|
:pipeline_execution_id,
|
3359
3603
|
:retry_mode)
|
3604
|
+
SENSITIVE = []
|
3360
3605
|
include Aws::Structure
|
3361
3606
|
end
|
3362
3607
|
|
@@ -3370,6 +3615,7 @@ module Aws::CodePipeline
|
|
3370
3615
|
#
|
3371
3616
|
class RetryStageExecutionOutput < Struct.new(
|
3372
3617
|
:pipeline_execution_id)
|
3618
|
+
SENSITIVE = []
|
3373
3619
|
include Aws::Structure
|
3374
3620
|
end
|
3375
3621
|
|
@@ -3389,6 +3635,7 @@ module Aws::CodePipeline
|
|
3389
3635
|
class S3ArtifactLocation < Struct.new(
|
3390
3636
|
:bucket_name,
|
3391
3637
|
:object_key)
|
3638
|
+
SENSITIVE = []
|
3392
3639
|
include Aws::Structure
|
3393
3640
|
end
|
3394
3641
|
|
@@ -3407,6 +3654,7 @@ module Aws::CodePipeline
|
|
3407
3654
|
class S3Location < Struct.new(
|
3408
3655
|
:bucket,
|
3409
3656
|
:key)
|
3657
|
+
SENSITIVE = []
|
3410
3658
|
include Aws::Structure
|
3411
3659
|
end
|
3412
3660
|
|
@@ -3444,6 +3692,7 @@ module Aws::CodePipeline
|
|
3444
3692
|
:revision_id,
|
3445
3693
|
:revision_summary,
|
3446
3694
|
:revision_url)
|
3695
|
+
SENSITIVE = []
|
3447
3696
|
include Aws::Structure
|
3448
3697
|
end
|
3449
3698
|
|
@@ -3457,6 +3706,7 @@ module Aws::CodePipeline
|
|
3457
3706
|
#
|
3458
3707
|
class StageContext < Struct.new(
|
3459
3708
|
:name)
|
3709
|
+
SENSITIVE = []
|
3460
3710
|
include Aws::Structure
|
3461
3711
|
end
|
3462
3712
|
|
@@ -3521,6 +3771,7 @@ module Aws::CodePipeline
|
|
3521
3771
|
:name,
|
3522
3772
|
:blockers,
|
3523
3773
|
:actions)
|
3774
|
+
SENSITIVE = []
|
3524
3775
|
include Aws::Structure
|
3525
3776
|
end
|
3526
3777
|
|
@@ -3540,9 +3791,24 @@ module Aws::CodePipeline
|
|
3540
3791
|
class StageExecution < Struct.new(
|
3541
3792
|
:pipeline_execution_id,
|
3542
3793
|
:status)
|
3794
|
+
SENSITIVE = []
|
3543
3795
|
include Aws::Structure
|
3544
3796
|
end
|
3545
3797
|
|
3798
|
+
# The stage was specified in an invalid format or cannot be found.
|
3799
|
+
#
|
3800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StageNotFoundException AWS API Documentation
|
3801
|
+
#
|
3802
|
+
class StageNotFoundException < Aws::EmptyStructure; end
|
3803
|
+
|
3804
|
+
# Unable to retry. The pipeline structure or stage state might have
|
3805
|
+
# changed while actions awaited retry, or the stage contains no failed
|
3806
|
+
# actions.
|
3807
|
+
#
|
3808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StageNotRetryableException AWS API Documentation
|
3809
|
+
#
|
3810
|
+
class StageNotRetryableException < Aws::EmptyStructure; end
|
3811
|
+
|
3546
3812
|
# Represents information about the state of the stage.
|
3547
3813
|
#
|
3548
3814
|
# @!attribute [rw] stage_name
|
@@ -3570,6 +3836,7 @@ module Aws::CodePipeline
|
|
3570
3836
|
:inbound_transition_state,
|
3571
3837
|
:action_states,
|
3572
3838
|
:latest_execution)
|
3839
|
+
SENSITIVE = []
|
3573
3840
|
include Aws::Structure
|
3574
3841
|
end
|
3575
3842
|
|
@@ -3600,6 +3867,7 @@ module Aws::CodePipeline
|
|
3600
3867
|
class StartPipelineExecutionInput < Struct.new(
|
3601
3868
|
:name,
|
3602
3869
|
:client_request_token)
|
3870
|
+
SENSITIVE = []
|
3603
3871
|
include Aws::Structure
|
3604
3872
|
end
|
3605
3873
|
|
@@ -3614,6 +3882,7 @@ module Aws::CodePipeline
|
|
3614
3882
|
#
|
3615
3883
|
class StartPipelineExecutionOutput < Struct.new(
|
3616
3884
|
:pipeline_execution_id)
|
3885
|
+
SENSITIVE = []
|
3617
3886
|
include Aws::Structure
|
3618
3887
|
end
|
3619
3888
|
|
@@ -3627,6 +3896,7 @@ module Aws::CodePipeline
|
|
3627
3896
|
#
|
3628
3897
|
class StopExecutionTrigger < Struct.new(
|
3629
3898
|
:reason)
|
3899
|
+
SENSITIVE = []
|
3630
3900
|
include Aws::Structure
|
3631
3901
|
end
|
3632
3902
|
|
@@ -3671,6 +3941,7 @@ module Aws::CodePipeline
|
|
3671
3941
|
:pipeline_execution_id,
|
3672
3942
|
:abandon,
|
3673
3943
|
:reason)
|
3944
|
+
SENSITIVE = []
|
3674
3945
|
include Aws::Structure
|
3675
3946
|
end
|
3676
3947
|
|
@@ -3683,6 +3954,7 @@ module Aws::CodePipeline
|
|
3683
3954
|
#
|
3684
3955
|
class StopPipelineExecutionOutput < Struct.new(
|
3685
3956
|
:pipeline_execution_id)
|
3957
|
+
SENSITIVE = []
|
3686
3958
|
include Aws::Structure
|
3687
3959
|
end
|
3688
3960
|
|
@@ -3709,6 +3981,7 @@ module Aws::CodePipeline
|
|
3709
3981
|
class Tag < Struct.new(
|
3710
3982
|
:key,
|
3711
3983
|
:value)
|
3984
|
+
SENSITIVE = []
|
3712
3985
|
include Aws::Structure
|
3713
3986
|
end
|
3714
3987
|
|
@@ -3739,6 +4012,7 @@ module Aws::CodePipeline
|
|
3739
4012
|
class TagResourceInput < Struct.new(
|
3740
4013
|
:resource_arn,
|
3741
4014
|
:tags)
|
4015
|
+
SENSITIVE = []
|
3742
4016
|
include Aws::Structure
|
3743
4017
|
end
|
3744
4018
|
|
@@ -3764,6 +4038,7 @@ module Aws::CodePipeline
|
|
3764
4038
|
class ThirdPartyJob < Struct.new(
|
3765
4039
|
:client_id,
|
3766
4040
|
:job_id)
|
4041
|
+
SENSITIVE = []
|
3767
4042
|
include Aws::Structure
|
3768
4043
|
end
|
3769
4044
|
|
@@ -3830,6 +4105,7 @@ module Aws::CodePipeline
|
|
3830
4105
|
:artifact_credentials,
|
3831
4106
|
:continuation_token,
|
3832
4107
|
:encryption_key)
|
4108
|
+
SENSITIVE = [:artifact_credentials]
|
3833
4109
|
include Aws::Structure
|
3834
4110
|
end
|
3835
4111
|
|
@@ -3856,6 +4132,7 @@ module Aws::CodePipeline
|
|
3856
4132
|
:id,
|
3857
4133
|
:data,
|
3858
4134
|
:nonce)
|
4135
|
+
SENSITIVE = []
|
3859
4136
|
include Aws::Structure
|
3860
4137
|
end
|
3861
4138
|
|
@@ -3868,6 +4145,7 @@ module Aws::CodePipeline
|
|
3868
4145
|
#
|
3869
4146
|
class TooManyTagsException < Struct.new(
|
3870
4147
|
:message)
|
4148
|
+
SENSITIVE = []
|
3871
4149
|
include Aws::Structure
|
3872
4150
|
end
|
3873
4151
|
|
@@ -3899,6 +4177,7 @@ module Aws::CodePipeline
|
|
3899
4177
|
:last_changed_by,
|
3900
4178
|
:last_changed_at,
|
3901
4179
|
:disabled_reason)
|
4180
|
+
SENSITIVE = []
|
3902
4181
|
include Aws::Structure
|
3903
4182
|
end
|
3904
4183
|
|
@@ -3923,6 +4202,7 @@ module Aws::CodePipeline
|
|
3923
4202
|
class UntagResourceInput < Struct.new(
|
3924
4203
|
:resource_arn,
|
3925
4204
|
:tag_keys)
|
4205
|
+
SENSITIVE = []
|
3926
4206
|
include Aws::Structure
|
3927
4207
|
end
|
3928
4208
|
|
@@ -4008,6 +4288,7 @@ module Aws::CodePipeline
|
|
4008
4288
|
#
|
4009
4289
|
class UpdatePipelineInput < Struct.new(
|
4010
4290
|
:pipeline)
|
4291
|
+
SENSITIVE = []
|
4011
4292
|
include Aws::Structure
|
4012
4293
|
end
|
4013
4294
|
|
@@ -4021,9 +4302,16 @@ module Aws::CodePipeline
|
|
4021
4302
|
#
|
4022
4303
|
class UpdatePipelineOutput < Struct.new(
|
4023
4304
|
:pipeline)
|
4305
|
+
SENSITIVE = []
|
4024
4306
|
include Aws::Structure
|
4025
4307
|
end
|
4026
4308
|
|
4309
|
+
# The validation was specified in an invalid format.
|
4310
|
+
#
|
4311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ValidationException AWS API Documentation
|
4312
|
+
#
|
4313
|
+
class ValidationException < Aws::EmptyStructure; end
|
4314
|
+
|
4027
4315
|
# The authentication applied to incoming webhook trigger requests.
|
4028
4316
|
#
|
4029
4317
|
# @note When making an API call, you may pass WebhookAuthConfiguration
|
@@ -4050,6 +4338,7 @@ module Aws::CodePipeline
|
|
4050
4338
|
class WebhookAuthConfiguration < Struct.new(
|
4051
4339
|
:allowed_ip_range,
|
4052
4340
|
:secret_token)
|
4341
|
+
SENSITIVE = []
|
4053
4342
|
include Aws::Structure
|
4054
4343
|
end
|
4055
4344
|
|
@@ -4132,6 +4421,7 @@ module Aws::CodePipeline
|
|
4132
4421
|
:filters,
|
4133
4422
|
:authentication,
|
4134
4423
|
:authentication_configuration)
|
4424
|
+
SENSITIVE = []
|
4135
4425
|
include Aws::Structure
|
4136
4426
|
end
|
4137
4427
|
|
@@ -4181,8 +4471,16 @@ module Aws::CodePipeline
|
|
4181
4471
|
class WebhookFilterRule < Struct.new(
|
4182
4472
|
:json_path,
|
4183
4473
|
:match_equals)
|
4474
|
+
SENSITIVE = []
|
4184
4475
|
include Aws::Structure
|
4185
4476
|
end
|
4186
4477
|
|
4478
|
+
# The specified webhook was entered in an invalid format or cannot be
|
4479
|
+
# found.
|
4480
|
+
#
|
4481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/WebhookNotFoundException AWS API Documentation
|
4482
|
+
#
|
4483
|
+
class WebhookNotFoundException < Aws::EmptyStructure; end
|
4484
|
+
|
4187
4485
|
end
|
4188
4486
|
end
|