@aws-sdk/client-budgets 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.
Files changed (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Budgets.d.ts +407 -120
  3. package/dist-types/ts3.4/BudgetsClient.d.ts +242 -96
  4. package/dist-types/ts3.4/commands/CreateBudgetActionCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/UpdateBudgetActionCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/BudgetsServiceException.d.ts +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +678 -906
  33. package/dist-types/ts3.4/pagination/DescribeBudgetActionHistoriesPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/DescribeBudgetActionsForAccountPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/DescribeBudgetActionsForBudgetPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeBudgetNotificationsForAccountPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/DescribeBudgetPerformanceHistoryPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/DescribeBudgetsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/DescribeNotificationsForBudgetPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/DescribeSubscribersForNotificationPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  43. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  48. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-budgets
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-budgets
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-budgets
@@ -1,120 +1,407 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { BudgetsClient } from "./BudgetsClient";
3
- import { CreateBudgetActionCommandInput, CreateBudgetActionCommandOutput } from "./commands/CreateBudgetActionCommand";
4
- import { CreateBudgetCommandInput, CreateBudgetCommandOutput } from "./commands/CreateBudgetCommand";
5
- import { CreateNotificationCommandInput, CreateNotificationCommandOutput } from "./commands/CreateNotificationCommand";
6
- import { CreateSubscriberCommandInput, CreateSubscriberCommandOutput } from "./commands/CreateSubscriberCommand";
7
- import { DeleteBudgetActionCommandInput, DeleteBudgetActionCommandOutput } from "./commands/DeleteBudgetActionCommand";
8
- import { DeleteBudgetCommandInput, DeleteBudgetCommandOutput } from "./commands/DeleteBudgetCommand";
9
- import { DeleteNotificationCommandInput, DeleteNotificationCommandOutput } from "./commands/DeleteNotificationCommand";
10
- import { DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput } from "./commands/DeleteSubscriberCommand";
11
- import { DescribeBudgetActionCommandInput, DescribeBudgetActionCommandOutput } from "./commands/DescribeBudgetActionCommand";
12
- import { DescribeBudgetActionHistoriesCommandInput, DescribeBudgetActionHistoriesCommandOutput } from "./commands/DescribeBudgetActionHistoriesCommand";
13
- import { DescribeBudgetActionsForAccountCommandInput, DescribeBudgetActionsForAccountCommandOutput } from "./commands/DescribeBudgetActionsForAccountCommand";
14
- import { DescribeBudgetActionsForBudgetCommandInput, DescribeBudgetActionsForBudgetCommandOutput } from "./commands/DescribeBudgetActionsForBudgetCommand";
15
- import { DescribeBudgetCommandInput, DescribeBudgetCommandOutput } from "./commands/DescribeBudgetCommand";
16
- import { DescribeBudgetNotificationsForAccountCommandInput, DescribeBudgetNotificationsForAccountCommandOutput } from "./commands/DescribeBudgetNotificationsForAccountCommand";
17
- import { DescribeBudgetPerformanceHistoryCommandInput, DescribeBudgetPerformanceHistoryCommandOutput } from "./commands/DescribeBudgetPerformanceHistoryCommand";
18
- import { DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput } from "./commands/DescribeBudgetsCommand";
19
- import { DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput } from "./commands/DescribeNotificationsForBudgetCommand";
20
- import { DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput } from "./commands/DescribeSubscribersForNotificationCommand";
21
- import { ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput } from "./commands/ExecuteBudgetActionCommand";
22
- import { UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput } from "./commands/UpdateBudgetActionCommand";
23
- import { UpdateBudgetCommandInput, UpdateBudgetCommandOutput } from "./commands/UpdateBudgetCommand";
24
- import { UpdateNotificationCommandInput, UpdateNotificationCommandOutput } from "./commands/UpdateNotificationCommand";
25
- import { UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput } from "./commands/UpdateSubscriberCommand";
26
-
27
- export declare class Budgets extends BudgetsClient {
28
-
29
- createBudget(args: CreateBudgetCommandInput, options?: __HttpHandlerOptions): Promise<CreateBudgetCommandOutput>;
30
- createBudget(args: CreateBudgetCommandInput, cb: (err: any, data?: CreateBudgetCommandOutput) => void): void;
31
- createBudget(args: CreateBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBudgetCommandOutput) => void): void;
32
-
33
- createBudgetAction(args: CreateBudgetActionCommandInput, options?: __HttpHandlerOptions): Promise<CreateBudgetActionCommandOutput>;
34
- createBudgetAction(args: CreateBudgetActionCommandInput, cb: (err: any, data?: CreateBudgetActionCommandOutput) => void): void;
35
- createBudgetAction(args: CreateBudgetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBudgetActionCommandOutput) => void): void;
36
-
37
- createNotification(args: CreateNotificationCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotificationCommandOutput>;
38
- createNotification(args: CreateNotificationCommandInput, cb: (err: any, data?: CreateNotificationCommandOutput) => void): void;
39
- createNotification(args: CreateNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotificationCommandOutput) => void): void;
40
-
41
- createSubscriber(args: CreateSubscriberCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubscriberCommandOutput>;
42
- createSubscriber(args: CreateSubscriberCommandInput, cb: (err: any, data?: CreateSubscriberCommandOutput) => void): void;
43
- createSubscriber(args: CreateSubscriberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubscriberCommandOutput) => void): void;
44
-
45
- deleteBudget(args: DeleteBudgetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBudgetCommandOutput>;
46
- deleteBudget(args: DeleteBudgetCommandInput, cb: (err: any, data?: DeleteBudgetCommandOutput) => void): void;
47
- deleteBudget(args: DeleteBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBudgetCommandOutput) => void): void;
48
-
49
- deleteBudgetAction(args: DeleteBudgetActionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBudgetActionCommandOutput>;
50
- deleteBudgetAction(args: DeleteBudgetActionCommandInput, cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void): void;
51
- deleteBudgetAction(args: DeleteBudgetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void): void;
52
-
53
- deleteNotification(args: DeleteNotificationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotificationCommandOutput>;
54
- deleteNotification(args: DeleteNotificationCommandInput, cb: (err: any, data?: DeleteNotificationCommandOutput) => void): void;
55
- deleteNotification(args: DeleteNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotificationCommandOutput) => void): void;
56
-
57
- deleteSubscriber(args: DeleteSubscriberCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSubscriberCommandOutput>;
58
- deleteSubscriber(args: DeleteSubscriberCommandInput, cb: (err: any, data?: DeleteSubscriberCommandOutput) => void): void;
59
- deleteSubscriber(args: DeleteSubscriberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSubscriberCommandOutput) => void): void;
60
-
61
- describeBudget(args: DescribeBudgetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetCommandOutput>;
62
- describeBudget(args: DescribeBudgetCommandInput, cb: (err: any, data?: DescribeBudgetCommandOutput) => void): void;
63
- describeBudget(args: DescribeBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetCommandOutput) => void): void;
64
-
65
- describeBudgetAction(args: DescribeBudgetActionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetActionCommandOutput>;
66
- describeBudgetAction(args: DescribeBudgetActionCommandInput, cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void): void;
67
- describeBudgetAction(args: DescribeBudgetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void): void;
68
-
69
- describeBudgetActionHistories(args: DescribeBudgetActionHistoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetActionHistoriesCommandOutput>;
70
- describeBudgetActionHistories(args: DescribeBudgetActionHistoriesCommandInput, cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void): void;
71
- describeBudgetActionHistories(args: DescribeBudgetActionHistoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void): void;
72
-
73
- describeBudgetActionsForAccount(args: DescribeBudgetActionsForAccountCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetActionsForAccountCommandOutput>;
74
- describeBudgetActionsForAccount(args: DescribeBudgetActionsForAccountCommandInput, cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void): void;
75
- describeBudgetActionsForAccount(args: DescribeBudgetActionsForAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void): void;
76
-
77
- describeBudgetActionsForBudget(args: DescribeBudgetActionsForBudgetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetActionsForBudgetCommandOutput>;
78
- describeBudgetActionsForBudget(args: DescribeBudgetActionsForBudgetCommandInput, cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void): void;
79
- describeBudgetActionsForBudget(args: DescribeBudgetActionsForBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void): void;
80
-
81
- describeBudgetNotificationsForAccount(args: DescribeBudgetNotificationsForAccountCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetNotificationsForAccountCommandOutput>;
82
- describeBudgetNotificationsForAccount(args: DescribeBudgetNotificationsForAccountCommandInput, cb: (err: any, data?: DescribeBudgetNotificationsForAccountCommandOutput) => void): void;
83
- describeBudgetNotificationsForAccount(args: DescribeBudgetNotificationsForAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetNotificationsForAccountCommandOutput) => void): void;
84
-
85
- describeBudgetPerformanceHistory(args: DescribeBudgetPerformanceHistoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetPerformanceHistoryCommandOutput>;
86
- describeBudgetPerformanceHistory(args: DescribeBudgetPerformanceHistoryCommandInput, cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void): void;
87
- describeBudgetPerformanceHistory(args: DescribeBudgetPerformanceHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void): void;
88
-
89
- describeBudgets(args: DescribeBudgetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBudgetsCommandOutput>;
90
- describeBudgets(args: DescribeBudgetsCommandInput, cb: (err: any, data?: DescribeBudgetsCommandOutput) => void): void;
91
- describeBudgets(args: DescribeBudgetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBudgetsCommandOutput) => void): void;
92
-
93
- describeNotificationsForBudget(args: DescribeNotificationsForBudgetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotificationsForBudgetCommandOutput>;
94
- describeNotificationsForBudget(args: DescribeNotificationsForBudgetCommandInput, cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void): void;
95
- describeNotificationsForBudget(args: DescribeNotificationsForBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void): void;
96
-
97
- describeSubscribersForNotification(args: DescribeSubscribersForNotificationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSubscribersForNotificationCommandOutput>;
98
- describeSubscribersForNotification(args: DescribeSubscribersForNotificationCommandInput, cb: (err: any, data?: DescribeSubscribersForNotificationCommandOutput) => void): void;
99
- describeSubscribersForNotification(args: DescribeSubscribersForNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSubscribersForNotificationCommandOutput) => void): void;
100
-
101
- executeBudgetAction(args: ExecuteBudgetActionCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteBudgetActionCommandOutput>;
102
- executeBudgetAction(args: ExecuteBudgetActionCommandInput, cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void): void;
103
- executeBudgetAction(args: ExecuteBudgetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void): void;
104
-
105
- updateBudget(args: UpdateBudgetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBudgetCommandOutput>;
106
- updateBudget(args: UpdateBudgetCommandInput, cb: (err: any, data?: UpdateBudgetCommandOutput) => void): void;
107
- updateBudget(args: UpdateBudgetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBudgetCommandOutput) => void): void;
108
-
109
- updateBudgetAction(args: UpdateBudgetActionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBudgetActionCommandOutput>;
110
- updateBudgetAction(args: UpdateBudgetActionCommandInput, cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void): void;
111
- updateBudgetAction(args: UpdateBudgetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void): void;
112
-
113
- updateNotification(args: UpdateNotificationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotificationCommandOutput>;
114
- updateNotification(args: UpdateNotificationCommandInput, cb: (err: any, data?: UpdateNotificationCommandOutput) => void): void;
115
- updateNotification(args: UpdateNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationCommandOutput) => void): void;
116
-
117
- updateSubscriber(args: UpdateSubscriberCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSubscriberCommandOutput>;
118
- updateSubscriber(args: UpdateSubscriberCommandInput, cb: (err: any, data?: UpdateSubscriberCommandOutput) => void): void;
119
- updateSubscriber(args: UpdateSubscriberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSubscriberCommandOutput) => void): void;
120
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { BudgetsClient } from "./BudgetsClient";
3
+ import {
4
+ CreateBudgetActionCommandInput,
5
+ CreateBudgetActionCommandOutput,
6
+ } from "./commands/CreateBudgetActionCommand";
7
+ import {
8
+ CreateBudgetCommandInput,
9
+ CreateBudgetCommandOutput,
10
+ } from "./commands/CreateBudgetCommand";
11
+ import {
12
+ CreateNotificationCommandInput,
13
+ CreateNotificationCommandOutput,
14
+ } from "./commands/CreateNotificationCommand";
15
+ import {
16
+ CreateSubscriberCommandInput,
17
+ CreateSubscriberCommandOutput,
18
+ } from "./commands/CreateSubscriberCommand";
19
+ import {
20
+ DeleteBudgetActionCommandInput,
21
+ DeleteBudgetActionCommandOutput,
22
+ } from "./commands/DeleteBudgetActionCommand";
23
+ import {
24
+ DeleteBudgetCommandInput,
25
+ DeleteBudgetCommandOutput,
26
+ } from "./commands/DeleteBudgetCommand";
27
+ import {
28
+ DeleteNotificationCommandInput,
29
+ DeleteNotificationCommandOutput,
30
+ } from "./commands/DeleteNotificationCommand";
31
+ import {
32
+ DeleteSubscriberCommandInput,
33
+ DeleteSubscriberCommandOutput,
34
+ } from "./commands/DeleteSubscriberCommand";
35
+ import {
36
+ DescribeBudgetActionCommandInput,
37
+ DescribeBudgetActionCommandOutput,
38
+ } from "./commands/DescribeBudgetActionCommand";
39
+ import {
40
+ DescribeBudgetActionHistoriesCommandInput,
41
+ DescribeBudgetActionHistoriesCommandOutput,
42
+ } from "./commands/DescribeBudgetActionHistoriesCommand";
43
+ import {
44
+ DescribeBudgetActionsForAccountCommandInput,
45
+ DescribeBudgetActionsForAccountCommandOutput,
46
+ } from "./commands/DescribeBudgetActionsForAccountCommand";
47
+ import {
48
+ DescribeBudgetActionsForBudgetCommandInput,
49
+ DescribeBudgetActionsForBudgetCommandOutput,
50
+ } from "./commands/DescribeBudgetActionsForBudgetCommand";
51
+ import {
52
+ DescribeBudgetCommandInput,
53
+ DescribeBudgetCommandOutput,
54
+ } from "./commands/DescribeBudgetCommand";
55
+ import {
56
+ DescribeBudgetNotificationsForAccountCommandInput,
57
+ DescribeBudgetNotificationsForAccountCommandOutput,
58
+ } from "./commands/DescribeBudgetNotificationsForAccountCommand";
59
+ import {
60
+ DescribeBudgetPerformanceHistoryCommandInput,
61
+ DescribeBudgetPerformanceHistoryCommandOutput,
62
+ } from "./commands/DescribeBudgetPerformanceHistoryCommand";
63
+ import {
64
+ DescribeBudgetsCommandInput,
65
+ DescribeBudgetsCommandOutput,
66
+ } from "./commands/DescribeBudgetsCommand";
67
+ import {
68
+ DescribeNotificationsForBudgetCommandInput,
69
+ DescribeNotificationsForBudgetCommandOutput,
70
+ } from "./commands/DescribeNotificationsForBudgetCommand";
71
+ import {
72
+ DescribeSubscribersForNotificationCommandInput,
73
+ DescribeSubscribersForNotificationCommandOutput,
74
+ } from "./commands/DescribeSubscribersForNotificationCommand";
75
+ import {
76
+ ExecuteBudgetActionCommandInput,
77
+ ExecuteBudgetActionCommandOutput,
78
+ } from "./commands/ExecuteBudgetActionCommand";
79
+ import {
80
+ UpdateBudgetActionCommandInput,
81
+ UpdateBudgetActionCommandOutput,
82
+ } from "./commands/UpdateBudgetActionCommand";
83
+ import {
84
+ UpdateBudgetCommandInput,
85
+ UpdateBudgetCommandOutput,
86
+ } from "./commands/UpdateBudgetCommand";
87
+ import {
88
+ UpdateNotificationCommandInput,
89
+ UpdateNotificationCommandOutput,
90
+ } from "./commands/UpdateNotificationCommand";
91
+ import {
92
+ UpdateSubscriberCommandInput,
93
+ UpdateSubscriberCommandOutput,
94
+ } from "./commands/UpdateSubscriberCommand";
95
+ export declare class Budgets extends BudgetsClient {
96
+ createBudget(
97
+ args: CreateBudgetCommandInput,
98
+ options?: __HttpHandlerOptions
99
+ ): Promise<CreateBudgetCommandOutput>;
100
+ createBudget(
101
+ args: CreateBudgetCommandInput,
102
+ cb: (err: any, data?: CreateBudgetCommandOutput) => void
103
+ ): void;
104
+ createBudget(
105
+ args: CreateBudgetCommandInput,
106
+ options: __HttpHandlerOptions,
107
+ cb: (err: any, data?: CreateBudgetCommandOutput) => void
108
+ ): void;
109
+ createBudgetAction(
110
+ args: CreateBudgetActionCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<CreateBudgetActionCommandOutput>;
113
+ createBudgetAction(
114
+ args: CreateBudgetActionCommandInput,
115
+ cb: (err: any, data?: CreateBudgetActionCommandOutput) => void
116
+ ): void;
117
+ createBudgetAction(
118
+ args: CreateBudgetActionCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: CreateBudgetActionCommandOutput) => void
121
+ ): void;
122
+ createNotification(
123
+ args: CreateNotificationCommandInput,
124
+ options?: __HttpHandlerOptions
125
+ ): Promise<CreateNotificationCommandOutput>;
126
+ createNotification(
127
+ args: CreateNotificationCommandInput,
128
+ cb: (err: any, data?: CreateNotificationCommandOutput) => void
129
+ ): void;
130
+ createNotification(
131
+ args: CreateNotificationCommandInput,
132
+ options: __HttpHandlerOptions,
133
+ cb: (err: any, data?: CreateNotificationCommandOutput) => void
134
+ ): void;
135
+ createSubscriber(
136
+ args: CreateSubscriberCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<CreateSubscriberCommandOutput>;
139
+ createSubscriber(
140
+ args: CreateSubscriberCommandInput,
141
+ cb: (err: any, data?: CreateSubscriberCommandOutput) => void
142
+ ): void;
143
+ createSubscriber(
144
+ args: CreateSubscriberCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: CreateSubscriberCommandOutput) => void
147
+ ): void;
148
+ deleteBudget(
149
+ args: DeleteBudgetCommandInput,
150
+ options?: __HttpHandlerOptions
151
+ ): Promise<DeleteBudgetCommandOutput>;
152
+ deleteBudget(
153
+ args: DeleteBudgetCommandInput,
154
+ cb: (err: any, data?: DeleteBudgetCommandOutput) => void
155
+ ): void;
156
+ deleteBudget(
157
+ args: DeleteBudgetCommandInput,
158
+ options: __HttpHandlerOptions,
159
+ cb: (err: any, data?: DeleteBudgetCommandOutput) => void
160
+ ): void;
161
+ deleteBudgetAction(
162
+ args: DeleteBudgetActionCommandInput,
163
+ options?: __HttpHandlerOptions
164
+ ): Promise<DeleteBudgetActionCommandOutput>;
165
+ deleteBudgetAction(
166
+ args: DeleteBudgetActionCommandInput,
167
+ cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void
168
+ ): void;
169
+ deleteBudgetAction(
170
+ args: DeleteBudgetActionCommandInput,
171
+ options: __HttpHandlerOptions,
172
+ cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void
173
+ ): void;
174
+ deleteNotification(
175
+ args: DeleteNotificationCommandInput,
176
+ options?: __HttpHandlerOptions
177
+ ): Promise<DeleteNotificationCommandOutput>;
178
+ deleteNotification(
179
+ args: DeleteNotificationCommandInput,
180
+ cb: (err: any, data?: DeleteNotificationCommandOutput) => void
181
+ ): void;
182
+ deleteNotification(
183
+ args: DeleteNotificationCommandInput,
184
+ options: __HttpHandlerOptions,
185
+ cb: (err: any, data?: DeleteNotificationCommandOutput) => void
186
+ ): void;
187
+ deleteSubscriber(
188
+ args: DeleteSubscriberCommandInput,
189
+ options?: __HttpHandlerOptions
190
+ ): Promise<DeleteSubscriberCommandOutput>;
191
+ deleteSubscriber(
192
+ args: DeleteSubscriberCommandInput,
193
+ cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
194
+ ): void;
195
+ deleteSubscriber(
196
+ args: DeleteSubscriberCommandInput,
197
+ options: __HttpHandlerOptions,
198
+ cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
199
+ ): void;
200
+ describeBudget(
201
+ args: DescribeBudgetCommandInput,
202
+ options?: __HttpHandlerOptions
203
+ ): Promise<DescribeBudgetCommandOutput>;
204
+ describeBudget(
205
+ args: DescribeBudgetCommandInput,
206
+ cb: (err: any, data?: DescribeBudgetCommandOutput) => void
207
+ ): void;
208
+ describeBudget(
209
+ args: DescribeBudgetCommandInput,
210
+ options: __HttpHandlerOptions,
211
+ cb: (err: any, data?: DescribeBudgetCommandOutput) => void
212
+ ): void;
213
+ describeBudgetAction(
214
+ args: DescribeBudgetActionCommandInput,
215
+ options?: __HttpHandlerOptions
216
+ ): Promise<DescribeBudgetActionCommandOutput>;
217
+ describeBudgetAction(
218
+ args: DescribeBudgetActionCommandInput,
219
+ cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void
220
+ ): void;
221
+ describeBudgetAction(
222
+ args: DescribeBudgetActionCommandInput,
223
+ options: __HttpHandlerOptions,
224
+ cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void
225
+ ): void;
226
+ describeBudgetActionHistories(
227
+ args: DescribeBudgetActionHistoriesCommandInput,
228
+ options?: __HttpHandlerOptions
229
+ ): Promise<DescribeBudgetActionHistoriesCommandOutput>;
230
+ describeBudgetActionHistories(
231
+ args: DescribeBudgetActionHistoriesCommandInput,
232
+ cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void
233
+ ): void;
234
+ describeBudgetActionHistories(
235
+ args: DescribeBudgetActionHistoriesCommandInput,
236
+ options: __HttpHandlerOptions,
237
+ cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void
238
+ ): void;
239
+ describeBudgetActionsForAccount(
240
+ args: DescribeBudgetActionsForAccountCommandInput,
241
+ options?: __HttpHandlerOptions
242
+ ): Promise<DescribeBudgetActionsForAccountCommandOutput>;
243
+ describeBudgetActionsForAccount(
244
+ args: DescribeBudgetActionsForAccountCommandInput,
245
+ cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void
246
+ ): void;
247
+ describeBudgetActionsForAccount(
248
+ args: DescribeBudgetActionsForAccountCommandInput,
249
+ options: __HttpHandlerOptions,
250
+ cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void
251
+ ): void;
252
+ describeBudgetActionsForBudget(
253
+ args: DescribeBudgetActionsForBudgetCommandInput,
254
+ options?: __HttpHandlerOptions
255
+ ): Promise<DescribeBudgetActionsForBudgetCommandOutput>;
256
+ describeBudgetActionsForBudget(
257
+ args: DescribeBudgetActionsForBudgetCommandInput,
258
+ cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void
259
+ ): void;
260
+ describeBudgetActionsForBudget(
261
+ args: DescribeBudgetActionsForBudgetCommandInput,
262
+ options: __HttpHandlerOptions,
263
+ cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void
264
+ ): void;
265
+ describeBudgetNotificationsForAccount(
266
+ args: DescribeBudgetNotificationsForAccountCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<DescribeBudgetNotificationsForAccountCommandOutput>;
269
+ describeBudgetNotificationsForAccount(
270
+ args: DescribeBudgetNotificationsForAccountCommandInput,
271
+ cb: (
272
+ err: any,
273
+ data?: DescribeBudgetNotificationsForAccountCommandOutput
274
+ ) => void
275
+ ): void;
276
+ describeBudgetNotificationsForAccount(
277
+ args: DescribeBudgetNotificationsForAccountCommandInput,
278
+ options: __HttpHandlerOptions,
279
+ cb: (
280
+ err: any,
281
+ data?: DescribeBudgetNotificationsForAccountCommandOutput
282
+ ) => void
283
+ ): void;
284
+ describeBudgetPerformanceHistory(
285
+ args: DescribeBudgetPerformanceHistoryCommandInput,
286
+ options?: __HttpHandlerOptions
287
+ ): Promise<DescribeBudgetPerformanceHistoryCommandOutput>;
288
+ describeBudgetPerformanceHistory(
289
+ args: DescribeBudgetPerformanceHistoryCommandInput,
290
+ cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void
291
+ ): void;
292
+ describeBudgetPerformanceHistory(
293
+ args: DescribeBudgetPerformanceHistoryCommandInput,
294
+ options: __HttpHandlerOptions,
295
+ cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void
296
+ ): void;
297
+ describeBudgets(
298
+ args: DescribeBudgetsCommandInput,
299
+ options?: __HttpHandlerOptions
300
+ ): Promise<DescribeBudgetsCommandOutput>;
301
+ describeBudgets(
302
+ args: DescribeBudgetsCommandInput,
303
+ cb: (err: any, data?: DescribeBudgetsCommandOutput) => void
304
+ ): void;
305
+ describeBudgets(
306
+ args: DescribeBudgetsCommandInput,
307
+ options: __HttpHandlerOptions,
308
+ cb: (err: any, data?: DescribeBudgetsCommandOutput) => void
309
+ ): void;
310
+ describeNotificationsForBudget(
311
+ args: DescribeNotificationsForBudgetCommandInput,
312
+ options?: __HttpHandlerOptions
313
+ ): Promise<DescribeNotificationsForBudgetCommandOutput>;
314
+ describeNotificationsForBudget(
315
+ args: DescribeNotificationsForBudgetCommandInput,
316
+ cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void
317
+ ): void;
318
+ describeNotificationsForBudget(
319
+ args: DescribeNotificationsForBudgetCommandInput,
320
+ options: __HttpHandlerOptions,
321
+ cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void
322
+ ): void;
323
+ describeSubscribersForNotification(
324
+ args: DescribeSubscribersForNotificationCommandInput,
325
+ options?: __HttpHandlerOptions
326
+ ): Promise<DescribeSubscribersForNotificationCommandOutput>;
327
+ describeSubscribersForNotification(
328
+ args: DescribeSubscribersForNotificationCommandInput,
329
+ cb: (
330
+ err: any,
331
+ data?: DescribeSubscribersForNotificationCommandOutput
332
+ ) => void
333
+ ): void;
334
+ describeSubscribersForNotification(
335
+ args: DescribeSubscribersForNotificationCommandInput,
336
+ options: __HttpHandlerOptions,
337
+ cb: (
338
+ err: any,
339
+ data?: DescribeSubscribersForNotificationCommandOutput
340
+ ) => void
341
+ ): void;
342
+ executeBudgetAction(
343
+ args: ExecuteBudgetActionCommandInput,
344
+ options?: __HttpHandlerOptions
345
+ ): Promise<ExecuteBudgetActionCommandOutput>;
346
+ executeBudgetAction(
347
+ args: ExecuteBudgetActionCommandInput,
348
+ cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void
349
+ ): void;
350
+ executeBudgetAction(
351
+ args: ExecuteBudgetActionCommandInput,
352
+ options: __HttpHandlerOptions,
353
+ cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void
354
+ ): void;
355
+ updateBudget(
356
+ args: UpdateBudgetCommandInput,
357
+ options?: __HttpHandlerOptions
358
+ ): Promise<UpdateBudgetCommandOutput>;
359
+ updateBudget(
360
+ args: UpdateBudgetCommandInput,
361
+ cb: (err: any, data?: UpdateBudgetCommandOutput) => void
362
+ ): void;
363
+ updateBudget(
364
+ args: UpdateBudgetCommandInput,
365
+ options: __HttpHandlerOptions,
366
+ cb: (err: any, data?: UpdateBudgetCommandOutput) => void
367
+ ): void;
368
+ updateBudgetAction(
369
+ args: UpdateBudgetActionCommandInput,
370
+ options?: __HttpHandlerOptions
371
+ ): Promise<UpdateBudgetActionCommandOutput>;
372
+ updateBudgetAction(
373
+ args: UpdateBudgetActionCommandInput,
374
+ cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void
375
+ ): void;
376
+ updateBudgetAction(
377
+ args: UpdateBudgetActionCommandInput,
378
+ options: __HttpHandlerOptions,
379
+ cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void
380
+ ): void;
381
+ updateNotification(
382
+ args: UpdateNotificationCommandInput,
383
+ options?: __HttpHandlerOptions
384
+ ): Promise<UpdateNotificationCommandOutput>;
385
+ updateNotification(
386
+ args: UpdateNotificationCommandInput,
387
+ cb: (err: any, data?: UpdateNotificationCommandOutput) => void
388
+ ): void;
389
+ updateNotification(
390
+ args: UpdateNotificationCommandInput,
391
+ options: __HttpHandlerOptions,
392
+ cb: (err: any, data?: UpdateNotificationCommandOutput) => void
393
+ ): void;
394
+ updateSubscriber(
395
+ args: UpdateSubscriberCommandInput,
396
+ options?: __HttpHandlerOptions
397
+ ): Promise<UpdateSubscriberCommandOutput>;
398
+ updateSubscriber(
399
+ args: UpdateSubscriberCommandInput,
400
+ cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
401
+ ): void;
402
+ updateSubscriber(
403
+ args: UpdateSubscriberCommandInput,
404
+ options: __HttpHandlerOptions,
405
+ cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
406
+ ): void;
407
+ }