@aws-sdk/client-billingconductor 3.325.0 → 3.326.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.
Files changed (32) hide show
  1. package/dist-types/commands/AssociateAccountsCommand.d.ts +6 -0
  2. package/dist-types/commands/AssociatePricingRulesCommand.d.ts +6 -0
  3. package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +23 -0
  4. package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +23 -0
  5. package/dist-types/commands/CreateBillingGroupCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateCustomLineItemCommand.d.ts +6 -0
  7. package/dist-types/commands/CreatePricingPlanCommand.d.ts +6 -0
  8. package/dist-types/commands/CreatePricingRuleCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteBillingGroupCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +6 -0
  11. package/dist-types/commands/DeletePricingPlanCommand.d.ts +6 -0
  12. package/dist-types/commands/DeletePricingRuleCommand.d.ts +6 -0
  13. package/dist-types/commands/DisassociateAccountsCommand.d.ts +6 -0
  14. package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +6 -0
  15. package/dist-types/commands/ListAccountAssociationsCommand.d.ts +14 -0
  16. package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListBillingGroupsCommand.d.ts +22 -0
  18. package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +31 -0
  19. package/dist-types/commands/ListCustomLineItemsCommand.d.ts +28 -0
  20. package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +11 -0
  21. package/dist-types/commands/ListPricingPlansCommand.d.ts +17 -0
  22. package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +11 -0
  23. package/dist-types/commands/ListPricingRulesCommand.d.ts +29 -0
  24. package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +14 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  28. package/dist-types/commands/UpdateBillingGroupCommand.d.ts +14 -0
  29. package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +20 -0
  30. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +10 -0
  31. package/dist-types/commands/UpdatePricingRuleCommand.d.ts +22 -0
  32. package/package.json +3 -3
@@ -37,6 +37,10 @@ export interface AssociateAccountsCommandOutput extends AssociateAccountsOutput,
37
37
  * };
38
38
  * const command = new AssociateAccountsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // AssociateAccountsOutput
41
+ * // Arn: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param AssociateAccountsCommandInput - {@link AssociateAccountsCommandInput}
@@ -72,6 +76,8 @@ export interface AssociateAccountsCommandOutput extends AssociateAccountsOutput,
72
76
  * @throws {@link ValidationException} (client fault)
73
77
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
74
78
  *
79
+ * @throws {@link BillingconductorServiceException}
80
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
75
81
  *
76
82
  */
77
83
  export declare class AssociateAccountsCommand extends $Command<AssociateAccountsCommandInput, AssociateAccountsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -35,6 +35,10 @@ export interface AssociatePricingRulesCommandOutput extends AssociatePricingRule
35
35
  * };
36
36
  * const command = new AssociatePricingRulesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // AssociatePricingRulesOutput
39
+ * // Arn: "STRING_VALUE",
40
+ * // };
41
+ *
38
42
  * ```
39
43
  *
40
44
  * @param AssociatePricingRulesCommandInput - {@link AssociatePricingRulesCommandInput}
@@ -70,6 +74,8 @@ export interface AssociatePricingRulesCommandOutput extends AssociatePricingRule
70
74
  * @throws {@link ValidationException} (client fault)
71
75
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
72
76
  *
77
+ * @throws {@link BillingconductorServiceException}
78
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
73
79
  *
74
80
  */
75
81
  export declare class AssociatePricingRulesCommand extends $Command<AssociatePricingRulesCommandInput, AssociatePricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
@@ -40,6 +40,27 @@ export interface BatchAssociateResourcesToCustomLineItemCommandOutput extends Ba
40
40
  * };
41
41
  * const command = new BatchAssociateResourcesToCustomLineItemCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // BatchAssociateResourcesToCustomLineItemOutput
44
+ * // SuccessfullyAssociatedResources: [ // AssociateResourcesResponseList
45
+ * // { // AssociateResourceResponseElement
46
+ * // Arn: "STRING_VALUE",
47
+ * // Error: { // AssociateResourceError
48
+ * // Message: "STRING_VALUE",
49
+ * // Reason: "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // FailedAssociatedResources: [
54
+ * // {
55
+ * // Arn: "STRING_VALUE",
56
+ * // Error: {
57
+ * // Message: "STRING_VALUE",
58
+ * // Reason: "STRING_VALUE",
59
+ * // },
60
+ * // },
61
+ * // ],
62
+ * // };
63
+ *
43
64
  * ```
44
65
  *
45
66
  * @param BatchAssociateResourcesToCustomLineItemCommandInput - {@link BatchAssociateResourcesToCustomLineItemCommandInput}
