aws-sdk-codebuild 1.89.0 → 1.91.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +35 -30
- data/lib/aws-sdk-codebuild/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-codebuild/types.rb +73 -1288
- data/lib/aws-sdk-codebuild.rb +1 -1
- metadata +4 -4
@@ -17,13 +17,6 @@ module Aws::CodeBuild
|
|
17
17
|
#
|
18
18
|
class AccountLimitExceededException < Aws::EmptyStructure; end
|
19
19
|
|
20
|
-
# @note When making an API call, you may pass BatchDeleteBuildsInput
|
21
|
-
# data as a hash:
|
22
|
-
#
|
23
|
-
# {
|
24
|
-
# ids: ["NonEmptyString"], # required
|
25
|
-
# }
|
26
|
-
#
|
27
20
|
# @!attribute [rw] ids
|
28
21
|
# The IDs of the builds to delete.
|
29
22
|
# @return [Array<String>]
|
@@ -53,13 +46,6 @@ module Aws::CodeBuild
|
|
53
46
|
include Aws::Structure
|
54
47
|
end
|
55
48
|
|
56
|
-
# @note When making an API call, you may pass BatchGetBuildBatchesInput
|
57
|
-
# data as a hash:
|
58
|
-
#
|
59
|
-
# {
|
60
|
-
# ids: ["NonEmptyString"], # required
|
61
|
-
# }
|
62
|
-
#
|
63
49
|
# @!attribute [rw] ids
|
64
50
|
# An array that contains the batch build identifiers to retrieve.
|
65
51
|
# @return [Array<String>]
|
@@ -91,13 +77,6 @@ module Aws::CodeBuild
|
|
91
77
|
include Aws::Structure
|
92
78
|
end
|
93
79
|
|
94
|
-
# @note When making an API call, you may pass BatchGetBuildsInput
|
95
|
-
# data as a hash:
|
96
|
-
#
|
97
|
-
# {
|
98
|
-
# ids: ["NonEmptyString"], # required
|
99
|
-
# }
|
100
|
-
#
|
101
80
|
# @!attribute [rw] ids
|
102
81
|
# The IDs of the builds.
|
103
82
|
# @return [Array<String>]
|
@@ -127,13 +106,6 @@ module Aws::CodeBuild
|
|
127
106
|
include Aws::Structure
|
128
107
|
end
|
129
108
|
|
130
|
-
# @note When making an API call, you may pass BatchGetProjectsInput
|
131
|
-
# data as a hash:
|
132
|
-
#
|
133
|
-
# {
|
134
|
-
# names: ["NonEmptyString"], # required
|
135
|
-
# }
|
136
|
-
#
|
137
109
|
# @!attribute [rw] names
|
138
110
|
# The names or ARNs of the build projects. To get information about a
|
139
111
|
# project shared with your Amazon Web Services account, its ARN must
|
@@ -166,13 +138,6 @@ module Aws::CodeBuild
|
|
166
138
|
include Aws::Structure
|
167
139
|
end
|
168
140
|
|
169
|
-
# @note When making an API call, you may pass BatchGetReportGroupsInput
|
170
|
-
# data as a hash:
|
171
|
-
#
|
172
|
-
# {
|
173
|
-
# report_group_arns: ["NonEmptyString"], # required
|
174
|
-
# }
|
175
|
-
#
|
176
141
|
# @!attribute [rw] report_group_arns
|
177
142
|
# An array of report group ARNs that identify the report groups to
|
178
143
|
# return.
|
@@ -204,13 +169,6 @@ module Aws::CodeBuild
|
|
204
169
|
include Aws::Structure
|
205
170
|
end
|
206
171
|
|
207
|
-
# @note When making an API call, you may pass BatchGetReportsInput
|
208
|
-
# data as a hash:
|
209
|
-
#
|
210
|
-
# {
|
211
|
-
# report_arns: ["NonEmptyString"], # required
|
212
|
-
# }
|
213
|
-
#
|
214
172
|
# @!attribute [rw] report_arns
|
215
173
|
# An array of ARNs that identify the `Report` objects to return.
|
216
174
|
# @return [Array<String>]
|
@@ -243,14 +201,6 @@ module Aws::CodeBuild
|
|
243
201
|
|
244
202
|
# Specifies restrictions for the batch build.
|
245
203
|
#
|
246
|
-
# @note When making an API call, you may pass BatchRestrictions
|
247
|
-
# data as a hash:
|
248
|
-
#
|
249
|
-
# {
|
250
|
-
# maximum_builds_allowed: 1,
|
251
|
-
# compute_types_allowed: ["NonEmptyString"],
|
252
|
-
# }
|
253
|
-
#
|
254
204
|
# @!attribute [rw] maximum_builds_allowed
|
255
205
|
# Specifies the maximum number of builds allowed.
|
256
206
|
# @return [Integer]
|
@@ -306,17 +256,17 @@ module Aws::CodeBuild
|
|
306
256
|
# @!attribute [rw] build_status
|
307
257
|
# The current status of the build. Valid values include:
|
308
258
|
#
|
309
|
-
# * `FAILED
|
259
|
+
# * `FAILED`: The build failed.
|
310
260
|
#
|
311
|
-
# * `FAULT
|
261
|
+
# * `FAULT`: The build faulted.
|
312
262
|
#
|
313
|
-
# * `IN_PROGRESS
|
263
|
+
# * `IN_PROGRESS`: The build is still in progress.
|
314
264
|
#
|
315
|
-
# * `STOPPED
|
265
|
+
# * `STOPPED`: The build stopped.
|
316
266
|
#
|
317
|
-
# * `SUCCEEDED
|
267
|
+
# * `SUCCEEDED`: The build succeeded.
|
318
268
|
#
|
319
|
-
# * `TIMED_OUT
|
269
|
+
# * `TIMED_OUT`: The build timed out.
|
320
270
|
# @return [String]
|
321
271
|
#
|
322
272
|
# @!attribute [rw] source_version
|
@@ -868,13 +818,6 @@ module Aws::CodeBuild
|
|
868
818
|
|
869
819
|
# Specifies filters when retrieving batch builds.
|
870
820
|
#
|
871
|
-
# @note When making an API call, you may pass BuildBatchFilter
|
872
|
-
# data as a hash:
|
873
|
-
#
|
874
|
-
# {
|
875
|
-
# status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, FAULT, TIMED_OUT, IN_PROGRESS, STOPPED
|
876
|
-
# }
|
877
|
-
#
|
878
821
|
# @!attribute [rw] status
|
879
822
|
# The status of the batch builds to retrieve. Only batch builds that
|
880
823
|
# have this status will be retrieved.
|
@@ -1154,14 +1097,6 @@ module Aws::CodeBuild
|
|
1154
1097
|
# Contains information that defines how the CodeBuild build project
|
1155
1098
|
# reports the build status to the source provider.
|
1156
1099
|
#
|
1157
|
-
# @note When making an API call, you may pass BuildStatusConfig
|
1158
|
-
# data as a hash:
|
1159
|
-
#
|
1160
|
-
# {
|
1161
|
-
# context: "String",
|
1162
|
-
# target_url: "String",
|
1163
|
-
# }
|
1164
|
-
#
|
1165
1100
|
# @!attribute [rw] context
|
1166
1101
|
# Specifies the context of the build status CodeBuild sends to the
|
1167
1102
|
# source provider. The usage of this parameter depends on the source
|
@@ -1279,22 +1214,13 @@ module Aws::CodeBuild
|
|
1279
1214
|
|
1280
1215
|
# Information about CloudWatch Logs for a build project.
|
1281
1216
|
#
|
1282
|
-
# @note When making an API call, you may pass CloudWatchLogsConfig
|
1283
|
-
# data as a hash:
|
1284
|
-
#
|
1285
|
-
# {
|
1286
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1287
|
-
# group_name: "String",
|
1288
|
-
# stream_name: "String",
|
1289
|
-
# }
|
1290
|
-
#
|
1291
1217
|
# @!attribute [rw] status
|
1292
1218
|
# The current status of the logs in CloudWatch Logs for a build
|
1293
1219
|
# project. Valid values are:
|
1294
1220
|
#
|
1295
|
-
# * `ENABLED
|
1221
|
+
# * `ENABLED`: CloudWatch Logs are enabled for this build project.
|
1296
1222
|
#
|
1297
|
-
# * `DISABLED
|
1223
|
+
# * `DISABLED`: CloudWatch Logs are not enabled for this build
|
1298
1224
|
# project.
|
1299
1225
|
# @return [String]
|
1300
1226
|
#
|
@@ -1440,162 +1366,6 @@ module Aws::CodeBuild
|
|
1440
1366
|
include Aws::Structure
|
1441
1367
|
end
|
1442
1368
|
|
1443
|
-
# @note When making an API call, you may pass CreateProjectInput
|
1444
|
-
# data as a hash:
|
1445
|
-
#
|
1446
|
-
# {
|
1447
|
-
# name: "ProjectName", # required
|
1448
|
-
# description: "ProjectDescription",
|
1449
|
-
# source: { # required
|
1450
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
1451
|
-
# location: "String",
|
1452
|
-
# git_clone_depth: 1,
|
1453
|
-
# git_submodules_config: {
|
1454
|
-
# fetch_submodules: false, # required
|
1455
|
-
# },
|
1456
|
-
# buildspec: "String",
|
1457
|
-
# auth: {
|
1458
|
-
# type: "OAUTH", # required, accepts OAUTH
|
1459
|
-
# resource: "String",
|
1460
|
-
# },
|
1461
|
-
# report_build_status: false,
|
1462
|
-
# build_status_config: {
|
1463
|
-
# context: "String",
|
1464
|
-
# target_url: "String",
|
1465
|
-
# },
|
1466
|
-
# insecure_ssl: false,
|
1467
|
-
# source_identifier: "String",
|
1468
|
-
# },
|
1469
|
-
# secondary_sources: [
|
1470
|
-
# {
|
1471
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
1472
|
-
# location: "String",
|
1473
|
-
# git_clone_depth: 1,
|
1474
|
-
# git_submodules_config: {
|
1475
|
-
# fetch_submodules: false, # required
|
1476
|
-
# },
|
1477
|
-
# buildspec: "String",
|
1478
|
-
# auth: {
|
1479
|
-
# type: "OAUTH", # required, accepts OAUTH
|
1480
|
-
# resource: "String",
|
1481
|
-
# },
|
1482
|
-
# report_build_status: false,
|
1483
|
-
# build_status_config: {
|
1484
|
-
# context: "String",
|
1485
|
-
# target_url: "String",
|
1486
|
-
# },
|
1487
|
-
# insecure_ssl: false,
|
1488
|
-
# source_identifier: "String",
|
1489
|
-
# },
|
1490
|
-
# ],
|
1491
|
-
# source_version: "String",
|
1492
|
-
# secondary_source_versions: [
|
1493
|
-
# {
|
1494
|
-
# source_identifier: "String", # required
|
1495
|
-
# source_version: "String", # required
|
1496
|
-
# },
|
1497
|
-
# ],
|
1498
|
-
# artifacts: { # required
|
1499
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
1500
|
-
# location: "String",
|
1501
|
-
# path: "String",
|
1502
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
1503
|
-
# name: "String",
|
1504
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
1505
|
-
# override_artifact_name: false,
|
1506
|
-
# encryption_disabled: false,
|
1507
|
-
# artifact_identifier: "String",
|
1508
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1509
|
-
# },
|
1510
|
-
# secondary_artifacts: [
|
1511
|
-
# {
|
1512
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
1513
|
-
# location: "String",
|
1514
|
-
# path: "String",
|
1515
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
1516
|
-
# name: "String",
|
1517
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
1518
|
-
# override_artifact_name: false,
|
1519
|
-
# encryption_disabled: false,
|
1520
|
-
# artifact_identifier: "String",
|
1521
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1522
|
-
# },
|
1523
|
-
# ],
|
1524
|
-
# cache: {
|
1525
|
-
# type: "NO_CACHE", # required, accepts NO_CACHE, S3, LOCAL
|
1526
|
-
# location: "String",
|
1527
|
-
# modes: ["LOCAL_DOCKER_LAYER_CACHE"], # accepts LOCAL_DOCKER_LAYER_CACHE, LOCAL_SOURCE_CACHE, LOCAL_CUSTOM_CACHE
|
1528
|
-
# },
|
1529
|
-
# environment: { # required
|
1530
|
-
# type: "WINDOWS_CONTAINER", # required, accepts WINDOWS_CONTAINER, LINUX_CONTAINER, LINUX_GPU_CONTAINER, ARM_CONTAINER, WINDOWS_SERVER_2019_CONTAINER
|
1531
|
-
# image: "NonEmptyString", # required
|
1532
|
-
# compute_type: "BUILD_GENERAL1_SMALL", # required, accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_2XLARGE
|
1533
|
-
# environment_variables: [
|
1534
|
-
# {
|
1535
|
-
# name: "NonEmptyString", # required
|
1536
|
-
# value: "String", # required
|
1537
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
1538
|
-
# },
|
1539
|
-
# ],
|
1540
|
-
# privileged_mode: false,
|
1541
|
-
# certificate: "String",
|
1542
|
-
# registry_credential: {
|
1543
|
-
# credential: "NonEmptyString", # required
|
1544
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
1545
|
-
# },
|
1546
|
-
# image_pull_credentials_type: "CODEBUILD", # accepts CODEBUILD, SERVICE_ROLE
|
1547
|
-
# },
|
1548
|
-
# service_role: "NonEmptyString", # required
|
1549
|
-
# timeout_in_minutes: 1,
|
1550
|
-
# queued_timeout_in_minutes: 1,
|
1551
|
-
# encryption_key: "NonEmptyString",
|
1552
|
-
# tags: [
|
1553
|
-
# {
|
1554
|
-
# key: "KeyInput",
|
1555
|
-
# value: "ValueInput",
|
1556
|
-
# },
|
1557
|
-
# ],
|
1558
|
-
# vpc_config: {
|
1559
|
-
# vpc_id: "NonEmptyString",
|
1560
|
-
# subnets: ["NonEmptyString"],
|
1561
|
-
# security_group_ids: ["NonEmptyString"],
|
1562
|
-
# },
|
1563
|
-
# badge_enabled: false,
|
1564
|
-
# logs_config: {
|
1565
|
-
# cloud_watch_logs: {
|
1566
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1567
|
-
# group_name: "String",
|
1568
|
-
# stream_name: "String",
|
1569
|
-
# },
|
1570
|
-
# s3_logs: {
|
1571
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1572
|
-
# location: "String",
|
1573
|
-
# encryption_disabled: false,
|
1574
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1575
|
-
# },
|
1576
|
-
# },
|
1577
|
-
# file_system_locations: [
|
1578
|
-
# {
|
1579
|
-
# type: "EFS", # accepts EFS
|
1580
|
-
# location: "String",
|
1581
|
-
# mount_point: "String",
|
1582
|
-
# identifier: "String",
|
1583
|
-
# mount_options: "String",
|
1584
|
-
# },
|
1585
|
-
# ],
|
1586
|
-
# build_batch_config: {
|
1587
|
-
# service_role: "NonEmptyString",
|
1588
|
-
# combine_artifacts: false,
|
1589
|
-
# restrictions: {
|
1590
|
-
# maximum_builds_allowed: 1,
|
1591
|
-
# compute_types_allowed: ["NonEmptyString"],
|
1592
|
-
# },
|
1593
|
-
# timeout_in_mins: 1,
|
1594
|
-
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
1595
|
-
# },
|
1596
|
-
# concurrent_build_limit: 1,
|
1597
|
-
# }
|
1598
|
-
#
|
1599
1369
|
# @!attribute [rw] name
|
1600
1370
|
# The name of the build project.
|
1601
1371
|
# @return [String]
|
@@ -1785,31 +1555,6 @@ module Aws::CodeBuild
|
|
1785
1555
|
include Aws::Structure
|
1786
1556
|
end
|
1787
1557
|
|
1788
|
-
# @note When making an API call, you may pass CreateReportGroupInput
|
1789
|
-
# data as a hash:
|
1790
|
-
#
|
1791
|
-
# {
|
1792
|
-
# name: "ReportGroupName", # required
|
1793
|
-
# type: "TEST", # required, accepts TEST, CODE_COVERAGE
|
1794
|
-
# export_config: { # required
|
1795
|
-
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
1796
|
-
# s3_destination: {
|
1797
|
-
# bucket: "NonEmptyString",
|
1798
|
-
# bucket_owner: "String",
|
1799
|
-
# path: "String",
|
1800
|
-
# packaging: "ZIP", # accepts ZIP, NONE
|
1801
|
-
# encryption_key: "NonEmptyString",
|
1802
|
-
# encryption_disabled: false,
|
1803
|
-
# },
|
1804
|
-
# },
|
1805
|
-
# tags: [
|
1806
|
-
# {
|
1807
|
-
# key: "KeyInput",
|
1808
|
-
# value: "ValueInput",
|
1809
|
-
# },
|
1810
|
-
# ],
|
1811
|
-
# }
|
1812
|
-
#
|
1813
1558
|
# @!attribute [rw] name
|
1814
1559
|
# The name of the report group.
|
1815
1560
|
# @return [String]
|
@@ -1853,24 +1598,6 @@ module Aws::CodeBuild
|
|
1853
1598
|
include Aws::Structure
|
1854
1599
|
end
|
1855
1600
|
|
1856
|
-
# @note When making an API call, you may pass CreateWebhookInput
|
1857
|
-
# data as a hash:
|
1858
|
-
#
|
1859
|
-
# {
|
1860
|
-
# project_name: "ProjectName", # required
|
1861
|
-
# branch_filter: "String",
|
1862
|
-
# filter_groups: [
|
1863
|
-
# [
|
1864
|
-
# {
|
1865
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
1866
|
-
# pattern: "String", # required
|
1867
|
-
# exclude_matched_pattern: false,
|
1868
|
-
# },
|
1869
|
-
# ],
|
1870
|
-
# ],
|
1871
|
-
# build_type: "BUILD", # accepts BUILD, BUILD_BATCH
|
1872
|
-
# }
|
1873
|
-
#
|
1874
1601
|
# @!attribute [rw] project_name
|
1875
1602
|
# The name of the CodeBuild project.
|
1876
1603
|
# @return [String]
|
@@ -1951,13 +1678,6 @@ module Aws::CodeBuild
|
|
1951
1678
|
include Aws::Structure
|
1952
1679
|
end
|
1953
1680
|
|
1954
|
-
# @note When making an API call, you may pass DeleteBuildBatchInput
|
1955
|
-
# data as a hash:
|
1956
|
-
#
|
1957
|
-
# {
|
1958
|
-
# id: "NonEmptyString", # required
|
1959
|
-
# }
|
1960
|
-
#
|
1961
1681
|
# @!attribute [rw] id
|
1962
1682
|
# The identifier of the batch build to delete.
|
1963
1683
|
# @return [String]
|
@@ -1994,13 +1714,6 @@ module Aws::CodeBuild
|
|
1994
1714
|
include Aws::Structure
|
1995
1715
|
end
|
1996
1716
|
|
1997
|
-
# @note When making an API call, you may pass DeleteProjectInput
|
1998
|
-
# data as a hash:
|
1999
|
-
#
|
2000
|
-
# {
|
2001
|
-
# name: "NonEmptyString", # required
|
2002
|
-
# }
|
2003
|
-
#
|
2004
1717
|
# @!attribute [rw] name
|
2005
1718
|
# The name of the build project.
|
2006
1719
|
# @return [String]
|
@@ -2017,14 +1730,6 @@ module Aws::CodeBuild
|
|
2017
1730
|
#
|
2018
1731
|
class DeleteProjectOutput < Aws::EmptyStructure; end
|
2019
1732
|
|
2020
|
-
# @note When making an API call, you may pass DeleteReportGroupInput
|
2021
|
-
# data as a hash:
|
2022
|
-
#
|
2023
|
-
# {
|
2024
|
-
# arn: "NonEmptyString", # required
|
2025
|
-
# delete_reports: false,
|
2026
|
-
# }
|
2027
|
-
#
|
2028
1733
|
# @!attribute [rw] arn
|
2029
1734
|
# The ARN of the report group to delete.
|
2030
1735
|
# @return [String]
|
@@ -2058,13 +1763,6 @@ module Aws::CodeBuild
|
|
2058
1763
|
#
|
2059
1764
|
class DeleteReportGroupOutput < Aws::EmptyStructure; end
|
2060
1765
|
|
2061
|
-
# @note When making an API call, you may pass DeleteReportInput
|
2062
|
-
# data as a hash:
|
2063
|
-
#
|
2064
|
-
# {
|
2065
|
-
# arn: "NonEmptyString", # required
|
2066
|
-
# }
|
2067
|
-
#
|
2068
1766
|
# @!attribute [rw] arn
|
2069
1767
|
# The ARN of the report to delete.
|
2070
1768
|
# @return [String]
|
@@ -2081,13 +1779,6 @@ module Aws::CodeBuild
|
|
2081
1779
|
#
|
2082
1780
|
class DeleteReportOutput < Aws::EmptyStructure; end
|
2083
1781
|
|
2084
|
-
# @note When making an API call, you may pass DeleteResourcePolicyInput
|
2085
|
-
# data as a hash:
|
2086
|
-
#
|
2087
|
-
# {
|
2088
|
-
# resource_arn: "NonEmptyString", # required
|
2089
|
-
# }
|
2090
|
-
#
|
2091
1782
|
# @!attribute [rw] resource_arn
|
2092
1783
|
# The ARN of the resource that is associated with the resource policy.
|
2093
1784
|
# @return [String]
|
@@ -2104,13 +1795,6 @@ module Aws::CodeBuild
|
|
2104
1795
|
#
|
2105
1796
|
class DeleteResourcePolicyOutput < Aws::EmptyStructure; end
|
2106
1797
|
|
2107
|
-
# @note When making an API call, you may pass DeleteSourceCredentialsInput
|
2108
|
-
# data as a hash:
|
2109
|
-
#
|
2110
|
-
# {
|
2111
|
-
# arn: "NonEmptyString", # required
|
2112
|
-
# }
|
2113
|
-
#
|
2114
1798
|
# @!attribute [rw] arn
|
2115
1799
|
# The Amazon Resource Name (ARN) of the token.
|
2116
1800
|
# @return [String]
|
@@ -2135,13 +1819,6 @@ module Aws::CodeBuild
|
|
2135
1819
|
include Aws::Structure
|
2136
1820
|
end
|
2137
1821
|
|
2138
|
-
# @note When making an API call, you may pass DeleteWebhookInput
|
2139
|
-
# data as a hash:
|
2140
|
-
#
|
2141
|
-
# {
|
2142
|
-
# project_name: "ProjectName", # required
|
2143
|
-
# }
|
2144
|
-
#
|
2145
1822
|
# @!attribute [rw] project_name
|
2146
1823
|
# The name of the CodeBuild project.
|
2147
1824
|
# @return [String]
|
@@ -2158,19 +1835,6 @@ module Aws::CodeBuild
|
|
2158
1835
|
#
|
2159
1836
|
class DeleteWebhookOutput < Aws::EmptyStructure; end
|
2160
1837
|
|
2161
|
-
# @note When making an API call, you may pass DescribeCodeCoveragesInput
|
2162
|
-
# data as a hash:
|
2163
|
-
#
|
2164
|
-
# {
|
2165
|
-
# report_arn: "NonEmptyString", # required
|
2166
|
-
# next_token: "String",
|
2167
|
-
# max_results: 1,
|
2168
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2169
|
-
# sort_by: "LINE_COVERAGE_PERCENTAGE", # accepts LINE_COVERAGE_PERCENTAGE, FILE_PATH
|
2170
|
-
# min_line_coverage_percentage: 1.0,
|
2171
|
-
# max_line_coverage_percentage: 1.0,
|
2172
|
-
# }
|
2173
|
-
#
|
2174
1838
|
# @!attribute [rw] report_arn
|
2175
1839
|
# The ARN of the report for which test cases are returned.
|
2176
1840
|
# @return [String]
|
@@ -2244,19 +1908,6 @@ module Aws::CodeBuild
|
|
2244
1908
|
include Aws::Structure
|
2245
1909
|
end
|
2246
1910
|
|
2247
|
-
# @note When making an API call, you may pass DescribeTestCasesInput
|
2248
|
-
# data as a hash:
|
2249
|
-
#
|
2250
|
-
# {
|
2251
|
-
# report_arn: "String", # required
|
2252
|
-
# next_token: "String",
|
2253
|
-
# max_results: 1,
|
2254
|
-
# filter: {
|
2255
|
-
# status: "String",
|
2256
|
-
# keyword: "String",
|
2257
|
-
# },
|
2258
|
-
# }
|
2259
|
-
#
|
2260
1911
|
# @!attribute [rw] report_arn
|
2261
1912
|
# The ARN of the report for which test cases are returned.
|
2262
1913
|
# @return [String]
|
@@ -2384,15 +2035,6 @@ module Aws::CodeBuild
|
|
2384
2035
|
# Information about an environment variable for a build project or a
|
2385
2036
|
# build.
|
2386
2037
|
#
|
2387
|
-
# @note When making an API call, you may pass EnvironmentVariable
|
2388
|
-
# data as a hash:
|
2389
|
-
#
|
2390
|
-
# {
|
2391
|
-
# name: "NonEmptyString", # required
|
2392
|
-
# value: "String", # required
|
2393
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
2394
|
-
# }
|
2395
|
-
#
|
2396
2038
|
# @!attribute [rw] name
|
2397
2039
|
# The name or key of the environment variable.
|
2398
2040
|
# @return [String]
|
@@ -2411,15 +2053,15 @@ module Aws::CodeBuild
|
|
2411
2053
|
# @!attribute [rw] type
|
2412
2054
|
# The type of environment variable. Valid values include:
|
2413
2055
|
#
|
2414
|
-
# * `PARAMETER_STORE
|
2056
|
+
# * `PARAMETER_STORE`: An environment variable stored in Systems
|
2415
2057
|
# Manager Parameter Store. To learn how to specify a parameter store
|
2416
2058
|
# environment variable, see [env/parameter-store][1] in the
|
2417
2059
|
# *CodeBuild User Guide*.
|
2418
2060
|
#
|
2419
|
-
# * `PLAINTEXT
|
2420
|
-
#
|
2061
|
+
# * `PLAINTEXT`: An environment variable in plain text format. This is
|
2062
|
+
# the default value.
|
2421
2063
|
#
|
2422
|
-
# * `SECRETS_MANAGER
|
2064
|
+
# * `SECRETS_MANAGER`: An environment variable stored in Secrets
|
2423
2065
|
# Manager. To learn how to specify a secrets manager environment
|
2424
2066
|
# variable, see [env/secrets-manager][2] in the *CodeBuild User
|
2425
2067
|
# Guide*.
|
@@ -2475,15 +2117,6 @@ module Aws::CodeBuild
|
|
2475
2117
|
include Aws::Structure
|
2476
2118
|
end
|
2477
2119
|
|
2478
|
-
# @note When making an API call, you may pass GetReportGroupTrendInput
|
2479
|
-
# data as a hash:
|
2480
|
-
#
|
2481
|
-
# {
|
2482
|
-
# report_group_arn: "NonEmptyString", # required
|
2483
|
-
# num_of_reports: 1,
|
2484
|
-
# trend_field: "PASS_RATE", # required, accepts PASS_RATE, DURATION, TOTAL, LINE_COVERAGE, LINES_COVERED, LINES_MISSED, BRANCH_COVERAGE, BRANCHES_COVERED, BRANCHES_MISSED
|
2485
|
-
# }
|
2486
|
-
#
|
2487
2120
|
# @!attribute [rw] report_group_arn
|
2488
2121
|
# The ARN of the report group that contains the reports to analyze.
|
2489
2122
|
# @return [String]
|
@@ -2575,13 +2208,6 @@ module Aws::CodeBuild
|
|
2575
2208
|
include Aws::Structure
|
2576
2209
|
end
|
2577
2210
|
|
2578
|
-
# @note When making an API call, you may pass GetResourcePolicyInput
|
2579
|
-
# data as a hash:
|
2580
|
-
#
|
2581
|
-
# {
|
2582
|
-
# resource_arn: "NonEmptyString", # required
|
2583
|
-
# }
|
2584
|
-
#
|
2585
2211
|
# @!attribute [rw] resource_arn
|
2586
2212
|
# The ARN of the resource that is associated with the resource policy.
|
2587
2213
|
# @return [String]
|
@@ -2610,13 +2236,6 @@ module Aws::CodeBuild
|
|
2610
2236
|
# Information about the Git submodules configuration for an CodeBuild
|
2611
2237
|
# build project.
|
2612
2238
|
#
|
2613
|
-
# @note When making an API call, you may pass GitSubmodulesConfig
|
2614
|
-
# data as a hash:
|
2615
|
-
#
|
2616
|
-
# {
|
2617
|
-
# fetch_submodules: false, # required
|
2618
|
-
# }
|
2619
|
-
#
|
2620
2239
|
# @!attribute [rw] fetch_submodules
|
2621
2240
|
# Set to true to fetch Git submodules for your CodeBuild build
|
2622
2241
|
# project.
|
@@ -2630,17 +2249,6 @@ module Aws::CodeBuild
|
|
2630
2249
|
include Aws::Structure
|
2631
2250
|
end
|
2632
2251
|
|
2633
|
-
# @note When making an API call, you may pass ImportSourceCredentialsInput
|
2634
|
-
# data as a hash:
|
2635
|
-
#
|
2636
|
-
# {
|
2637
|
-
# username: "NonEmptyString",
|
2638
|
-
# token: "SensitiveNonEmptyString", # required
|
2639
|
-
# server_type: "GITHUB", # required, accepts GITHUB, BITBUCKET, GITHUB_ENTERPRISE
|
2640
|
-
# auth_type: "OAUTH", # required, accepts OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN
|
2641
|
-
# should_overwrite: false,
|
2642
|
-
# }
|
2643
|
-
#
|
2644
2252
|
# @!attribute [rw] username
|
2645
2253
|
# The Bitbucket username when the `authType` is BASIC\_AUTH. This
|
2646
2254
|
# parameter is not valid for other types of source providers or
|
@@ -2699,13 +2307,6 @@ module Aws::CodeBuild
|
|
2699
2307
|
#
|
2700
2308
|
class InvalidInputException < Aws::EmptyStructure; end
|
2701
2309
|
|
2702
|
-
# @note When making an API call, you may pass InvalidateProjectCacheInput
|
2703
|
-
# data as a hash:
|
2704
|
-
#
|
2705
|
-
# {
|
2706
|
-
# project_name: "NonEmptyString", # required
|
2707
|
-
# }
|
2708
|
-
#
|
2709
2310
|
# @!attribute [rw] project_name
|
2710
2311
|
# The name of the CodeBuild build project that the cache is reset for.
|
2711
2312
|
# @return [String]
|
@@ -2722,19 +2323,6 @@ module Aws::CodeBuild
|
|
2722
2323
|
#
|
2723
2324
|
class InvalidateProjectCacheOutput < Aws::EmptyStructure; end
|
2724
2325
|
|
2725
|
-
# @note When making an API call, you may pass ListBuildBatchesForProjectInput
|
2726
|
-
# data as a hash:
|
2727
|
-
#
|
2728
|
-
# {
|
2729
|
-
# project_name: "NonEmptyString",
|
2730
|
-
# filter: {
|
2731
|
-
# status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, FAULT, TIMED_OUT, IN_PROGRESS, STOPPED
|
2732
|
-
# },
|
2733
|
-
# max_results: 1,
|
2734
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2735
|
-
# next_token: "String",
|
2736
|
-
# }
|
2737
|
-
#
|
2738
2326
|
# @!attribute [rw] project_name
|
2739
2327
|
# The name of the project.
|
2740
2328
|
# @return [String]
|
@@ -2752,11 +2340,11 @@ module Aws::CodeBuild
|
|
2752
2340
|
# Specifies the sort order of the returned items. Valid values
|
2753
2341
|
# include:
|
2754
2342
|
#
|
2755
|
-
# * `ASCENDING
|
2343
|
+
# * `ASCENDING`: List the batch build identifiers in ascending order
|
2756
2344
|
# by identifier.
|
2757
2345
|
#
|
2758
|
-
# * `DESCENDING
|
2759
|
-
#
|
2346
|
+
# * `DESCENDING`: List the batch build identifiers in descending order
|
2347
|
+
# by identifier.
|
2760
2348
|
# @return [String]
|
2761
2349
|
#
|
2762
2350
|
# @!attribute [rw] next_token
|
@@ -2796,18 +2384,6 @@ module Aws::CodeBuild
|
|
2796
2384
|
include Aws::Structure
|
2797
2385
|
end
|
2798
2386
|
|
2799
|
-
# @note When making an API call, you may pass ListBuildBatchesInput
|
2800
|
-
# data as a hash:
|
2801
|
-
#
|
2802
|
-
# {
|
2803
|
-
# filter: {
|
2804
|
-
# status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, FAULT, TIMED_OUT, IN_PROGRESS, STOPPED
|
2805
|
-
# },
|
2806
|
-
# max_results: 1,
|
2807
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2808
|
-
# next_token: "String",
|
2809
|
-
# }
|
2810
|
-
#
|
2811
2387
|
# @!attribute [rw] filter
|
2812
2388
|
# A `BuildBatchFilter` object that specifies the filters for the
|
2813
2389
|
# search.
|
@@ -2821,11 +2397,11 @@ module Aws::CodeBuild
|
|
2821
2397
|
# Specifies the sort order of the returned items. Valid values
|
2822
2398
|
# include:
|
2823
2399
|
#
|
2824
|
-
# * `ASCENDING
|
2400
|
+
# * `ASCENDING`: List the batch build identifiers in ascending order
|
2825
2401
|
# by identifier.
|
2826
2402
|
#
|
2827
|
-
# * `DESCENDING
|
2828
|
-
#
|
2403
|
+
# * `DESCENDING`: List the batch build identifiers in descending order
|
2404
|
+
# by identifier.
|
2829
2405
|
# @return [String]
|
2830
2406
|
#
|
2831
2407
|
# @!attribute [rw] next_token
|
@@ -2864,15 +2440,6 @@ module Aws::CodeBuild
|
|
2864
2440
|
include Aws::Structure
|
2865
2441
|
end
|
2866
2442
|
|
2867
|
-
# @note When making an API call, you may pass ListBuildsForProjectInput
|
2868
|
-
# data as a hash:
|
2869
|
-
#
|
2870
|
-
# {
|
2871
|
-
# project_name: "NonEmptyString", # required
|
2872
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2873
|
-
# next_token: "String",
|
2874
|
-
# }
|
2875
|
-
#
|
2876
2443
|
# @!attribute [rw] project_name
|
2877
2444
|
# The name of the CodeBuild project.
|
2878
2445
|
# @return [String]
|
@@ -2884,10 +2451,10 @@ module Aws::CodeBuild
|
|
2884
2451
|
#
|
2885
2452
|
# Valid values include:
|
2886
2453
|
#
|
2887
|
-
# * `ASCENDING
|
2454
|
+
# * `ASCENDING`: List the build identifiers in ascending order, by
|
2888
2455
|
# build number.
|
2889
2456
|
#
|
2890
|
-
# * `DESCENDING
|
2457
|
+
# * `DESCENDING`: List the build identifiers in descending order, by
|
2891
2458
|
# build number.
|
2892
2459
|
#
|
2893
2460
|
# If the project has more than 100 builds, setting the sort order will
|
@@ -2935,20 +2502,12 @@ module Aws::CodeBuild
|
|
2935
2502
|
include Aws::Structure
|
2936
2503
|
end
|
2937
2504
|
|
2938
|
-
# @note When making an API call, you may pass ListBuildsInput
|
2939
|
-
# data as a hash:
|
2940
|
-
#
|
2941
|
-
# {
|
2942
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2943
|
-
# next_token: "String",
|
2944
|
-
# }
|
2945
|
-
#
|
2946
2505
|
# @!attribute [rw] sort_order
|
2947
2506
|
# The order to list build IDs. Valid values include:
|
2948
2507
|
#
|
2949
|
-
# * `ASCENDING
|
2508
|
+
# * `ASCENDING`: List the build IDs in ascending order by build ID.
|
2950
2509
|
#
|
2951
|
-
# * `DESCENDING
|
2510
|
+
# * `DESCENDING`: List the build IDs in descending order by build ID.
|
2952
2511
|
# @return [String]
|
2953
2512
|
#
|
2954
2513
|
# @!attribute [rw] next_token
|
@@ -3009,26 +2568,16 @@ module Aws::CodeBuild
|
|
3009
2568
|
include Aws::Structure
|
3010
2569
|
end
|
3011
2570
|
|
3012
|
-
# @note When making an API call, you may pass ListProjectsInput
|
3013
|
-
# data as a hash:
|
3014
|
-
#
|
3015
|
-
# {
|
3016
|
-
# sort_by: "NAME", # accepts NAME, CREATED_TIME, LAST_MODIFIED_TIME
|
3017
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3018
|
-
# next_token: "NonEmptyString",
|
3019
|
-
# }
|
3020
|
-
#
|
3021
2571
|
# @!attribute [rw] sort_by
|
3022
2572
|
# The criterion to be used to list build project names. Valid values
|
3023
2573
|
# include:
|
3024
2574
|
#
|
3025
|
-
# * `CREATED_TIME
|
3026
|
-
# created.
|
2575
|
+
# * `CREATED_TIME`: List based on when each build project was created.
|
3027
2576
|
#
|
3028
|
-
# * `LAST_MODIFIED_TIME
|
2577
|
+
# * `LAST_MODIFIED_TIME`: List based on when information about each
|
3029
2578
|
# build project was last changed.
|
3030
2579
|
#
|
3031
|
-
# * `NAME
|
2580
|
+
# * `NAME`: List based on each build project's name.
|
3032
2581
|
#
|
3033
2582
|
# Use `sortOrder` to specify in what order to list the build project
|
3034
2583
|
# names based on the preceding criteria.
|
@@ -3037,9 +2586,9 @@ module Aws::CodeBuild
|
|
3037
2586
|
# @!attribute [rw] sort_order
|
3038
2587
|
# The order in which to list build projects. Valid values include:
|
3039
2588
|
#
|
3040
|
-
# * `ASCENDING
|
2589
|
+
# * `ASCENDING`: List in ascending order.
|
3041
2590
|
#
|
3042
|
-
# * `DESCENDING
|
2591
|
+
# * `DESCENDING`: List in descending order.
|
3043
2592
|
#
|
3044
2593
|
# Use `sortBy` to specify the criterion to be used to list build
|
3045
2594
|
# project names.
|
@@ -3086,16 +2635,6 @@ module Aws::CodeBuild
|
|
3086
2635
|
include Aws::Structure
|
3087
2636
|
end
|
3088
2637
|
|
3089
|
-
# @note When making an API call, you may pass ListReportGroupsInput
|
3090
|
-
# data as a hash:
|
3091
|
-
#
|
3092
|
-
# {
|
3093
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3094
|
-
# sort_by: "NAME", # accepts NAME, CREATED_TIME, LAST_MODIFIED_TIME
|
3095
|
-
# next_token: "String",
|
3096
|
-
# max_results: 1,
|
3097
|
-
# }
|
3098
|
-
#
|
3099
2638
|
# @!attribute [rw] sort_order
|
3100
2639
|
# Used to specify the order to sort the list of returned report
|
3101
2640
|
# groups. Valid values are `ASCENDING` and `DESCENDING`.
|
@@ -3105,12 +2644,12 @@ module Aws::CodeBuild
|
|
3105
2644
|
# The criterion to be used to list build report groups. Valid values
|
3106
2645
|
# include:
|
3107
2646
|
#
|
3108
|
-
# * `CREATED_TIME
|
2647
|
+
# * `CREATED_TIME`: List based on when each report group was created.
|
3109
2648
|
#
|
3110
|
-
# * `LAST_MODIFIED_TIME
|
2649
|
+
# * `LAST_MODIFIED_TIME`: List based on when each report group was
|
3111
2650
|
# last changed.
|
3112
2651
|
#
|
3113
|
-
# * `NAME
|
2652
|
+
# * `NAME`: List based on each report group's name.
|
3114
2653
|
# @return [String]
|
3115
2654
|
#
|
3116
2655
|
# @!attribute [rw] next_token
|
@@ -3164,19 +2703,6 @@ module Aws::CodeBuild
|
|
3164
2703
|
include Aws::Structure
|
3165
2704
|
end
|
3166
2705
|
|
3167
|
-
# @note When making an API call, you may pass ListReportsForReportGroupInput
|
3168
|
-
# data as a hash:
|
3169
|
-
#
|
3170
|
-
# {
|
3171
|
-
# report_group_arn: "String", # required
|
3172
|
-
# next_token: "String",
|
3173
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3174
|
-
# max_results: 1,
|
3175
|
-
# filter: {
|
3176
|
-
# status: "GENERATING", # accepts GENERATING, SUCCEEDED, FAILED, INCOMPLETE, DELETING
|
3177
|
-
# },
|
3178
|
-
# }
|
3179
|
-
#
|
3180
2706
|
# @!attribute [rw] report_group_arn
|
3181
2707
|
# The ARN of the report group for which you want to return report
|
3182
2708
|
# ARNs.
|
@@ -3242,26 +2768,14 @@ module Aws::CodeBuild
|
|
3242
2768
|
include Aws::Structure
|
3243
2769
|
end
|
3244
2770
|
|
3245
|
-
# @note When making an API call, you may pass ListReportsInput
|
3246
|
-
# data as a hash:
|
3247
|
-
#
|
3248
|
-
# {
|
3249
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3250
|
-
# next_token: "String",
|
3251
|
-
# max_results: 1,
|
3252
|
-
# filter: {
|
3253
|
-
# status: "GENERATING", # accepts GENERATING, SUCCEEDED, FAILED, INCOMPLETE, DELETING
|
3254
|
-
# },
|
3255
|
-
# }
|
3256
|
-
#
|
3257
2771
|
# @!attribute [rw] sort_order
|
3258
2772
|
# Specifies the sort order for the list of returned reports. Valid
|
3259
2773
|
# values are:
|
3260
2774
|
#
|
3261
|
-
# * `ASCENDING
|
2775
|
+
# * `ASCENDING`: return reports in chronological order based on their
|
3262
2776
|
# creation date.
|
3263
2777
|
#
|
3264
|
-
# * `DESCENDING
|
2778
|
+
# * `DESCENDING`: return reports in the reverse chronological order
|
3265
2779
|
# based on their creation date.
|
3266
2780
|
# @return [String]
|
3267
2781
|
#
|
@@ -3320,23 +2834,13 @@ module Aws::CodeBuild
|
|
3320
2834
|
include Aws::Structure
|
3321
2835
|
end
|
3322
2836
|
|
3323
|
-
# @note When making an API call, you may pass ListSharedProjectsInput
|
3324
|
-
# data as a hash:
|
3325
|
-
#
|
3326
|
-
# {
|
3327
|
-
# sort_by: "ARN", # accepts ARN, MODIFIED_TIME
|
3328
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3329
|
-
# max_results: 1,
|
3330
|
-
# next_token: "NonEmptyString",
|
3331
|
-
# }
|
3332
|
-
#
|
3333
2837
|
# @!attribute [rw] sort_by
|
3334
2838
|
# The criterion to be used to list build projects shared with the
|
3335
2839
|
# current Amazon Web Services account or user. Valid values include:
|
3336
2840
|
#
|
3337
|
-
# * `ARN
|
2841
|
+
# * `ARN`: List based on the ARN.
|
3338
2842
|
#
|
3339
|
-
# * `MODIFIED_TIME
|
2843
|
+
# * `MODIFIED_TIME`: List based on when information about the shared
|
3340
2844
|
# project was last changed.
|
3341
2845
|
# @return [String]
|
3342
2846
|
#
|
@@ -3344,9 +2848,9 @@ module Aws::CodeBuild
|
|
3344
2848
|
# The order in which to list shared build projects. Valid values
|
3345
2849
|
# include:
|
3346
2850
|
#
|
3347
|
-
# * `ASCENDING
|
2851
|
+
# * `ASCENDING`: List in ascending order.
|
3348
2852
|
#
|
3349
|
-
# * `DESCENDING
|
2853
|
+
# * `DESCENDING`: List in descending order.
|
3350
2854
|
# @return [String]
|
3351
2855
|
#
|
3352
2856
|
# @!attribute [rw] max_results
|
@@ -3400,32 +2904,22 @@ module Aws::CodeBuild
|
|
3400
2904
|
include Aws::Structure
|
3401
2905
|
end
|
3402
2906
|
|
3403
|
-
# @note When making an API call, you may pass ListSharedReportGroupsInput
|
3404
|
-
# data as a hash:
|
3405
|
-
#
|
3406
|
-
# {
|
3407
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3408
|
-
# sort_by: "ARN", # accepts ARN, MODIFIED_TIME
|
3409
|
-
# next_token: "String",
|
3410
|
-
# max_results: 1,
|
3411
|
-
# }
|
3412
|
-
#
|
3413
2907
|
# @!attribute [rw] sort_order
|
3414
2908
|
# The order in which to list shared report groups. Valid values
|
3415
2909
|
# include:
|
3416
2910
|
#
|
3417
|
-
# * `ASCENDING
|
2911
|
+
# * `ASCENDING`: List in ascending order.
|
3418
2912
|
#
|
3419
|
-
# * `DESCENDING
|
2913
|
+
# * `DESCENDING`: List in descending order.
|
3420
2914
|
# @return [String]
|
3421
2915
|
#
|
3422
2916
|
# @!attribute [rw] sort_by
|
3423
2917
|
# The criterion to be used to list report groups shared with the
|
3424
2918
|
# current Amazon Web Services account or user. Valid values include:
|
3425
2919
|
#
|
3426
|
-
# * `ARN
|
2920
|
+
# * `ARN`: List based on the ARN.
|
3427
2921
|
#
|
3428
|
-
# * `MODIFIED_TIME
|
2922
|
+
# * `MODIFIED_TIME`: List based on when information about the shared
|
3429
2923
|
# report group was last changed.
|
3430
2924
|
# @return [String]
|
3431
2925
|
#
|
@@ -3503,23 +2997,6 @@ module Aws::CodeBuild
|
|
3503
2997
|
# Information about logs for a build project. These can be logs in
|
3504
2998
|
# CloudWatch Logs, built in a specified S3 bucket, or both.
|
3505
2999
|
#
|
3506
|
-
# @note When making an API call, you may pass LogsConfig
|
3507
|
-
# data as a hash:
|
3508
|
-
#
|
3509
|
-
# {
|
3510
|
-
# cloud_watch_logs: {
|
3511
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
3512
|
-
# group_name: "String",
|
3513
|
-
# stream_name: "String",
|
3514
|
-
# },
|
3515
|
-
# s3_logs: {
|
3516
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
3517
|
-
# location: "String",
|
3518
|
-
# encryption_disabled: false,
|
3519
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
3520
|
-
# },
|
3521
|
-
# }
|
3522
|
-
#
|
3523
3000
|
# @!attribute [rw] cloud_watch_logs
|
3524
3001
|
# Information about CloudWatch Logs for a build project. CloudWatch
|
3525
3002
|
# Logs are enabled by default.
|
@@ -3873,36 +3350,20 @@ module Aws::CodeBuild
|
|
3873
3350
|
|
3874
3351
|
# Information about the build output artifacts for the build project.
|
3875
3352
|
#
|
3876
|
-
# @note When making an API call, you may pass ProjectArtifacts
|
3877
|
-
# data as a hash:
|
3878
|
-
#
|
3879
|
-
# {
|
3880
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
3881
|
-
# location: "String",
|
3882
|
-
# path: "String",
|
3883
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
3884
|
-
# name: "String",
|
3885
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
3886
|
-
# override_artifact_name: false,
|
3887
|
-
# encryption_disabled: false,
|
3888
|
-
# artifact_identifier: "String",
|
3889
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
3890
|
-
# }
|
3891
|
-
#
|
3892
3353
|
# @!attribute [rw] type
|
3893
3354
|
# The type of build output artifact. Valid values include:
|
3894
3355
|
#
|
3895
|
-
# * `CODEPIPELINE
|
3356
|
+
# * `CODEPIPELINE`: The build project has build output generated
|
3896
3357
|
# through CodePipeline.
|
3897
3358
|
#
|
3898
3359
|
# <note markdown="1"> The `CODEPIPELINE` type is not supported for `secondaryArtifacts`.
|
3899
3360
|
#
|
3900
3361
|
# </note>
|
3901
3362
|
#
|
3902
|
-
# * `NO_ARTIFACTS
|
3363
|
+
# * `NO_ARTIFACTS`: The build project does not produce any build
|
3903
3364
|
# output.
|
3904
3365
|
#
|
3905
|
-
# * `S3
|
3366
|
+
# * `S3`: The build project stores build output in Amazon S3.
|
3906
3367
|
# @return [String]
|
3907
3368
|
#
|
3908
3369
|
# @!attribute [rw] location
|
@@ -3951,10 +3412,10 @@ module Aws::CodeBuild
|
|
3951
3412
|
#
|
3952
3413
|
# * If `type` is set to `S3`, valid values include:
|
3953
3414
|
#
|
3954
|
-
# * `BUILD_ID
|
3415
|
+
# * `BUILD_ID`: Include the build ID in the location of the build
|
3955
3416
|
# output artifact.
|
3956
3417
|
#
|
3957
|
-
# * `NONE
|
3418
|
+
# * `NONE`: Do not include the build ID. This is the default if
|
3958
3419
|
# `namespaceType` is not specified.
|
3959
3420
|
#
|
3960
3421
|
# For example, if `path` is set to `MyArtifacts`, `namespaceType` is
|
@@ -4004,11 +3465,11 @@ module Aws::CodeBuild
|
|
4004
3465
|
#
|
4005
3466
|
# * If `type` is set to `S3`, valid values include:
|
4006
3467
|
#
|
4007
|
-
# * `NONE
|
3468
|
+
# * `NONE`: CodeBuild creates in the output bucket a folder that
|
4008
3469
|
# contains the build output. This is the default if `packaging` is
|
4009
3470
|
# not specified.
|
4010
3471
|
#
|
4011
|
-
# * `ZIP
|
3472
|
+
# * `ZIP`: CodeBuild creates in the output bucket a ZIP file that
|
4012
3473
|
# contains the build output.
|
4013
3474
|
# @return [String]
|
4014
3475
|
#
|
@@ -4117,20 +3578,6 @@ module Aws::CodeBuild
|
|
4117
3578
|
|
4118
3579
|
# Contains configuration information about a batch build project.
|
4119
3580
|
#
|
4120
|
-
# @note When making an API call, you may pass ProjectBuildBatchConfig
|
4121
|
-
# data as a hash:
|
4122
|
-
#
|
4123
|
-
# {
|
4124
|
-
# service_role: "NonEmptyString",
|
4125
|
-
# combine_artifacts: false,
|
4126
|
-
# restrictions: {
|
4127
|
-
# maximum_builds_allowed: 1,
|
4128
|
-
# compute_types_allowed: ["NonEmptyString"],
|
4129
|
-
# },
|
4130
|
-
# timeout_in_mins: 1,
|
4131
|
-
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
4132
|
-
# }
|
4133
|
-
#
|
4134
3581
|
# @!attribute [rw] service_role
|
4135
3582
|
# Specifies the service role ARN for the batch build project.
|
4136
3583
|
# @return [String]
|
@@ -4181,32 +3628,23 @@ module Aws::CodeBuild
|
|
4181
3628
|
|
4182
3629
|
# Information about the cache for the build project.
|
4183
3630
|
#
|
4184
|
-
# @note When making an API call, you may pass ProjectCache
|
4185
|
-
# data as a hash:
|
4186
|
-
#
|
4187
|
-
# {
|
4188
|
-
# type: "NO_CACHE", # required, accepts NO_CACHE, S3, LOCAL
|
4189
|
-
# location: "String",
|
4190
|
-
# modes: ["LOCAL_DOCKER_LAYER_CACHE"], # accepts LOCAL_DOCKER_LAYER_CACHE, LOCAL_SOURCE_CACHE, LOCAL_CUSTOM_CACHE
|
4191
|
-
# }
|
4192
|
-
#
|
4193
3631
|
# @!attribute [rw] type
|
4194
3632
|
# The type of cache used by the build project. Valid values include:
|
4195
3633
|
#
|
4196
|
-
# * `NO_CACHE
|
3634
|
+
# * `NO_CACHE`: The build project does not use any cache.
|
4197
3635
|
#
|
4198
|
-
# * `S3
|
3636
|
+
# * `S3`: The build project reads and writes from and to S3.
|
4199
3637
|
#
|
4200
|
-
# * `LOCAL
|
3638
|
+
# * `LOCAL`: The build project stores a cache locally on a build host
|
4201
3639
|
# that is only available to that build host.
|
4202
3640
|
# @return [String]
|
4203
3641
|
#
|
4204
3642
|
# @!attribute [rw] location
|
4205
3643
|
# Information about the cache location:
|
4206
3644
|
#
|
4207
|
-
# * `NO_CACHE` or `LOCAL
|
3645
|
+
# * `NO_CACHE` or `LOCAL`: This value is ignored.
|
4208
3646
|
#
|
4209
|
-
# * `S3
|
3647
|
+
# * `S3`: This is the S3 bucket name/prefix.
|
4210
3648
|
# @return [String]
|
4211
3649
|
#
|
4212
3650
|
# @!attribute [rw] modes
|
@@ -4272,29 +3710,6 @@ module Aws::CodeBuild
|
|
4272
3710
|
|
4273
3711
|
# Information about the build environment of the build project.
|
4274
3712
|
#
|
4275
|
-
# @note When making an API call, you may pass ProjectEnvironment
|
4276
|
-
# data as a hash:
|
4277
|
-
#
|
4278
|
-
# {
|
4279
|
-
# type: "WINDOWS_CONTAINER", # required, accepts WINDOWS_CONTAINER, LINUX_CONTAINER, LINUX_GPU_CONTAINER, ARM_CONTAINER, WINDOWS_SERVER_2019_CONTAINER
|
4280
|
-
# image: "NonEmptyString", # required
|
4281
|
-
# compute_type: "BUILD_GENERAL1_SMALL", # required, accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_2XLARGE
|
4282
|
-
# environment_variables: [
|
4283
|
-
# {
|
4284
|
-
# name: "NonEmptyString", # required
|
4285
|
-
# value: "String", # required
|
4286
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
4287
|
-
# },
|
4288
|
-
# ],
|
4289
|
-
# privileged_mode: false,
|
4290
|
-
# certificate: "String",
|
4291
|
-
# registry_credential: {
|
4292
|
-
# credential: "NonEmptyString", # required
|
4293
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
4294
|
-
# },
|
4295
|
-
# image_pull_credentials_type: "CODEBUILD", # accepts CODEBUILD, SERVICE_ROLE
|
4296
|
-
# }
|
4297
|
-
#
|
4298
3713
|
# @!attribute [rw] type
|
4299
3714
|
# The type of build environment to use for related builds.
|
4300
3715
|
#
|
@@ -4358,20 +3773,20 @@ module Aws::CodeBuild
|
|
4358
3773
|
# Information about the compute resources the build project uses.
|
4359
3774
|
# Available values include:
|
4360
3775
|
#
|
4361
|
-
# * `BUILD_GENERAL1_SMALL
|
3776
|
+
# * `BUILD_GENERAL1_SMALL`: Use up to 3 GB memory and 2 vCPUs for
|
4362
3777
|
# builds.
|
4363
3778
|
#
|
4364
|
-
# * `BUILD_GENERAL1_MEDIUM
|
3779
|
+
# * `BUILD_GENERAL1_MEDIUM`: Use up to 7 GB memory and 4 vCPUs for
|
4365
3780
|
# builds.
|
4366
3781
|
#
|
4367
|
-
# * `BUILD_GENERAL1_LARGE
|
3782
|
+
# * `BUILD_GENERAL1_LARGE`: Use up to 16 GB memory and 8 vCPUs for
|
4368
3783
|
# builds, depending on your environment type.
|
4369
3784
|
#
|
4370
|
-
# * `BUILD_GENERAL1_2XLARGE
|
3785
|
+
# * `BUILD_GENERAL1_2XLARGE`: Use up to 145 GB memory, 72 vCPUs, and
|
4371
3786
|
# 824 GB of SSD storage for builds. This compute type supports
|
4372
3787
|
# Docker images up to 100 GB uncompressed.
|
4373
3788
|
#
|
4374
|
-
# If you use `BUILD_GENERAL1_LARGE
|
3789
|
+
# If you use `BUILD_GENERAL1_LARGE`:
|
4375
3790
|
#
|
4376
3791
|
# * For environment type `LINUX_CONTAINER`, you can use up to 15 GB
|
4377
3792
|
# memory and 8 vCPUs for builds.
|
@@ -4413,7 +3828,7 @@ module Aws::CodeBuild
|
|
4413
3828
|
# `- timeout 15 sh -c "until docker info; do echo .; sleep 1; done"`
|
4414
3829
|
#
|
4415
3830
|
# If the operating system's base image is Alpine Linux and the
|
4416
|
-
# previous command does not work, add the `-t` argument to `timeout
|
3831
|
+
# previous command does not work, add the `-t` argument to `timeout`:
|
4417
3832
|
#
|
4418
3833
|
# `- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock
|
4419
3834
|
# --host=tcp://0.0.0.0:2375 --storage-driver=overlay&`
|
@@ -4475,17 +3890,6 @@ module Aws::CodeBuild
|
|
4475
3890
|
#
|
4476
3891
|
# [1]: https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html
|
4477
3892
|
#
|
4478
|
-
# @note When making an API call, you may pass ProjectFileSystemLocation
|
4479
|
-
# data as a hash:
|
4480
|
-
#
|
4481
|
-
# {
|
4482
|
-
# type: "EFS", # accepts EFS
|
4483
|
-
# location: "String",
|
4484
|
-
# mount_point: "String",
|
4485
|
-
# identifier: "String",
|
4486
|
-
# mount_options: "String",
|
4487
|
-
# }
|
4488
|
-
#
|
4489
3893
|
# @!attribute [rw] type
|
4490
3894
|
# The type of the file system. The one supported type is `EFS`.
|
4491
3895
|
# @return [String]
|
@@ -4544,50 +3948,26 @@ module Aws::CodeBuild
|
|
4544
3948
|
|
4545
3949
|
# Information about the build input source code for the build project.
|
4546
3950
|
#
|
4547
|
-
# @note When making an API call, you may pass ProjectSource
|
4548
|
-
# data as a hash:
|
4549
|
-
#
|
4550
|
-
# {
|
4551
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
4552
|
-
# location: "String",
|
4553
|
-
# git_clone_depth: 1,
|
4554
|
-
# git_submodules_config: {
|
4555
|
-
# fetch_submodules: false, # required
|
4556
|
-
# },
|
4557
|
-
# buildspec: "String",
|
4558
|
-
# auth: {
|
4559
|
-
# type: "OAUTH", # required, accepts OAUTH
|
4560
|
-
# resource: "String",
|
4561
|
-
# },
|
4562
|
-
# report_build_status: false,
|
4563
|
-
# build_status_config: {
|
4564
|
-
# context: "String",
|
4565
|
-
# target_url: "String",
|
4566
|
-
# },
|
4567
|
-
# insecure_ssl: false,
|
4568
|
-
# source_identifier: "String",
|
4569
|
-
# }
|
4570
|
-
#
|
4571
3951
|
# @!attribute [rw] type
|
4572
3952
|
# The type of repository that contains the source code to be built.
|
4573
3953
|
# Valid values include:
|
4574
3954
|
#
|
4575
|
-
# * `BITBUCKET
|
3955
|
+
# * `BITBUCKET`: The source code is in a Bitbucket repository.
|
4576
3956
|
#
|
4577
|
-
# * `CODECOMMIT
|
3957
|
+
# * `CODECOMMIT`: The source code is in an CodeCommit repository.
|
4578
3958
|
#
|
4579
|
-
# * `CODEPIPELINE
|
3959
|
+
# * `CODEPIPELINE`: The source code settings are specified in the
|
4580
3960
|
# source action of a pipeline in CodePipeline.
|
4581
3961
|
#
|
4582
|
-
# * `GITHUB
|
3962
|
+
# * `GITHUB`: The source code is in a GitHub or GitHub Enterprise
|
4583
3963
|
# Cloud repository.
|
4584
3964
|
#
|
4585
|
-
# * `GITHUB_ENTERPRISE
|
3965
|
+
# * `GITHUB_ENTERPRISE`: The source code is in a GitHub Enterprise
|
4586
3966
|
# Server repository.
|
4587
3967
|
#
|
4588
|
-
# * `NO_SOURCE
|
3968
|
+
# * `NO_SOURCE`: The project does not have input source code.
|
4589
3969
|
#
|
4590
|
-
# * `S3
|
3970
|
+
# * `S3`: The source code is in an Amazon S3 bucket.
|
4591
3971
|
# @return [String]
|
4592
3972
|
#
|
4593
3973
|
# @!attribute [rw] location
|
@@ -4744,14 +4124,6 @@ module Aws::CodeBuild
|
|
4744
4124
|
|
4745
4125
|
# A source identifier and its corresponding version.
|
4746
4126
|
#
|
4747
|
-
# @note When making an API call, you may pass ProjectSourceVersion
|
4748
|
-
# data as a hash:
|
4749
|
-
#
|
4750
|
-
# {
|
4751
|
-
# source_identifier: "String", # required
|
4752
|
-
# source_version: "String", # required
|
4753
|
-
# }
|
4754
|
-
#
|
4755
4127
|
# @!attribute [rw] source_identifier
|
4756
4128
|
# An identifier for a source in the build project. The identifier can
|
4757
4129
|
# only contain alphanumeric characters and underscores, and must be
|
@@ -4797,14 +4169,6 @@ module Aws::CodeBuild
|
|
4797
4169
|
include Aws::Structure
|
4798
4170
|
end
|
4799
4171
|
|
4800
|
-
# @note When making an API call, you may pass PutResourcePolicyInput
|
4801
|
-
# data as a hash:
|
4802
|
-
#
|
4803
|
-
# {
|
4804
|
-
# policy: "NonEmptyString", # required
|
4805
|
-
# resource_arn: "NonEmptyString", # required
|
4806
|
-
# }
|
4807
|
-
#
|
4808
4172
|
# @!attribute [rw] policy
|
4809
4173
|
# A JSON-formatted resource policy. For more information, see [Sharing
|
4810
4174
|
# a Project][1] and [Sharing a Report Group][2] in the *CodeBuild User
|
@@ -4857,14 +4221,6 @@ module Aws::CodeBuild
|
|
4857
4221
|
#
|
4858
4222
|
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-private-registry.html
|
4859
4223
|
#
|
4860
|
-
# @note When making an API call, you may pass RegistryCredential
|
4861
|
-
# data as a hash:
|
4862
|
-
#
|
4863
|
-
# {
|
4864
|
-
# credential: "NonEmptyString", # required
|
4865
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
4866
|
-
# }
|
4867
|
-
#
|
4868
4224
|
# @!attribute [rw] credential
|
4869
4225
|
# The Amazon Resource Name (ARN) or name of credentials created using
|
4870
4226
|
# Secrets Manager.
|
@@ -4979,27 +4335,12 @@ module Aws::CodeBuild
|
|
4979
4335
|
|
4980
4336
|
# Information about the location where the run of a report is exported.
|
4981
4337
|
#
|
4982
|
-
# @note When making an API call, you may pass ReportExportConfig
|
4983
|
-
# data as a hash:
|
4984
|
-
#
|
4985
|
-
# {
|
4986
|
-
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
4987
|
-
# s3_destination: {
|
4988
|
-
# bucket: "NonEmptyString",
|
4989
|
-
# bucket_owner: "String",
|
4990
|
-
# path: "String",
|
4991
|
-
# packaging: "ZIP", # accepts ZIP, NONE
|
4992
|
-
# encryption_key: "NonEmptyString",
|
4993
|
-
# encryption_disabled: false,
|
4994
|
-
# },
|
4995
|
-
# }
|
4996
|
-
#
|
4997
4338
|
# @!attribute [rw] export_config_type
|
4998
4339
|
# The export configuration type. Valid values are:
|
4999
4340
|
#
|
5000
|
-
# * `S3
|
4341
|
+
# * `S3`: The report results are exported to an S3 bucket.
|
5001
4342
|
#
|
5002
|
-
# * `NO_EXPORT
|
4343
|
+
# * `NO_EXPORT`: The report results are not exported.
|
5003
4344
|
# @return [String]
|
5004
4345
|
#
|
5005
4346
|
# @!attribute [rw] s3_destination
|
@@ -5019,13 +4360,6 @@ module Aws::CodeBuild
|
|
5019
4360
|
# A filter used to return reports with the status specified by the input
|
5020
4361
|
# `status` parameter.
|
5021
4362
|
#
|
5022
|
-
# @note When making an API call, you may pass ReportFilter
|
5023
|
-
# data as a hash:
|
5024
|
-
#
|
5025
|
-
# {
|
5026
|
-
# status: "GENERATING", # accepts GENERATING, SUCCEEDED, FAILED, INCOMPLETE, DELETING
|
5027
|
-
# }
|
5028
|
-
#
|
5029
4363
|
# @!attribute [rw] status
|
5030
4364
|
# The status used to filter reports. You can filter using one status
|
5031
4365
|
# only.
|
@@ -5199,15 +4533,6 @@ module Aws::CodeBuild
|
|
5199
4533
|
#
|
5200
4534
|
class ResourceNotFoundException < Aws::EmptyStructure; end
|
5201
4535
|
|
5202
|
-
# @note When making an API call, you may pass RetryBuildBatchInput
|
5203
|
-
# data as a hash:
|
5204
|
-
#
|
5205
|
-
# {
|
5206
|
-
# id: "NonEmptyString",
|
5207
|
-
# idempotency_token: "String",
|
5208
|
-
# retry_type: "RETRY_ALL_BUILDS", # accepts RETRY_ALL_BUILDS, RETRY_FAILED_BUILDS
|
5209
|
-
# }
|
5210
|
-
#
|
5211
4536
|
# @!attribute [rw] id
|
5212
4537
|
# Specifies the identifier of the batch build to restart.
|
5213
4538
|
# @return [String]
|
@@ -5246,14 +4571,6 @@ module Aws::CodeBuild
|
|
5246
4571
|
include Aws::Structure
|
5247
4572
|
end
|
5248
4573
|
|
5249
|
-
# @note When making an API call, you may pass RetryBuildInput
|
5250
|
-
# data as a hash:
|
5251
|
-
#
|
5252
|
-
# {
|
5253
|
-
# id: "NonEmptyString",
|
5254
|
-
# idempotency_token: "String",
|
5255
|
-
# }
|
5256
|
-
#
|
5257
4574
|
# @!attribute [rw] id
|
5258
4575
|
# Specifies the identifier of the build to restart.
|
5259
4576
|
# @return [String]
|
@@ -5289,22 +4606,12 @@ module Aws::CodeBuild
|
|
5289
4606
|
|
5290
4607
|
# Information about S3 logs for a build project.
|
5291
4608
|
#
|
5292
|
-
# @note When making an API call, you may pass S3LogsConfig
|
5293
|
-
# data as a hash:
|
5294
|
-
#
|
5295
|
-
# {
|
5296
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
5297
|
-
# location: "String",
|
5298
|
-
# encryption_disabled: false,
|
5299
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5300
|
-
# }
|
5301
|
-
#
|
5302
4609
|
# @!attribute [rw] status
|
5303
4610
|
# The current status of the S3 build logs. Valid values are:
|
5304
4611
|
#
|
5305
|
-
# * `ENABLED
|
4612
|
+
# * `ENABLED`: S3 build logs are enabled for this build project.
|
5306
4613
|
#
|
5307
|
-
# * `DISABLED
|
4614
|
+
# * `DISABLED`: S3 build logs are not enabled for this build project.
|
5308
4615
|
# @return [String]
|
5309
4616
|
#
|
5310
4617
|
# @!attribute [rw] location
|
@@ -5380,18 +4687,6 @@ module Aws::CodeBuild
|
|
5380
4687
|
# Information about the S3 bucket where the raw data of a report are
|
5381
4688
|
# exported.
|
5382
4689
|
#
|
5383
|
-
# @note When making an API call, you may pass S3ReportExportConfig
|
5384
|
-
# data as a hash:
|
5385
|
-
#
|
5386
|
-
# {
|
5387
|
-
# bucket: "NonEmptyString",
|
5388
|
-
# bucket_owner: "String",
|
5389
|
-
# path: "String",
|
5390
|
-
# packaging: "ZIP", # accepts ZIP, NONE
|
5391
|
-
# encryption_key: "NonEmptyString",
|
5392
|
-
# encryption_disabled: false,
|
5393
|
-
# }
|
5394
|
-
#
|
5395
4690
|
# @!attribute [rw] bucket
|
5396
4691
|
# The name of the S3 bucket where the raw data of a report are
|
5397
4692
|
# exported.
|
@@ -5411,10 +4706,10 @@ module Aws::CodeBuild
|
|
5411
4706
|
# @!attribute [rw] packaging
|
5412
4707
|
# The type of build output artifact to create. Valid values include:
|
5413
4708
|
#
|
5414
|
-
# * `NONE
|
4709
|
+
# * `NONE`: CodeBuild creates the raw data in the output bucket. This
|
5415
4710
|
# is the default if packaging is not specified.
|
5416
4711
|
#
|
5417
|
-
# * `ZIP
|
4712
|
+
# * `ZIP`: CodeBuild creates a ZIP file with the raw data in the
|
5418
4713
|
# output bucket.
|
5419
4714
|
# @return [String]
|
5420
4715
|
#
|
@@ -5446,14 +4741,6 @@ module Aws::CodeBuild
|
|
5446
4741
|
# This information is for the CodeBuild console's use only. Your code
|
5447
4742
|
# should not get or set this information directly.
|
5448
4743
|
#
|
5449
|
-
# @note When making an API call, you may pass SourceAuth
|
5450
|
-
# data as a hash:
|
5451
|
-
#
|
5452
|
-
# {
|
5453
|
-
# type: "OAUTH", # required, accepts OAUTH
|
5454
|
-
# resource: "String",
|
5455
|
-
# }
|
5456
|
-
#
|
5457
4744
|
# @!attribute [rw] type
|
5458
4745
|
# <note markdown="1"> This data type is deprecated and is no longer accurate or used.
|
5459
4746
|
#
|
@@ -5503,132 +4790,6 @@ module Aws::CodeBuild
|
|
5503
4790
|
include Aws::Structure
|
5504
4791
|
end
|
5505
4792
|
|
5506
|
-
# @note When making an API call, you may pass StartBuildBatchInput
|
5507
|
-
# data as a hash:
|
5508
|
-
#
|
5509
|
-
# {
|
5510
|
-
# project_name: "NonEmptyString", # required
|
5511
|
-
# secondary_sources_override: [
|
5512
|
-
# {
|
5513
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
5514
|
-
# location: "String",
|
5515
|
-
# git_clone_depth: 1,
|
5516
|
-
# git_submodules_config: {
|
5517
|
-
# fetch_submodules: false, # required
|
5518
|
-
# },
|
5519
|
-
# buildspec: "String",
|
5520
|
-
# auth: {
|
5521
|
-
# type: "OAUTH", # required, accepts OAUTH
|
5522
|
-
# resource: "String",
|
5523
|
-
# },
|
5524
|
-
# report_build_status: false,
|
5525
|
-
# build_status_config: {
|
5526
|
-
# context: "String",
|
5527
|
-
# target_url: "String",
|
5528
|
-
# },
|
5529
|
-
# insecure_ssl: false,
|
5530
|
-
# source_identifier: "String",
|
5531
|
-
# },
|
5532
|
-
# ],
|
5533
|
-
# secondary_sources_version_override: [
|
5534
|
-
# {
|
5535
|
-
# source_identifier: "String", # required
|
5536
|
-
# source_version: "String", # required
|
5537
|
-
# },
|
5538
|
-
# ],
|
5539
|
-
# source_version: "String",
|
5540
|
-
# artifacts_override: {
|
5541
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
5542
|
-
# location: "String",
|
5543
|
-
# path: "String",
|
5544
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
5545
|
-
# name: "String",
|
5546
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
5547
|
-
# override_artifact_name: false,
|
5548
|
-
# encryption_disabled: false,
|
5549
|
-
# artifact_identifier: "String",
|
5550
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5551
|
-
# },
|
5552
|
-
# secondary_artifacts_override: [
|
5553
|
-
# {
|
5554
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
5555
|
-
# location: "String",
|
5556
|
-
# path: "String",
|
5557
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
5558
|
-
# name: "String",
|
5559
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
5560
|
-
# override_artifact_name: false,
|
5561
|
-
# encryption_disabled: false,
|
5562
|
-
# artifact_identifier: "String",
|
5563
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5564
|
-
# },
|
5565
|
-
# ],
|
5566
|
-
# environment_variables_override: [
|
5567
|
-
# {
|
5568
|
-
# name: "NonEmptyString", # required
|
5569
|
-
# value: "String", # required
|
5570
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
5571
|
-
# },
|
5572
|
-
# ],
|
5573
|
-
# source_type_override: "CODECOMMIT", # accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
5574
|
-
# source_location_override: "String",
|
5575
|
-
# source_auth_override: {
|
5576
|
-
# type: "OAUTH", # required, accepts OAUTH
|
5577
|
-
# resource: "String",
|
5578
|
-
# },
|
5579
|
-
# git_clone_depth_override: 1,
|
5580
|
-
# git_submodules_config_override: {
|
5581
|
-
# fetch_submodules: false, # required
|
5582
|
-
# },
|
5583
|
-
# buildspec_override: "String",
|
5584
|
-
# insecure_ssl_override: false,
|
5585
|
-
# report_build_batch_status_override: false,
|
5586
|
-
# environment_type_override: "WINDOWS_CONTAINER", # accepts WINDOWS_CONTAINER, LINUX_CONTAINER, LINUX_GPU_CONTAINER, ARM_CONTAINER, WINDOWS_SERVER_2019_CONTAINER
|
5587
|
-
# image_override: "NonEmptyString",
|
5588
|
-
# compute_type_override: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_2XLARGE
|
5589
|
-
# certificate_override: "String",
|
5590
|
-
# cache_override: {
|
5591
|
-
# type: "NO_CACHE", # required, accepts NO_CACHE, S3, LOCAL
|
5592
|
-
# location: "String",
|
5593
|
-
# modes: ["LOCAL_DOCKER_LAYER_CACHE"], # accepts LOCAL_DOCKER_LAYER_CACHE, LOCAL_SOURCE_CACHE, LOCAL_CUSTOM_CACHE
|
5594
|
-
# },
|
5595
|
-
# service_role_override: "NonEmptyString",
|
5596
|
-
# privileged_mode_override: false,
|
5597
|
-
# build_timeout_in_minutes_override: 1,
|
5598
|
-
# queued_timeout_in_minutes_override: 1,
|
5599
|
-
# encryption_key_override: "NonEmptyString",
|
5600
|
-
# idempotency_token: "String",
|
5601
|
-
# logs_config_override: {
|
5602
|
-
# cloud_watch_logs: {
|
5603
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
5604
|
-
# group_name: "String",
|
5605
|
-
# stream_name: "String",
|
5606
|
-
# },
|
5607
|
-
# s3_logs: {
|
5608
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
5609
|
-
# location: "String",
|
5610
|
-
# encryption_disabled: false,
|
5611
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5612
|
-
# },
|
5613
|
-
# },
|
5614
|
-
# registry_credential_override: {
|
5615
|
-
# credential: "NonEmptyString", # required
|
5616
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
5617
|
-
# },
|
5618
|
-
# image_pull_credentials_type_override: "CODEBUILD", # accepts CODEBUILD, SERVICE_ROLE
|
5619
|
-
# build_batch_config_override: {
|
5620
|
-
# service_role: "NonEmptyString",
|
5621
|
-
# combine_artifacts: false,
|
5622
|
-
# restrictions: {
|
5623
|
-
# maximum_builds_allowed: 1,
|
5624
|
-
# compute_types_allowed: ["NonEmptyString"],
|
5625
|
-
# },
|
5626
|
-
# timeout_in_mins: 1,
|
5627
|
-
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
5628
|
-
# },
|
5629
|
-
# debug_session_enabled: false,
|
5630
|
-
# }
|
5631
|
-
#
|
5632
4793
|
# @!attribute [rw] project_name
|
5633
4794
|
# The name of the project.
|
5634
4795
|
# @return [String]
|
@@ -5928,126 +5089,6 @@ module Aws::CodeBuild
|
|
5928
5089
|
include Aws::Structure
|
5929
5090
|
end
|
5930
5091
|
|
5931
|
-
# @note When making an API call, you may pass StartBuildInput
|
5932
|
-
# data as a hash:
|
5933
|
-
#
|
5934
|
-
# {
|
5935
|
-
# project_name: "NonEmptyString", # required
|
5936
|
-
# secondary_sources_override: [
|
5937
|
-
# {
|
5938
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
5939
|
-
# location: "String",
|
5940
|
-
# git_clone_depth: 1,
|
5941
|
-
# git_submodules_config: {
|
5942
|
-
# fetch_submodules: false, # required
|
5943
|
-
# },
|
5944
|
-
# buildspec: "String",
|
5945
|
-
# auth: {
|
5946
|
-
# type: "OAUTH", # required, accepts OAUTH
|
5947
|
-
# resource: "String",
|
5948
|
-
# },
|
5949
|
-
# report_build_status: false,
|
5950
|
-
# build_status_config: {
|
5951
|
-
# context: "String",
|
5952
|
-
# target_url: "String",
|
5953
|
-
# },
|
5954
|
-
# insecure_ssl: false,
|
5955
|
-
# source_identifier: "String",
|
5956
|
-
# },
|
5957
|
-
# ],
|
5958
|
-
# secondary_sources_version_override: [
|
5959
|
-
# {
|
5960
|
-
# source_identifier: "String", # required
|
5961
|
-
# source_version: "String", # required
|
5962
|
-
# },
|
5963
|
-
# ],
|
5964
|
-
# source_version: "String",
|
5965
|
-
# artifacts_override: {
|
5966
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
5967
|
-
# location: "String",
|
5968
|
-
# path: "String",
|
5969
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
5970
|
-
# name: "String",
|
5971
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
5972
|
-
# override_artifact_name: false,
|
5973
|
-
# encryption_disabled: false,
|
5974
|
-
# artifact_identifier: "String",
|
5975
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5976
|
-
# },
|
5977
|
-
# secondary_artifacts_override: [
|
5978
|
-
# {
|
5979
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
5980
|
-
# location: "String",
|
5981
|
-
# path: "String",
|
5982
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
5983
|
-
# name: "String",
|
5984
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
5985
|
-
# override_artifact_name: false,
|
5986
|
-
# encryption_disabled: false,
|
5987
|
-
# artifact_identifier: "String",
|
5988
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
5989
|
-
# },
|
5990
|
-
# ],
|
5991
|
-
# environment_variables_override: [
|
5992
|
-
# {
|
5993
|
-
# name: "NonEmptyString", # required
|
5994
|
-
# value: "String", # required
|
5995
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
5996
|
-
# },
|
5997
|
-
# ],
|
5998
|
-
# source_type_override: "CODECOMMIT", # accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
5999
|
-
# source_location_override: "String",
|
6000
|
-
# source_auth_override: {
|
6001
|
-
# type: "OAUTH", # required, accepts OAUTH
|
6002
|
-
# resource: "String",
|
6003
|
-
# },
|
6004
|
-
# git_clone_depth_override: 1,
|
6005
|
-
# git_submodules_config_override: {
|
6006
|
-
# fetch_submodules: false, # required
|
6007
|
-
# },
|
6008
|
-
# buildspec_override: "String",
|
6009
|
-
# insecure_ssl_override: false,
|
6010
|
-
# report_build_status_override: false,
|
6011
|
-
# build_status_config_override: {
|
6012
|
-
# context: "String",
|
6013
|
-
# target_url: "String",
|
6014
|
-
# },
|
6015
|
-
# environment_type_override: "WINDOWS_CONTAINER", # accepts WINDOWS_CONTAINER, LINUX_CONTAINER, LINUX_GPU_CONTAINER, ARM_CONTAINER, WINDOWS_SERVER_2019_CONTAINER
|
6016
|
-
# image_override: "NonEmptyString",
|
6017
|
-
# compute_type_override: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_2XLARGE
|
6018
|
-
# certificate_override: "String",
|
6019
|
-
# cache_override: {
|
6020
|
-
# type: "NO_CACHE", # required, accepts NO_CACHE, S3, LOCAL
|
6021
|
-
# location: "String",
|
6022
|
-
# modes: ["LOCAL_DOCKER_LAYER_CACHE"], # accepts LOCAL_DOCKER_LAYER_CACHE, LOCAL_SOURCE_CACHE, LOCAL_CUSTOM_CACHE
|
6023
|
-
# },
|
6024
|
-
# service_role_override: "NonEmptyString",
|
6025
|
-
# privileged_mode_override: false,
|
6026
|
-
# timeout_in_minutes_override: 1,
|
6027
|
-
# queued_timeout_in_minutes_override: 1,
|
6028
|
-
# encryption_key_override: "NonEmptyString",
|
6029
|
-
# idempotency_token: "String",
|
6030
|
-
# logs_config_override: {
|
6031
|
-
# cloud_watch_logs: {
|
6032
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
6033
|
-
# group_name: "String",
|
6034
|
-
# stream_name: "String",
|
6035
|
-
# },
|
6036
|
-
# s3_logs: {
|
6037
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
6038
|
-
# location: "String",
|
6039
|
-
# encryption_disabled: false,
|
6040
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
6041
|
-
# },
|
6042
|
-
# },
|
6043
|
-
# registry_credential_override: {
|
6044
|
-
# credential: "NonEmptyString", # required
|
6045
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
6046
|
-
# },
|
6047
|
-
# image_pull_credentials_type_override: "CODEBUILD", # accepts CODEBUILD, SERVICE_ROLE
|
6048
|
-
# debug_session_enabled: false,
|
6049
|
-
# }
|
6050
|
-
#
|
6051
5092
|
# @!attribute [rw] project_name
|
6052
5093
|
# The name of the CodeBuild build project to start running a build.
|
6053
5094
|
# @return [String]
|
@@ -6356,13 +5397,6 @@ module Aws::CodeBuild
|
|
6356
5397
|
include Aws::Structure
|
6357
5398
|
end
|
6358
5399
|
|
6359
|
-
# @note When making an API call, you may pass StopBuildBatchInput
|
6360
|
-
# data as a hash:
|
6361
|
-
#
|
6362
|
-
# {
|
6363
|
-
# id: "NonEmptyString", # required
|
6364
|
-
# }
|
6365
|
-
#
|
6366
5400
|
# @!attribute [rw] id
|
6367
5401
|
# The identifier of the batch build to stop.
|
6368
5402
|
# @return [String]
|
@@ -6387,13 +5421,6 @@ module Aws::CodeBuild
|
|
6387
5421
|
include Aws::Structure
|
6388
5422
|
end
|
6389
5423
|
|
6390
|
-
# @note When making an API call, you may pass StopBuildInput
|
6391
|
-
# data as a hash:
|
6392
|
-
#
|
6393
|
-
# {
|
6394
|
-
# id: "NonEmptyString", # required
|
6395
|
-
# }
|
6396
|
-
#
|
6397
5424
|
# @!attribute [rw] id
|
6398
5425
|
# The ID of the build.
|
6399
5426
|
# @return [String]
|
@@ -6423,14 +5450,6 @@ module Aws::CodeBuild
|
|
6423
5450
|
# This tag is available for use by Amazon Web Services services that
|
6424
5451
|
# support tags in CodeBuild.
|
6425
5452
|
#
|
6426
|
-
# @note When making an API call, you may pass Tag
|
6427
|
-
# data as a hash:
|
6428
|
-
#
|
6429
|
-
# {
|
6430
|
-
# key: "KeyInput",
|
6431
|
-
# value: "ValueInput",
|
6432
|
-
# }
|
6433
|
-
#
|
6434
5453
|
# @!attribute [rw] key
|
6435
5454
|
# The tag's key.
|
6436
5455
|
# @return [String]
|
@@ -6508,14 +5527,6 @@ module Aws::CodeBuild
|
|
6508
5527
|
# A filter used to return specific types of test cases. In order to pass
|
6509
5528
|
# the filter, the report must meet all of the filter properties.
|
6510
5529
|
#
|
6511
|
-
# @note When making an API call, you may pass TestCaseFilter
|
6512
|
-
# data as a hash:
|
6513
|
-
#
|
6514
|
-
# {
|
6515
|
-
# status: "String",
|
6516
|
-
# keyword: "String",
|
6517
|
-
# }
|
6518
|
-
#
|
6519
5530
|
# @!attribute [rw] status
|
6520
5531
|
# The status used to filter test cases. A `TestCaseFilter` can have
|
6521
5532
|
# one status. Valid values are:
|
@@ -6573,162 +5584,6 @@ module Aws::CodeBuild
|
|
6573
5584
|
include Aws::Structure
|
6574
5585
|
end
|
6575
5586
|
|
6576
|
-
# @note When making an API call, you may pass UpdateProjectInput
|
6577
|
-
# data as a hash:
|
6578
|
-
#
|
6579
|
-
# {
|
6580
|
-
# name: "NonEmptyString", # required
|
6581
|
-
# description: "ProjectDescription",
|
6582
|
-
# source: {
|
6583
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
6584
|
-
# location: "String",
|
6585
|
-
# git_clone_depth: 1,
|
6586
|
-
# git_submodules_config: {
|
6587
|
-
# fetch_submodules: false, # required
|
6588
|
-
# },
|
6589
|
-
# buildspec: "String",
|
6590
|
-
# auth: {
|
6591
|
-
# type: "OAUTH", # required, accepts OAUTH
|
6592
|
-
# resource: "String",
|
6593
|
-
# },
|
6594
|
-
# report_build_status: false,
|
6595
|
-
# build_status_config: {
|
6596
|
-
# context: "String",
|
6597
|
-
# target_url: "String",
|
6598
|
-
# },
|
6599
|
-
# insecure_ssl: false,
|
6600
|
-
# source_identifier: "String",
|
6601
|
-
# },
|
6602
|
-
# secondary_sources: [
|
6603
|
-
# {
|
6604
|
-
# type: "CODECOMMIT", # required, accepts CODECOMMIT, CODEPIPELINE, GITHUB, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
|
6605
|
-
# location: "String",
|
6606
|
-
# git_clone_depth: 1,
|
6607
|
-
# git_submodules_config: {
|
6608
|
-
# fetch_submodules: false, # required
|
6609
|
-
# },
|
6610
|
-
# buildspec: "String",
|
6611
|
-
# auth: {
|
6612
|
-
# type: "OAUTH", # required, accepts OAUTH
|
6613
|
-
# resource: "String",
|
6614
|
-
# },
|
6615
|
-
# report_build_status: false,
|
6616
|
-
# build_status_config: {
|
6617
|
-
# context: "String",
|
6618
|
-
# target_url: "String",
|
6619
|
-
# },
|
6620
|
-
# insecure_ssl: false,
|
6621
|
-
# source_identifier: "String",
|
6622
|
-
# },
|
6623
|
-
# ],
|
6624
|
-
# source_version: "String",
|
6625
|
-
# secondary_source_versions: [
|
6626
|
-
# {
|
6627
|
-
# source_identifier: "String", # required
|
6628
|
-
# source_version: "String", # required
|
6629
|
-
# },
|
6630
|
-
# ],
|
6631
|
-
# artifacts: {
|
6632
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
6633
|
-
# location: "String",
|
6634
|
-
# path: "String",
|
6635
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
6636
|
-
# name: "String",
|
6637
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
6638
|
-
# override_artifact_name: false,
|
6639
|
-
# encryption_disabled: false,
|
6640
|
-
# artifact_identifier: "String",
|
6641
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
6642
|
-
# },
|
6643
|
-
# secondary_artifacts: [
|
6644
|
-
# {
|
6645
|
-
# type: "CODEPIPELINE", # required, accepts CODEPIPELINE, S3, NO_ARTIFACTS
|
6646
|
-
# location: "String",
|
6647
|
-
# path: "String",
|
6648
|
-
# namespace_type: "NONE", # accepts NONE, BUILD_ID
|
6649
|
-
# name: "String",
|
6650
|
-
# packaging: "NONE", # accepts NONE, ZIP
|
6651
|
-
# override_artifact_name: false,
|
6652
|
-
# encryption_disabled: false,
|
6653
|
-
# artifact_identifier: "String",
|
6654
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
6655
|
-
# },
|
6656
|
-
# ],
|
6657
|
-
# cache: {
|
6658
|
-
# type: "NO_CACHE", # required, accepts NO_CACHE, S3, LOCAL
|
6659
|
-
# location: "String",
|
6660
|
-
# modes: ["LOCAL_DOCKER_LAYER_CACHE"], # accepts LOCAL_DOCKER_LAYER_CACHE, LOCAL_SOURCE_CACHE, LOCAL_CUSTOM_CACHE
|
6661
|
-
# },
|
6662
|
-
# environment: {
|
6663
|
-
# type: "WINDOWS_CONTAINER", # required, accepts WINDOWS_CONTAINER, LINUX_CONTAINER, LINUX_GPU_CONTAINER, ARM_CONTAINER, WINDOWS_SERVER_2019_CONTAINER
|
6664
|
-
# image: "NonEmptyString", # required
|
6665
|
-
# compute_type: "BUILD_GENERAL1_SMALL", # required, accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_2XLARGE
|
6666
|
-
# environment_variables: [
|
6667
|
-
# {
|
6668
|
-
# name: "NonEmptyString", # required
|
6669
|
-
# value: "String", # required
|
6670
|
-
# type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE, SECRETS_MANAGER
|
6671
|
-
# },
|
6672
|
-
# ],
|
6673
|
-
# privileged_mode: false,
|
6674
|
-
# certificate: "String",
|
6675
|
-
# registry_credential: {
|
6676
|
-
# credential: "NonEmptyString", # required
|
6677
|
-
# credential_provider: "SECRETS_MANAGER", # required, accepts SECRETS_MANAGER
|
6678
|
-
# },
|
6679
|
-
# image_pull_credentials_type: "CODEBUILD", # accepts CODEBUILD, SERVICE_ROLE
|
6680
|
-
# },
|
6681
|
-
# service_role: "NonEmptyString",
|
6682
|
-
# timeout_in_minutes: 1,
|
6683
|
-
# queued_timeout_in_minutes: 1,
|
6684
|
-
# encryption_key: "NonEmptyString",
|
6685
|
-
# tags: [
|
6686
|
-
# {
|
6687
|
-
# key: "KeyInput",
|
6688
|
-
# value: "ValueInput",
|
6689
|
-
# },
|
6690
|
-
# ],
|
6691
|
-
# vpc_config: {
|
6692
|
-
# vpc_id: "NonEmptyString",
|
6693
|
-
# subnets: ["NonEmptyString"],
|
6694
|
-
# security_group_ids: ["NonEmptyString"],
|
6695
|
-
# },
|
6696
|
-
# badge_enabled: false,
|
6697
|
-
# logs_config: {
|
6698
|
-
# cloud_watch_logs: {
|
6699
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
6700
|
-
# group_name: "String",
|
6701
|
-
# stream_name: "String",
|
6702
|
-
# },
|
6703
|
-
# s3_logs: {
|
6704
|
-
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
6705
|
-
# location: "String",
|
6706
|
-
# encryption_disabled: false,
|
6707
|
-
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
6708
|
-
# },
|
6709
|
-
# },
|
6710
|
-
# file_system_locations: [
|
6711
|
-
# {
|
6712
|
-
# type: "EFS", # accepts EFS
|
6713
|
-
# location: "String",
|
6714
|
-
# mount_point: "String",
|
6715
|
-
# identifier: "String",
|
6716
|
-
# mount_options: "String",
|
6717
|
-
# },
|
6718
|
-
# ],
|
6719
|
-
# build_batch_config: {
|
6720
|
-
# service_role: "NonEmptyString",
|
6721
|
-
# combine_artifacts: false,
|
6722
|
-
# restrictions: {
|
6723
|
-
# maximum_builds_allowed: 1,
|
6724
|
-
# compute_types_allowed: ["NonEmptyString"],
|
6725
|
-
# },
|
6726
|
-
# timeout_in_mins: 1,
|
6727
|
-
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
6728
|
-
# },
|
6729
|
-
# concurrent_build_limit: 1,
|
6730
|
-
# }
|
6731
|
-
#
|
6732
5587
|
# @!attribute [rw] name
|
6733
5588
|
# The name of the build project.
|
6734
5589
|
#
|
@@ -6925,15 +5780,6 @@ module Aws::CodeBuild
|
|
6925
5780
|
include Aws::Structure
|
6926
5781
|
end
|
6927
5782
|
|
6928
|
-
# @note When making an API call, you may pass UpdateProjectVisibilityInput
|
6929
|
-
# data as a hash:
|
6930
|
-
#
|
6931
|
-
# {
|
6932
|
-
# project_arn: "NonEmptyString", # required
|
6933
|
-
# project_visibility: "PUBLIC_READ", # required, accepts PUBLIC_READ, PRIVATE
|
6934
|
-
# resource_access_role: "NonEmptyString",
|
6935
|
-
# }
|
6936
|
-
#
|
6937
5783
|
# @!attribute [rw] project_arn
|
6938
5784
|
# The Amazon Resource Name (ARN) of the build project.
|
6939
5785
|
# @return [String]
|
@@ -6997,30 +5843,6 @@ module Aws::CodeBuild
|
|
6997
5843
|
include Aws::Structure
|
6998
5844
|
end
|
6999
5845
|
|
7000
|
-
# @note When making an API call, you may pass UpdateReportGroupInput
|
7001
|
-
# data as a hash:
|
7002
|
-
#
|
7003
|
-
# {
|
7004
|
-
# arn: "NonEmptyString", # required
|
7005
|
-
# export_config: {
|
7006
|
-
# export_config_type: "S3", # accepts S3, NO_EXPORT
|
7007
|
-
# s3_destination: {
|
7008
|
-
# bucket: "NonEmptyString",
|
7009
|
-
# bucket_owner: "String",
|
7010
|
-
# path: "String",
|
7011
|
-
# packaging: "ZIP", # accepts ZIP, NONE
|
7012
|
-
# encryption_key: "NonEmptyString",
|
7013
|
-
# encryption_disabled: false,
|
7014
|
-
# },
|
7015
|
-
# },
|
7016
|
-
# tags: [
|
7017
|
-
# {
|
7018
|
-
# key: "KeyInput",
|
7019
|
-
# value: "ValueInput",
|
7020
|
-
# },
|
7021
|
-
# ],
|
7022
|
-
# }
|
7023
|
-
#
|
7024
5846
|
# @!attribute [rw] arn
|
7025
5847
|
# The ARN of the report group to update.
|
7026
5848
|
# @return [String]
|
@@ -7028,9 +5850,9 @@ module Aws::CodeBuild
|
|
7028
5850
|
# @!attribute [rw] export_config
|
7029
5851
|
# Used to specify an updated export type. Valid values are:
|
7030
5852
|
#
|
7031
|
-
# * `S3
|
5853
|
+
# * `S3`: The report results are exported to an S3 bucket.
|
7032
5854
|
#
|
7033
|
-
# * `NO_EXPORT
|
5855
|
+
# * `NO_EXPORT`: The report results are not exported.
|
7034
5856
|
# @return [Types::ReportExportConfig]
|
7035
5857
|
#
|
7036
5858
|
# @!attribute [rw] tags
|
@@ -7063,25 +5885,6 @@ module Aws::CodeBuild
|
|
7063
5885
|
include Aws::Structure
|
7064
5886
|
end
|
7065
5887
|
|
7066
|
-
# @note When making an API call, you may pass UpdateWebhookInput
|
7067
|
-
# data as a hash:
|
7068
|
-
#
|
7069
|
-
# {
|
7070
|
-
# project_name: "ProjectName", # required
|
7071
|
-
# branch_filter: "String",
|
7072
|
-
# rotate_secret: false,
|
7073
|
-
# filter_groups: [
|
7074
|
-
# [
|
7075
|
-
# {
|
7076
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
7077
|
-
# pattern: "String", # required
|
7078
|
-
# exclude_matched_pattern: false,
|
7079
|
-
# },
|
7080
|
-
# ],
|
7081
|
-
# ],
|
7082
|
-
# build_type: "BUILD", # accepts BUILD, BUILD_BATCH
|
7083
|
-
# }
|
7084
|
-
#
|
7085
5888
|
# @!attribute [rw] project_name
|
7086
5889
|
# The name of the CodeBuild project.
|
7087
5890
|
# @return [String]
|
@@ -7141,15 +5944,6 @@ module Aws::CodeBuild
|
|
7141
5944
|
|
7142
5945
|
# Information about the VPC configuration that CodeBuild accesses.
|
7143
5946
|
#
|
7144
|
-
# @note When making an API call, you may pass VpcConfig
|
7145
|
-
# data as a hash:
|
7146
|
-
#
|
7147
|
-
# {
|
7148
|
-
# vpc_id: "NonEmptyString",
|
7149
|
-
# subnets: ["NonEmptyString"],
|
7150
|
-
# security_group_ids: ["NonEmptyString"],
|
7151
|
-
# }
|
7152
|
-
#
|
7153
5947
|
# @!attribute [rw] vpc_id
|
7154
5948
|
# The ID of the Amazon VPC.
|
7155
5949
|
# @return [String]
|
@@ -7238,15 +6032,6 @@ module Aws::CodeBuild
|
|
7238
6032
|
|
7239
6033
|
# A filter used to determine which webhooks trigger a build.
|
7240
6034
|
#
|
7241
|
-
# @note When making an API call, you may pass WebhookFilter
|
7242
|
-
# data as a hash:
|
7243
|
-
#
|
7244
|
-
# {
|
7245
|
-
# type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
|
7246
|
-
# pattern: "String", # required
|
7247
|
-
# exclude_matched_pattern: false,
|
7248
|
-
# }
|
7249
|
-
#
|
7250
6035
|
# @!attribute [rw] type
|
7251
6036
|
# The type of webhook filter. There are six webhook filter types:
|
7252
6037
|
# `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
|