aws-sdk-glacier 1.58.0 → 1.60.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-glacier/client.rb +70 -46
- data/lib/aws-sdk-glacier/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-glacier.rb +1 -1
- data/sig/account.rbs +48 -0
- data/sig/archive.rbs +53 -0
- data/sig/client.rbs +564 -0
- data/sig/errors.rbs +56 -0
- data/sig/job.rbs +113 -0
- data/sig/multipart_upload.rbs +83 -0
- data/sig/notification.rbs +63 -0
- data/sig/resource.rbs +94 -0
- data/sig/types.rbs +600 -0
- data/sig/vault.rbs +137 -0
- data/sig/waiters.rbs +35 -0
- metadata +19 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,600 @@
|
|
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::Glacier
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AbortMultipartUploadInput
|
12
|
+
attr_accessor account_id: ::String
|
13
|
+
attr_accessor vault_name: ::String
|
14
|
+
attr_accessor upload_id: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AbortVaultLockInput
|
19
|
+
attr_accessor account_id: ::String
|
20
|
+
attr_accessor vault_name: ::String
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AddTagsToVaultInput
|
25
|
+
attr_accessor account_id: ::String
|
26
|
+
attr_accessor vault_name: ::String
|
27
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class ArchiveCreationOutput
|
32
|
+
attr_accessor location: ::String
|
33
|
+
attr_accessor checksum: ::String
|
34
|
+
attr_accessor archive_id: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class CSVInput
|
39
|
+
attr_accessor file_header_info: ("USE" | "IGNORE" | "NONE")
|
40
|
+
attr_accessor comments: ::String
|
41
|
+
attr_accessor quote_escape_character: ::String
|
42
|
+
attr_accessor record_delimiter: ::String
|
43
|
+
attr_accessor field_delimiter: ::String
|
44
|
+
attr_accessor quote_character: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class CSVOutput
|
49
|
+
attr_accessor quote_fields: ("ALWAYS" | "ASNEEDED")
|
50
|
+
attr_accessor quote_escape_character: ::String
|
51
|
+
attr_accessor record_delimiter: ::String
|
52
|
+
attr_accessor field_delimiter: ::String
|
53
|
+
attr_accessor quote_character: ::String
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CompleteMultipartUploadInput
|
58
|
+
attr_accessor account_id: ::String
|
59
|
+
attr_accessor vault_name: ::String
|
60
|
+
attr_accessor upload_id: ::String
|
61
|
+
attr_accessor archive_size: ::Integer
|
62
|
+
attr_accessor checksum: ::String
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class CompleteVaultLockInput
|
67
|
+
attr_accessor account_id: ::String
|
68
|
+
attr_accessor vault_name: ::String
|
69
|
+
attr_accessor lock_id: ::String
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class CreateVaultInput
|
74
|
+
attr_accessor account_id: ::String
|
75
|
+
attr_accessor vault_name: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateVaultOutput
|
80
|
+
attr_accessor location: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class DataRetrievalPolicy
|
85
|
+
attr_accessor rules: ::Array[Types::DataRetrievalRule]
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class DataRetrievalRule
|
90
|
+
attr_accessor strategy: ::String
|
91
|
+
attr_accessor bytes_per_hour: ::Integer
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class DeleteArchiveInput
|
96
|
+
attr_accessor account_id: ::String
|
97
|
+
attr_accessor vault_name: ::String
|
98
|
+
attr_accessor archive_id: ::String
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
102
|
+
class DeleteVaultAccessPolicyInput
|
103
|
+
attr_accessor account_id: ::String
|
104
|
+
attr_accessor vault_name: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class DeleteVaultInput
|
109
|
+
attr_accessor account_id: ::String
|
110
|
+
attr_accessor vault_name: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DeleteVaultNotificationsInput
|
115
|
+
attr_accessor account_id: ::String
|
116
|
+
attr_accessor vault_name: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class DescribeJobInput
|
121
|
+
attr_accessor account_id: ::String
|
122
|
+
attr_accessor vault_name: ::String
|
123
|
+
attr_accessor job_id: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class DescribeVaultInput
|
128
|
+
attr_accessor account_id: ::String
|
129
|
+
attr_accessor vault_name: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class DescribeVaultOutput
|
134
|
+
attr_accessor vault_arn: ::String
|
135
|
+
attr_accessor vault_name: ::String
|
136
|
+
attr_accessor creation_date: ::Time
|
137
|
+
attr_accessor last_inventory_date: ::Time
|
138
|
+
attr_accessor number_of_archives: ::Integer
|
139
|
+
attr_accessor size_in_bytes: ::Integer
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class Encryption
|
144
|
+
attr_accessor encryption_type: ("aws:kms" | "AES256")
|
145
|
+
attr_accessor kms_key_id: ::String
|
146
|
+
attr_accessor kms_context: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class GetDataRetrievalPolicyInput
|
151
|
+
attr_accessor account_id: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class GetDataRetrievalPolicyOutput
|
156
|
+
attr_accessor policy: Types::DataRetrievalPolicy
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class GetJobOutputInput
|
161
|
+
attr_accessor account_id: ::String
|
162
|
+
attr_accessor vault_name: ::String
|
163
|
+
attr_accessor job_id: ::String
|
164
|
+
attr_accessor range: ::String
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetJobOutputOutput
|
169
|
+
attr_accessor body: ::IO
|
170
|
+
attr_accessor checksum: ::String
|
171
|
+
attr_accessor status: ::Integer
|
172
|
+
attr_accessor content_range: ::String
|
173
|
+
attr_accessor accept_ranges: ::String
|
174
|
+
attr_accessor content_type: ::String
|
175
|
+
attr_accessor archive_description: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class GetVaultAccessPolicyInput
|
180
|
+
attr_accessor account_id: ::String
|
181
|
+
attr_accessor vault_name: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class GetVaultAccessPolicyOutput
|
186
|
+
attr_accessor policy: Types::VaultAccessPolicy
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class GetVaultLockInput
|
191
|
+
attr_accessor account_id: ::String
|
192
|
+
attr_accessor vault_name: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class GetVaultLockOutput
|
197
|
+
attr_accessor policy: ::String
|
198
|
+
attr_accessor state: ::String
|
199
|
+
attr_accessor expiration_date: ::Time
|
200
|
+
attr_accessor creation_date: ::Time
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class GetVaultNotificationsInput
|
205
|
+
attr_accessor account_id: ::String
|
206
|
+
attr_accessor vault_name: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class GetVaultNotificationsOutput
|
211
|
+
attr_accessor vault_notification_config: Types::VaultNotificationConfig
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class GlacierJobDescription
|
216
|
+
attr_accessor job_id: ::String
|
217
|
+
attr_accessor job_description: ::String
|
218
|
+
attr_accessor action: ("ArchiveRetrieval" | "InventoryRetrieval" | "Select")
|
219
|
+
attr_accessor archive_id: ::String
|
220
|
+
attr_accessor vault_arn: ::String
|
221
|
+
attr_accessor creation_date: ::Time
|
222
|
+
attr_accessor completed: bool
|
223
|
+
attr_accessor status_code: ("InProgress" | "Succeeded" | "Failed")
|
224
|
+
attr_accessor status_message: ::String
|
225
|
+
attr_accessor archive_size_in_bytes: ::Integer
|
226
|
+
attr_accessor inventory_size_in_bytes: ::Integer
|
227
|
+
attr_accessor sns_topic: ::String
|
228
|
+
attr_accessor completion_date: ::Time
|
229
|
+
attr_accessor sha256_tree_hash: ::String
|
230
|
+
attr_accessor archive_sha256_tree_hash: ::String
|
231
|
+
attr_accessor retrieval_byte_range: ::String
|
232
|
+
attr_accessor tier: ::String
|
233
|
+
attr_accessor inventory_retrieval_parameters: Types::InventoryRetrievalJobDescription
|
234
|
+
attr_accessor job_output_path: ::String
|
235
|
+
attr_accessor select_parameters: Types::SelectParameters
|
236
|
+
attr_accessor output_location: Types::OutputLocation
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class Grant
|
241
|
+
attr_accessor grantee: Types::Grantee
|
242
|
+
attr_accessor permission: ("FULL_CONTROL" | "WRITE" | "WRITE_ACP" | "READ" | "READ_ACP")
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class Grantee
|
247
|
+
attr_accessor type: ("AmazonCustomerByEmail" | "CanonicalUser" | "Group")
|
248
|
+
attr_accessor display_name: ::String
|
249
|
+
attr_accessor uri: ::String
|
250
|
+
attr_accessor id: ::String
|
251
|
+
attr_accessor email_address: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class InitiateJobInput
|
256
|
+
attr_accessor account_id: ::String
|
257
|
+
attr_accessor vault_name: ::String
|
258
|
+
attr_accessor job_parameters: Types::JobParameters
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class InitiateJobOutput
|
263
|
+
attr_accessor location: ::String
|
264
|
+
attr_accessor job_id: ::String
|
265
|
+
attr_accessor job_output_path: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class InitiateMultipartUploadInput
|
270
|
+
attr_accessor account_id: ::String
|
271
|
+
attr_accessor vault_name: ::String
|
272
|
+
attr_accessor archive_description: ::String
|
273
|
+
attr_accessor part_size: ::Integer
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class InitiateMultipartUploadOutput
|
278
|
+
attr_accessor location: ::String
|
279
|
+
attr_accessor upload_id: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class InitiateVaultLockInput
|
284
|
+
attr_accessor account_id: ::String
|
285
|
+
attr_accessor vault_name: ::String
|
286
|
+
attr_accessor policy: Types::VaultLockPolicy
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class InitiateVaultLockOutput
|
291
|
+
attr_accessor lock_id: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class InputSerialization
|
296
|
+
attr_accessor csv: Types::CSVInput
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class InsufficientCapacityException
|
301
|
+
attr_accessor type: ::String
|
302
|
+
attr_accessor code: ::String
|
303
|
+
attr_accessor message: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class InvalidParameterValueException
|
308
|
+
attr_accessor type: ::String
|
309
|
+
attr_accessor code: ::String
|
310
|
+
attr_accessor message: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class InventoryRetrievalJobDescription
|
315
|
+
attr_accessor format: ::String
|
316
|
+
attr_accessor start_date: ::Time
|
317
|
+
attr_accessor end_date: ::Time
|
318
|
+
attr_accessor limit: ::String
|
319
|
+
attr_accessor marker: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class InventoryRetrievalJobInput
|
324
|
+
attr_accessor start_date: ::Time
|
325
|
+
attr_accessor end_date: ::Time
|
326
|
+
attr_accessor limit: ::String
|
327
|
+
attr_accessor marker: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class JobParameters
|
332
|
+
attr_accessor format: ::String
|
333
|
+
attr_accessor type: ::String
|
334
|
+
attr_accessor archive_id: ::String
|
335
|
+
attr_accessor description: ::String
|
336
|
+
attr_accessor sns_topic: ::String
|
337
|
+
attr_accessor retrieval_byte_range: ::String
|
338
|
+
attr_accessor tier: ::String
|
339
|
+
attr_accessor inventory_retrieval_parameters: Types::InventoryRetrievalJobInput
|
340
|
+
attr_accessor select_parameters: Types::SelectParameters
|
341
|
+
attr_accessor output_location: Types::OutputLocation
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class LimitExceededException
|
346
|
+
attr_accessor type: ::String
|
347
|
+
attr_accessor code: ::String
|
348
|
+
attr_accessor message: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class ListJobsInput
|
353
|
+
attr_accessor account_id: ::String
|
354
|
+
attr_accessor vault_name: ::String
|
355
|
+
attr_accessor limit: ::Integer
|
356
|
+
attr_accessor marker: ::String
|
357
|
+
attr_accessor statuscode: ::String
|
358
|
+
attr_accessor completed: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class ListJobsOutput
|
363
|
+
attr_accessor job_list: ::Array[Types::GlacierJobDescription]
|
364
|
+
attr_accessor marker: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class ListMultipartUploadsInput
|
369
|
+
attr_accessor account_id: ::String
|
370
|
+
attr_accessor vault_name: ::String
|
371
|
+
attr_accessor marker: ::String
|
372
|
+
attr_accessor limit: ::Integer
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class ListMultipartUploadsOutput
|
377
|
+
attr_accessor uploads_list: ::Array[Types::UploadListElement]
|
378
|
+
attr_accessor marker: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class ListPartsInput
|
383
|
+
attr_accessor account_id: ::String
|
384
|
+
attr_accessor vault_name: ::String
|
385
|
+
attr_accessor upload_id: ::String
|
386
|
+
attr_accessor marker: ::String
|
387
|
+
attr_accessor limit: ::Integer
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class ListPartsOutput
|
392
|
+
attr_accessor multipart_upload_id: ::String
|
393
|
+
attr_accessor vault_arn: ::String
|
394
|
+
attr_accessor archive_description: ::String
|
395
|
+
attr_accessor part_size_in_bytes: ::Integer
|
396
|
+
attr_accessor creation_date: ::Time
|
397
|
+
attr_accessor parts: ::Array[Types::PartListElement]
|
398
|
+
attr_accessor marker: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class ListProvisionedCapacityInput
|
403
|
+
attr_accessor account_id: ::String
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class ListProvisionedCapacityOutput
|
408
|
+
attr_accessor provisioned_capacity_list: ::Array[Types::ProvisionedCapacityDescription]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class ListTagsForVaultInput
|
413
|
+
attr_accessor account_id: ::String
|
414
|
+
attr_accessor vault_name: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class ListTagsForVaultOutput
|
419
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class ListVaultsInput
|
424
|
+
attr_accessor account_id: ::String
|
425
|
+
attr_accessor marker: ::String
|
426
|
+
attr_accessor limit: ::Integer
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class ListVaultsOutput
|
431
|
+
attr_accessor vault_list: ::Array[Types::DescribeVaultOutput]
|
432
|
+
attr_accessor marker: ::String
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class MissingParameterValueException
|
437
|
+
attr_accessor type: ::String
|
438
|
+
attr_accessor code: ::String
|
439
|
+
attr_accessor message: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class OutputLocation
|
444
|
+
attr_accessor s3: Types::S3Location
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class OutputSerialization
|
449
|
+
attr_accessor csv: Types::CSVOutput
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class PartListElement
|
454
|
+
attr_accessor range_in_bytes: ::String
|
455
|
+
attr_accessor sha256_tree_hash: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class PolicyEnforcedException
|
460
|
+
attr_accessor type: ::String
|
461
|
+
attr_accessor code: ::String
|
462
|
+
attr_accessor message: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class ProvisionedCapacityDescription
|
467
|
+
attr_accessor capacity_id: ::String
|
468
|
+
attr_accessor start_date: ::Time
|
469
|
+
attr_accessor expiration_date: ::Time
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class PurchaseProvisionedCapacityInput
|
474
|
+
attr_accessor account_id: ::String
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class PurchaseProvisionedCapacityOutput
|
479
|
+
attr_accessor capacity_id: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class RemoveTagsFromVaultInput
|
484
|
+
attr_accessor account_id: ::String
|
485
|
+
attr_accessor vault_name: ::String
|
486
|
+
attr_accessor tag_keys: ::Array[::String]
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class RequestTimeoutException
|
491
|
+
attr_accessor type: ::String
|
492
|
+
attr_accessor code: ::String
|
493
|
+
attr_accessor message: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class ResourceNotFoundException
|
498
|
+
attr_accessor type: ::String
|
499
|
+
attr_accessor code: ::String
|
500
|
+
attr_accessor message: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class S3Location
|
505
|
+
attr_accessor bucket_name: ::String
|
506
|
+
attr_accessor prefix: ::String
|
507
|
+
attr_accessor encryption: Types::Encryption
|
508
|
+
attr_accessor canned_acl: ("private" | "public-read" | "public-read-write" | "aws-exec-read" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
509
|
+
attr_accessor access_control_list: ::Array[Types::Grant]
|
510
|
+
attr_accessor tagging: ::Hash[::String, ::String]
|
511
|
+
attr_accessor user_metadata: ::Hash[::String, ::String]
|
512
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA")
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class SelectParameters
|
517
|
+
attr_accessor input_serialization: Types::InputSerialization
|
518
|
+
attr_accessor expression_type: ("SQL")
|
519
|
+
attr_accessor expression: ::String
|
520
|
+
attr_accessor output_serialization: Types::OutputSerialization
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class ServiceUnavailableException
|
525
|
+
attr_accessor type: ::String
|
526
|
+
attr_accessor code: ::String
|
527
|
+
attr_accessor message: ::String
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class SetDataRetrievalPolicyInput
|
532
|
+
attr_accessor account_id: ::String
|
533
|
+
attr_accessor policy: Types::DataRetrievalPolicy
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class SetVaultAccessPolicyInput
|
538
|
+
attr_accessor account_id: ::String
|
539
|
+
attr_accessor vault_name: ::String
|
540
|
+
attr_accessor policy: Types::VaultAccessPolicy
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
544
|
+
class SetVaultNotificationsInput
|
545
|
+
attr_accessor account_id: ::String
|
546
|
+
attr_accessor vault_name: ::String
|
547
|
+
attr_accessor vault_notification_config: Types::VaultNotificationConfig
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class UploadArchiveInput
|
552
|
+
attr_accessor vault_name: ::String
|
553
|
+
attr_accessor account_id: ::String
|
554
|
+
attr_accessor archive_description: ::String
|
555
|
+
attr_accessor checksum: ::String
|
556
|
+
attr_accessor body: ::IO
|
557
|
+
SENSITIVE: []
|
558
|
+
end
|
559
|
+
|
560
|
+
class UploadListElement
|
561
|
+
attr_accessor multipart_upload_id: ::String
|
562
|
+
attr_accessor vault_arn: ::String
|
563
|
+
attr_accessor archive_description: ::String
|
564
|
+
attr_accessor part_size_in_bytes: ::Integer
|
565
|
+
attr_accessor creation_date: ::Time
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class UploadMultipartPartInput
|
570
|
+
attr_accessor account_id: ::String
|
571
|
+
attr_accessor vault_name: ::String
|
572
|
+
attr_accessor upload_id: ::String
|
573
|
+
attr_accessor checksum: ::String
|
574
|
+
attr_accessor range: ::String
|
575
|
+
attr_accessor body: ::IO
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class UploadMultipartPartOutput
|
580
|
+
attr_accessor checksum: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class VaultAccessPolicy
|
585
|
+
attr_accessor policy: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class VaultLockPolicy
|
590
|
+
attr_accessor policy: ::String
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class VaultNotificationConfig
|
595
|
+
attr_accessor sns_topic: ::String
|
596
|
+
attr_accessor events: ::Array[::String]
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
end
|
600
|
+
end
|