@@ -75,6 +96,8 @@ export interface BatchAssociateResourcesToCustomLineItemCommandOutput extends Ba
75
96
  * @throws {@link ValidationException} (client fault)
76
97
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
77
98
  *
99
+ * @throws {@link BillingconductorServiceException}
100
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
78
101
  *
79
102
  */
80
103
  export declare class BatchAssociateResourcesToCustomLineItemCommand extends $Command<BatchAssociateResourcesToCustomLineItemCommandInput, BatchAssociateResourcesToCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -40,6 +40,27 @@ export interface BatchDisassociateResourcesFromCustomLineItemCommandOutput exten
40
40
  * };
41
41
  * const command = new BatchDisassociateResourcesFromCustomLineItemCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // BatchDisassociateResourcesFromCustomLineItemOutput
44
+ * // SuccessfullyDisassociatedResources: [ // DisassociateResourcesResponseList
45
+ * // { // DisassociateResourceResponseElement
46
+ * // Arn: "STRING_VALUE",
47
+ * // Error: { // AssociateResourceError
48
+ * // Message: "STRING_VALUE",
49
+ * // Reason: "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // FailedDisassociatedResources: [
54
+ * // {
55
+ * // Arn: "STRING_VALUE",
56
+ * // Error: {
57
+ * // Message: "STRING_VALUE",
58
+ * // Reason: "STRING_VALUE",
59
+ * // },
60
+ * // },
61
+ * // ],
62
+ * // };
63
+ *
43
64
  * ```
44
65
  *
45
66
  * @param BatchDisassociateResourcesFromCustomLineItemCommandInput - {@link BatchDisassociateResourcesFromCustomLineItemCommandInput}
@@ -71,6 +92,8 @@ export interface BatchDisassociateResourcesFromCustomLineItemCommandOutput exten
71
92
  * @throws {@link ValidationException} (client fault)
72
93
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
73
94
  *
95
+ * @throws {@link BillingconductorServiceException}
96
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
74
97
  *
75
98
  */
76
99
  export declare class BatchDisassociateResourcesFromCustomLineItemCommand extends $Command<BatchDisassociateResourcesFromCustomLineItemCommandInput, BatchDisassociateResourcesFromCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -47,6 +47,10 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupOutpu
47
47
  * };
48
48
  * const command = new CreateBillingGroupCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // CreateBillingGroupOutput
51
+ * // Arn: "STRING_VALUE",
52
+ * // };
53
+ *
50
54
  * ```
51
55
  *
52
56
  * @param CreateBillingGroupCommandInput - {@link CreateBillingGroupCommandInput}
@@ -78,6 +82,8 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupOutpu
78
82
  * @throws {@link ValidationException} (client fault)
79
83
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
80
84
  *
85
+ * @throws {@link BillingconductorServiceException}
86
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
81
87
  *
82
88
  */
83
89
  export declare class CreateBillingGroupCommand extends $Command<CreateBillingGroupCommandInput, CreateBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
@@ -55,6 +55,10 @@ export interface CreateCustomLineItemCommandOutput extends CreateCustomLineItemO
55
55
  * };
56
56
  * const command = new CreateCustomLineItemCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // CreateCustomLineItemOutput
59
+ * // Arn: "STRING_VALUE",
60
+ * // };
61
+ *
58
62
  * ```
59
63
  *
60
64
  * @param CreateCustomLineItemCommandInput - {@link CreateCustomLineItemCommandInput}
@@ -86,6 +90,8 @@ export interface CreateCustomLineItemCommandOutput extends CreateCustomLineItemO
86
90
  * @throws {@link ValidationException} (client fault)
87
91
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
88
92
  *
93
+ * @throws {@link BillingconductorServiceException}
94
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
89
95
  *
90
96
  */
91
97
  export declare class CreateCustomLineItemCommand extends $Command<CreateCustomLineItemCommandInput, CreateCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -40,6 +40,10 @@ export interface CreatePricingPlanCommandOutput extends CreatePricingPlanOutput,
40
40
  * };
41
41
  * const command = new CreatePricingPlanCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreatePricingPlanOutput
44
+ * // Arn: "STRING_VALUE",
45
+ * // };
46
+ *
43
47
  * ```
44
48
  *
45
49
  * @param CreatePricingPlanCommandInput - {@link CreatePricingPlanCommandInput}
@@ -75,6 +79,8 @@ export interface CreatePricingPlanCommandOutput extends CreatePricingPlanOutput,
75
79
  * @throws {@link ValidationException} (client fault)
76
80
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
77
81
  *
82
+ * @throws {@link BillingconductorServiceException}
83
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
78
84
  *
