@aws-sdk/client-budgets 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultBudgetsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateBudgetAction$, CreateBudget$, CreateNotification$, CreateSubscriber$, DeleteBudgetAction$, DeleteBudget$, DeleteNotification$, DeleteSubscriber$, DescribeBudgetAction$, DescribeBudgetActionHistories$, DescribeBudgetActionsForAccount$, DescribeBudgetActionsForBudget$, DescribeBudget$, DescribeBudgetNotificationsForAccount$, DescribeBudgetPerformanceHistory$, DescribeBudgets$, DescribeNotificationsForBudget$, DescribeSubscribersForNotification$, ExecuteBudgetAction$, ListTagsForResource$, TagResource$, UntagResource$, UpdateBudgetAction$, UpdateBudget$, UpdateNotification$, UpdateSubscriber$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { BudgetsServiceException } = require("./models/BudgetsServiceException");
18
- exports.BudgetsServiceException = BudgetsServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultBudgetsHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "budgets",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultBudgetsHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1138 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const n = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = "sigv4", i = { [n]: "Endpoint" }, j = { [n]: d }, k = { "fn": f, "argv": [j, "name"] }, l = { "authSchemes": [{ "name": h, "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, m = [{ [n]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [i]],
80
+ [c, m],
81
+ ["aws.partition", m, d],
82
+ [e, [{ [n]: "UseFIPS" }, b]],
83
+ [e, [{ fn: f, argv: [j, "supportsFIPS"] }, b]],
84
+ [e, [{ [n]: "UseDualStack" }, b]],
85
+ [g, [k, "aws-iso-b"]],
86
+ [g, [k, "aws-iso-e"]],
87
+ [g, [k, "aws"]],
88
+ [g, [k, "aws-iso-f"]],
89
+ [g, [k, "aws-eusc"]],
90
+ [e, [{ fn: f, argv: [j, "supportsDualStack"] }, b]]
91
+ ],
92
+ results: [
93
+ [a],
94
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
95
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
96
+ [i, {}],
97
+ ["https://budgets.us-east-1.api.aws", { authSchemes: [{ name: h, signingRegion: "us-east-1" }] }],
98
+ ["https://budgets.global.sc2s.sgov.gov", { authSchemes: [{ name: h, signingRegion: "us-isob-east-1" }] }],
99
+ ["https://budgets.global.cloud.adc-e.uk", { authSchemes: [{ name: h, signingRegion: "eu-isoe-west-1" }] }],
100
+ ["https://budgets.global.csp.hci.ic.gov", { authSchemes: [{ name: h, signingRegion: "us-isof-south-1" }] }],
101
+ ["https://budgets.eusc-de-east-1.api.amazonwebservices.eu", { authSchemes: [{ name: h, signingRegion: "eusc-de-east-1" }] }],
102
+ ["https://budgets-fips.{PartitionResult#dualStackDnsSuffix}", l],
103
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
104
+ ["https://budgets-fips.{PartitionResult#dnsSuffix}", l],
105
+ [a, "FIPS is enabled but this partition does not support FIPS"],
106
+ ["https://budgets.{PartitionResult#dualStackDnsSuffix}", l],
107
+ [a, "DualStack is enabled but this partition does not support DualStack"],
108
+ ["https://budgets.{PartitionResult#dnsSuffix}", l],
109
+ [a, "Invalid Configuration: Missing Region"]
110
+ ]
111
+ };
112
+ const root = 2;
113
+ const r = 100_000_000;
114
+ const nodes = new Int32Array([
115
+ -1, 1, -1,
116
+ 0, 18, 3,
117
+ 1, 4, r + 16,
118
+ 2, 5, r + 16,
119
+ 3, 14, 6,
120
+ 5, 11, 7,
121
+ 6, r + 5, 8,
122
+ 7, r + 6, 9,
123
+ 9, r + 7, 10,
124
+ 10, r + 8, r + 15,
125
+ 8, r + 4, 12,
126
+ 10, r + 8, 13,
127
+ 11, r + 13, r + 14,
128
+ 4, 16, 15,
129
+ 5, r + 10, r + 12,
130
+ 5, 17, r + 11,
131
+ 11, r + 9, r + 10,
132
+ 3, r + 1, 19,
133
+ 5, r + 2, r + 3,
134
+ ]);
135
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
136
+
137
+ const cache = new EndpointCache({
138
+ size: 50,
139
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
140
+ });
141
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
142
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
143
+ endpointParams: endpointParams,
144
+ logger: context.logger,
145
+ }));
146
+ };
147
+ customEndpointFunctions.aws = awsEndpointFunctions;
148
+
149
+ class BudgetsServiceException extends ServiceException {
150
+ constructor(options) {
151
+ super(options);
152
+ Object.setPrototypeOf(this, BudgetsServiceException.prototype);
153
+ }
154
+ }
155
+
156
+ class AccessDeniedException extends BudgetsServiceException {
157
+ name = "AccessDeniedException";
158
+ $fault = "client";
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "AccessDeniedException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
167
+ this.Message = opts.Message;
168
+ }
169
+ }
170
+ class BillingViewHealthStatusException extends BudgetsServiceException {
171
+ name = "BillingViewHealthStatusException";
172
+ $fault = "client";
173
+ Message;
174
+ constructor(opts) {
175
+ super({
176
+ name: "BillingViewHealthStatusException",
177
+ $fault: "client",
178
+ ...opts,
179
+ });
180
+ Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
181
+ this.Message = opts.Message;
182
+ }
183
+ }
184
+ class CreationLimitExceededException extends BudgetsServiceException {
185
+ name = "CreationLimitExceededException";
186
+ $fault = "client";
187
+ Message;
188
+ constructor(opts) {
189
+ super({
190
+ name: "CreationLimitExceededException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, CreationLimitExceededException.prototype);
195
+ this.Message = opts.Message;
196
+ }
197
+ }
198
+ class DuplicateRecordException extends BudgetsServiceException {
199
+ name = "DuplicateRecordException";
200
+ $fault = "client";
201
+ Message;
202
+ constructor(opts) {
203
+ super({
204
+ name: "DuplicateRecordException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, DuplicateRecordException.prototype);
209
+ this.Message = opts.Message;
210
+ }
211
+ }
212
+ class InternalErrorException extends BudgetsServiceException {
213
+ name = "InternalErrorException";
214
+ $fault = "server";
215
+ Message;
216
+ constructor(opts) {
217
+ super({
218
+ name: "InternalErrorException",
219
+ $fault: "server",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, InternalErrorException.prototype);
223
+ this.Message = opts.Message;
224
+ }
225
+ }
226
+ class InvalidParameterException extends BudgetsServiceException {
227
+ name = "InvalidParameterException";
228
+ $fault = "client";
229
+ Message;
230
+ constructor(opts) {
231
+ super({
232
+ name: "InvalidParameterException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
237
+ this.Message = opts.Message;
238
+ }
239
+ }
240
+ class NotFoundException extends BudgetsServiceException {
241
+ name = "NotFoundException";
242
+ $fault = "client";
243
+ Message;
244
+ constructor(opts) {
245
+ super({
246
+ name: "NotFoundException",
247
+ $fault: "client",
248
+ ...opts,
249
+ });
250
+ Object.setPrototypeOf(this, NotFoundException.prototype);
251
+ this.Message = opts.Message;
252
+ }
253
+ }
254
+ class ServiceQuotaExceededException extends BudgetsServiceException {
255
+ name = "ServiceQuotaExceededException";
256
+ $fault = "client";
257
+ Message;
258
+ constructor(opts) {
259
+ super({
260
+ name: "ServiceQuotaExceededException",
261
+ $fault: "client",
262
+ ...opts,
263
+ });
264
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
265
+ this.Message = opts.Message;
266
+ }
267
+ }
268
+ class ThrottlingException extends BudgetsServiceException {
269
+ name = "ThrottlingException";
270
+ $fault = "client";
271
+ Message;
272
+ constructor(opts) {
273
+ super({
274
+ name: "ThrottlingException",
275
+ $fault: "client",
276
+ ...opts,
277
+ });
278
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
279
+ this.Message = opts.Message;
280
+ }
281
+ }
282
+ class ResourceLockedException extends BudgetsServiceException {
283
+ name = "ResourceLockedException";
284
+ $fault = "client";
285
+ Message;
286
+ constructor(opts) {
287
+ super({
288
+ name: "ResourceLockedException",
289
+ $fault: "client",
290
+ ...opts,
291
+ });
292
+ Object.setPrototypeOf(this, ResourceLockedException.prototype);
293
+ this.Message = opts.Message;
294
+ }
295
+ }
296
+ class InvalidNextTokenException extends BudgetsServiceException {
297
+ name = "InvalidNextTokenException";
298
+ $fault = "client";
299
+ Message;
300
+ constructor(opts) {
301
+ super({
302
+ name: "InvalidNextTokenException",
303
+ $fault: "client",
304
+ ...opts,
305
+ });
306
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
307
+ this.Message = opts.Message;
308
+ }
309
+ }
310
+ class ExpiredNextTokenException extends BudgetsServiceException {
311
+ name = "ExpiredNextTokenException";
312
+ $fault = "client";
313
+ Message;
314
+ constructor(opts) {
315
+ super({
316
+ name: "ExpiredNextTokenException",
317
+ $fault: "client",
318
+ ...opts,
319
+ });
320
+ Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
321
+ this.Message = opts.Message;
322
+ }
323
+ }
324
+
325
+ const _A = "Action";
326
+ const _AA = "ActualAmount";
327
+ const _AAD = "AutoAdjustData";
328
+ const _AAT = "AutoAdjustType";
329
+ const _ADE = "AccessDeniedException";
330
+ const _AH = "ActionHistory";
331
+ const _AHD = "ActionHistoryDetails";
332
+ const _AHc = "ActionHistories";
333
+ const _AI = "ActionId";
334
+ const _AIc = "AccountId";
335
+ const _AM = "ApprovalModel";
336
+ const _AS = "ActualSpend";
337
+ const _AST = "ActionSubType";
338
+ const _AT = "ActionType";
339
+ const _ATT = "ActionThresholdType";
340
+ const _ATV = "ActionThresholdValue";
341
+ const _ATc = "ActionThreshold";
342
+ const _Ac = "Actions";
343
+ const _Ad = "Address";
344
+ const _Am = "Amount";
345
+ const _An = "And";
346
+ const _B = "Budget";
347
+ const _BA = "BudgetedAmount";
348
+ const _BAAA = "BudgetedAndActualAmounts";
349
+ const _BAAAL = "BudgetedAndActualAmountsList";
350
+ const _BAP = "BudgetAdjustmentPeriod";
351
+ const _BL = "BudgetLimit";
352
+ const _BN = "BudgetName";
353
+ const _BNFA = "BudgetNotificationsForAccount";
354
+ const _BNFAL = "BudgetNotificationsForAccountList";
355
+ const _BPH = "BudgetPerformanceHistory";
356
+ const _BT = "BudgetType";
357
+ const _BVA = "BillingViewArn";
358
+ const _BVHSE = "BillingViewHealthStatusException";
359
+ const _Bu = "Budgets";
360
+ const _CB = "CreateBudget";
361
+ const _CBA = "CreateBudgetAction";
362
+ const _CBAR = "CreateBudgetActionRequest";
363
+ const _CBARr = "CreateBudgetActionResponse";
364
+ const _CBR = "CreateBudgetRequest";
365
+ const _CBRr = "CreateBudgetResponse";
366
+ const _CC = "CostCategories";
367
+ const _CCV = "CostCategoryValues";
368
+ const _CF = "CostFilters";
369
+ const _CLEE = "CreationLimitExceededException";
370
+ const _CN = "CreateNotification";
371
+ const _CNR = "CreateNotificationRequest";
372
+ const _CNRr = "CreateNotificationResponse";
373
+ const _CO = "ComparisonOperator";
374
+ const _CS = "CalculatedSpend";
375
+ const _CSR = "CreateSubscriberRequest";
376
+ const _CSRr = "CreateSubscriberResponse";
377
+ const _CSr = "CreateSubscriber";
378
+ const _CT = "CostTypes";
379
+ const _D = "Definition";
380
+ const _DB = "DeleteBudget";
381
+ const _DBA = "DeleteBudgetAction";
382
+ const _DBAFA = "DescribeBudgetActionsForAccount";
383
+ const _DBAFAR = "DescribeBudgetActionsForAccountRequest";
384
+ const _DBAFARe = "DescribeBudgetActionsForAccountResponse";
385
+ const _DBAFB = "DescribeBudgetActionsForBudget";
386
+ const _DBAFBR = "DescribeBudgetActionsForBudgetRequest";
387
+ const _DBAFBRe = "DescribeBudgetActionsForBudgetResponse";
388
+ const _DBAH = "DescribeBudgetActionHistories";
389
+ const _DBAHR = "DescribeBudgetActionHistoriesRequest";
390
+ const _DBAHRe = "DescribeBudgetActionHistoriesResponse";
391
+ const _DBAR = "DeleteBudgetActionRequest";
392
+ const _DBARe = "DeleteBudgetActionResponse";
393
+ const _DBARes = "DescribeBudgetActionRequest";
394
+ const _DBAResc = "DescribeBudgetActionResponse";
395
+ const _DBAe = "DescribeBudgetAction";
396
+ const _DBNFA = "DescribeBudgetNotificationsForAccount";
397
+ const _DBNFAR = "DescribeBudgetNotificationsForAccountRequest";
398
+ const _DBNFARe = "DescribeBudgetNotificationsForAccountResponse";
399
+ const _DBPH = "DescribeBudgetPerformanceHistory";
400
+ const _DBPHR = "DescribeBudgetPerformanceHistoryRequest";
401
+ const _DBPHRe = "DescribeBudgetPerformanceHistoryResponse";
402
+ const _DBR = "DeleteBudgetRequest";
403
+ const _DBRe = "DeleteBudgetResponse";
404
+ const _DBRes = "DescribeBudgetRequest";
405
+ const _DBResc = "DescribeBudgetResponse";
406
+ const _DBRescr = "DescribeBudgetsRequest";
407
+ const _DBRescri = "DescribeBudgetsResponse";
408
+ const _DBe = "DescribeBudget";
409
+ const _DBes = "DescribeBudgets";
410
+ const _DN = "DeleteNotification";
411
+ const _DNFB = "DescribeNotificationsForBudget";
412
+ const _DNFBR = "DescribeNotificationsForBudgetRequest";
413
+ const _DNFBRe = "DescribeNotificationsForBudgetResponse";
414
+ const _DNR = "DeleteNotificationRequest";
415
+ const _DNRe = "DeleteNotificationResponse";
416
+ const _DRE = "DuplicateRecordException";
417
+ const _DS = "DeleteSubscriber";
418
+ const _DSFN = "DescribeSubscribersForNotification";
419
+ const _DSFNR = "DescribeSubscribersForNotificationRequest";
420
+ const _DSFNRe = "DescribeSubscribersForNotificationResponse";
421
+ const _DSR = "DeleteSubscriberRequest";
422
+ const _DSRe = "DeleteSubscriberResponse";
423
+ const _Di = "Dimensions";
424
+ const _E = "Expression";
425
+ const _EBA = "ExecuteBudgetAction";
426
+ const _EBAR = "ExecuteBudgetActionRequest";
427
+ const _EBARx = "ExecuteBudgetActionResponse";
428
+ const _EDV = "ExpressionDimensionValues";
429
+ const _ENTE = "ExpiredNextTokenException";
430
+ const _ERA = "ExecutionRoleArn";
431
+ const _ET = "EventType";
432
+ const _ETx = "ExecutionType";
433
+ const _En = "End";
434
+ const _Ex = "Expressions";
435
+ const _FE = "FilterExpression";
436
+ const _FS = "ForecastedSpend";
437
+ const _G = "Groups";
438
+ const _HO = "HistoricalOptions";
439
+ const _HS = "HealthStatus";
440
+ const _IAD = "IamActionDefinition";
441
+ const _IC = "IncludeCredit";
442
+ const _ID = "IncludeDiscount";
443
+ const _IEE = "InternalErrorException";
444
+ const _II = "InstanceIds";
445
+ const _INTE = "InvalidNextTokenException";
446
+ const _IOS = "IncludeOtherSubscription";
447
+ const _IPE = "InvalidParameterException";
448
+ const _IR = "IncludeRefund";
449
+ const _IRn = "IncludeRecurring";
450
+ const _IS = "IncludeSubscription";
451
+ const _ISn = "IncludeSupport";
452
+ const _IT = "IncludeTax";
453
+ const _IU = "IncludeUpfront";
454
+ const _K = "Key";
455
+ const _LAAT = "LastAutoAdjustTime";
456
+ const _LBAP = "LookBackAvailablePeriods";
457
+ const _LTFR = "ListTagsForResource";
458
+ const _LTFRR = "ListTagsForResourceRequest";
459
+ const _LTFRRi = "ListTagsForResourceResponse";
460
+ const _LUT = "LastUpdatedTime";
461
+ const _M = "Message";
462
+ const _MO = "MatchOptions";
463
+ const _MR = "MaxResults";
464
+ const _Me = "Metrics";
465
+ const _N = "Notifications";
466
+ const _NA = "NewAction";
467
+ const _NB = "NewBudget";
468
+ const _NFE = "NotFoundException";
469
+ const _NN = "NewNotification";
470
+ const _NS = "NotificationState";
471
+ const _NSe = "NewSubscriber";
472
+ const _NT = "NotificationType";
473
+ const _NTe = "NextToken";
474
+ const _NWS = "NotificationsWithSubscribers";
475
+ const _NWSL = "NotificationWithSubscribersList";
476
+ const _NWSo = "NotificationWithSubscribers";
477
+ const _No = "Notification";
478
+ const _Not = "Not";
479
+ const _O = "Or";
480
+ const _OA = "OldAction";
481
+ const _ON = "OldNotification";
482
+ const _OS = "OldSubscriber";
483
+ const _PA = "PolicyArn";
484
+ const _PBL = "PlannedBudgetLimits";
485
+ const _PI = "PolicyId";
486
+ const _R = "Roles";
487
+ const _RARN = "ResourceARN";
488
+ const _RLE = "ResourceLockedException";
489
+ const _RT = "ResourceTags";
490
+ const _RTK = "ResourceTagKeys";
491
+ const _RTL = "ResourceTagList";
492
+ const _RTe = "ResourceTag";
493
+ const _Re = "Region";
494
+ const _S = "Status";
495
+ const _SA = "SubscriberAddress";
496
+ const _SAD = "ScpActionDefinition";
497
+ const _SADs = "SsmActionDefinition";
498
+ const _SFE = "ShowFilterExpression";
499
+ const _SQEE = "ServiceQuotaExceededException";
500
+ const _SR = "StatusReason";
501
+ const _ST = "SubscriptionType";
502
+ const _Sp = "Spend";
503
+ const _St = "Start";
504
+ const _Su = "Subscribers";
505
+ const _Sub = "Subscriber";
506
+ const _T = "Timestamp";
507
+ const _TE = "ThrottlingException";
508
+ const _TI = "TargetIds";
509
+ const _TP = "TimePeriod";
510
+ const _TR = "TagResource";
511
+ const _TRR = "TagResourceRequest";
512
+ const _TRRa = "TagResourceResponse";
513
+ const _TT = "ThresholdType";
514
+ const _TU = "TimeUnit";
515
+ const _TV = "TagValues";
516
+ const _Ta = "Tags";
517
+ const _Th = "Threshold";
518
+ const _U = "Users";
519
+ const _UA = "UseAmortized";
520
+ const _UB = "UseBlended";
521
+ const _UBA = "UpdateBudgetAction";
522
+ const _UBAR = "UpdateBudgetActionRequest";
523
+ const _UBARp = "UpdateBudgetActionResponse";
524
+ const _UBR = "UpdateBudgetRequest";
525
+ const _UBRp = "UpdateBudgetResponse";
526
+ const _UBp = "UpdateBudget";
527
+ const _UN = "UpdateNotification";
528
+ const _UNR = "UpdateNotificationRequest";
529
+ const _UNRp = "UpdateNotificationResponse";
530
+ const _UR = "UntagResource";
531
+ const _URR = "UntagResourceRequest";
532
+ const _URRn = "UntagResourceResponse";
533
+ const _US = "UpdateSubscriber";
534
+ const _USR = "UpdateSubscriberRequest";
535
+ const _USRp = "UpdateSubscriberResponse";
536
+ const _Un = "Unit";
537
+ const _V = "Values";
538
+ const _Va = "Value";
539
+ const _c = "client";
540
+ const _e = "error";
541
+ const _hE = "httpError";
542
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.budgets";
543
+ const _se = "server";
544
+ const n0 = "com.amazonaws.budgets";
545
+ const _s_registry = TypeRegistry.for(_s);
546
+ var BudgetsServiceException$ = [-3, _s, "BudgetsServiceException", 0, [], []];
547
+ _s_registry.registerError(BudgetsServiceException$, BudgetsServiceException);
548
+ const n0_registry = TypeRegistry.for(n0);
549
+ var AccessDeniedException$ = [-3, n0, _ADE,
550
+ { [_e]: _c, [_hE]: 403 },
551
+ [_M],
552
+ [0]
553
+ ];
554
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
555
+ var BillingViewHealthStatusException$ = [-3, n0, _BVHSE,
556
+ { [_e]: _c, [_hE]: 400 },
557
+ [_M],
558
+ [0]
559
+ ];
560
+ n0_registry.registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
561
+ var CreationLimitExceededException$ = [-3, n0, _CLEE,
562
+ { [_e]: _c, [_hE]: 405 },
563
+ [_M],
564
+ [0]
565
+ ];
566
+ n0_registry.registerError(CreationLimitExceededException$, CreationLimitExceededException);
567
+ var DuplicateRecordException$ = [-3, n0, _DRE,
568
+ { [_e]: _c, [_hE]: 409 },
569
+ [_M],
570
+ [0]
571
+ ];
572
+ n0_registry.registerError(DuplicateRecordException$, DuplicateRecordException);
573
+ var ExpiredNextTokenException$ = [-3, n0, _ENTE,
574
+ { [_e]: _c, [_hE]: 400 },
575
+ [_M],
576
+ [0]
577
+ ];
578
+ n0_registry.registerError(ExpiredNextTokenException$, ExpiredNextTokenException);
579
+ var InternalErrorException$ = [-3, n0, _IEE,
580
+ { [_e]: _se, [_hE]: 500 },
581
+ [_M],
582
+ [0]
583
+ ];
584
+ n0_registry.registerError(InternalErrorException$, InternalErrorException);
585
+ var InvalidNextTokenException$ = [-3, n0, _INTE,
586
+ { [_e]: _c, [_hE]: 400 },
587
+ [_M],
588
+ [0]
589
+ ];
590
+ n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
591
+ var InvalidParameterException$ = [-3, n0, _IPE,
592
+ { [_e]: _c, [_hE]: 400 },
593
+ [_M],
594
+ [0]
595
+ ];
596
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
597
+ var NotFoundException$ = [-3, n0, _NFE,
598
+ { [_e]: _c, [_hE]: 404 },
599
+ [_M],
600
+ [0]
601
+ ];
602
+ n0_registry.registerError(NotFoundException$, NotFoundException);
603
+ var ResourceLockedException$ = [-3, n0, _RLE,
604
+ { [_e]: _c, [_hE]: 423 },
605
+ [_M],
606
+ [0]
607
+ ];
608
+ n0_registry.registerError(ResourceLockedException$, ResourceLockedException);
609
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
610
+ { [_e]: _c, [_hE]: 402 },
611
+ [_M],
612
+ [0]
613
+ ];
614
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
615
+ var ThrottlingException$ = [-3, n0, _TE,
616
+ { [_e]: _c, [_hE]: 400 },
617
+ [_M],
618
+ [0]
619
+ ];
620
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
621
+ const errorTypeRegistries = [
622
+ _s_registry,
623
+ n0_registry,
624
+ ];
625
+ var SubscriberAddress = [0, n0, _SA, 8, 0];
626
+ var Action$ = [3, n0, _A,
627
+ 0,
628
+ [_AI, _BN, _NT, _AT, _ATc, _D, _ERA, _AM, _S, _Su],
629
+ [0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, 0, [() => Subscribers, 0]], 10
630
+ ];
631
+ var ActionHistory$ = [3, n0, _AH,
632
+ 0,
633
+ [_T, _S, _ET, _AHD],
634
+ [4, 0, 0, [() => ActionHistoryDetails$, 0]], 4
635
+ ];
636
+ var ActionHistoryDetails$ = [3, n0, _AHD,
637
+ 0,
638
+ [_M, _A],
639
+ [0, [() => Action$, 0]], 2
640
+ ];
641
+ var ActionThreshold$ = [3, n0, _ATc,
642
+ 0,
643
+ [_ATV, _ATT],
644
+ [1, 0], 2
645
+ ];
646
+ var AutoAdjustData$ = [3, n0, _AAD,
647
+ 0,
648
+ [_AAT, _HO, _LAAT],
649
+ [0, () => HistoricalOptions$, 4], 1
650
+ ];
651
+ var Budget$ = [3, n0, _B,
652
+ 0,
653
+ [_BN, _TU, _BT, _BL, _PBL, _CF, _CT, _TP, _CS, _LUT, _AAD, _FE, _Me, _BVA, _HS],
654
+ [0, 0, 0, () => Spend$, () => PlannedBudgetLimits, [2, n0, _CF, 0, 0, 64 | 0], () => CostTypes$, () => TimePeriod$, () => CalculatedSpend$, 4, () => AutoAdjustData$, () => Expression$, 64 | 0, 0, () => HealthStatus$], 3
655
+ ];
656
+ var BudgetedAndActualAmounts$ = [3, n0, _BAAA,
657
+ 0,
658
+ [_BA, _AA, _TP],
659
+ [() => Spend$, () => Spend$, () => TimePeriod$]
660
+ ];
661
+ var BudgetNotificationsForAccount$ = [3, n0, _BNFA,
662
+ 0,
663
+ [_N, _BN],
664
+ [() => Notifications, 0]
665
+ ];
666
+ var BudgetPerformanceHistory$ = [3, n0, _BPH,
667
+ 0,
668
+ [_BN, _BT, _CF, _CT, _TU, _BVA, _BAAAL, _FE, _Me],
669
+ [0, 0, [2, n0, _CF, 0, 0, 64 | 0], () => CostTypes$, 0, 0, () => BudgetedAndActualAmountsList, () => Expression$, 64 | 0]
670
+ ];
671
+ var CalculatedSpend$ = [3, n0, _CS,
672
+ 0,
673
+ [_AS, _FS],
674
+ [() => Spend$, () => Spend$], 1
675
+ ];
676
+ var CostCategoryValues$ = [3, n0, _CCV,
677
+ 0,
678
+ [_K, _V, _MO],
679
+ [0, 64 | 0, 64 | 0]
680
+ ];
681
+ var CostTypes$ = [3, n0, _CT,
682
+ 0,
683
+ [_IT, _IS, _UB, _IR, _IC, _IU, _IRn, _IOS, _ISn, _ID, _UA],
684
+ [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
685
+ ];
686
+ var CreateBudgetActionRequest$ = [3, n0, _CBAR,
687
+ 0,
688
+ [_AIc, _BN, _NT, _AT, _ATc, _D, _ERA, _AM, _Su, _RT],
689
+ [0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, [() => Subscribers, 0], () => ResourceTagList], 9
690
+ ];
691
+ var CreateBudgetActionResponse$ = [3, n0, _CBARr,
692
+ 0,
693
+ [_AIc, _BN, _AI],
694
+ [0, 0, 0], 3
695
+ ];
696
+ var CreateBudgetRequest$ = [3, n0, _CBR,
697
+ 0,
698
+ [_AIc, _B, _NWS, _RT],
699
+ [0, () => Budget$, [() => NotificationWithSubscribersList, 0], () => ResourceTagList], 2
700
+ ];
701
+ var CreateBudgetResponse$ = [3, n0, _CBRr,
702
+ 0,
703
+ [],
704
+ []
705
+ ];
706
+ var CreateNotificationRequest$ = [3, n0, _CNR,
707
+ 0,
708
+ [_AIc, _BN, _No, _Su],
709
+ [0, 0, () => Notification$, [() => Subscribers, 0]], 4
710
+ ];
711
+ var CreateNotificationResponse$ = [3, n0, _CNRr,
712
+ 0,
713
+ [],
714
+ []
715
+ ];
716
+ var CreateSubscriberRequest$ = [3, n0, _CSR,
717
+ 0,
718
+ [_AIc, _BN, _No, _Sub],
719
+ [0, 0, () => Notification$, [() => Subscriber$, 0]], 4
720
+ ];
721
+ var CreateSubscriberResponse$ = [3, n0, _CSRr,
722
+ 0,
723
+ [],
724
+ []
725
+ ];
726
+ var Definition$ = [3, n0, _D,
727
+ 0,
728
+ [_IAD, _SAD, _SADs],
729
+ [() => IamActionDefinition$, () => ScpActionDefinition$, () => SsmActionDefinition$]
730
+ ];
731
+ var DeleteBudgetActionRequest$ = [3, n0, _DBAR,
732
+ 0,
733
+ [_AIc, _BN, _AI],
734
+ [0, 0, 0], 3
735
+ ];
736
+ var DeleteBudgetActionResponse$ = [3, n0, _DBARe,
737
+ 0,
738
+ [_AIc, _BN, _A],
739
+ [0, 0, [() => Action$, 0]], 3
740
+ ];
741
+ var DeleteBudgetRequest$ = [3, n0, _DBR,
742
+ 0,
743
+ [_AIc, _BN],
744
+ [0, 0], 2
745
+ ];
746
+ var DeleteBudgetResponse$ = [3, n0, _DBRe,
747
+ 0,
748
+ [],
749
+ []
750
+ ];
751
+ var DeleteNotificationRequest$ = [3, n0, _DNR,
752
+ 0,
753
+ [_AIc, _BN, _No],
754
+ [0, 0, () => Notification$], 3
755
+ ];
756
+ var DeleteNotificationResponse$ = [3, n0, _DNRe,
757
+ 0,
758
+ [],
759
+ []
760
+ ];
761
+ var DeleteSubscriberRequest$ = [3, n0, _DSR,
762
+ 0,
763
+ [_AIc, _BN, _No, _Sub],
764
+ [0, 0, () => Notification$, [() => Subscriber$, 0]], 4
765
+ ];
766
+ var DeleteSubscriberResponse$ = [3, n0, _DSRe,
767
+ 0,
768
+ [],
769
+ []
770
+ ];
771
+ var DescribeBudgetActionHistoriesRequest$ = [3, n0, _DBAHR,
772
+ 0,
773
+ [_AIc, _BN, _AI, _TP, _MR, _NTe],
774
+ [0, 0, 0, () => TimePeriod$, 1, 0], 3
775
+ ];
776
+ var DescribeBudgetActionHistoriesResponse$ = [3, n0, _DBAHRe,
777
+ 0,
778
+ [_AHc, _NTe],
779
+ [[() => ActionHistories, 0], 0], 1
780
+ ];
781
+ var DescribeBudgetActionRequest$ = [3, n0, _DBARes,
782
+ 0,
783
+ [_AIc, _BN, _AI],
784
+ [0, 0, 0], 3
785
+ ];
786
+ var DescribeBudgetActionResponse$ = [3, n0, _DBAResc,
787
+ 0,
788
+ [_AIc, _BN, _A],
789
+ [0, 0, [() => Action$, 0]], 3
790
+ ];
791
+ var DescribeBudgetActionsForAccountRequest$ = [3, n0, _DBAFAR,
792
+ 0,
793
+ [_AIc, _MR, _NTe],
794
+ [0, 1, 0], 1
795
+ ];
796
+ var DescribeBudgetActionsForAccountResponse$ = [3, n0, _DBAFARe,
797
+ 0,
798
+ [_Ac, _NTe],
799
+ [[() => Actions, 0], 0], 1
800
+ ];
801
+ var DescribeBudgetActionsForBudgetRequest$ = [3, n0, _DBAFBR,
802
+ 0,
803
+ [_AIc, _BN, _MR, _NTe],
804
+ [0, 0, 1, 0], 2
805
+ ];
806
+ var DescribeBudgetActionsForBudgetResponse$ = [3, n0, _DBAFBRe,
807
+ 0,
808
+ [_Ac, _NTe],
809
+ [[() => Actions, 0], 0], 1
810
+ ];
811
+ var DescribeBudgetNotificationsForAccountRequest$ = [3, n0, _DBNFAR,
812
+ 0,
813
+ [_AIc, _MR, _NTe],
814
+ [0, 1, 0], 1
815
+ ];
816
+ var DescribeBudgetNotificationsForAccountResponse$ = [3, n0, _DBNFARe,
817
+ 0,
818
+ [_BNFA, _NTe],
819
+ [() => BudgetNotificationsForAccountList, 0]
820
+ ];
821
+ var DescribeBudgetPerformanceHistoryRequest$ = [3, n0, _DBPHR,
822
+ 0,
823
+ [_AIc, _BN, _TP, _MR, _NTe],
824
+ [0, 0, () => TimePeriod$, 1, 0], 2
825
+ ];
826
+ var DescribeBudgetPerformanceHistoryResponse$ = [3, n0, _DBPHRe,
827
+ 0,
828
+ [_BPH, _NTe],
829
+ [() => BudgetPerformanceHistory$, 0]
830
+ ];
831
+ var DescribeBudgetRequest$ = [3, n0, _DBRes,
832
+ 0,
833
+ [_AIc, _BN, _SFE],
834
+ [0, 0, 2], 2
835
+ ];
836
+ var DescribeBudgetResponse$ = [3, n0, _DBResc,
837
+ 0,
838
+ [_B],
839
+ [() => Budget$]
840
+ ];
841
+ var DescribeBudgetsRequest$ = [3, n0, _DBRescr,
842
+ 0,
843
+ [_AIc, _MR, _NTe, _SFE],
844
+ [0, 1, 0, 2], 1
845
+ ];
846
+ var DescribeBudgetsResponse$ = [3, n0, _DBRescri,
847
+ 0,
848
+ [_Bu, _NTe],
849
+ [() => Budgets$1, 0]
850
+ ];
851
+ var DescribeNotificationsForBudgetRequest$ = [3, n0, _DNFBR,
852
+ 0,
853
+ [_AIc, _BN, _MR, _NTe],
854
+ [0, 0, 1, 0], 2
855
+ ];
856
+ var DescribeNotificationsForBudgetResponse$ = [3, n0, _DNFBRe,
857
+ 0,
858
+ [_N, _NTe],
859
+ [() => Notifications, 0]
860
+ ];
861
+ var DescribeSubscribersForNotificationRequest$ = [3, n0, _DSFNR,
862
+ 0,
863
+ [_AIc, _BN, _No, _MR, _NTe],
864
+ [0, 0, () => Notification$, 1, 0], 3
865
+ ];
866
+ var DescribeSubscribersForNotificationResponse$ = [3, n0, _DSFNRe,
867
+ 0,
868
+ [_Su, _NTe],
869
+ [[() => Subscribers, 0], 0]
870
+ ];
871
+ var ExecuteBudgetActionRequest$ = [3, n0, _EBAR,
872
+ 0,
873
+ [_AIc, _BN, _AI, _ETx],
874
+ [0, 0, 0, 0], 4
875
+ ];
876
+ var ExecuteBudgetActionResponse$ = [3, n0, _EBARx,
877
+ 0,
878
+ [_AIc, _BN, _AI, _ETx],
879
+ [0, 0, 0, 0], 4
880
+ ];
881
+ var Expression$ = [3, n0, _E,
882
+ 0,
883
+ [_O, _An, _Not, _Di, _Ta, _CC],
884
+ [() => Expressions, () => Expressions, () => Expression$, () => ExpressionDimensionValues$, () => TagValues$, () => CostCategoryValues$]
885
+ ];
886
+ var ExpressionDimensionValues$ = [3, n0, _EDV,
887
+ 0,
888
+ [_K, _V, _MO],
889
+ [0, 64 | 0, 64 | 0], 2
890
+ ];
891
+ var HealthStatus$ = [3, n0, _HS,
892
+ 0,
893
+ [_S, _SR, _LUT],
894
+ [0, 0, 4]
895
+ ];
896
+ var HistoricalOptions$ = [3, n0, _HO,
897
+ 0,
898
+ [_BAP, _LBAP],
899
+ [1, 1], 1
900
+ ];
901
+ var IamActionDefinition$ = [3, n0, _IAD,
902
+ 0,
903
+ [_PA, _R, _G, _U],
904
+ [0, 64 | 0, 64 | 0, 64 | 0], 1
905
+ ];
906
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
907
+ 0,
908
+ [_RARN],
909
+ [0], 1
910
+ ];
911
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
912
+ 0,
913
+ [_RT],
914
+ [() => ResourceTagList]
915
+ ];
916
+ var Notification$ = [3, n0, _No,
917
+ 0,
918
+ [_NT, _CO, _Th, _TT, _NS],
919
+ [0, 0, 1, 0, 0], 3
920
+ ];
921
+ var NotificationWithSubscribers$ = [3, n0, _NWSo,
922
+ 0,
923
+ [_No, _Su],
924
+ [() => Notification$, [() => Subscribers, 0]], 2
925
+ ];
926
+ var ResourceTag$ = [3, n0, _RTe,
927
+ 0,
928
+ [_K, _Va],
929
+ [0, 0], 2
930
+ ];
931
+ var ScpActionDefinition$ = [3, n0, _SAD,
932
+ 0,
933
+ [_PI, _TI],
934
+ [0, 64 | 0], 2
935
+ ];
936
+ var Spend$ = [3, n0, _Sp,
937
+ 0,
938
+ [_Am, _Un],
939
+ [0, 0], 2
940
+ ];
941
+ var SsmActionDefinition$ = [3, n0, _SADs,
942
+ 0,
943
+ [_AST, _Re, _II],
944
+ [0, 0, 64 | 0], 3
945
+ ];
946
+ var Subscriber$ = [3, n0, _Sub,
947
+ 0,
948
+ [_ST, _Ad],
949
+ [0, [() => SubscriberAddress, 0]], 2
950
+ ];
951
+ var TagResourceRequest$ = [3, n0, _TRR,
952
+ 0,
953
+ [_RARN, _RT],
954
+ [0, () => ResourceTagList], 2
955
+ ];
956
+ var TagResourceResponse$ = [3, n0, _TRRa,
957
+ 0,
958
+ [],
959
+ []
960
+ ];
961
+ var TagValues$ = [3, n0, _TV,
962
+ 0,
963
+ [_K, _V, _MO],
964
+ [0, 64 | 0, 64 | 0]
965
+ ];
966
+ var TimePeriod$ = [3, n0, _TP,
967
+ 0,
968
+ [_St, _En],
969
+ [4, 4]
970
+ ];
971
+ var UntagResourceRequest$ = [3, n0, _URR,
972
+ 0,
973
+ [_RARN, _RTK],
974
+ [0, 64 | 0], 2
975
+ ];
976
+ var UntagResourceResponse$ = [3, n0, _URRn,
977
+ 0,
978
+ [],
979
+ []
980
+ ];
981
+ var UpdateBudgetActionRequest$ = [3, n0, _UBAR,
982
+ 0,
983
+ [_AIc, _BN, _AI, _NT, _ATc, _D, _ERA, _AM, _Su],
984
+ [0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, [() => Subscribers, 0]], 3
985
+ ];
986
+ var UpdateBudgetActionResponse$ = [3, n0, _UBARp,
987
+ 0,
988
+ [_AIc, _BN, _OA, _NA],
989
+ [0, 0, [() => Action$, 0], [() => Action$, 0]], 4
990
+ ];
991
+ var UpdateBudgetRequest$ = [3, n0, _UBR,
992
+ 0,
993
+ [_AIc, _NB],
994
+ [0, () => Budget$], 2
995
+ ];
996
+ var UpdateBudgetResponse$ = [3, n0, _UBRp,
997
+ 0,
998
+ [],
999
+ []
1000
+ ];
1001
+ var UpdateNotificationRequest$ = [3, n0, _UNR,
1002
+ 0,
1003
+ [_AIc, _BN, _ON, _NN],
1004
+ [0, 0, () => Notification$, () => Notification$], 4
1005
+ ];
1006
+ var UpdateNotificationResponse$ = [3, n0, _UNRp,
1007
+ 0,
1008
+ [],
1009
+ []
1010
+ ];
1011
+ var UpdateSubscriberRequest$ = [3, n0, _USR,
1012
+ 0,
1013
+ [_AIc, _BN, _No, _OS, _NSe],
1014
+ [0, 0, () => Notification$, [() => Subscriber$, 0], [() => Subscriber$, 0]], 5
1015
+ ];
1016
+ var UpdateSubscriberResponse$ = [3, n0, _USRp,
1017
+ 0,
1018
+ [],
1019
+ []
1020
+ ];
1021
+ var ActionHistories = [1, n0, _AHc,
1022
+ 0, [() => ActionHistory$,
1023
+ 0]
1024
+ ];
1025
+ var Actions = [1, n0, _Ac,
1026
+ 0, [() => Action$,
1027
+ 0]
1028
+ ];
1029
+ var BudgetedAndActualAmountsList = [1, n0, _BAAAL,
1030
+ 0, () => BudgetedAndActualAmounts$
1031
+ ];
1032
+ var BudgetNotificationsForAccountList = [1, n0, _BNFAL,
1033
+ 0, () => BudgetNotificationsForAccount$
1034
+ ];
1035
+ var Budgets$1 = [1, n0, _Bu,
1036
+ 0, () => Budget$
1037
+ ];
1038
+ var Expressions = [1, n0, _Ex,
1039
+ 0, () => Expression$
1040
+ ];
1041
+ var Notifications = [1, n0, _N,
1042
+ 0, () => Notification$
1043
+ ];
1044
+ var NotificationWithSubscribersList = [1, n0, _NWSL,
1045
+ 0, [() => NotificationWithSubscribers$,
1046
+ 0]
1047
+ ];
1048
+ var ResourceTagList = [1, n0, _RTL,
1049
+ 0, () => ResourceTag$
1050
+ ];
1051
+ var Subscribers = [1, n0, _Su,
1052
+ 0, [() => Subscriber$,
1053
+ 0]
1054
+ ];
1055
+ var PlannedBudgetLimits = [2, n0, _PBL,
1056
+ 0, 0, () => Spend$
1057
+ ];
1058
+ var CreateBudget$ = [9, n0, _CB,
1059
+ 0, () => CreateBudgetRequest$, () => CreateBudgetResponse$
1060
+ ];
1061
+ var CreateBudgetAction$ = [9, n0, _CBA,
1062
+ 0, () => CreateBudgetActionRequest$, () => CreateBudgetActionResponse$
1063
+ ];
1064
+ var CreateNotification$ = [9, n0, _CN,
1065
+ 0, () => CreateNotificationRequest$, () => CreateNotificationResponse$
1066
+ ];
1067
+ var CreateSubscriber$ = [9, n0, _CSr,
1068
+ 0, () => CreateSubscriberRequest$, () => CreateSubscriberResponse$
1069
+ ];
1070
+ var DeleteBudget$ = [9, n0, _DB,
1071
+ 0, () => DeleteBudgetRequest$, () => DeleteBudgetResponse$
1072
+ ];
1073
+ var DeleteBudgetAction$ = [9, n0, _DBA,
1074
+ 0, () => DeleteBudgetActionRequest$, () => DeleteBudgetActionResponse$
1075
+ ];
1076
+ var DeleteNotification$ = [9, n0, _DN,
1077
+ 0, () => DeleteNotificationRequest$, () => DeleteNotificationResponse$
1078
+ ];
1079
+ var DeleteSubscriber$ = [9, n0, _DS,
1080
+ 0, () => DeleteSubscriberRequest$, () => DeleteSubscriberResponse$
1081
+ ];
1082
+ var DescribeBudget$ = [9, n0, _DBe,
1083
+ 0, () => DescribeBudgetRequest$, () => DescribeBudgetResponse$
1084
+ ];
1085
+ var DescribeBudgetAction$ = [9, n0, _DBAe,
1086
+ 0, () => DescribeBudgetActionRequest$, () => DescribeBudgetActionResponse$
1087
+ ];
1088
+ var DescribeBudgetActionHistories$ = [9, n0, _DBAH,
1089
+ 0, () => DescribeBudgetActionHistoriesRequest$, () => DescribeBudgetActionHistoriesResponse$
1090
+ ];
1091
+ var DescribeBudgetActionsForAccount$ = [9, n0, _DBAFA,
1092
+ 0, () => DescribeBudgetActionsForAccountRequest$, () => DescribeBudgetActionsForAccountResponse$
1093
+ ];
1094
+ var DescribeBudgetActionsForBudget$ = [9, n0, _DBAFB,
1095
+ 0, () => DescribeBudgetActionsForBudgetRequest$, () => DescribeBudgetActionsForBudgetResponse$
1096
+ ];
1097
+ var DescribeBudgetNotificationsForAccount$ = [9, n0, _DBNFA,
1098
+ 0, () => DescribeBudgetNotificationsForAccountRequest$, () => DescribeBudgetNotificationsForAccountResponse$
1099
+ ];
1100
+ var DescribeBudgetPerformanceHistory$ = [9, n0, _DBPH,
1101
+ 0, () => DescribeBudgetPerformanceHistoryRequest$, () => DescribeBudgetPerformanceHistoryResponse$
1102
+ ];
1103
+ var DescribeBudgets$ = [9, n0, _DBes,
1104
+ 0, () => DescribeBudgetsRequest$, () => DescribeBudgetsResponse$
1105
+ ];
1106
+ var DescribeNotificationsForBudget$ = [9, n0, _DNFB,
1107
+ 0, () => DescribeNotificationsForBudgetRequest$, () => DescribeNotificationsForBudgetResponse$
1108
+ ];
1109
+ var DescribeSubscribersForNotification$ = [9, n0, _DSFN,
1110
+ 0, () => DescribeSubscribersForNotificationRequest$, () => DescribeSubscribersForNotificationResponse$
1111
+ ];
1112
+ var ExecuteBudgetAction$ = [9, n0, _EBA,
1113
+ 0, () => ExecuteBudgetActionRequest$, () => ExecuteBudgetActionResponse$
1114
+ ];
1115
+ var ListTagsForResource$ = [9, n0, _LTFR,
1116
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1117
+ ];
1118
+ var TagResource$ = [9, n0, _TR,
1119
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1120
+ ];
1121
+ var UntagResource$ = [9, n0, _UR,
1122
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1123
+ ];
1124
+ var UpdateBudget$ = [9, n0, _UBp,
1125
+ 0, () => UpdateBudgetRequest$, () => UpdateBudgetResponse$
1126
+ ];
1127
+ var UpdateBudgetAction$ = [9, n0, _UBA,
1128
+ 0, () => UpdateBudgetActionRequest$, () => UpdateBudgetActionResponse$
1129
+ ];
1130
+ var UpdateNotification$ = [9, n0, _UN,
1131
+ 0, () => UpdateNotificationRequest$, () => UpdateNotificationResponse$
1132
+ ];
1133
+ var UpdateSubscriber$ = [9, n0, _US,
1134
+ 0, () => UpdateSubscriberRequest$, () => UpdateSubscriberResponse$
1135
+ ];
1136
+
1137
+ const getRuntimeConfig$1 = (config) => {
1138
+ return {
1139
+ apiVersion: "2016-10-20",
1140
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1141
+ base64Encoder: config?.base64Encoder ?? toBase64,
1142
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1143
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1144
+ extensions: config?.extensions ?? [],
1145
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBudgetsHttpAuthSchemeProvider,
1146
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1147
+ {
1148
+ schemeId: "aws.auth#sigv4",
1149
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1150
+ signer: new AwsSdkSigV4Signer(),
1151
+ },
1152
+ ],
1153
+ logger: config?.logger ?? new NoOpLogger(),
1154
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
1155
+ protocolSettings: config?.protocolSettings ?? {
1156
+ defaultNamespace: "com.amazonaws.budgets",
1157
+ errorTypeRegistries,
1158
+ version: "2016-10-20",
1159
+ serviceTarget: "AWSBudgetServiceGateway",
1160
+ },
1161
+ serviceId: config?.serviceId ?? "Budgets",
1162
+ sha256: config?.sha256 ?? Sha256,
1163
+ urlParser: config?.urlParser ?? parseUrl,
1164
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1165
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1166
+ };
1167
+ };
1168
+
1169
+ const getRuntimeConfig = (config) => {
1170
+ emitWarningIfUnsupportedVersion(process.version);
1171
+ const defaultsMode = resolveDefaultsModeConfig(config);
1172
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1173
+ const clientSharedValues = getRuntimeConfig$1(config);
1174
+ emitWarningIfUnsupportedVersion$1(process.version);
1175
+ const loaderConfig = {
1176
+ profile: config?.profile,
1177
+ logger: clientSharedValues.logger,
1178
+ };
1179
+ return {
1180
+ ...clientSharedValues,
1181
+ ...config,
1182
+ runtime: "node",
1183
+ defaultsMode,
1184
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1185
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1186
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1187
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1188
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1189
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1190
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1191
+ retryMode: config?.retryMode ??
1192
+ loadConfig({
1193
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1194
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1195
+ }, config),
1196
+ streamCollector: config?.streamCollector ?? streamCollector,
1197
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1198
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1199
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1200
+ };
1201
+ };
1202
+
34
1203
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1204
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1205
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -625,53 +1794,185 @@ const ExecutionType = {
625
1794
  ReverseBudgetAction: "REVERSE_BUDGET_ACTION",
626
1795
  };
627
1796
 
1797
+ exports.AccessDeniedException = AccessDeniedException;
1798
+ exports.AccessDeniedException$ = AccessDeniedException$;
1799
+ exports.Action$ = Action$;
1800
+ exports.ActionHistory$ = ActionHistory$;
1801
+ exports.ActionHistoryDetails$ = ActionHistoryDetails$;
628
1802
  exports.ActionStatus = ActionStatus;
629
1803
  exports.ActionSubType = ActionSubType;
1804
+ exports.ActionThreshold$ = ActionThreshold$;
630
1805
  exports.ActionType = ActionType;
631
1806
  exports.ApprovalModel = ApprovalModel;
1807
+ exports.AutoAdjustData$ = AutoAdjustData$;
632
1808
  exports.AutoAdjustType = AutoAdjustType;
1809
+ exports.BillingViewHealthStatusException = BillingViewHealthStatusException;
1810
+ exports.BillingViewHealthStatusException$ = BillingViewHealthStatusException$;
1811
+ exports.Budget$ = Budget$;
1812
+ exports.BudgetNotificationsForAccount$ = BudgetNotificationsForAccount$;
1813
+ exports.BudgetPerformanceHistory$ = BudgetPerformanceHistory$;
633
1814
  exports.BudgetType = BudgetType;
1815
+ exports.BudgetedAndActualAmounts$ = BudgetedAndActualAmounts$;
634
1816
  exports.Budgets = Budgets;
635
1817
  exports.BudgetsClient = BudgetsClient;
1818
+ exports.BudgetsServiceException = BudgetsServiceException;
1819
+ exports.BudgetsServiceException$ = BudgetsServiceException$;
1820
+ exports.CalculatedSpend$ = CalculatedSpend$;
636
1821
  exports.ComparisonOperator = ComparisonOperator;
1822
+ exports.CostCategoryValues$ = CostCategoryValues$;
1823
+ exports.CostTypes$ = CostTypes$;
1824
+ exports.CreateBudget$ = CreateBudget$;
1825
+ exports.CreateBudgetAction$ = CreateBudgetAction$;
637
1826
  exports.CreateBudgetActionCommand = CreateBudgetActionCommand;
1827
+ exports.CreateBudgetActionRequest$ = CreateBudgetActionRequest$;
1828
+ exports.CreateBudgetActionResponse$ = CreateBudgetActionResponse$;
638
1829
  exports.CreateBudgetCommand = CreateBudgetCommand;
1830
+ exports.CreateBudgetRequest$ = CreateBudgetRequest$;
1831
+ exports.CreateBudgetResponse$ = CreateBudgetResponse$;
1832
+ exports.CreateNotification$ = CreateNotification$;
639
1833
  exports.CreateNotificationCommand = CreateNotificationCommand;
1834
+ exports.CreateNotificationRequest$ = CreateNotificationRequest$;
1835
+ exports.CreateNotificationResponse$ = CreateNotificationResponse$;
1836
+ exports.CreateSubscriber$ = CreateSubscriber$;
640
1837
  exports.CreateSubscriberCommand = CreateSubscriberCommand;
1838
+ exports.CreateSubscriberRequest$ = CreateSubscriberRequest$;
1839
+ exports.CreateSubscriberResponse$ = CreateSubscriberResponse$;
1840
+ exports.CreationLimitExceededException = CreationLimitExceededException;
1841
+ exports.CreationLimitExceededException$ = CreationLimitExceededException$;
1842
+ exports.Definition$ = Definition$;
1843
+ exports.DeleteBudget$ = DeleteBudget$;
1844
+ exports.DeleteBudgetAction$ = DeleteBudgetAction$;
641
1845
  exports.DeleteBudgetActionCommand = DeleteBudgetActionCommand;
1846
+ exports.DeleteBudgetActionRequest$ = DeleteBudgetActionRequest$;
1847
+ exports.DeleteBudgetActionResponse$ = DeleteBudgetActionResponse$;
642
1848
  exports.DeleteBudgetCommand = DeleteBudgetCommand;
1849
+ exports.DeleteBudgetRequest$ = DeleteBudgetRequest$;
1850
+ exports.DeleteBudgetResponse$ = DeleteBudgetResponse$;
1851
+ exports.DeleteNotification$ = DeleteNotification$;
643
1852
  exports.DeleteNotificationCommand = DeleteNotificationCommand;
1853
+ exports.DeleteNotificationRequest$ = DeleteNotificationRequest$;
1854
+ exports.DeleteNotificationResponse$ = DeleteNotificationResponse$;
1855
+ exports.DeleteSubscriber$ = DeleteSubscriber$;
644
1856
  exports.DeleteSubscriberCommand = DeleteSubscriberCommand;
1857
+ exports.DeleteSubscriberRequest$ = DeleteSubscriberRequest$;
1858
+ exports.DeleteSubscriberResponse$ = DeleteSubscriberResponse$;
1859
+ exports.DescribeBudget$ = DescribeBudget$;
1860
+ exports.DescribeBudgetAction$ = DescribeBudgetAction$;
645
1861
  exports.DescribeBudgetActionCommand = DescribeBudgetActionCommand;
1862
+ exports.DescribeBudgetActionHistories$ = DescribeBudgetActionHistories$;
646
1863
  exports.DescribeBudgetActionHistoriesCommand = DescribeBudgetActionHistoriesCommand;
1864
+ exports.DescribeBudgetActionHistoriesRequest$ = DescribeBudgetActionHistoriesRequest$;
1865
+ exports.DescribeBudgetActionHistoriesResponse$ = DescribeBudgetActionHistoriesResponse$;
1866
+ exports.DescribeBudgetActionRequest$ = DescribeBudgetActionRequest$;
1867
+ exports.DescribeBudgetActionResponse$ = DescribeBudgetActionResponse$;
1868
+ exports.DescribeBudgetActionsForAccount$ = DescribeBudgetActionsForAccount$;
647
1869
  exports.DescribeBudgetActionsForAccountCommand = DescribeBudgetActionsForAccountCommand;
1870
+ exports.DescribeBudgetActionsForAccountRequest$ = DescribeBudgetActionsForAccountRequest$;
1871
+ exports.DescribeBudgetActionsForAccountResponse$ = DescribeBudgetActionsForAccountResponse$;
1872
+ exports.DescribeBudgetActionsForBudget$ = DescribeBudgetActionsForBudget$;
648
1873
  exports.DescribeBudgetActionsForBudgetCommand = DescribeBudgetActionsForBudgetCommand;
1874
+ exports.DescribeBudgetActionsForBudgetRequest$ = DescribeBudgetActionsForBudgetRequest$;
1875
+ exports.DescribeBudgetActionsForBudgetResponse$ = DescribeBudgetActionsForBudgetResponse$;
649
1876
  exports.DescribeBudgetCommand = DescribeBudgetCommand;
1877
+ exports.DescribeBudgetNotificationsForAccount$ = DescribeBudgetNotificationsForAccount$;
650
1878
  exports.DescribeBudgetNotificationsForAccountCommand = DescribeBudgetNotificationsForAccountCommand;
1879
+ exports.DescribeBudgetNotificationsForAccountRequest$ = DescribeBudgetNotificationsForAccountRequest$;
1880
+ exports.DescribeBudgetNotificationsForAccountResponse$ = DescribeBudgetNotificationsForAccountResponse$;
1881
+ exports.DescribeBudgetPerformanceHistory$ = DescribeBudgetPerformanceHistory$;
651
1882
  exports.DescribeBudgetPerformanceHistoryCommand = DescribeBudgetPerformanceHistoryCommand;
1883
+ exports.DescribeBudgetPerformanceHistoryRequest$ = DescribeBudgetPerformanceHistoryRequest$;
1884
+ exports.DescribeBudgetPerformanceHistoryResponse$ = DescribeBudgetPerformanceHistoryResponse$;
1885
+ exports.DescribeBudgetRequest$ = DescribeBudgetRequest$;
1886
+ exports.DescribeBudgetResponse$ = DescribeBudgetResponse$;
1887
+ exports.DescribeBudgets$ = DescribeBudgets$;
652
1888
  exports.DescribeBudgetsCommand = DescribeBudgetsCommand;
1889
+ exports.DescribeBudgetsRequest$ = DescribeBudgetsRequest$;
1890
+ exports.DescribeBudgetsResponse$ = DescribeBudgetsResponse$;
1891
+ exports.DescribeNotificationsForBudget$ = DescribeNotificationsForBudget$;
653
1892
  exports.DescribeNotificationsForBudgetCommand = DescribeNotificationsForBudgetCommand;
1893
+ exports.DescribeNotificationsForBudgetRequest$ = DescribeNotificationsForBudgetRequest$;
1894
+ exports.DescribeNotificationsForBudgetResponse$ = DescribeNotificationsForBudgetResponse$;
1895
+ exports.DescribeSubscribersForNotification$ = DescribeSubscribersForNotification$;
654
1896
  exports.DescribeSubscribersForNotificationCommand = DescribeSubscribersForNotificationCommand;
1897
+ exports.DescribeSubscribersForNotificationRequest$ = DescribeSubscribersForNotificationRequest$;
1898
+ exports.DescribeSubscribersForNotificationResponse$ = DescribeSubscribersForNotificationResponse$;
655
1899
  exports.Dimension = Dimension;
1900
+ exports.DuplicateRecordException = DuplicateRecordException;
1901
+ exports.DuplicateRecordException$ = DuplicateRecordException$;
656
1902
  exports.EventType = EventType;
1903
+ exports.ExecuteBudgetAction$ = ExecuteBudgetAction$;
657
1904
  exports.ExecuteBudgetActionCommand = ExecuteBudgetActionCommand;
1905
+ exports.ExecuteBudgetActionRequest$ = ExecuteBudgetActionRequest$;
1906
+ exports.ExecuteBudgetActionResponse$ = ExecuteBudgetActionResponse$;
658
1907
  exports.ExecutionType = ExecutionType;
1908
+ exports.ExpiredNextTokenException = ExpiredNextTokenException;
1909
+ exports.ExpiredNextTokenException$ = ExpiredNextTokenException$;
1910
+ exports.Expression$ = Expression$;
1911
+ exports.ExpressionDimensionValues$ = ExpressionDimensionValues$;
1912
+ exports.HealthStatus$ = HealthStatus$;
659
1913
  exports.HealthStatusReason = HealthStatusReason;
660
1914
  exports.HealthStatusValue = HealthStatusValue;
1915
+ exports.HistoricalOptions$ = HistoricalOptions$;
1916
+ exports.IamActionDefinition$ = IamActionDefinition$;
1917
+ exports.InternalErrorException = InternalErrorException;
1918
+ exports.InternalErrorException$ = InternalErrorException$;
1919
+ exports.InvalidNextTokenException = InvalidNextTokenException;
1920
+ exports.InvalidNextTokenException$ = InvalidNextTokenException$;
1921
+ exports.InvalidParameterException = InvalidParameterException;
1922
+ exports.InvalidParameterException$ = InvalidParameterException$;
1923
+ exports.ListTagsForResource$ = ListTagsForResource$;
661
1924
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1925
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1926
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
662
1927
  exports.MatchOption = MatchOption;
663
1928
  exports.Metric = Metric;
1929
+ exports.NotFoundException = NotFoundException;
1930
+ exports.NotFoundException$ = NotFoundException$;
1931
+ exports.Notification$ = Notification$;
664
1932
  exports.NotificationState = NotificationState;
665
1933
  exports.NotificationType = NotificationType;
1934
+ exports.NotificationWithSubscribers$ = NotificationWithSubscribers$;
1935
+ exports.ResourceLockedException = ResourceLockedException;
1936
+ exports.ResourceLockedException$ = ResourceLockedException$;
1937
+ exports.ResourceTag$ = ResourceTag$;
1938
+ exports.ScpActionDefinition$ = ScpActionDefinition$;
1939
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1940
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1941
+ exports.Spend$ = Spend$;
1942
+ exports.SsmActionDefinition$ = SsmActionDefinition$;
1943
+ exports.Subscriber$ = Subscriber$;
666
1944
  exports.SubscriptionType = SubscriptionType;
1945
+ exports.TagResource$ = TagResource$;
667
1946
  exports.TagResourceCommand = TagResourceCommand;
1947
+ exports.TagResourceRequest$ = TagResourceRequest$;
1948
+ exports.TagResourceResponse$ = TagResourceResponse$;
1949
+ exports.TagValues$ = TagValues$;
668
1950
  exports.ThresholdType = ThresholdType;
1951
+ exports.ThrottlingException = ThrottlingException;
1952
+ exports.ThrottlingException$ = ThrottlingException$;
1953
+ exports.TimePeriod$ = TimePeriod$;
669
1954
  exports.TimeUnit = TimeUnit;
1955
+ exports.UntagResource$ = UntagResource$;
670
1956
  exports.UntagResourceCommand = UntagResourceCommand;
1957
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1958
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1959
+ exports.UpdateBudget$ = UpdateBudget$;
1960
+ exports.UpdateBudgetAction$ = UpdateBudgetAction$;
671
1961
  exports.UpdateBudgetActionCommand = UpdateBudgetActionCommand;
1962
+ exports.UpdateBudgetActionRequest$ = UpdateBudgetActionRequest$;
1963
+ exports.UpdateBudgetActionResponse$ = UpdateBudgetActionResponse$;
672
1964
  exports.UpdateBudgetCommand = UpdateBudgetCommand;
1965
+ exports.UpdateBudgetRequest$ = UpdateBudgetRequest$;
1966
+ exports.UpdateBudgetResponse$ = UpdateBudgetResponse$;
1967
+ exports.UpdateNotification$ = UpdateNotification$;
673
1968
  exports.UpdateNotificationCommand = UpdateNotificationCommand;
1969
+ exports.UpdateNotificationRequest$ = UpdateNotificationRequest$;
1970
+ exports.UpdateNotificationResponse$ = UpdateNotificationResponse$;
1971
+ exports.UpdateSubscriber$ = UpdateSubscriber$;
674
1972
  exports.UpdateSubscriberCommand = UpdateSubscriberCommand;
1973
+ exports.UpdateSubscriberRequest$ = UpdateSubscriberRequest$;
1974
+ exports.UpdateSubscriberResponse$ = UpdateSubscriberResponse$;
1975
+ exports.errorTypeRegistries = errorTypeRegistries;
675
1976
  exports.paginateDescribeBudgetActionHistories = paginateDescribeBudgetActionHistories;
676
1977
  exports.paginateDescribeBudgetActionsForAccount = paginateDescribeBudgetActionsForAccount;
677
1978
  exports.paginateDescribeBudgetActionsForBudget = paginateDescribeBudgetActionsForBudget;