@aws-sdk/client-glacier 3.927.0 → 3.928.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.
Files changed (57) hide show
  1. package/dist-cjs/index.js +1532 -1313
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/GlacierClient.js +2 -0
  4. package/dist-es/commands/AbortMultipartUploadCommand.js +3 -9
  5. package/dist-es/commands/AbortVaultLockCommand.js +3 -9
  6. package/dist-es/commands/AddTagsToVaultCommand.js +3 -9
  7. package/dist-es/commands/CompleteMultipartUploadCommand.js +3 -9
  8. package/dist-es/commands/CompleteVaultLockCommand.js +3 -9
  9. package/dist-es/commands/CreateVaultCommand.js +3 -9
  10. package/dist-es/commands/DeleteArchiveCommand.js +3 -9
  11. package/dist-es/commands/DeleteVaultAccessPolicyCommand.js +3 -9
  12. package/dist-es/commands/DeleteVaultCommand.js +3 -9
  13. package/dist-es/commands/DeleteVaultNotificationsCommand.js +3 -9
  14. package/dist-es/commands/DescribeJobCommand.js +3 -9
  15. package/dist-es/commands/DescribeVaultCommand.js +3 -9
  16. package/dist-es/commands/GetDataRetrievalPolicyCommand.js +3 -9
  17. package/dist-es/commands/GetJobOutputCommand.js +3 -10
  18. package/dist-es/commands/GetVaultAccessPolicyCommand.js +3 -9
  19. package/dist-es/commands/GetVaultLockCommand.js +3 -9
  20. package/dist-es/commands/GetVaultNotificationsCommand.js +3 -9
  21. package/dist-es/commands/InitiateJobCommand.js +3 -9
  22. package/dist-es/commands/InitiateMultipartUploadCommand.js +3 -9
  23. package/dist-es/commands/InitiateVaultLockCommand.js +3 -9
  24. package/dist-es/commands/ListJobsCommand.js +3 -9
  25. package/dist-es/commands/ListMultipartUploadsCommand.js +3 -9
  26. package/dist-es/commands/ListPartsCommand.js +3 -9
  27. package/dist-es/commands/ListProvisionedCapacityCommand.js +3 -9
  28. package/dist-es/commands/ListTagsForVaultCommand.js +3 -9
  29. package/dist-es/commands/ListVaultsCommand.js +3 -9
  30. package/dist-es/commands/PurchaseProvisionedCapacityCommand.js +3 -9
  31. package/dist-es/commands/RemoveTagsFromVaultCommand.js +3 -9
  32. package/dist-es/commands/SetDataRetrievalPolicyCommand.js +3 -9
  33. package/dist-es/commands/SetVaultAccessPolicyCommand.js +3 -9
  34. package/dist-es/commands/SetVaultNotificationsCommand.js +3 -9
  35. package/dist-es/commands/UploadArchiveCommand.js +3 -10
  36. package/dist-es/commands/UploadMultipartPartCommand.js +3 -10
  37. package/dist-es/models/models_0.js +0 -9
  38. package/dist-es/runtimeConfig.shared.js +2 -0
  39. package/dist-es/schemas/schemas_0.js +1467 -0
  40. package/dist-types/GlacierClient.d.ts +10 -1
  41. package/dist-types/models/models_0.d.ts +0 -12
  42. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  43. package/dist-types/runtimeConfig.d.ts +1 -0
  44. package/dist-types/runtimeConfig.native.d.ts +1 -0
  45. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  46. package/dist-types/schemas/schemas_0.d.ts +130 -0
  47. package/dist-types/ts3.4/GlacierClient.d.ts +4 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +0 -9
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  53. package/dist-types/ts3.4/schemas/schemas_0.d.ts +136 -0
  54. package/package.json +5 -5
  55. package/dist-es/protocols/Aws_restJson1.js +0 -1070
  56. package/dist-types/protocols/Aws_restJson1.d.ts +0 -299
  57. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -404
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -26,6 +27,7 @@ const getRuntimeConfig = (config) => {
26
27
  },
27
28
  ],
28
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
30
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.glacier" }),
29
31
  sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
30
32
  serviceId: config?.serviceId ?? "Glacier",
31
33
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
@@ -5,6 +5,7 @@ import { getGlacierPlugin } from "@aws-sdk/middleware-sdk-glacier";
5
5
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
6
6
  import { resolveRegionConfig } from "@smithy/config-resolver";