79
85
  */
80
86
  export declare class CreatePricingPlanCommand extends $Command<CreatePricingPlanCommandInput, CreatePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
@@ -50,6 +50,10 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput,
50
50
  * };
51
51
  * const command = new CreatePricingRuleCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // CreatePricingRuleOutput
54
+ * // Arn: "STRING_VALUE",
55
+ * // };
56
+ *
53
57
  * ```
54
58
  *
55
59
  * @param CreatePricingRuleCommandInput - {@link CreatePricingRuleCommandInput}
@@ -81,6 +85,8 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput,
81
85
  * @throws {@link ValidationException} (client fault)
82
86
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
83
87
  *
88
+ * @throws {@link BillingconductorServiceException}
89
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
84
90
  *
85
91
  */
86
92
  export declare class CreatePricingRuleCommand extends $Command<CreatePricingRuleCommandInput, CreatePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupOutpu
33
33
  * };
34
34
  * const command = new DeleteBillingGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteBillingGroupOutput
37
+ * // Arn: "STRING_VALUE",
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param DeleteBillingGroupCommandInput - {@link DeleteBillingGroupCommandInput}
@@ -56,6 +60,8 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupOutpu
56
60
  * @throws {@link ValidationException} (client fault)
57
61
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
58
62
  *
63
+ * @throws {@link BillingconductorServiceException}
64
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
59
65
  *
60
66
  */
61
67
  export declare class DeleteBillingGroupCommand extends $Command<DeleteBillingGroupCommandInput, DeleteBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
@@ -37,6 +37,10 @@ export interface DeleteCustomLineItemCommandOutput extends DeleteCustomLineItemO
37
37
  * };
38
38
  * const command = new DeleteCustomLineItemCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DeleteCustomLineItemOutput
41
+ * // Arn: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param DeleteCustomLineItemCommandInput - {@link DeleteCustomLineItemCommandInput}
@@ -64,6 +68,8 @@ export interface DeleteCustomLineItemCommandOutput extends DeleteCustomLineItemO
64
68
  * @throws {@link ValidationException} (client fault)
65
69
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
66
70
  *
71
+ * @throws {@link BillingconductorServiceException}
72
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
67
73
  *
68
74
  */
69
75
  export declare class DeleteCustomLineItemCommand extends $Command<DeleteCustomLineItemCommandInput, DeleteCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeletePricingPlanCommandOutput extends DeletePricingPlanOutput,
32
32
  * };
33
33
  * const command = new DeletePricingPlanCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeletePricingPlanOutput
36
+ * // Arn: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeletePricingPlanCommandInput - {@link DeletePricingPlanCommandInput}
@@ -59,6 +63,8 @@ export interface DeletePricingPlanCommandOutput extends DeletePricingPlanOutput,
59
63
  * @throws {@link ValidationException} (client fault)
60
64
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
61
65
  *
66
+ * @throws {@link BillingconductorServiceException}
67
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
62
68
  *
63
69
  */
64
70
  export declare class DeletePricingPlanCommand extends $Command<DeletePricingPlanCommandInput, DeletePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
@@ -31,6 +31,10 @@ export interface DeletePricingRuleCommandOutput extends DeletePricingRuleOutput,
31
31
  * };
32
32
  * const command = new DeletePricingRuleCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeletePricingRuleOutput
35
+ * // Arn: "STRING_VALUE",
36
+ * // };
37
+ *
34
38
  * ```
35
39
  *
36
40
  * @param DeletePricingRuleCommandInput - {@link DeletePricingRuleCommandInput}
@@ -58,6 +62,8 @@ export interface DeletePricingRuleCommandOutput extends DeletePricingRuleOutput,
58
62
  * @throws {@link ValidationException} (client fault)
59
63
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
60
64
  *
65
+ * @throws {@link BillingconductorServiceException}
66
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
61
67
  *
62
68
  */
63
69
  export declare class DeletePricingRuleCommand extends $Command<DeletePricingRuleCommandInput, DeletePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface DisassociateAccountsCommandOutput extends DisassociateAccountsO
34
34
  * };
35
35
  * const command = new DisassociateAccountsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DisassociateAccountsOutput
38
+ * // Arn: "STRING_VALUE",
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param DisassociateAccountsCommandInput - {@link DisassociateAccountsCommandInput}
@@ -65,6 +69,8 @@ export interface DisassociateAccountsCommandOutput extends DisassociateAccountsO
65
69
  * @throws {@link ValidationException} (client fault)
66
70
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
67
71
  *
72
+ * @throws {@link BillingconductorServiceException}
73
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
68
74
  *
69
75
  */
