@aws-sdk/client-glacier 3.952.0 → 3.954.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-cjs/index.js +402 -264
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/AbortMultipartUploadCommand.js +2 -2
- package/dist-es/commands/AbortVaultLockCommand.js +2 -2
- package/dist-es/commands/AddTagsToVaultCommand.js +2 -2
- package/dist-es/commands/CompleteMultipartUploadCommand.js +2 -2
- package/dist-es/commands/CompleteVaultLockCommand.js +2 -2
- package/dist-es/commands/CreateVaultCommand.js +2 -2
- package/dist-es/commands/DeleteArchiveCommand.js +2 -2
- package/dist-es/commands/DeleteVaultAccessPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteVaultCommand.js +2 -2
- package/dist-es/commands/DeleteVaultNotificationsCommand.js +2 -2
- package/dist-es/commands/DescribeJobCommand.js +2 -2
- package/dist-es/commands/DescribeVaultCommand.js +2 -2
- package/dist-es/commands/GetDataRetrievalPolicyCommand.js +2 -2
- package/dist-es/commands/GetJobOutputCommand.js +2 -2
- package/dist-es/commands/GetVaultAccessPolicyCommand.js +2 -2
- package/dist-es/commands/GetVaultLockCommand.js +2 -2
- package/dist-es/commands/GetVaultNotificationsCommand.js +2 -2
- package/dist-es/commands/InitiateJobCommand.js +2 -2
- package/dist-es/commands/InitiateMultipartUploadCommand.js +2 -2
- package/dist-es/commands/InitiateVaultLockCommand.js +2 -2
- package/dist-es/commands/ListJobsCommand.js +2 -2
- package/dist-es/commands/ListMultipartUploadsCommand.js +2 -2
- package/dist-es/commands/ListPartsCommand.js +2 -2
- package/dist-es/commands/ListProvisionedCapacityCommand.js +2 -2
- package/dist-es/commands/ListTagsForVaultCommand.js +2 -2
- package/dist-es/commands/ListVaultsCommand.js +2 -2
- package/dist-es/commands/PurchaseProvisionedCapacityCommand.js +2 -2
- package/dist-es/commands/RemoveTagsFromVaultCommand.js +2 -2
- package/dist-es/commands/SetDataRetrievalPolicyCommand.js +2 -2
- package/dist-es/commands/SetVaultAccessPolicyCommand.js +2 -2
- package/dist-es/commands/SetVaultNotificationsCommand.js +2 -2
- package/dist-es/commands/UploadArchiveCommand.js +2 -2
- package/dist-es/commands/UploadMultipartPartCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +230 -209
- package/dist-types/GlacierClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +118 -131
- package/dist-types/ts3.4/GlacierClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +117 -132
- package/package.json +39 -39
|
@@ -27,7 +27,13 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.glacier",
|
|
33
|
+
xmlNamespace: "http://glacier.amazonaws.com/doc/2012-06-01/",
|
|
34
|
+
version: "2012-06-01",
|
|
35
|
+
serviceTarget: "Glacier",
|
|
36
|
+
},
|
|
31
37
|
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
|
|
32
38
|
serviceId: config?.serviceId ?? "Glacier",
|
|
33
39
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AbortMultipartUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { AbortMultipartUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AbortMultipartUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AbortMultipartUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "AbortMultipartUpload", {})
|
|
13
13
|
.n("GlacierClient", "AbortMultipartUploadCommand")
|
|
14
|
-
.sc(AbortMultipartUpload)
|
|
14
|
+
.sc(AbortMultipartUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AbortVaultLock } from "../schemas/schemas_0";
|
|
4
|
+
import { AbortVaultLock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AbortVaultLockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AbortVaultLockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "AbortVaultLock", {})
|
|
13
13
|
.n("GlacierClient", "AbortVaultLockCommand")
|
|
14
|
-
.sc(AbortVaultLock)
|
|
14
|
+
.sc(AbortVaultLock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddTagsToVault } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTagsToVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsToVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsToVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "AddTagsToVault", {})
|
|
13
13
|
.n("GlacierClient", "AddTagsToVaultCommand")
|
|
14
|
-
.sc(AddTagsToVault)
|
|
14
|
+
.sc(AddTagsToVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CompleteMultipartUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { CompleteMultipartUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CompleteMultipartUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CompleteMultipartUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "CompleteMultipartUpload", {})
|
|
13
13
|
.n("GlacierClient", "CompleteMultipartUploadCommand")
|
|
14
|
-
.sc(CompleteMultipartUpload)
|
|
14
|
+
.sc(CompleteMultipartUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CompleteVaultLock } from "../schemas/schemas_0";
|
|
4
|
+
import { CompleteVaultLock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CompleteVaultLockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CompleteVaultLockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "CompleteVaultLock", {})
|
|
13
13
|
.n("GlacierClient", "CompleteVaultLockCommand")
|
|
14
|
-
.sc(CompleteVaultLock)
|
|
14
|
+
.sc(CompleteVaultLock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVault } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "CreateVault", {})
|
|
13
13
|
.n("GlacierClient", "CreateVaultCommand")
|
|
14
|
-
.sc(CreateVault)
|
|
14
|
+
.sc(CreateVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteArchive } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteArchive$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteArchiveCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteArchiveCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DeleteArchive", {})
|
|
13
13
|
.n("GlacierClient", "DeleteArchiveCommand")
|
|
14
|
-
.sc(DeleteArchive)
|
|
14
|
+
.sc(DeleteArchive$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVaultAccessPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVaultAccessPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVaultAccessPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVaultAccessPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DeleteVaultAccessPolicy", {})
|
|
13
13
|
.n("GlacierClient", "DeleteVaultAccessPolicyCommand")
|
|
14
|
-
.sc(DeleteVaultAccessPolicy)
|
|
14
|
+
.sc(DeleteVaultAccessPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVault } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DeleteVault", {})
|
|
13
13
|
.n("GlacierClient", "DeleteVaultCommand")
|
|
14
|
-
.sc(DeleteVault)
|
|
14
|
+
.sc(DeleteVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVaultNotifications } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVaultNotifications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVaultNotificationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVaultNotificationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DeleteVaultNotifications", {})
|
|
13
13
|
.n("GlacierClient", "DeleteVaultNotificationsCommand")
|
|
14
|
-
.sc(DeleteVaultNotifications)
|
|
14
|
+
.sc(DeleteVaultNotifications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DescribeJob", {})
|
|
13
13
|
.n("GlacierClient", "DescribeJobCommand")
|
|
14
|
-
.sc(DescribeJob)
|
|
14
|
+
.sc(DescribeJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVault } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "DescribeVault", {})
|
|
13
13
|
.n("GlacierClient", "DescribeVaultCommand")
|
|
14
|
-
.sc(DescribeVault)
|
|
14
|
+
.sc(DescribeVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDataRetrievalPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataRetrievalPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataRetrievalPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataRetrievalPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "GetDataRetrievalPolicy", {})
|
|
13
13
|
.n("GlacierClient", "GetDataRetrievalPolicyCommand")
|
|
14
|
-
.sc(GetDataRetrievalPolicy)
|
|
14
|
+
.sc(GetDataRetrievalPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetJobOutput } from "../schemas/schemas_0";
|
|
4
|
+
import { GetJobOutput$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetJobOutputCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetJobOutputCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "GetJobOutput", {})
|
|
13
13
|
.n("GlacierClient", "GetJobOutputCommand")
|
|
14
|
-
.sc(GetJobOutput)
|
|
14
|
+
.sc(GetJobOutput$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVaultAccessPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVaultAccessPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVaultAccessPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVaultAccessPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "GetVaultAccessPolicy", {})
|
|
13
13
|
.n("GlacierClient", "GetVaultAccessPolicyCommand")
|
|
14
|
-
.sc(GetVaultAccessPolicy)
|
|
14
|
+
.sc(GetVaultAccessPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVaultLock } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVaultLock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVaultLockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVaultLockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "GetVaultLock", {})
|
|
13
13
|
.n("GlacierClient", "GetVaultLockCommand")
|
|
14
|
-
.sc(GetVaultLock)
|
|
14
|
+
.sc(GetVaultLock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVaultNotifications } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVaultNotifications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVaultNotificationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVaultNotificationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "GetVaultNotifications", {})
|
|
13
13
|
.n("GlacierClient", "GetVaultNotificationsCommand")
|
|
14
|
-
.sc(GetVaultNotifications)
|
|
14
|
+
.sc(GetVaultNotifications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitiateJob } from "../schemas/schemas_0";
|
|
4
|
+
import { InitiateJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitiateJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitiateJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "InitiateJob", {})
|
|
13
13
|
.n("GlacierClient", "InitiateJobCommand")
|
|
14
|
-
.sc(InitiateJob)
|
|
14
|
+
.sc(InitiateJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitiateMultipartUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { InitiateMultipartUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitiateMultipartUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitiateMultipartUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "InitiateMultipartUpload", {})
|
|
13
13
|
.n("GlacierClient", "InitiateMultipartUploadCommand")
|
|
14
|
-
.sc(InitiateMultipartUpload)
|
|
14
|
+
.sc(InitiateMultipartUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitiateVaultLock } from "../schemas/schemas_0";
|
|
4
|
+
import { InitiateVaultLock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitiateVaultLockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitiateVaultLockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "InitiateVaultLock", {})
|
|
13
13
|
.n("GlacierClient", "InitiateVaultLockCommand")
|
|
14
|
-
.sc(InitiateVaultLock)
|
|
14
|
+
.sc(InitiateVaultLock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListJobs", {})
|
|
13
13
|
.n("GlacierClient", "ListJobsCommand")
|
|
14
|
-
.sc(ListJobs)
|
|
14
|
+
.sc(ListJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMultipartUploads } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMultipartUploads$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMultipartUploadsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMultipartUploadsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListMultipartUploads", {})
|
|
13
13
|
.n("GlacierClient", "ListMultipartUploadsCommand")
|
|
14
|
-
.sc(ListMultipartUploads)
|
|
14
|
+
.sc(ListMultipartUploads$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListParts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListParts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPartsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPartsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListParts", {})
|
|
13
13
|
.n("GlacierClient", "ListPartsCommand")
|
|
14
|
-
.sc(ListParts)
|
|
14
|
+
.sc(ListParts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProvisionedCapacity } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProvisionedCapacity$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProvisionedCapacityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProvisionedCapacityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListProvisionedCapacity", {})
|
|
13
13
|
.n("GlacierClient", "ListProvisionedCapacityCommand")
|
|
14
|
-
.sc(ListProvisionedCapacity)
|
|
14
|
+
.sc(ListProvisionedCapacity$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForVault } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListTagsForVault", {})
|
|
13
13
|
.n("GlacierClient", "ListTagsForVaultCommand")
|
|
14
|
-
.sc(ListTagsForVault)
|
|
14
|
+
.sc(ListTagsForVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVaults } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVaults$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVaultsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVaultsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "ListVaults", {})
|
|
13
13
|
.n("GlacierClient", "ListVaultsCommand")
|
|
14
|
-
.sc(ListVaults)
|
|
14
|
+
.sc(ListVaults$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PurchaseProvisionedCapacity } from "../schemas/schemas_0";
|
|
4
|
+
import { PurchaseProvisionedCapacity$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PurchaseProvisionedCapacityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PurchaseProvisionedCapacityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "PurchaseProvisionedCapacity", {})
|
|
13
13
|
.n("GlacierClient", "PurchaseProvisionedCapacityCommand")
|
|
14
|
-
.sc(PurchaseProvisionedCapacity)
|
|
14
|
+
.sc(PurchaseProvisionedCapacity$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemoveTagsFromVault } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveTagsFromVault$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsFromVaultCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveTagsFromVaultCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "RemoveTagsFromVault", {})
|
|
13
13
|
.n("GlacierClient", "RemoveTagsFromVaultCommand")
|
|
14
|
-
.sc(RemoveTagsFromVault)
|
|
14
|
+
.sc(RemoveTagsFromVault$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetDataRetrievalPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { SetDataRetrievalPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetDataRetrievalPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetDataRetrievalPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "SetDataRetrievalPolicy", {})
|
|
13
13
|
.n("GlacierClient", "SetDataRetrievalPolicyCommand")
|
|
14
|
-
.sc(SetDataRetrievalPolicy)
|
|
14
|
+
.sc(SetDataRetrievalPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetVaultAccessPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { SetVaultAccessPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetVaultAccessPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetVaultAccessPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "SetVaultAccessPolicy", {})
|
|
13
13
|
.n("GlacierClient", "SetVaultAccessPolicyCommand")
|
|
14
|
-
.sc(SetVaultAccessPolicy)
|
|
14
|
+
.sc(SetVaultAccessPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetVaultNotifications } from "../schemas/schemas_0";
|
|
4
|
+
import { SetVaultNotifications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetVaultNotificationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetVaultNotificationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "SetVaultNotifications", {})
|
|
13
13
|
.n("GlacierClient", "SetVaultNotificationsCommand")
|
|
14
|
-
.sc(SetVaultNotifications)
|
|
14
|
+
.sc(SetVaultNotifications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UploadArchive } from "../schemas/schemas_0";
|
|
4
|
+
import { UploadArchive$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UploadArchiveCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UploadArchiveCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "UploadArchive", {})
|
|
13
13
|
.n("GlacierClient", "UploadArchiveCommand")
|
|
14
|
-
.sc(UploadArchive)
|
|
14
|
+
.sc(UploadArchive$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UploadMultipartPart } from "../schemas/schemas_0";
|
|
4
|
+
import { UploadMultipartPart$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UploadMultipartPartCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UploadMultipartPartCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Glacier", "UploadMultipartPart", {})
|
|
13
13
|
.n("GlacierClient", "UploadMultipartPartCommand")
|
|
14
|
-
.sc(UploadMultipartPart)
|
|
14
|
+
.sc(UploadMultipartPart$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -24,7 +24,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
},
|
|
25
25
|
],
|
|
26
26
|
logger: config?.logger ?? new NoOpLogger(),
|
|
27
|
-
protocol: config?.protocol ??
|
|
27
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
28
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
29
|
+
defaultNamespace: "com.amazonaws.glacier",
|
|
30
|
+
xmlNamespace: "http://glacier.amazonaws.com/doc/2012-06-01/",
|
|
31
|
+
version: "2012-06-01",
|
|
32
|
+
serviceTarget: "Glacier",
|
|
33
|
+
},
|
|
28
34
|
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
29
35
|
serviceId: config?.serviceId ?? "Glacier",
|
|
30
36
|
urlParser: config?.urlParser ?? parseUrl,
|