@aws-sdk/client-billingconductor 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Billingconductor.d.ts +544 -155
- package/dist-types/ts3.4/BillingconductorClient.d.ts +285 -103
- package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/AssociatePricingRulesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateBillingGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreatePricingPlanCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreatePricingRuleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeletePricingPlanCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeletePricingRuleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociatePricingRulesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListBillingGroupCostReportsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListBillingGroupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListCustomLineItemsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPricingPlansCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPricingRulesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateBillingGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateCustomLineItemCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdatePricingRuleCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BillingconductorServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +855 -1074
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAccountAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListBillingGroupCostReportsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListBillingGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCustomLineItemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPricingPlansPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPricingRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourcesAssociatedToCustomLineItemPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +10 -10
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListBillingGroupCostReportsInput,
|
|
15
|
+
ListBillingGroupCostReportsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListBillingGroupCostReportsCommandInput
|
|
18
|
+
extends ListBillingGroupCostReportsInput {}
|
|
19
|
+
export interface ListBillingGroupCostReportsCommandOutput
|
|
20
|
+
extends ListBillingGroupCostReportsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListBillingGroupCostReportsCommand extends $Command<
|
|
23
|
+
ListBillingGroupCostReportsCommandInput,
|
|
24
|
+
ListBillingGroupCostReportsCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListBillingGroupCostReportsCommandInput;
|
|
28
|
+
constructor(input: ListBillingGroupCostReportsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListBillingGroupCostReportsCommandInput,
|
|
35
|
+
ListBillingGroupCostReportsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListBillingGroupsInput,
|
|
15
|
+
ListBillingGroupsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListBillingGroupsCommandInput extends ListBillingGroupsInput {}
|
|
18
|
+
export interface ListBillingGroupsCommandOutput
|
|
19
|
+
extends ListBillingGroupsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListBillingGroupsCommand extends $Command<
|
|
22
|
+
ListBillingGroupsCommandInput,
|
|
23
|
+
ListBillingGroupsCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListBillingGroupsCommandInput;
|
|
27
|
+
constructor(input: ListBillingGroupsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListBillingGroupsCommandInput, ListBillingGroupsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListCustomLineItemsInput,
|
|
15
|
+
ListCustomLineItemsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListCustomLineItemsCommandInput
|
|
18
|
+
extends ListCustomLineItemsInput {}
|
|
19
|
+
export interface ListCustomLineItemsCommandOutput
|
|
20
|
+
extends ListCustomLineItemsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListCustomLineItemsCommand extends $Command<
|
|
23
|
+
ListCustomLineItemsCommandInput,
|
|
24
|
+
ListCustomLineItemsCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCustomLineItemsCommandInput;
|
|
28
|
+
constructor(input: ListCustomLineItemsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListCustomLineItemsCommandInput, ListCustomLineItemsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPricingPlansAssociatedWithPricingRuleInput,
|
|
15
|
+
ListPricingPlansAssociatedWithPricingRuleOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPricingPlansAssociatedWithPricingRuleCommandInput
|
|
18
|
+
extends ListPricingPlansAssociatedWithPricingRuleInput {}
|
|
19
|
+
export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput
|
|
20
|
+
extends ListPricingPlansAssociatedWithPricingRuleOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command<
|
|
23
|
+
ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
24
|
+
ListPricingPlansAssociatedWithPricingRuleCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListPricingPlansAssociatedWithPricingRuleCommandInput;
|
|
28
|
+
constructor(input: ListPricingPlansAssociatedWithPricingRuleCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListPricingPlansAssociatedWithPricingRuleCommandInput,
|
|
35
|
+
ListPricingPlansAssociatedWithPricingRuleCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPricingPlansInput,
|
|
15
|
+
ListPricingPlansOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPricingPlansCommandInput extends ListPricingPlansInput {}
|
|
18
|
+
export interface ListPricingPlansCommandOutput
|
|
19
|
+
extends ListPricingPlansOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListPricingPlansCommand extends $Command<
|
|
22
|
+
ListPricingPlansCommandInput,
|
|
23
|
+
ListPricingPlansCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListPricingPlansCommandInput;
|
|
27
|
+
constructor(input: ListPricingPlansCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListPricingPlansCommandInput, ListPricingPlansCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPricingRulesAssociatedToPricingPlanInput,
|
|
15
|
+
ListPricingRulesAssociatedToPricingPlanOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPricingRulesAssociatedToPricingPlanCommandInput
|
|
18
|
+
extends ListPricingRulesAssociatedToPricingPlanInput {}
|
|
19
|
+
export interface ListPricingRulesAssociatedToPricingPlanCommandOutput
|
|
20
|
+
extends ListPricingRulesAssociatedToPricingPlanOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListPricingRulesAssociatedToPricingPlanCommand extends $Command<
|
|
23
|
+
ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
24
|
+
ListPricingRulesAssociatedToPricingPlanCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListPricingRulesAssociatedToPricingPlanCommandInput;
|
|
28
|
+
constructor(input: ListPricingRulesAssociatedToPricingPlanCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListPricingRulesAssociatedToPricingPlanCommandInput,
|
|
35
|
+
ListPricingRulesAssociatedToPricingPlanCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPricingRulesInput,
|
|
15
|
+
ListPricingRulesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPricingRulesCommandInput extends ListPricingRulesInput {}
|
|
18
|
+
export interface ListPricingRulesCommandOutput
|
|
19
|
+
extends ListPricingRulesOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListPricingRulesCommand extends $Command<
|
|
22
|
+
ListPricingRulesCommandInput,
|
|
23
|
+
ListPricingRulesCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListPricingRulesCommandInput;
|
|
27
|
+
constructor(input: ListPricingRulesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListPricingRulesCommandInput, ListPricingRulesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListResourcesAssociatedToCustomLineItemInput,
|
|
15
|
+
ListResourcesAssociatedToCustomLineItemOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListResourcesAssociatedToCustomLineItemCommandInput
|
|
18
|
+
extends ListResourcesAssociatedToCustomLineItemInput {}
|
|
19
|
+
export interface ListResourcesAssociatedToCustomLineItemCommandOutput
|
|
20
|
+
extends ListResourcesAssociatedToCustomLineItemOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListResourcesAssociatedToCustomLineItemCommand extends $Command<
|
|
23
|
+
ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
24
|
+
ListResourcesAssociatedToCustomLineItemCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListResourcesAssociatedToCustomLineItemCommandInput;
|
|
28
|
+
constructor(input: ListResourcesAssociatedToCustomLineItemCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListResourcesAssociatedToCustomLineItemCommandInput,
|
|
35
|
+
ListResourcesAssociatedToCustomLineItemCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
BillingconductorClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BillingconductorClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BillingconductorClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|