70
76
  export declare class DisassociateAccountsCommand extends $Command<DisassociateAccountsCommandInput, DisassociateAccountsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -36,6 +36,10 @@ export interface DisassociatePricingRulesCommandOutput extends DisassociatePrici
36
36
  * };
37
37
  * const command = new DisassociatePricingRulesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DisassociatePricingRulesOutput
40
+ * // Arn: "STRING_VALUE",
41
+ * // };
42
+ *
39
43
  * ```
40
44
  *
41
45
  * @param DisassociatePricingRulesCommandInput - {@link DisassociatePricingRulesCommandInput}
@@ -67,6 +71,8 @@ export interface DisassociatePricingRulesCommandOutput extends DisassociatePrici
67
71
  * @throws {@link ValidationException} (client fault)
68
72
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
69
73
  *
74
+ * @throws {@link BillingconductorServiceException}
75
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
70
76
  *
71
77
  */
72
78
  export declare class DisassociatePricingRulesCommand extends $Command<DisassociatePricingRulesCommandInput, DisassociatePricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
@@ -42,6 +42,18 @@ export interface ListAccountAssociationsCommandOutput extends ListAccountAssocia
42
42
  * };
43
43
  * const command = new ListAccountAssociationsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListAccountAssociationsOutput
46
+ * // LinkedAccounts: [ // AccountAssociationsList
47
+ * // { // AccountAssociationsListElement
48
+ * // AccountId: "STRING_VALUE",
49
+ * // BillingGroupArn: "STRING_VALUE",
50
+ * // AccountName: "STRING_VALUE",
51
+ * // AccountEmail: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
45
57
  * ```
46
58
  *
47
59
  * @param ListAccountAssociationsCommandInput - {@link ListAccountAssociationsCommandInput}
@@ -69,6 +81,8 @@ export interface ListAccountAssociationsCommandOutput extends ListAccountAssocia
69
81
  * @throws {@link ValidationException} (client fault)
70
82
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
71
83
  *
84
+ * @throws {@link BillingconductorServiceException}
85
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
72
86
  *
73
87
  */
74
88
  export declare class ListAccountAssociationsCommand extends $Command<ListAccountAssociationsCommandInput, ListAccountAssociationsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -39,6 +39,20 @@ export interface ListBillingGroupCostReportsCommandOutput extends ListBillingGro
39
39
  * };
40
40
  * const command = new ListBillingGroupCostReportsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListBillingGroupCostReportsOutput
43
+ * // BillingGroupCostReports: [ // BillingGroupCostReportList
44
+ * // { // BillingGroupCostReportElement
45
+ * // Arn: "STRING_VALUE",
46
+ * // AWSCost: "STRING_VALUE",
47
+ * // ProformaCost: "STRING_VALUE",
48
+ * // Margin: "STRING_VALUE",
49
+ * // MarginPercentage: "STRING_VALUE",
50
+ * // Currency: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
42
56
  * ```
43
57
  *
44
58
  * @param ListBillingGroupCostReportsCommandInput - {@link ListBillingGroupCostReportsCommandInput}
@@ -66,6 +80,8 @@ export interface ListBillingGroupCostReportsCommandOutput extends ListBillingGro
66
80
  * @throws {@link ValidationException} (client fault)
67
81
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
68
82
  *
83
+ * @throws {@link BillingconductorServiceException}
84
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
69
85
  *
70
86
  */
71
87
  export declare class ListBillingGroupCostReportsCommand extends $Command<ListBillingGroupCostReportsCommandInput, ListBillingGroupCostReportsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -42,6 +42,26 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsOutput,
42
42
  * };
43
43
  * const command = new ListBillingGroupsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListBillingGroupsOutput
46
+ * // BillingGroups: [ // BillingGroupList
47
+ * // { // BillingGroupListElement
48
+ * // Name: "STRING_VALUE",
49
+ * // Arn: "STRING_VALUE",
50
+ * // Description: "STRING_VALUE",
51
+ * // PrimaryAccountId: "STRING_VALUE",
52
+ * // ComputationPreference: { // ComputationPreference
53
+ * // PricingPlanArn: "STRING_VALUE", // required
54
+ * // },
55
+ * // Size: Number("long"),
56
+ * // CreationTime: Number("long"),
57
+ * // LastModifiedTime: Number("long"),
58
+ * // Status: "STRING_VALUE",
59
+ * // StatusReason: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // NextToken: "STRING_VALUE",
63
+ * // };
64
+ *
45
65
  * ```
46
66
  *
47
67
  * @param ListBillingGroupsCommandInput - {@link ListBillingGroupsCommandInput}
