@aws-sdk/client-glacier 3.300.0 → 3.301.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/commands/AbortMultipartUploadCommand.d.ts +1 -1
- package/dist-types/commands/AbortVaultLockCommand.d.ts +1 -1
- package/dist-types/commands/AddTagsToVaultCommand.d.ts +2 -2
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +1 -1
- package/dist-types/commands/CompleteVaultLockCommand.d.ts +1 -1
- package/dist-types/commands/CreateVaultCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArchiveCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVaultAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVaultCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVaultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataRetrievalPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetJobOutputCommand.d.ts +1 -1
- package/dist-types/commands/GetVaultAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetVaultLockCommand.d.ts +1 -1
- package/dist-types/commands/GetVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/InitiateJobCommand.d.ts +15 -15
- package/dist-types/commands/InitiateMultipartUploadCommand.d.ts +1 -1
- package/dist-types/commands/InitiateVaultLockCommand.d.ts +2 -2
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
- package/dist-types/commands/ListPartsCommand.d.ts +1 -1
- package/dist-types/commands/ListProvisionedCapacityCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForVaultCommand.d.ts +1 -1
- package/dist-types/commands/ListVaultsCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseProvisionedCapacityCommand.d.ts +1 -1
- package/dist-types/commands/RemoveTagsFromVaultCommand.d.ts +2 -2
- package/dist-types/commands/SetDataRetrievalPolicyCommand.d.ts +4 -4
- package/dist-types/commands/SetVaultAccessPolicyCommand.d.ts +2 -2
- package/dist-types/commands/SetVaultNotificationsCommand.d.ts +3 -3
- package/dist-types/commands/UploadArchiveCommand.d.ts +1 -1
- package/dist-types/commands/UploadMultipartPartCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -43,7 +43,7 @@ export interface AbortMultipartUploadCommandOutput extends __MetadataBearer {
|
|
|
43
43
|
* import { GlacierClient, AbortMultipartUploadCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
44
44
|
* // const { GlacierClient, AbortMultipartUploadCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
45
45
|
* const client = new GlacierClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // AbortMultipartUploadInput
|
|
47
47
|
* accountId: "STRING_VALUE", // required
|
|
48
48
|
* vaultName: "STRING_VALUE", // required
|
|
49
49
|
* uploadId: "STRING_VALUE", // required
|
|
@@ -39,7 +39,7 @@ export interface AbortVaultLockCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* import { GlacierClient, AbortVaultLockCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
40
40
|
* // const { GlacierClient, AbortVaultLockCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
41
41
|
* const client = new GlacierClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // AbortVaultLockInput
|
|
43
43
|
* accountId: "STRING_VALUE", // required
|
|
44
44
|
* vaultName: "STRING_VALUE", // required
|
|
45
45
|
* };
|
|
@@ -31,10 +31,10 @@ export interface AddTagsToVaultCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { GlacierClient, AddTagsToVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
32
32
|
* // const { GlacierClient, AddTagsToVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
33
33
|
* const client = new GlacierClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // AddTagsToVaultInput
|
|
35
35
|
* accountId: "STRING_VALUE", // required
|
|
36
36
|
* vaultName: "STRING_VALUE", // required
|
|
37
|
-
* Tags: {
|
|
37
|
+
* Tags: { // TagMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* };
|
|
@@ -63,7 +63,7 @@ export interface CompleteMultipartUploadCommandOutput extends ArchiveCreationOut
|
|
|
63
63
|
* import { GlacierClient, CompleteMultipartUploadCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
64
64
|
* // const { GlacierClient, CompleteMultipartUploadCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
65
65
|
* const client = new GlacierClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // CompleteMultipartUploadInput
|
|
67
67
|
* accountId: "STRING_VALUE", // required
|
|
68
68
|
* vaultName: "STRING_VALUE", // required
|
|
69
69
|
* uploadId: "STRING_VALUE", // required
|
|
@@ -39,7 +39,7 @@ export interface CompleteVaultLockCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* import { GlacierClient, CompleteVaultLockCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
40
40
|
* // const { GlacierClient, CompleteVaultLockCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
41
41
|
* const client = new GlacierClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // CompleteVaultLockInput
|
|
43
43
|
* accountId: "STRING_VALUE", // required
|
|
44
44
|
* vaultName: "STRING_VALUE", // required
|
|
45
45
|
* lockId: "STRING_VALUE", // required
|
|
@@ -49,7 +49,7 @@ export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataB
|
|
|
49
49
|
* import { GlacierClient, CreateVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
50
50
|
* // const { GlacierClient, CreateVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
51
51
|
* const client = new GlacierClient(config);
|
|
52
|
-
* const input = {
|
|
52
|
+
* const input = { // CreateVaultInput
|
|
53
53
|
* accountId: "STRING_VALUE", // required
|
|
54
54
|
* vaultName: "STRING_VALUE", // required
|
|
55
55
|
* };
|
|
@@ -52,7 +52,7 @@ export interface DeleteArchiveCommandOutput extends __MetadataBearer {
|
|
|
52
52
|
* import { GlacierClient, DeleteArchiveCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
53
53
|
* // const { GlacierClient, DeleteArchiveCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
54
54
|
* const client = new GlacierClient(config);
|
|
55
|
-
* const input = {
|
|
55
|
+
* const input = { // DeleteArchiveInput
|
|
56
56
|
* accountId: "STRING_VALUE", // required
|
|
57
57
|
* vaultName: "STRING_VALUE", // required
|
|
58
58
|
* archiveId: "STRING_VALUE", // required
|
|
@@ -32,7 +32,7 @@ export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* import { GlacierClient, DeleteVaultAccessPolicyCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
33
33
|
* // const { GlacierClient, DeleteVaultAccessPolicyCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
34
34
|
* const client = new GlacierClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DeleteVaultAccessPolicyInput
|
|
36
36
|
* accountId: "STRING_VALUE", // required
|
|
37
37
|
* vaultName: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
@@ -45,7 +45,7 @@ export interface DeleteVaultCommandOutput extends __MetadataBearer {
|
|
|
45
45
|
* import { GlacierClient, DeleteVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
46
46
|
* // const { GlacierClient, DeleteVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
47
47
|
* const client = new GlacierClient(config);
|
|
48
|
-
* const input = {
|
|
48
|
+
* const input = { // DeleteVaultInput
|
|
49
49
|
* accountId: "STRING_VALUE", // required
|
|
50
50
|
* vaultName: "STRING_VALUE", // required
|
|
51
51
|
* };
|
|
@@ -38,7 +38,7 @@ export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer
|
|
|
38
38
|
* import { GlacierClient, DeleteVaultNotificationsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
39
39
|
* // const { GlacierClient, DeleteVaultNotificationsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
40
40
|
* const client = new GlacierClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // DeleteVaultNotificationsInput
|
|
42
42
|
* accountId: "STRING_VALUE", // required
|
|
43
43
|
* vaultName: "STRING_VALUE", // required
|
|
44
44
|
* };
|
|
@@ -49,7 +49,7 @@ export interface DescribeJobCommandOutput extends GlacierJobDescription, __Metad
|
|
|
49
49
|
* import { GlacierClient, DescribeJobCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
50
50
|
* // const { GlacierClient, DescribeJobCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
51
51
|
* const client = new GlacierClient(config);
|
|
52
|
-
* const input = {
|
|
52
|
+
* const input = { // DescribeJobInput
|
|
53
53
|
* accountId: "STRING_VALUE", // required
|
|
54
54
|
* vaultName: "STRING_VALUE", // required
|
|
55
55
|
* jobId: "STRING_VALUE", // required
|
|
@@ -43,7 +43,7 @@ export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __Metad
|
|
|
43
43
|
* import { GlacierClient, DescribeVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
44
44
|
* // const { GlacierClient, DescribeVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
45
45
|
* const client = new GlacierClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // DescribeVaultInput
|
|
47
47
|
* accountId: "STRING_VALUE", // required
|
|
48
48
|
* vaultName: "STRING_VALUE", // required
|
|
49
49
|
* };
|
|
@@ -28,7 +28,7 @@ export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPol
|
|
|
28
28
|
* import { GlacierClient, GetDataRetrievalPolicyCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
29
29
|
* // const { GlacierClient, GetDataRetrievalPolicyCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
30
30
|
* const client = new GlacierClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetDataRetrievalPolicyInput
|
|
32
32
|
* accountId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetDataRetrievalPolicyCommand(input);
|
|
@@ -62,7 +62,7 @@ export interface GetJobOutputCommandOutput extends __WithSdkStreamMixin<GetJobOu
|
|
|
62
62
|
* import { GlacierClient, GetJobOutputCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
63
63
|
* // const { GlacierClient, GetJobOutputCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
64
64
|
* const client = new GlacierClient(config);
|
|
65
|
-
* const input = {
|
|
65
|
+
* const input = { // GetJobOutputInput
|
|
66
66
|
* accountId: "STRING_VALUE", // required
|
|
67
67
|
* vaultName: "STRING_VALUE", // required
|
|
68
68
|
* jobId: "STRING_VALUE", // required
|
|
@@ -31,7 +31,7 @@ export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyO
|
|
|
31
31
|
* import { GlacierClient, GetVaultAccessPolicyCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
32
32
|
* // const { GlacierClient, GetVaultAccessPolicyCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
33
33
|
* const client = new GlacierClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // GetVaultAccessPolicyInput
|
|
35
35
|
* accountId: "STRING_VALUE", // required
|
|
36
36
|
* vaultName: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -53,7 +53,7 @@ export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __Metadat
|
|
|
53
53
|
* import { GlacierClient, GetVaultLockCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
54
54
|
* // const { GlacierClient, GetVaultLockCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
55
55
|
* const client = new GlacierClient(config);
|
|
56
|
-
* const input = {
|
|
56
|
+
* const input = { // GetVaultLockInput
|
|
57
57
|
* accountId: "STRING_VALUE", // required
|
|
58
58
|
* vaultName: "STRING_VALUE", // required
|
|
59
59
|
* };
|
|
@@ -41,7 +41,7 @@ export interface GetVaultNotificationsCommandOutput extends GetVaultNotification
|
|
|
41
41
|
* import { GlacierClient, GetVaultNotificationsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
42
42
|
* // const { GlacierClient, GetVaultNotificationsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
43
43
|
* const client = new GlacierClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // GetVaultNotificationsInput
|
|
45
45
|
* accountId: "STRING_VALUE", // required
|
|
46
46
|
* vaultName: "STRING_VALUE", // required
|
|
47
47
|
* };
|
|
@@ -30,10 +30,10 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
30
30
|
* import { GlacierClient, InitiateJobCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
31
31
|
* // const { GlacierClient, InitiateJobCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
32
32
|
* const client = new GlacierClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // InitiateJobInput
|
|
34
34
|
* accountId: "STRING_VALUE", // required
|
|
35
35
|
* vaultName: "STRING_VALUE", // required
|
|
36
|
-
* jobParameters: {
|
|
36
|
+
* jobParameters: { // JobParameters
|
|
37
37
|
* Format: "STRING_VALUE",
|
|
38
38
|
* Type: "STRING_VALUE",
|
|
39
39
|
* ArchiveId: "STRING_VALUE",
|
|
@@ -41,15 +41,15 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
41
41
|
* SNSTopic: "STRING_VALUE",
|
|
42
42
|
* RetrievalByteRange: "STRING_VALUE",
|
|
43
43
|
* Tier: "STRING_VALUE",
|
|
44
|
-
* InventoryRetrievalParameters: {
|
|
44
|
+
* InventoryRetrievalParameters: { // InventoryRetrievalJobInput
|
|
45
45
|
* StartDate: "STRING_VALUE",
|
|
46
46
|
* EndDate: "STRING_VALUE",
|
|
47
47
|
* Limit: "STRING_VALUE",
|
|
48
48
|
* Marker: "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
|
-
* SelectParameters: {
|
|
51
|
-
* InputSerialization: {
|
|
52
|
-
* csv: {
|
|
50
|
+
* SelectParameters: { // SelectParameters
|
|
51
|
+
* InputSerialization: { // InputSerialization
|
|
52
|
+
* csv: { // CSVInput
|
|
53
53
|
* FileHeaderInfo: "USE" || "IGNORE" || "NONE",
|
|
54
54
|
* Comments: "STRING_VALUE",
|
|
55
55
|
* QuoteEscapeCharacter: "STRING_VALUE",
|
|
@@ -60,8 +60,8 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
60
60
|
* },
|
|
61
61
|
* ExpressionType: "SQL",
|
|
62
62
|
* Expression: "STRING_VALUE",
|
|
63
|
-
* OutputSerialization: {
|
|
64
|
-
* csv: {
|
|
63
|
+
* OutputSerialization: { // OutputSerialization
|
|
64
|
+
* csv: { // CSVOutput
|
|
65
65
|
* QuoteFields: "ALWAYS" || "ASNEEDED",
|
|
66
66
|
* QuoteEscapeCharacter: "STRING_VALUE",
|
|
67
67
|
* RecordDelimiter: "STRING_VALUE",
|
|
@@ -70,19 +70,19 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
70
70
|
* },
|
|
71
71
|
* },
|
|
72
72
|
* },
|
|
73
|
-
* OutputLocation: {
|
|
74
|
-
* S3: {
|
|
73
|
+
* OutputLocation: { // OutputLocation
|
|
74
|
+
* S3: { // S3Location
|
|
75
75
|
* BucketName: "STRING_VALUE",
|
|
76
76
|
* Prefix: "STRING_VALUE",
|
|
77
|
-
* Encryption: {
|
|
77
|
+
* Encryption: { // Encryption
|
|
78
78
|
* EncryptionType: "aws:kms" || "AES256",
|
|
79
79
|
* KMSKeyId: "STRING_VALUE",
|
|
80
80
|
* KMSContext: "STRING_VALUE",
|
|
81
81
|
* },
|
|
82
82
|
* CannedACL: "private" || "public-read" || "public-read-write" || "aws-exec-read" || "authenticated-read" || "bucket-owner-read" || "bucket-owner-full-control",
|
|
83
|
-
* AccessControlList: [
|
|
84
|
-
* {
|
|
85
|
-
* Grantee: {
|
|
83
|
+
* AccessControlList: [ // AccessControlPolicyList
|
|
84
|
+
* { // Grant
|
|
85
|
+
* Grantee: { // Grantee
|
|
86
86
|
* Type: "AmazonCustomerByEmail" || "CanonicalUser" || "Group", // required
|
|
87
87
|
* DisplayName: "STRING_VALUE",
|
|
88
88
|
* URI: "STRING_VALUE",
|
|
@@ -92,7 +92,7 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
92
92
|
* Permission: "FULL_CONTROL" || "WRITE" || "WRITE_ACP" || "READ" || "READ_ACP",
|
|
93
93
|
* },
|
|
94
94
|
* ],
|
|
95
|
-
* Tagging: {
|
|
95
|
+
* Tagging: { // hashmap
|
|
96
96
|
* "<keys>": "STRING_VALUE",
|
|
97
97
|
* },
|
|
98
98
|
* UserMetadata: {
|
|
@@ -59,7 +59,7 @@ export interface InitiateMultipartUploadCommandOutput extends InitiateMultipartU
|
|
|
59
59
|
* import { GlacierClient, InitiateMultipartUploadCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
60
60
|
* // const { GlacierClient, InitiateMultipartUploadCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
61
61
|
* const client = new GlacierClient(config);
|
|
62
|
-
* const input = {
|
|
62
|
+
* const input = { // InitiateMultipartUploadInput
|
|
63
63
|
* accountId: "STRING_VALUE", // required
|
|
64
64
|
* vaultName: "STRING_VALUE", // required
|
|
65
65
|
* archiveDescription: "STRING_VALUE",
|
|
@@ -60,10 +60,10 @@ export interface InitiateVaultLockCommandOutput extends InitiateVaultLockOutput,
|
|
|
60
60
|
* import { GlacierClient, InitiateVaultLockCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
61
61
|
* // const { GlacierClient, InitiateVaultLockCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
62
62
|
* const client = new GlacierClient(config);
|
|
63
|
-
* const input = {
|
|
63
|
+
* const input = { // InitiateVaultLockInput
|
|
64
64
|
* accountId: "STRING_VALUE", // required
|
|
65
65
|
* vaultName: "STRING_VALUE", // required
|
|
66
|
-
* policy: {
|
|
66
|
+
* policy: { // VaultLockPolicy
|
|
67
67
|
* Policy: "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
69
|
* };
|
|
@@ -61,7 +61,7 @@ export interface ListJobsCommandOutput extends ListJobsOutput, __MetadataBearer
|
|
|
61
61
|
* import { GlacierClient, ListJobsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
62
62
|
* // const { GlacierClient, ListJobsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
63
63
|
* const client = new GlacierClient(config);
|
|
64
|
-
* const input = {
|
|
64
|
+
* const input = { // ListJobsInput
|
|
65
65
|
* accountId: "STRING_VALUE", // required
|
|
66
66
|
* vaultName: "STRING_VALUE", // required
|
|
67
67
|
* limit: Number("int"),
|
|
@@ -51,7 +51,7 @@ export interface ListMultipartUploadsCommandOutput extends ListMultipartUploadsO
|
|
|
51
51
|
* import { GlacierClient, ListMultipartUploadsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
52
52
|
* // const { GlacierClient, ListMultipartUploadsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
53
53
|
* const client = new GlacierClient(config);
|
|
54
|
-
* const input = {
|
|
54
|
+
* const input = { // ListMultipartUploadsInput
|
|
55
55
|
* accountId: "STRING_VALUE", // required
|
|
56
56
|
* vaultName: "STRING_VALUE", // required
|
|
57
57
|
* limit: Number("int"),
|
|
@@ -47,7 +47,7 @@ export interface ListPartsCommandOutput extends ListPartsOutput, __MetadataBeare
|
|
|
47
47
|
* import { GlacierClient, ListPartsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
48
48
|
* // const { GlacierClient, ListPartsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
49
49
|
* const client = new GlacierClient(config);
|
|
50
|
-
* const input = {
|
|
50
|
+
* const input = { // ListPartsInput
|
|
51
51
|
* accountId: "STRING_VALUE", // required
|
|
52
52
|
* vaultName: "STRING_VALUE", // required
|
|
53
53
|
* uploadId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface ListProvisionedCapacityCommandOutput extends ListProvisionedCap
|
|
|
27
27
|
* import { GlacierClient, ListProvisionedCapacityCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
28
28
|
* // const { GlacierClient, ListProvisionedCapacityCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
29
29
|
* const client = new GlacierClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListProvisionedCapacityInput
|
|
31
31
|
* accountId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListProvisionedCapacityCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface ListTagsForVaultCommandOutput extends ListTagsForVaultOutput, _
|
|
|
28
28
|
* import { GlacierClient, ListTagsForVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
29
29
|
* // const { GlacierClient, ListTagsForVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
30
30
|
* const client = new GlacierClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListTagsForVaultInput
|
|
32
32
|
* accountId: "STRING_VALUE", // required
|
|
33
33
|
* vaultName: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -44,7 +44,7 @@ export interface ListVaultsCommandOutput extends ListVaultsOutput, __MetadataBea
|
|
|
44
44
|
* import { GlacierClient, ListVaultsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
45
45
|
* // const { GlacierClient, ListVaultsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
46
46
|
* const client = new GlacierClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // ListVaultsInput
|
|
48
48
|
* accountId: "STRING_VALUE", // required
|
|
49
49
|
* marker: "STRING_VALUE",
|
|
50
50
|
* limit: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface PurchaseProvisionedCapacityCommandOutput extends PurchaseProvis
|
|
|
26
26
|
* import { GlacierClient, PurchaseProvisionedCapacityCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
27
27
|
* // const { GlacierClient, PurchaseProvisionedCapacityCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
28
28
|
* const client = new GlacierClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PurchaseProvisionedCapacityInput
|
|
30
30
|
* accountId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new PurchaseProvisionedCapacityCommand(input);
|
|
@@ -29,10 +29,10 @@ export interface RemoveTagsFromVaultCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { GlacierClient, RemoveTagsFromVaultCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
30
30
|
* // const { GlacierClient, RemoveTagsFromVaultCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
31
31
|
* const client = new GlacierClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // RemoveTagsFromVaultInput
|
|
33
33
|
* accountId: "STRING_VALUE", // required
|
|
34
34
|
* vaultName: "STRING_VALUE", // required
|
|
35
|
-
* TagKeys: [
|
|
35
|
+
* TagKeys: [ // TagKeyList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* };
|
|
@@ -31,11 +31,11 @@ export interface SetDataRetrievalPolicyCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { GlacierClient, SetDataRetrievalPolicyCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
32
32
|
* // const { GlacierClient, SetDataRetrievalPolicyCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
33
33
|
* const client = new GlacierClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // SetDataRetrievalPolicyInput
|
|
35
35
|
* accountId: "STRING_VALUE", // required
|
|
36
|
-
* Policy: {
|
|
37
|
-
* Rules: [
|
|
38
|
-
* {
|
|
36
|
+
* Policy: { // DataRetrievalPolicy
|
|
37
|
+
* Rules: [ // DataRetrievalRulesList
|
|
38
|
+
* { // DataRetrievalRule
|
|
39
39
|
* Strategy: "STRING_VALUE",
|
|
40
40
|
* BytesPerHour: Number("long"),
|
|
41
41
|
* },
|
|
@@ -31,10 +31,10 @@ export interface SetVaultAccessPolicyCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { GlacierClient, SetVaultAccessPolicyCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
32
32
|
* // const { GlacierClient, SetVaultAccessPolicyCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
33
33
|
* const client = new GlacierClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // SetVaultAccessPolicyInput
|
|
35
35
|
* accountId: "STRING_VALUE", // required
|
|
36
36
|
* vaultName: "STRING_VALUE", // required
|
|
37
|
-
* policy: {
|
|
37
|
+
* policy: { // VaultAccessPolicy
|
|
38
38
|
* Policy: "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* };
|
|
@@ -63,12 +63,12 @@ export interface SetVaultNotificationsCommandOutput extends __MetadataBearer {
|
|
|
63
63
|
* import { GlacierClient, SetVaultNotificationsCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
64
64
|
* // const { GlacierClient, SetVaultNotificationsCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
65
65
|
* const client = new GlacierClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // SetVaultNotificationsInput
|
|
67
67
|
* accountId: "STRING_VALUE", // required
|
|
68
68
|
* vaultName: "STRING_VALUE", // required
|
|
69
|
-
* vaultNotificationConfig: {
|
|
69
|
+
* vaultNotificationConfig: { // VaultNotificationConfig
|
|
70
70
|
* SNSTopic: "STRING_VALUE",
|
|
71
|
-
* Events: [
|
|
71
|
+
* Events: [ // NotificationEventList
|
|
72
72
|
* "STRING_VALUE",
|
|
73
73
|
* ],
|
|
74
74
|
* },
|
|
@@ -67,7 +67,7 @@ export interface UploadArchiveCommandOutput extends ArchiveCreationOutput, __Met
|
|
|
67
67
|
* import { GlacierClient, UploadArchiveCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
68
68
|
* // const { GlacierClient, UploadArchiveCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
69
69
|
* const client = new GlacierClient(config);
|
|
70
|
-
* const input = {
|
|
70
|
+
* const input = { // UploadArchiveInput
|
|
71
71
|
* vaultName: "STRING_VALUE", // required
|
|
72
72
|
* accountId: "STRING_VALUE", // required
|
|
73
73
|
* archiveDescription: "STRING_VALUE",
|
|
@@ -86,7 +86,7 @@ export interface UploadMultipartPartCommandOutput extends UploadMultipartPartOut
|
|
|
86
86
|
* import { GlacierClient, UploadMultipartPartCommand } from "@aws-sdk/client-glacier"; // ES Modules import
|
|
87
87
|
* // const { GlacierClient, UploadMultipartPartCommand } = require("@aws-sdk/client-glacier"); // CommonJS import
|
|
88
88
|
* const client = new GlacierClient(config);
|
|
89
|
-
* const input = {
|
|
89
|
+
* const input = { // UploadMultipartPartInput
|
|
90
90
|
* accountId: "STRING_VALUE", // required
|
|
91
91
|
* vaultName: "STRING_VALUE", // required
|
|
92
92
|
* uploadId: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glacier",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
24
|
"@aws-sdk/body-checksum-browser": "3.296.0",
|
|
25
25
|
"@aws-sdk/body-checksum-node": "3.296.0",
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
27
27
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
29
29
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
30
30
|
"@aws-sdk/hash-node": "3.296.0",
|
|
31
31
|
"@aws-sdk/invalid-dependency": "3.296.0",
|