@aws-sdk/client-glacier 3.296.0 → 3.297.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.
- package/dist-types/Glacier.d.ts +34 -0
- package/dist-types/GlacierClient.d.ts +24 -4
- package/dist-types/commands/AbortMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/AbortVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/AddTagsToVaultCommand.d.ts +16 -0
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/CompleteVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/CreateVaultCommand.d.ts +16 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVaultCommand.d.ts +16 -0
- package/dist-types/commands/GetDataRetrievalPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetJobOutputCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/InitiateJobCommand.d.ts +16 -0
- package/dist-types/commands/InitiateMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/InitiateVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +16 -0
- package/dist-types/commands/ListPartsCommand.d.ts +16 -0
- package/dist-types/commands/ListProvisionedCapacityCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForVaultCommand.d.ts +16 -0
- package/dist-types/commands/ListVaultsCommand.d.ts +16 -0
- package/dist-types/commands/PurchaseProvisionedCapacityCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromVaultCommand.d.ts +16 -0
- package/dist-types/commands/SetDataRetrievalPolicyCommand.d.ts +16 -0
- package/dist-types/commands/SetVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/SetVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/UploadArchiveCommand.d.ts +17 -2
- package/dist-types/commands/UploadMultipartPartCommand.d.ts +17 -2
- package/dist-types/models/GlacierServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +120 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMultipartUploadsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPartsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVaultsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/commands/UploadArchiveCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UploadMultipartPartCommand.d.ts +1 -2
- package/package.json +3 -3
package/dist-types/Glacier.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./command
|
|
|
34
34
|
import { UploadMultipartPartCommandInput, UploadMultipartPartCommandOutput } from "./commands/UploadMultipartPartCommand";
|
|
35
35
|
import { GlacierClient } from "./GlacierClient";
|
|
36
36
|
/**
|
|
37
|
+
* @public
|
|
37
38
|
* <p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p>
|
|
38
39
|
*
|
|
39
40
|
* <p>Glacier is an extremely low-cost storage service that provides secure,
|
|
@@ -75,6 +76,7 @@ import { GlacierClient } from "./GlacierClient";
|
|
|
75
76
|
*/
|
|
76
77
|
export declare class Glacier extends GlacierClient {
|
|
77
78
|
/**
|
|
79
|
+
* @public
|
|
78
80
|
* <p>This operation aborts a multipart upload identified by the upload ID.</p>
|
|
79
81
|
*
|
|
80
82
|
*
|
|
@@ -98,6 +100,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
98
100
|
abortMultipartUpload(args: AbortMultipartUploadCommandInput, cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void): void;
|
|
99
101
|
abortMultipartUpload(args: AbortMultipartUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void): void;
|
|
100
102
|
/**
|
|
103
|
+
* @public
|
|
101
104
|
* <p>This operation aborts the vault locking process if the vault lock is not in the
|
|
102
105
|
* <code>Locked</code> state. If the vault lock is in the <code>Locked</code> state when
|
|
103
106
|
* this operation is requested, the operation returns an <code>AccessDeniedException</code>
|
|
@@ -117,6 +120,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
117
120
|
abortVaultLock(args: AbortVaultLockCommandInput, cb: (err: any, data?: AbortVaultLockCommandOutput) => void): void;
|
|
118
121
|
abortVaultLock(args: AbortVaultLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AbortVaultLockCommandOutput) => void): void;
|
|
119
122
|
/**
|
|
123
|
+
* @public
|
|
120
124
|
* <p>This operation adds the specified tags to a vault. Each tag is composed of a key and
|
|
121
125
|
* a value. Each vault can have up to 10 tags. If your request would cause the tag limit for
|
|
122
126
|
* the vault to be exceeded, the operation throws the <code>LimitExceededException</code>
|
|
@@ -128,6 +132,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
128
132
|
addTagsToVault(args: AddTagsToVaultCommandInput, cb: (err: any, data?: AddTagsToVaultCommandOutput) => void): void;
|
|
129
133
|
addTagsToVault(args: AddTagsToVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToVaultCommandOutput) => void): void;
|
|
130
134
|
/**
|
|
135
|
+
* @public
|
|
131
136
|
* <p>You call this operation to inform Amazon S3 Glacier (Glacier) that all the archive parts have been
|
|
132
137
|
* uploaded and that Glacier can now assemble the archive from the uploaded parts.
|
|
133
138
|
* After assembling and saving the archive to the vault, Glacier returns the URI path
|
|
@@ -171,6 +176,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
171
176
|
completeMultipartUpload(args: CompleteMultipartUploadCommandInput, cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void): void;
|
|
172
177
|
completeMultipartUpload(args: CompleteMultipartUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void): void;
|
|
173
178
|
/**
|
|
179
|
+
* @public
|
|
174
180
|
* <p>This operation completes the vault locking process by transitioning the vault lock
|
|
175
181
|
* from the <code>InProgress</code> state to the <code>Locked</code> state, which causes the
|
|
176
182
|
* vault lock policy to become unchangeable. A vault lock is put into the
|
|
@@ -190,6 +196,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
190
196
|
completeVaultLock(args: CompleteVaultLockCommandInput, cb: (err: any, data?: CompleteVaultLockCommandOutput) => void): void;
|
|
191
197
|
completeVaultLock(args: CompleteVaultLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CompleteVaultLockCommandOutput) => void): void;
|
|
192
198
|
/**
|
|
199
|
+
* @public
|
|
193
200
|
* <p>This operation creates a new vault with the specified name. The name of the vault
|
|
194
201
|
* must be unique within a region for an AWS account. You can create up to 1,000 vaults per
|
|
195
202
|
* account. If you need to create more vaults, contact Amazon S3 Glacier.</p>
|
|
@@ -219,6 +226,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
219
226
|
createVault(args: CreateVaultCommandInput, cb: (err: any, data?: CreateVaultCommandOutput) => void): void;
|
|
220
227
|
createVault(args: CreateVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVaultCommandOutput) => void): void;
|
|
221
228
|
/**
|
|
229
|
+
* @public
|
|
222
230
|
* <p>This operation deletes an archive from a vault. Subsequent requests to initiate a
|
|
223
231
|
* retrieval of this archive will fail. Archive retrievals that are in progress for this
|
|
224
232
|
* archive ID may or may not succeed according to the following scenarios:</p>
|
|
@@ -251,6 +259,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
251
259
|
deleteArchive(args: DeleteArchiveCommandInput, cb: (err: any, data?: DeleteArchiveCommandOutput) => void): void;
|
|
252
260
|
deleteArchive(args: DeleteArchiveCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteArchiveCommandOutput) => void): void;
|
|
253
261
|
/**
|
|
262
|
+
* @public
|
|
254
263
|
* <p>This operation deletes a vault. Amazon S3 Glacier will delete a vault only if there are
|
|
255
264
|
* no archives in the vault as of the last inventory and there have been no writes to the
|
|
256
265
|
* vault since the last inventory. If either of these conditions is not satisfied, the vault
|
|
@@ -276,6 +285,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
276
285
|
deleteVault(args: DeleteVaultCommandInput, cb: (err: any, data?: DeleteVaultCommandOutput) => void): void;
|
|
277
286
|
deleteVault(args: DeleteVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVaultCommandOutput) => void): void;
|
|
278
287
|
/**
|
|
288
|
+
* @public
|
|
279
289
|
* <p>This operation deletes the access policy associated with the specified vault. The
|
|
280
290
|
* operation is eventually consistent; that is, it might take some time for Amazon S3 Glacier to
|
|
281
291
|
* completely remove the access policy, and you might still see the effect of the policy for a
|
|
@@ -288,6 +298,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
288
298
|
deleteVaultAccessPolicy(args: DeleteVaultAccessPolicyCommandInput, cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void): void;
|
|
289
299
|
deleteVaultAccessPolicy(args: DeleteVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void): void;
|
|
290
300
|
/**
|
|
301
|
+
* @public
|
|
291
302
|
* <p>This operation deletes the notification configuration set for a vault. The operation
|
|
292
303
|
* is eventually consistent; that is, it might take some time for Amazon S3 Glacier to completely
|
|
293
304
|
* disable the notifications and you might still receive some notifications for a short time
|
|
@@ -306,6 +317,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
306
317
|
deleteVaultNotifications(args: DeleteVaultNotificationsCommandInput, cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void): void;
|
|
307
318
|
deleteVaultNotifications(args: DeleteVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void): void;
|
|
308
319
|
/**
|
|
320
|
+
* @public
|
|
309
321
|
* <p>This operation returns information about a job you previously initiated, including
|
|
310
322
|
* the job initiation date, the user who initiated the job, the job status code/message and
|
|
311
323
|
* the Amazon SNS topic to notify after Amazon S3 Glacier (Glacier) completes the job. For more information
|
|
@@ -335,6 +347,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
335
347
|
describeJob(args: DescribeJobCommandInput, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
336
348
|
describeJob(args: DescribeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
337
349
|
/**
|
|
350
|
+
* @public
|
|
338
351
|
* <p>This operation returns information about a vault, including the vault's Amazon
|
|
339
352
|
* Resource Name (ARN), the date the vault was created, the number of archives it contains,
|
|
340
353
|
* and the total size of all the archives in the vault. The number of archives and their total
|
|
@@ -358,6 +371,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
358
371
|
describeVault(args: DescribeVaultCommandInput, cb: (err: any, data?: DescribeVaultCommandOutput) => void): void;
|
|
359
372
|
describeVault(args: DescribeVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVaultCommandOutput) => void): void;
|
|
360
373
|
/**
|
|
374
|
+
* @public
|
|
361
375
|
* <p>This operation returns the current data retrieval policy for the account and region
|
|
362
376
|
* specified in the GET request. For more information about data retrieval policies, see
|
|
363
377
|
* <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/data-retrieval-policy.html">Amazon Glacier Data Retrieval Policies</a>.</p>
|
|
@@ -366,6 +380,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
366
380
|
getDataRetrievalPolicy(args: GetDataRetrievalPolicyCommandInput, cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void): void;
|
|
367
381
|
getDataRetrievalPolicy(args: GetDataRetrievalPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void): void;
|
|
368
382
|
/**
|
|
383
|
+
* @public
|
|
369
384
|
* <p>This operation downloads the output of the job you initiated using <a>InitiateJob</a>. Depending on the job type you specified when you initiated the
|
|
370
385
|
* job, the output will be either the content of an archive or a vault inventory.</p>
|
|
371
386
|
*
|
|
@@ -408,6 +423,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
408
423
|
getJobOutput(args: GetJobOutputCommandInput, cb: (err: any, data?: GetJobOutputCommandOutput) => void): void;
|
|
409
424
|
getJobOutput(args: GetJobOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobOutputCommandOutput) => void): void;
|
|
410
425
|
/**
|
|
426
|
+
* @public
|
|
411
427
|
* <p>This operation retrieves the <code>access-policy</code> subresource set on the vault;
|
|
412
428
|
* for more information on setting this subresource, see <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/api-SetVaultAccessPolicy.html">Set Vault Access Policy
|
|
413
429
|
* (PUT access-policy)</a>. If there is no access policy set on the vault, the
|
|
@@ -419,6 +435,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
419
435
|
getVaultAccessPolicy(args: GetVaultAccessPolicyCommandInput, cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void): void;
|
|
420
436
|
getVaultAccessPolicy(args: GetVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void): void;
|
|
421
437
|
/**
|
|
438
|
+
* @public
|
|
422
439
|
* <p>This operation retrieves the following attributes from the <code>lock-policy</code>
|
|
423
440
|
* subresource set on the specified vault: </p>
|
|
424
441
|
* <ul>
|
|
@@ -452,6 +469,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
452
469
|
getVaultLock(args: GetVaultLockCommandInput, cb: (err: any, data?: GetVaultLockCommandOutput) => void): void;
|
|
453
470
|
getVaultLock(args: GetVaultLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVaultLockCommandOutput) => void): void;
|
|
454
471
|
/**
|
|
472
|
+
* @public
|
|
455
473
|
* <p>This operation retrieves the <code>notification-configuration</code> subresource of
|
|
456
474
|
* the specified vault.</p>
|
|
457
475
|
*
|
|
@@ -473,6 +491,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
473
491
|
getVaultNotifications(args: GetVaultNotificationsCommandInput, cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void): void;
|
|
474
492
|
getVaultNotifications(args: GetVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void): void;
|
|
475
493
|
/**
|
|
494
|
+
* @public
|
|
476
495
|
* <p>This operation initiates a job of the specified type, which can be a select, an archival retrieval,
|
|
477
496
|
* or a vault retrieval. For more information about using this operation,
|
|
478
497
|
* see the documentation for the underlying REST API <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html">Initiate
|
|
@@ -483,6 +502,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
483
502
|
initiateJob(args: InitiateJobCommandInput, cb: (err: any, data?: InitiateJobCommandOutput) => void): void;
|
|
484
503
|
initiateJob(args: InitiateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateJobCommandOutput) => void): void;
|
|
485
504
|
/**
|
|
505
|
+
* @public
|
|
486
506
|
* <p>This operation initiates a multipart upload. Amazon S3 Glacier creates a multipart
|
|
487
507
|
* upload resource and returns its ID in the response. The multipart upload ID is used in
|
|
488
508
|
* subsequent requests to upload parts of an archive (see <a>UploadMultipartPart</a>).</p>
|
|
@@ -522,6 +542,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
522
542
|
initiateMultipartUpload(args: InitiateMultipartUploadCommandInput, cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void): void;
|
|
523
543
|
initiateMultipartUpload(args: InitiateMultipartUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void): void;
|
|
524
544
|
/**
|
|
545
|
+
* @public
|
|
525
546
|
* <p>This operation initiates the vault locking process by doing the following:</p>
|
|
526
547
|
* <ul>
|
|
527
548
|
* <li>
|
|
@@ -562,6 +583,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
562
583
|
initiateVaultLock(args: InitiateVaultLockCommandInput, cb: (err: any, data?: InitiateVaultLockCommandOutput) => void): void;
|
|
563
584
|
initiateVaultLock(args: InitiateVaultLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateVaultLockCommandOutput) => void): void;
|
|
564
585
|
/**
|
|
586
|
+
* @public
|
|
565
587
|
* <p>This operation lists jobs for a vault, including jobs that are in-progress and jobs
|
|
566
588
|
* that have recently finished. The List Job operation returns a list of these jobs sorted by job initiation
|
|
567
589
|
* time.</p>
|
|
@@ -603,6 +625,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
603
625
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
604
626
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
605
627
|
/**
|
|
628
|
+
* @public
|
|
606
629
|
* <p>This operation lists in-progress multipart uploads for the specified vault. An
|
|
607
630
|
* in-progress multipart upload is a multipart upload that has been initiated by an <a>InitiateMultipartUpload</a> request, but has not yet been completed or aborted.
|
|
608
631
|
* The list returned in the List Multipart Upload response has no guaranteed order. </p>
|
|
@@ -634,6 +657,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
634
657
|
listMultipartUploads(args: ListMultipartUploadsCommandInput, cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void): void;
|
|
635
658
|
listMultipartUploads(args: ListMultipartUploadsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void): void;
|
|
636
659
|
/**
|
|
660
|
+
* @public
|
|
637
661
|
* <p>This operation lists the parts of an archive that have been uploaded in a specific
|
|
638
662
|
* multipart upload. You can make this request at any time during an in-progress multipart
|
|
639
663
|
* upload before you complete the upload (see <a>CompleteMultipartUpload</a>. List
|
|
@@ -661,6 +685,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
661
685
|
listParts(args: ListPartsCommandInput, cb: (err: any, data?: ListPartsCommandOutput) => void): void;
|
|
662
686
|
listParts(args: ListPartsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartsCommandOutput) => void): void;
|
|
663
687
|
/**
|
|
688
|
+
* @public
|
|
664
689
|
* <p>This operation lists the provisioned capacity units for the specified AWS
|
|
665
690
|
* account.</p>
|
|
666
691
|
*/
|
|
@@ -668,6 +693,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
668
693
|
listProvisionedCapacity(args: ListProvisionedCapacityCommandInput, cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void): void;
|
|
669
694
|
listProvisionedCapacity(args: ListProvisionedCapacityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void): void;
|
|
670
695
|
/**
|
|
696
|
+
* @public
|
|
671
697
|
* <p>This operation lists all the tags attached to a vault. The operation returns an empty
|
|
672
698
|
* map if there are no tags. For more information about tags, see <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/tagging.html">Tagging Amazon S3 Glacier
|
|
673
699
|
* Resources</a>.</p>
|
|
@@ -676,6 +702,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
676
702
|
listTagsForVault(args: ListTagsForVaultCommandInput, cb: (err: any, data?: ListTagsForVaultCommandOutput) => void): void;
|
|
677
703
|
listTagsForVault(args: ListTagsForVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForVaultCommandOutput) => void): void;
|
|
678
704
|
/**
|
|
705
|
+
* @public
|
|
679
706
|
* <p>This operation lists all vaults owned by the calling user's account. The list
|
|
680
707
|
* returned in the response is ASCII-sorted by vault name.</p>
|
|
681
708
|
*
|
|
@@ -700,12 +727,14 @@ export declare class Glacier extends GlacierClient {
|
|
|
700
727
|
listVaults(args: ListVaultsCommandInput, cb: (err: any, data?: ListVaultsCommandOutput) => void): void;
|
|
701
728
|
listVaults(args: ListVaultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVaultsCommandOutput) => void): void;
|
|
702
729
|
/**
|
|
730
|
+
* @public
|
|
703
731
|
* <p>This operation purchases a provisioned capacity unit for an AWS account. </p>
|
|
704
732
|
*/
|
|
705
733
|
purchaseProvisionedCapacity(args: PurchaseProvisionedCapacityCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseProvisionedCapacityCommandOutput>;
|
|
706
734
|
purchaseProvisionedCapacity(args: PurchaseProvisionedCapacityCommandInput, cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void): void;
|
|
707
735
|
purchaseProvisionedCapacity(args: PurchaseProvisionedCapacityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void): void;
|
|
708
736
|
/**
|
|
737
|
+
* @public
|
|
709
738
|
* <p>This operation removes one or more tags from the set of tags attached to a vault. For
|
|
710
739
|
* more information about tags, see <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/tagging.html">Tagging Amazon S3 Glacier Resources</a>.
|
|
711
740
|
* This operation is idempotent. The operation will be successful, even if there are no tags
|
|
@@ -715,6 +744,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
715
744
|
removeTagsFromVault(args: RemoveTagsFromVaultCommandInput, cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void): void;
|
|
716
745
|
removeTagsFromVault(args: RemoveTagsFromVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void): void;
|
|
717
746
|
/**
|
|
747
|
+
* @public
|
|
718
748
|
* <p>This operation sets and then enacts a data retrieval policy in the region specified
|
|
719
749
|
* in the PUT request. You can set one policy per region for an AWS account. The policy is
|
|
720
750
|
* enacted within a few minutes of a successful PUT operation.</p>
|
|
@@ -726,6 +756,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
726
756
|
setDataRetrievalPolicy(args: SetDataRetrievalPolicyCommandInput, cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void): void;
|
|
727
757
|
setDataRetrievalPolicy(args: SetDataRetrievalPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void): void;
|
|
728
758
|
/**
|
|
759
|
+
* @public
|
|
729
760
|
* <p>This operation configures an access policy for a vault and will overwrite an existing
|
|
730
761
|
* policy. To configure a vault access policy, send a PUT request to the
|
|
731
762
|
* <code>access-policy</code> subresource of the vault. An access policy is specific to a
|
|
@@ -737,6 +768,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
737
768
|
setVaultAccessPolicy(args: SetVaultAccessPolicyCommandInput, cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void): void;
|
|
738
769
|
setVaultAccessPolicy(args: SetVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void): void;
|
|
739
770
|
/**
|
|
771
|
+
* @public
|
|
740
772
|
* <p>This operation configures notifications that will be sent when specific events happen
|
|
741
773
|
* to a vault. By default, you don't get any notifications.</p>
|
|
742
774
|
*
|
|
@@ -780,6 +812,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
780
812
|
setVaultNotifications(args: SetVaultNotificationsCommandInput, cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void): void;
|
|
781
813
|
setVaultNotifications(args: SetVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void): void;
|
|
782
814
|
/**
|
|
815
|
+
* @public
|
|
783
816
|
* <p>This operation adds an archive to a vault. This is a synchronous operation, and for a
|
|
784
817
|
* successful upload, your data is durably persisted. Amazon S3 Glacier returns the archive ID in
|
|
785
818
|
* the <code>x-amz-archive-id</code> header of the response. </p>
|
|
@@ -817,6 +850,7 @@ export declare class Glacier extends GlacierClient {
|
|
|
817
850
|
uploadArchive(args: UploadArchiveCommandInput, cb: (err: any, data?: UploadArchiveCommandOutput) => void): void;
|
|
818
851
|
uploadArchive(args: UploadArchiveCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UploadArchiveCommandOutput) => void): void;
|
|
819
852
|
/**
|
|
853
|
+
* @public
|
|
820
854
|
* <p>This operation uploads a part of an archive. You can upload archive parts in any
|
|
821
855
|
* order. You can also upload them in parallel. You can upload up to 10,000 parts for a
|
|
822
856
|
* multipart upload.</p>
|
|
@@ -41,15 +41,24 @@ import { SetVaultNotificationsCommandInput, SetVaultNotificationsCommandOutput }
|
|
|
41
41
|
import { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand";
|
|
42
42
|
import { UploadMultipartPartCommandInput, UploadMultipartPartCommandOutput } from "./commands/UploadMultipartPartCommand";
|
|
43
43
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
44
47
|
export type ServiceInputTypes = AbortMultipartUploadCommandInput | AbortVaultLockCommandInput | AddTagsToVaultCommandInput | CompleteMultipartUploadCommandInput | CompleteVaultLockCommandInput | CreateVaultCommandInput | DeleteArchiveCommandInput | DeleteVaultAccessPolicyCommandInput | DeleteVaultCommandInput | DeleteVaultNotificationsCommandInput | DescribeJobCommandInput | DescribeVaultCommandInput | GetDataRetrievalPolicyCommandInput | GetJobOutputCommandInput | GetVaultAccessPolicyCommandInput | GetVaultLockCommandInput | GetVaultNotificationsCommandInput | InitiateJobCommandInput | InitiateMultipartUploadCommandInput | InitiateVaultLockCommandInput | ListJobsCommandInput | ListMultipartUploadsCommandInput | ListPartsCommandInput | ListProvisionedCapacityCommandInput | ListTagsForVaultCommandInput | ListVaultsCommandInput | PurchaseProvisionedCapacityCommandInput | RemoveTagsFromVaultCommandInput | SetDataRetrievalPolicyCommandInput | SetVaultAccessPolicyCommandInput | SetVaultNotificationsCommandInput | UploadArchiveCommandInput | UploadMultipartPartCommandInput;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
45
51
|
export type ServiceOutputTypes = AbortMultipartUploadCommandOutput | AbortVaultLockCommandOutput | AddTagsToVaultCommandOutput | CompleteMultipartUploadCommandOutput | CompleteVaultLockCommandOutput | CreateVaultCommandOutput | DeleteArchiveCommandOutput | DeleteVaultAccessPolicyCommandOutput | DeleteVaultCommandOutput | DeleteVaultNotificationsCommandOutput | DescribeJobCommandOutput | DescribeVaultCommandOutput | GetDataRetrievalPolicyCommandOutput | GetJobOutputCommandOutput | GetVaultAccessPolicyCommandOutput | GetVaultLockCommandOutput | GetVaultNotificationsCommandOutput | InitiateJobCommandOutput | InitiateMultipartUploadCommandOutput | InitiateVaultLockCommandOutput | ListJobsCommandOutput | ListMultipartUploadsCommandOutput | ListPartsCommandOutput | ListProvisionedCapacityCommandOutput | ListTagsForVaultCommandOutput | ListVaultsCommandOutput | PurchaseProvisionedCapacityCommandOutput | RemoveTagsFromVaultCommandOutput | SetDataRetrievalPolicyCommandOutput | SetVaultAccessPolicyCommandOutput | SetVaultNotificationsCommandOutput | UploadArchiveCommandOutput | UploadMultipartPartCommandOutput;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
46
55
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
47
56
|
/**
|
|
48
57
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
49
58
|
*/
|
|
50
59
|
requestHandler?: __HttpHandler;
|
|
51
60
|
/**
|
|
52
|
-
* A constructor for a class implementing the {@link
|
|
61
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
53
62
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
54
63
|
* @internal
|
|
55
64
|
*/
|
|
@@ -147,7 +156,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
147
156
|
*/
|
|
148
157
|
logger?: __Logger;
|
|
149
158
|
/**
|
|
150
|
-
* The {@link
|
|
159
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
151
160
|
*/
|
|
152
161
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
153
162
|
/**
|
|
@@ -156,19 +165,30 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
156
165
|
*/
|
|
157
166
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
158
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
159
171
|
type GlacierClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
160
172
|
/**
|
|
161
|
-
*
|
|
173
|
+
* @public
|
|
174
|
+
*
|
|
175
|
+
* The configuration interface of GlacierClient class constructor that set the region, credentials and other options.
|
|
162
176
|
*/
|
|
163
177
|
export interface GlacierClientConfig extends GlacierClientConfigType {
|
|
164
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
165
182
|
type GlacierClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
166
183
|
/**
|
|
167
|
-
*
|
|
184
|
+
* @public
|
|
185
|
+
*
|
|
186
|
+
* The resolved configuration interface of GlacierClient class. This is resolved and normalized from the {@link GlacierClientConfig | constructor configuration interface}.
|
|
168
187
|
*/
|
|
169
188
|
export interface GlacierClientResolvedConfig extends GlacierClientResolvedConfigType {
|
|
170
189
|
}
|
|
171
190
|
/**
|
|
191
|
+
* @public
|
|
172
192
|
* <p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p>
|
|
173
193
|
*
|
|
174
194
|
* <p>Glacier is an extremely low-cost storage service that provides secure,
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { AbortMultipartUploadInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AbortMultipartUploadCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AbortMultipartUploadCommandInput extends AbortMultipartUploadInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AbortMultipartUploadCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AbortMultipartUploadCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation aborts a multipart upload identified by the upload ID.</p>
|
|
18
23
|
*
|
|
19
24
|
*
|
|
@@ -42,6 +47,8 @@ export interface AbortMultipartUploadCommandOutput extends __MetadataBearer {
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param AbortMultipartUploadCommandInput - {@link AbortMultipartUploadCommandInput}
|
|
51
|
+
* @returns {@link AbortMultipartUploadCommandOutput}
|
|
45
52
|
* @see {@link AbortMultipartUploadCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link AbortMultipartUploadCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface AbortMultipartUploadCommandOutput extends __MetadataBearer {
|
|
|
77
84
|
export declare class AbortMultipartUploadCommand extends $Command<AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput, GlacierClientResolvedConfig> {
|
|
78
85
|
readonly input: AbortMultipartUploadCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: AbortMultipartUploadCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { AbortVaultLockInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AbortVaultLockCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AbortVaultLockCommandInput extends AbortVaultLockInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AbortVaultLockCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AbortVaultLockCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation aborts the vault locking process if the vault lock is not in the
|
|
18
23
|
* <code>Locked</code> state. If the vault lock is in the <code>Locked</code> state when
|
|
19
24
|
* this operation is requested, the operation returns an <code>AccessDeniedException</code>
|
|
@@ -38,6 +43,8 @@ export interface AbortVaultLockCommandOutput extends __MetadataBearer {
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param AbortVaultLockCommandInput - {@link AbortVaultLockCommandInput}
|
|
47
|
+
* @returns {@link AbortVaultLockCommandOutput}
|
|
41
48
|
* @see {@link AbortVaultLockCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link AbortVaultLockCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface AbortVaultLockCommandOutput extends __MetadataBearer {
|
|
|
72
79
|
export declare class AbortVaultLockCommand extends $Command<AbortVaultLockCommandInput, AbortVaultLockCommandOutput, GlacierClientResolvedConfig> {
|
|
73
80
|
readonly input: AbortVaultLockCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: AbortVaultLockCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AbortVaultLockCommandInput, AbortVaultLockCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { AddTagsToVaultInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddTagsToVaultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddTagsToVaultCommandInput extends AddTagsToVaultInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddTagsToVaultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddTagsToVaultCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation adds the specified tags to a vault. Each tag is composed of a key and
|
|
18
23
|
* a value. Each vault can have up to 10 tags. If your request would cause the tag limit for
|
|
19
24
|
* the vault to be exceeded, the operation throws the <code>LimitExceededException</code>
|
|
@@ -30,6 +35,8 @@ export interface AddTagsToVaultCommandOutput extends __MetadataBearer {
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param AddTagsToVaultCommandInput - {@link AddTagsToVaultCommandInput}
|
|
39
|
+
* @returns {@link AddTagsToVaultCommandOutput}
|
|
33
40
|
* @see {@link AddTagsToVaultCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link AddTagsToVaultCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface AddTagsToVaultCommandOutput extends __MetadataBearer {
|
|
|
71
78
|
export declare class AddTagsToVaultCommand extends $Command<AddTagsToVaultCommandInput, AddTagsToVaultCommandOutput, GlacierClientResolvedConfig> {
|
|
72
79
|
readonly input: AddTagsToVaultCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: AddTagsToVaultCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsToVaultCommandInput, AddTagsToVaultCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { ArchiveCreationOutput, CompleteMultipartUploadInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CompleteMultipartUploadCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CompleteMultipartUploadCommandInput extends CompleteMultipartUploadInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CompleteMultipartUploadCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CompleteMultipartUploadCommandOutput extends ArchiveCreationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>You call this operation to inform Amazon S3 Glacier (Glacier) that all the archive parts have been
|
|
18
23
|
* uploaded and that Glacier can now assemble the archive from the uploaded parts.
|
|
19
24
|
* After assembling and saving the archive to the vault, Glacier returns the URI path
|
|
@@ -62,6 +67,8 @@ export interface CompleteMultipartUploadCommandOutput extends ArchiveCreationOut
|
|
|
62
67
|
* const response = await client.send(command);
|
|
63
68
|
* ```
|
|
64
69
|
*
|
|
70
|
+
* @param CompleteMultipartUploadCommandInput - {@link CompleteMultipartUploadCommandInput}
|
|
71
|
+
* @returns {@link CompleteMultipartUploadCommandOutput}
|
|
65
72
|
* @see {@link CompleteMultipartUploadCommandInput} for command's `input` shape.
|
|
66
73
|
* @see {@link CompleteMultipartUploadCommandOutput} for command's `response` shape.
|
|
67
74
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -106,11 +113,20 @@ export interface CompleteMultipartUploadCommandOutput extends ArchiveCreationOut
|
|
|
106
113
|
export declare class CompleteMultipartUploadCommand extends $Command<CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput, GlacierClientResolvedConfig> {
|
|
107
114
|
readonly input: CompleteMultipartUploadCommandInput;
|
|
108
115
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
109
119
|
constructor(input: CompleteMultipartUploadCommandInput);
|
|
110
120
|
/**
|
|
111
121
|
* @internal
|
|
112
122
|
*/
|
|
113
123
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput>;
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
114
127
|
private serialize;
|
|
128
|
+
/**
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
115
131
|
private deserialize;
|
|
116
132
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { CompleteVaultLockInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CompleteVaultLockCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CompleteVaultLockCommandInput extends CompleteVaultLockInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CompleteVaultLockCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CompleteVaultLockCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation completes the vault locking process by transitioning the vault lock
|
|
18
23
|
* from the <code>InProgress</code> state to the <code>Locked</code> state, which causes the
|
|
19
24
|
* vault lock policy to become unchangeable. A vault lock is put into the
|
|
@@ -38,6 +43,8 @@ export interface CompleteVaultLockCommandOutput extends __MetadataBearer {
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param CompleteVaultLockCommandInput - {@link CompleteVaultLockCommandInput}
|
|
47
|
+
* @returns {@link CompleteVaultLockCommandOutput}
|
|
41
48
|
* @see {@link CompleteVaultLockCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link CompleteVaultLockCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface CompleteVaultLockCommandOutput extends __MetadataBearer {
|
|
|
73
80
|
export declare class CompleteVaultLockCommand extends $Command<CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput, GlacierClientResolvedConfig> {
|
|
74
81
|
readonly input: CompleteVaultLockCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: CompleteVaultLockCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { CreateVaultInput, CreateVaultOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVaultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVaultCommandInput extends CreateVaultInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVaultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation creates a new vault with the specified name. The name of the vault
|
|
18
23
|
* must be unique within a region for an AWS account. You can create up to 1,000 vaults per
|
|
19
24
|
* account. If you need to create more vaults, contact Amazon S3 Glacier.</p>
|
|
@@ -48,6 +53,8 @@ export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataB
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param CreateVaultCommandInput - {@link CreateVaultCommandInput}
|
|
57
|
+
* @returns {@link CreateVaultCommandOutput}
|
|
51
58
|
* @see {@link CreateVaultCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link CreateVaultCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -86,11 +93,20 @@ export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataB
|
|
|
86
93
|
export declare class CreateVaultCommand extends $Command<CreateVaultCommandInput, CreateVaultCommandOutput, GlacierClientResolvedConfig> {
|
|
87
94
|
readonly input: CreateVaultCommandInput;
|
|
88
95
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
89
99
|
constructor(input: CreateVaultCommandInput);
|
|
90
100
|
/**
|
|
91
101
|
* @internal
|
|
92
102
|
*/
|
|
93
103
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVaultCommandInput, CreateVaultCommandOutput>;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
94
107
|
private serialize;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
95
111
|
private deserialize;
|
|
96
112
|
}
|