@@ -69,6 +89,8 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsOutput,
69
89
  * @throws {@link ValidationException} (client fault)
70
90
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
71
91
  *
92
+ * @throws {@link BillingconductorServiceException}
93
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
72
94
  *
73
95
  */
74
96
  export declare class ListBillingGroupsCommand extends $Command<ListBillingGroupsCommandInput, ListBillingGroupsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -39,6 +39,35 @@ export interface ListCustomLineItemVersionsCommandOutput extends ListCustomLineI
39
39
  * };
40
40
  * const command = new ListCustomLineItemVersionsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListCustomLineItemVersionsOutput
43
+ * // CustomLineItemVersions: [ // CustomLineItemVersionList
44
+ * // { // CustomLineItemVersionListElement
45
+ * // Name: "STRING_VALUE",
46
+ * // ChargeDetails: { // ListCustomLineItemChargeDetails
47
+ * // Flat: { // ListCustomLineItemFlatChargeDetails
48
+ * // ChargeValue: Number("double"), // required
49
+ * // },
50
+ * // Percentage: { // ListCustomLineItemPercentageChargeDetails
51
+ * // PercentageValue: Number("double"), // required
52
+ * // },
53
+ * // Type: "STRING_VALUE", // required
54
+ * // },
55
+ * // CurrencyCode: "STRING_VALUE",
56
+ * // Description: "STRING_VALUE",
57
+ * // ProductCode: "STRING_VALUE",
58
+ * // BillingGroupArn: "STRING_VALUE",
59
+ * // CreationTime: Number("long"),
60
+ * // LastModifiedTime: Number("long"),
61
+ * // AssociationSize: Number("long"),
62
+ * // StartBillingPeriod: "STRING_VALUE",
63
+ * // EndBillingPeriod: "STRING_VALUE",
64
+ * // Arn: "STRING_VALUE",
65
+ * // StartTime: Number("long"),
66
+ * // },
67
+ * // ],
68
+ * // NextToken: "STRING_VALUE",
69
+ * // };
70
+ *
42
71
  * ```
43
72
  *
44
73
  * @param ListCustomLineItemVersionsCommandInput - {@link ListCustomLineItemVersionsCommandInput}
@@ -62,6 +91,8 @@ export interface ListCustomLineItemVersionsCommandOutput extends ListCustomLineI
62
91
  * @throws {@link ValidationException} (client fault)
63
92
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
64
93
  *
94
+ * @throws {@link BillingconductorServiceException}
95
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
65
96
  *
66
97
  */
67
98
  export declare class ListCustomLineItemVersionsCommand extends $Command<ListCustomLineItemVersionsCommandInput, ListCustomLineItemVersionsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -46,6 +46,32 @@ export interface ListCustomLineItemsCommandOutput extends ListCustomLineItemsOut
46
46
  * };
47
47
  * const command = new ListCustomLineItemsCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // ListCustomLineItemsOutput
50
+ * // CustomLineItems: [ // CustomLineItemList
51
+ * // { // CustomLineItemListElement
52
+ * // Arn: "STRING_VALUE",
53
+ * // Name: "STRING_VALUE",
54
+ * // ChargeDetails: { // ListCustomLineItemChargeDetails
55
+ * // Flat: { // ListCustomLineItemFlatChargeDetails
56
+ * // ChargeValue: Number("double"), // required
57
+ * // },
58
+ * // Percentage: { // ListCustomLineItemPercentageChargeDetails
59
+ * // PercentageValue: Number("double"), // required
60
+ * // },
61
+ * // Type: "STRING_VALUE", // required
62
+ * // },
63
+ * // CurrencyCode: "STRING_VALUE",
64
+ * // Description: "STRING_VALUE",
65
+ * // ProductCode: "STRING_VALUE",
66
+ * // BillingGroupArn: "STRING_VALUE",
67
+ * // CreationTime: Number("long"),
68
+ * // LastModifiedTime: Number("long"),
69
+ * // AssociationSize: Number("long"),
70
+ * // },
71
+ * // ],
72
+ * // NextToken: "STRING_VALUE",
73
+ * // };
74
+ *
49
75
  * ```
50
76
  *
51
77
  * @param ListCustomLineItemsCommandInput - {@link ListCustomLineItemsCommandInput}
@@ -73,6 +99,8 @@ export interface ListCustomLineItemsCommandOutput extends ListCustomLineItemsOut
73
99
  * @throws {@link ValidationException} (client fault)
74
100
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
75
101
  *
102
+ * @throws {@link BillingconductorServiceException}
103
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
76
104
  *
77
105
  */
