@aws-sdk/client-bcm-pricing-calculator 3.927.0 → 3.929.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 +1797 -1957
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/BCMPricingCalculatorClient.js +2 -0
  4. package/dist-es/commands/BatchCreateBillScenarioCommitmentModificationCommand.js +3 -9
  5. package/dist-es/commands/BatchCreateBillScenarioUsageModificationCommand.js +3 -9
  6. package/dist-es/commands/BatchCreateWorkloadEstimateUsageCommand.js +3 -9
  7. package/dist-es/commands/BatchDeleteBillScenarioCommitmentModificationCommand.js +3 -9
  8. package/dist-es/commands/BatchDeleteBillScenarioUsageModificationCommand.js +3 -9
  9. package/dist-es/commands/BatchDeleteWorkloadEstimateUsageCommand.js +3 -9
  10. package/dist-es/commands/BatchUpdateBillScenarioCommitmentModificationCommand.js +3 -9
  11. package/dist-es/commands/BatchUpdateBillScenarioUsageModificationCommand.js +3 -9
  12. package/dist-es/commands/BatchUpdateWorkloadEstimateUsageCommand.js +3 -9
  13. package/dist-es/commands/CreateBillEstimateCommand.js +3 -9
  14. package/dist-es/commands/CreateBillScenarioCommand.js +3 -9
  15. package/dist-es/commands/CreateWorkloadEstimateCommand.js +3 -9
  16. package/dist-es/commands/DeleteBillEstimateCommand.js +3 -9
  17. package/dist-es/commands/DeleteBillScenarioCommand.js +3 -9
  18. package/dist-es/commands/DeleteWorkloadEstimateCommand.js +3 -9
  19. package/dist-es/commands/GetBillEstimateCommand.js +3 -9
  20. package/dist-es/commands/GetBillScenarioCommand.js +3 -9
  21. package/dist-es/commands/GetPreferencesCommand.js +3 -9
  22. package/dist-es/commands/GetWorkloadEstimateCommand.js +3 -9
  23. package/dist-es/commands/ListBillEstimateCommitmentsCommand.js +3 -9
  24. package/dist-es/commands/ListBillEstimateInputCommitmentModificationsCommand.js +3 -9
  25. package/dist-es/commands/ListBillEstimateInputUsageModificationsCommand.js +3 -9
  26. package/dist-es/commands/ListBillEstimateLineItemsCommand.js +3 -9
  27. package/dist-es/commands/ListBillEstimatesCommand.js +3 -9
  28. package/dist-es/commands/ListBillScenarioCommitmentModificationsCommand.js +3 -9
  29. package/dist-es/commands/ListBillScenarioUsageModificationsCommand.js +3 -9
  30. package/dist-es/commands/ListBillScenariosCommand.js +3 -9
  31. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  32. package/dist-es/commands/ListWorkloadEstimateUsageCommand.js +3 -9
  33. package/dist-es/commands/ListWorkloadEstimatesCommand.js +3 -9
  34. package/dist-es/commands/TagResourceCommand.js +3 -9
  35. package/dist-es/commands/UntagResourceCommand.js +3 -9
  36. package/dist-es/commands/UpdateBillEstimateCommand.js +3 -9
  37. package/dist-es/commands/UpdateBillScenarioCommand.js +3 -9
  38. package/dist-es/commands/UpdatePreferencesCommand.js +3 -9
  39. package/dist-es/commands/UpdateWorkloadEstimateCommand.js +3 -9
  40. package/dist-es/runtimeConfig.shared.js +7 -0
  41. package/dist-es/schemas/schemas_0.js +1713 -0
  42. package/dist-types/BCMPricingCalculatorClient.d.ts +10 -1
  43. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  44. package/dist-types/runtimeConfig.d.ts +1 -0
  45. package/dist-types/runtimeConfig.native.d.ts +1 -0
  46. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  47. package/dist-types/schemas/schemas_0.d.ts +221 -0
  48. package/dist-types/ts3.4/BCMPricingCalculatorClient.d.ts +4 -0
  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 +227 -0
  54. package/package.json +5 -6
  55. package/dist-es/protocols/Aws_json1_0.js +0 -1685
  56. package/dist-types/protocols/Aws_json1_0.d.ts +0 -326
  57. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -437
