aws-sdk-codebuild 1.70.0 → 1.74.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 +453 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-codebuild.rb +2 -2
- data/lib/aws-sdk-codebuild/client.rb +47 -2
- data/lib/aws-sdk-codebuild/client_api.rb +5 -1
- data/lib/aws-sdk-codebuild/errors.rb +1 -1
- data/lib/aws-sdk-codebuild/resource.rb +1 -1
- data/lib/aws-sdk-codebuild/types.rb +171 -15
- metadata +9 -7
data/LICENSE.txt
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.74.0
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codebuild/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::CodeBuild
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.74.0'
|
52
52
|
|
53
53
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -441,6 +441,7 @@ module Aws::CodeBuild
|
|
441
441
|
# resp.build_batches[0].artifacts.override_artifact_name #=> Boolean
|
442
442
|
# resp.build_batches[0].artifacts.encryption_disabled #=> Boolean
|
443
443
|
# resp.build_batches[0].artifacts.artifact_identifier #=> String
|
444
|
+
# resp.build_batches[0].artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
444
445
|
# resp.build_batches[0].secondary_artifacts #=> Array
|
445
446
|
# resp.build_batches[0].secondary_artifacts[0].location #=> String
|
446
447
|
# resp.build_batches[0].secondary_artifacts[0].sha256sum #=> String
|
@@ -448,6 +449,7 @@ module Aws::CodeBuild
|
|
448
449
|
# resp.build_batches[0].secondary_artifacts[0].override_artifact_name #=> Boolean
|
449
450
|
# resp.build_batches[0].secondary_artifacts[0].encryption_disabled #=> Boolean
|
450
451
|
# resp.build_batches[0].secondary_artifacts[0].artifact_identifier #=> String
|
452
|
+
# resp.build_batches[0].secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
451
453
|
# resp.build_batches[0].cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
452
454
|
# resp.build_batches[0].cache.location #=> String
|
453
455
|
# resp.build_batches[0].cache.modes #=> Array
|
@@ -471,6 +473,7 @@ module Aws::CodeBuild
|
|
471
473
|
# resp.build_batches[0].log_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
472
474
|
# resp.build_batches[0].log_config.s3_logs.location #=> String
|
473
475
|
# resp.build_batches[0].log_config.s3_logs.encryption_disabled #=> Boolean
|
476
|
+
# resp.build_batches[0].log_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
474
477
|
# resp.build_batches[0].build_timeout_in_minutes #=> Integer
|
475
478
|
# resp.build_batches[0].queued_timeout_in_minutes #=> Integer
|
476
479
|
# resp.build_batches[0].complete #=> Boolean
|
@@ -858,6 +861,7 @@ module Aws::CodeBuild
|
|
858
861
|
# resp.builds[0].artifacts.override_artifact_name #=> Boolean
|
859
862
|
# resp.builds[0].artifacts.encryption_disabled #=> Boolean
|
860
863
|
# resp.builds[0].artifacts.artifact_identifier #=> String
|
864
|
+
# resp.builds[0].artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
861
865
|
# resp.builds[0].secondary_artifacts #=> Array
|
862
866
|
# resp.builds[0].secondary_artifacts[0].location #=> String
|
863
867
|
# resp.builds[0].secondary_artifacts[0].sha256sum #=> String
|
@@ -865,6 +869,7 @@ module Aws::CodeBuild
|
|
865
869
|
# resp.builds[0].secondary_artifacts[0].override_artifact_name #=> Boolean
|
866
870
|
# resp.builds[0].secondary_artifacts[0].encryption_disabled #=> Boolean
|
867
871
|
# resp.builds[0].secondary_artifacts[0].artifact_identifier #=> String
|
872
|
+
# resp.builds[0].secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
868
873
|
# resp.builds[0].cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
869
874
|
# resp.builds[0].cache.location #=> String
|
870
875
|
# resp.builds[0].cache.modes #=> Array
|
@@ -894,6 +899,7 @@ module Aws::CodeBuild
|
|
894
899
|
# resp.builds[0].logs.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
895
900
|
# resp.builds[0].logs.s3_logs.location #=> String
|
896
901
|
# resp.builds[0].logs.s3_logs.encryption_disabled #=> Boolean
|
902
|
+
# resp.builds[0].logs.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
897
903
|
# resp.builds[0].timeout_in_minutes #=> Integer
|
898
904
|
# resp.builds[0].queued_timeout_in_minutes #=> Integer
|
899
905
|
# resp.builds[0].build_complete #=> Boolean
|
@@ -994,6 +1000,7 @@ module Aws::CodeBuild
|
|
994
1000
|
# resp.projects[0].artifacts.override_artifact_name #=> Boolean
|
995
1001
|
# resp.projects[0].artifacts.encryption_disabled #=> Boolean
|
996
1002
|
# resp.projects[0].artifacts.artifact_identifier #=> String
|
1003
|
+
# resp.projects[0].artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
997
1004
|
# resp.projects[0].secondary_artifacts #=> Array
|
998
1005
|
# resp.projects[0].secondary_artifacts[0].type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
999
1006
|
# resp.projects[0].secondary_artifacts[0].location #=> String
|
@@ -1004,6 +1011,7 @@ module Aws::CodeBuild
|
|
1004
1011
|
# resp.projects[0].secondary_artifacts[0].override_artifact_name #=> Boolean
|
1005
1012
|
# resp.projects[0].secondary_artifacts[0].encryption_disabled #=> Boolean
|
1006
1013
|
# resp.projects[0].secondary_artifacts[0].artifact_identifier #=> String
|
1014
|
+
# resp.projects[0].secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
1007
1015
|
# resp.projects[0].cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
1008
1016
|
# resp.projects[0].cache.location #=> String
|
1009
1017
|
# resp.projects[0].cache.modes #=> Array
|
@@ -1053,6 +1061,7 @@ module Aws::CodeBuild
|
|
1053
1061
|
# resp.projects[0].logs_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
1054
1062
|
# resp.projects[0].logs_config.s3_logs.location #=> String
|
1055
1063
|
# resp.projects[0].logs_config.s3_logs.encryption_disabled #=> Boolean
|
1064
|
+
# resp.projects[0].logs_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
1056
1065
|
# resp.projects[0].file_system_locations #=> Array
|
1057
1066
|
# resp.projects[0].file_system_locations[0].type #=> String, one of "EFS"
|
1058
1067
|
# resp.projects[0].file_system_locations[0].location #=> String
|
@@ -1379,6 +1388,7 @@ module Aws::CodeBuild
|
|
1379
1388
|
# override_artifact_name: false,
|
1380
1389
|
# encryption_disabled: false,
|
1381
1390
|
# artifact_identifier: "String",
|
1391
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1382
1392
|
# },
|
1383
1393
|
# secondary_artifacts: [
|
1384
1394
|
# {
|
@@ -1391,6 +1401,7 @@ module Aws::CodeBuild
|
|
1391
1401
|
# override_artifact_name: false,
|
1392
1402
|
# encryption_disabled: false,
|
1393
1403
|
# artifact_identifier: "String",
|
1404
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1394
1405
|
# },
|
1395
1406
|
# ],
|
1396
1407
|
# cache: {
|
@@ -1443,6 +1454,7 @@ module Aws::CodeBuild
|
|
1443
1454
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1444
1455
|
# location: "String",
|
1445
1456
|
# encryption_disabled: false,
|
1457
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
1446
1458
|
# },
|
1447
1459
|
# },
|
1448
1460
|
# file_system_locations: [
|
@@ -1509,6 +1521,7 @@ module Aws::CodeBuild
|
|
1509
1521
|
# resp.project.artifacts.override_artifact_name #=> Boolean
|
1510
1522
|
# resp.project.artifacts.encryption_disabled #=> Boolean
|
1511
1523
|
# resp.project.artifacts.artifact_identifier #=> String
|
1524
|
+
# resp.project.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
1512
1525
|
# resp.project.secondary_artifacts #=> Array
|
1513
1526
|
# resp.project.secondary_artifacts[0].type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
1514
1527
|
# resp.project.secondary_artifacts[0].location #=> String
|
@@ -1519,6 +1532,7 @@ module Aws::CodeBuild
|
|
1519
1532
|
# resp.project.secondary_artifacts[0].override_artifact_name #=> Boolean
|
1520
1533
|
# resp.project.secondary_artifacts[0].encryption_disabled #=> Boolean
|
1521
1534
|
# resp.project.secondary_artifacts[0].artifact_identifier #=> String
|
1535
|
+
# resp.project.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
1522
1536
|
# resp.project.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
1523
1537
|
# resp.project.cache.location #=> String
|
1524
1538
|
# resp.project.cache.modes #=> Array
|
@@ -1568,6 +1582,7 @@ module Aws::CodeBuild
|
|
1568
1582
|
# resp.project.logs_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
1569
1583
|
# resp.project.logs_config.s3_logs.location #=> String
|
1570
1584
|
# resp.project.logs_config.s3_logs.encryption_disabled #=> Boolean
|
1585
|
+
# resp.project.logs_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
1571
1586
|
# resp.project.file_system_locations #=> Array
|
1572
1587
|
# resp.project.file_system_locations[0].type #=> String, one of "EFS"
|
1573
1588
|
# resp.project.file_system_locations[0].location #=> String
|
@@ -3056,6 +3071,7 @@ module Aws::CodeBuild
|
|
3056
3071
|
# resp.build.artifacts.override_artifact_name #=> Boolean
|
3057
3072
|
# resp.build.artifacts.encryption_disabled #=> Boolean
|
3058
3073
|
# resp.build.artifacts.artifact_identifier #=> String
|
3074
|
+
# resp.build.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3059
3075
|
# resp.build.secondary_artifacts #=> Array
|
3060
3076
|
# resp.build.secondary_artifacts[0].location #=> String
|
3061
3077
|
# resp.build.secondary_artifacts[0].sha256sum #=> String
|
@@ -3063,6 +3079,7 @@ module Aws::CodeBuild
|
|
3063
3079
|
# resp.build.secondary_artifacts[0].override_artifact_name #=> Boolean
|
3064
3080
|
# resp.build.secondary_artifacts[0].encryption_disabled #=> Boolean
|
3065
3081
|
# resp.build.secondary_artifacts[0].artifact_identifier #=> String
|
3082
|
+
# resp.build.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3066
3083
|
# resp.build.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
3067
3084
|
# resp.build.cache.location #=> String
|
3068
3085
|
# resp.build.cache.modes #=> Array
|
@@ -3092,6 +3109,7 @@ module Aws::CodeBuild
|
|
3092
3109
|
# resp.build.logs.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
3093
3110
|
# resp.build.logs.s3_logs.location #=> String
|
3094
3111
|
# resp.build.logs.s3_logs.encryption_disabled #=> Boolean
|
3112
|
+
# resp.build.logs.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3095
3113
|
# resp.build.timeout_in_minutes #=> Integer
|
3096
3114
|
# resp.build.queued_timeout_in_minutes #=> Integer
|
3097
3115
|
# resp.build.build_complete #=> Boolean
|
@@ -3210,6 +3228,7 @@ module Aws::CodeBuild
|
|
3210
3228
|
# resp.build_batch.artifacts.override_artifact_name #=> Boolean
|
3211
3229
|
# resp.build_batch.artifacts.encryption_disabled #=> Boolean
|
3212
3230
|
# resp.build_batch.artifacts.artifact_identifier #=> String
|
3231
|
+
# resp.build_batch.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3213
3232
|
# resp.build_batch.secondary_artifacts #=> Array
|
3214
3233
|
# resp.build_batch.secondary_artifacts[0].location #=> String
|
3215
3234
|
# resp.build_batch.secondary_artifacts[0].sha256sum #=> String
|
@@ -3217,6 +3236,7 @@ module Aws::CodeBuild
|
|
3217
3236
|
# resp.build_batch.secondary_artifacts[0].override_artifact_name #=> Boolean
|
3218
3237
|
# resp.build_batch.secondary_artifacts[0].encryption_disabled #=> Boolean
|
3219
3238
|
# resp.build_batch.secondary_artifacts[0].artifact_identifier #=> String
|
3239
|
+
# resp.build_batch.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3220
3240
|
# resp.build_batch.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
3221
3241
|
# resp.build_batch.cache.location #=> String
|
3222
3242
|
# resp.build_batch.cache.modes #=> Array
|
@@ -3240,6 +3260,7 @@ module Aws::CodeBuild
|
|
3240
3260
|
# resp.build_batch.log_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
3241
3261
|
# resp.build_batch.log_config.s3_logs.location #=> String
|
3242
3262
|
# resp.build_batch.log_config.s3_logs.encryption_disabled #=> Boolean
|
3263
|
+
# resp.build_batch.log_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3243
3264
|
# resp.build_batch.build_timeout_in_minutes #=> Integer
|
3244
3265
|
# resp.build_batch.queued_timeout_in_minutes #=> Integer
|
3245
3266
|
# resp.build_batch.complete #=> Boolean
|
@@ -3575,6 +3596,7 @@ module Aws::CodeBuild
|
|
3575
3596
|
# override_artifact_name: false,
|
3576
3597
|
# encryption_disabled: false,
|
3577
3598
|
# artifact_identifier: "String",
|
3599
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
3578
3600
|
# },
|
3579
3601
|
# secondary_artifacts_override: [
|
3580
3602
|
# {
|
@@ -3587,6 +3609,7 @@ module Aws::CodeBuild
|
|
3587
3609
|
# override_artifact_name: false,
|
3588
3610
|
# encryption_disabled: false,
|
3589
3611
|
# artifact_identifier: "String",
|
3612
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
3590
3613
|
# },
|
3591
3614
|
# ],
|
3592
3615
|
# environment_variables_override: [
|
@@ -3638,6 +3661,7 @@ module Aws::CodeBuild
|
|
3638
3661
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
3639
3662
|
# location: "String",
|
3640
3663
|
# encryption_disabled: false,
|
3664
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
3641
3665
|
# },
|
3642
3666
|
# },
|
3643
3667
|
# registry_credential_override: {
|
@@ -3703,6 +3727,7 @@ module Aws::CodeBuild
|
|
3703
3727
|
# resp.build.artifacts.override_artifact_name #=> Boolean
|
3704
3728
|
# resp.build.artifacts.encryption_disabled #=> Boolean
|
3705
3729
|
# resp.build.artifacts.artifact_identifier #=> String
|
3730
|
+
# resp.build.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3706
3731
|
# resp.build.secondary_artifacts #=> Array
|
3707
3732
|
# resp.build.secondary_artifacts[0].location #=> String
|
3708
3733
|
# resp.build.secondary_artifacts[0].sha256sum #=> String
|
@@ -3710,6 +3735,7 @@ module Aws::CodeBuild
|
|
3710
3735
|
# resp.build.secondary_artifacts[0].override_artifact_name #=> Boolean
|
3711
3736
|
# resp.build.secondary_artifacts[0].encryption_disabled #=> Boolean
|
3712
3737
|
# resp.build.secondary_artifacts[0].artifact_identifier #=> String
|
3738
|
+
# resp.build.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3713
3739
|
# resp.build.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
3714
3740
|
# resp.build.cache.location #=> String
|
3715
3741
|
# resp.build.cache.modes #=> Array
|
@@ -3739,6 +3765,7 @@ module Aws::CodeBuild
|
|
3739
3765
|
# resp.build.logs.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
3740
3766
|
# resp.build.logs.s3_logs.location #=> String
|
3741
3767
|
# resp.build.logs.s3_logs.encryption_disabled #=> Boolean
|
3768
|
+
# resp.build.logs.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
3742
3769
|
# resp.build.timeout_in_minutes #=> Integer
|
3743
3770
|
# resp.build.queued_timeout_in_minutes #=> Integer
|
3744
3771
|
# resp.build.build_complete #=> Boolean
|
@@ -4040,6 +4067,7 @@ module Aws::CodeBuild
|
|
4040
4067
|
# override_artifact_name: false,
|
4041
4068
|
# encryption_disabled: false,
|
4042
4069
|
# artifact_identifier: "String",
|
4070
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4043
4071
|
# },
|
4044
4072
|
# secondary_artifacts_override: [
|
4045
4073
|
# {
|
@@ -4052,6 +4080,7 @@ module Aws::CodeBuild
|
|
4052
4080
|
# override_artifact_name: false,
|
4053
4081
|
# encryption_disabled: false,
|
4054
4082
|
# artifact_identifier: "String",
|
4083
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4055
4084
|
# },
|
4056
4085
|
# ],
|
4057
4086
|
# environment_variables_override: [
|
@@ -4099,6 +4128,7 @@ module Aws::CodeBuild
|
|
4099
4128
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
4100
4129
|
# location: "String",
|
4101
4130
|
# encryption_disabled: false,
|
4131
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4102
4132
|
# },
|
4103
4133
|
# },
|
4104
4134
|
# registry_credential_override: {
|
@@ -4172,6 +4202,7 @@ module Aws::CodeBuild
|
|
4172
4202
|
# resp.build_batch.artifacts.override_artifact_name #=> Boolean
|
4173
4203
|
# resp.build_batch.artifacts.encryption_disabled #=> Boolean
|
4174
4204
|
# resp.build_batch.artifacts.artifact_identifier #=> String
|
4205
|
+
# resp.build_batch.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4175
4206
|
# resp.build_batch.secondary_artifacts #=> Array
|
4176
4207
|
# resp.build_batch.secondary_artifacts[0].location #=> String
|
4177
4208
|
# resp.build_batch.secondary_artifacts[0].sha256sum #=> String
|
@@ -4179,6 +4210,7 @@ module Aws::CodeBuild
|
|
4179
4210
|
# resp.build_batch.secondary_artifacts[0].override_artifact_name #=> Boolean
|
4180
4211
|
# resp.build_batch.secondary_artifacts[0].encryption_disabled #=> Boolean
|
4181
4212
|
# resp.build_batch.secondary_artifacts[0].artifact_identifier #=> String
|
4213
|
+
# resp.build_batch.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4182
4214
|
# resp.build_batch.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
4183
4215
|
# resp.build_batch.cache.location #=> String
|
4184
4216
|
# resp.build_batch.cache.modes #=> Array
|
@@ -4202,6 +4234,7 @@ module Aws::CodeBuild
|
|
4202
4234
|
# resp.build_batch.log_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
4203
4235
|
# resp.build_batch.log_config.s3_logs.location #=> String
|
4204
4236
|
# resp.build_batch.log_config.s3_logs.encryption_disabled #=> Boolean
|
4237
|
+
# resp.build_batch.log_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4205
4238
|
# resp.build_batch.build_timeout_in_minutes #=> Integer
|
4206
4239
|
# resp.build_batch.queued_timeout_in_minutes #=> Integer
|
4207
4240
|
# resp.build_batch.complete #=> Boolean
|
@@ -4332,6 +4365,7 @@ module Aws::CodeBuild
|
|
4332
4365
|
# resp.build.artifacts.override_artifact_name #=> Boolean
|
4333
4366
|
# resp.build.artifacts.encryption_disabled #=> Boolean
|
4334
4367
|
# resp.build.artifacts.artifact_identifier #=> String
|
4368
|
+
# resp.build.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4335
4369
|
# resp.build.secondary_artifacts #=> Array
|
4336
4370
|
# resp.build.secondary_artifacts[0].location #=> String
|
4337
4371
|
# resp.build.secondary_artifacts[0].sha256sum #=> String
|
@@ -4339,6 +4373,7 @@ module Aws::CodeBuild
|
|
4339
4373
|
# resp.build.secondary_artifacts[0].override_artifact_name #=> Boolean
|
4340
4374
|
# resp.build.secondary_artifacts[0].encryption_disabled #=> Boolean
|
4341
4375
|
# resp.build.secondary_artifacts[0].artifact_identifier #=> String
|
4376
|
+
# resp.build.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4342
4377
|
# resp.build.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
4343
4378
|
# resp.build.cache.location #=> String
|
4344
4379
|
# resp.build.cache.modes #=> Array
|
@@ -4368,6 +4403,7 @@ module Aws::CodeBuild
|
|
4368
4403
|
# resp.build.logs.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
4369
4404
|
# resp.build.logs.s3_logs.location #=> String
|
4370
4405
|
# resp.build.logs.s3_logs.encryption_disabled #=> Boolean
|
4406
|
+
# resp.build.logs.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4371
4407
|
# resp.build.timeout_in_minutes #=> Integer
|
4372
4408
|
# resp.build.queued_timeout_in_minutes #=> Integer
|
4373
4409
|
# resp.build.build_complete #=> Boolean
|
@@ -4473,6 +4509,7 @@ module Aws::CodeBuild
|
|
4473
4509
|
# resp.build_batch.artifacts.override_artifact_name #=> Boolean
|
4474
4510
|
# resp.build_batch.artifacts.encryption_disabled #=> Boolean
|
4475
4511
|
# resp.build_batch.artifacts.artifact_identifier #=> String
|
4512
|
+
# resp.build_batch.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4476
4513
|
# resp.build_batch.secondary_artifacts #=> Array
|
4477
4514
|
# resp.build_batch.secondary_artifacts[0].location #=> String
|
4478
4515
|
# resp.build_batch.secondary_artifacts[0].sha256sum #=> String
|
@@ -4480,6 +4517,7 @@ module Aws::CodeBuild
|
|
4480
4517
|
# resp.build_batch.secondary_artifacts[0].override_artifact_name #=> Boolean
|
4481
4518
|
# resp.build_batch.secondary_artifacts[0].encryption_disabled #=> Boolean
|
4482
4519
|
# resp.build_batch.secondary_artifacts[0].artifact_identifier #=> String
|
4520
|
+
# resp.build_batch.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4483
4521
|
# resp.build_batch.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
4484
4522
|
# resp.build_batch.cache.location #=> String
|
4485
4523
|
# resp.build_batch.cache.modes #=> Array
|
@@ -4503,6 +4541,7 @@ module Aws::CodeBuild
|
|
4503
4541
|
# resp.build_batch.log_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
4504
4542
|
# resp.build_batch.log_config.s3_logs.location #=> String
|
4505
4543
|
# resp.build_batch.log_config.s3_logs.encryption_disabled #=> Boolean
|
4544
|
+
# resp.build_batch.log_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4506
4545
|
# resp.build_batch.build_timeout_in_minutes #=> Integer
|
4507
4546
|
# resp.build_batch.queued_timeout_in_minutes #=> Integer
|
4508
4547
|
# resp.build_batch.complete #=> Boolean
|
@@ -4766,6 +4805,7 @@ module Aws::CodeBuild
|
|
4766
4805
|
# override_artifact_name: false,
|
4767
4806
|
# encryption_disabled: false,
|
4768
4807
|
# artifact_identifier: "String",
|
4808
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4769
4809
|
# },
|
4770
4810
|
# secondary_artifacts: [
|
4771
4811
|
# {
|
@@ -4778,6 +4818,7 @@ module Aws::CodeBuild
|
|
4778
4818
|
# override_artifact_name: false,
|
4779
4819
|
# encryption_disabled: false,
|
4780
4820
|
# artifact_identifier: "String",
|
4821
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4781
4822
|
# },
|
4782
4823
|
# ],
|
4783
4824
|
# cache: {
|
@@ -4830,6 +4871,7 @@ module Aws::CodeBuild
|
|
4830
4871
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
4831
4872
|
# location: "String",
|
4832
4873
|
# encryption_disabled: false,
|
4874
|
+
# bucket_owner_access: "NONE", # accepts NONE, READ_ONLY, FULL
|
4833
4875
|
# },
|
4834
4876
|
# },
|
4835
4877
|
# file_system_locations: [
|
@@ -4896,6 +4938,7 @@ module Aws::CodeBuild
|
|
4896
4938
|
# resp.project.artifacts.override_artifact_name #=> Boolean
|
4897
4939
|
# resp.project.artifacts.encryption_disabled #=> Boolean
|
4898
4940
|
# resp.project.artifacts.artifact_identifier #=> String
|
4941
|
+
# resp.project.artifacts.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4899
4942
|
# resp.project.secondary_artifacts #=> Array
|
4900
4943
|
# resp.project.secondary_artifacts[0].type #=> String, one of "CODEPIPELINE", "S3", "NO_ARTIFACTS"
|
4901
4944
|
# resp.project.secondary_artifacts[0].location #=> String
|
@@ -4906,6 +4949,7 @@ module Aws::CodeBuild
|
|
4906
4949
|
# resp.project.secondary_artifacts[0].override_artifact_name #=> Boolean
|
4907
4950
|
# resp.project.secondary_artifacts[0].encryption_disabled #=> Boolean
|
4908
4951
|
# resp.project.secondary_artifacts[0].artifact_identifier #=> String
|
4952
|
+
# resp.project.secondary_artifacts[0].bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4909
4953
|
# resp.project.cache.type #=> String, one of "NO_CACHE", "S3", "LOCAL"
|
4910
4954
|
# resp.project.cache.location #=> String
|
4911
4955
|
# resp.project.cache.modes #=> Array
|
@@ -4955,6 +4999,7 @@ module Aws::CodeBuild
|
|
4955
4999
|
# resp.project.logs_config.s3_logs.status #=> String, one of "ENABLED", "DISABLED"
|
4956
5000
|
# resp.project.logs_config.s3_logs.location #=> String
|
4957
5001
|
# resp.project.logs_config.s3_logs.encryption_disabled #=> Boolean
|
5002
|
+
# resp.project.logs_config.s3_logs.bucket_owner_access #=> String, one of "NONE", "READ_ONLY", "FULL"
|
4958
5003
|
# resp.project.file_system_locations #=> Array
|
4959
5004
|
# resp.project.file_system_locations[0].type #=> String, one of "EFS"
|
4960
5005
|
# resp.project.file_system_locations[0].location #=> String
|
@@ -5143,7 +5188,7 @@ module Aws::CodeBuild
|
|
5143
5188
|
params: params,
|
5144
5189
|
config: config)
|
5145
5190
|
context[:gem_name] = 'aws-sdk-codebuild'
|
5146
|
-
context[:gem_version] = '1.
|
5191
|
+
context[:gem_version] = '1.74.0'
|
5147
5192
|
Seahorse::Client::Request.new(handlers, context)
|
5148
5193
|
end
|
5149
5194
|
|