aws-sdk-codebuild 1.102.0 → 1.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +21 -4
- data/lib/aws-sdk-codebuild/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-codebuild/types.rb +56 -43
- data/lib/aws-sdk-codebuild.rb +1 -1
- data/sig/client.rbs +1293 -0
- data/sig/errors.rbs +26 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1265 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,1265 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CodeBuild
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountLimitExceededException < Aws::EmptyStructure
|
12
|
+
end
|
13
|
+
|
14
|
+
class BatchDeleteBuildsInput
|
15
|
+
attr_accessor ids: ::Array[::String]
|
16
|
+
SENSITIVE: []
|
17
|
+
end
|
18
|
+
|
19
|
+
class BatchDeleteBuildsOutput
|
20
|
+
attr_accessor builds_deleted: ::Array[::String]
|
21
|
+
attr_accessor builds_not_deleted: ::Array[Types::BuildNotDeleted]
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class BatchGetBuildBatchesInput
|
26
|
+
attr_accessor ids: ::Array[::String]
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class BatchGetBuildBatchesOutput
|
31
|
+
attr_accessor build_batches: ::Array[Types::BuildBatch]
|
32
|
+
attr_accessor build_batches_not_found: ::Array[::String]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class BatchGetBuildsInput
|
37
|
+
attr_accessor ids: ::Array[::String]
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class BatchGetBuildsOutput
|
42
|
+
attr_accessor builds: ::Array[Types::Build]
|
43
|
+
attr_accessor builds_not_found: ::Array[::String]
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class BatchGetFleetsInput
|
48
|
+
attr_accessor names: ::Array[::String]
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class BatchGetFleetsOutput
|
53
|
+
attr_accessor fleets: ::Array[Types::Fleet]
|
54
|
+
attr_accessor fleets_not_found: ::Array[::String]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class BatchGetProjectsInput
|
59
|
+
attr_accessor names: ::Array[::String]
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class BatchGetProjectsOutput
|
64
|
+
attr_accessor projects: ::Array[Types::Project]
|
65
|
+
attr_accessor projects_not_found: ::Array[::String]
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class BatchGetReportGroupsInput
|
70
|
+
attr_accessor report_group_arns: ::Array[::String]
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class BatchGetReportGroupsOutput
|
75
|
+
attr_accessor report_groups: ::Array[Types::ReportGroup]
|
76
|
+
attr_accessor report_groups_not_found: ::Array[::String]
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class BatchGetReportsInput
|
81
|
+
attr_accessor report_arns: ::Array[::String]
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class BatchGetReportsOutput
|
86
|
+
attr_accessor reports: ::Array[Types::Report]
|
87
|
+
attr_accessor reports_not_found: ::Array[::String]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class BatchRestrictions
|
92
|
+
attr_accessor maximum_builds_allowed: ::Integer
|
93
|
+
attr_accessor compute_types_allowed: ::Array[::String]
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class Build
|
98
|
+
attr_accessor id: ::String
|
99
|
+
attr_accessor arn: ::String
|
100
|
+
attr_accessor build_number: ::Integer
|
101
|
+
attr_accessor start_time: ::Time
|
102
|
+
attr_accessor end_time: ::Time
|
103
|
+
attr_accessor current_phase: ::String
|
104
|
+
attr_accessor build_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
105
|
+
attr_accessor source_version: ::String
|
106
|
+
attr_accessor resolved_source_version: ::String
|
107
|
+
attr_accessor project_name: ::String
|
108
|
+
attr_accessor phases: ::Array[Types::BuildPhase]
|
109
|
+
attr_accessor source: Types::ProjectSource
|
110
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
111
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
112
|
+
attr_accessor artifacts: Types::BuildArtifacts
|
113
|
+
attr_accessor secondary_artifacts: ::Array[Types::BuildArtifacts]
|
114
|
+
attr_accessor cache: Types::ProjectCache
|
115
|
+
attr_accessor environment: Types::ProjectEnvironment
|
116
|
+
attr_accessor service_role: ::String
|
117
|
+
attr_accessor logs: Types::LogsLocation
|
118
|
+
attr_accessor timeout_in_minutes: ::Integer
|
119
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
120
|
+
attr_accessor build_complete: bool
|
121
|
+
attr_accessor initiator: ::String
|
122
|
+
attr_accessor vpc_config: Types::VpcConfig
|
123
|
+
attr_accessor network_interface: Types::NetworkInterface
|
124
|
+
attr_accessor encryption_key: ::String
|
125
|
+
attr_accessor exported_environment_variables: ::Array[Types::ExportedEnvironmentVariable]
|
126
|
+
attr_accessor report_arns: ::Array[::String]
|
127
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
128
|
+
attr_accessor debug_session: Types::DebugSession
|
129
|
+
attr_accessor build_batch_arn: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class BuildArtifacts
|
134
|
+
attr_accessor location: ::String
|
135
|
+
attr_accessor sha256sum: ::String
|
136
|
+
attr_accessor md5sum: ::String
|
137
|
+
attr_accessor override_artifact_name: bool
|
138
|
+
attr_accessor encryption_disabled: bool
|
139
|
+
attr_accessor artifact_identifier: ::String
|
140
|
+
attr_accessor bucket_owner_access: ("NONE" | "READ_ONLY" | "FULL")
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class BuildBatch
|
145
|
+
attr_accessor id: ::String
|
146
|
+
attr_accessor arn: ::String
|
147
|
+
attr_accessor start_time: ::Time
|
148
|
+
attr_accessor end_time: ::Time
|
149
|
+
attr_accessor current_phase: ::String
|
150
|
+
attr_accessor build_batch_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
151
|
+
attr_accessor source_version: ::String
|
152
|
+
attr_accessor resolved_source_version: ::String
|
153
|
+
attr_accessor project_name: ::String
|
154
|
+
attr_accessor phases: ::Array[Types::BuildBatchPhase]
|
155
|
+
attr_accessor source: Types::ProjectSource
|
156
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
157
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
158
|
+
attr_accessor artifacts: Types::BuildArtifacts
|
159
|
+
attr_accessor secondary_artifacts: ::Array[Types::BuildArtifacts]
|
160
|
+
attr_accessor cache: Types::ProjectCache
|
161
|
+
attr_accessor environment: Types::ProjectEnvironment
|
162
|
+
attr_accessor service_role: ::String
|
163
|
+
attr_accessor log_config: Types::LogsConfig
|
164
|
+
attr_accessor build_timeout_in_minutes: ::Integer
|
165
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
166
|
+
attr_accessor complete: bool
|
167
|
+
attr_accessor initiator: ::String
|
168
|
+
attr_accessor vpc_config: Types::VpcConfig
|
169
|
+
attr_accessor encryption_key: ::String
|
170
|
+
attr_accessor build_batch_number: ::Integer
|
171
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
172
|
+
attr_accessor build_batch_config: Types::ProjectBuildBatchConfig
|
173
|
+
attr_accessor build_groups: ::Array[Types::BuildGroup]
|
174
|
+
attr_accessor debug_session_enabled: bool
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class BuildBatchFilter
|
179
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class BuildBatchPhase
|
184
|
+
attr_accessor phase_type: ("SUBMITTED" | "DOWNLOAD_BATCHSPEC" | "IN_PROGRESS" | "COMBINE_ARTIFACTS" | "SUCCEEDED" | "FAILED" | "STOPPED")
|
185
|
+
attr_accessor phase_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
186
|
+
attr_accessor start_time: ::Time
|
187
|
+
attr_accessor end_time: ::Time
|
188
|
+
attr_accessor duration_in_seconds: ::Integer
|
189
|
+
attr_accessor contexts: ::Array[Types::PhaseContext]
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class BuildGroup
|
194
|
+
attr_accessor identifier: ::String
|
195
|
+
attr_accessor depends_on: ::Array[::String]
|
196
|
+
attr_accessor ignore_failure: bool
|
197
|
+
attr_accessor current_build_summary: Types::BuildSummary
|
198
|
+
attr_accessor prior_build_summary_list: ::Array[Types::BuildSummary]
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class BuildNotDeleted
|
203
|
+
attr_accessor id: ::String
|
204
|
+
attr_accessor status_code: ::String
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class BuildPhase
|
209
|
+
attr_accessor phase_type: ("SUBMITTED" | "QUEUED" | "PROVISIONING" | "DOWNLOAD_SOURCE" | "INSTALL" | "PRE_BUILD" | "BUILD" | "POST_BUILD" | "UPLOAD_ARTIFACTS" | "FINALIZING" | "COMPLETED")
|
210
|
+
attr_accessor phase_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
211
|
+
attr_accessor start_time: ::Time
|
212
|
+
attr_accessor end_time: ::Time
|
213
|
+
attr_accessor duration_in_seconds: ::Integer
|
214
|
+
attr_accessor contexts: ::Array[Types::PhaseContext]
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class BuildStatusConfig
|
219
|
+
attr_accessor context: ::String
|
220
|
+
attr_accessor target_url: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class BuildSummary
|
225
|
+
attr_accessor arn: ::String
|
226
|
+
attr_accessor requested_on: ::Time
|
227
|
+
attr_accessor build_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
228
|
+
attr_accessor primary_artifact: Types::ResolvedArtifact
|
229
|
+
attr_accessor secondary_artifacts: ::Array[Types::ResolvedArtifact]
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class CloudWatchLogsConfig
|
234
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
235
|
+
attr_accessor group_name: ::String
|
236
|
+
attr_accessor stream_name: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class CodeCoverage
|
241
|
+
attr_accessor id: ::String
|
242
|
+
attr_accessor report_arn: ::String
|
243
|
+
attr_accessor file_path: ::String
|
244
|
+
attr_accessor line_coverage_percentage: ::Float
|
245
|
+
attr_accessor lines_covered: ::Integer
|
246
|
+
attr_accessor lines_missed: ::Integer
|
247
|
+
attr_accessor branch_coverage_percentage: ::Float
|
248
|
+
attr_accessor branches_covered: ::Integer
|
249
|
+
attr_accessor branches_missed: ::Integer
|
250
|
+
attr_accessor expired: ::Time
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class CodeCoverageReportSummary
|
255
|
+
attr_accessor line_coverage_percentage: ::Float
|
256
|
+
attr_accessor lines_covered: ::Integer
|
257
|
+
attr_accessor lines_missed: ::Integer
|
258
|
+
attr_accessor branch_coverage_percentage: ::Float
|
259
|
+
attr_accessor branches_covered: ::Integer
|
260
|
+
attr_accessor branches_missed: ::Integer
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class CreateFleetInput
|
265
|
+
attr_accessor name: ::String
|
266
|
+
attr_accessor base_capacity: ::Integer
|
267
|
+
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
268
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
269
|
+
attr_accessor scaling_configuration: Types::ScalingConfigurationInput
|
270
|
+
attr_accessor tags: ::Array[Types::Tag]
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class CreateFleetOutput
|
275
|
+
attr_accessor fleet: Types::Fleet
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class CreateProjectInput
|
280
|
+
attr_accessor name: ::String
|
281
|
+
attr_accessor description: ::String
|
282
|
+
attr_accessor source: Types::ProjectSource
|
283
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
284
|
+
attr_accessor source_version: ::String
|
285
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
286
|
+
attr_accessor artifacts: Types::ProjectArtifacts
|
287
|
+
attr_accessor secondary_artifacts: ::Array[Types::ProjectArtifacts]
|
288
|
+
attr_accessor cache: Types::ProjectCache
|
289
|
+
attr_accessor environment: Types::ProjectEnvironment
|
290
|
+
attr_accessor service_role: ::String
|
291
|
+
attr_accessor timeout_in_minutes: ::Integer
|
292
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
293
|
+
attr_accessor encryption_key: ::String
|
294
|
+
attr_accessor tags: ::Array[Types::Tag]
|
295
|
+
attr_accessor vpc_config: Types::VpcConfig
|
296
|
+
attr_accessor badge_enabled: bool
|
297
|
+
attr_accessor logs_config: Types::LogsConfig
|
298
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
299
|
+
attr_accessor build_batch_config: Types::ProjectBuildBatchConfig
|
300
|
+
attr_accessor concurrent_build_limit: ::Integer
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class CreateProjectOutput
|
305
|
+
attr_accessor project: Types::Project
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class CreateReportGroupInput
|
310
|
+
attr_accessor name: ::String
|
311
|
+
attr_accessor type: ("TEST" | "CODE_COVERAGE")
|
312
|
+
attr_accessor export_config: Types::ReportExportConfig
|
313
|
+
attr_accessor tags: ::Array[Types::Tag]
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class CreateReportGroupOutput
|
318
|
+
attr_accessor report_group: Types::ReportGroup
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class CreateWebhookInput
|
323
|
+
attr_accessor project_name: ::String
|
324
|
+
attr_accessor branch_filter: ::String
|
325
|
+
attr_accessor filter_groups: ::Array[::Array[Types::WebhookFilter]]
|
326
|
+
attr_accessor build_type: ("BUILD" | "BUILD_BATCH")
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class CreateWebhookOutput
|
331
|
+
attr_accessor webhook: Types::Webhook
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DebugSession
|
336
|
+
attr_accessor session_enabled: bool
|
337
|
+
attr_accessor session_target: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeleteBuildBatchInput
|
342
|
+
attr_accessor id: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class DeleteBuildBatchOutput
|
347
|
+
attr_accessor status_code: ::String
|
348
|
+
attr_accessor builds_deleted: ::Array[::String]
|
349
|
+
attr_accessor builds_not_deleted: ::Array[Types::BuildNotDeleted]
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class DeleteFleetInput
|
354
|
+
attr_accessor arn: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeleteFleetOutput < Aws::EmptyStructure
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeleteProjectInput
|
362
|
+
attr_accessor name: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class DeleteProjectOutput < Aws::EmptyStructure
|
367
|
+
end
|
368
|
+
|
369
|
+
class DeleteReportGroupInput
|
370
|
+
attr_accessor arn: ::String
|
371
|
+
attr_accessor delete_reports: bool
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class DeleteReportGroupOutput < Aws::EmptyStructure
|
376
|
+
end
|
377
|
+
|
378
|
+
class DeleteReportInput
|
379
|
+
attr_accessor arn: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class DeleteReportOutput < Aws::EmptyStructure
|
384
|
+
end
|
385
|
+
|
386
|
+
class DeleteResourcePolicyInput
|
387
|
+
attr_accessor resource_arn: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class DeleteResourcePolicyOutput < Aws::EmptyStructure
|
392
|
+
end
|
393
|
+
|
394
|
+
class DeleteSourceCredentialsInput
|
395
|
+
attr_accessor arn: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class DeleteSourceCredentialsOutput
|
400
|
+
attr_accessor arn: ::String
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class DeleteWebhookInput
|
405
|
+
attr_accessor project_name: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class DeleteWebhookOutput < Aws::EmptyStructure
|
410
|
+
end
|
411
|
+
|
412
|
+
class DescribeCodeCoveragesInput
|
413
|
+
attr_accessor report_arn: ::String
|
414
|
+
attr_accessor next_token: ::String
|
415
|
+
attr_accessor max_results: ::Integer
|
416
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
417
|
+
attr_accessor sort_by: ("LINE_COVERAGE_PERCENTAGE" | "FILE_PATH")
|
418
|
+
attr_accessor min_line_coverage_percentage: ::Float
|
419
|
+
attr_accessor max_line_coverage_percentage: ::Float
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class DescribeCodeCoveragesOutput
|
424
|
+
attr_accessor next_token: ::String
|
425
|
+
attr_accessor code_coverages: ::Array[Types::CodeCoverage]
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class DescribeTestCasesInput
|
430
|
+
attr_accessor report_arn: ::String
|
431
|
+
attr_accessor next_token: ::String
|
432
|
+
attr_accessor max_results: ::Integer
|
433
|
+
attr_accessor filter: Types::TestCaseFilter
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class DescribeTestCasesOutput
|
438
|
+
attr_accessor next_token: ::String
|
439
|
+
attr_accessor test_cases: ::Array[Types::TestCase]
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class EnvironmentImage
|
444
|
+
attr_accessor name: ::String
|
445
|
+
attr_accessor description: ::String
|
446
|
+
attr_accessor versions: ::Array[::String]
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class EnvironmentLanguage
|
451
|
+
attr_accessor language: ("JAVA" | "PYTHON" | "NODE_JS" | "RUBY" | "GOLANG" | "DOCKER" | "ANDROID" | "DOTNET" | "BASE" | "PHP")
|
452
|
+
attr_accessor images: ::Array[Types::EnvironmentImage]
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class EnvironmentPlatform
|
457
|
+
attr_accessor platform: ("DEBIAN" | "AMAZON_LINUX" | "UBUNTU" | "WINDOWS_SERVER")
|
458
|
+
attr_accessor languages: ::Array[Types::EnvironmentLanguage]
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class EnvironmentVariable
|
463
|
+
attr_accessor name: ::String
|
464
|
+
attr_accessor value: ::String
|
465
|
+
attr_accessor type: ("PLAINTEXT" | "PARAMETER_STORE" | "SECRETS_MANAGER")
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class ExportedEnvironmentVariable
|
470
|
+
attr_accessor name: ::String
|
471
|
+
attr_accessor value: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class Fleet
|
476
|
+
attr_accessor arn: ::String
|
477
|
+
attr_accessor name: ::String
|
478
|
+
attr_accessor id: ::String
|
479
|
+
attr_accessor created: ::Time
|
480
|
+
attr_accessor last_modified: ::Time
|
481
|
+
attr_accessor status: Types::FleetStatus
|
482
|
+
attr_accessor base_capacity: ::Integer
|
483
|
+
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
484
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
485
|
+
attr_accessor scaling_configuration: Types::ScalingConfigurationOutput
|
486
|
+
attr_accessor tags: ::Array[Types::Tag]
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class FleetStatus
|
491
|
+
attr_accessor status_code: ("CREATING" | "UPDATING" | "ROTATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_ROLLBACK_FAILED" | "ACTIVE")
|
492
|
+
attr_accessor context: ("CREATE_FAILED" | "UPDATE_FAILED")
|
493
|
+
attr_accessor message: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class GetReportGroupTrendInput
|
498
|
+
attr_accessor report_group_arn: ::String
|
499
|
+
attr_accessor num_of_reports: ::Integer
|
500
|
+
attr_accessor trend_field: ("PASS_RATE" | "DURATION" | "TOTAL" | "LINE_COVERAGE" | "LINES_COVERED" | "LINES_MISSED" | "BRANCH_COVERAGE" | "BRANCHES_COVERED" | "BRANCHES_MISSED")
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class GetReportGroupTrendOutput
|
505
|
+
attr_accessor stats: Types::ReportGroupTrendStats
|
506
|
+
attr_accessor raw_data: ::Array[Types::ReportWithRawData]
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class GetResourcePolicyInput
|
511
|
+
attr_accessor resource_arn: ::String
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class GetResourcePolicyOutput
|
516
|
+
attr_accessor policy: ::String
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class GitSubmodulesConfig
|
521
|
+
attr_accessor fetch_submodules: bool
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class ImportSourceCredentialsInput
|
526
|
+
attr_accessor username: ::String
|
527
|
+
attr_accessor token: ::String
|
528
|
+
attr_accessor server_type: ("GITHUB" | "BITBUCKET" | "GITHUB_ENTERPRISE")
|
529
|
+
attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN")
|
530
|
+
attr_accessor should_overwrite: bool
|
531
|
+
SENSITIVE: [:token]
|
532
|
+
end
|
533
|
+
|
534
|
+
class ImportSourceCredentialsOutput
|
535
|
+
attr_accessor arn: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class InvalidInputException < Aws::EmptyStructure
|
540
|
+
end
|
541
|
+
|
542
|
+
class InvalidateProjectCacheInput
|
543
|
+
attr_accessor project_name: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class InvalidateProjectCacheOutput < Aws::EmptyStructure
|
548
|
+
end
|
549
|
+
|
550
|
+
class ListBuildBatchesForProjectInput
|
551
|
+
attr_accessor project_name: ::String
|
552
|
+
attr_accessor filter: Types::BuildBatchFilter
|
553
|
+
attr_accessor max_results: ::Integer
|
554
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
555
|
+
attr_accessor next_token: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class ListBuildBatchesForProjectOutput
|
560
|
+
attr_accessor ids: ::Array[::String]
|
561
|
+
attr_accessor next_token: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class ListBuildBatchesInput
|
566
|
+
attr_accessor filter: Types::BuildBatchFilter
|
567
|
+
attr_accessor max_results: ::Integer
|
568
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
569
|
+
attr_accessor next_token: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class ListBuildBatchesOutput
|
574
|
+
attr_accessor ids: ::Array[::String]
|
575
|
+
attr_accessor next_token: ::String
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class ListBuildsForProjectInput
|
580
|
+
attr_accessor project_name: ::String
|
581
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
582
|
+
attr_accessor next_token: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ListBuildsForProjectOutput
|
587
|
+
attr_accessor ids: ::Array[::String]
|
588
|
+
attr_accessor next_token: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class ListBuildsInput
|
593
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
594
|
+
attr_accessor next_token: ::String
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class ListBuildsOutput
|
599
|
+
attr_accessor ids: ::Array[::String]
|
600
|
+
attr_accessor next_token: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ListCuratedEnvironmentImagesInput < Aws::EmptyStructure
|
605
|
+
end
|
606
|
+
|
607
|
+
class ListCuratedEnvironmentImagesOutput
|
608
|
+
attr_accessor platforms: ::Array[Types::EnvironmentPlatform]
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class ListFleetsInput
|
613
|
+
attr_accessor next_token: ::String
|
614
|
+
attr_accessor max_results: ::Integer
|
615
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
616
|
+
attr_accessor sort_by: ("NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME")
|
617
|
+
SENSITIVE: [:next_token]
|
618
|
+
end
|
619
|
+
|
620
|
+
class ListFleetsOutput
|
621
|
+
attr_accessor next_token: ::String
|
622
|
+
attr_accessor fleets: ::Array[::String]
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class ListProjectsInput
|
627
|
+
attr_accessor sort_by: ("NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME")
|
628
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
629
|
+
attr_accessor next_token: ::String
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class ListProjectsOutput
|
634
|
+
attr_accessor next_token: ::String
|
635
|
+
attr_accessor projects: ::Array[::String]
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class ListReportGroupsInput
|
640
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
641
|
+
attr_accessor sort_by: ("NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME")
|
642
|
+
attr_accessor next_token: ::String
|
643
|
+
attr_accessor max_results: ::Integer
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class ListReportGroupsOutput
|
648
|
+
attr_accessor next_token: ::String
|
649
|
+
attr_accessor report_groups: ::Array[::String]
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class ListReportsForReportGroupInput
|
654
|
+
attr_accessor report_group_arn: ::String
|
655
|
+
attr_accessor next_token: ::String
|
656
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
657
|
+
attr_accessor max_results: ::Integer
|
658
|
+
attr_accessor filter: Types::ReportFilter
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class ListReportsForReportGroupOutput
|
663
|
+
attr_accessor next_token: ::String
|
664
|
+
attr_accessor reports: ::Array[::String]
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class ListReportsInput
|
669
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
670
|
+
attr_accessor next_token: ::String
|
671
|
+
attr_accessor max_results: ::Integer
|
672
|
+
attr_accessor filter: Types::ReportFilter
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class ListReportsOutput
|
677
|
+
attr_accessor next_token: ::String
|
678
|
+
attr_accessor reports: ::Array[::String]
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class ListSharedProjectsInput
|
683
|
+
attr_accessor sort_by: ("ARN" | "MODIFIED_TIME")
|
684
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
685
|
+
attr_accessor max_results: ::Integer
|
686
|
+
attr_accessor next_token: ::String
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class ListSharedProjectsOutput
|
691
|
+
attr_accessor next_token: ::String
|
692
|
+
attr_accessor projects: ::Array[::String]
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class ListSharedReportGroupsInput
|
697
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
698
|
+
attr_accessor sort_by: ("ARN" | "MODIFIED_TIME")
|
699
|
+
attr_accessor next_token: ::String
|
700
|
+
attr_accessor max_results: ::Integer
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class ListSharedReportGroupsOutput
|
705
|
+
attr_accessor next_token: ::String
|
706
|
+
attr_accessor report_groups: ::Array[::String]
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class ListSourceCredentialsInput < Aws::EmptyStructure
|
711
|
+
end
|
712
|
+
|
713
|
+
class ListSourceCredentialsOutput
|
714
|
+
attr_accessor source_credentials_infos: ::Array[Types::SourceCredentialsInfo]
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class LogsConfig
|
719
|
+
attr_accessor cloud_watch_logs: Types::CloudWatchLogsConfig
|
720
|
+
attr_accessor s3_logs: Types::S3LogsConfig
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class LogsLocation
|
725
|
+
attr_accessor group_name: ::String
|
726
|
+
attr_accessor stream_name: ::String
|
727
|
+
attr_accessor deep_link: ::String
|
728
|
+
attr_accessor s3_deep_link: ::String
|
729
|
+
attr_accessor cloud_watch_logs_arn: ::String
|
730
|
+
attr_accessor s3_logs_arn: ::String
|
731
|
+
attr_accessor cloud_watch_logs: Types::CloudWatchLogsConfig
|
732
|
+
attr_accessor s3_logs: Types::S3LogsConfig
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class NetworkInterface
|
737
|
+
attr_accessor subnet_id: ::String
|
738
|
+
attr_accessor network_interface_id: ::String
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class OAuthProviderException < Aws::EmptyStructure
|
743
|
+
end
|
744
|
+
|
745
|
+
class PhaseContext
|
746
|
+
attr_accessor status_code: ::String
|
747
|
+
attr_accessor message: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class Project
|
752
|
+
attr_accessor name: ::String
|
753
|
+
attr_accessor arn: ::String
|
754
|
+
attr_accessor description: ::String
|
755
|
+
attr_accessor source: Types::ProjectSource
|
756
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
757
|
+
attr_accessor source_version: ::String
|
758
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
759
|
+
attr_accessor artifacts: Types::ProjectArtifacts
|
760
|
+
attr_accessor secondary_artifacts: ::Array[Types::ProjectArtifacts]
|
761
|
+
attr_accessor cache: Types::ProjectCache
|
762
|
+
attr_accessor environment: Types::ProjectEnvironment
|
763
|
+
attr_accessor service_role: ::String
|
764
|
+
attr_accessor timeout_in_minutes: ::Integer
|
765
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
766
|
+
attr_accessor encryption_key: ::String
|
767
|
+
attr_accessor tags: ::Array[Types::Tag]
|
768
|
+
attr_accessor created: ::Time
|
769
|
+
attr_accessor last_modified: ::Time
|
770
|
+
attr_accessor webhook: Types::Webhook
|
771
|
+
attr_accessor vpc_config: Types::VpcConfig
|
772
|
+
attr_accessor badge: Types::ProjectBadge
|
773
|
+
attr_accessor logs_config: Types::LogsConfig
|
774
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
775
|
+
attr_accessor build_batch_config: Types::ProjectBuildBatchConfig
|
776
|
+
attr_accessor concurrent_build_limit: ::Integer
|
777
|
+
attr_accessor project_visibility: ("PUBLIC_READ" | "PRIVATE")
|
778
|
+
attr_accessor public_project_alias: ::String
|
779
|
+
attr_accessor resource_access_role: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class ProjectArtifacts
|
784
|
+
attr_accessor type: ("CODEPIPELINE" | "S3" | "NO_ARTIFACTS")
|
785
|
+
attr_accessor location: ::String
|
786
|
+
attr_accessor path: ::String
|
787
|
+
attr_accessor namespace_type: ("NONE" | "BUILD_ID")
|
788
|
+
attr_accessor name: ::String
|
789
|
+
attr_accessor packaging: ("NONE" | "ZIP")
|
790
|
+
attr_accessor override_artifact_name: bool
|
791
|
+
attr_accessor encryption_disabled: bool
|
792
|
+
attr_accessor artifact_identifier: ::String
|
793
|
+
attr_accessor bucket_owner_access: ("NONE" | "READ_ONLY" | "FULL")
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class ProjectBadge
|
798
|
+
attr_accessor badge_enabled: bool
|
799
|
+
attr_accessor badge_request_url: ::String
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class ProjectBuildBatchConfig
|
804
|
+
attr_accessor service_role: ::String
|
805
|
+
attr_accessor combine_artifacts: bool
|
806
|
+
attr_accessor restrictions: Types::BatchRestrictions
|
807
|
+
attr_accessor timeout_in_mins: ::Integer
|
808
|
+
attr_accessor batch_report_mode: ("REPORT_INDIVIDUAL_BUILDS" | "REPORT_AGGREGATED_BATCH")
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class ProjectCache
|
813
|
+
attr_accessor type: ("NO_CACHE" | "S3" | "LOCAL")
|
814
|
+
attr_accessor location: ::String
|
815
|
+
attr_accessor modes: ::Array[("LOCAL_DOCKER_LAYER_CACHE" | "LOCAL_SOURCE_CACHE" | "LOCAL_CUSTOM_CACHE")]
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ProjectEnvironment
|
820
|
+
attr_accessor type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
821
|
+
attr_accessor image: ::String
|
822
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
823
|
+
attr_accessor fleet: Types::ProjectFleet
|
824
|
+
attr_accessor environment_variables: ::Array[Types::EnvironmentVariable]
|
825
|
+
attr_accessor privileged_mode: bool
|
826
|
+
attr_accessor certificate: ::String
|
827
|
+
attr_accessor registry_credential: Types::RegistryCredential
|
828
|
+
attr_accessor image_pull_credentials_type: ("CODEBUILD" | "SERVICE_ROLE")
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class ProjectFileSystemLocation
|
833
|
+
attr_accessor type: ("EFS")
|
834
|
+
attr_accessor location: ::String
|
835
|
+
attr_accessor mount_point: ::String
|
836
|
+
attr_accessor identifier: ::String
|
837
|
+
attr_accessor mount_options: ::String
|
838
|
+
SENSITIVE: []
|
839
|
+
end
|
840
|
+
|
841
|
+
class ProjectFleet
|
842
|
+
attr_accessor fleet_arn: ::String
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class ProjectSource
|
847
|
+
attr_accessor type: ("CODECOMMIT" | "CODEPIPELINE" | "GITHUB" | "S3" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "NO_SOURCE")
|
848
|
+
attr_accessor location: ::String
|
849
|
+
attr_accessor git_clone_depth: ::Integer
|
850
|
+
attr_accessor git_submodules_config: Types::GitSubmodulesConfig
|
851
|
+
attr_accessor buildspec: ::String
|
852
|
+
attr_accessor auth: Types::SourceAuth
|
853
|
+
attr_accessor report_build_status: bool
|
854
|
+
attr_accessor build_status_config: Types::BuildStatusConfig
|
855
|
+
attr_accessor insecure_ssl: bool
|
856
|
+
attr_accessor source_identifier: ::String
|
857
|
+
SENSITIVE: []
|
858
|
+
end
|
859
|
+
|
860
|
+
class ProjectSourceVersion
|
861
|
+
attr_accessor source_identifier: ::String
|
862
|
+
attr_accessor source_version: ::String
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
866
|
+
class PutResourcePolicyInput
|
867
|
+
attr_accessor policy: ::String
|
868
|
+
attr_accessor resource_arn: ::String
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class PutResourcePolicyOutput
|
873
|
+
attr_accessor resource_arn: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class RegistryCredential
|
878
|
+
attr_accessor credential: ::String
|
879
|
+
attr_accessor credential_provider: ("SECRETS_MANAGER")
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class Report
|
884
|
+
attr_accessor arn: ::String
|
885
|
+
attr_accessor type: ("TEST" | "CODE_COVERAGE")
|
886
|
+
attr_accessor name: ::String
|
887
|
+
attr_accessor report_group_arn: ::String
|
888
|
+
attr_accessor execution_id: ::String
|
889
|
+
attr_accessor status: ("GENERATING" | "SUCCEEDED" | "FAILED" | "INCOMPLETE" | "DELETING")
|
890
|
+
attr_accessor created: ::Time
|
891
|
+
attr_accessor expired: ::Time
|
892
|
+
attr_accessor export_config: Types::ReportExportConfig
|
893
|
+
attr_accessor truncated: bool
|
894
|
+
attr_accessor test_summary: Types::TestReportSummary
|
895
|
+
attr_accessor code_coverage_summary: Types::CodeCoverageReportSummary
|
896
|
+
SENSITIVE: []
|
897
|
+
end
|
898
|
+
|
899
|
+
class ReportExportConfig
|
900
|
+
attr_accessor export_config_type: ("S3" | "NO_EXPORT")
|
901
|
+
attr_accessor s3_destination: Types::S3ReportExportConfig
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
905
|
+
class ReportFilter
|
906
|
+
attr_accessor status: ("GENERATING" | "SUCCEEDED" | "FAILED" | "INCOMPLETE" | "DELETING")
|
907
|
+
SENSITIVE: []
|
908
|
+
end
|
909
|
+
|
910
|
+
class ReportGroup
|
911
|
+
attr_accessor arn: ::String
|
912
|
+
attr_accessor name: ::String
|
913
|
+
attr_accessor type: ("TEST" | "CODE_COVERAGE")
|
914
|
+
attr_accessor export_config: Types::ReportExportConfig
|
915
|
+
attr_accessor created: ::Time
|
916
|
+
attr_accessor last_modified: ::Time
|
917
|
+
attr_accessor tags: ::Array[Types::Tag]
|
918
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
919
|
+
SENSITIVE: []
|
920
|
+
end
|
921
|
+
|
922
|
+
class ReportGroupTrendStats
|
923
|
+
attr_accessor average: ::String
|
924
|
+
attr_accessor max: ::String
|
925
|
+
attr_accessor min: ::String
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class ReportWithRawData
|
930
|
+
attr_accessor report_arn: ::String
|
931
|
+
attr_accessor data: ::String
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class ResolvedArtifact
|
936
|
+
attr_accessor type: ("CODEPIPELINE" | "S3" | "NO_ARTIFACTS")
|
937
|
+
attr_accessor location: ::String
|
938
|
+
attr_accessor identifier: ::String
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class ResourceAlreadyExistsException < Aws::EmptyStructure
|
943
|
+
end
|
944
|
+
|
945
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
946
|
+
end
|
947
|
+
|
948
|
+
class RetryBuildBatchInput
|
949
|
+
attr_accessor id: ::String
|
950
|
+
attr_accessor idempotency_token: ::String
|
951
|
+
attr_accessor retry_type: ("RETRY_ALL_BUILDS" | "RETRY_FAILED_BUILDS")
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class RetryBuildBatchOutput
|
956
|
+
attr_accessor build_batch: Types::BuildBatch
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class RetryBuildInput
|
961
|
+
attr_accessor id: ::String
|
962
|
+
attr_accessor idempotency_token: ::String
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class RetryBuildOutput
|
967
|
+
attr_accessor build: Types::Build
|
968
|
+
SENSITIVE: []
|
969
|
+
end
|
970
|
+
|
971
|
+
class S3LogsConfig
|
972
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
973
|
+
attr_accessor location: ::String
|
974
|
+
attr_accessor encryption_disabled: bool
|
975
|
+
attr_accessor bucket_owner_access: ("NONE" | "READ_ONLY" | "FULL")
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
979
|
+
class S3ReportExportConfig
|
980
|
+
attr_accessor bucket: ::String
|
981
|
+
attr_accessor bucket_owner: ::String
|
982
|
+
attr_accessor path: ::String
|
983
|
+
attr_accessor packaging: ("ZIP" | "NONE")
|
984
|
+
attr_accessor encryption_key: ::String
|
985
|
+
attr_accessor encryption_disabled: bool
|
986
|
+
SENSITIVE: []
|
987
|
+
end
|
988
|
+
|
989
|
+
class ScalingConfigurationInput
|
990
|
+
attr_accessor scaling_type: ("TARGET_TRACKING_SCALING")
|
991
|
+
attr_accessor target_tracking_scaling_configs: ::Array[Types::TargetTrackingScalingConfiguration]
|
992
|
+
attr_accessor max_capacity: ::Integer
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class ScalingConfigurationOutput
|
997
|
+
attr_accessor scaling_type: ("TARGET_TRACKING_SCALING")
|
998
|
+
attr_accessor target_tracking_scaling_configs: ::Array[Types::TargetTrackingScalingConfiguration]
|
999
|
+
attr_accessor max_capacity: ::Integer
|
1000
|
+
attr_accessor desired_capacity: ::Integer
|
1001
|
+
SENSITIVE: []
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class SourceAuth
|
1005
|
+
attr_accessor type: ("OAUTH")
|
1006
|
+
attr_accessor resource: ::String
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class SourceCredentialsInfo
|
1011
|
+
attr_accessor arn: ::String
|
1012
|
+
attr_accessor server_type: ("GITHUB" | "BITBUCKET" | "GITHUB_ENTERPRISE")
|
1013
|
+
attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN")
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class StartBuildBatchInput
|
1018
|
+
attr_accessor project_name: ::String
|
1019
|
+
attr_accessor secondary_sources_override: ::Array[Types::ProjectSource]
|
1020
|
+
attr_accessor secondary_sources_version_override: ::Array[Types::ProjectSourceVersion]
|
1021
|
+
attr_accessor source_version: ::String
|
1022
|
+
attr_accessor artifacts_override: Types::ProjectArtifacts
|
1023
|
+
attr_accessor secondary_artifacts_override: ::Array[Types::ProjectArtifacts]
|
1024
|
+
attr_accessor environment_variables_override: ::Array[Types::EnvironmentVariable]
|
1025
|
+
attr_accessor source_type_override: ("CODECOMMIT" | "CODEPIPELINE" | "GITHUB" | "S3" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "NO_SOURCE")
|
1026
|
+
attr_accessor source_location_override: ::String
|
1027
|
+
attr_accessor source_auth_override: Types::SourceAuth
|
1028
|
+
attr_accessor git_clone_depth_override: ::Integer
|
1029
|
+
attr_accessor git_submodules_config_override: Types::GitSubmodulesConfig
|
1030
|
+
attr_accessor buildspec_override: ::String
|
1031
|
+
attr_accessor insecure_ssl_override: bool
|
1032
|
+
attr_accessor report_build_batch_status_override: bool
|
1033
|
+
attr_accessor environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
1034
|
+
attr_accessor image_override: ::String
|
1035
|
+
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
1036
|
+
attr_accessor certificate_override: ::String
|
1037
|
+
attr_accessor cache_override: Types::ProjectCache
|
1038
|
+
attr_accessor service_role_override: ::String
|
1039
|
+
attr_accessor privileged_mode_override: bool
|
1040
|
+
attr_accessor build_timeout_in_minutes_override: ::Integer
|
1041
|
+
attr_accessor queued_timeout_in_minutes_override: ::Integer
|
1042
|
+
attr_accessor encryption_key_override: ::String
|
1043
|
+
attr_accessor idempotency_token: ::String
|
1044
|
+
attr_accessor logs_config_override: Types::LogsConfig
|
1045
|
+
attr_accessor registry_credential_override: Types::RegistryCredential
|
1046
|
+
attr_accessor image_pull_credentials_type_override: ("CODEBUILD" | "SERVICE_ROLE")
|
1047
|
+
attr_accessor build_batch_config_override: Types::ProjectBuildBatchConfig
|
1048
|
+
attr_accessor debug_session_enabled: bool
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class StartBuildBatchOutput
|
1053
|
+
attr_accessor build_batch: Types::BuildBatch
|
1054
|
+
SENSITIVE: []
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
class StartBuildInput
|
1058
|
+
attr_accessor project_name: ::String
|
1059
|
+
attr_accessor secondary_sources_override: ::Array[Types::ProjectSource]
|
1060
|
+
attr_accessor secondary_sources_version_override: ::Array[Types::ProjectSourceVersion]
|
1061
|
+
attr_accessor source_version: ::String
|
1062
|
+
attr_accessor artifacts_override: Types::ProjectArtifacts
|
1063
|
+
attr_accessor secondary_artifacts_override: ::Array[Types::ProjectArtifacts]
|
1064
|
+
attr_accessor environment_variables_override: ::Array[Types::EnvironmentVariable]
|
1065
|
+
attr_accessor source_type_override: ("CODECOMMIT" | "CODEPIPELINE" | "GITHUB" | "S3" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "NO_SOURCE")
|
1066
|
+
attr_accessor source_location_override: ::String
|
1067
|
+
attr_accessor source_auth_override: Types::SourceAuth
|
1068
|
+
attr_accessor git_clone_depth_override: ::Integer
|
1069
|
+
attr_accessor git_submodules_config_override: Types::GitSubmodulesConfig
|
1070
|
+
attr_accessor buildspec_override: ::String
|
1071
|
+
attr_accessor insecure_ssl_override: bool
|
1072
|
+
attr_accessor report_build_status_override: bool
|
1073
|
+
attr_accessor build_status_config_override: Types::BuildStatusConfig
|
1074
|
+
attr_accessor environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
1075
|
+
attr_accessor image_override: ::String
|
1076
|
+
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
1077
|
+
attr_accessor certificate_override: ::String
|
1078
|
+
attr_accessor cache_override: Types::ProjectCache
|
1079
|
+
attr_accessor service_role_override: ::String
|
1080
|
+
attr_accessor privileged_mode_override: bool
|
1081
|
+
attr_accessor timeout_in_minutes_override: ::Integer
|
1082
|
+
attr_accessor queued_timeout_in_minutes_override: ::Integer
|
1083
|
+
attr_accessor encryption_key_override: ::String
|
1084
|
+
attr_accessor idempotency_token: ::String
|
1085
|
+
attr_accessor logs_config_override: Types::LogsConfig
|
1086
|
+
attr_accessor registry_credential_override: Types::RegistryCredential
|
1087
|
+
attr_accessor image_pull_credentials_type_override: ("CODEBUILD" | "SERVICE_ROLE")
|
1088
|
+
attr_accessor debug_session_enabled: bool
|
1089
|
+
attr_accessor fleet_override: Types::ProjectFleet
|
1090
|
+
SENSITIVE: []
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class StartBuildOutput
|
1094
|
+
attr_accessor build: Types::Build
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class StopBuildBatchInput
|
1099
|
+
attr_accessor id: ::String
|
1100
|
+
SENSITIVE: []
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class StopBuildBatchOutput
|
1104
|
+
attr_accessor build_batch: Types::BuildBatch
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class StopBuildInput
|
1109
|
+
attr_accessor id: ::String
|
1110
|
+
SENSITIVE: []
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class StopBuildOutput
|
1114
|
+
attr_accessor build: Types::Build
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class Tag
|
1119
|
+
attr_accessor key: ::String
|
1120
|
+
attr_accessor value: ::String
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class TargetTrackingScalingConfiguration
|
1125
|
+
attr_accessor metric_type: ("FLEET_UTILIZATION_RATE")
|
1126
|
+
attr_accessor target_value: ::Float
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class TestCase
|
1131
|
+
attr_accessor report_arn: ::String
|
1132
|
+
attr_accessor test_raw_data_path: ::String
|
1133
|
+
attr_accessor prefix: ::String
|
1134
|
+
attr_accessor name: ::String
|
1135
|
+
attr_accessor status: ::String
|
1136
|
+
attr_accessor duration_in_nano_seconds: ::Integer
|
1137
|
+
attr_accessor message: ::String
|
1138
|
+
attr_accessor expired: ::Time
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class TestCaseFilter
|
1143
|
+
attr_accessor status: ::String
|
1144
|
+
attr_accessor keyword: ::String
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class TestReportSummary
|
1149
|
+
attr_accessor total: ::Integer
|
1150
|
+
attr_accessor status_counts: ::Hash[::String, ::Integer]
|
1151
|
+
attr_accessor duration_in_nano_seconds: ::Integer
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class UpdateFleetInput
|
1156
|
+
attr_accessor arn: ::String
|
1157
|
+
attr_accessor base_capacity: ::Integer
|
1158
|
+
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER")
|
1159
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB")
|
1160
|
+
attr_accessor scaling_configuration: Types::ScalingConfigurationInput
|
1161
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class UpdateFleetOutput
|
1166
|
+
attr_accessor fleet: Types::Fleet
|
1167
|
+
SENSITIVE: []
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class UpdateProjectInput
|
1171
|
+
attr_accessor name: ::String
|
1172
|
+
attr_accessor description: ::String
|
1173
|
+
attr_accessor source: Types::ProjectSource
|
1174
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
1175
|
+
attr_accessor source_version: ::String
|
1176
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
1177
|
+
attr_accessor artifacts: Types::ProjectArtifacts
|
1178
|
+
attr_accessor secondary_artifacts: ::Array[Types::ProjectArtifacts]
|
1179
|
+
attr_accessor cache: Types::ProjectCache
|
1180
|
+
attr_accessor environment: Types::ProjectEnvironment
|
1181
|
+
attr_accessor service_role: ::String
|
1182
|
+
attr_accessor timeout_in_minutes: ::Integer
|
1183
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
1184
|
+
attr_accessor encryption_key: ::String
|
1185
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1186
|
+
attr_accessor vpc_config: Types::VpcConfig
|
1187
|
+
attr_accessor badge_enabled: bool
|
1188
|
+
attr_accessor logs_config: Types::LogsConfig
|
1189
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
1190
|
+
attr_accessor build_batch_config: Types::ProjectBuildBatchConfig
|
1191
|
+
attr_accessor concurrent_build_limit: ::Integer
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class UpdateProjectOutput
|
1196
|
+
attr_accessor project: Types::Project
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class UpdateProjectVisibilityInput
|
1201
|
+
attr_accessor project_arn: ::String
|
1202
|
+
attr_accessor project_visibility: ("PUBLIC_READ" | "PRIVATE")
|
1203
|
+
attr_accessor resource_access_role: ::String
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class UpdateProjectVisibilityOutput
|
1208
|
+
attr_accessor project_arn: ::String
|
1209
|
+
attr_accessor public_project_alias: ::String
|
1210
|
+
attr_accessor project_visibility: ("PUBLIC_READ" | "PRIVATE")
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class UpdateReportGroupInput
|
1215
|
+
attr_accessor arn: ::String
|
1216
|
+
attr_accessor export_config: Types::ReportExportConfig
|
1217
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class UpdateReportGroupOutput
|
1222
|
+
attr_accessor report_group: Types::ReportGroup
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class UpdateWebhookInput
|
1227
|
+
attr_accessor project_name: ::String
|
1228
|
+
attr_accessor branch_filter: ::String
|
1229
|
+
attr_accessor rotate_secret: bool
|
1230
|
+
attr_accessor filter_groups: ::Array[::Array[Types::WebhookFilter]]
|
1231
|
+
attr_accessor build_type: ("BUILD" | "BUILD_BATCH")
|
1232
|
+
SENSITIVE: []
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class UpdateWebhookOutput
|
1236
|
+
attr_accessor webhook: Types::Webhook
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class VpcConfig
|
1241
|
+
attr_accessor vpc_id: ::String
|
1242
|
+
attr_accessor subnets: ::Array[::String]
|
1243
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class Webhook
|
1248
|
+
attr_accessor url: ::String
|
1249
|
+
attr_accessor payload_url: ::String
|
1250
|
+
attr_accessor secret: ::String
|
1251
|
+
attr_accessor branch_filter: ::String
|
1252
|
+
attr_accessor filter_groups: ::Array[::Array[Types::WebhookFilter]]
|
1253
|
+
attr_accessor build_type: ("BUILD" | "BUILD_BATCH")
|
1254
|
+
attr_accessor last_modified_secret: ::Time
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class WebhookFilter
|
1259
|
+
attr_accessor type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE")
|
1260
|
+
attr_accessor pattern: ::String
|
1261
|
+
attr_accessor exclude_matched_pattern: bool
|
1262
|
+
SENSITIVE: []
|
1263
|
+
end
|
1264
|
+
end
|
1265
|
+
end
|