7
7
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
8
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
8
9
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
9
10
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
10
11
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -29,6 +30,7 @@ export class GlacierClient extends __Client {
29
30
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
30
31
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
31
32
  this.config = _config_8;
33
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
32
34
  this.middlewareStack.use(getUserAgentPlugin(this.config));
33
35
  this.middlewareStack.use(getRetryPlugin(this.config));
34
36
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_AbortMultipartUploadCommand, se_AbortMultipartUploadCommand } from "../protocols/Aws_restJson1";
4
+ import { AbortMultipartUpload } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AbortMultipartUploadCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "AbortMultipartUpload", {})
17
13
  .n("GlacierClient", "AbortMultipartUploadCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AbortMultipartUploadCommand)
20
- .de(de_AbortMultipartUploadCommand)
14
+ .sc(AbortMultipartUpload)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_AbortVaultLockCommand, se_AbortVaultLockCommand } from "../protocols/Aws_restJson1";
4
+ import { AbortVaultLock } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AbortVaultLockCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "AbortVaultLock", {})
17
13
  .n("GlacierClient", "AbortVaultLockCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AbortVaultLockCommand)
20
- .de(de_AbortVaultLockCommand)
14
+ .sc(AbortVaultLock)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_AddTagsToVaultCommand, se_AddTagsToVaultCommand } from "../protocols/Aws_restJson1";
4
+ import { AddTagsToVault } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AddTagsToVaultCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "AddTagsToVault", {})
17
13
  .n("GlacierClient", "AddTagsToVaultCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AddTagsToVaultCommand)
20
- .de(de_AddTagsToVaultCommand)
14
+ .sc(AddTagsToVault)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CompleteMultipartUploadCommand, se_CompleteMultipartUploadCommand } from "../protocols/Aws_restJson1";
4
+ import { CompleteMultipartUpload } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CompleteMultipartUploadCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "CompleteMultipartUpload", {})
17
13
  .n("GlacierClient", "CompleteMultipartUploadCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CompleteMultipartUploadCommand)
20
- .de(de_CompleteMultipartUploadCommand)
14
+ .sc(CompleteMultipartUpload)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CompleteVaultLockCommand, se_CompleteVaultLockCommand } from "../protocols/Aws_restJson1";
4
+ import { CompleteVaultLock } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CompleteVaultLockCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "CompleteVaultLock", {})
17
13
  .n("GlacierClient", "CompleteVaultLockCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CompleteVaultLockCommand)
20
- .de(de_CompleteVaultLockCommand)
14
+ .sc(CompleteVaultLock)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateVaultCommand, se_CreateVaultCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateVault } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateVaultCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "CreateVault", {})
17
13
  .n("GlacierClient", "CreateVaultCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateVaultCommand)
20
- .de(de_CreateVaultCommand)
14
+ .sc(CreateVault)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteArchiveCommand, se_DeleteArchiveCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteArchive } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteArchiveCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DeleteArchive", {})
17
13
  .n("GlacierClient", "DeleteArchiveCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteArchiveCommand)
20
- .de(de_DeleteArchiveCommand)
14
+ .sc(DeleteArchive)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVaultAccessPolicyCommand, se_DeleteVaultAccessPolicyCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVaultAccessPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVaultAccessPolicyCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DeleteVaultAccessPolicy", {})
17
13
  .n("GlacierClient", "DeleteVaultAccessPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVaultAccessPolicyCommand)
20
- .de(de_DeleteVaultAccessPolicyCommand)
14
+ .sc(DeleteVaultAccessPolicy)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVaultCommand, se_DeleteVaultCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVault } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVaultCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DeleteVault", {})
17
13
  .n("GlacierClient", "DeleteVaultCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVaultCommand)
20
- .de(de_DeleteVaultCommand)
14
+ .sc(DeleteVault)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVaultNotificationsCommand, se_DeleteVaultNotificationsCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVaultNotifications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVaultNotificationsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DeleteVaultNotifications", {})
17
13
  .n("GlacierClient", "DeleteVaultNotificationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVaultNotificationsCommand)
20
- .de(de_DeleteVaultNotificationsCommand)
14
+ .sc(DeleteVaultNotifications)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeJobCommand, se_DescribeJobCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DescribeJob", {})
17
13
  .n("GlacierClient", "DescribeJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeJobCommand)
20
- .de(de_DescribeJobCommand)
14
+ .sc(DescribeJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeVaultCommand, se_DescribeVaultCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeVault } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeVaultCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "DescribeVault", {})
17
13
  .n("GlacierClient", "DescribeVaultCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeVaultCommand)
20
- .de(de_DescribeVaultCommand)
14
+ .sc(DescribeVault)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetDataRetrievalPolicyCommand, se_GetDataRetrievalPolicyCommand } from "../protocols/Aws_restJson1";
4
+ import { GetDataRetrievalPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetDataRetrievalPolicyCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "GetDataRetrievalPolicy", {})
17
13
  .n("GlacierClient", "GetDataRetrievalPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetDataRetrievalPolicyCommand)
20
- .de(de_GetDataRetrievalPolicyCommand)
14
+ .sc(GetDataRetrievalPolicy)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { GetJobOutputOutputFilterSensitiveLog } from "../models/models_0";
6
- import { de_GetJobOutputCommand, se_GetJobOutputCommand } from "../protocols/Aws_restJson1";
4
+ import { GetJobOutput } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetJobOutputCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("Glacier", "GetJobOutput", {})
18
13
  .n("GlacierClient", "GetJobOutputCommand")
19
- .f(void 0, GetJobOutputOutputFilterSensitiveLog)
20
- .ser(se_GetJobOutputCommand)
21
- .de(de_GetJobOutputCommand)
14
+ .sc(GetJobOutput)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetVaultAccessPolicyCommand, se_GetVaultAccessPolicyCommand } from "../protocols/Aws_restJson1";
4
+ import { GetVaultAccessPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetVaultAccessPolicyCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "GetVaultAccessPolicy", {})
17
13
  .n("GlacierClient", "GetVaultAccessPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetVaultAccessPolicyCommand)
20
- .de(de_GetVaultAccessPolicyCommand)
14
+ .sc(GetVaultAccessPolicy)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetVaultLockCommand, se_GetVaultLockCommand } from "../protocols/Aws_restJson1";
4
+ import { GetVaultLock } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetVaultLockCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "GetVaultLock", {})
17
13
  .n("GlacierClient", "GetVaultLockCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetVaultLockCommand)
20
- .de(de_GetVaultLockCommand)
14
+ .sc(GetVaultLock)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetVaultNotificationsCommand, se_GetVaultNotificationsCommand } from "../protocols/Aws_restJson1";
4
+ import { GetVaultNotifications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetVaultNotificationsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "GetVaultNotifications", {})
17
13
  .n("GlacierClient", "GetVaultNotificationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetVaultNotificationsCommand)
20
- .de(de_GetVaultNotificationsCommand)
14
+ .sc(GetVaultNotifications)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_InitiateJobCommand, se_InitiateJobCommand } from "../protocols/Aws_restJson1";
4
+ import { InitiateJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class InitiateJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "InitiateJob", {})
17
13
  .n("GlacierClient", "InitiateJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_InitiateJobCommand)
20
- .de(de_InitiateJobCommand)
14
+ .sc(InitiateJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_InitiateMultipartUploadCommand, se_InitiateMultipartUploadCommand } from "../protocols/Aws_restJson1";
4
+ import { InitiateMultipartUpload } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class InitiateMultipartUploadCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "InitiateMultipartUpload", {})
17
13
  .n("GlacierClient", "InitiateMultipartUploadCommand")
18
- .f(void 0, void 0)
19
- .ser(se_InitiateMultipartUploadCommand)
20
- .de(de_InitiateMultipartUploadCommand)
14
+ .sc(InitiateMultipartUpload)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_InitiateVaultLockCommand, se_InitiateVaultLockCommand } from "../protocols/Aws_restJson1";
4
+ import { InitiateVaultLock } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class InitiateVaultLockCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "InitiateVaultLock", {})
17
13
  .n("GlacierClient", "InitiateVaultLockCommand")
18
- .f(void 0, void 0)
19
- .ser(se_InitiateVaultLockCommand)
20
- .de(de_InitiateVaultLockCommand)
14
+ .sc(InitiateVaultLock)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListJobsCommand, se_ListJobsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListJobs } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListJobsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "ListJobs", {})
17
13
  .n("GlacierClient", "ListJobsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListJobsCommand)
20
- .de(de_ListJobsCommand)
14
+ .sc(ListJobs)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListMultipartUploadsCommand, se_ListMultipartUploadsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListMultipartUploads } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListMultipartUploadsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("Glacier", "ListMultipartUploads", {})
17
13
  .n("GlacierClient", "ListMultipartUploadsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListMultipartUploadsCommand)
20
- .de(de_ListMultipartUploadsCommand)
14
+ .sc(ListMultipartUploads)
21
15
  .build() {
22
16
  }