@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.
- package/dist-cjs/index.js +1797 -1957
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/BCMPricingCalculatorClient.js +2 -0
- package/dist-es/commands/BatchCreateBillScenarioCommitmentModificationCommand.js +3 -9
- package/dist-es/commands/BatchCreateBillScenarioUsageModificationCommand.js +3 -9
- package/dist-es/commands/BatchCreateWorkloadEstimateUsageCommand.js +3 -9
- package/dist-es/commands/BatchDeleteBillScenarioCommitmentModificationCommand.js +3 -9
- package/dist-es/commands/BatchDeleteBillScenarioUsageModificationCommand.js +3 -9
- package/dist-es/commands/BatchDeleteWorkloadEstimateUsageCommand.js +3 -9
- package/dist-es/commands/BatchUpdateBillScenarioCommitmentModificationCommand.js +3 -9
- package/dist-es/commands/BatchUpdateBillScenarioUsageModificationCommand.js +3 -9
- package/dist-es/commands/BatchUpdateWorkloadEstimateUsageCommand.js +3 -9
- package/dist-es/commands/CreateBillEstimateCommand.js +3 -9
- package/dist-es/commands/CreateBillScenarioCommand.js +3 -9
- package/dist-es/commands/CreateWorkloadEstimateCommand.js +3 -9
- package/dist-es/commands/DeleteBillEstimateCommand.js +3 -9
- package/dist-es/commands/DeleteBillScenarioCommand.js +3 -9
- package/dist-es/commands/DeleteWorkloadEstimateCommand.js +3 -9
- package/dist-es/commands/GetBillEstimateCommand.js +3 -9
- package/dist-es/commands/GetBillScenarioCommand.js +3 -9
- package/dist-es/commands/GetPreferencesCommand.js +3 -9
- package/dist-es/commands/GetWorkloadEstimateCommand.js +3 -9
- package/dist-es/commands/ListBillEstimateCommitmentsCommand.js +3 -9
- package/dist-es/commands/ListBillEstimateInputCommitmentModificationsCommand.js +3 -9
- package/dist-es/commands/ListBillEstimateInputUsageModificationsCommand.js +3 -9
- package/dist-es/commands/ListBillEstimateLineItemsCommand.js +3 -9
- package/dist-es/commands/ListBillEstimatesCommand.js +3 -9
- package/dist-es/commands/ListBillScenarioCommitmentModificationsCommand.js +3 -9
- package/dist-es/commands/ListBillScenarioUsageModificationsCommand.js +3 -9
- package/dist-es/commands/ListBillScenariosCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListWorkloadEstimateUsageCommand.js +3 -9
- package/dist-es/commands/ListWorkloadEstimatesCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateBillEstimateCommand.js +3 -9
- package/dist-es/commands/UpdateBillScenarioCommand.js +3 -9
- package/dist-es/commands/UpdatePreferencesCommand.js +3 -9
- package/dist-es/commands/UpdateWorkloadEstimateCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1713 -0
- package/dist-types/BCMPricingCalculatorClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +221 -0
- package/dist-types/ts3.4/BCMPricingCalculatorClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +227 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -1685
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -326
- 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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
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 {
|
|
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
|
-
.
|
|
19
|
-
.ser(se_ListBillEstimateInputUsageModificationsCommand)
|
|
20
|
-
.de(de_ListBillEstimateInputUsageModificationsCommand)
|
|
14
|
+
.sc(ListBillEstimateInputUsageModifications)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|