@aws-sdk/client-billingconductor 3.300.0 → 3.301.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-types/commands/AssociateAccountsCommand.d.ts +2 -2
- package/dist-types/commands/AssociatePricingRulesCommand.d.ts +2 -2
- package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +3 -3
- package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +3 -3
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +5 -5
- package/dist-types/commands/CreateCustomLineItemCommand.d.ts +7 -7
- package/dist-types/commands/CreatePricingPlanCommand.d.ts +3 -3
- package/dist-types/commands/CreatePricingRuleCommand.d.ts +4 -4
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +2 -2
- package/dist-types/commands/DeletePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAccountsCommand.d.ts +2 -2
- package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +2 -2
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +3 -3
- package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +3 -3
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +4 -4
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +3 -3
- package/dist-types/commands/ListCustomLineItemsCommand.d.ts +5 -5
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingPlansCommand.d.ts +3 -3
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesCommand.d.ts +3 -3
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +5 -5
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePricingRuleCommand.d.ts +3 -3
- package/package.json +3 -3
|
@@ -29,9 +29,9 @@ export interface AssociateAccountsCommandOutput extends AssociateAccountsOutput,
|
|
|
29
29
|
* import { BillingconductorClient, AssociateAccountsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
30
30
|
* // const { BillingconductorClient, AssociateAccountsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
31
31
|
* const client = new BillingconductorClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // AssociateAccountsInput
|
|
33
33
|
* Arn: "STRING_VALUE", // required
|
|
34
|
-
* AccountIds: [ // required
|
|
34
|
+
* AccountIds: [ // AccountIdList // required
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* };
|
|
@@ -27,9 +27,9 @@ export interface AssociatePricingRulesCommandOutput extends AssociatePricingRule
|
|
|
27
27
|
* import { BillingconductorClient, AssociatePricingRulesCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, AssociatePricingRulesCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // AssociatePricingRulesInput
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
|
-
* PricingRuleArns: [ // required
|
|
32
|
+
* PricingRuleArns: [ // PricingRuleArnsNonEmptyInput // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -28,12 +28,12 @@ export interface BatchAssociateResourcesToCustomLineItemCommandOutput extends Ba
|
|
|
28
28
|
* import { BillingconductorClient, BatchAssociateResourcesToCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, BatchAssociateResourcesToCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // BatchAssociateResourcesToCustomLineItemInput
|
|
32
32
|
* TargetArn: "STRING_VALUE", // required
|
|
33
|
-
* ResourceArns: [ // required
|
|
33
|
+
* ResourceArns: [ // CustomLineItemBatchAssociationsList // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* BillingPeriodRange: {
|
|
36
|
+
* BillingPeriodRange: { // CustomLineItemBillingPeriodRange
|
|
37
37
|
* InclusiveStartBillingPeriod: "STRING_VALUE", // required
|
|
38
38
|
* ExclusiveEndBillingPeriod: "STRING_VALUE",
|
|
39
39
|
* },
|
|
@@ -28,12 +28,12 @@ export interface BatchDisassociateResourcesFromCustomLineItemCommandOutput exten
|
|
|
28
28
|
* import { BillingconductorClient, BatchDisassociateResourcesFromCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, BatchDisassociateResourcesFromCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // BatchDisassociateResourcesFromCustomLineItemInput
|
|
32
32
|
* TargetArn: "STRING_VALUE", // required
|
|
33
|
-
* ResourceArns: [ // required
|
|
33
|
+
* ResourceArns: [ // CustomLineItemBatchDisassociationsList // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* BillingPeriodRange: {
|
|
36
|
+
* BillingPeriodRange: { // CustomLineItemBillingPeriodRange
|
|
37
37
|
* InclusiveStartBillingPeriod: "STRING_VALUE", // required
|
|
38
38
|
* ExclusiveEndBillingPeriod: "STRING_VALUE",
|
|
39
39
|
* },
|
|
@@ -28,20 +28,20 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupOutpu
|
|
|
28
28
|
* import { BillingconductorClient, CreateBillingGroupCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, CreateBillingGroupCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateBillingGroupInput
|
|
32
32
|
* ClientToken: "STRING_VALUE",
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
|
-
* AccountGrouping: {
|
|
35
|
-
* LinkedAccountIds: [ // required
|
|
34
|
+
* AccountGrouping: { // AccountGrouping
|
|
35
|
+
* LinkedAccountIds: [ // AccountIdList // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
39
|
-
* ComputationPreference: {
|
|
39
|
+
* ComputationPreference: { // ComputationPreference
|
|
40
40
|
* PricingPlanArn: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
42
42
|
* PrimaryAccountId: "STRING_VALUE",
|
|
43
43
|
* Description: "STRING_VALUE",
|
|
44
|
-
* Tags: {
|
|
44
|
+
* Tags: { // TagMap
|
|
45
45
|
* "<keys>": "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* };
|
|
@@ -28,25 +28,25 @@ export interface CreateCustomLineItemCommandOutput extends CreateCustomLineItemO
|
|
|
28
28
|
* import { BillingconductorClient, CreateCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, CreateCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateCustomLineItemInput
|
|
32
32
|
* ClientToken: "STRING_VALUE",
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE", // required
|
|
35
35
|
* BillingGroupArn: "STRING_VALUE", // required
|
|
36
|
-
* BillingPeriodRange: {
|
|
36
|
+
* BillingPeriodRange: { // CustomLineItemBillingPeriodRange
|
|
37
37
|
* InclusiveStartBillingPeriod: "STRING_VALUE", // required
|
|
38
38
|
* ExclusiveEndBillingPeriod: "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
|
-
* Tags: {
|
|
40
|
+
* Tags: { // TagMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
|
-
* ChargeDetails: {
|
|
44
|
-
* Flat: {
|
|
43
|
+
* ChargeDetails: { // CustomLineItemChargeDetails
|
|
44
|
+
* Flat: { // CustomLineItemFlatChargeDetails
|
|
45
45
|
* ChargeValue: Number("double"), // required
|
|
46
46
|
* },
|
|
47
|
-
* Percentage: {
|
|
47
|
+
* Percentage: { // CustomLineItemPercentageChargeDetails
|
|
48
48
|
* PercentageValue: Number("double"), // required
|
|
49
|
-
* AssociatedValues: [
|
|
49
|
+
* AssociatedValues: [ // CustomLineItemAssociationsList
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
52
|
* },
|
|
@@ -27,14 +27,14 @@ export interface CreatePricingPlanCommandOutput extends CreatePricingPlanOutput,
|
|
|
27
27
|
* import { BillingconductorClient, CreatePricingPlanCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, CreatePricingPlanCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreatePricingPlanInput
|
|
31
31
|
* ClientToken: "STRING_VALUE",
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* PricingRuleArns: [
|
|
34
|
+
* PricingRuleArns: [ // PricingRuleArnsInput
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* Tags: {
|
|
37
|
+
* Tags: { // TagMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* };
|
|
@@ -28,7 +28,7 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput,
|
|
|
28
28
|
* import { BillingconductorClient, CreatePricingRuleCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, CreatePricingRuleCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreatePricingRuleInput
|
|
32
32
|
* ClientToken: "STRING_VALUE",
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
@@ -36,12 +36,12 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput,
|
|
|
36
36
|
* Type: "STRING_VALUE", // required
|
|
37
37
|
* ModifierPercentage: Number("double"),
|
|
38
38
|
* Service: "STRING_VALUE",
|
|
39
|
-
* Tags: {
|
|
39
|
+
* Tags: { // TagMap
|
|
40
40
|
* "<keys>": "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* BillingEntity: "STRING_VALUE",
|
|
43
|
-
* Tiering: {
|
|
44
|
-
* FreeTier: {
|
|
43
|
+
* Tiering: { // CreateTieringInput
|
|
44
|
+
* FreeTier: { // CreateFreeTierConfig
|
|
45
45
|
* Activated: true || false, // required
|
|
46
46
|
* },
|
|
47
47
|
* },
|
|
@@ -28,7 +28,7 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupOutpu
|
|
|
28
28
|
* import { BillingconductorClient, DeleteBillingGroupCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, DeleteBillingGroupCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteBillingGroupInput
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteBillingGroupCommand(input);
|
|
@@ -28,9 +28,9 @@ export interface DeleteCustomLineItemCommandOutput extends DeleteCustomLineItemO
|
|
|
28
28
|
* import { BillingconductorClient, DeleteCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, DeleteCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteCustomLineItemInput
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
|
-
* BillingPeriodRange: {
|
|
33
|
+
* BillingPeriodRange: { // CustomLineItemBillingPeriodRange
|
|
34
34
|
* InclusiveStartBillingPeriod: "STRING_VALUE", // required
|
|
35
35
|
* ExclusiveEndBillingPeriod: "STRING_VALUE",
|
|
36
36
|
* },
|
|
@@ -27,7 +27,7 @@ export interface DeletePricingPlanCommandOutput extends DeletePricingPlanOutput,
|
|
|
27
27
|
* import { BillingconductorClient, DeletePricingPlanCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, DeletePricingPlanCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeletePricingPlanInput
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeletePricingPlanCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeletePricingRuleCommandOutput extends DeletePricingRuleOutput,
|
|
|
26
26
|
* import { BillingconductorClient, DeletePricingRuleCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
27
27
|
* // const { BillingconductorClient, DeletePricingRuleCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
28
28
|
* const client = new BillingconductorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeletePricingRuleInput
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePricingRuleCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface DisassociateAccountsCommandOutput extends DisassociateAccountsO
|
|
|
26
26
|
* import { BillingconductorClient, DisassociateAccountsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
27
27
|
* // const { BillingconductorClient, DisassociateAccountsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
28
28
|
* const client = new BillingconductorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateAccountsInput
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
|
-
* AccountIds: [ // required
|
|
31
|
+
* AccountIds: [ // AccountIdList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -28,9 +28,9 @@ export interface DisassociatePricingRulesCommandOutput extends DisassociatePrici
|
|
|
28
28
|
* import { BillingconductorClient, DisassociatePricingRulesCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, DisassociatePricingRulesCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DisassociatePricingRulesInput
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
|
-
* PricingRuleArns: [ // required
|
|
33
|
+
* PricingRuleArns: [ // PricingRuleArnsNonEmptyInput // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -29,12 +29,12 @@ export interface ListAccountAssociationsCommandOutput extends ListAccountAssocia
|
|
|
29
29
|
* import { BillingconductorClient, ListAccountAssociationsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
30
30
|
* // const { BillingconductorClient, ListAccountAssociationsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
31
31
|
* const client = new BillingconductorClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListAccountAssociationsInput
|
|
33
33
|
* BillingPeriod: "STRING_VALUE",
|
|
34
|
-
* Filters: {
|
|
34
|
+
* Filters: { // ListAccountAssociationsFilter
|
|
35
35
|
* Association: "STRING_VALUE",
|
|
36
36
|
* AccountId: "STRING_VALUE",
|
|
37
|
-
* AccountIds: [
|
|
37
|
+
* AccountIds: [ // AccountIdFilterList
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
@@ -27,12 +27,12 @@ export interface ListBillingGroupCostReportsCommandOutput extends ListBillingGro
|
|
|
27
27
|
* import { BillingconductorClient, ListBillingGroupCostReportsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, ListBillingGroupCostReportsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListBillingGroupCostReportsInput
|
|
31
31
|
* BillingPeriod: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
|
-
* Filters: {
|
|
35
|
-
* BillingGroupArns: [
|
|
34
|
+
* Filters: { // ListBillingGroupCostReportsFilter
|
|
35
|
+
* BillingGroupArns: [ // BillingGroupArnList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
@@ -26,16 +26,16 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsOutput,
|
|
|
26
26
|
* import { BillingconductorClient, ListBillingGroupsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
27
27
|
* // const { BillingconductorClient, ListBillingGroupsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
28
28
|
* const client = new BillingconductorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListBillingGroupsInput
|
|
30
30
|
* BillingPeriod: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
|
-
* Filters: {
|
|
34
|
-
* Arns: [
|
|
33
|
+
* Filters: { // ListBillingGroupsFilter
|
|
34
|
+
* Arns: [ // BillingGroupArnList
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* PricingPlan: "STRING_VALUE",
|
|
38
|
-
* Statuses: [
|
|
38
|
+
* Statuses: [ // BillingGroupStatusList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
@@ -26,12 +26,12 @@ export interface ListCustomLineItemVersionsCommandOutput extends ListCustomLineI
|
|
|
26
26
|
* import { BillingconductorClient, ListCustomLineItemVersionsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
27
27
|
* // const { BillingconductorClient, ListCustomLineItemVersionsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
28
28
|
* const client = new BillingconductorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCustomLineItemVersionsInput
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
|
-
* Filters: {
|
|
34
|
-
* BillingPeriodRange: {
|
|
33
|
+
* Filters: { // ListCustomLineItemVersionsFilter
|
|
34
|
+
* BillingPeriodRange: { // ListCustomLineItemVersionsBillingPeriodRangeFilter
|
|
35
35
|
* StartBillingPeriod: "STRING_VALUE",
|
|
36
36
|
* EndBillingPeriod: "STRING_VALUE",
|
|
37
37
|
* },
|
|
@@ -28,18 +28,18 @@ export interface ListCustomLineItemsCommandOutput extends ListCustomLineItemsOut
|
|
|
28
28
|
* import { BillingconductorClient, ListCustomLineItemsCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListCustomLineItemsCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListCustomLineItemsInput
|
|
32
32
|
* BillingPeriod: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
|
-
* Filters: {
|
|
36
|
-
* Names: [
|
|
35
|
+
* Filters: { // ListCustomLineItemsFilter
|
|
36
|
+
* Names: [ // CustomLineItemNameList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* BillingGroups: [
|
|
39
|
+
* BillingGroups: [ // BillingGroupArnList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* Arns: [
|
|
42
|
+
* Arns: [ // CustomLineItemArns
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput extends
|
|
|
28
28
|
* import { BillingconductorClient, ListPricingPlansAssociatedWithPricingRuleCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListPricingPlansAssociatedWithPricingRuleCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListPricingPlansAssociatedWithPricingRuleInput
|
|
32
32
|
* BillingPeriod: "STRING_VALUE",
|
|
33
33
|
* PricingRuleArn: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -27,10 +27,10 @@ export interface ListPricingPlansCommandOutput extends ListPricingPlansOutput, _
|
|
|
27
27
|
* import { BillingconductorClient, ListPricingPlansCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, ListPricingPlansCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListPricingPlansInput
|
|
31
31
|
* BillingPeriod: "STRING_VALUE",
|
|
32
|
-
* Filters: {
|
|
33
|
-
* Arns: [
|
|
32
|
+
* Filters: { // ListPricingPlansFilter
|
|
33
|
+
* Arns: [ // PricingPlanArns
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListPricingRulesAssociatedToPricingPlanCommandOutput extends Li
|
|
|
28
28
|
* import { BillingconductorClient, ListPricingRulesAssociatedToPricingPlanCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListPricingRulesAssociatedToPricingPlanCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListPricingRulesAssociatedToPricingPlanInput
|
|
32
32
|
* BillingPeriod: "STRING_VALUE",
|
|
33
33
|
* PricingPlanArn: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -28,10 +28,10 @@ export interface ListPricingRulesCommandOutput extends ListPricingRulesOutput, _
|
|
|
28
28
|
* import { BillingconductorClient, ListPricingRulesCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListPricingRulesCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListPricingRulesInput
|
|
32
32
|
* BillingPeriod: "STRING_VALUE",
|
|
33
|
-
* Filters: {
|
|
34
|
-
* Arns: [
|
|
33
|
+
* Filters: { // ListPricingRulesFilter
|
|
34
|
+
* Arns: [ // PricingRuleArns
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* },
|
|
@@ -28,12 +28,12 @@ export interface ListResourcesAssociatedToCustomLineItemCommandOutput extends Li
|
|
|
28
28
|
* import { BillingconductorClient, ListResourcesAssociatedToCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListResourcesAssociatedToCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListResourcesAssociatedToCustomLineItemInput
|
|
32
32
|
* BillingPeriod: "STRING_VALUE",
|
|
33
33
|
* Arn: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
|
-
* Filters: {
|
|
36
|
+
* Filters: { // ListResourcesAssociatedToCustomLineItemFilter
|
|
37
37
|
* Relationship: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -28,7 +28,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
28
28
|
* import { BillingconductorClient, ListTagsForResourceCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListTagsForResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -28,9 +28,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { BillingconductorClient, TagResourceCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, TagResourceCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
-
* Tags: { // required
|
|
33
|
+
* Tags: { // TagMap // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -28,9 +28,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
28
|
* import { BillingconductorClient, UntagResourceCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, UntagResourceCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UntagResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
-
* TagKeys: [ // required
|
|
33
|
+
* TagKeys: [ // TagKeyList // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -27,11 +27,11 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupOutpu
|
|
|
27
27
|
* import { BillingconductorClient, UpdateBillingGroupCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, UpdateBillingGroupCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateBillingGroupInput
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Status: "STRING_VALUE",
|
|
34
|
-
* ComputationPreference: {
|
|
34
|
+
* ComputationPreference: { // ComputationPreference
|
|
35
35
|
* PricingPlanArn: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
37
37
|
* Description: "STRING_VALUE",
|
|
@@ -28,19 +28,19 @@ export interface UpdateCustomLineItemCommandOutput extends UpdateCustomLineItemO
|
|
|
28
28
|
* import { BillingconductorClient, UpdateCustomLineItemCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, UpdateCustomLineItemCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateCustomLineItemInput
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
33
|
* Name: "STRING_VALUE",
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* ChargeDetails: {
|
|
36
|
-
* Flat: {
|
|
35
|
+
* ChargeDetails: { // UpdateCustomLineItemChargeDetails
|
|
36
|
+
* Flat: { // UpdateCustomLineItemFlatChargeDetails
|
|
37
37
|
* ChargeValue: Number("double"), // required
|
|
38
38
|
* },
|
|
39
|
-
* Percentage: {
|
|
39
|
+
* Percentage: { // UpdateCustomLineItemPercentageChargeDetails
|
|
40
40
|
* PercentageValue: Number("double"), // required
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
|
-
* BillingPeriodRange: {
|
|
43
|
+
* BillingPeriodRange: { // CustomLineItemBillingPeriodRange
|
|
44
44
|
* InclusiveStartBillingPeriod: "STRING_VALUE", // required
|
|
45
45
|
* ExclusiveEndBillingPeriod: "STRING_VALUE",
|
|
46
46
|
* },
|
|
@@ -27,7 +27,7 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanOutput,
|
|
|
27
27
|
* import { BillingconductorClient, UpdatePricingPlanCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
28
28
|
* // const { BillingconductorClient, UpdatePricingPlanCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
29
29
|
* const client = new BillingconductorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdatePricingPlanInput
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
@@ -28,14 +28,14 @@ export interface UpdatePricingRuleCommandOutput extends UpdatePricingRuleOutput,
|
|
|
28
28
|
* import { BillingconductorClient, UpdatePricingRuleCommand } from "@aws-sdk/client-billingconductor"; // ES Modules import
|
|
29
29
|
* // const { BillingconductorClient, UpdatePricingRuleCommand } = require("@aws-sdk/client-billingconductor"); // CommonJS import
|
|
30
30
|
* const client = new BillingconductorClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdatePricingRuleInput
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
33
|
* Name: "STRING_VALUE",
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
35
|
* Type: "STRING_VALUE",
|
|
36
36
|
* ModifierPercentage: Number("double"),
|
|
37
|
-
* Tiering: {
|
|
38
|
-
* FreeTier: {
|
|
37
|
+
* Tiering: { // UpdateTieringInput
|
|
38
|
+
* FreeTier: { // UpdateFreeTierConfig
|
|
39
39
|
* Activated: true || false, // required
|
|
40
40
|
* },
|
|
41
41
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-billingconductor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|