78
106
  export declare class ListCustomLineItemsCommand extends $Command<ListCustomLineItemsCommandInput, ListCustomLineItemsCommandOutput, BillingconductorClientResolvedConfig> {
@@ -36,6 +36,15 @@ export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput extends
36
36
  * };
37
37
  * const command = new ListPricingPlansAssociatedWithPricingRuleCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListPricingPlansAssociatedWithPricingRuleOutput
40
+ * // BillingPeriod: "STRING_VALUE",
41
+ * // PricingRuleArn: "STRING_VALUE",
42
+ * // PricingPlanArns: [ // PricingPlanArns
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // NextToken: "STRING_VALUE",
46
+ * // };
47
+ *
39
48
  * ```
40
49
  *
41
50
  * @param ListPricingPlansAssociatedWithPricingRuleCommandInput - {@link ListPricingPlansAssociatedWithPricingRuleCommandInput}
@@ -63,6 +72,8 @@ export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput extends
63
72
  * @throws {@link ValidationException} (client fault)
64
73
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
65
74
  *
75
+ * @throws {@link BillingconductorServiceException}
76
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
66
77
  *
67
78
  */
68
79
  export declare class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command<ListPricingPlansAssociatedWithPricingRuleCommandInput, ListPricingPlansAssociatedWithPricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
@@ -39,6 +39,21 @@ export interface ListPricingPlansCommandOutput extends ListPricingPlansOutput, _
39
39
  * };
40
40
  * const command = new ListPricingPlansCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListPricingPlansOutput
43
+ * // BillingPeriod: "STRING_VALUE",
44
+ * // PricingPlans: [ // PricingPlanList
45
+ * // { // PricingPlanListElement
46
+ * // Name: "STRING_VALUE",
47
+ * // Arn: "STRING_VALUE",
48
+ * // Description: "STRING_VALUE",
49
+ * // Size: Number("long"),
50
+ * // CreationTime: Number("long"),
51
+ * // LastModifiedTime: Number("long"),
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
42
57
  * ```
43
58
  *
44
59
  * @param ListPricingPlansCommandInput - {@link ListPricingPlansCommandInput}
@@ -62,6 +77,8 @@ export interface ListPricingPlansCommandOutput extends ListPricingPlansOutput, _
62
77
  * @throws {@link ValidationException} (client fault)
63
78
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
64
79
  *
80
+ * @throws {@link BillingconductorServiceException}
81
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
65
82
  *
66
83
  */
67
84
  export declare class ListPricingPlansCommand extends $Command<ListPricingPlansCommandInput, ListPricingPlansCommandOutput, BillingconductorClientResolvedConfig> {
@@ -36,6 +36,15 @@ export interface ListPricingRulesAssociatedToPricingPlanCommandOutput extends Li
36
36
  * };
37
37
  * const command = new ListPricingRulesAssociatedToPricingPlanCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListPricingRulesAssociatedToPricingPlanOutput
40
+ * // BillingPeriod: "STRING_VALUE",
41
+ * // PricingPlanArn: "STRING_VALUE",
42
+ * // PricingRuleArns: [ // PricingRuleArns
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // NextToken: "STRING_VALUE",
46
+ * // };
47
+ *
39
48
  * ```
40
49
  *
41
50
  * @param ListPricingRulesAssociatedToPricingPlanCommandInput - {@link ListPricingRulesAssociatedToPricingPlanCommandInput}
@@ -63,6 +72,8 @@ export interface ListPricingRulesAssociatedToPricingPlanCommandOutput extends Li
63
72
  * @throws {@link ValidationException} (client fault)
64
73
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
65
74
  *
75
+ * @throws {@link BillingconductorServiceException}
76
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
66
77
  *
67
78
  */
68
79
  export declare class ListPricingRulesAssociatedToPricingPlanCommand extends $Command<ListPricingRulesAssociatedToPricingPlanCommandInput, ListPricingRulesAssociatedToPricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
@@ -40,6 +40,33 @@ export interface ListPricingRulesCommandOutput extends ListPricingRulesOutput, _
40
40
  * };
41
41
  * const command = new ListPricingRulesCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ListPricingRulesOutput
44
+ * // BillingPeriod: "STRING_VALUE",
45
+ * // PricingRules: [ // PricingRuleList
46
+ * // { // PricingRuleListElement
47
+ * // Name: "STRING_VALUE",
48
+ * // Arn: "STRING_VALUE",
49
+ * // Description: "STRING_VALUE",
50
+ * // Scope: "STRING_VALUE",
51
+ * // Type: "STRING_VALUE",
52
+ * // ModifierPercentage: Number("double"),
53
+ * // Service: "STRING_VALUE",
54
+ * // AssociatedPricingPlanCount: Number("long"),
55
+ * // CreationTime: Number("long"),
56
+ * // LastModifiedTime: Number("long"),
57
+ * // BillingEntity: "STRING_VALUE",
58
+ * // Tiering: { // Tiering
59
+ * // FreeTier: { // FreeTierConfig
60
+ * // Activated: true || false, // required
61
+ * // },
62
+ * // },
63
+ * // UsageType: "STRING_VALUE",
64
+ * // Operation: "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // NextToken: "STRING_VALUE",
68
+ * // };
69
+ *
43
70
  * ```
