@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,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
|
+
CreateBillingGroupInput,
|
|
15
|
+
CreateBillingGroupOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateBillingGroupCommandInput
|
|
18
|
+
extends CreateBillingGroupInput {}
|
|
19
|
+
export interface CreateBillingGroupCommandOutput
|
|
20
|
+
extends CreateBillingGroupOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateBillingGroupCommand extends $Command<
|
|
23
|
+
CreateBillingGroupCommandInput,
|
|
24
|
+
CreateBillingGroupCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateBillingGroupCommandInput;
|
|
28
|
+
constructor(input: CreateBillingGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<CreateBillingGroupCommandInput, CreateBillingGroupCommandOutput>;
|
|
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
|
+
CreateCustomLineItemInput,
|
|
15
|
+
CreateCustomLineItemOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateCustomLineItemCommandInput
|
|
18
|
+
extends CreateCustomLineItemInput {}
|
|
19
|
+
export interface CreateCustomLineItemCommandOutput
|
|
20
|
+
extends CreateCustomLineItemOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateCustomLineItemCommand extends $Command<
|
|
23
|
+
CreateCustomLineItemCommandInput,
|
|
24
|
+
CreateCustomLineItemCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateCustomLineItemCommandInput;
|
|
28
|
+
constructor(input: CreateCustomLineItemCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateCustomLineItemCommandInput,
|
|
35
|
+
CreateCustomLineItemCommandOutput
|
|
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
|
+
CreatePricingPlanInput,
|
|
15
|
+
CreatePricingPlanOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreatePricingPlanCommandInput extends CreatePricingPlanInput {}
|
|
18
|
+
export interface CreatePricingPlanCommandOutput
|
|
19
|
+
extends CreatePricingPlanOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreatePricingPlanCommand extends $Command<
|
|
22
|
+
CreatePricingPlanCommandInput,
|
|
23
|
+
CreatePricingPlanCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreatePricingPlanCommandInput;
|
|
27
|
+
constructor(input: CreatePricingPlanCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreatePricingPlanCommandInput, CreatePricingPlanCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
CreatePricingRuleInput,
|
|
15
|
+
CreatePricingRuleOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreatePricingRuleCommandInput extends CreatePricingRuleInput {}
|
|
18
|
+
export interface CreatePricingRuleCommandOutput
|
|
19
|
+
extends CreatePricingRuleOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreatePricingRuleCommand extends $Command<
|
|
22
|
+
CreatePricingRuleCommandInput,
|
|
23
|
+
CreatePricingRuleCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreatePricingRuleCommandInput;
|
|
27
|
+
constructor(input: CreatePricingRuleCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreatePricingRuleCommandInput, CreatePricingRuleCommandOutput>;
|
|
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
|
+
DeleteBillingGroupInput,
|
|
15
|
+
DeleteBillingGroupOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBillingGroupCommandInput
|
|
18
|
+
extends DeleteBillingGroupInput {}
|
|
19
|
+
export interface DeleteBillingGroupCommandOutput
|
|
20
|
+
extends DeleteBillingGroupOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteBillingGroupCommand extends $Command<
|
|
23
|
+
DeleteBillingGroupCommandInput,
|
|
24
|
+
DeleteBillingGroupCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteBillingGroupCommandInput;
|
|
28
|
+
constructor(input: DeleteBillingGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteBillingGroupCommandInput, DeleteBillingGroupCommandOutput>;
|
|
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
|
+
DeleteCustomLineItemInput,
|
|
15
|
+
DeleteCustomLineItemOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteCustomLineItemCommandInput
|
|
18
|
+
extends DeleteCustomLineItemInput {}
|
|
19
|
+
export interface DeleteCustomLineItemCommandOutput
|
|
20
|
+
extends DeleteCustomLineItemOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteCustomLineItemCommand extends $Command<
|
|
23
|
+
DeleteCustomLineItemCommandInput,
|
|
24
|
+
DeleteCustomLineItemCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteCustomLineItemCommandInput;
|
|
28
|
+
constructor(input: DeleteCustomLineItemCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteCustomLineItemCommandInput,
|
|
35
|
+
DeleteCustomLineItemCommandOutput
|
|
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
|
+
DeletePricingPlanInput,
|
|
15
|
+
DeletePricingPlanOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeletePricingPlanCommandInput extends DeletePricingPlanInput {}
|
|
18
|
+
export interface DeletePricingPlanCommandOutput
|
|
19
|
+
extends DeletePricingPlanOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeletePricingPlanCommand extends $Command<
|
|
22
|
+
DeletePricingPlanCommandInput,
|
|
23
|
+
DeletePricingPlanCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeletePricingPlanCommandInput;
|
|
27
|
+
constructor(input: DeletePricingPlanCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeletePricingPlanCommandInput, DeletePricingPlanCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
DeletePricingRuleInput,
|
|
15
|
+
DeletePricingRuleOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeletePricingRuleCommandInput extends DeletePricingRuleInput {}
|
|
18
|
+
export interface DeletePricingRuleCommandOutput
|
|
19
|
+
extends DeletePricingRuleOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeletePricingRuleCommand extends $Command<
|
|
22
|
+
DeletePricingRuleCommandInput,
|
|
23
|
+
DeletePricingRuleCommandOutput,
|
|
24
|
+
BillingconductorClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeletePricingRuleCommandInput;
|
|
27
|
+
constructor(input: DeletePricingRuleCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeletePricingRuleCommandInput, DeletePricingRuleCommandOutput>;
|
|
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
|
+
DisassociateAccountsInput,
|
|
15
|
+
DisassociateAccountsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateAccountsCommandInput
|
|
18
|
+
extends DisassociateAccountsInput {}
|
|
19
|
+
export interface DisassociateAccountsCommandOutput
|
|
20
|
+
extends DisassociateAccountsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateAccountsCommand extends $Command<
|
|
23
|
+
DisassociateAccountsCommandInput,
|
|
24
|
+
DisassociateAccountsCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateAccountsCommandInput;
|
|
28
|
+
constructor(input: DisassociateAccountsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateAccountsCommandInput,
|
|
35
|
+
DisassociateAccountsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
DisassociatePricingRulesInput,
|
|
15
|
+
DisassociatePricingRulesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociatePricingRulesCommandInput
|
|
18
|
+
extends DisassociatePricingRulesInput {}
|
|
19
|
+
export interface DisassociatePricingRulesCommandOutput
|
|
20
|
+
extends DisassociatePricingRulesOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociatePricingRulesCommand extends $Command<
|
|
23
|
+
DisassociatePricingRulesCommandInput,
|
|
24
|
+
DisassociatePricingRulesCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociatePricingRulesCommandInput;
|
|
28
|
+
constructor(input: DisassociatePricingRulesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociatePricingRulesCommandInput,
|
|
35
|
+
DisassociatePricingRulesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
ListAccountAssociationsInput,
|
|
15
|
+
ListAccountAssociationsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAccountAssociationsCommandInput
|
|
18
|
+
extends ListAccountAssociationsInput {}
|
|
19
|
+
export interface ListAccountAssociationsCommandOutput
|
|
20
|
+
extends ListAccountAssociationsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListAccountAssociationsCommand extends $Command<
|
|
23
|
+
ListAccountAssociationsCommandInput,
|
|
24
|
+
ListAccountAssociationsCommandOutput,
|
|
25
|
+
BillingconductorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAccountAssociationsCommandInput;
|
|
28
|
+
constructor(input: ListAccountAssociationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BillingconductorClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListAccountAssociationsCommandInput,
|
|
35
|
+
ListAccountAssociationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|