aws-sdk-amplify 1.53.0 → 1.55.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +1 -1
- data/lib/aws-sdk-amplify/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-amplify.rb +1 -1
- data/sig/client.rbs +639 -0
- data/sig/errors.rbs +38 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +739 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,739 @@
|
|
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::Amplify
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class App
|
12
|
+
attr_accessor app_id: ::String
|
13
|
+
attr_accessor app_arn: ::String
|
14
|
+
attr_accessor name: ::String
|
15
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
16
|
+
attr_accessor description: ::String
|
17
|
+
attr_accessor repository: ::String
|
18
|
+
attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
|
19
|
+
attr_accessor create_time: ::Time
|
20
|
+
attr_accessor update_time: ::Time
|
21
|
+
attr_accessor iam_service_role_arn: ::String
|
22
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
23
|
+
attr_accessor default_domain: ::String
|
24
|
+
attr_accessor enable_branch_auto_build: bool
|
25
|
+
attr_accessor enable_branch_auto_deletion: bool
|
26
|
+
attr_accessor enable_basic_auth: bool
|
27
|
+
attr_accessor basic_auth_credentials: ::String
|
28
|
+
attr_accessor custom_rules: ::Array[Types::CustomRule]
|
29
|
+
attr_accessor production_branch: Types::ProductionBranch
|
30
|
+
attr_accessor build_spec: ::String
|
31
|
+
attr_accessor custom_headers: ::String
|
32
|
+
attr_accessor enable_auto_branch_creation: bool
|
33
|
+
attr_accessor auto_branch_creation_patterns: ::Array[::String]
|
34
|
+
attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
|
35
|
+
attr_accessor repository_clone_method: ("SSH" | "TOKEN" | "SIGV4")
|
36
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
37
|
+
end
|
38
|
+
|
39
|
+
class Artifact
|
40
|
+
attr_accessor artifact_file_name: ::String
|
41
|
+
attr_accessor artifact_id: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AutoBranchCreationConfig
|
46
|
+
attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
|
47
|
+
attr_accessor framework: ::String
|
48
|
+
attr_accessor enable_auto_build: bool
|
49
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
50
|
+
attr_accessor basic_auth_credentials: ::String
|
51
|
+
attr_accessor enable_basic_auth: bool
|
52
|
+
attr_accessor enable_performance_mode: bool
|
53
|
+
attr_accessor build_spec: ::String
|
54
|
+
attr_accessor enable_pull_request_preview: bool
|
55
|
+
attr_accessor pull_request_environment_name: ::String
|
56
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
57
|
+
end
|
58
|
+
|
59
|
+
class Backend
|
60
|
+
attr_accessor stack_arn: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class BackendEnvironment
|
65
|
+
attr_accessor backend_environment_arn: ::String
|
66
|
+
attr_accessor environment_name: ::String
|
67
|
+
attr_accessor stack_name: ::String
|
68
|
+
attr_accessor deployment_artifacts: ::String
|
69
|
+
attr_accessor create_time: ::Time
|
70
|
+
attr_accessor update_time: ::Time
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class BadRequestException
|
75
|
+
attr_accessor message: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class Branch
|
80
|
+
attr_accessor branch_arn: ::String
|
81
|
+
attr_accessor branch_name: ::String
|
82
|
+
attr_accessor description: ::String
|
83
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
84
|
+
attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
|
85
|
+
attr_accessor display_name: ::String
|
86
|
+
attr_accessor enable_notification: bool
|
87
|
+
attr_accessor create_time: ::Time
|
88
|
+
attr_accessor update_time: ::Time
|
89
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
90
|
+
attr_accessor enable_auto_build: bool
|
91
|
+
attr_accessor custom_domains: ::Array[::String]
|
92
|
+
attr_accessor framework: ::String
|
93
|
+
attr_accessor active_job_id: ::String
|
94
|
+
attr_accessor total_number_of_jobs: ::String
|
95
|
+
attr_accessor enable_basic_auth: bool
|
96
|
+
attr_accessor enable_performance_mode: bool
|
97
|
+
attr_accessor thumbnail_url: ::String
|
98
|
+
attr_accessor basic_auth_credentials: ::String
|
99
|
+
attr_accessor build_spec: ::String
|
100
|
+
attr_accessor ttl: ::String
|
101
|
+
attr_accessor associated_resources: ::Array[::String]
|
102
|
+
attr_accessor enable_pull_request_preview: bool
|
103
|
+
attr_accessor pull_request_environment_name: ::String
|
104
|
+
attr_accessor destination_branch: ::String
|
105
|
+
attr_accessor source_branch: ::String
|
106
|
+
attr_accessor backend_environment_arn: ::String
|
107
|
+
attr_accessor backend: Types::Backend
|
108
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
109
|
+
end
|
110
|
+
|
111
|
+
class CreateAppRequest
|
112
|
+
attr_accessor name: ::String
|
113
|
+
attr_accessor description: ::String
|
114
|
+
attr_accessor repository: ::String
|
115
|
+
attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
|
116
|
+
attr_accessor iam_service_role_arn: ::String
|
117
|
+
attr_accessor oauth_token: ::String
|
118
|
+
attr_accessor access_token: ::String
|
119
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
120
|
+
attr_accessor enable_branch_auto_build: bool
|
121
|
+
attr_accessor enable_branch_auto_deletion: bool
|
122
|
+
attr_accessor enable_basic_auth: bool
|
123
|
+
attr_accessor basic_auth_credentials: ::String
|
124
|
+
attr_accessor custom_rules: ::Array[Types::CustomRule]
|
125
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
126
|
+
attr_accessor build_spec: ::String
|
127
|
+
attr_accessor custom_headers: ::String
|
128
|
+
attr_accessor enable_auto_branch_creation: bool
|
129
|
+
attr_accessor auto_branch_creation_patterns: ::Array[::String]
|
130
|
+
attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
|
131
|
+
SENSITIVE: [:oauth_token, :access_token, :basic_auth_credentials, :build_spec]
|
132
|
+
end
|
133
|
+
|
134
|
+
class CreateAppResult
|
135
|
+
attr_accessor app: Types::App
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CreateBackendEnvironmentRequest
|
140
|
+
attr_accessor app_id: ::String
|
141
|
+
attr_accessor environment_name: ::String
|
142
|
+
attr_accessor stack_name: ::String
|
143
|
+
attr_accessor deployment_artifacts: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateBackendEnvironmentResult
|
148
|
+
attr_accessor backend_environment: Types::BackendEnvironment
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateBranchRequest
|
153
|
+
attr_accessor app_id: ::String
|
154
|
+
attr_accessor branch_name: ::String
|
155
|
+
attr_accessor description: ::String
|
156
|
+
attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
|
157
|
+
attr_accessor framework: ::String
|
158
|
+
attr_accessor enable_notification: bool
|
159
|
+
attr_accessor enable_auto_build: bool
|
160
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
161
|
+
attr_accessor basic_auth_credentials: ::String
|
162
|
+
attr_accessor enable_basic_auth: bool
|
163
|
+
attr_accessor enable_performance_mode: bool
|
164
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
165
|
+
attr_accessor build_spec: ::String
|
166
|
+
attr_accessor ttl: ::String
|
167
|
+
attr_accessor display_name: ::String
|
168
|
+
attr_accessor enable_pull_request_preview: bool
|
169
|
+
attr_accessor pull_request_environment_name: ::String
|
170
|
+
attr_accessor backend_environment_arn: ::String
|
171
|
+
attr_accessor backend: Types::Backend
|
172
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
173
|
+
end
|
174
|
+
|
175
|
+
class CreateBranchResult
|
176
|
+
attr_accessor branch: Types::Branch
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class CreateDeploymentRequest
|
181
|
+
attr_accessor app_id: ::String
|
182
|
+
attr_accessor branch_name: ::String
|
183
|
+
attr_accessor file_map: ::Hash[::String, ::String]
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class CreateDeploymentResult
|
188
|
+
attr_accessor job_id: ::String
|
189
|
+
attr_accessor file_upload_urls: ::Hash[::String, ::String]
|
190
|
+
attr_accessor zip_upload_url: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateDomainAssociationRequest
|
195
|
+
attr_accessor app_id: ::String
|
196
|
+
attr_accessor domain_name: ::String
|
197
|
+
attr_accessor enable_auto_sub_domain: bool
|
198
|
+
attr_accessor sub_domain_settings: ::Array[Types::SubDomainSetting]
|
199
|
+
attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
|
200
|
+
attr_accessor auto_sub_domain_iam_role: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class CreateDomainAssociationResult
|
205
|
+
attr_accessor domain_association: Types::DomainAssociation
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CreateWebhookRequest
|
210
|
+
attr_accessor app_id: ::String
|
211
|
+
attr_accessor branch_name: ::String
|
212
|
+
attr_accessor description: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class CreateWebhookResult
|
217
|
+
attr_accessor webhook: Types::Webhook
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class CustomRule
|
222
|
+
attr_accessor source: ::String
|
223
|
+
attr_accessor target: ::String
|
224
|
+
attr_accessor status: ::String
|
225
|
+
attr_accessor condition: ::String
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class DeleteAppRequest
|
230
|
+
attr_accessor app_id: ::String
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class DeleteAppResult
|
235
|
+
attr_accessor app: Types::App
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class DeleteBackendEnvironmentRequest
|
240
|
+
attr_accessor app_id: ::String
|
241
|
+
attr_accessor environment_name: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class DeleteBackendEnvironmentResult
|
246
|
+
attr_accessor backend_environment: Types::BackendEnvironment
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class DeleteBranchRequest
|
251
|
+
attr_accessor app_id: ::String
|
252
|
+
attr_accessor branch_name: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class DeleteBranchResult
|
257
|
+
attr_accessor branch: Types::Branch
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class DeleteDomainAssociationRequest
|
262
|
+
attr_accessor app_id: ::String
|
263
|
+
attr_accessor domain_name: ::String
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class DeleteDomainAssociationResult
|
268
|
+
attr_accessor domain_association: Types::DomainAssociation
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class DeleteJobRequest
|
273
|
+
attr_accessor app_id: ::String
|
274
|
+
attr_accessor branch_name: ::String
|
275
|
+
attr_accessor job_id: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class DeleteJobResult
|
280
|
+
attr_accessor job_summary: Types::JobSummary
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteWebhookRequest
|
285
|
+
attr_accessor webhook_id: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteWebhookResult
|
290
|
+
attr_accessor webhook: Types::Webhook
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class DependentServiceFailureException
|
295
|
+
attr_accessor message: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class DomainAssociation
|
300
|
+
attr_accessor domain_association_arn: ::String
|
301
|
+
attr_accessor domain_name: ::String
|
302
|
+
attr_accessor enable_auto_sub_domain: bool
|
303
|
+
attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
|
304
|
+
attr_accessor auto_sub_domain_iam_role: ::String
|
305
|
+
attr_accessor domain_status: ("PENDING_VERIFICATION" | "IN_PROGRESS" | "AVAILABLE" | "PENDING_DEPLOYMENT" | "FAILED" | "CREATING" | "REQUESTING_CERTIFICATE" | "UPDATING")
|
306
|
+
attr_accessor status_reason: ::String
|
307
|
+
attr_accessor certificate_verification_dns_record: ::String
|
308
|
+
attr_accessor sub_domains: ::Array[Types::SubDomain]
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class GenerateAccessLogsRequest
|
313
|
+
attr_accessor start_time: ::Time
|
314
|
+
attr_accessor end_time: ::Time
|
315
|
+
attr_accessor domain_name: ::String
|
316
|
+
attr_accessor app_id: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class GenerateAccessLogsResult
|
321
|
+
attr_accessor log_url: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class GetAppRequest
|
326
|
+
attr_accessor app_id: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class GetAppResult
|
331
|
+
attr_accessor app: Types::App
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class GetArtifactUrlRequest
|
336
|
+
attr_accessor artifact_id: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class GetArtifactUrlResult
|
341
|
+
attr_accessor artifact_id: ::String
|
342
|
+
attr_accessor artifact_url: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class GetBackendEnvironmentRequest
|
347
|
+
attr_accessor app_id: ::String
|
348
|
+
attr_accessor environment_name: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class GetBackendEnvironmentResult
|
353
|
+
attr_accessor backend_environment: Types::BackendEnvironment
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class GetBranchRequest
|
358
|
+
attr_accessor app_id: ::String
|
359
|
+
attr_accessor branch_name: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class GetBranchResult
|
364
|
+
attr_accessor branch: Types::Branch
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class GetDomainAssociationRequest
|
369
|
+
attr_accessor app_id: ::String
|
370
|
+
attr_accessor domain_name: ::String
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class GetDomainAssociationResult
|
375
|
+
attr_accessor domain_association: Types::DomainAssociation
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class GetJobRequest
|
380
|
+
attr_accessor app_id: ::String
|
381
|
+
attr_accessor branch_name: ::String
|
382
|
+
attr_accessor job_id: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class GetJobResult
|
387
|
+
attr_accessor job: Types::Job
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class GetWebhookRequest
|
392
|
+
attr_accessor webhook_id: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class GetWebhookResult
|
397
|
+
attr_accessor webhook: Types::Webhook
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class InternalFailureException
|
402
|
+
attr_accessor message: ::String
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class Job
|
407
|
+
attr_accessor summary: Types::JobSummary
|
408
|
+
attr_accessor steps: ::Array[Types::Step]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class JobSummary
|
413
|
+
attr_accessor job_arn: ::String
|
414
|
+
attr_accessor job_id: ::String
|
415
|
+
attr_accessor commit_id: ::String
|
416
|
+
attr_accessor commit_message: ::String
|
417
|
+
attr_accessor commit_time: ::Time
|
418
|
+
attr_accessor start_time: ::Time
|
419
|
+
attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
420
|
+
attr_accessor end_time: ::Time
|
421
|
+
attr_accessor job_type: ("RELEASE" | "RETRY" | "MANUAL" | "WEB_HOOK")
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class LimitExceededException
|
426
|
+
attr_accessor message: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class ListAppsRequest
|
431
|
+
attr_accessor next_token: ::String
|
432
|
+
attr_accessor max_results: ::Integer
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class ListAppsResult
|
437
|
+
attr_accessor apps: ::Array[Types::App]
|
438
|
+
attr_accessor next_token: ::String
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class ListArtifactsRequest
|
443
|
+
attr_accessor app_id: ::String
|
444
|
+
attr_accessor branch_name: ::String
|
445
|
+
attr_accessor job_id: ::String
|
446
|
+
attr_accessor next_token: ::String
|
447
|
+
attr_accessor max_results: ::Integer
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class ListArtifactsResult
|
452
|
+
attr_accessor artifacts: ::Array[Types::Artifact]
|
453
|
+
attr_accessor next_token: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class ListBackendEnvironmentsRequest
|
458
|
+
attr_accessor app_id: ::String
|
459
|
+
attr_accessor environment_name: ::String
|
460
|
+
attr_accessor next_token: ::String
|
461
|
+
attr_accessor max_results: ::Integer
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class ListBackendEnvironmentsResult
|
466
|
+
attr_accessor backend_environments: ::Array[Types::BackendEnvironment]
|
467
|
+
attr_accessor next_token: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class ListBranchesRequest
|
472
|
+
attr_accessor app_id: ::String
|
473
|
+
attr_accessor next_token: ::String
|
474
|
+
attr_accessor max_results: ::Integer
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class ListBranchesResult
|
479
|
+
attr_accessor branches: ::Array[Types::Branch]
|
480
|
+
attr_accessor next_token: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class ListDomainAssociationsRequest
|
485
|
+
attr_accessor app_id: ::String
|
486
|
+
attr_accessor next_token: ::String
|
487
|
+
attr_accessor max_results: ::Integer
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class ListDomainAssociationsResult
|
492
|
+
attr_accessor domain_associations: ::Array[Types::DomainAssociation]
|
493
|
+
attr_accessor next_token: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class ListJobsRequest
|
498
|
+
attr_accessor app_id: ::String
|
499
|
+
attr_accessor branch_name: ::String
|
500
|
+
attr_accessor next_token: ::String
|
501
|
+
attr_accessor max_results: ::Integer
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ListJobsResult
|
506
|
+
attr_accessor job_summaries: ::Array[Types::JobSummary]
|
507
|
+
attr_accessor next_token: ::String
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class ListTagsForResourceRequest
|
512
|
+
attr_accessor resource_arn: ::String
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class ListTagsForResourceResponse
|
517
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class ListWebhooksRequest
|
522
|
+
attr_accessor app_id: ::String
|
523
|
+
attr_accessor next_token: ::String
|
524
|
+
attr_accessor max_results: ::Integer
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class ListWebhooksResult
|
529
|
+
attr_accessor webhooks: ::Array[Types::Webhook]
|
530
|
+
attr_accessor next_token: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class NotFoundException
|
535
|
+
attr_accessor message: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class ProductionBranch
|
540
|
+
attr_accessor last_deploy_time: ::Time
|
541
|
+
attr_accessor status: ::String
|
542
|
+
attr_accessor thumbnail_url: ::String
|
543
|
+
attr_accessor branch_name: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class ResourceNotFoundException
|
548
|
+
attr_accessor code: ::String
|
549
|
+
attr_accessor message: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class StartDeploymentRequest
|
554
|
+
attr_accessor app_id: ::String
|
555
|
+
attr_accessor branch_name: ::String
|
556
|
+
attr_accessor job_id: ::String
|
557
|
+
attr_accessor source_url: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class StartDeploymentResult
|
562
|
+
attr_accessor job_summary: Types::JobSummary
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class StartJobRequest
|
567
|
+
attr_accessor app_id: ::String
|
568
|
+
attr_accessor branch_name: ::String
|
569
|
+
attr_accessor job_id: ::String
|
570
|
+
attr_accessor job_type: ("RELEASE" | "RETRY" | "MANUAL" | "WEB_HOOK")
|
571
|
+
attr_accessor job_reason: ::String
|
572
|
+
attr_accessor commit_id: ::String
|
573
|
+
attr_accessor commit_message: ::String
|
574
|
+
attr_accessor commit_time: ::Time
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class StartJobResult
|
579
|
+
attr_accessor job_summary: Types::JobSummary
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class Step
|
584
|
+
attr_accessor step_name: ::String
|
585
|
+
attr_accessor start_time: ::Time
|
586
|
+
attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
587
|
+
attr_accessor end_time: ::Time
|
588
|
+
attr_accessor log_url: ::String
|
589
|
+
attr_accessor artifacts_url: ::String
|
590
|
+
attr_accessor test_artifacts_url: ::String
|
591
|
+
attr_accessor test_config_url: ::String
|
592
|
+
attr_accessor screenshots: ::Hash[::String, ::String]
|
593
|
+
attr_accessor status_reason: ::String
|
594
|
+
attr_accessor context: ::String
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class StopJobRequest
|
599
|
+
attr_accessor app_id: ::String
|
600
|
+
attr_accessor branch_name: ::String
|
601
|
+
attr_accessor job_id: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class StopJobResult
|
606
|
+
attr_accessor job_summary: Types::JobSummary
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class SubDomain
|
611
|
+
attr_accessor sub_domain_setting: Types::SubDomainSetting
|
612
|
+
attr_accessor verified: bool
|
613
|
+
attr_accessor dns_record: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class SubDomainSetting
|
618
|
+
attr_accessor prefix: ::String
|
619
|
+
attr_accessor branch_name: ::String
|
620
|
+
SENSITIVE: []
|
621
|
+
end
|
622
|
+
|
623
|
+
class TagResourceRequest
|
624
|
+
attr_accessor resource_arn: ::String
|
625
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class TagResourceResponse < Aws::EmptyStructure
|
630
|
+
end
|
631
|
+
|
632
|
+
class UnauthorizedException
|
633
|
+
attr_accessor message: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class UntagResourceRequest
|
638
|
+
attr_accessor resource_arn: ::String
|
639
|
+
attr_accessor tag_keys: ::Array[::String]
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
644
|
+
end
|
645
|
+
|
646
|
+
class UpdateAppRequest
|
647
|
+
attr_accessor app_id: ::String
|
648
|
+
attr_accessor name: ::String
|
649
|
+
attr_accessor description: ::String
|
650
|
+
attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
|
651
|
+
attr_accessor iam_service_role_arn: ::String
|
652
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
653
|
+
attr_accessor enable_branch_auto_build: bool
|
654
|
+
attr_accessor enable_branch_auto_deletion: bool
|
655
|
+
attr_accessor enable_basic_auth: bool
|
656
|
+
attr_accessor basic_auth_credentials: ::String
|
657
|
+
attr_accessor custom_rules: ::Array[Types::CustomRule]
|
658
|
+
attr_accessor build_spec: ::String
|
659
|
+
attr_accessor custom_headers: ::String
|
660
|
+
attr_accessor enable_auto_branch_creation: bool
|
661
|
+
attr_accessor auto_branch_creation_patterns: ::Array[::String]
|
662
|
+
attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
|
663
|
+
attr_accessor repository: ::String
|
664
|
+
attr_accessor oauth_token: ::String
|
665
|
+
attr_accessor access_token: ::String
|
666
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec, :oauth_token, :access_token]
|
667
|
+
end
|
668
|
+
|
669
|
+
class UpdateAppResult
|
670
|
+
attr_accessor app: Types::App
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class UpdateBranchRequest
|
675
|
+
attr_accessor app_id: ::String
|
676
|
+
attr_accessor branch_name: ::String
|
677
|
+
attr_accessor description: ::String
|
678
|
+
attr_accessor framework: ::String
|
679
|
+
attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
|
680
|
+
attr_accessor enable_notification: bool
|
681
|
+
attr_accessor enable_auto_build: bool
|
682
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
683
|
+
attr_accessor basic_auth_credentials: ::String
|
684
|
+
attr_accessor enable_basic_auth: bool
|
685
|
+
attr_accessor enable_performance_mode: bool
|
686
|
+
attr_accessor build_spec: ::String
|
687
|
+
attr_accessor ttl: ::String
|
688
|
+
attr_accessor display_name: ::String
|
689
|
+
attr_accessor enable_pull_request_preview: bool
|
690
|
+
attr_accessor pull_request_environment_name: ::String
|
691
|
+
attr_accessor backend_environment_arn: ::String
|
692
|
+
attr_accessor backend: Types::Backend
|
693
|
+
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
694
|
+
end
|
695
|
+
|
696
|
+
class UpdateBranchResult
|
697
|
+
attr_accessor branch: Types::Branch
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class UpdateDomainAssociationRequest
|
702
|
+
attr_accessor app_id: ::String
|
703
|
+
attr_accessor domain_name: ::String
|
704
|
+
attr_accessor enable_auto_sub_domain: bool
|
705
|
+
attr_accessor sub_domain_settings: ::Array[Types::SubDomainSetting]
|
706
|
+
attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
|
707
|
+
attr_accessor auto_sub_domain_iam_role: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class UpdateDomainAssociationResult
|
712
|
+
attr_accessor domain_association: Types::DomainAssociation
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class UpdateWebhookRequest
|
717
|
+
attr_accessor webhook_id: ::String
|
718
|
+
attr_accessor branch_name: ::String
|
719
|
+
attr_accessor description: ::String
|
720
|
+
SENSITIVE: []
|
721
|
+
end
|
722
|
+
|
723
|
+
class UpdateWebhookResult
|
724
|
+
attr_accessor webhook: Types::Webhook
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class Webhook
|
729
|
+
attr_accessor webhook_arn: ::String
|
730
|
+
attr_accessor webhook_id: ::String
|
731
|
+
attr_accessor webhook_url: ::String
|
732
|
+
attr_accessor branch_name: ::String
|
733
|
+
attr_accessor description: ::String
|
734
|
+
attr_accessor create_time: ::Time
|
735
|
+
attr_accessor update_time: ::Time
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
end
|
739
|
+
end
|