aws-sdk-codebuild 1.49.0 → 1.54.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/lib/aws-sdk-codebuild.rb +3 -1
- data/lib/aws-sdk-codebuild/client.rb +72 -16
- data/lib/aws-sdk-codebuild/client_api.rb +56 -0
- data/lib/aws-sdk-codebuild/errors.rb +2 -0
- data/lib/aws-sdk-codebuild/resource.rb +3 -7
- data/lib/aws-sdk-codebuild/types.rb +175 -25
- metadata +6 -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,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CodeBuild
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CodeBuild::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CodeBuild::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CodeBuild::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
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:
|
@@ -29,6 +31,7 @@ module Aws::CodeBuild
|
|
29
31
|
#
|
30
32
|
class BatchDeleteBuildsInput < Struct.new(
|
31
33
|
:ids)
|
34
|
+
SENSITIVE = []
|
32
35
|
include Aws::Structure
|
33
36
|
end
|
34
37
|
|
@@ -45,6 +48,7 @@ module Aws::CodeBuild
|
|
45
48
|
class BatchDeleteBuildsOutput < Struct.new(
|
46
49
|
:builds_deleted,
|
47
50
|
:builds_not_deleted)
|
51
|
+
SENSITIVE = []
|
48
52
|
include Aws::Structure
|
49
53
|
end
|
50
54
|
|
@@ -63,6 +67,7 @@ module Aws::CodeBuild
|
|
63
67
|
#
|
64
68
|
class BatchGetBuildsInput < Struct.new(
|
65
69
|
:ids)
|
70
|
+
SENSITIVE = []
|
66
71
|
include Aws::Structure
|
67
72
|
end
|
68
73
|
|
@@ -79,6 +84,7 @@ module Aws::CodeBuild
|
|
79
84
|
class BatchGetBuildsOutput < Struct.new(
|
80
85
|
:builds,
|
81
86
|
:builds_not_found)
|
87
|
+
SENSITIVE = []
|
82
88
|
include Aws::Structure
|
83
89
|
end
|
84
90
|
|
@@ -99,6 +105,7 @@ module Aws::CodeBuild
|
|
99
105
|
#
|
100
106
|
class BatchGetProjectsInput < Struct.new(
|
101
107
|
:names)
|
108
|
+
SENSITIVE = []
|
102
109
|
include Aws::Structure
|
103
110
|
end
|
104
111
|
|
@@ -116,6 +123,7 @@ module Aws::CodeBuild
|
|
116
123
|
class BatchGetProjectsOutput < Struct.new(
|
117
124
|
:projects,
|
118
125
|
:projects_not_found)
|
126
|
+
SENSITIVE = []
|
119
127
|
include Aws::Structure
|
120
128
|
end
|
121
129
|
|
@@ -135,6 +143,7 @@ module Aws::CodeBuild
|
|
135
143
|
#
|
136
144
|
class BatchGetReportGroupsInput < Struct.new(
|
137
145
|
:report_group_arns)
|
146
|
+
SENSITIVE = []
|
138
147
|
include Aws::Structure
|
139
148
|
end
|
140
149
|
|
@@ -152,6 +161,7 @@ module Aws::CodeBuild
|
|
152
161
|
class BatchGetReportGroupsOutput < Struct.new(
|
153
162
|
:report_groups,
|
154
163
|
:report_groups_not_found)
|
164
|
+
SENSITIVE = []
|
155
165
|
include Aws::Structure
|
156
166
|
end
|
157
167
|
|
@@ -170,6 +180,7 @@ module Aws::CodeBuild
|
|
170
180
|
#
|
171
181
|
class BatchGetReportsInput < Struct.new(
|
172
182
|
:report_arns)
|
183
|
+
SENSITIVE = []
|
173
184
|
include Aws::Structure
|
174
185
|
end
|
175
186
|
|
@@ -187,6 +198,7 @@ module Aws::CodeBuild
|
|
187
198
|
class BatchGetReportsOutput < Struct.new(
|
188
199
|
:reports,
|
189
200
|
:reports_not_found)
|
201
|
+
SENSITIVE = []
|
190
202
|
include Aws::Structure
|
191
203
|
end
|
192
204
|
|
@@ -426,6 +438,7 @@ module Aws::CodeBuild
|
|
426
438
|
:exported_environment_variables,
|
427
439
|
:report_arns,
|
428
440
|
:file_system_locations)
|
441
|
+
SENSITIVE = []
|
429
442
|
include Aws::Structure
|
430
443
|
end
|
431
444
|
|
@@ -485,6 +498,7 @@ module Aws::CodeBuild
|
|
485
498
|
:override_artifact_name,
|
486
499
|
:encryption_disabled,
|
487
500
|
:artifact_identifier)
|
501
|
+
SENSITIVE = []
|
488
502
|
include Aws::Structure
|
489
503
|
end
|
490
504
|
|
@@ -504,6 +518,7 @@ module Aws::CodeBuild
|
|
504
518
|
class BuildNotDeleted < Struct.new(
|
505
519
|
:id,
|
506
520
|
:status_code)
|
521
|
+
SENSITIVE = []
|
507
522
|
include Aws::Structure
|
508
523
|
end
|
509
524
|
|
@@ -589,6 +604,7 @@ module Aws::CodeBuild
|
|
589
604
|
:end_time,
|
590
605
|
:duration_in_seconds,
|
591
606
|
:contexts)
|
607
|
+
SENSITIVE = []
|
592
608
|
include Aws::Structure
|
593
609
|
end
|
594
610
|
|
@@ -638,6 +654,7 @@ module Aws::CodeBuild
|
|
638
654
|
:status,
|
639
655
|
:group_name,
|
640
656
|
:stream_name)
|
657
|
+
SENSITIVE = []
|
641
658
|
include Aws::Structure
|
642
659
|
end
|
643
660
|
|
@@ -882,7 +899,8 @@ module Aws::CodeBuild
|
|
882
899
|
# @return [String]
|
883
900
|
#
|
884
901
|
# @!attribute [rw] tags
|
885
|
-
# A
|
902
|
+
# A list of tag key and value pairs associated with this build
|
903
|
+
# project.
|
886
904
|
#
|
887
905
|
# These tags are available for use by AWS services that support AWS
|
888
906
|
# CodeBuild build project tags.
|
@@ -933,6 +951,7 @@ module Aws::CodeBuild
|
|
933
951
|
:badge_enabled,
|
934
952
|
:logs_config,
|
935
953
|
:file_system_locations)
|
954
|
+
SENSITIVE = []
|
936
955
|
include Aws::Structure
|
937
956
|
end
|
938
957
|
|
@@ -944,6 +963,7 @@ module Aws::CodeBuild
|
|
944
963
|
#
|
945
964
|
class CreateProjectOutput < Struct.new(
|
946
965
|
:project)
|
966
|
+
SENSITIVE = []
|
947
967
|
include Aws::Structure
|
948
968
|
end
|
949
969
|
|
@@ -963,6 +983,12 @@ module Aws::CodeBuild
|
|
963
983
|
# encryption_disabled: false,
|
964
984
|
# },
|
965
985
|
# },
|
986
|
+
# tags: [
|
987
|
+
# {
|
988
|
+
# key: "KeyInput",
|
989
|
+
# value: "ValueInput",
|
990
|
+
# },
|
991
|
+
# ],
|
966
992
|
# }
|
967
993
|
#
|
968
994
|
# @!attribute [rw] name
|
@@ -978,12 +1004,21 @@ module Aws::CodeBuild
|
|
978
1004
|
# the report group test results are exported.
|
979
1005
|
# @return [Types::ReportExportConfig]
|
980
1006
|
#
|
1007
|
+
# @!attribute [rw] tags
|
1008
|
+
# A list of tag key and value pairs associated with this report group.
|
1009
|
+
#
|
1010
|
+
# These tags are available for use by AWS services that support AWS
|
1011
|
+
# CodeBuild report group tags.
|
1012
|
+
# @return [Array<Types::Tag>]
|
1013
|
+
#
|
981
1014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroupInput AWS API Documentation
|
982
1015
|
#
|
983
1016
|
class CreateReportGroupInput < Struct.new(
|
984
1017
|
:name,
|
985
1018
|
:type,
|
986
|
-
:export_config
|
1019
|
+
:export_config,
|
1020
|
+
:tags)
|
1021
|
+
SENSITIVE = []
|
987
1022
|
include Aws::Structure
|
988
1023
|
end
|
989
1024
|
|
@@ -995,6 +1030,7 @@ module Aws::CodeBuild
|
|
995
1030
|
#
|
996
1031
|
class CreateReportGroupOutput < Struct.new(
|
997
1032
|
:report_group)
|
1033
|
+
SENSITIVE = []
|
998
1034
|
include Aws::Structure
|
999
1035
|
end
|
1000
1036
|
|
@@ -1007,7 +1043,7 @@ module Aws::CodeBuild
|
|
1007
1043
|
# filter_groups: [
|
1008
1044
|
# [
|
1009
1045
|
# {
|
1010
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH
|
1046
|
+
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
1011
1047
|
# pattern: "String", # required
|
1012
1048
|
# exclude_matched_pattern: false,
|
1013
1049
|
# },
|
@@ -1047,6 +1083,7 @@ module Aws::CodeBuild
|
|
1047
1083
|
:project_name,
|
1048
1084
|
:branch_filter,
|
1049
1085
|
:filter_groups)
|
1086
|
+
SENSITIVE = []
|
1050
1087
|
include Aws::Structure
|
1051
1088
|
end
|
1052
1089
|
|
@@ -1059,6 +1096,7 @@ module Aws::CodeBuild
|
|
1059
1096
|
#
|
1060
1097
|
class CreateWebhookOutput < Struct.new(
|
1061
1098
|
:webhook)
|
1099
|
+
SENSITIVE = []
|
1062
1100
|
include Aws::Structure
|
1063
1101
|
end
|
1064
1102
|
|
@@ -1077,6 +1115,7 @@ module Aws::CodeBuild
|
|
1077
1115
|
#
|
1078
1116
|
class DeleteProjectInput < Struct.new(
|
1079
1117
|
:name)
|
1118
|
+
SENSITIVE = []
|
1080
1119
|
include Aws::Structure
|
1081
1120
|
end
|
1082
1121
|
|
@@ -1099,6 +1138,7 @@ module Aws::CodeBuild
|
|
1099
1138
|
#
|
1100
1139
|
class DeleteReportGroupInput < Struct.new(
|
1101
1140
|
:arn)
|
1141
|
+
SENSITIVE = []
|
1102
1142
|
include Aws::Structure
|
1103
1143
|
end
|
1104
1144
|
|
@@ -1121,6 +1161,7 @@ module Aws::CodeBuild
|
|
1121
1161
|
#
|
1122
1162
|
class DeleteReportInput < Struct.new(
|
1123
1163
|
:arn)
|
1164
|
+
SENSITIVE = []
|
1124
1165
|
include Aws::Structure
|
1125
1166
|
end
|
1126
1167
|
|
@@ -1143,6 +1184,7 @@ module Aws::CodeBuild
|
|
1143
1184
|
#
|
1144
1185
|
class DeleteResourcePolicyInput < Struct.new(
|
1145
1186
|
:resource_arn)
|
1187
|
+
SENSITIVE = []
|
1146
1188
|
include Aws::Structure
|
1147
1189
|
end
|
1148
1190
|
|
@@ -1165,6 +1207,7 @@ module Aws::CodeBuild
|
|
1165
1207
|
#
|
1166
1208
|
class DeleteSourceCredentialsInput < Struct.new(
|
1167
1209
|
:arn)
|
1210
|
+
SENSITIVE = []
|
1168
1211
|
include Aws::Structure
|
1169
1212
|
end
|
1170
1213
|
|
@@ -1176,6 +1219,7 @@ module Aws::CodeBuild
|
|
1176
1219
|
#
|
1177
1220
|
class DeleteSourceCredentialsOutput < Struct.new(
|
1178
1221
|
:arn)
|
1222
|
+
SENSITIVE = []
|
1179
1223
|
include Aws::Structure
|
1180
1224
|
end
|
1181
1225
|
|
@@ -1194,6 +1238,7 @@ module Aws::CodeBuild
|
|
1194
1238
|
#
|
1195
1239
|
class DeleteWebhookInput < Struct.new(
|
1196
1240
|
:project_name)
|
1241
|
+
SENSITIVE = []
|
1197
1242
|
include Aws::Structure
|
1198
1243
|
end
|
1199
1244
|
|
@@ -1244,6 +1289,7 @@ module Aws::CodeBuild
|
|
1244
1289
|
:next_token,
|
1245
1290
|
:max_results,
|
1246
1291
|
:filter)
|
1292
|
+
SENSITIVE = []
|
1247
1293
|
include Aws::Structure
|
1248
1294
|
end
|
1249
1295
|
|
@@ -1266,6 +1312,7 @@ module Aws::CodeBuild
|
|
1266
1312
|
class DescribeTestCasesOutput < Struct.new(
|
1267
1313
|
:next_token,
|
1268
1314
|
:test_cases)
|
1315
|
+
SENSITIVE = []
|
1269
1316
|
include Aws::Structure
|
1270
1317
|
end
|
1271
1318
|
|
@@ -1289,6 +1336,7 @@ module Aws::CodeBuild
|
|
1289
1336
|
:name,
|
1290
1337
|
:description,
|
1291
1338
|
:versions)
|
1339
|
+
SENSITIVE = []
|
1292
1340
|
include Aws::Structure
|
1293
1341
|
end
|
1294
1342
|
|
@@ -1309,6 +1357,7 @@ module Aws::CodeBuild
|
|
1309
1357
|
class EnvironmentLanguage < Struct.new(
|
1310
1358
|
:language,
|
1311
1359
|
:images)
|
1360
|
+
SENSITIVE = []
|
1312
1361
|
include Aws::Structure
|
1313
1362
|
end
|
1314
1363
|
|
@@ -1329,6 +1378,7 @@ module Aws::CodeBuild
|
|
1329
1378
|
class EnvironmentPlatform < Struct.new(
|
1330
1379
|
:platform,
|
1331
1380
|
:languages)
|
1381
|
+
SENSITIVE = []
|
1332
1382
|
include Aws::Structure
|
1333
1383
|
end
|
1334
1384
|
|
@@ -1363,13 +1413,22 @@ module Aws::CodeBuild
|
|
1363
1413
|
# The type of environment variable. Valid values include:
|
1364
1414
|
#
|
1365
1415
|
# * `PARAMETER_STORE`\: An environment variable stored in Amazon EC2
|
1366
|
-
# Systems Manager Parameter Store.
|
1416
|
+
# Systems Manager Parameter Store. To learn how to specify a
|
1417
|
+
# parameter store environment variable, see [ parameter store
|
1418
|
+
# reference-key in the buildspec file][1].
|
1367
1419
|
#
|
1368
1420
|
# * `PLAINTEXT`\: An environment variable in plain text format. This
|
1369
1421
|
# is the default value.
|
1370
1422
|
#
|
1371
1423
|
# * `SECRETS_MANAGER`\: An environment variable stored in AWS Secrets
|
1372
|
-
# Manager.
|
1424
|
+
# Manager. To learn how to specify a secrets manager environment
|
1425
|
+
# variable, see [ secrets manager reference-key in the buildspec
|
1426
|
+
# file][2].
|
1427
|
+
#
|
1428
|
+
#
|
1429
|
+
#
|
1430
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#parameter-store-build-spec
|
1431
|
+
# [2]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#secrets-manager-build-spec
|
1373
1432
|
# @return [String]
|
1374
1433
|
#
|
1375
1434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/EnvironmentVariable AWS API Documentation
|
@@ -1378,6 +1437,7 @@ module Aws::CodeBuild
|
|
1378
1437
|
:name,
|
1379
1438
|
:value,
|
1380
1439
|
:type)
|
1440
|
+
SENSITIVE = []
|
1381
1441
|
include Aws::Structure
|
1382
1442
|
end
|
1383
1443
|
|
@@ -1404,6 +1464,7 @@ module Aws::CodeBuild
|
|
1404
1464
|
class ExportedEnvironmentVariable < Struct.new(
|
1405
1465
|
:name,
|
1406
1466
|
:value)
|
1467
|
+
SENSITIVE = []
|
1407
1468
|
include Aws::Structure
|
1408
1469
|
end
|
1409
1470
|
|
@@ -1422,6 +1483,7 @@ module Aws::CodeBuild
|
|
1422
1483
|
#
|
1423
1484
|
class GetResourcePolicyInput < Struct.new(
|
1424
1485
|
:resource_arn)
|
1486
|
+
SENSITIVE = []
|
1425
1487
|
include Aws::Structure
|
1426
1488
|
end
|
1427
1489
|
|
@@ -1434,6 +1496,7 @@ module Aws::CodeBuild
|
|
1434
1496
|
#
|
1435
1497
|
class GetResourcePolicyOutput < Struct.new(
|
1436
1498
|
:policy)
|
1499
|
+
SENSITIVE = []
|
1437
1500
|
include Aws::Structure
|
1438
1501
|
end
|
1439
1502
|
|
@@ -1456,6 +1519,7 @@ module Aws::CodeBuild
|
|
1456
1519
|
#
|
1457
1520
|
class GitSubmodulesConfig < Struct.new(
|
1458
1521
|
:fetch_submodules)
|
1522
|
+
SENSITIVE = []
|
1459
1523
|
include Aws::Structure
|
1460
1524
|
end
|
1461
1525
|
|
@@ -1506,6 +1570,7 @@ module Aws::CodeBuild
|
|
1506
1570
|
:server_type,
|
1507
1571
|
:auth_type,
|
1508
1572
|
:should_overwrite)
|
1573
|
+
SENSITIVE = [:token]
|
1509
1574
|
include Aws::Structure
|
1510
1575
|
end
|
1511
1576
|
|
@@ -1517,6 +1582,7 @@ module Aws::CodeBuild
|
|
1517
1582
|
#
|
1518
1583
|
class ImportSourceCredentialsOutput < Struct.new(
|
1519
1584
|
:arn)
|
1585
|
+
SENSITIVE = []
|
1520
1586
|
include Aws::Structure
|
1521
1587
|
end
|
1522
1588
|
|
@@ -1542,6 +1608,7 @@ module Aws::CodeBuild
|
|
1542
1608
|
#
|
1543
1609
|
class InvalidateProjectCacheInput < Struct.new(
|
1544
1610
|
:project_name)
|
1611
|
+
SENSITIVE = []
|
1545
1612
|
include Aws::Structure
|
1546
1613
|
end
|
1547
1614
|
|
@@ -1586,6 +1653,7 @@ module Aws::CodeBuild
|
|
1586
1653
|
:project_name,
|
1587
1654
|
:sort_order,
|
1588
1655
|
:next_token)
|
1656
|
+
SENSITIVE = []
|
1589
1657
|
include Aws::Structure
|
1590
1658
|
end
|
1591
1659
|
|
@@ -1606,6 +1674,7 @@ module Aws::CodeBuild
|
|
1606
1674
|
class ListBuildsForProjectOutput < Struct.new(
|
1607
1675
|
:ids,
|
1608
1676
|
:next_token)
|
1677
|
+
SENSITIVE = []
|
1609
1678
|
include Aws::Structure
|
1610
1679
|
end
|
1611
1680
|
|
@@ -1640,6 +1709,7 @@ module Aws::CodeBuild
|
|
1640
1709
|
class ListBuildsInput < Struct.new(
|
1641
1710
|
:sort_order,
|
1642
1711
|
:next_token)
|
1712
|
+
SENSITIVE = []
|
1643
1713
|
include Aws::Structure
|
1644
1714
|
end
|
1645
1715
|
|
@@ -1659,6 +1729,7 @@ module Aws::CodeBuild
|
|
1659
1729
|
class ListBuildsOutput < Struct.new(
|
1660
1730
|
:ids,
|
1661
1731
|
:next_token)
|
1732
|
+
SENSITIVE = []
|
1662
1733
|
include Aws::Structure
|
1663
1734
|
end
|
1664
1735
|
|
@@ -1677,6 +1748,7 @@ module Aws::CodeBuild
|
|
1677
1748
|
#
|
1678
1749
|
class ListCuratedEnvironmentImagesOutput < Struct.new(
|
1679
1750
|
:platforms)
|
1751
|
+
SENSITIVE = []
|
1680
1752
|
include Aws::Structure
|
1681
1753
|
end
|
1682
1754
|
|
@@ -1732,6 +1804,7 @@ module Aws::CodeBuild
|
|
1732
1804
|
:sort_by,
|
1733
1805
|
:sort_order,
|
1734
1806
|
:next_token)
|
1807
|
+
SENSITIVE = []
|
1735
1808
|
include Aws::Structure
|
1736
1809
|
end
|
1737
1810
|
|
@@ -1752,6 +1825,7 @@ module Aws::CodeBuild
|
|
1752
1825
|
class ListProjectsOutput < Struct.new(
|
1753
1826
|
:next_token,
|
1754
1827
|
:projects)
|
1828
|
+
SENSITIVE = []
|
1755
1829
|
include Aws::Structure
|
1756
1830
|
end
|
1757
1831
|
|
@@ -1805,6 +1879,7 @@ module Aws::CodeBuild
|
|
1805
1879
|
:sort_by,
|
1806
1880
|
:next_token,
|
1807
1881
|
:max_results)
|
1882
|
+
SENSITIVE = []
|
1808
1883
|
include Aws::Structure
|
1809
1884
|
end
|
1810
1885
|
|
@@ -1827,6 +1902,7 @@ module Aws::CodeBuild
|
|
1827
1902
|
class ListReportGroupsOutput < Struct.new(
|
1828
1903
|
:next_token,
|
1829
1904
|
:report_groups)
|
1905
|
+
SENSITIVE = []
|
1830
1906
|
include Aws::Structure
|
1831
1907
|
end
|
1832
1908
|
|
@@ -1881,6 +1957,7 @@ module Aws::CodeBuild
|
|
1881
1957
|
:sort_order,
|
1882
1958
|
:max_results,
|
1883
1959
|
:filter)
|
1960
|
+
SENSITIVE = []
|
1884
1961
|
include Aws::Structure
|
1885
1962
|
end
|
1886
1963
|
|
@@ -1903,6 +1980,7 @@ module Aws::CodeBuild
|
|
1903
1980
|
class ListReportsForReportGroupOutput < Struct.new(
|
1904
1981
|
:next_token,
|
1905
1982
|
:reports)
|
1983
|
+
SENSITIVE = []
|
1906
1984
|
include Aws::Structure
|
1907
1985
|
end
|
1908
1986
|
|
@@ -1956,6 +2034,7 @@ module Aws::CodeBuild
|
|
1956
2034
|
:next_token,
|
1957
2035
|
:max_results,
|
1958
2036
|
:filter)
|
2037
|
+
SENSITIVE = []
|
1959
2038
|
include Aws::Structure
|
1960
2039
|
end
|
1961
2040
|
|
@@ -1979,6 +2058,7 @@ module Aws::CodeBuild
|
|
1979
2058
|
class ListReportsOutput < Struct.new(
|
1980
2059
|
:next_token,
|
1981
2060
|
:reports)
|
2061
|
+
SENSITIVE = []
|
1982
2062
|
include Aws::Structure
|
1983
2063
|
end
|
1984
2064
|
|
@@ -2034,6 +2114,7 @@ module Aws::CodeBuild
|
|
2034
2114
|
:sort_order,
|
2035
2115
|
:max_results,
|
2036
2116
|
:next_token)
|
2117
|
+
SENSITIVE = []
|
2037
2118
|
include Aws::Structure
|
2038
2119
|
end
|
2039
2120
|
|
@@ -2057,6 +2138,7 @@ module Aws::CodeBuild
|
|
2057
2138
|
class ListSharedProjectsOutput < Struct.new(
|
2058
2139
|
:next_token,
|
2059
2140
|
:projects)
|
2141
|
+
SENSITIVE = []
|
2060
2142
|
include Aws::Structure
|
2061
2143
|
end
|
2062
2144
|
|
@@ -2112,6 +2194,7 @@ module Aws::CodeBuild
|
|
2112
2194
|
:sort_by,
|
2113
2195
|
:next_token,
|
2114
2196
|
:max_results)
|
2197
|
+
SENSITIVE = []
|
2115
2198
|
include Aws::Structure
|
2116
2199
|
end
|
2117
2200
|
|
@@ -2135,6 +2218,7 @@ module Aws::CodeBuild
|
|
2135
2218
|
class ListSharedReportGroupsOutput < Struct.new(
|
2136
2219
|
:next_token,
|
2137
2220
|
:report_groups)
|
2221
|
+
SENSITIVE = []
|
2138
2222
|
include Aws::Structure
|
2139
2223
|
end
|
2140
2224
|
|
@@ -2154,6 +2238,7 @@ module Aws::CodeBuild
|
|
2154
2238
|
#
|
2155
2239
|
class ListSourceCredentialsOutput < Struct.new(
|
2156
2240
|
:source_credentials_infos)
|
2241
|
+
SENSITIVE = []
|
2157
2242
|
include Aws::Structure
|
2158
2243
|
end
|
2159
2244
|
|
@@ -2191,6 +2276,7 @@ module Aws::CodeBuild
|
|
2191
2276
|
class LogsConfig < Struct.new(
|
2192
2277
|
:cloud_watch_logs,
|
2193
2278
|
:s3_logs)
|
2279
|
+
SENSITIVE = []
|
2194
2280
|
include Aws::Structure
|
2195
2281
|
end
|
2196
2282
|
|
@@ -2252,6 +2338,7 @@ module Aws::CodeBuild
|
|
2252
2338
|
:s3_logs_arn,
|
2253
2339
|
:cloud_watch_logs,
|
2254
2340
|
:s3_logs)
|
2341
|
+
SENSITIVE = []
|
2255
2342
|
include Aws::Structure
|
2256
2343
|
end
|
2257
2344
|
|
@@ -2270,6 +2357,7 @@ module Aws::CodeBuild
|
|
2270
2357
|
class NetworkInterface < Struct.new(
|
2271
2358
|
:subnet_id,
|
2272
2359
|
:network_interface_id)
|
2360
|
+
SENSITIVE = []
|
2273
2361
|
include Aws::Structure
|
2274
2362
|
end
|
2275
2363
|
|
@@ -2296,6 +2384,7 @@ module Aws::CodeBuild
|
|
2296
2384
|
class PhaseContext < Struct.new(
|
2297
2385
|
:status_code,
|
2298
2386
|
:message)
|
2387
|
+
SENSITIVE = []
|
2299
2388
|
include Aws::Structure
|
2300
2389
|
end
|
2301
2390
|
|
@@ -2411,7 +2500,8 @@ module Aws::CodeBuild
|
|
2411
2500
|
# @return [String]
|
2412
2501
|
#
|
2413
2502
|
# @!attribute [rw] tags
|
2414
|
-
#
|
2503
|
+
# A list of tag key and value pairs associated with this build
|
2504
|
+
# project.
|
2415
2505
|
#
|
2416
2506
|
# These tags are available for use by AWS services that support AWS
|
2417
2507
|
# CodeBuild build project tags.
|
@@ -2477,6 +2567,7 @@ module Aws::CodeBuild
|
|
2477
2567
|
:badge,
|
2478
2568
|
:logs_config,
|
2479
2569
|
:file_system_locations)
|
2570
|
+
SENSITIVE = []
|
2480
2571
|
include Aws::Structure
|
2481
2572
|
end
|
2482
2573
|
|
@@ -2652,6 +2743,7 @@ module Aws::CodeBuild
|
|
2652
2743
|
:override_artifact_name,
|
2653
2744
|
:encryption_disabled,
|
2654
2745
|
:artifact_identifier)
|
2746
|
+
SENSITIVE = []
|
2655
2747
|
include Aws::Structure
|
2656
2748
|
end
|
2657
2749
|
|
@@ -2675,6 +2767,7 @@ module Aws::CodeBuild
|
|
2675
2767
|
class ProjectBadge < Struct.new(
|
2676
2768
|
:badge_enabled,
|
2677
2769
|
:badge_request_url)
|
2770
|
+
SENSITIVE = []
|
2678
2771
|
include Aws::Structure
|
2679
2772
|
end
|
2680
2773
|
|
@@ -2758,6 +2851,7 @@ module Aws::CodeBuild
|
|
2758
2851
|
:type,
|
2759
2852
|
:location,
|
2760
2853
|
:modes)
|
2854
|
+
SENSITIVE = []
|
2761
2855
|
include Aws::Structure
|
2762
2856
|
end
|
2763
2857
|
|
@@ -2796,17 +2890,16 @@ module Aws::CodeBuild
|
|
2796
2890
|
#
|
2797
2891
|
# * The environment type `LINUX_CONTAINER` with compute type
|
2798
2892
|
# `build.general1.2xlarge` is available only in regions US East (N.
|
2799
|
-
# Virginia), US East (
|
2800
|
-
# (
|
2801
|
-
# (
|
2802
|
-
#
|
2893
|
+
# Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU
|
2894
|
+
# (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia
|
2895
|
+
# Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney),
|
2896
|
+
# China (Beijing), and China (Ningxia).
|
2803
2897
|
#
|
2804
2898
|
# * The environment type `LINUX_GPU_CONTAINER` is available only in
|
2805
|
-
# regions US East (N. Virginia), US East (
|
2806
|
-
#
|
2807
|
-
# (
|
2808
|
-
#
|
2809
|
-
# China (Ningxia).
|
2899
|
+
# regions US East (N. Virginia), US East (Ohio), US West (Oregon),
|
2900
|
+
# Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia
|
2901
|
+
# Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore),
|
2902
|
+
# Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).
|
2810
2903
|
# @return [String]
|
2811
2904
|
#
|
2812
2905
|
# @!attribute [rw] image
|
@@ -2927,6 +3020,7 @@ module Aws::CodeBuild
|
|
2927
3020
|
:certificate,
|
2928
3021
|
:registry_credential,
|
2929
3022
|
:image_pull_credentials_type)
|
3023
|
+
SENSITIVE = []
|
2930
3024
|
include Aws::Structure
|
2931
3025
|
end
|
2932
3026
|
|
@@ -3001,6 +3095,7 @@ module Aws::CodeBuild
|
|
3001
3095
|
:mount_point,
|
3002
3096
|
:identifier,
|
3003
3097
|
:mount_options)
|
3098
|
+
SENSITIVE = []
|
3004
3099
|
include Aws::Structure
|
3005
3100
|
end
|
3006
3101
|
|
@@ -3170,6 +3265,7 @@ module Aws::CodeBuild
|
|
3170
3265
|
:report_build_status,
|
3171
3266
|
:insecure_ssl,
|
3172
3267
|
:source_identifier)
|
3268
|
+
SENSITIVE = []
|
3173
3269
|
include Aws::Structure
|
3174
3270
|
end
|
3175
3271
|
|
@@ -3222,6 +3318,7 @@ module Aws::CodeBuild
|
|
3222
3318
|
class ProjectSourceVersion < Struct.new(
|
3223
3319
|
:source_identifier,
|
3224
3320
|
:source_version)
|
3321
|
+
SENSITIVE = []
|
3225
3322
|
include Aws::Structure
|
3226
3323
|
end
|
3227
3324
|
|
@@ -3254,6 +3351,7 @@ module Aws::CodeBuild
|
|
3254
3351
|
class PutResourcePolicyInput < Struct.new(
|
3255
3352
|
:policy,
|
3256
3353
|
:resource_arn)
|
3354
|
+
SENSITIVE = []
|
3257
3355
|
include Aws::Structure
|
3258
3356
|
end
|
3259
3357
|
|
@@ -3266,6 +3364,7 @@ module Aws::CodeBuild
|
|
3266
3364
|
#
|
3267
3365
|
class PutResourcePolicyOutput < Struct.new(
|
3268
3366
|
:resource_arn)
|
3367
|
+
SENSITIVE = []
|
3269
3368
|
include Aws::Structure
|
3270
3369
|
end
|
3271
3370
|
|
@@ -3312,6 +3411,7 @@ module Aws::CodeBuild
|
|
3312
3411
|
class RegistryCredential < Struct.new(
|
3313
3412
|
:credential,
|
3314
3413
|
:credential_provider)
|
3414
|
+
SENSITIVE = []
|
3315
3415
|
include Aws::Structure
|
3316
3416
|
end
|
3317
3417
|
|
@@ -3385,6 +3485,7 @@ module Aws::CodeBuild
|
|
3385
3485
|
:export_config,
|
3386
3486
|
:truncated,
|
3387
3487
|
:test_summary)
|
3488
|
+
SENSITIVE = []
|
3388
3489
|
include Aws::Structure
|
3389
3490
|
end
|
3390
3491
|
|
@@ -3422,6 +3523,7 @@ module Aws::CodeBuild
|
|
3422
3523
|
class ReportExportConfig < Struct.new(
|
3423
3524
|
:export_config_type,
|
3424
3525
|
:s3_destination)
|
3526
|
+
SENSITIVE = []
|
3425
3527
|
include Aws::Structure
|
3426
3528
|
end
|
3427
3529
|
|
@@ -3444,6 +3546,7 @@ module Aws::CodeBuild
|
|
3444
3546
|
#
|
3445
3547
|
class ReportFilter < Struct.new(
|
3446
3548
|
:status)
|
3549
|
+
SENSITIVE = []
|
3447
3550
|
include Aws::Structure
|
3448
3551
|
end
|
3449
3552
|
|
@@ -3477,6 +3580,13 @@ module Aws::CodeBuild
|
|
3477
3580
|
# The date and time this `ReportGroup` was last modified.
|
3478
3581
|
# @return [Time]
|
3479
3582
|
#
|
3583
|
+
# @!attribute [rw] tags
|
3584
|
+
# A list of tag key and value pairs associated with this report group.
|
3585
|
+
#
|
3586
|
+
# These tags are available for use by AWS services that support AWS
|
3587
|
+
# CodeBuild report group tags.
|
3588
|
+
# @return [Array<Types::Tag>]
|
3589
|
+
#
|
3480
3590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ReportGroup AWS API Documentation
|
3481
3591
|
#
|
3482
3592
|
class ReportGroup < Struct.new(
|
@@ -3485,7 +3595,9 @@ module Aws::CodeBuild
|
|
3485
3595
|
:type,
|
3486
3596
|
:export_config,
|
3487
3597
|
:created,
|
3488
|
-
:last_modified
|
3598
|
+
:last_modified,
|
3599
|
+
:tags)
|
3600
|
+
SENSITIVE = []
|
3489
3601
|
include Aws::Structure
|
3490
3602
|
end
|
3491
3603
|
|
@@ -3539,6 +3651,7 @@ module Aws::CodeBuild
|
|
3539
3651
|
:status,
|
3540
3652
|
:location,
|
3541
3653
|
:encryption_disabled)
|
3654
|
+
SENSITIVE = []
|
3542
3655
|
include Aws::Structure
|
3543
3656
|
end
|
3544
3657
|
|
@@ -3592,6 +3705,7 @@ module Aws::CodeBuild
|
|
3592
3705
|
:packaging,
|
3593
3706
|
:encryption_key,
|
3594
3707
|
:encryption_disabled)
|
3708
|
+
SENSITIVE = []
|
3595
3709
|
include Aws::Structure
|
3596
3710
|
end
|
3597
3711
|
|
@@ -3627,6 +3741,7 @@ module Aws::CodeBuild
|
|
3627
3741
|
class SourceAuth < Struct.new(
|
3628
3742
|
:type,
|
3629
3743
|
:resource)
|
3744
|
+
SENSITIVE = []
|
3630
3745
|
include Aws::Structure
|
3631
3746
|
end
|
3632
3747
|
|
@@ -3653,6 +3768,7 @@ module Aws::CodeBuild
|
|
3653
3768
|
:arn,
|
3654
3769
|
:server_type,
|
3655
3770
|
:auth_type)
|
3771
|
+
SENSITIVE = []
|
3656
3772
|
include Aws::Structure
|
3657
3773
|
end
|
3658
3774
|
|
@@ -4018,6 +4134,7 @@ module Aws::CodeBuild
|
|
4018
4134
|
:logs_config_override,
|
4019
4135
|
:registry_credential_override,
|
4020
4136
|
:image_pull_credentials_type_override)
|
4137
|
+
SENSITIVE = []
|
4021
4138
|
include Aws::Structure
|
4022
4139
|
end
|
4023
4140
|
|
@@ -4029,6 +4146,7 @@ module Aws::CodeBuild
|
|
4029
4146
|
#
|
4030
4147
|
class StartBuildOutput < Struct.new(
|
4031
4148
|
:build)
|
4149
|
+
SENSITIVE = []
|
4032
4150
|
include Aws::Structure
|
4033
4151
|
end
|
4034
4152
|
|
@@ -4047,6 +4165,7 @@ module Aws::CodeBuild
|
|
4047
4165
|
#
|
4048
4166
|
class StopBuildInput < Struct.new(
|
4049
4167
|
:id)
|
4168
|
+
SENSITIVE = []
|
4050
4169
|
include Aws::Structure
|
4051
4170
|
end
|
4052
4171
|
|
@@ -4058,6 +4177,7 @@ module Aws::CodeBuild
|
|
4058
4177
|
#
|
4059
4178
|
class StopBuildOutput < Struct.new(
|
4060
4179
|
:build)
|
4180
|
+
SENSITIVE = []
|
4061
4181
|
include Aws::Structure
|
4062
4182
|
end
|
4063
4183
|
|
@@ -4087,6 +4207,7 @@ module Aws::CodeBuild
|
|
4087
4207
|
class Tag < Struct.new(
|
4088
4208
|
:key,
|
4089
4209
|
:value)
|
4210
|
+
SENSITIVE = []
|
4090
4211
|
include Aws::Structure
|
4091
4212
|
end
|
4092
4213
|
|
@@ -4143,6 +4264,7 @@ module Aws::CodeBuild
|
|
4143
4264
|
:duration_in_nano_seconds,
|
4144
4265
|
:message,
|
4145
4266
|
:expired)
|
4267
|
+
SENSITIVE = []
|
4146
4268
|
include Aws::Structure
|
4147
4269
|
end
|
4148
4270
|
|
@@ -4165,6 +4287,7 @@ module Aws::CodeBuild
|
|
4165
4287
|
#
|
4166
4288
|
class TestCaseFilter < Struct.new(
|
4167
4289
|
:status)
|
4290
|
+
SENSITIVE = []
|
4168
4291
|
include Aws::Structure
|
4169
4292
|
end
|
4170
4293
|
|
@@ -4191,6 +4314,7 @@ module Aws::CodeBuild
|
|
4191
4314
|
:total,
|
4192
4315
|
:status_counts,
|
4193
4316
|
:duration_in_nano_seconds)
|
4317
|
+
SENSITIVE = []
|
4194
4318
|
include Aws::Structure
|
4195
4319
|
end
|
4196
4320
|
|
@@ -4441,7 +4565,8 @@ module Aws::CodeBuild
|
|
4441
4565
|
# @return [String]
|
4442
4566
|
#
|
4443
4567
|
# @!attribute [rw] tags
|
4444
|
-
#
|
4568
|
+
# An updated list of tag key and value pairs associated with this
|
4569
|
+
# build project.
|
4445
4570
|
#
|
4446
4571
|
# These tags are available for use by AWS services that support AWS
|
4447
4572
|
# CodeBuild build project tags.
|
@@ -4491,6 +4616,7 @@ module Aws::CodeBuild
|
|
4491
4616
|
:badge_enabled,
|
4492
4617
|
:logs_config,
|
4493
4618
|
:file_system_locations)
|
4619
|
+
SENSITIVE = []
|
4494
4620
|
include Aws::Structure
|
4495
4621
|
end
|
4496
4622
|
|
@@ -4502,6 +4628,7 @@ module Aws::CodeBuild
|
|
4502
4628
|
#
|
4503
4629
|
class UpdateProjectOutput < Struct.new(
|
4504
4630
|
:project)
|
4631
|
+
SENSITIVE = []
|
4505
4632
|
include Aws::Structure
|
4506
4633
|
end
|
4507
4634
|
|
@@ -4520,6 +4647,12 @@ module Aws::CodeBuild
|
|
4520
4647
|
# encryption_disabled: false,
|
4521
4648
|
# },
|
4522
4649
|
# },
|
4650
|
+
# tags: [
|
4651
|
+
# {
|
4652
|
+
# key: "KeyInput",
|
4653
|
+
# value: "ValueInput",
|
4654
|
+
# },
|
4655
|
+
# ],
|
4523
4656
|
# }
|
4524
4657
|
#
|
4525
4658
|
# @!attribute [rw] arn
|
@@ -4534,11 +4667,21 @@ module Aws::CodeBuild
|
|
4534
4667
|
# * `NO_EXPORT`\: The report results are not exported.
|
4535
4668
|
# @return [Types::ReportExportConfig]
|
4536
4669
|
#
|
4670
|
+
# @!attribute [rw] tags
|
4671
|
+
# An updated list of tag key and value pairs associated with this
|
4672
|
+
# report group.
|
4673
|
+
#
|
4674
|
+
# These tags are available for use by AWS services that support AWS
|
4675
|
+
# CodeBuild report group tags.
|
4676
|
+
# @return [Array<Types::Tag>]
|
4677
|
+
#
|
4537
4678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroupInput AWS API Documentation
|
4538
4679
|
#
|
4539
4680
|
class UpdateReportGroupInput < Struct.new(
|
4540
4681
|
:arn,
|
4541
|
-
:export_config
|
4682
|
+
:export_config,
|
4683
|
+
:tags)
|
4684
|
+
SENSITIVE = []
|
4542
4685
|
include Aws::Structure
|
4543
4686
|
end
|
4544
4687
|
|
@@ -4550,6 +4693,7 @@ module Aws::CodeBuild
|
|
4550
4693
|
#
|
4551
4694
|
class UpdateReportGroupOutput < Struct.new(
|
4552
4695
|
:report_group)
|
4696
|
+
SENSITIVE = []
|
4553
4697
|
include Aws::Structure
|
4554
4698
|
end
|
4555
4699
|
|
@@ -4563,7 +4707,7 @@ module Aws::CodeBuild
|
|
4563
4707
|
# filter_groups: [
|
4564
4708
|
# [
|
4565
4709
|
# {
|
4566
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH
|
4710
|
+
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
4567
4711
|
# pattern: "String", # required
|
4568
4712
|
# exclude_matched_pattern: false,
|
4569
4713
|
# },
|
@@ -4606,6 +4750,7 @@ module Aws::CodeBuild
|
|
4606
4750
|
:branch_filter,
|
4607
4751
|
:rotate_secret,
|
4608
4752
|
:filter_groups)
|
4753
|
+
SENSITIVE = []
|
4609
4754
|
include Aws::Structure
|
4610
4755
|
end
|
4611
4756
|
|
@@ -4618,6 +4763,7 @@ module Aws::CodeBuild
|
|
4618
4763
|
#
|
4619
4764
|
class UpdateWebhookOutput < Struct.new(
|
4620
4765
|
:webhook)
|
4766
|
+
SENSITIVE = []
|
4621
4767
|
include Aws::Structure
|
4622
4768
|
end
|
4623
4769
|
|
@@ -4650,6 +4796,7 @@ module Aws::CodeBuild
|
|
4650
4796
|
:vpc_id,
|
4651
4797
|
:subnets,
|
4652
4798
|
:security_group_ids)
|
4799
|
+
SENSITIVE = []
|
4653
4800
|
include Aws::Structure
|
4654
4801
|
end
|
4655
4802
|
|
@@ -4708,6 +4855,7 @@ module Aws::CodeBuild
|
|
4708
4855
|
:branch_filter,
|
4709
4856
|
:filter_groups,
|
4710
4857
|
:last_modified_secret)
|
4858
|
+
SENSITIVE = []
|
4711
4859
|
include Aws::Structure
|
4712
4860
|
end
|
4713
4861
|
|
@@ -4717,7 +4865,7 @@ module Aws::CodeBuild
|
|
4717
4865
|
# data as a hash:
|
4718
4866
|
#
|
4719
4867
|
# {
|
4720
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH
|
4868
|
+
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
4721
4869
|
# pattern: "String", # required
|
4722
4870
|
# exclude_matched_pattern: false,
|
4723
4871
|
# }
|
@@ -4730,11 +4878,12 @@ module Aws::CodeBuild
|
|
4730
4878
|
# EVENT
|
4731
4879
|
#
|
4732
4880
|
# : A webhook event triggers a build when the provided `pattern`
|
4733
|
-
# matches one of
|
4734
|
-
# `PULL_REQUEST_UPDATED`,
|
4735
|
-
# patterns are specified as a
|
4736
|
-
# `PUSH, PULL_REQUEST_CREATED,
|
4737
|
-
# push, pull request created, and
|
4881
|
+
# matches one of five event types: `PUSH`, `PULL_REQUEST_CREATED`,
|
4882
|
+
# `PULL_REQUEST_UPDATED`, `PULL_REQUEST_REOPENED`, and
|
4883
|
+
# `PULL_REQUEST_MERGED`. The `EVENT` patterns are specified as a
|
4884
|
+
# comma-separated string. For example, `PUSH, PULL_REQUEST_CREATED,
|
4885
|
+
# PULL_REQUEST_UPDATED` filters all push, pull request created, and
|
4886
|
+
# pull request updated events.
|
4738
4887
|
#
|
4739
4888
|
# <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
|
4740
4889
|
# Enterprise only.
|
@@ -4803,6 +4952,7 @@ module Aws::CodeBuild
|
|
4803
4952
|
:type,
|
4804
4953
|
:pattern,
|
4805
4954
|
:exclude_matched_pattern)
|
4955
|
+
SENSITIVE = []
|
4806
4956
|
include Aws::Structure
|
4807
4957
|
end
|
4808
4958
|
|