44
71
  *
45
72
  * @param ListPricingRulesCommandInput - {@link ListPricingRulesCommandInput}
@@ -63,6 +90,8 @@ export interface ListPricingRulesCommandOutput extends ListPricingRulesOutput, _
63
90
  * @throws {@link ValidationException} (client fault)
64
91
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
65
92
  *
93
+ * @throws {@link BillingconductorServiceException}
94
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
66
95
  *
67
96
  */
68
97
  export declare class ListPricingRulesCommand extends $Command<ListPricingRulesCommandInput, ListPricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
@@ -39,6 +39,18 @@ export interface ListResourcesAssociatedToCustomLineItemCommandOutput extends Li
39
39
  * };
40
40
  * const command = new ListResourcesAssociatedToCustomLineItemCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListResourcesAssociatedToCustomLineItemOutput
43
+ * // Arn: "STRING_VALUE",
44
+ * // AssociatedResources: [ // ListResourcesAssociatedToCustomLineItemResponseList
45
+ * // { // ListResourcesAssociatedToCustomLineItemResponseElement
46
+ * // Arn: "STRING_VALUE",
47
+ * // Relationship: "STRING_VALUE",
48
+ * // EndBillingPeriod: "STRING_VALUE",
49
+ * // },
50
+ * // ],
51
+ * // NextToken: "STRING_VALUE",
52
+ * // };
53
+ *
42
54
  * ```
43
55
  *
44
56
  * @param ListResourcesAssociatedToCustomLineItemCommandInput - {@link ListResourcesAssociatedToCustomLineItemCommandInput}
@@ -66,6 +78,8 @@ export interface ListResourcesAssociatedToCustomLineItemCommandOutput extends Li
66
78
  * @throws {@link ValidationException} (client fault)
67
79
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
68
80
  *
81
+ * @throws {@link BillingconductorServiceException}
82
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
69
83
  *
70
84
  */
71
85
  export declare class ListResourcesAssociatedToCustomLineItemCommand extends $Command<ListResourcesAssociatedToCustomLineItemCommandInput, ListResourcesAssociatedToCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -33,6 +33,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // Tags: { // TagMap
38
+ * // "<keys>": "STRING_VALUE",
39
+ * // },
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -60,6 +66,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
60
66
  * @throws {@link ValidationException} (client fault)
61
67
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
62
68
  *
69
+ * @throws {@link BillingconductorServiceException}
70
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
63
71
  *
64
72
  */
65
73
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BillingconductorClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
36
36
  * };
37
37
  * const command = new TagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -63,6 +65,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
63
65
  * @throws {@link ValidationException} (client fault)
64
66
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
65
67
  *
68
+ * @throws {@link BillingconductorServiceException}
69
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
66
70
  *
67
71
  */
68
72
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BillingconductorClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
36
36
  * };
37
37
  * const command = new UntagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -63,6 +65,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
63
65
  * @throws {@link ValidationException} (client fault)
64
66
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
65
67
  *
68
+ * @throws {@link BillingconductorServiceException}
69
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
66
70
  *
67
71
  */
68
72
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BillingconductorClientResolvedConfig> {
@@ -38,6 +38,18 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupOutpu
38
38
  * };
39
39
  * const command = new UpdateBillingGroupCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateBillingGroupOutput
42
+ * // Arn: "STRING_VALUE",
43
+ * // Name: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // PrimaryAccountId: "STRING_VALUE",
46
+ * // PricingPlanArn: "STRING_VALUE",
47
+ * // Size: Number("long"),
48
+ * // LastModifiedTime: Number("long"),
49
+ * // Status: "STRING_VALUE",
50
+ * // StatusReason: "STRING_VALUE",
51
+ * // };
52
+ *
41
53
  * ```
42
54
  *
43
55
  * @param UpdateBillingGroupCommandInput - {@link UpdateBillingGroupCommandInput}
@@ -69,6 +81,8 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupOutpu
69
81
  * @throws {@link ValidationException} (client fault)
