@aws-sdk/client-billingconductor 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/Billingconductor.js +35 -434
- package/dist-cjs/protocols/Aws_restJson1.js +513 -1080
- package/dist-es/Billingconductor.js +35 -434
- package/dist-es/protocols/Aws_restJson1.js +471 -1038
- package/dist-types/Billingconductor.d.ts +49 -127
- package/dist-types/ts3.4/Billingconductor.d.ts +4 -1
- package/package.json +6 -6
|
@@ -31,286 +31,208 @@ import { UpdateBillingGroupCommandInput, UpdateBillingGroupCommandOutput } from
|
|
|
31
31
|
import { UpdateCustomLineItemCommandInput, UpdateCustomLineItemCommandOutput } from "./commands/UpdateCustomLineItemCommand";
|
|
32
32
|
import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from "./commands/UpdatePricingPlanCommand";
|
|
33
33
|
import { UpdatePricingRuleCommandInput, UpdatePricingRuleCommandOutput } from "./commands/UpdatePricingRuleCommand";
|
|
34
|
-
|
|
35
|
-
* @public
|
|
36
|
-
* <p>Amazon Web Services Billing Conductor is a fully managed service that you can use
|
|
37
|
-
* to customize a <a href="https://docs.aws.amazon.com/billingconductor/latest/userguide/understanding-eb.html#eb-other-definitions">pro forma</a> version of your billing data each month, to accurately show or chargeback
|
|
38
|
-
* your end customers. Amazon Web Services Billing Conductor doesn't change the way
|
|
39
|
-
* you're billed by Amazon Web Services each month by design. Instead, it provides you with a
|
|
40
|
-
* mechanism to configure, generate, and display rates to certain customers over a given billing
|
|
41
|
-
* period. You can also analyze the difference between the rates you apply to your accounting
|
|
42
|
-
* groupings relative to your actual rates from Amazon Web Services. As a result of your Amazon Web Services Billing Conductor configuration, the payer account can also see the
|
|
43
|
-
* custom rate applied on the billing details page of the <a href="https://console.aws.amazon.com/billing">Amazon Web Services Billing console</a>, or configure a cost and usage report per
|
|
44
|
-
* billing group.</p>
|
|
45
|
-
* <p>This documentation shows how you can configure Amazon Web Services Billing Conductor using its
|
|
46
|
-
* API. For more information about using the <a href="https://console.aws.amazon.com/billingconductor/">Amazon Web Services
|
|
47
|
-
* Billing Conductor</a> user interface, see the <a href="https://docs.aws.amazon.com/billingconductor/latest/userguide/what-is-billingconductor.html"> Amazon Web Services Billing Conductor User Guide</a>.</p>
|
|
48
|
-
*/
|
|
49
|
-
export declare class Billingconductor extends BillingconductorClient {
|
|
34
|
+
export interface Billingconductor {
|
|
50
35
|
/**
|
|
51
|
-
* @
|
|
52
|
-
* <p>Connects an array of account IDs in a consolidated billing family to a predefined
|
|
53
|
-
* billing group. The account IDs must be a part of the consolidated billing family during the
|
|
54
|
-
* current month, and not already associated with another billing group. The maximum number of
|
|
55
|
-
* accounts that can be associated in one call is 30. </p>
|
|
36
|
+
* @see {@link AssociateAccountsCommand}
|
|
56
37
|
*/
|
|
57
38
|
associateAccounts(args: AssociateAccountsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAccountsCommandOutput>;
|
|
58
39
|
associateAccounts(args: AssociateAccountsCommandInput, cb: (err: any, data?: AssociateAccountsCommandOutput) => void): void;
|
|
59
40
|
associateAccounts(args: AssociateAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAccountsCommandOutput) => void): void;
|
|
60
41
|
/**
|
|
61
|
-
* @
|
|
62
|
-
* <p>Connects an array of <code>PricingRuleArns</code> to a defined <code>PricingPlan</code>.
|
|
63
|
-
* The maximum number <code>PricingRuleArn</code> that can be associated in one call is 30. </p>
|
|
42
|
+
* @see {@link AssociatePricingRulesCommand}
|
|
64
43
|
*/
|
|
65
44
|
associatePricingRules(args: AssociatePricingRulesCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePricingRulesCommandOutput>;
|
|
66
45
|
associatePricingRules(args: AssociatePricingRulesCommandInput, cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void): void;
|
|
67
46
|
associatePricingRules(args: AssociatePricingRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePricingRulesCommandOutput) => void): void;
|
|
68
47
|
/**
|
|
69
|
-
* @
|
|
70
|
-
* <p>
|
|
71
|
-
* Associates a batch of resources to a percentage custom line item.
|
|
72
|
-
* </p>
|
|
48
|
+
* @see {@link BatchAssociateResourcesToCustomLineItemCommand}
|
|
73
49
|
*/
|
|
74
50
|
batchAssociateResourcesToCustomLineItem(args: BatchAssociateResourcesToCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateResourcesToCustomLineItemCommandOutput>;
|
|
75
51
|
batchAssociateResourcesToCustomLineItem(args: BatchAssociateResourcesToCustomLineItemCommandInput, cb: (err: any, data?: BatchAssociateResourcesToCustomLineItemCommandOutput) => void): void;
|
|
76
52
|
batchAssociateResourcesToCustomLineItem(args: BatchAssociateResourcesToCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateResourcesToCustomLineItemCommandOutput) => void): void;
|
|
77
53
|
/**
|
|
78
|
-
* @
|
|
79
|
-
* <p>
|
|
80
|
-
* Disassociates a batch of resources from a percentage custom line item.
|
|
81
|
-
* </p>
|
|
54
|
+
* @see {@link BatchDisassociateResourcesFromCustomLineItemCommand}
|
|
82
55
|
*/
|
|
83
56
|
batchDisassociateResourcesFromCustomLineItem(args: BatchDisassociateResourcesFromCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateResourcesFromCustomLineItemCommandOutput>;
|
|
84
57
|
batchDisassociateResourcesFromCustomLineItem(args: BatchDisassociateResourcesFromCustomLineItemCommandInput, cb: (err: any, data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput) => void): void;
|
|
85
58
|
batchDisassociateResourcesFromCustomLineItem(args: BatchDisassociateResourcesFromCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateResourcesFromCustomLineItemCommandOutput) => void): void;
|
|
86
59
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>
|
|
89
|
-
* Creates a billing group that resembles a consolidated billing family that Amazon Web Services charges, based off of the predefined pricing plan computation.
|
|
90
|
-
* </p>
|
|
60
|
+
* @see {@link CreateBillingGroupCommand}
|
|
91
61
|
*/
|
|
92
62
|
createBillingGroup(args: CreateBillingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateBillingGroupCommandOutput>;
|
|
93
63
|
createBillingGroup(args: CreateBillingGroupCommandInput, cb: (err: any, data?: CreateBillingGroupCommandOutput) => void): void;
|
|
94
64
|
createBillingGroup(args: CreateBillingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBillingGroupCommandOutput) => void): void;
|
|
95
65
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* <p>
|
|
98
|
-
* Creates a custom line item that can be used to create a one-time fixed charge that can be applied to a single billing group for the current or previous billing period. The one-time fixed charge is either a fee or discount.
|
|
99
|
-
* </p>
|
|
66
|
+
* @see {@link CreateCustomLineItemCommand}
|
|
100
67
|
*/
|
|
101
68
|
createCustomLineItem(args: CreateCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomLineItemCommandOutput>;
|
|
102
69
|
createCustomLineItem(args: CreateCustomLineItemCommandInput, cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void): void;
|
|
103
70
|
createCustomLineItem(args: CreateCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomLineItemCommandOutput) => void): void;
|
|
104
71
|
/**
|
|
105
|
-
* @
|
|
106
|
-
* <p>Creates a pricing plan that is used for computing Amazon Web Services charges for billing groups.
|
|
107
|
-
* </p>
|
|
72
|
+
* @see {@link CreatePricingPlanCommand}
|
|
108
73
|
*/
|
|
109
74
|
createPricingPlan(args: CreatePricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreatePricingPlanCommandOutput>;
|
|
110
75
|
createPricingPlan(args: CreatePricingPlanCommandInput, cb: (err: any, data?: CreatePricingPlanCommandOutput) => void): void;
|
|
111
76
|
createPricingPlan(args: CreatePricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePricingPlanCommandOutput) => void): void;
|
|
112
77
|
/**
|
|
113
|
-
* @
|
|
114
|
-
* <p>
|
|
115
|
-
* Creates a pricing rule can be associated to a pricing plan, or a set of pricing plans.
|
|
116
|
-
* </p>
|
|
78
|
+
* @see {@link CreatePricingRuleCommand}
|
|
117
79
|
*/
|
|
118
80
|
createPricingRule(args: CreatePricingRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreatePricingRuleCommandOutput>;
|
|
119
81
|
createPricingRule(args: CreatePricingRuleCommandInput, cb: (err: any, data?: CreatePricingRuleCommandOutput) => void): void;
|
|
120
82
|
createPricingRule(args: CreatePricingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePricingRuleCommandOutput) => void): void;
|
|
121
83
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* <p>
|
|
124
|
-
* Deletes a billing group.
|
|
125
|
-
* </p>
|
|
84
|
+
* @see {@link DeleteBillingGroupCommand}
|
|
126
85
|
*/
|
|
127
86
|
deleteBillingGroup(args: DeleteBillingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBillingGroupCommandOutput>;
|
|
128
87
|
deleteBillingGroup(args: DeleteBillingGroupCommandInput, cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void): void;
|
|
129
88
|
deleteBillingGroup(args: DeleteBillingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBillingGroupCommandOutput) => void): void;
|
|
130
89
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>
|
|
133
|
-
* Deletes the custom line item identified by the given ARN in the current, or previous billing period.
|
|
134
|
-
* </p>
|
|
90
|
+
* @see {@link DeleteCustomLineItemCommand}
|
|
135
91
|
*/
|
|
136
92
|
deleteCustomLineItem(args: DeleteCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomLineItemCommandOutput>;
|
|
137
93
|
deleteCustomLineItem(args: DeleteCustomLineItemCommandInput, cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void): void;
|
|
138
94
|
deleteCustomLineItem(args: DeleteCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomLineItemCommandOutput) => void): void;
|
|
139
95
|
/**
|
|
140
|
-
* @
|
|
141
|
-
* <p>Deletes a pricing plan. The pricing plan must not be associated with any billing groups to
|
|
142
|
-
* delete successfully.</p>
|
|
96
|
+
* @see {@link DeletePricingPlanCommand}
|
|
143
97
|
*/
|
|
144
98
|
deletePricingPlan(args: DeletePricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeletePricingPlanCommandOutput>;
|
|
145
99
|
deletePricingPlan(args: DeletePricingPlanCommandInput, cb: (err: any, data?: DeletePricingPlanCommandOutput) => void): void;
|
|
146
100
|
deletePricingPlan(args: DeletePricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePricingPlanCommandOutput) => void): void;
|
|
147
101
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p> Deletes the pricing rule that's identified by the input Amazon Resource Name (ARN). </p>
|
|
102
|
+
* @see {@link DeletePricingRuleCommand}
|
|
150
103
|
*/
|
|
151
104
|
deletePricingRule(args: DeletePricingRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeletePricingRuleCommandOutput>;
|
|
152
105
|
deletePricingRule(args: DeletePricingRuleCommandInput, cb: (err: any, data?: DeletePricingRuleCommandOutput) => void): void;
|
|
153
106
|
deletePricingRule(args: DeletePricingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePricingRuleCommandOutput) => void): void;
|
|
154
107
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Removes the specified list of account IDs from the given billing group. </p>
|
|
108
|
+
* @see {@link DisassociateAccountsCommand}
|
|
157
109
|
*/
|
|
158
110
|
disassociateAccounts(args: DisassociateAccountsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAccountsCommandOutput>;
|
|
159
111
|
disassociateAccounts(args: DisassociateAccountsCommandInput, cb: (err: any, data?: DisassociateAccountsCommandOutput) => void): void;
|
|
160
112
|
disassociateAccounts(args: DisassociateAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAccountsCommandOutput) => void): void;
|
|
161
113
|
/**
|
|
162
|
-
* @
|
|
163
|
-
* <p>
|
|
164
|
-
* Disassociates a list of pricing rules from a pricing plan.
|
|
165
|
-
* </p>
|
|
114
|
+
* @see {@link DisassociatePricingRulesCommand}
|
|
166
115
|
*/
|
|
167
116
|
disassociatePricingRules(args: DisassociatePricingRulesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePricingRulesCommandOutput>;
|
|
168
117
|
disassociatePricingRules(args: DisassociatePricingRulesCommandInput, cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void): void;
|
|
169
118
|
disassociatePricingRules(args: DisassociatePricingRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePricingRulesCommandOutput) => void): void;
|
|
170
119
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p> This is a paginated call to list linked accounts that are linked to the payer account for
|
|
173
|
-
* the specified time period. If no information is provided, the current billing period is used.
|
|
174
|
-
* The response will optionally include the billing group that's associated with the linked
|
|
175
|
-
* account.</p>
|
|
120
|
+
* @see {@link ListAccountAssociationsCommand}
|
|
176
121
|
*/
|
|
177
122
|
listAccountAssociations(args: ListAccountAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccountAssociationsCommandOutput>;
|
|
178
123
|
listAccountAssociations(args: ListAccountAssociationsCommandInput, cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void): void;
|
|
179
124
|
listAccountAssociations(args: ListAccountAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void): void;
|
|
180
125
|
/**
|
|
181
|
-
* @
|
|
182
|
-
* <p>A paginated call to retrieve a summary report of actual Amazon Web Services charges and the calculated
|
|
183
|
-
* Amazon Web Services charges based on the associated pricing plan of a billing group.</p>
|
|
126
|
+
* @see {@link ListBillingGroupCostReportsCommand}
|
|
184
127
|
*/
|
|
185
128
|
listBillingGroupCostReports(args: ListBillingGroupCostReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListBillingGroupCostReportsCommandOutput>;
|
|
186
129
|
listBillingGroupCostReports(args: ListBillingGroupCostReportsCommandInput, cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void): void;
|
|
187
130
|
listBillingGroupCostReports(args: ListBillingGroupCostReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBillingGroupCostReportsCommandOutput) => void): void;
|
|
188
131
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>A paginated call to retrieve a list of billing groups for the given billing period. If you don't provide a billing group, the current billing period is used.</p>
|
|
132
|
+
* @see {@link ListBillingGroupsCommand}
|
|
191
133
|
*/
|
|
192
134
|
listBillingGroups(args: ListBillingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListBillingGroupsCommandOutput>;
|
|
193
135
|
listBillingGroups(args: ListBillingGroupsCommandInput, cb: (err: any, data?: ListBillingGroupsCommandOutput) => void): void;
|
|
194
136
|
listBillingGroups(args: ListBillingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBillingGroupsCommandOutput) => void): void;
|
|
195
137
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <p>
|
|
198
|
-
* A paginated call to get a list of all custom line items (FFLIs) for the given billing period. If you don't provide a billing period, the current billing period is used.
|
|
199
|
-
* </p>
|
|
138
|
+
* @see {@link ListCustomLineItemsCommand}
|
|
200
139
|
*/
|
|
201
140
|
listCustomLineItems(args: ListCustomLineItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomLineItemsCommandOutput>;
|
|
202
141
|
listCustomLineItems(args: ListCustomLineItemsCommandInput, cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void): void;
|
|
203
142
|
listCustomLineItems(args: ListCustomLineItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomLineItemsCommandOutput) => void): void;
|
|
204
143
|
/**
|
|
205
|
-
* @
|
|
206
|
-
* <p>A paginated call to get a list of all custom line item versions.</p>
|
|
144
|
+
* @see {@link ListCustomLineItemVersionsCommand}
|
|
207
145
|
*/
|
|
208
146
|
listCustomLineItemVersions(args: ListCustomLineItemVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomLineItemVersionsCommandOutput>;
|
|
209
147
|
listCustomLineItemVersions(args: ListCustomLineItemVersionsCommandInput, cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void): void;
|
|
210
148
|
listCustomLineItemVersions(args: ListCustomLineItemVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomLineItemVersionsCommandOutput) => void): void;
|
|
211
149
|
/**
|
|
212
|
-
* @
|
|
213
|
-
* <p>A paginated call to get pricing plans for the given billing period. If you don't provide a billing period, the current billing period is used.
|
|
214
|
-
* </p>
|
|
150
|
+
* @see {@link ListPricingPlansCommand}
|
|
215
151
|
*/
|
|
216
152
|
listPricingPlans(args: ListPricingPlansCommandInput, options?: __HttpHandlerOptions): Promise<ListPricingPlansCommandOutput>;
|
|
217
153
|
listPricingPlans(args: ListPricingPlansCommandInput, cb: (err: any, data?: ListPricingPlansCommandOutput) => void): void;
|
|
218
154
|
listPricingPlans(args: ListPricingPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricingPlansCommandOutput) => void): void;
|
|
219
155
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>
|
|
222
|
-
* A list of the pricing plans that are associated with a pricing rule.
|
|
223
|
-
* </p>
|
|
156
|
+
* @see {@link ListPricingPlansAssociatedWithPricingRuleCommand}
|
|
224
157
|
*/
|
|
225
158
|
listPricingPlansAssociatedWithPricingRule(args: ListPricingPlansAssociatedWithPricingRuleCommandInput, options?: __HttpHandlerOptions): Promise<ListPricingPlansAssociatedWithPricingRuleCommandOutput>;
|
|
226
159
|
listPricingPlansAssociatedWithPricingRule(args: ListPricingPlansAssociatedWithPricingRuleCommandInput, cb: (err: any, data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput) => void): void;
|
|
227
160
|
listPricingPlansAssociatedWithPricingRule(args: ListPricingPlansAssociatedWithPricingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricingPlansAssociatedWithPricingRuleCommandOutput) => void): void;
|
|
228
161
|
/**
|
|
229
|
-
* @
|
|
230
|
-
* <p>
|
|
231
|
-
* Describes a pricing rule that can be associated to a pricing plan, or set of pricing plans.
|
|
232
|
-
* </p>
|
|
162
|
+
* @see {@link ListPricingRulesCommand}
|
|
233
163
|
*/
|
|
234
164
|
listPricingRules(args: ListPricingRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListPricingRulesCommandOutput>;
|
|
235
165
|
listPricingRules(args: ListPricingRulesCommandInput, cb: (err: any, data?: ListPricingRulesCommandOutput) => void): void;
|
|
236
166
|
listPricingRules(args: ListPricingRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricingRulesCommandOutput) => void): void;
|
|
237
167
|
/**
|
|
238
|
-
* @
|
|
239
|
-
* <p>
|
|
240
|
-
* Lists the pricing rules that are associated with a pricing plan.
|
|
241
|
-
* </p>
|
|
168
|
+
* @see {@link ListPricingRulesAssociatedToPricingPlanCommand}
|
|
242
169
|
*/
|
|
243
170
|
listPricingRulesAssociatedToPricingPlan(args: ListPricingRulesAssociatedToPricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<ListPricingRulesAssociatedToPricingPlanCommandOutput>;
|
|
244
171
|
listPricingRulesAssociatedToPricingPlan(args: ListPricingRulesAssociatedToPricingPlanCommandInput, cb: (err: any, data?: ListPricingRulesAssociatedToPricingPlanCommandOutput) => void): void;
|
|
245
172
|
listPricingRulesAssociatedToPricingPlan(args: ListPricingRulesAssociatedToPricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricingRulesAssociatedToPricingPlanCommandOutput) => void): void;
|
|
246
173
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>
|
|
249
|
-
* List the resources that are associated to a custom line item.
|
|
250
|
-
* </p>
|
|
174
|
+
* @see {@link ListResourcesAssociatedToCustomLineItemCommand}
|
|
251
175
|
*/
|
|
252
176
|
listResourcesAssociatedToCustomLineItem(args: ListResourcesAssociatedToCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<ListResourcesAssociatedToCustomLineItemCommandOutput>;
|
|
253
177
|
listResourcesAssociatedToCustomLineItem(args: ListResourcesAssociatedToCustomLineItemCommandInput, cb: (err: any, data?: ListResourcesAssociatedToCustomLineItemCommandOutput) => void): void;
|
|
254
178
|
listResourcesAssociatedToCustomLineItem(args: ListResourcesAssociatedToCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcesAssociatedToCustomLineItemCommandOutput) => void): void;
|
|
255
179
|
/**
|
|
256
|
-
* @
|
|
257
|
-
* <p>
|
|
258
|
-
* A list the tags for a resource.
|
|
259
|
-
* </p>
|
|
180
|
+
* @see {@link ListTagsForResourceCommand}
|
|
260
181
|
*/
|
|
261
182
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
262
183
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
263
184
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
264
185
|
/**
|
|
265
|
-
* @
|
|
266
|
-
* <p> Associates the specified tags to a resource with the specified <code>resourceArn</code>.
|
|
267
|
-
* If existing tags on a resource are not specified in the request parameters, they are not
|
|
268
|
-
* changed. </p>
|
|
186
|
+
* @see {@link TagResourceCommand}
|
|
269
187
|
*/
|
|
270
188
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
271
189
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
272
190
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
273
191
|
/**
|
|
274
|
-
* @
|
|
275
|
-
* <p>
|
|
276
|
-
* Deletes specified tags from a resource.
|
|
277
|
-
* </p>
|
|
192
|
+
* @see {@link UntagResourceCommand}
|
|
278
193
|
*/
|
|
279
194
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
280
195
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
281
196
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
282
197
|
/**
|
|
283
|
-
* @
|
|
284
|
-
* <p>This updates an existing billing group.
|
|
285
|
-
* </p>
|
|
198
|
+
* @see {@link UpdateBillingGroupCommand}
|
|
286
199
|
*/
|
|
287
200
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBillingGroupCommandOutput>;
|
|
288
201
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void): void;
|
|
289
202
|
updateBillingGroup(args: UpdateBillingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBillingGroupCommandOutput) => void): void;
|
|
290
203
|
/**
|
|
291
|
-
* @
|
|
292
|
-
* <p>
|
|
293
|
-
* Update an existing custom line item in the current or previous billing period.
|
|
294
|
-
* </p>
|
|
204
|
+
* @see {@link UpdateCustomLineItemCommand}
|
|
295
205
|
*/
|
|
296
206
|
updateCustomLineItem(args: UpdateCustomLineItemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomLineItemCommandOutput>;
|
|
297
207
|
updateCustomLineItem(args: UpdateCustomLineItemCommandInput, cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void): void;
|
|
298
208
|
updateCustomLineItem(args: UpdateCustomLineItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomLineItemCommandOutput) => void): void;
|
|
299
209
|
/**
|
|
300
|
-
* @
|
|
301
|
-
* <p>This updates an existing pricing plan.
|
|
302
|
-
* </p>
|
|
210
|
+
* @see {@link UpdatePricingPlanCommand}
|
|
303
211
|
*/
|
|
304
212
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePricingPlanCommandOutput>;
|
|
305
213
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
|
|
306
214
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
|
|
307
215
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>
|
|
310
|
-
* Updates an existing pricing rule.
|
|
311
|
-
* </p>
|
|
216
|
+
* @see {@link UpdatePricingRuleCommand}
|
|
312
217
|
*/
|
|
313
218
|
updatePricingRule(args: UpdatePricingRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePricingRuleCommandOutput>;
|
|
314
219
|
updatePricingRule(args: UpdatePricingRuleCommandInput, cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void): void;
|
|
315
220
|
updatePricingRule(args: UpdatePricingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void): void;
|
|
316
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* <p>Amazon Web Services Billing Conductor is a fully managed service that you can use
|
|
225
|
+
* to customize a <a href="https://docs.aws.amazon.com/billingconductor/latest/userguide/understanding-eb.html#eb-other-definitions">pro forma</a> version of your billing data each month, to accurately show or chargeback
|
|
226
|
+
* your end customers. Amazon Web Services Billing Conductor doesn't change the way
|
|
227
|
+
* you're billed by Amazon Web Services each month by design. Instead, it provides you with a
|
|
228
|
+
* mechanism to configure, generate, and display rates to certain customers over a given billing
|
|
229
|
+
* period. You can also analyze the difference between the rates you apply to your accounting
|
|
230
|
+
* groupings relative to your actual rates from Amazon Web Services. As a result of your Amazon Web Services Billing Conductor configuration, the payer account can also see the
|
|
231
|
+
* custom rate applied on the billing details page of the <a href="https://console.aws.amazon.com/billing">Amazon Web Services Billing console</a>, or configure a cost and usage report per
|
|
232
|
+
* billing group.</p>
|
|
233
|
+
* <p>This documentation shows how you can configure Amazon Web Services Billing Conductor using its
|
|
234
|
+
* API. For more information about using the <a href="https://console.aws.amazon.com/billingconductor/">Amazon Web Services
|
|
235
|
+
* Billing Conductor</a> user interface, see the <a href="https://docs.aws.amazon.com/billingconductor/latest/userguide/what-is-billingconductor.html"> Amazon Web Services Billing Conductor User Guide</a>.</p>
|
|
236
|
+
*/
|
|
237
|
+
export declare class Billingconductor extends BillingconductorClient implements Billingconductor {
|
|
238
|
+
}
|
|
@@ -124,7 +124,7 @@ import {
|
|
|
124
124
|
UpdatePricingRuleCommandInput,
|
|
125
125
|
UpdatePricingRuleCommandOutput,
|
|
126
126
|
} from "./commands/UpdatePricingRuleCommand";
|
|
127
|
-
export
|
|
127
|
+
export interface Billingconductor {
|
|
128
128
|
associateAccounts(
|
|
129
129
|
args: AssociateAccountsCommandInput,
|
|
130
130
|
options?: __HttpHandlerOptions
|
|
@@ -559,3 +559,6 @@ export declare class Billingconductor extends BillingconductorClient {
|
|
|
559
559
|
cb: (err: any, data?: UpdatePricingRuleCommandOutput) => void
|
|
560
560
|
): void;
|
|
561
561
|
}
|
|
562
|
+
export declare class Billingconductor
|
|
563
|
+
extends BillingconductorClient
|
|
564
|
+
implements Billingconductor {}
|
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.316.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.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|