@aws-sdk/client-billingconductor 3.490.0 → 3.495.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/Billingconductor.js +1 -75
- package/dist-cjs/BillingconductorClient.js +1 -43
- package/dist-cjs/commands/AssociateAccountsCommand.js +1 -28
- package/dist-cjs/commands/AssociatePricingRulesCommand.js +1 -28
- package/dist-cjs/commands/BatchAssociateResourcesToCustomLineItemCommand.js +1 -28
- package/dist-cjs/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +1 -28
- package/dist-cjs/commands/CreateBillingGroupCommand.js +1 -29
- package/dist-cjs/commands/CreateCustomLineItemCommand.js +1 -29
- package/dist-cjs/commands/CreatePricingPlanCommand.js +1 -29
- package/dist-cjs/commands/CreatePricingRuleCommand.js +1 -29
- package/dist-cjs/commands/DeleteBillingGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteCustomLineItemCommand.js +1 -28
- package/dist-cjs/commands/DeletePricingPlanCommand.js +1 -28
- package/dist-cjs/commands/DeletePricingRuleCommand.js +1 -28
- package/dist-cjs/commands/DisassociateAccountsCommand.js +1 -28
- package/dist-cjs/commands/DisassociatePricingRulesCommand.js +1 -28
- package/dist-cjs/commands/GetBillingGroupCostReportCommand.js +1 -28
- package/dist-cjs/commands/ListAccountAssociationsCommand.js +1 -29
- package/dist-cjs/commands/ListBillingGroupCostReportsCommand.js +1 -28
- package/dist-cjs/commands/ListBillingGroupsCommand.js +1 -29
- package/dist-cjs/commands/ListCustomLineItemVersionsCommand.js +1 -29
- package/dist-cjs/commands/ListCustomLineItemsCommand.js +1 -29
- package/dist-cjs/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +1 -28
- package/dist-cjs/commands/ListPricingPlansCommand.js +1 -29
- package/dist-cjs/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +1 -28
- package/dist-cjs/commands/ListPricingRulesCommand.js +1 -29
- package/dist-cjs/commands/ListResourcesAssociatedToCustomLineItemCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateBillingGroupCommand.js +1 -29
- package/dist-cjs/commands/UpdateCustomLineItemCommand.js +1 -29
- package/dist-cjs/commands/UpdatePricingPlanCommand.js +1 -29
- package/dist-cjs/commands/UpdatePricingRuleCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -35
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3717 -11
- package/dist-cjs/models/BillingconductorServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -392
- package/dist-cjs/pagination/GetBillingGroupCostReportPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAccountAssociationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListBillingGroupCostReportsPaginator.js +1 -7
- package/dist-cjs/pagination/ListBillingGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/ListCustomLineItemVersionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListCustomLineItemsPaginator.js +1 -7
- package/dist-cjs/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.js +1 -7
- package/dist-cjs/pagination/ListPricingPlansPaginator.js +1 -7
- package/dist-cjs/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.js +1 -7
- package/dist-cjs/pagination/ListPricingRulesPaginator.js +1 -7
- package/dist-cjs/pagination/ListResourcesAssociatedToCustomLineItemPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -15
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2390
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,75 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Billingconductor = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const BillingconductorClient_1 = require("./BillingconductorClient");
|
|
6
|
-
const AssociateAccountsCommand_1 = require("./commands/AssociateAccountsCommand");
|
|
7
|
-
const AssociatePricingRulesCommand_1 = require("./commands/AssociatePricingRulesCommand");
|
|
8
|
-
const BatchAssociateResourcesToCustomLineItemCommand_1 = require("./commands/BatchAssociateResourcesToCustomLineItemCommand");
|
|
9
|
-
const BatchDisassociateResourcesFromCustomLineItemCommand_1 = require("./commands/BatchDisassociateResourcesFromCustomLineItemCommand");
|
|
10
|
-
const CreateBillingGroupCommand_1 = require("./commands/CreateBillingGroupCommand");
|
|
11
|
-
const CreateCustomLineItemCommand_1 = require("./commands/CreateCustomLineItemCommand");
|
|
12
|
-
const CreatePricingPlanCommand_1 = require("./commands/CreatePricingPlanCommand");
|
|
13
|
-
const CreatePricingRuleCommand_1 = require("./commands/CreatePricingRuleCommand");
|
|
14
|
-
const DeleteBillingGroupCommand_1 = require("./commands/DeleteBillingGroupCommand");
|
|
15
|
-
const DeleteCustomLineItemCommand_1 = require("./commands/DeleteCustomLineItemCommand");
|
|
16
|
-
const DeletePricingPlanCommand_1 = require("./commands/DeletePricingPlanCommand");
|
|
17
|
-
const DeletePricingRuleCommand_1 = require("./commands/DeletePricingRuleCommand");
|
|
18
|
-
const DisassociateAccountsCommand_1 = require("./commands/DisassociateAccountsCommand");
|
|
19
|
-
const DisassociatePricingRulesCommand_1 = require("./commands/DisassociatePricingRulesCommand");
|
|
20
|
-
const GetBillingGroupCostReportCommand_1 = require("./commands/GetBillingGroupCostReportCommand");
|
|
21
|
-
const ListAccountAssociationsCommand_1 = require("./commands/ListAccountAssociationsCommand");
|
|
22
|
-
const ListBillingGroupCostReportsCommand_1 = require("./commands/ListBillingGroupCostReportsCommand");
|
|
23
|
-
const ListBillingGroupsCommand_1 = require("./commands/ListBillingGroupsCommand");
|
|
24
|
-
const ListCustomLineItemsCommand_1 = require("./commands/ListCustomLineItemsCommand");
|
|
25
|
-
const ListCustomLineItemVersionsCommand_1 = require("./commands/ListCustomLineItemVersionsCommand");
|
|
26
|
-
const ListPricingPlansAssociatedWithPricingRuleCommand_1 = require("./commands/ListPricingPlansAssociatedWithPricingRuleCommand");
|
|
27
|
-
const ListPricingPlansCommand_1 = require("./commands/ListPricingPlansCommand");
|
|
28
|
-
const ListPricingRulesAssociatedToPricingPlanCommand_1 = require("./commands/ListPricingRulesAssociatedToPricingPlanCommand");
|
|
29
|
-
const ListPricingRulesCommand_1 = require("./commands/ListPricingRulesCommand");
|
|
30
|
-
const ListResourcesAssociatedToCustomLineItemCommand_1 = require("./commands/ListResourcesAssociatedToCustomLineItemCommand");
|
|
31
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
32
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
33
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
34
|
-
const UpdateBillingGroupCommand_1 = require("./commands/UpdateBillingGroupCommand");
|
|
35
|
-
const UpdateCustomLineItemCommand_1 = require("./commands/UpdateCustomLineItemCommand");
|
|
36
|
-
const UpdatePricingPlanCommand_1 = require("./commands/UpdatePricingPlanCommand");
|
|
37
|
-
const UpdatePricingRuleCommand_1 = require("./commands/UpdatePricingRuleCommand");
|
|
38
|
-
const commands = {
|
|
39
|
-
AssociateAccountsCommand: AssociateAccountsCommand_1.AssociateAccountsCommand,
|
|
40
|
-
AssociatePricingRulesCommand: AssociatePricingRulesCommand_1.AssociatePricingRulesCommand,
|
|
41
|
-
BatchAssociateResourcesToCustomLineItemCommand: BatchAssociateResourcesToCustomLineItemCommand_1.BatchAssociateResourcesToCustomLineItemCommand,
|
|
42
|
-
BatchDisassociateResourcesFromCustomLineItemCommand: BatchDisassociateResourcesFromCustomLineItemCommand_1.BatchDisassociateResourcesFromCustomLineItemCommand,
|
|
43
|
-
CreateBillingGroupCommand: CreateBillingGroupCommand_1.CreateBillingGroupCommand,
|
|
44
|
-
CreateCustomLineItemCommand: CreateCustomLineItemCommand_1.CreateCustomLineItemCommand,
|
|
45
|
-
CreatePricingPlanCommand: CreatePricingPlanCommand_1.CreatePricingPlanCommand,
|
|
46
|
-
CreatePricingRuleCommand: CreatePricingRuleCommand_1.CreatePricingRuleCommand,
|
|
47
|
-
DeleteBillingGroupCommand: DeleteBillingGroupCommand_1.DeleteBillingGroupCommand,
|
|
48
|
-
DeleteCustomLineItemCommand: DeleteCustomLineItemCommand_1.DeleteCustomLineItemCommand,
|
|
49
|
-
DeletePricingPlanCommand: DeletePricingPlanCommand_1.DeletePricingPlanCommand,
|
|
50
|
-
DeletePricingRuleCommand: DeletePricingRuleCommand_1.DeletePricingRuleCommand,
|
|
51
|
-
DisassociateAccountsCommand: DisassociateAccountsCommand_1.DisassociateAccountsCommand,
|
|
52
|
-
DisassociatePricingRulesCommand: DisassociatePricingRulesCommand_1.DisassociatePricingRulesCommand,
|
|
53
|
-
GetBillingGroupCostReportCommand: GetBillingGroupCostReportCommand_1.GetBillingGroupCostReportCommand,
|
|
54
|
-
ListAccountAssociationsCommand: ListAccountAssociationsCommand_1.ListAccountAssociationsCommand,
|
|
55
|
-
ListBillingGroupCostReportsCommand: ListBillingGroupCostReportsCommand_1.ListBillingGroupCostReportsCommand,
|
|
56
|
-
ListBillingGroupsCommand: ListBillingGroupsCommand_1.ListBillingGroupsCommand,
|
|
57
|
-
ListCustomLineItemsCommand: ListCustomLineItemsCommand_1.ListCustomLineItemsCommand,
|
|
58
|
-
ListCustomLineItemVersionsCommand: ListCustomLineItemVersionsCommand_1.ListCustomLineItemVersionsCommand,
|
|
59
|
-
ListPricingPlansCommand: ListPricingPlansCommand_1.ListPricingPlansCommand,
|
|
60
|
-
ListPricingPlansAssociatedWithPricingRuleCommand: ListPricingPlansAssociatedWithPricingRuleCommand_1.ListPricingPlansAssociatedWithPricingRuleCommand,
|
|
61
|
-
ListPricingRulesCommand: ListPricingRulesCommand_1.ListPricingRulesCommand,
|
|
62
|
-
ListPricingRulesAssociatedToPricingPlanCommand: ListPricingRulesAssociatedToPricingPlanCommand_1.ListPricingRulesAssociatedToPricingPlanCommand,
|
|
63
|
-
ListResourcesAssociatedToCustomLineItemCommand: ListResourcesAssociatedToCustomLineItemCommand_1.ListResourcesAssociatedToCustomLineItemCommand,
|
|
64
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
65
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
66
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
67
|
-
UpdateBillingGroupCommand: UpdateBillingGroupCommand_1.UpdateBillingGroupCommand,
|
|
68
|
-
UpdateCustomLineItemCommand: UpdateCustomLineItemCommand_1.UpdateCustomLineItemCommand,
|
|
69
|
-
UpdatePricingPlanCommand: UpdatePricingPlanCommand_1.UpdatePricingPlanCommand,
|
|
70
|
-
UpdatePricingRuleCommand: UpdatePricingRuleCommand_1.UpdatePricingRuleCommand,
|
|
71
|
-
};
|
|
72
|
-
class Billingconductor extends BillingconductorClient_1.BillingconductorClient {
|
|
73
|
-
}
|
|
74
|
-
exports.Billingconductor = Billingconductor;
|
|
75
|
-
(0, smithy_client_1.createAggregatedClient)(commands, Billingconductor);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BillingconductorClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class BillingconductorClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.BillingconductorClient = BillingconductorClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AssociateAccountsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class AssociateAccountsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "AssociateAccounts", {})
|
|
22
|
-
.n("BillingconductorClient", "AssociateAccountsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_AssociateAccountsCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_AssociateAccountsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.AssociateAccountsCommand = AssociateAccountsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AssociatePricingRulesCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class AssociatePricingRulesCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "AssociatePricingRules", {})
|
|
22
|
-
.n("BillingconductorClient", "AssociatePricingRulesCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_AssociatePricingRulesCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_AssociatePricingRulesCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.AssociatePricingRulesCommand = AssociatePricingRulesCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchAssociateResourcesToCustomLineItemCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class BatchAssociateResourcesToCustomLineItemCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "BatchAssociateResourcesToCustomLineItem", {})
|
|
22
|
-
.n("BillingconductorClient", "BatchAssociateResourcesToCustomLineItemCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_BatchAssociateResourcesToCustomLineItemCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_BatchAssociateResourcesToCustomLineItemCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchAssociateResourcesToCustomLineItemCommand = BatchAssociateResourcesToCustomLineItemCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchDisassociateResourcesFromCustomLineItemCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class BatchDisassociateResourcesFromCustomLineItemCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "BatchDisassociateResourcesFromCustomLineItem", {})
|
|
22
|
-
.n("BillingconductorClient", "BatchDisassociateResourcesFromCustomLineItemCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_BatchDisassociateResourcesFromCustomLineItemCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_BatchDisassociateResourcesFromCustomLineItemCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.BatchDisassociateResourcesFromCustomLineItemCommand = BatchDisassociateResourcesFromCustomLineItemCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBillingGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class CreateBillingGroupCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AWSBillingConductor", "CreateBillingGroup", {})
|
|
23
|
-
.n("BillingconductorClient", "CreateBillingGroupCommand")
|
|
24
|
-
.f(models_0_1.CreateBillingGroupInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateBillingGroupCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateBillingGroupCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateBillingGroupCommand = CreateBillingGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCustomLineItemCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class CreateCustomLineItemCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AWSBillingConductor", "CreateCustomLineItem", {})
|
|
23
|
-
.n("BillingconductorClient", "CreateCustomLineItemCommand")
|
|
24
|
-
.f(models_0_1.CreateCustomLineItemInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateCustomLineItemCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateCustomLineItemCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateCustomLineItemCommand = CreateCustomLineItemCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreatePricingPlanCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class CreatePricingPlanCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AWSBillingConductor", "CreatePricingPlan", {})
|
|
23
|
-
.n("BillingconductorClient", "CreatePricingPlanCommand")
|
|
24
|
-
.f(models_0_1.CreatePricingPlanInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreatePricingPlanCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreatePricingPlanCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreatePricingPlanCommand = CreatePricingPlanCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreatePricingRuleCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class CreatePricingRuleCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AWSBillingConductor", "CreatePricingRule", {})
|
|
23
|
-
.n("BillingconductorClient", "CreatePricingRuleCommand")
|
|
24
|
-
.f(models_0_1.CreatePricingRuleInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreatePricingRuleCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreatePricingRuleCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreatePricingRuleCommand = CreatePricingRuleCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBillingGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteBillingGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DeleteBillingGroup", {})
|
|
22
|
-
.n("BillingconductorClient", "DeleteBillingGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteBillingGroupCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteBillingGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBillingGroupCommand = DeleteBillingGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCustomLineItemCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteCustomLineItemCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DeleteCustomLineItem", {})
|
|
22
|
-
.n("BillingconductorClient", "DeleteCustomLineItemCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteCustomLineItemCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteCustomLineItemCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCustomLineItemCommand = DeleteCustomLineItemCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeletePricingPlanCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeletePricingPlanCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DeletePricingPlan", {})
|
|
22
|
-
.n("BillingconductorClient", "DeletePricingPlanCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeletePricingPlanCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeletePricingPlanCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeletePricingPlanCommand = DeletePricingPlanCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeletePricingRuleCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeletePricingRuleCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DeletePricingRule", {})
|
|
22
|
-
.n("BillingconductorClient", "DeletePricingRuleCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeletePricingRuleCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeletePricingRuleCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeletePricingRuleCommand = DeletePricingRuleCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DisassociateAccountsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DisassociateAccountsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DisassociateAccounts", {})
|
|
22
|
-
.n("BillingconductorClient", "DisassociateAccountsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DisassociateAccountsCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DisassociateAccountsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DisassociateAccountsCommand = DisassociateAccountsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DisassociatePricingRulesCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DisassociatePricingRulesCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "DisassociatePricingRules", {})
|
|
22
|
-
.n("BillingconductorClient", "DisassociatePricingRulesCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DisassociatePricingRulesCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DisassociatePricingRulesCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DisassociatePricingRulesCommand = DisassociatePricingRulesCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetBillingGroupCostReportCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetBillingGroupCostReportCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSBillingConductor", "GetBillingGroupCostReport", {})
|
|
22
|
-
.n("BillingconductorClient", "GetBillingGroupCostReportCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetBillingGroupCostReportCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetBillingGroupCostReportCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetBillingGroupCostReportCommand = GetBillingGroupCostReportCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListAccountAssociationsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
|
-
class ListAccountAssociationsCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AWSBillingConductor", "ListAccountAssociations", {})
|
|
23
|
-
.n("BillingconductorClient", "ListAccountAssociationsCommand")
|
|
24
|
-
.f(void 0, models_0_1.ListAccountAssociationsOutputFilterSensitiveLog)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListAccountAssociationsCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListAccountAssociationsCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListAccountAssociationsCommand = ListAccountAssociationsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|