@aws-sdk/client-billingconductor 3.1136.0 → 3.1138.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.
@@ -93,6 +93,10 @@ import {
93
93
  GetBillingGroupCostReportCommandInput,
94
94
  GetBillingGroupCostReportCommandOutput,
95
95
  } from "./commands/GetBillingGroupCostReportCommand";
96
+ import {
97
+ GetBillingTransferPreferenceCommandInput,
98
+ GetBillingTransferPreferenceCommandOutput,
99
+ } from "./commands/GetBillingTransferPreferenceCommand";
96
100
  import {
97
101
  ListAccountAssociationsCommandInput,
98
102
  ListAccountAssociationsCommandOutput,
@@ -146,6 +150,10 @@ import {
146
150
  UpdateBillingGroupCommandInput,
147
151
  UpdateBillingGroupCommandOutput,
148
152
  } from "./commands/UpdateBillingGroupCommand";
153
+ import {
154
+ UpdateBillingTransferPreferenceCommandInput,
155
+ UpdateBillingTransferPreferenceCommandOutput,
156
+ } from "./commands/UpdateBillingTransferPreferenceCommand";
149
157
  import {
150
158
  UpdateCustomLineItemCommandInput,
151
159
  UpdateCustomLineItemCommandOutput,
@@ -181,6 +189,7 @@ export type ServiceInputTypes =
181
189
  | DisassociateAccountsCommandInput
182
190
  | DisassociatePricingRulesCommandInput
183
191
  | GetBillingGroupCostReportCommandInput
192
+ | GetBillingTransferPreferenceCommandInput
184
193
  | ListAccountAssociationsCommandInput
185
194
  | ListBillingGroupCostReportsCommandInput
186
195
  | ListBillingGroupsCommandInput
@@ -195,6 +204,7 @@ export type ServiceInputTypes =
195
204
  | TagResourceCommandInput
196
205
  | UntagResourceCommandInput
197
206
  | UpdateBillingGroupCommandInput
207
+ | UpdateBillingTransferPreferenceCommandInput
198
208
  | UpdateCustomLineItemCommandInput
199
209
  | UpdatePricingPlanCommandInput
200
210
  | UpdatePricingRuleCommandInput;
@@ -214,6 +224,7 @@ export type ServiceOutputTypes =
214
224
  | DisassociateAccountsCommandOutput
215
225
  | DisassociatePricingRulesCommandOutput
216
226
  | GetBillingGroupCostReportCommandOutput
227
+ | GetBillingTransferPreferenceCommandOutput
217
228
  | ListAccountAssociationsCommandOutput
218
229
  | ListBillingGroupCostReportsCommandOutput
219
230
  | ListBillingGroupsCommandOutput
@@ -228,6 +239,7 @@ export type ServiceOutputTypes =
228
239
  | TagResourceCommandOutput
229
240
  | UntagResourceCommandOutput
230
241
  | UpdateBillingGroupCommandOutput
242
+ | UpdateBillingTransferPreferenceCommandOutput
231
243
  | UpdateCustomLineItemCommandOutput
232
244
  | UpdatePricingPlanCommandOutput
233
245
  | UpdatePricingRuleCommandOutput;
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetBillingTransferPreferenceInput,
4
+ GetBillingTransferPreferenceOutput,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface GetBillingTransferPreferenceCommandInput extends GetBillingTransferPreferenceInput {}
8
+ export interface GetBillingTransferPreferenceCommandOutput
9
+ extends GetBillingTransferPreferenceOutput, __MetadataBearer {}
10
+ declare const GetBillingTransferPreferenceCommand_base: {
11
+ new (
12
+ input: GetBillingTransferPreferenceCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ GetBillingTransferPreferenceCommandInput,
15
+ GetBillingTransferPreferenceCommandOutput,
16
+ import("..").BillingconductorClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: GetBillingTransferPreferenceCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ GetBillingTransferPreferenceCommandInput,
24
+ GetBillingTransferPreferenceCommandOutput,
25
+ import("..").BillingconductorClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class GetBillingTransferPreferenceCommand extends GetBillingTransferPreferenceCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: GetBillingTransferPreferenceInput;
35
+ output: GetBillingTransferPreferenceOutput;
36
+ };
37
+ sdk: {
38
+ input: GetBillingTransferPreferenceCommandInput;
39
+ output: GetBillingTransferPreferenceCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateBillingTransferPreferenceInput,
4
+ UpdateBillingTransferPreferenceOutput,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface UpdateBillingTransferPreferenceCommandInput extends UpdateBillingTransferPreferenceInput {}
8
+ export interface UpdateBillingTransferPreferenceCommandOutput
9
+ extends UpdateBillingTransferPreferenceOutput, __MetadataBearer {}
10
+ declare const UpdateBillingTransferPreferenceCommand_base: {
11
+ new (
12
+ input: UpdateBillingTransferPreferenceCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ UpdateBillingTransferPreferenceCommandInput,
15
+ UpdateBillingTransferPreferenceCommandOutput,
16
+ import("..").BillingconductorClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: UpdateBillingTransferPreferenceCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ UpdateBillingTransferPreferenceCommandInput,
24
+ UpdateBillingTransferPreferenceCommandOutput,
25
+ import("..").BillingconductorClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class UpdateBillingTransferPreferenceCommand extends UpdateBillingTransferPreferenceCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: UpdateBillingTransferPreferenceInput;
35
+ output: UpdateBillingTransferPreferenceOutput;
36
+ };
37
+ sdk: {
38
+ input: UpdateBillingTransferPreferenceCommandInput;
39
+ output: UpdateBillingTransferPreferenceCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -13,6 +13,7 @@ export * from "./DeletePricingRuleCommand";
13
13
  export * from "./DisassociateAccountsCommand";
14
14
  export * from "./DisassociatePricingRulesCommand";
15
15
  export * from "./GetBillingGroupCostReportCommand";
16
+ export * from "./GetBillingTransferPreferenceCommand";
16
17
  export * from "./ListAccountAssociationsCommand";
17
18
  export * from "./ListBillingGroupCostReportsCommand";
18
19
  export * from "./ListBillingGroupsCommand";
@@ -27,6 +28,7 @@ export * from "./ListTagsForResourceCommand";
27
28
  export * from "./TagResourceCommand";
28
29
  export * from "./UntagResourceCommand";
29
30
  export * from "./UpdateBillingGroupCommand";
31
+ export * from "./UpdateBillingTransferPreferenceCommand";
30
32
  export * from "./UpdateCustomLineItemCommand";
31
33
  export * from "./UpdatePricingPlanCommand";
32
34
  export * from "./UpdatePricingRuleCommand";
@@ -1,5 +1,6 @@
1
1
  export declare const ConflictExceptionReason: {
2
2
  readonly PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT: "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT";
3
+ readonly PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT: "PRICING_PLAN_REFERENCED_BY_PREFERENCE_DELETE_CONFLICT";
3
4
  readonly PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT: "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT";
4
5
  readonly PRICING_RULE_IN_PRICING_PLAN_CONFLICT: "PRICING_RULE_IN_PRICING_PLAN_CONFLICT";
5
6
  readonly RESOURCE_NAME_CONFLICT: "RESOURCE_NAME_CONFLICT";
@@ -55,6 +55,10 @@ export interface Attribute {
55
55
  Key?: string | undefined;
56
56
  Value?: string | undefined;
57
57
  }
58
+ export interface AutoTransferBillingGroupCreationPreference {
59
+ Enabled: boolean | undefined;
60
+ PricingPlanArn?: string | undefined;
61
+ }
58
62
  export interface ComputationPreference {
59
63
  PricingPlanArn: string | undefined;
60
64
  }
@@ -368,6 +372,14 @@ export interface GetBillingGroupCostReportOutput {
368
372
  BillingGroupCostReportResults?: BillingGroupCostReportResultElement[] | undefined;
369
373
  NextToken?: string | undefined;
370
374
  }
375
+ export interface GetBillingTransferPreferenceInput {
376
+ ResponsibilityTransferArn: string | undefined;
377
+ }
378
+ export interface GetBillingTransferPreferenceOutput {
379
+ ResponsibilityTransferArn: string | undefined;
380
+ AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
381
+ LastModifiedTime?: number | undefined;
382
+ }
371
383
  export interface ListAccountAssociationsFilter {
372
384
  Association?: string | undefined;
373
385
  AccountId?: string | undefined;
@@ -602,3 +614,13 @@ export interface UntagResourceRequest {
602
614
  TagKeys: string[] | undefined;
603
615
  }
604
616
  export interface UntagResourceResponse {}
617
+ export interface UpdateBillingTransferPreferenceInput {
618
+ ClientToken?: string | undefined;
619
+ ResponsibilityTransferArn: string | undefined;
620
+ AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
621
+ }
622
+ export interface UpdateBillingTransferPreferenceOutput {
623
+ ResponsibilityTransferArn: string | undefined;
624
+ AutoBillingTransferBillingGroupCreation: AutoTransferBillingGroupCreationPreference | undefined;
625
+ LastModifiedTime: number | undefined;
626
+ }
@@ -18,6 +18,7 @@ export declare var AssociatePricingRulesOutput$: StaticStructureSchema;
18
18
  export declare var AssociateResourceError$: StaticStructureSchema;
19
19
  export declare var AssociateResourceResponseElement$: StaticStructureSchema;
20
20
  export declare var Attribute$: StaticStructureSchema;
21
+ export declare var AutoTransferBillingGroupCreationPreference$: StaticStructureSchema;
21
22
  export declare var BatchAssociateResourcesToCustomLineItemInput$: StaticStructureSchema;
22
23
  export declare var BatchAssociateResourcesToCustomLineItemOutput$: StaticStructureSchema;
23
24
  export declare var BatchDisassociateResourcesFromCustomLineItemInput$: StaticStructureSchema;
@@ -60,6 +61,8 @@ export declare var DisassociateResourceResponseElement$: StaticStructureSchema;
60
61
  export declare var FreeTierConfig$: StaticStructureSchema;
61
62
  export declare var GetBillingGroupCostReportInput$: StaticStructureSchema;
62
63
  export declare var GetBillingGroupCostReportOutput$: StaticStructureSchema;
64
+ export declare var GetBillingTransferPreferenceInput$: StaticStructureSchema;
65
+ export declare var GetBillingTransferPreferenceOutput$: StaticStructureSchema;
63
66
  export declare var LineItemFilter$: StaticStructureSchema;
64
67
  export declare var ListAccountAssociationsFilter$: StaticStructureSchema;
65
68
  export declare var ListAccountAssociationsInput$: StaticStructureSchema;
@@ -109,6 +112,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
109
112
  export declare var UpdateBillingGroupAccountGrouping$: StaticStructureSchema;
110
113
  export declare var UpdateBillingGroupInput$: StaticStructureSchema;
111
114
  export declare var UpdateBillingGroupOutput$: StaticStructureSchema;
115
+ export declare var UpdateBillingTransferPreferenceInput$: StaticStructureSchema;
116
+ export declare var UpdateBillingTransferPreferenceOutput$: StaticStructureSchema;
112
117
  export declare var UpdateCustomLineItemChargeDetails$: StaticStructureSchema;
113
118
  export declare var UpdateCustomLineItemFlatChargeDetails$: StaticStructureSchema;
114
119
  export declare var UpdateCustomLineItemInput$: StaticStructureSchema;
@@ -136,6 +141,7 @@ export declare var DeletePricingRule$: StaticOperationSchema;
136
141
  export declare var DisassociateAccounts$: StaticOperationSchema;
137
142
  export declare var DisassociatePricingRules$: StaticOperationSchema;
138
143
  export declare var GetBillingGroupCostReport$: StaticOperationSchema;
144
+ export declare var GetBillingTransferPreference$: StaticOperationSchema;
139
145
  export declare var ListAccountAssociations$: StaticOperationSchema;
140
146
  export declare var ListBillingGroupCostReports$: StaticOperationSchema;
141
147
  export declare var ListBillingGroups$: StaticOperationSchema;
@@ -150,6 +156,7 @@ export declare var ListTagsForResource$: StaticOperationSchema;
150
156
  export declare var TagResource$: StaticOperationSchema;
151
157
  export declare var UntagResource$: StaticOperationSchema;
152
158
  export declare var UpdateBillingGroup$: StaticOperationSchema;
159
+ export declare var UpdateBillingTransferPreference$: StaticOperationSchema;
153
160
  export declare var UpdateCustomLineItem$: StaticOperationSchema;
154
161
  export declare var UpdatePricingPlan$: StaticOperationSchema;
155
162
  export declare var UpdatePricingRule$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-billingconductor",
3
- "version": "3.1136.0",
3
+ "version": "3.1138.0",
4
4
  "description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-billingconductor",
6
6
  "license": "Apache-2.0",
@@ -46,13 +46,13 @@
46
46
  "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.978.0",
50
- "@aws-sdk/credential-provider-node": "^3.972.83",
51
- "@aws-sdk/types": "^3.974.5",
52
- "@smithy/core": "^3.33.3",
53
- "@smithy/fetch-http-handler": "^5.7.2",
54
- "@smithy/node-http-handler": "^4.11.3",
55
- "@smithy/types": "^4.17.2",
49
+ "@aws-sdk/core": "^3.978.1",
50
+ "@aws-sdk/credential-provider-node": "^3.972.84",
51
+ "@aws-sdk/types": "^3.974.6",
52
+ "@smithy/core": "^3.35.0",
53
+ "@smithy/fetch-http-handler": "^5.8.0",
54
+ "@smithy/node-http-handler": "^4.12.1",
55
+ "@smithy/types": "^4.19.0",
56
56
  "tslib": "^2.6.2"
57
57
  },
58
58
  "devDependencies": {