70
82
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
71
83
  *
84
+ * @throws {@link BillingconductorServiceException}
85
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
72
86
  *
73
87
  */
74
88
  export declare class UpdateBillingGroupCommand extends $Command<UpdateBillingGroupCommandInput, UpdateBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
@@ -47,6 +47,24 @@ export interface UpdateCustomLineItemCommandOutput extends UpdateCustomLineItemO
47
47
  * };
48
48
  * const command = new UpdateCustomLineItemCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // UpdateCustomLineItemOutput
51
+ * // Arn: "STRING_VALUE",
52
+ * // BillingGroupArn: "STRING_VALUE",
53
+ * // Name: "STRING_VALUE",
54
+ * // Description: "STRING_VALUE",
55
+ * // ChargeDetails: { // ListCustomLineItemChargeDetails
56
+ * // Flat: { // ListCustomLineItemFlatChargeDetails
57
+ * // ChargeValue: Number("double"), // required
58
+ * // },
59
+ * // Percentage: { // ListCustomLineItemPercentageChargeDetails
60
+ * // PercentageValue: Number("double"), // required
61
+ * // },
62
+ * // Type: "STRING_VALUE", // required
63
+ * // },
64
+ * // LastModifiedTime: Number("long"),
65
+ * // AssociationSize: Number("long"),
66
+ * // };
67
+ *
50
68
  * ```
51
69
  *
52
70
  * @param UpdateCustomLineItemCommandInput - {@link UpdateCustomLineItemCommandInput}
@@ -74,6 +92,8 @@ export interface UpdateCustomLineItemCommandOutput extends UpdateCustomLineItemO
74
92
  * @throws {@link ValidationException} (client fault)
75
93
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
76
94
  *
95
+ * @throws {@link BillingconductorServiceException}
96
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
77
97
  *
78
98
  */
79
99
  export declare class UpdateCustomLineItemCommand extends $Command<UpdateCustomLineItemCommandInput, UpdateCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
@@ -34,6 +34,14 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanOutput,
34
34
  * };
35
35
  * const command = new UpdatePricingPlanCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdatePricingPlanOutput
38
+ * // Arn: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // Size: Number("long"),
42
+ * // LastModifiedTime: Number("long"),
43
+ * // };
44
+ *
37
45
  * ```
38
46
  *
39
47
  * @param UpdatePricingPlanCommandInput - {@link UpdatePricingPlanCommandInput}
@@ -65,6 +73,8 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanOutput,
65
73
  * @throws {@link ValidationException} (client fault)
66
74
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
67
75
  *
76
+ * @throws {@link BillingconductorServiceException}
77
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
68
78
  *
69
79
  */
70
80
  export declare class UpdatePricingPlanCommand extends $Command<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
@@ -42,6 +42,26 @@ export interface UpdatePricingRuleCommandOutput extends UpdatePricingRuleOutput,
42
42
  * };
43
43
  * const command = new UpdatePricingRuleCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // UpdatePricingRuleOutput
46
+ * // Arn: "STRING_VALUE",
47
+ * // Name: "STRING_VALUE",
48
+ * // Description: "STRING_VALUE",
49
+ * // Scope: "STRING_VALUE",
50
+ * // Type: "STRING_VALUE",
51
+ * // ModifierPercentage: Number("double"),
52
+ * // Service: "STRING_VALUE",
53
+ * // AssociatedPricingPlanCount: Number("long"),
54
+ * // LastModifiedTime: Number("long"),
55
+ * // BillingEntity: "STRING_VALUE",
56
+ * // Tiering: { // UpdateTieringInput
57
+ * // FreeTier: { // UpdateFreeTierConfig
58
+ * // Activated: true || false, // required
59
+ * // },
60
+ * // },
61
+ * // UsageType: "STRING_VALUE",
62
+ * // Operation: "STRING_VALUE",
63
+ * // };
64
+ *
45
65
  * ```
46
66
  *
47
67
  * @param UpdatePricingRuleCommandInput - {@link UpdatePricingRuleCommandInput}
@@ -73,6 +93,8 @@ export interface UpdatePricingRuleCommandOutput extends UpdatePricingRuleOutput,
73
93
  * @throws {@link ValidationException} (client fault)
74
94
  * <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
75
95
  *
96
+ * @throws {@link BillingconductorServiceException}
97
+ * <p>Base exception class for all service exceptions from Billingconductor service.</p>
76
98
  *
77
99
  */
78
100
  export declare class UpdatePricingRuleCommand extends $Command<UpdatePricingRuleCommandInput, UpdatePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
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.325.0",
4
+ "version": "3.326.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.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.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",