@@ -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");
@@ -25,6 +26,12 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ??
30
+ new protocols_1.AwsJson1_0Protocol({
31
+ defaultNamespace: "com.amazonaws.bcmpricingcalculator",
32
+ serviceTarget: "AWSBCMPricingCalculator",
33
+ awsQueryCompatible: false,
34
+ }),
28
35
  serviceId: config?.serviceId ?? "BCM Pricing Calculator",
29
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class BCMPricingCalculatorClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  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_BatchCreateBillScenarioCommitmentModificationCommand, se_BatchCreateBillScenarioCommitmentModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchCreateBillScenarioCommitmentModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchCreateBillScenarioCommitmentModificationCommand 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("AWSBCMPricingCalculator", "BatchCreateBillScenarioCommitmentModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchCreateBillScenarioCommitmentModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchCreateBillScenarioCommitmentModificationCommand)
20
- .de(de_BatchCreateBillScenarioCommitmentModificationCommand)
14
+ .sc(BatchCreateBillScenarioCommitmentModification)
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_BatchCreateBillScenarioUsageModificationCommand, se_BatchCreateBillScenarioUsageModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchCreateBillScenarioUsageModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchCreateBillScenarioUsageModificationCommand 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("AWSBCMPricingCalculator", "BatchCreateBillScenarioUsageModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchCreateBillScenarioUsageModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchCreateBillScenarioUsageModificationCommand)
20
- .de(de_BatchCreateBillScenarioUsageModificationCommand)
14
+ .sc(BatchCreateBillScenarioUsageModification)
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_BatchCreateWorkloadEstimateUsageCommand, se_BatchCreateWorkloadEstimateUsageCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchCreateWorkloadEstimateUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchCreateWorkloadEstimateUsageCommand 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("AWSBCMPricingCalculator", "BatchCreateWorkloadEstimateUsage", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchCreateWorkloadEstimateUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchCreateWorkloadEstimateUsageCommand)
20
- .de(de_BatchCreateWorkloadEstimateUsageCommand)
14
+ .sc(BatchCreateWorkloadEstimateUsage)
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_BatchDeleteBillScenarioCommitmentModificationCommand, se_BatchDeleteBillScenarioCommitmentModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchDeleteBillScenarioCommitmentModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchDeleteBillScenarioCommitmentModificationCommand 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("AWSBCMPricingCalculator", "BatchDeleteBillScenarioCommitmentModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchDeleteBillScenarioCommitmentModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchDeleteBillScenarioCommitmentModificationCommand)
20
- .de(de_BatchDeleteBillScenarioCommitmentModificationCommand)
14
+ .sc(BatchDeleteBillScenarioCommitmentModification)
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_BatchDeleteBillScenarioUsageModificationCommand, se_BatchDeleteBillScenarioUsageModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchDeleteBillScenarioUsageModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchDeleteBillScenarioUsageModificationCommand 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("AWSBCMPricingCalculator", "BatchDeleteBillScenarioUsageModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchDeleteBillScenarioUsageModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchDeleteBillScenarioUsageModificationCommand)
20
- .de(de_BatchDeleteBillScenarioUsageModificationCommand)
14
+ .sc(BatchDeleteBillScenarioUsageModification)
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_BatchDeleteWorkloadEstimateUsageCommand, se_BatchDeleteWorkloadEstimateUsageCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchDeleteWorkloadEstimateUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchDeleteWorkloadEstimateUsageCommand 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("AWSBCMPricingCalculator", "BatchDeleteWorkloadEstimateUsage", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchDeleteWorkloadEstimateUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchDeleteWorkloadEstimateUsageCommand)
20
- .de(de_BatchDeleteWorkloadEstimateUsageCommand)
14
+ .sc(BatchDeleteWorkloadEstimateUsage)
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_BatchUpdateBillScenarioCommitmentModificationCommand, se_BatchUpdateBillScenarioCommitmentModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchUpdateBillScenarioCommitmentModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchUpdateBillScenarioCommitmentModificationCommand 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("AWSBCMPricingCalculator", "BatchUpdateBillScenarioCommitmentModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchUpdateBillScenarioCommitmentModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchUpdateBillScenarioCommitmentModificationCommand)
20
- .de(de_BatchUpdateBillScenarioCommitmentModificationCommand)
14
+ .sc(BatchUpdateBillScenarioCommitmentModification)
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_BatchUpdateBillScenarioUsageModificationCommand, se_BatchUpdateBillScenarioUsageModificationCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchUpdateBillScenarioUsageModification } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchUpdateBillScenarioUsageModificationCommand 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("AWSBCMPricingCalculator", "BatchUpdateBillScenarioUsageModification", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchUpdateBillScenarioUsageModificationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchUpdateBillScenarioUsageModificationCommand)
20
- .de(de_BatchUpdateBillScenarioUsageModificationCommand)
14
+ .sc(BatchUpdateBillScenarioUsageModification)
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_BatchUpdateWorkloadEstimateUsageCommand, se_BatchUpdateWorkloadEstimateUsageCommand, } from "../protocols/Aws_json1_0";
4
+ import { BatchUpdateWorkloadEstimateUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchUpdateWorkloadEstimateUsageCommand 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("AWSBCMPricingCalculator", "BatchUpdateWorkloadEstimateUsage", {})
17
13
  .n("BCMPricingCalculatorClient", "BatchUpdateWorkloadEstimateUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchUpdateWorkloadEstimateUsageCommand)
20
- .de(de_BatchUpdateWorkloadEstimateUsageCommand)
14
+ .sc(BatchUpdateWorkloadEstimateUsage)
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_CreateBillEstimateCommand, se_CreateBillEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateBillEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateBillEstimateCommand 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("AWSBCMPricingCalculator", "CreateBillEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "CreateBillEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateBillEstimateCommand)
20
- .de(de_CreateBillEstimateCommand)
14
+ .sc(CreateBillEstimate)
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_CreateBillScenarioCommand, se_CreateBillScenarioCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateBillScenario } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateBillScenarioCommand 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("AWSBCMPricingCalculator", "CreateBillScenario", {})
17
13
  .n("BCMPricingCalculatorClient", "CreateBillScenarioCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateBillScenarioCommand)
20
- .de(de_CreateBillScenarioCommand)
14
+ .sc(CreateBillScenario)
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_CreateWorkloadEstimateCommand, se_CreateWorkloadEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateWorkloadEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateWorkloadEstimateCommand 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("AWSBCMPricingCalculator", "CreateWorkloadEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "CreateWorkloadEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateWorkloadEstimateCommand)
20
- .de(de_CreateWorkloadEstimateCommand)
14
+ .sc(CreateWorkloadEstimate)
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_DeleteBillEstimateCommand, se_DeleteBillEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteBillEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteBillEstimateCommand 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("AWSBCMPricingCalculator", "DeleteBillEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "DeleteBillEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteBillEstimateCommand)
20
- .de(de_DeleteBillEstimateCommand)
14
+ .sc(DeleteBillEstimate)
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_DeleteBillScenarioCommand, se_DeleteBillScenarioCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteBillScenario } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteBillScenarioCommand 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("AWSBCMPricingCalculator", "DeleteBillScenario", {})
17
13
  .n("BCMPricingCalculatorClient", "DeleteBillScenarioCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteBillScenarioCommand)
20
- .de(de_DeleteBillScenarioCommand)
14
+ .sc(DeleteBillScenario)
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_DeleteWorkloadEstimateCommand, se_DeleteWorkloadEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteWorkloadEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteWorkloadEstimateCommand 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("AWSBCMPricingCalculator", "DeleteWorkloadEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "DeleteWorkloadEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteWorkloadEstimateCommand)
20
- .de(de_DeleteWorkloadEstimateCommand)
14
+ .sc(DeleteWorkloadEstimate)
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_GetBillEstimateCommand, se_GetBillEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { GetBillEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetBillEstimateCommand 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("AWSBCMPricingCalculator", "GetBillEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "GetBillEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetBillEstimateCommand)
20
- .de(de_GetBillEstimateCommand)
14
+ .sc(GetBillEstimate)
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_GetBillScenarioCommand, se_GetBillScenarioCommand } from "../protocols/Aws_json1_0";
4
+ import { GetBillScenario } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetBillScenarioCommand 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("AWSBCMPricingCalculator", "GetBillScenario", {})
17
13
  .n("BCMPricingCalculatorClient", "GetBillScenarioCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetBillScenarioCommand)
20
- .de(de_GetBillScenarioCommand)
14
+ .sc(GetBillScenario)
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_GetPreferencesCommand, se_GetPreferencesCommand } from "../protocols/Aws_json1_0";
4
+ import { GetPreferences } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetPreferencesCommand 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("AWSBCMPricingCalculator", "GetPreferences", {})
17
13
  .n("BCMPricingCalculatorClient", "GetPreferencesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetPreferencesCommand)
20
- .de(de_GetPreferencesCommand)
14
+ .sc(GetPreferences)
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_GetWorkloadEstimateCommand, se_GetWorkloadEstimateCommand } from "../protocols/Aws_json1_0";
4
+ import { GetWorkloadEstimate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetWorkloadEstimateCommand 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("AWSBCMPricingCalculator", "GetWorkloadEstimate", {})
17
13
  .n("BCMPricingCalculatorClient", "GetWorkloadEstimateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetWorkloadEstimateCommand)
20
- .de(de_GetWorkloadEstimateCommand)
14
+ .sc(GetWorkloadEstimate)
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_ListBillEstimateCommitmentsCommand, se_ListBillEstimateCommitmentsCommand } from "../protocols/Aws_json1_0";
4
+ import { ListBillEstimateCommitments } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListBillEstimateCommitmentsCommand 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("AWSBCMPricingCalculator", "ListBillEstimateCommitments", {})
17
13
  .n("BCMPricingCalculatorClient", "ListBillEstimateCommitmentsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListBillEstimateCommitmentsCommand)
20
- .de(de_ListBillEstimateCommitmentsCommand)
14
+ .sc(ListBillEstimateCommitments)
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_ListBillEstimateInputCommitmentModificationsCommand, se_ListBillEstimateInputCommitmentModificationsCommand, } from "../protocols/Aws_json1_0";
4
+ import { ListBillEstimateInputCommitmentModifications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListBillEstimateInputCommitmentModificationsCommand 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("AWSBCMPricingCalculator", "ListBillEstimateInputCommitmentModifications", {})
17
13
  .n("BCMPricingCalculatorClient", "ListBillEstimateInputCommitmentModificationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListBillEstimateInputCommitmentModificationsCommand)
20
- .de(de_ListBillEstimateInputCommitmentModificationsCommand)
14
+ .sc(ListBillEstimateInputCommitmentModifications)
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_ListBillEstimateInputUsageModificationsCommand, se_ListBillEstimateInputUsageModificationsCommand, } from "../protocols/Aws_json1_0";
4
+ import { ListBillEstimateInputUsageModifications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListBillEstimateInputUsageModificationsCommand 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("AWSBCMPricingCalculator", "ListBillEstimateInputUsageModifications", {})
17
13
  .n("BCMPricingCalculatorClient", "ListBillEstimateInputUsageModificationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListBillEstimateInputUsageModificationsCommand)
20
- .de(de_ListBillEstimateInputUsageModificationsCommand)
14
+ .sc(ListBillEstimateInputUsageModifications)
21
15
  .build() {
22
16
  }