@aws-sdk/client-budgets 3.1087.0 → 3.1088.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 (45) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Budgets.d.ts +87 -102
  3. package/dist-types/ts3.4/BudgetsClient.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateBudgetActionCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +4 -9
  11. package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +3 -5
  13. package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +4 -9
  15. package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +4 -6
  18. package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +5 -10
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  29. package/dist-types/ts3.4/commands/UpdateBudgetActionCommand.d.ts +5 -10
  30. package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +3 -5
  31. package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +5 -10
  32. package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +4 -9
  33. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  34. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  35. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +7 -14
  37. package/dist-types/ts3.4/models/errors.d.ts +11 -36
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  43. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  45. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -84,10 +84,7 @@ import {
84
84
  ListTagsForResourceCommandInput,
85
85
  ListTagsForResourceCommandOutput,
86
86
  } from "./commands/ListTagsForResourceCommand";
87
- import {
88
- TagResourceCommandInput,
89
- TagResourceCommandOutput,
90
- } from "./commands/TagResourceCommand";
87
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
91
88
  import {
92
89
  UntagResourceCommandInput,
93
90
  UntagResourceCommandOutput,
@@ -111,409 +108,397 @@ import {
111
108
  export interface Budgets {
112
109
  createBudget(
113
110
  args: CreateBudgetCommandInput,
114
- options?: __HttpHandlerOptions
111
+ options?: __HttpHandlerOptions,
115
112
  ): Promise<CreateBudgetCommandOutput>;
116
113
  createBudget(
117
114
  args: CreateBudgetCommandInput,
118
- cb: (err: any, data?: CreateBudgetCommandOutput) => void
115
+ cb: (err: any, data?: CreateBudgetCommandOutput) => void,
119
116
  ): void;
120
117
  createBudget(
121
118
  args: CreateBudgetCommandInput,
122
119
  options: __HttpHandlerOptions,
123
- cb: (err: any, data?: CreateBudgetCommandOutput) => void
120
+ cb: (err: any, data?: CreateBudgetCommandOutput) => void,
124
121
  ): void;
125
122
  createBudgetAction(
126
123
  args: CreateBudgetActionCommandInput,
127
- options?: __HttpHandlerOptions
124
+ options?: __HttpHandlerOptions,
128
125
  ): Promise<CreateBudgetActionCommandOutput>;
129
126
  createBudgetAction(
130
127
  args: CreateBudgetActionCommandInput,
131
- cb: (err: any, data?: CreateBudgetActionCommandOutput) => void
128
+ cb: (err: any, data?: CreateBudgetActionCommandOutput) => void,
132
129
  ): void;
133
130
  createBudgetAction(
134
131
  args: CreateBudgetActionCommandInput,
135
132
  options: __HttpHandlerOptions,
136
- cb: (err: any, data?: CreateBudgetActionCommandOutput) => void
133
+ cb: (err: any, data?: CreateBudgetActionCommandOutput) => void,
137
134
  ): void;
138
135
  createNotification(
139
136
  args: CreateNotificationCommandInput,
140
- options?: __HttpHandlerOptions
137
+ options?: __HttpHandlerOptions,
141
138
  ): Promise<CreateNotificationCommandOutput>;
142
139
  createNotification(
143
140
  args: CreateNotificationCommandInput,
144
- cb: (err: any, data?: CreateNotificationCommandOutput) => void
141
+ cb: (err: any, data?: CreateNotificationCommandOutput) => void,
145
142
  ): void;
146
143
  createNotification(
147
144
  args: CreateNotificationCommandInput,
148
145
  options: __HttpHandlerOptions,
149
- cb: (err: any, data?: CreateNotificationCommandOutput) => void
146
+ cb: (err: any, data?: CreateNotificationCommandOutput) => void,
150
147
  ): void;
151
148
  createSubscriber(
152
149
  args: CreateSubscriberCommandInput,
153
- options?: __HttpHandlerOptions
150
+ options?: __HttpHandlerOptions,
154
151
  ): Promise<CreateSubscriberCommandOutput>;
155
152
  createSubscriber(
156
153
  args: CreateSubscriberCommandInput,
157
- cb: (err: any, data?: CreateSubscriberCommandOutput) => void
154
+ cb: (err: any, data?: CreateSubscriberCommandOutput) => void,
158
155
  ): void;
159
156
  createSubscriber(
160
157
  args: CreateSubscriberCommandInput,
161
158
  options: __HttpHandlerOptions,
162
- cb: (err: any, data?: CreateSubscriberCommandOutput) => void
159
+ cb: (err: any, data?: CreateSubscriberCommandOutput) => void,
163
160
  ): void;
164
161
  deleteBudget(
165
162
  args: DeleteBudgetCommandInput,
166
- options?: __HttpHandlerOptions
163
+ options?: __HttpHandlerOptions,
167
164
  ): Promise<DeleteBudgetCommandOutput>;
168
165
  deleteBudget(
169
166
  args: DeleteBudgetCommandInput,
170
- cb: (err: any, data?: DeleteBudgetCommandOutput) => void
167
+ cb: (err: any, data?: DeleteBudgetCommandOutput) => void,
171
168
  ): void;
172
169
  deleteBudget(
173
170
  args: DeleteBudgetCommandInput,
174
171
  options: __HttpHandlerOptions,
175
- cb: (err: any, data?: DeleteBudgetCommandOutput) => void
172
+ cb: (err: any, data?: DeleteBudgetCommandOutput) => void,
176
173
  ): void;
177
174
  deleteBudgetAction(
178
175
  args: DeleteBudgetActionCommandInput,
179
- options?: __HttpHandlerOptions
176
+ options?: __HttpHandlerOptions,
180
177
  ): Promise<DeleteBudgetActionCommandOutput>;
181
178
  deleteBudgetAction(
182
179
  args: DeleteBudgetActionCommandInput,
183
- cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void
180
+ cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void,
184
181
  ): void;
185
182
  deleteBudgetAction(
186
183
  args: DeleteBudgetActionCommandInput,
187
184
  options: __HttpHandlerOptions,
188
- cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void
185
+ cb: (err: any, data?: DeleteBudgetActionCommandOutput) => void,
189
186
  ): void;
190
187
  deleteNotification(
191
188
  args: DeleteNotificationCommandInput,
192
- options?: __HttpHandlerOptions
189
+ options?: __HttpHandlerOptions,
193
190
  ): Promise<DeleteNotificationCommandOutput>;
194
191
  deleteNotification(
195
192
  args: DeleteNotificationCommandInput,
196
- cb: (err: any, data?: DeleteNotificationCommandOutput) => void
193
+ cb: (err: any, data?: DeleteNotificationCommandOutput) => void,
197
194
  ): void;
198
195
  deleteNotification(
199
196
  args: DeleteNotificationCommandInput,
200
197
  options: __HttpHandlerOptions,
201
- cb: (err: any, data?: DeleteNotificationCommandOutput) => void
198
+ cb: (err: any, data?: DeleteNotificationCommandOutput) => void,
202
199
  ): void;
203
200
  deleteSubscriber(
204
201
  args: DeleteSubscriberCommandInput,
205
- options?: __HttpHandlerOptions
202
+ options?: __HttpHandlerOptions,
206
203
  ): Promise<DeleteSubscriberCommandOutput>;
207
204
  deleteSubscriber(
208
205
  args: DeleteSubscriberCommandInput,
209
- cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
206
+ cb: (err: any, data?: DeleteSubscriberCommandOutput) => void,
210
207
  ): void;
211
208
  deleteSubscriber(
212
209
  args: DeleteSubscriberCommandInput,
213
210
  options: __HttpHandlerOptions,
214
- cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
211
+ cb: (err: any, data?: DeleteSubscriberCommandOutput) => void,
215
212
  ): void;
216
213
  describeBudget(
217
214
  args: DescribeBudgetCommandInput,
218
- options?: __HttpHandlerOptions
215
+ options?: __HttpHandlerOptions,
219
216
  ): Promise<DescribeBudgetCommandOutput>;
220
217
  describeBudget(
221
218
  args: DescribeBudgetCommandInput,
222
- cb: (err: any, data?: DescribeBudgetCommandOutput) => void
219
+ cb: (err: any, data?: DescribeBudgetCommandOutput) => void,
223
220
  ): void;
224
221
  describeBudget(
225
222
  args: DescribeBudgetCommandInput,
226
223
  options: __HttpHandlerOptions,
227
- cb: (err: any, data?: DescribeBudgetCommandOutput) => void
224
+ cb: (err: any, data?: DescribeBudgetCommandOutput) => void,
228
225
  ): void;
229
226
  describeBudgetAction(
230
227
  args: DescribeBudgetActionCommandInput,
231
- options?: __HttpHandlerOptions
228
+ options?: __HttpHandlerOptions,
232
229
  ): Promise<DescribeBudgetActionCommandOutput>;
233
230
  describeBudgetAction(
234
231
  args: DescribeBudgetActionCommandInput,
235
- cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void
232
+ cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void,
236
233
  ): void;
237
234
  describeBudgetAction(
238
235
  args: DescribeBudgetActionCommandInput,
239
236
  options: __HttpHandlerOptions,
240
- cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void
237
+ cb: (err: any, data?: DescribeBudgetActionCommandOutput) => void,
241
238
  ): void;
242
239
  describeBudgetActionHistories(
243
240
  args: DescribeBudgetActionHistoriesCommandInput,
244
- options?: __HttpHandlerOptions
241
+ options?: __HttpHandlerOptions,
245
242
  ): Promise<DescribeBudgetActionHistoriesCommandOutput>;
246
243
  describeBudgetActionHistories(
247
244
  args: DescribeBudgetActionHistoriesCommandInput,
248
- cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void
245
+ cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void,
249
246
  ): void;
250
247
  describeBudgetActionHistories(
251
248
  args: DescribeBudgetActionHistoriesCommandInput,
252
249
  options: __HttpHandlerOptions,
253
- cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void
250
+ cb: (err: any, data?: DescribeBudgetActionHistoriesCommandOutput) => void,
254
251
  ): void;
255
252
  describeBudgetActionsForAccount(
256
253
  args: DescribeBudgetActionsForAccountCommandInput,
257
- options?: __HttpHandlerOptions
254
+ options?: __HttpHandlerOptions,
258
255
  ): Promise<DescribeBudgetActionsForAccountCommandOutput>;
259
256
  describeBudgetActionsForAccount(
260
257
  args: DescribeBudgetActionsForAccountCommandInput,
261
- cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void
258
+ cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void,
262
259
  ): void;
263
260
  describeBudgetActionsForAccount(
264
261
  args: DescribeBudgetActionsForAccountCommandInput,
265
262
  options: __HttpHandlerOptions,
266
- cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void
263
+ cb: (err: any, data?: DescribeBudgetActionsForAccountCommandOutput) => void,
267
264
  ): void;
268
265
  describeBudgetActionsForBudget(
269
266
  args: DescribeBudgetActionsForBudgetCommandInput,
270
- options?: __HttpHandlerOptions
267
+ options?: __HttpHandlerOptions,
271
268
  ): Promise<DescribeBudgetActionsForBudgetCommandOutput>;
272
269
  describeBudgetActionsForBudget(
273
270
  args: DescribeBudgetActionsForBudgetCommandInput,
274
- cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void
271
+ cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void,
275
272
  ): void;
276
273
  describeBudgetActionsForBudget(
277
274
  args: DescribeBudgetActionsForBudgetCommandInput,
278
275
  options: __HttpHandlerOptions,
279
- cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void
276
+ cb: (err: any, data?: DescribeBudgetActionsForBudgetCommandOutput) => void,
280
277
  ): void;
281
278
  describeBudgetNotificationsForAccount(
282
279
  args: DescribeBudgetNotificationsForAccountCommandInput,
283
- options?: __HttpHandlerOptions
280
+ options?: __HttpHandlerOptions,
284
281
  ): Promise<DescribeBudgetNotificationsForAccountCommandOutput>;
285
282
  describeBudgetNotificationsForAccount(
286
283
  args: DescribeBudgetNotificationsForAccountCommandInput,
287
- cb: (
288
- err: any,
289
- data?: DescribeBudgetNotificationsForAccountCommandOutput
290
- ) => void
284
+ cb: (err: any, data?: DescribeBudgetNotificationsForAccountCommandOutput) => void,
291
285
  ): void;
292
286
  describeBudgetNotificationsForAccount(
293
287
  args: DescribeBudgetNotificationsForAccountCommandInput,
294
288
  options: __HttpHandlerOptions,
295
- cb: (
296
- err: any,
297
- data?: DescribeBudgetNotificationsForAccountCommandOutput
298
- ) => void
289
+ cb: (err: any, data?: DescribeBudgetNotificationsForAccountCommandOutput) => void,
299
290
  ): void;
300
291
  describeBudgetPerformanceHistory(
301
292
  args: DescribeBudgetPerformanceHistoryCommandInput,
302
- options?: __HttpHandlerOptions
293
+ options?: __HttpHandlerOptions,
303
294
  ): Promise<DescribeBudgetPerformanceHistoryCommandOutput>;
304
295
  describeBudgetPerformanceHistory(
305
296
  args: DescribeBudgetPerformanceHistoryCommandInput,
306
- cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void
297
+ cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void,
307
298
  ): void;
308
299
  describeBudgetPerformanceHistory(
309
300
  args: DescribeBudgetPerformanceHistoryCommandInput,
310
301
  options: __HttpHandlerOptions,
311
- cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void
302
+ cb: (err: any, data?: DescribeBudgetPerformanceHistoryCommandOutput) => void,
312
303
  ): void;
313
304
  describeBudgets(
314
305
  args: DescribeBudgetsCommandInput,
315
- options?: __HttpHandlerOptions
306
+ options?: __HttpHandlerOptions,
316
307
  ): Promise<DescribeBudgetsCommandOutput>;
317
308
  describeBudgets(
318
309
  args: DescribeBudgetsCommandInput,
319
- cb: (err: any, data?: DescribeBudgetsCommandOutput) => void
310
+ cb: (err: any, data?: DescribeBudgetsCommandOutput) => void,
320
311
  ): void;
321
312
  describeBudgets(
322
313
  args: DescribeBudgetsCommandInput,
323
314
  options: __HttpHandlerOptions,
324
- cb: (err: any, data?: DescribeBudgetsCommandOutput) => void
315
+ cb: (err: any, data?: DescribeBudgetsCommandOutput) => void,
325
316
  ): void;
326
317
  describeNotificationsForBudget(
327
318
  args: DescribeNotificationsForBudgetCommandInput,
328
- options?: __HttpHandlerOptions
319
+ options?: __HttpHandlerOptions,
329
320
  ): Promise<DescribeNotificationsForBudgetCommandOutput>;
330
321
  describeNotificationsForBudget(
331
322
  args: DescribeNotificationsForBudgetCommandInput,
332
- cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void
323
+ cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void,
333
324
  ): void;
334
325
  describeNotificationsForBudget(
335
326
  args: DescribeNotificationsForBudgetCommandInput,
336
327
  options: __HttpHandlerOptions,
337
- cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void
328
+ cb: (err: any, data?: DescribeNotificationsForBudgetCommandOutput) => void,
338
329
  ): void;
339
330
  describeSubscribersForNotification(
340
331
  args: DescribeSubscribersForNotificationCommandInput,
341
- options?: __HttpHandlerOptions
332
+ options?: __HttpHandlerOptions,
342
333
  ): Promise<DescribeSubscribersForNotificationCommandOutput>;
343
334
  describeSubscribersForNotification(
344
335
  args: DescribeSubscribersForNotificationCommandInput,
345
- cb: (
346
- err: any,
347
- data?: DescribeSubscribersForNotificationCommandOutput
348
- ) => void
336
+ cb: (err: any, data?: DescribeSubscribersForNotificationCommandOutput) => void,
349
337
  ): void;
350
338
  describeSubscribersForNotification(
351
339
  args: DescribeSubscribersForNotificationCommandInput,
352
340
  options: __HttpHandlerOptions,
353
- cb: (
354
- err: any,
355
- data?: DescribeSubscribersForNotificationCommandOutput
356
- ) => void
341
+ cb: (err: any, data?: DescribeSubscribersForNotificationCommandOutput) => void,
357
342
  ): void;
358
343
  executeBudgetAction(
359
344
  args: ExecuteBudgetActionCommandInput,
360
- options?: __HttpHandlerOptions
345
+ options?: __HttpHandlerOptions,
361
346
  ): Promise<ExecuteBudgetActionCommandOutput>;
362
347
  executeBudgetAction(
363
348
  args: ExecuteBudgetActionCommandInput,
364
- cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void
349
+ cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void,
365
350
  ): void;
366
351
  executeBudgetAction(
367
352
  args: ExecuteBudgetActionCommandInput,
368
353
  options: __HttpHandlerOptions,
369
- cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void
354
+ cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void,
370
355
  ): void;
371
356
  listTagsForResource(
372
357
  args: ListTagsForResourceCommandInput,
373
- options?: __HttpHandlerOptions
358
+ options?: __HttpHandlerOptions,
374
359
  ): Promise<ListTagsForResourceCommandOutput>;
375
360
  listTagsForResource(
376
361
  args: ListTagsForResourceCommandInput,
377
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
362
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
378
363
  ): void;
379
364
  listTagsForResource(
380
365
  args: ListTagsForResourceCommandInput,
381
366
  options: __HttpHandlerOptions,
382
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
367
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
383
368
  ): void;
384
369
  tagResource(
385
370
  args: TagResourceCommandInput,
386
- options?: __HttpHandlerOptions
371
+ options?: __HttpHandlerOptions,
387
372
  ): Promise<TagResourceCommandOutput>;
388
373
  tagResource(
389
374
  args: TagResourceCommandInput,
390
- cb: (err: any, data?: TagResourceCommandOutput) => void
375
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
391
376
  ): void;
392
377
  tagResource(
393
378
  args: TagResourceCommandInput,
394
379
  options: __HttpHandlerOptions,
395
- cb: (err: any, data?: TagResourceCommandOutput) => void
380
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
396
381
  ): void;
397
382
  untagResource(
398
383
  args: UntagResourceCommandInput,
399
- options?: __HttpHandlerOptions
384
+ options?: __HttpHandlerOptions,
400
385
  ): Promise<UntagResourceCommandOutput>;
401
386
  untagResource(
402
387
  args: UntagResourceCommandInput,
403
- cb: (err: any, data?: UntagResourceCommandOutput) => void
388
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
404
389
  ): void;
405
390
  untagResource(
406
391
  args: UntagResourceCommandInput,
407
392
  options: __HttpHandlerOptions,
408
- cb: (err: any, data?: UntagResourceCommandOutput) => void
393
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
409
394
  ): void;
410
395
  updateBudget(
411
396
  args: UpdateBudgetCommandInput,
412
- options?: __HttpHandlerOptions
397
+ options?: __HttpHandlerOptions,
413
398
  ): Promise<UpdateBudgetCommandOutput>;
414
399
  updateBudget(
415
400
  args: UpdateBudgetCommandInput,
416
- cb: (err: any, data?: UpdateBudgetCommandOutput) => void
401
+ cb: (err: any, data?: UpdateBudgetCommandOutput) => void,
417
402
  ): void;
418
403
  updateBudget(
419
404
  args: UpdateBudgetCommandInput,
420
405
  options: __HttpHandlerOptions,
421
- cb: (err: any, data?: UpdateBudgetCommandOutput) => void
406
+ cb: (err: any, data?: UpdateBudgetCommandOutput) => void,
422
407
  ): void;
423
408
  updateBudgetAction(
424
409
  args: UpdateBudgetActionCommandInput,
425
- options?: __HttpHandlerOptions
410
+ options?: __HttpHandlerOptions,
426
411
  ): Promise<UpdateBudgetActionCommandOutput>;
427
412
  updateBudgetAction(
428
413
  args: UpdateBudgetActionCommandInput,
429
- cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void
414
+ cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void,
430
415
  ): void;
431
416
  updateBudgetAction(
432
417
  args: UpdateBudgetActionCommandInput,
433
418
  options: __HttpHandlerOptions,
434
- cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void
419
+ cb: (err: any, data?: UpdateBudgetActionCommandOutput) => void,
435
420
  ): void;
436
421
  updateNotification(
437
422
  args: UpdateNotificationCommandInput,
438
- options?: __HttpHandlerOptions
423
+ options?: __HttpHandlerOptions,
439
424
  ): Promise<UpdateNotificationCommandOutput>;
440
425
  updateNotification(
441
426
  args: UpdateNotificationCommandInput,
442
- cb: (err: any, data?: UpdateNotificationCommandOutput) => void
427
+ cb: (err: any, data?: UpdateNotificationCommandOutput) => void,
443
428
  ): void;
444
429
  updateNotification(
445
430
  args: UpdateNotificationCommandInput,
446
431
  options: __HttpHandlerOptions,
447
- cb: (err: any, data?: UpdateNotificationCommandOutput) => void
432
+ cb: (err: any, data?: UpdateNotificationCommandOutput) => void,
448
433
  ): void;
449
434
  updateSubscriber(
450
435
  args: UpdateSubscriberCommandInput,
451
- options?: __HttpHandlerOptions
436
+ options?: __HttpHandlerOptions,
452
437
  ): Promise<UpdateSubscriberCommandOutput>;
453
438
  updateSubscriber(
454
439
  args: UpdateSubscriberCommandInput,
455
- cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
440
+ cb: (err: any, data?: UpdateSubscriberCommandOutput) => void,
456
441
  ): void;
457
442
  updateSubscriber(
458
443
  args: UpdateSubscriberCommandInput,
459
444
  options: __HttpHandlerOptions,
460
- cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
445
+ cb: (err: any, data?: UpdateSubscriberCommandOutput) => void,
461
446
  ): void;
462
447
  paginateDescribeBudgetActionHistories(
463
448
  args: DescribeBudgetActionHistoriesCommandInput,
464
449
  paginationConfig?: Pick<
465
450
  PaginationConfiguration,
466
451
  Exclude<keyof PaginationConfiguration, "client">
467
- >
452
+ >,
468
453
  ): Paginator<DescribeBudgetActionHistoriesCommandOutput>;
469
454
  paginateDescribeBudgetActionsForAccount(
470
455
  args: DescribeBudgetActionsForAccountCommandInput,
471
456
  paginationConfig?: Pick<
472
457
  PaginationConfiguration,
473
458
  Exclude<keyof PaginationConfiguration, "client">
474
- >
459
+ >,
475
460
  ): Paginator<DescribeBudgetActionsForAccountCommandOutput>;
476
461
  paginateDescribeBudgetActionsForBudget(
477
462
  args: DescribeBudgetActionsForBudgetCommandInput,
478
463
  paginationConfig?: Pick<
479
464
  PaginationConfiguration,
480
465
  Exclude<keyof PaginationConfiguration, "client">
481
- >
466
+ >,
482
467
  ): Paginator<DescribeBudgetActionsForBudgetCommandOutput>;
483
468
  paginateDescribeBudgetNotificationsForAccount(
484
469
  args: DescribeBudgetNotificationsForAccountCommandInput,
485
470
  paginationConfig?: Pick<
486
471
  PaginationConfiguration,
487
472
  Exclude<keyof PaginationConfiguration, "client">
488
- >
473
+ >,
489
474
  ): Paginator<DescribeBudgetNotificationsForAccountCommandOutput>;
490
475
  paginateDescribeBudgetPerformanceHistory(
491
476
  args: DescribeBudgetPerformanceHistoryCommandInput,
492
477
  paginationConfig?: Pick<
493
478
  PaginationConfiguration,
494
479
  Exclude<keyof PaginationConfiguration, "client">
495
- >
480
+ >,
496
481
  ): Paginator<DescribeBudgetPerformanceHistoryCommandOutput>;
497
482
  paginateDescribeBudgets(
498
483
  args: DescribeBudgetsCommandInput,
499
484
  paginationConfig?: Pick<
500
485
  PaginationConfiguration,
501
486
  Exclude<keyof PaginationConfiguration, "client">
502
- >
487
+ >,
503
488
  ): Paginator<DescribeBudgetsCommandOutput>;
504
489
  paginateDescribeNotificationsForBudget(
505
490
  args: DescribeNotificationsForBudgetCommandInput,
506
491
  paginationConfig?: Pick<
507
492
  PaginationConfiguration,
508
493
  Exclude<keyof PaginationConfiguration, "client">
509
- >
494
+ >,
510
495
  ): Paginator<DescribeNotificationsForBudgetCommandOutput>;
511
496
  paginateDescribeSubscribersForNotification(
512
497
  args: DescribeSubscribersForNotificationCommandInput,
513
498
  paginationConfig?: Pick<
514
499
  PaginationConfiguration,
515
500
  Exclude<keyof PaginationConfiguration, "client">
516
- >
501
+ >,
517
502
  ): Paginator<DescribeSubscribersForNotificationCommandOutput>;
518
503
  }
519
504
  export declare class Budgets extends BudgetsClient implements Budgets {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -116,10 +113,7 @@ import {
116
113
  ListTagsForResourceCommandInput,
117
114
  ListTagsForResourceCommandOutput,
118
115
  } from "./commands/ListTagsForResourceCommand";
119
- import {
120
- TagResourceCommandInput,
121
- TagResourceCommandOutput,
122
- } from "./commands/TagResourceCommand";
116
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
123
117
  import {
124
118
  UntagResourceCommandInput,
125
119
  UntagResourceCommandOutput,
@@ -201,8 +195,7 @@ export type ServiceOutputTypes =
201
195
  | UpdateBudgetCommandOutput
202
196
  | UpdateNotificationCommandOutput
203
197
  | UpdateSubscriberCommandOutput;
204
- export interface ClientDefaults
205
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
198
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
206
199
  requestHandler?: __HttpHandlerUserInput;
207
200
  sha256?: __ChecksumConstructor | __HashConstructor;
208
201
  urlParser?: __UrlParser;
@@ -227,9 +220,7 @@ export interface ClientDefaults
227
220
  extensions?: RuntimeExtension[];
228
221
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
229
222
  }
230
- export type BudgetsClientConfigType = Partial<
231
- __SmithyConfiguration<__HttpHandlerOptions>
232
- > &
223
+ export type BudgetsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
233
224
  ClientDefaults &
234
225
  UserAgentInputConfig &
235
226
  RetryInputConfig &
@@ -239,19 +230,17 @@ export type BudgetsClientConfigType = Partial<
239
230
  HttpAuthSchemeInputConfig &
240
231
  ClientInputEndpointParameters;
241
232
  export interface BudgetsClientConfig extends BudgetsClientConfigType {}
242
- export type BudgetsClientResolvedConfigType =
243
- __SmithyResolvedConfiguration<__HttpHandlerOptions> &
244
- Required<ClientDefaults> &
245
- RuntimeExtensionsConfig &
246
- UserAgentResolvedConfig &
247
- RetryResolvedConfig &
248
- RegionResolvedConfig &
249
- HostHeaderResolvedConfig &
250
- EndpointResolvedConfig<EndpointParameters> &
251
- HttpAuthSchemeResolvedConfig &
252
- ClientResolvedEndpointParameters;
253
- export interface BudgetsClientResolvedConfig
254
- extends BudgetsClientResolvedConfigType {}
233
+ export type BudgetsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
234
+ Required<ClientDefaults> &
235
+ RuntimeExtensionsConfig &
236
+ UserAgentResolvedConfig &
237
+ RetryResolvedConfig &
238
+ RegionResolvedConfig &
239
+ HostHeaderResolvedConfig &
240
+ EndpointResolvedConfig<EndpointParameters> &
241
+ HttpAuthSchemeResolvedConfig &
242
+ ClientResolvedEndpointParameters;
243
+ export interface BudgetsClientResolvedConfig extends BudgetsClientResolvedConfigType {}
255
244
  export declare class BudgetsClient extends __Client<
256
245
  __HttpHandlerOptions,
257
246
  ServiceInputTypes,
@@ -259,8 +248,6 @@ export declare class BudgetsClient extends __Client<
259
248
  BudgetsClientResolvedConfig
260
249
  > {
261
250
  readonly config: BudgetsClientResolvedConfig;
262
- constructor(
263
- ...[configuration]: __CheckOptionalClientConfig<BudgetsClientConfig>
264
- );
251
+ constructor(...[configuration]: __CheckOptionalClientConfig<BudgetsClientConfig>);
265
252
  destroy(): void;
266
253
  }
@@ -7,17 +7,10 @@ import { BudgetsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: BudgetsHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: BudgetsHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): BudgetsHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;