@aws-sdk/client-billingconductor 3.949.0 → 3.953.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 +487 -348
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateAccountsCommand.js +2 -2
- package/dist-es/commands/AssociatePricingRulesCommand.js +2 -2
- package/dist-es/commands/BatchAssociateResourcesToCustomLineItemCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateResourcesFromCustomLineItemCommand.js +2 -2
- package/dist-es/commands/CreateBillingGroupCommand.js +2 -2
- package/dist-es/commands/CreateCustomLineItemCommand.js +2 -2
- package/dist-es/commands/CreatePricingPlanCommand.js +2 -2
- package/dist-es/commands/CreatePricingRuleCommand.js +2 -2
- package/dist-es/commands/DeleteBillingGroupCommand.js +2 -2
- package/dist-es/commands/DeleteCustomLineItemCommand.js +2 -2
- package/dist-es/commands/DeletePricingPlanCommand.js +2 -2
- package/dist-es/commands/DeletePricingRuleCommand.js +2 -2
- package/dist-es/commands/DisassociateAccountsCommand.js +2 -2
- package/dist-es/commands/DisassociatePricingRulesCommand.js +2 -2
- package/dist-es/commands/GetBillingGroupCostReportCommand.js +2 -2
- package/dist-es/commands/ListAccountAssociationsCommand.js +2 -2
- package/dist-es/commands/ListBillingGroupCostReportsCommand.js +2 -2
- package/dist-es/commands/ListBillingGroupsCommand.js +2 -2
- package/dist-es/commands/ListCustomLineItemVersionsCommand.js +2 -2
- package/dist-es/commands/ListCustomLineItemsCommand.js +2 -2
- package/dist-es/commands/ListPricingPlansAssociatedWithPricingRuleCommand.js +2 -2
- package/dist-es/commands/ListPricingPlansCommand.js +2 -2
- package/dist-es/commands/ListPricingRulesAssociatedToPricingPlanCommand.js +2 -2
- package/dist-es/commands/ListPricingRulesCommand.js +2 -2
- package/dist-es/commands/ListResourcesAssociatedToCustomLineItemCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateBillingGroupCommand.js +2 -2
- package/dist-es/commands/UpdateCustomLineItemCommand.js +2 -2
- package/dist-es/commands/UpdatePricingPlanCommand.js +2 -2
- package/dist-es/commands/UpdatePricingRuleCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +317 -329
- package/dist-types/BillingconductorClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +152 -198
- package/dist-types/ts3.4/BillingconductorClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +151 -199
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.billingconductor",
|
|
32
|
+
version: "2021-07-30",
|
|
33
|
+
serviceTarget: "AWSBillingConductor",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "billingconductor",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "AssociateAccounts", {})
|
|
13
13
|
.n("BillingconductorClient", "AssociateAccountsCommand")
|
|
14
|
-
.sc(AssociateAccounts)
|
|
14
|
+
.sc(AssociateAccounts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociatePricingRules } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociatePricingRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociatePricingRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociatePricingRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "AssociatePricingRules", {})
|
|
13
13
|
.n("BillingconductorClient", "AssociatePricingRulesCommand")
|
|
14
|
-
.sc(AssociatePricingRules)
|
|
14
|
+
.sc(AssociatePricingRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchAssociateResourcesToCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchAssociateResourcesToCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchAssociateResourcesToCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchAssociateResourcesToCustomLineItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "BatchAssociateResourcesToCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "BatchAssociateResourcesToCustomLineItemCommand")
|
|
14
|
-
.sc(BatchAssociateResourcesToCustomLineItem)
|
|
14
|
+
.sc(BatchAssociateResourcesToCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchDisassociateResourcesFromCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchDisassociateResourcesFromCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchDisassociateResourcesFromCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchDisassociateResourcesFromCustomLineItemCommand extends $Comman
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "BatchDisassociateResourcesFromCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "BatchDisassociateResourcesFromCustomLineItemCommand")
|
|
14
|
-
.sc(BatchDisassociateResourcesFromCustomLineItem)
|
|
14
|
+
.sc(BatchDisassociateResourcesFromCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBillingGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBillingGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBillingGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBillingGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "CreateBillingGroup", {})
|
|
13
13
|
.n("BillingconductorClient", "CreateBillingGroupCommand")
|
|
14
|
-
.sc(CreateBillingGroup)
|
|
14
|
+
.sc(CreateBillingGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCustomLineItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "CreateCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "CreateCustomLineItemCommand")
|
|
14
|
-
.sc(CreateCustomLineItem)
|
|
14
|
+
.sc(CreateCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePricingPlan } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePricingPlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePricingPlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePricingPlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "CreatePricingPlan", {})
|
|
13
13
|
.n("BillingconductorClient", "CreatePricingPlanCommand")
|
|
14
|
-
.sc(CreatePricingPlan)
|
|
14
|
+
.sc(CreatePricingPlan$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePricingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePricingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePricingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePricingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "CreatePricingRule", {})
|
|
13
13
|
.n("BillingconductorClient", "CreatePricingRuleCommand")
|
|
14
|
-
.sc(CreatePricingRule)
|
|
14
|
+
.sc(CreatePricingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBillingGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBillingGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBillingGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBillingGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DeleteBillingGroup", {})
|
|
13
13
|
.n("BillingconductorClient", "DeleteBillingGroupCommand")
|
|
14
|
-
.sc(DeleteBillingGroup)
|
|
14
|
+
.sc(DeleteBillingGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCustomLineItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DeleteCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "DeleteCustomLineItemCommand")
|
|
14
|
-
.sc(DeleteCustomLineItem)
|
|
14
|
+
.sc(DeleteCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePricingPlan } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePricingPlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePricingPlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePricingPlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DeletePricingPlan", {})
|
|
13
13
|
.n("BillingconductorClient", "DeletePricingPlanCommand")
|
|
14
|
-
.sc(DeletePricingPlan)
|
|
14
|
+
.sc(DeletePricingPlan$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePricingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePricingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePricingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePricingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DeletePricingRule", {})
|
|
13
13
|
.n("BillingconductorClient", "DeletePricingRuleCommand")
|
|
14
|
-
.sc(DeletePricingRule)
|
|
14
|
+
.sc(DeletePricingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DisassociateAccounts", {})
|
|
13
13
|
.n("BillingconductorClient", "DisassociateAccountsCommand")
|
|
14
|
-
.sc(DisassociateAccounts)
|
|
14
|
+
.sc(DisassociateAccounts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociatePricingRules } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociatePricingRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociatePricingRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociatePricingRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "DisassociatePricingRules", {})
|
|
13
13
|
.n("BillingconductorClient", "DisassociatePricingRulesCommand")
|
|
14
|
-
.sc(DisassociatePricingRules)
|
|
14
|
+
.sc(DisassociatePricingRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBillingGroupCostReport } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBillingGroupCostReport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBillingGroupCostReportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBillingGroupCostReportCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "GetBillingGroupCostReport", {})
|
|
13
13
|
.n("BillingconductorClient", "GetBillingGroupCostReportCommand")
|
|
14
|
-
.sc(GetBillingGroupCostReport)
|
|
14
|
+
.sc(GetBillingGroupCostReport$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAccountAssociations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAccountAssociations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAccountAssociationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAccountAssociationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListAccountAssociations", {})
|
|
13
13
|
.n("BillingconductorClient", "ListAccountAssociationsCommand")
|
|
14
|
-
.sc(ListAccountAssociations)
|
|
14
|
+
.sc(ListAccountAssociations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBillingGroupCostReports } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBillingGroupCostReports$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBillingGroupCostReportsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBillingGroupCostReportsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListBillingGroupCostReports", {})
|
|
13
13
|
.n("BillingconductorClient", "ListBillingGroupCostReportsCommand")
|
|
14
|
-
.sc(ListBillingGroupCostReports)
|
|
14
|
+
.sc(ListBillingGroupCostReports$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBillingGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBillingGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBillingGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBillingGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListBillingGroups", {})
|
|
13
13
|
.n("BillingconductorClient", "ListBillingGroupsCommand")
|
|
14
|
-
.sc(ListBillingGroups)
|
|
14
|
+
.sc(ListBillingGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCustomLineItemVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCustomLineItemVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCustomLineItemVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCustomLineItemVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListCustomLineItemVersions", {})
|
|
13
13
|
.n("BillingconductorClient", "ListCustomLineItemVersionsCommand")
|
|
14
|
-
.sc(ListCustomLineItemVersions)
|
|
14
|
+
.sc(ListCustomLineItemVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCustomLineItems } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCustomLineItems$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCustomLineItemsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCustomLineItemsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListCustomLineItems", {})
|
|
13
13
|
.n("BillingconductorClient", "ListCustomLineItemsCommand")
|
|
14
|
-
.sc(ListCustomLineItems)
|
|
14
|
+
.sc(ListCustomLineItems$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPricingPlansAssociatedWithPricingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPricingPlansAssociatedWithPricingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListPricingPlansAssociatedWithPricingRule", {})
|
|
13
13
|
.n("BillingconductorClient", "ListPricingPlansAssociatedWithPricingRuleCommand")
|
|
14
|
-
.sc(ListPricingPlansAssociatedWithPricingRule)
|
|
14
|
+
.sc(ListPricingPlansAssociatedWithPricingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPricingPlans } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPricingPlans$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPricingPlansCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPricingPlansCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListPricingPlans", {})
|
|
13
13
|
.n("BillingconductorClient", "ListPricingPlansCommand")
|
|
14
|
-
.sc(ListPricingPlans)
|
|
14
|
+
.sc(ListPricingPlans$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPricingRulesAssociatedToPricingPlan } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPricingRulesAssociatedToPricingPlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPricingRulesAssociatedToPricingPlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPricingRulesAssociatedToPricingPlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListPricingRulesAssociatedToPricingPlan", {})
|
|
13
13
|
.n("BillingconductorClient", "ListPricingRulesAssociatedToPricingPlanCommand")
|
|
14
|
-
.sc(ListPricingRulesAssociatedToPricingPlan)
|
|
14
|
+
.sc(ListPricingRulesAssociatedToPricingPlan$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPricingRules } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPricingRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPricingRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPricingRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListPricingRules", {})
|
|
13
13
|
.n("BillingconductorClient", "ListPricingRulesCommand")
|
|
14
|
-
.sc(ListPricingRules)
|
|
14
|
+
.sc(ListPricingRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourcesAssociatedToCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourcesAssociatedToCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourcesAssociatedToCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourcesAssociatedToCustomLineItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListResourcesAssociatedToCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "ListResourcesAssociatedToCustomLineItemCommand")
|
|
14
|
-
.sc(ListResourcesAssociatedToCustomLineItem)
|
|
14
|
+
.sc(ListResourcesAssociatedToCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "ListTagsForResource", {})
|
|
13
13
|
.n("BillingconductorClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "TagResource", {})
|
|
13
13
|
.n("BillingconductorClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "UntagResource", {})
|
|
13
13
|
.n("BillingconductorClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateBillingGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateBillingGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateBillingGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateBillingGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "UpdateBillingGroup", {})
|
|
13
13
|
.n("BillingconductorClient", "UpdateBillingGroupCommand")
|
|
14
|
-
.sc(UpdateBillingGroup)
|
|
14
|
+
.sc(UpdateBillingGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCustomLineItem } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCustomLineItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCustomLineItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCustomLineItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "UpdateCustomLineItem", {})
|
|
13
13
|
.n("BillingconductorClient", "UpdateCustomLineItemCommand")
|
|
14
|
-
.sc(UpdateCustomLineItem)
|
|
14
|
+
.sc(UpdateCustomLineItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePricingPlan } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePricingPlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePricingPlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePricingPlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "UpdatePricingPlan", {})
|
|
13
13
|
.n("BillingconductorClient", "UpdatePricingPlanCommand")
|
|
14
|
-
.sc(UpdatePricingPlan)
|
|
14
|
+
.sc(UpdatePricingPlan$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePricingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePricingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePricingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePricingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBillingConductor", "UpdatePricingRule", {})
|
|
13
13
|
.n("BillingconductorClient", "UpdatePricingRuleCommand")
|
|
14
|
-
.sc(UpdatePricingRule)
|
|
14
|
+
.sc(UpdatePricingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.billingconductor",
|
|
29
|
+
version: "2021-07-30",
|
|
30
|
+
serviceTarget: "AWSBillingConductor",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "billingconductor",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|