@aws-sdk/client-budgets 3.986.0 → 3.988.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 +45 -1139
- package/dist-cjs/models/BudgetsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +184 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +832 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +78 -72
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var BudgetsServiceException = require('./models/BudgetsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,988 +113,6 @@ class BudgetsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class BudgetsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, BudgetsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends BudgetsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class BillingViewHealthStatusException extends BudgetsServiceException {
|
|
135
|
-
name = "BillingViewHealthStatusException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "BillingViewHealthStatusException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class CreationLimitExceededException extends BudgetsServiceException {
|
|
149
|
-
name = "CreationLimitExceededException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "CreationLimitExceededException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, CreationLimitExceededException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class DuplicateRecordException extends BudgetsServiceException {
|
|
163
|
-
name = "DuplicateRecordException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "DuplicateRecordException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, DuplicateRecordException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class InternalErrorException extends BudgetsServiceException {
|
|
177
|
-
name = "InternalErrorException";
|
|
178
|
-
$fault = "server";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "InternalErrorException",
|
|
183
|
-
$fault: "server",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class InvalidParameterException extends BudgetsServiceException {
|
|
191
|
-
name = "InvalidParameterException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "InvalidParameterException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class NotFoundException extends BudgetsServiceException {
|
|
205
|
-
name = "NotFoundException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "NotFoundException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class ServiceQuotaExceededException extends BudgetsServiceException {
|
|
219
|
-
name = "ServiceQuotaExceededException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "ServiceQuotaExceededException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class ThrottlingException extends BudgetsServiceException {
|
|
233
|
-
name = "ThrottlingException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
Message;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "ThrottlingException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
243
|
-
this.Message = opts.Message;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class ResourceLockedException extends BudgetsServiceException {
|
|
247
|
-
name = "ResourceLockedException";
|
|
248
|
-
$fault = "client";
|
|
249
|
-
Message;
|
|
250
|
-
constructor(opts) {
|
|
251
|
-
super({
|
|
252
|
-
name: "ResourceLockedException",
|
|
253
|
-
$fault: "client",
|
|
254
|
-
...opts,
|
|
255
|
-
});
|
|
256
|
-
Object.setPrototypeOf(this, ResourceLockedException.prototype);
|
|
257
|
-
this.Message = opts.Message;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
class InvalidNextTokenException extends BudgetsServiceException {
|
|
261
|
-
name = "InvalidNextTokenException";
|
|
262
|
-
$fault = "client";
|
|
263
|
-
Message;
|
|
264
|
-
constructor(opts) {
|
|
265
|
-
super({
|
|
266
|
-
name: "InvalidNextTokenException",
|
|
267
|
-
$fault: "client",
|
|
268
|
-
...opts,
|
|
269
|
-
});
|
|
270
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
271
|
-
this.Message = opts.Message;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
class ExpiredNextTokenException extends BudgetsServiceException {
|
|
275
|
-
name = "ExpiredNextTokenException";
|
|
276
|
-
$fault = "client";
|
|
277
|
-
Message;
|
|
278
|
-
constructor(opts) {
|
|
279
|
-
super({
|
|
280
|
-
name: "ExpiredNextTokenException",
|
|
281
|
-
$fault: "client",
|
|
282
|
-
...opts,
|
|
283
|
-
});
|
|
284
|
-
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
285
|
-
this.Message = opts.Message;
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
const _A = "Action";
|
|
290
|
-
const _AA = "ActualAmount";
|
|
291
|
-
const _AAD = "AutoAdjustData";
|
|
292
|
-
const _AAT = "AutoAdjustType";
|
|
293
|
-
const _ADE = "AccessDeniedException";
|
|
294
|
-
const _AH = "ActionHistory";
|
|
295
|
-
const _AHD = "ActionHistoryDetails";
|
|
296
|
-
const _AHc = "ActionHistories";
|
|
297
|
-
const _AI = "ActionId";
|
|
298
|
-
const _AIc = "AccountId";
|
|
299
|
-
const _AM = "ApprovalModel";
|
|
300
|
-
const _AS = "ActualSpend";
|
|
301
|
-
const _AST = "ActionSubType";
|
|
302
|
-
const _AT = "ActionType";
|
|
303
|
-
const _ATT = "ActionThresholdType";
|
|
304
|
-
const _ATV = "ActionThresholdValue";
|
|
305
|
-
const _ATc = "ActionThreshold";
|
|
306
|
-
const _Ac = "Actions";
|
|
307
|
-
const _Ad = "Address";
|
|
308
|
-
const _Am = "Amount";
|
|
309
|
-
const _An = "And";
|
|
310
|
-
const _B = "Budget";
|
|
311
|
-
const _BA = "BudgetedAmount";
|
|
312
|
-
const _BAAA = "BudgetedAndActualAmounts";
|
|
313
|
-
const _BAAAL = "BudgetedAndActualAmountsList";
|
|
314
|
-
const _BAP = "BudgetAdjustmentPeriod";
|
|
315
|
-
const _BL = "BudgetLimit";
|
|
316
|
-
const _BN = "BudgetName";
|
|
317
|
-
const _BNFA = "BudgetNotificationsForAccount";
|
|
318
|
-
const _BNFAL = "BudgetNotificationsForAccountList";
|
|
319
|
-
const _BPH = "BudgetPerformanceHistory";
|
|
320
|
-
const _BT = "BudgetType";
|
|
321
|
-
const _BVA = "BillingViewArn";
|
|
322
|
-
const _BVHSE = "BillingViewHealthStatusException";
|
|
323
|
-
const _Bu = "Budgets";
|
|
324
|
-
const _CB = "CreateBudget";
|
|
325
|
-
const _CBA = "CreateBudgetAction";
|
|
326
|
-
const _CBAR = "CreateBudgetActionRequest";
|
|
327
|
-
const _CBARr = "CreateBudgetActionResponse";
|
|
328
|
-
const _CBR = "CreateBudgetRequest";
|
|
329
|
-
const _CBRr = "CreateBudgetResponse";
|
|
330
|
-
const _CC = "CostCategories";
|
|
331
|
-
const _CCV = "CostCategoryValues";
|
|
332
|
-
const _CF = "CostFilters";
|
|
333
|
-
const _CLEE = "CreationLimitExceededException";
|
|
334
|
-
const _CN = "CreateNotification";
|
|
335
|
-
const _CNR = "CreateNotificationRequest";
|
|
336
|
-
const _CNRr = "CreateNotificationResponse";
|
|
337
|
-
const _CO = "ComparisonOperator";
|
|
338
|
-
const _CS = "CalculatedSpend";
|
|
339
|
-
const _CSR = "CreateSubscriberRequest";
|
|
340
|
-
const _CSRr = "CreateSubscriberResponse";
|
|
341
|
-
const _CSr = "CreateSubscriber";
|
|
342
|
-
const _CT = "CostTypes";
|
|
343
|
-
const _D = "Definition";
|
|
344
|
-
const _DB = "DeleteBudget";
|
|
345
|
-
const _DBA = "DeleteBudgetAction";
|
|
346
|
-
const _DBAFA = "DescribeBudgetActionsForAccount";
|
|
347
|
-
const _DBAFAR = "DescribeBudgetActionsForAccountRequest";
|
|
348
|
-
const _DBAFARe = "DescribeBudgetActionsForAccountResponse";
|
|
349
|
-
const _DBAFB = "DescribeBudgetActionsForBudget";
|
|
350
|
-
const _DBAFBR = "DescribeBudgetActionsForBudgetRequest";
|
|
351
|
-
const _DBAFBRe = "DescribeBudgetActionsForBudgetResponse";
|
|
352
|
-
const _DBAH = "DescribeBudgetActionHistories";
|
|
353
|
-
const _DBAHR = "DescribeBudgetActionHistoriesRequest";
|
|
354
|
-
const _DBAHRe = "DescribeBudgetActionHistoriesResponse";
|
|
355
|
-
const _DBAR = "DeleteBudgetActionRequest";
|
|
356
|
-
const _DBARe = "DeleteBudgetActionResponse";
|
|
357
|
-
const _DBARes = "DescribeBudgetActionRequest";
|
|
358
|
-
const _DBAResc = "DescribeBudgetActionResponse";
|
|
359
|
-
const _DBAe = "DescribeBudgetAction";
|
|
360
|
-
const _DBNFA = "DescribeBudgetNotificationsForAccount";
|
|
361
|
-
const _DBNFAR = "DescribeBudgetNotificationsForAccountRequest";
|
|
362
|
-
const _DBNFARe = "DescribeBudgetNotificationsForAccountResponse";
|
|
363
|
-
const _DBPH = "DescribeBudgetPerformanceHistory";
|
|
364
|
-
const _DBPHR = "DescribeBudgetPerformanceHistoryRequest";
|
|
365
|
-
const _DBPHRe = "DescribeBudgetPerformanceHistoryResponse";
|
|
366
|
-
const _DBR = "DeleteBudgetRequest";
|
|
367
|
-
const _DBRe = "DeleteBudgetResponse";
|
|
368
|
-
const _DBRes = "DescribeBudgetRequest";
|
|
369
|
-
const _DBResc = "DescribeBudgetResponse";
|
|
370
|
-
const _DBRescr = "DescribeBudgetsRequest";
|
|
371
|
-
const _DBRescri = "DescribeBudgetsResponse";
|
|
372
|
-
const _DBe = "DescribeBudget";
|
|
373
|
-
const _DBes = "DescribeBudgets";
|
|
374
|
-
const _DN = "DeleteNotification";
|
|
375
|
-
const _DNFB = "DescribeNotificationsForBudget";
|
|
376
|
-
const _DNFBR = "DescribeNotificationsForBudgetRequest";
|
|
377
|
-
const _DNFBRe = "DescribeNotificationsForBudgetResponse";
|
|
378
|
-
const _DNR = "DeleteNotificationRequest";
|
|
379
|
-
const _DNRe = "DeleteNotificationResponse";
|
|
380
|
-
const _DRE = "DuplicateRecordException";
|
|
381
|
-
const _DS = "DeleteSubscriber";
|
|
382
|
-
const _DSFN = "DescribeSubscribersForNotification";
|
|
383
|
-
const _DSFNR = "DescribeSubscribersForNotificationRequest";
|
|
384
|
-
const _DSFNRe = "DescribeSubscribersForNotificationResponse";
|
|
385
|
-
const _DSR = "DeleteSubscriberRequest";
|
|
386
|
-
const _DSRe = "DeleteSubscriberResponse";
|
|
387
|
-
const _Di = "Dimensions";
|
|
388
|
-
const _E = "Expression";
|
|
389
|
-
const _EBA = "ExecuteBudgetAction";
|
|
390
|
-
const _EBAR = "ExecuteBudgetActionRequest";
|
|
391
|
-
const _EBARx = "ExecuteBudgetActionResponse";
|
|
392
|
-
const _EDV = "ExpressionDimensionValues";
|
|
393
|
-
const _ENTE = "ExpiredNextTokenException";
|
|
394
|
-
const _ERA = "ExecutionRoleArn";
|
|
395
|
-
const _ET = "EventType";
|
|
396
|
-
const _ETx = "ExecutionType";
|
|
397
|
-
const _En = "End";
|
|
398
|
-
const _Ex = "Expressions";
|
|
399
|
-
const _FE = "FilterExpression";
|
|
400
|
-
const _FS = "ForecastedSpend";
|
|
401
|
-
const _G = "Groups";
|
|
402
|
-
const _HO = "HistoricalOptions";
|
|
403
|
-
const _HS = "HealthStatus";
|
|
404
|
-
const _IAD = "IamActionDefinition";
|
|
405
|
-
const _IC = "IncludeCredit";
|
|
406
|
-
const _ID = "IncludeDiscount";
|
|
407
|
-
const _IEE = "InternalErrorException";
|
|
408
|
-
const _II = "InstanceIds";
|
|
409
|
-
const _INTE = "InvalidNextTokenException";
|
|
410
|
-
const _IOS = "IncludeOtherSubscription";
|
|
411
|
-
const _IPE = "InvalidParameterException";
|
|
412
|
-
const _IR = "IncludeRefund";
|
|
413
|
-
const _IRn = "IncludeRecurring";
|
|
414
|
-
const _IS = "IncludeSubscription";
|
|
415
|
-
const _ISn = "IncludeSupport";
|
|
416
|
-
const _IT = "IncludeTax";
|
|
417
|
-
const _IU = "IncludeUpfront";
|
|
418
|
-
const _K = "Key";
|
|
419
|
-
const _LAAT = "LastAutoAdjustTime";
|
|
420
|
-
const _LBAP = "LookBackAvailablePeriods";
|
|
421
|
-
const _LTFR = "ListTagsForResource";
|
|
422
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
423
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
424
|
-
const _LUT = "LastUpdatedTime";
|
|
425
|
-
const _M = "Message";
|
|
426
|
-
const _MO = "MatchOptions";
|
|
427
|
-
const _MR = "MaxResults";
|
|
428
|
-
const _Me = "Metrics";
|
|
429
|
-
const _N = "Notifications";
|
|
430
|
-
const _NA = "NewAction";
|
|
431
|
-
const _NB = "NewBudget";
|
|
432
|
-
const _NFE = "NotFoundException";
|
|
433
|
-
const _NN = "NewNotification";
|
|
434
|
-
const _NS = "NotificationState";
|
|
435
|
-
const _NSe = "NewSubscriber";
|
|
436
|
-
const _NT = "NotificationType";
|
|
437
|
-
const _NTe = "NextToken";
|
|
438
|
-
const _NWS = "NotificationsWithSubscribers";
|
|
439
|
-
const _NWSL = "NotificationWithSubscribersList";
|
|
440
|
-
const _NWSo = "NotificationWithSubscribers";
|
|
441
|
-
const _No = "Notification";
|
|
442
|
-
const _Not = "Not";
|
|
443
|
-
const _O = "Or";
|
|
444
|
-
const _OA = "OldAction";
|
|
445
|
-
const _ON = "OldNotification";
|
|
446
|
-
const _OS = "OldSubscriber";
|
|
447
|
-
const _PA = "PolicyArn";
|
|
448
|
-
const _PBL = "PlannedBudgetLimits";
|
|
449
|
-
const _PI = "PolicyId";
|
|
450
|
-
const _R = "Roles";
|
|
451
|
-
const _RARN = "ResourceARN";
|
|
452
|
-
const _RLE = "ResourceLockedException";
|
|
453
|
-
const _RT = "ResourceTags";
|
|
454
|
-
const _RTK = "ResourceTagKeys";
|
|
455
|
-
const _RTL = "ResourceTagList";
|
|
456
|
-
const _RTe = "ResourceTag";
|
|
457
|
-
const _Re = "Region";
|
|
458
|
-
const _S = "Status";
|
|
459
|
-
const _SA = "SubscriberAddress";
|
|
460
|
-
const _SAD = "ScpActionDefinition";
|
|
461
|
-
const _SADs = "SsmActionDefinition";
|
|
462
|
-
const _SFE = "ShowFilterExpression";
|
|
463
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
464
|
-
const _SR = "StatusReason";
|
|
465
|
-
const _ST = "SubscriptionType";
|
|
466
|
-
const _Sp = "Spend";
|
|
467
|
-
const _St = "Start";
|
|
468
|
-
const _Su = "Subscribers";
|
|
469
|
-
const _Sub = "Subscriber";
|
|
470
|
-
const _T = "Timestamp";
|
|
471
|
-
const _TE = "ThrottlingException";
|
|
472
|
-
const _TI = "TargetIds";
|
|
473
|
-
const _TP = "TimePeriod";
|
|
474
|
-
const _TR = "TagResource";
|
|
475
|
-
const _TRR = "TagResourceRequest";
|
|
476
|
-
const _TRRa = "TagResourceResponse";
|
|
477
|
-
const _TT = "ThresholdType";
|
|
478
|
-
const _TU = "TimeUnit";
|
|
479
|
-
const _TV = "TagValues";
|
|
480
|
-
const _Ta = "Tags";
|
|
481
|
-
const _Th = "Threshold";
|
|
482
|
-
const _U = "Users";
|
|
483
|
-
const _UA = "UseAmortized";
|
|
484
|
-
const _UB = "UseBlended";
|
|
485
|
-
const _UBA = "UpdateBudgetAction";
|
|
486
|
-
const _UBAR = "UpdateBudgetActionRequest";
|
|
487
|
-
const _UBARp = "UpdateBudgetActionResponse";
|
|
488
|
-
const _UBR = "UpdateBudgetRequest";
|
|
489
|
-
const _UBRp = "UpdateBudgetResponse";
|
|
490
|
-
const _UBp = "UpdateBudget";
|
|
491
|
-
const _UN = "UpdateNotification";
|
|
492
|
-
const _UNR = "UpdateNotificationRequest";
|
|
493
|
-
const _UNRp = "UpdateNotificationResponse";
|
|
494
|
-
const _UR = "UntagResource";
|
|
495
|
-
const _URR = "UntagResourceRequest";
|
|
496
|
-
const _URRn = "UntagResourceResponse";
|
|
497
|
-
const _US = "UpdateSubscriber";
|
|
498
|
-
const _USR = "UpdateSubscriberRequest";
|
|
499
|
-
const _USRp = "UpdateSubscriberResponse";
|
|
500
|
-
const _Un = "Unit";
|
|
501
|
-
const _V = "Values";
|
|
502
|
-
const _Va = "Value";
|
|
503
|
-
const _c = "client";
|
|
504
|
-
const _e = "error";
|
|
505
|
-
const _hE = "httpError";
|
|
506
|
-
const _s = "server";
|
|
507
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.budgets";
|
|
508
|
-
const n0 = "com.amazonaws.budgets";
|
|
509
|
-
var SubscriberAddress = [0, n0, _SA, 8, 0];
|
|
510
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
511
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
512
|
-
[_M],
|
|
513
|
-
[0]
|
|
514
|
-
];
|
|
515
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
516
|
-
var Action$ = [3, n0, _A,
|
|
517
|
-
0,
|
|
518
|
-
[_AI, _BN, _NT, _AT, _ATc, _D, _ERA, _AM, _S, _Su],
|
|
519
|
-
[0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, 0, [() => Subscribers, 0]], 10
|
|
520
|
-
];
|
|
521
|
-
var ActionHistory$ = [3, n0, _AH,
|
|
522
|
-
0,
|
|
523
|
-
[_T, _S, _ET, _AHD],
|
|
524
|
-
[4, 0, 0, [() => ActionHistoryDetails$, 0]], 4
|
|
525
|
-
];
|
|
526
|
-
var ActionHistoryDetails$ = [3, n0, _AHD,
|
|
527
|
-
0,
|
|
528
|
-
[_M, _A],
|
|
529
|
-
[0, [() => Action$, 0]], 2
|
|
530
|
-
];
|
|
531
|
-
var ActionThreshold$ = [3, n0, _ATc,
|
|
532
|
-
0,
|
|
533
|
-
[_ATV, _ATT],
|
|
534
|
-
[1, 0], 2
|
|
535
|
-
];
|
|
536
|
-
var AutoAdjustData$ = [3, n0, _AAD,
|
|
537
|
-
0,
|
|
538
|
-
[_AAT, _HO, _LAAT],
|
|
539
|
-
[0, () => HistoricalOptions$, 4], 1
|
|
540
|
-
];
|
|
541
|
-
var BillingViewHealthStatusException$ = [-3, n0, _BVHSE,
|
|
542
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
543
|
-
[_M],
|
|
544
|
-
[0]
|
|
545
|
-
];
|
|
546
|
-
schema.TypeRegistry.for(n0).registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
|
|
547
|
-
var Budget$ = [3, n0, _B,
|
|
548
|
-
0,
|
|
549
|
-
[_BN, _TU, _BT, _BL, _PBL, _CF, _CT, _TP, _CS, _LUT, _AAD, _FE, _Me, _BVA, _HS],
|
|
550
|
-
[0, 0, 0, () => Spend$, () => PlannedBudgetLimits, [2, n0, _CF, 0, 0, 64 | 0], () => CostTypes$, () => TimePeriod$, () => CalculatedSpend$, 4, () => AutoAdjustData$, () => Expression$, 64 | 0, 0, () => HealthStatus$], 3
|
|
551
|
-
];
|
|
552
|
-
var BudgetedAndActualAmounts$ = [3, n0, _BAAA,
|
|
553
|
-
0,
|
|
554
|
-
[_BA, _AA, _TP],
|
|
555
|
-
[() => Spend$, () => Spend$, () => TimePeriod$]
|
|
556
|
-
];
|
|
557
|
-
var BudgetNotificationsForAccount$ = [3, n0, _BNFA,
|
|
558
|
-
0,
|
|
559
|
-
[_N, _BN],
|
|
560
|
-
[() => Notifications, 0]
|
|
561
|
-
];
|
|
562
|
-
var BudgetPerformanceHistory$ = [3, n0, _BPH,
|
|
563
|
-
0,
|
|
564
|
-
[_BN, _BT, _CF, _CT, _TU, _BVA, _BAAAL, _FE, _Me],
|
|
565
|
-
[0, 0, [2, n0, _CF, 0, 0, 64 | 0], () => CostTypes$, 0, 0, () => BudgetedAndActualAmountsList, () => Expression$, 64 | 0]
|
|
566
|
-
];
|
|
567
|
-
var CalculatedSpend$ = [3, n0, _CS,
|
|
568
|
-
0,
|
|
569
|
-
[_AS, _FS],
|
|
570
|
-
[() => Spend$, () => Spend$], 1
|
|
571
|
-
];
|
|
572
|
-
var CostCategoryValues$ = [3, n0, _CCV,
|
|
573
|
-
0,
|
|
574
|
-
[_K, _V, _MO],
|
|
575
|
-
[0, 64 | 0, 64 | 0]
|
|
576
|
-
];
|
|
577
|
-
var CostTypes$ = [3, n0, _CT,
|
|
578
|
-
0,
|
|
579
|
-
[_IT, _IS, _UB, _IR, _IC, _IU, _IRn, _IOS, _ISn, _ID, _UA],
|
|
580
|
-
[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
|
|
581
|
-
];
|
|
582
|
-
var CreateBudgetActionRequest$ = [3, n0, _CBAR,
|
|
583
|
-
0,
|
|
584
|
-
[_AIc, _BN, _NT, _AT, _ATc, _D, _ERA, _AM, _Su, _RT],
|
|
585
|
-
[0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, [() => Subscribers, 0], () => ResourceTagList], 9
|
|
586
|
-
];
|
|
587
|
-
var CreateBudgetActionResponse$ = [3, n0, _CBARr,
|
|
588
|
-
0,
|
|
589
|
-
[_AIc, _BN, _AI],
|
|
590
|
-
[0, 0, 0], 3
|
|
591
|
-
];
|
|
592
|
-
var CreateBudgetRequest$ = [3, n0, _CBR,
|
|
593
|
-
0,
|
|
594
|
-
[_AIc, _B, _NWS, _RT],
|
|
595
|
-
[0, () => Budget$, [() => NotificationWithSubscribersList, 0], () => ResourceTagList], 2
|
|
596
|
-
];
|
|
597
|
-
var CreateBudgetResponse$ = [3, n0, _CBRr,
|
|
598
|
-
0,
|
|
599
|
-
[],
|
|
600
|
-
[]
|
|
601
|
-
];
|
|
602
|
-
var CreateNotificationRequest$ = [3, n0, _CNR,
|
|
603
|
-
0,
|
|
604
|
-
[_AIc, _BN, _No, _Su],
|
|
605
|
-
[0, 0, () => Notification$, [() => Subscribers, 0]], 4
|
|
606
|
-
];
|
|
607
|
-
var CreateNotificationResponse$ = [3, n0, _CNRr,
|
|
608
|
-
0,
|
|
609
|
-
[],
|
|
610
|
-
[]
|
|
611
|
-
];
|
|
612
|
-
var CreateSubscriberRequest$ = [3, n0, _CSR,
|
|
613
|
-
0,
|
|
614
|
-
[_AIc, _BN, _No, _Sub],
|
|
615
|
-
[0, 0, () => Notification$, [() => Subscriber$, 0]], 4
|
|
616
|
-
];
|
|
617
|
-
var CreateSubscriberResponse$ = [3, n0, _CSRr,
|
|
618
|
-
0,
|
|
619
|
-
[],
|
|
620
|
-
[]
|
|
621
|
-
];
|
|
622
|
-
var CreationLimitExceededException$ = [-3, n0, _CLEE,
|
|
623
|
-
{ [_e]: _c, [_hE]: 405 },
|
|
624
|
-
[_M],
|
|
625
|
-
[0]
|
|
626
|
-
];
|
|
627
|
-
schema.TypeRegistry.for(n0).registerError(CreationLimitExceededException$, CreationLimitExceededException);
|
|
628
|
-
var Definition$ = [3, n0, _D,
|
|
629
|
-
0,
|
|
630
|
-
[_IAD, _SAD, _SADs],
|
|
631
|
-
[() => IamActionDefinition$, () => ScpActionDefinition$, () => SsmActionDefinition$]
|
|
632
|
-
];
|
|
633
|
-
var DeleteBudgetActionRequest$ = [3, n0, _DBAR,
|
|
634
|
-
0,
|
|
635
|
-
[_AIc, _BN, _AI],
|
|
636
|
-
[0, 0, 0], 3
|
|
637
|
-
];
|
|
638
|
-
var DeleteBudgetActionResponse$ = [3, n0, _DBARe,
|
|
639
|
-
0,
|
|
640
|
-
[_AIc, _BN, _A],
|
|
641
|
-
[0, 0, [() => Action$, 0]], 3
|
|
642
|
-
];
|
|
643
|
-
var DeleteBudgetRequest$ = [3, n0, _DBR,
|
|
644
|
-
0,
|
|
645
|
-
[_AIc, _BN],
|
|
646
|
-
[0, 0], 2
|
|
647
|
-
];
|
|
648
|
-
var DeleteBudgetResponse$ = [3, n0, _DBRe,
|
|
649
|
-
0,
|
|
650
|
-
[],
|
|
651
|
-
[]
|
|
652
|
-
];
|
|
653
|
-
var DeleteNotificationRequest$ = [3, n0, _DNR,
|
|
654
|
-
0,
|
|
655
|
-
[_AIc, _BN, _No],
|
|
656
|
-
[0, 0, () => Notification$], 3
|
|
657
|
-
];
|
|
658
|
-
var DeleteNotificationResponse$ = [3, n0, _DNRe,
|
|
659
|
-
0,
|
|
660
|
-
[],
|
|
661
|
-
[]
|
|
662
|
-
];
|
|
663
|
-
var DeleteSubscriberRequest$ = [3, n0, _DSR,
|
|
664
|
-
0,
|
|
665
|
-
[_AIc, _BN, _No, _Sub],
|
|
666
|
-
[0, 0, () => Notification$, [() => Subscriber$, 0]], 4
|
|
667
|
-
];
|
|
668
|
-
var DeleteSubscriberResponse$ = [3, n0, _DSRe,
|
|
669
|
-
0,
|
|
670
|
-
[],
|
|
671
|
-
[]
|
|
672
|
-
];
|
|
673
|
-
var DescribeBudgetActionHistoriesRequest$ = [3, n0, _DBAHR,
|
|
674
|
-
0,
|
|
675
|
-
[_AIc, _BN, _AI, _TP, _MR, _NTe],
|
|
676
|
-
[0, 0, 0, () => TimePeriod$, 1, 0], 3
|
|
677
|
-
];
|
|
678
|
-
var DescribeBudgetActionHistoriesResponse$ = [3, n0, _DBAHRe,
|
|
679
|
-
0,
|
|
680
|
-
[_AHc, _NTe],
|
|
681
|
-
[[() => ActionHistories, 0], 0], 1
|
|
682
|
-
];
|
|
683
|
-
var DescribeBudgetActionRequest$ = [3, n0, _DBARes,
|
|
684
|
-
0,
|
|
685
|
-
[_AIc, _BN, _AI],
|
|
686
|
-
[0, 0, 0], 3
|
|
687
|
-
];
|
|
688
|
-
var DescribeBudgetActionResponse$ = [3, n0, _DBAResc,
|
|
689
|
-
0,
|
|
690
|
-
[_AIc, _BN, _A],
|
|
691
|
-
[0, 0, [() => Action$, 0]], 3
|
|
692
|
-
];
|
|
693
|
-
var DescribeBudgetActionsForAccountRequest$ = [3, n0, _DBAFAR,
|
|
694
|
-
0,
|
|
695
|
-
[_AIc, _MR, _NTe],
|
|
696
|
-
[0, 1, 0], 1
|
|
697
|
-
];
|
|
698
|
-
var DescribeBudgetActionsForAccountResponse$ = [3, n0, _DBAFARe,
|
|
699
|
-
0,
|
|
700
|
-
[_Ac, _NTe],
|
|
701
|
-
[[() => Actions, 0], 0], 1
|
|
702
|
-
];
|
|
703
|
-
var DescribeBudgetActionsForBudgetRequest$ = [3, n0, _DBAFBR,
|
|
704
|
-
0,
|
|
705
|
-
[_AIc, _BN, _MR, _NTe],
|
|
706
|
-
[0, 0, 1, 0], 2
|
|
707
|
-
];
|
|
708
|
-
var DescribeBudgetActionsForBudgetResponse$ = [3, n0, _DBAFBRe,
|
|
709
|
-
0,
|
|
710
|
-
[_Ac, _NTe],
|
|
711
|
-
[[() => Actions, 0], 0], 1
|
|
712
|
-
];
|
|
713
|
-
var DescribeBudgetNotificationsForAccountRequest$ = [3, n0, _DBNFAR,
|
|
714
|
-
0,
|
|
715
|
-
[_AIc, _MR, _NTe],
|
|
716
|
-
[0, 1, 0], 1
|
|
717
|
-
];
|
|
718
|
-
var DescribeBudgetNotificationsForAccountResponse$ = [3, n0, _DBNFARe,
|
|
719
|
-
0,
|
|
720
|
-
[_BNFA, _NTe],
|
|
721
|
-
[() => BudgetNotificationsForAccountList, 0]
|
|
722
|
-
];
|
|
723
|
-
var DescribeBudgetPerformanceHistoryRequest$ = [3, n0, _DBPHR,
|
|
724
|
-
0,
|
|
725
|
-
[_AIc, _BN, _TP, _MR, _NTe],
|
|
726
|
-
[0, 0, () => TimePeriod$, 1, 0], 2
|
|
727
|
-
];
|
|
728
|
-
var DescribeBudgetPerformanceHistoryResponse$ = [3, n0, _DBPHRe,
|
|
729
|
-
0,
|
|
730
|
-
[_BPH, _NTe],
|
|
731
|
-
[() => BudgetPerformanceHistory$, 0]
|
|
732
|
-
];
|
|
733
|
-
var DescribeBudgetRequest$ = [3, n0, _DBRes,
|
|
734
|
-
0,
|
|
735
|
-
[_AIc, _BN, _SFE],
|
|
736
|
-
[0, 0, 2], 2
|
|
737
|
-
];
|
|
738
|
-
var DescribeBudgetResponse$ = [3, n0, _DBResc,
|
|
739
|
-
0,
|
|
740
|
-
[_B],
|
|
741
|
-
[() => Budget$]
|
|
742
|
-
];
|
|
743
|
-
var DescribeBudgetsRequest$ = [3, n0, _DBRescr,
|
|
744
|
-
0,
|
|
745
|
-
[_AIc, _MR, _NTe, _SFE],
|
|
746
|
-
[0, 1, 0, 2], 1
|
|
747
|
-
];
|
|
748
|
-
var DescribeBudgetsResponse$ = [3, n0, _DBRescri,
|
|
749
|
-
0,
|
|
750
|
-
[_Bu, _NTe],
|
|
751
|
-
[() => Budgets$1, 0]
|
|
752
|
-
];
|
|
753
|
-
var DescribeNotificationsForBudgetRequest$ = [3, n0, _DNFBR,
|
|
754
|
-
0,
|
|
755
|
-
[_AIc, _BN, _MR, _NTe],
|
|
756
|
-
[0, 0, 1, 0], 2
|
|
757
|
-
];
|
|
758
|
-
var DescribeNotificationsForBudgetResponse$ = [3, n0, _DNFBRe,
|
|
759
|
-
0,
|
|
760
|
-
[_N, _NTe],
|
|
761
|
-
[() => Notifications, 0]
|
|
762
|
-
];
|
|
763
|
-
var DescribeSubscribersForNotificationRequest$ = [3, n0, _DSFNR,
|
|
764
|
-
0,
|
|
765
|
-
[_AIc, _BN, _No, _MR, _NTe],
|
|
766
|
-
[0, 0, () => Notification$, 1, 0], 3
|
|
767
|
-
];
|
|
768
|
-
var DescribeSubscribersForNotificationResponse$ = [3, n0, _DSFNRe,
|
|
769
|
-
0,
|
|
770
|
-
[_Su, _NTe],
|
|
771
|
-
[[() => Subscribers, 0], 0]
|
|
772
|
-
];
|
|
773
|
-
var DuplicateRecordException$ = [-3, n0, _DRE,
|
|
774
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
775
|
-
[_M],
|
|
776
|
-
[0]
|
|
777
|
-
];
|
|
778
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateRecordException$, DuplicateRecordException);
|
|
779
|
-
var ExecuteBudgetActionRequest$ = [3, n0, _EBAR,
|
|
780
|
-
0,
|
|
781
|
-
[_AIc, _BN, _AI, _ETx],
|
|
782
|
-
[0, 0, 0, 0], 4
|
|
783
|
-
];
|
|
784
|
-
var ExecuteBudgetActionResponse$ = [3, n0, _EBARx,
|
|
785
|
-
0,
|
|
786
|
-
[_AIc, _BN, _AI, _ETx],
|
|
787
|
-
[0, 0, 0, 0], 4
|
|
788
|
-
];
|
|
789
|
-
var ExpiredNextTokenException$ = [-3, n0, _ENTE,
|
|
790
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
791
|
-
[_M],
|
|
792
|
-
[0]
|
|
793
|
-
];
|
|
794
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredNextTokenException$, ExpiredNextTokenException);
|
|
795
|
-
var Expression$ = [3, n0, _E,
|
|
796
|
-
0,
|
|
797
|
-
[_O, _An, _Not, _Di, _Ta, _CC],
|
|
798
|
-
[() => Expressions, () => Expressions, () => Expression$, () => ExpressionDimensionValues$, () => TagValues$, () => CostCategoryValues$]
|
|
799
|
-
];
|
|
800
|
-
var ExpressionDimensionValues$ = [3, n0, _EDV,
|
|
801
|
-
0,
|
|
802
|
-
[_K, _V, _MO],
|
|
803
|
-
[0, 64 | 0, 64 | 0], 2
|
|
804
|
-
];
|
|
805
|
-
var HealthStatus$ = [3, n0, _HS,
|
|
806
|
-
0,
|
|
807
|
-
[_S, _SR, _LUT],
|
|
808
|
-
[0, 0, 4]
|
|
809
|
-
];
|
|
810
|
-
var HistoricalOptions$ = [3, n0, _HO,
|
|
811
|
-
0,
|
|
812
|
-
[_BAP, _LBAP],
|
|
813
|
-
[1, 1], 1
|
|
814
|
-
];
|
|
815
|
-
var IamActionDefinition$ = [3, n0, _IAD,
|
|
816
|
-
0,
|
|
817
|
-
[_PA, _R, _G, _U],
|
|
818
|
-
[0, 64 | 0, 64 | 0, 64 | 0], 1
|
|
819
|
-
];
|
|
820
|
-
var InternalErrorException$ = [-3, n0, _IEE,
|
|
821
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
822
|
-
[_M],
|
|
823
|
-
[0]
|
|
824
|
-
];
|
|
825
|
-
schema.TypeRegistry.for(n0).registerError(InternalErrorException$, InternalErrorException);
|
|
826
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
827
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
828
|
-
[_M],
|
|
829
|
-
[0]
|
|
830
|
-
];
|
|
831
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
832
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
833
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
834
|
-
[_M],
|
|
835
|
-
[0]
|
|
836
|
-
];
|
|
837
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
838
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
839
|
-
0,
|
|
840
|
-
[_RARN],
|
|
841
|
-
[0], 1
|
|
842
|
-
];
|
|
843
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
844
|
-
0,
|
|
845
|
-
[_RT],
|
|
846
|
-
[() => ResourceTagList]
|
|
847
|
-
];
|
|
848
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
849
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
850
|
-
[_M],
|
|
851
|
-
[0]
|
|
852
|
-
];
|
|
853
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
854
|
-
var Notification$ = [3, n0, _No,
|
|
855
|
-
0,
|
|
856
|
-
[_NT, _CO, _Th, _TT, _NS],
|
|
857
|
-
[0, 0, 1, 0, 0], 3
|
|
858
|
-
];
|
|
859
|
-
var NotificationWithSubscribers$ = [3, n0, _NWSo,
|
|
860
|
-
0,
|
|
861
|
-
[_No, _Su],
|
|
862
|
-
[() => Notification$, [() => Subscribers, 0]], 2
|
|
863
|
-
];
|
|
864
|
-
var ResourceLockedException$ = [-3, n0, _RLE,
|
|
865
|
-
{ [_e]: _c, [_hE]: 423 },
|
|
866
|
-
[_M],
|
|
867
|
-
[0]
|
|
868
|
-
];
|
|
869
|
-
schema.TypeRegistry.for(n0).registerError(ResourceLockedException$, ResourceLockedException);
|
|
870
|
-
var ResourceTag$ = [3, n0, _RTe,
|
|
871
|
-
0,
|
|
872
|
-
[_K, _Va],
|
|
873
|
-
[0, 0], 2
|
|
874
|
-
];
|
|
875
|
-
var ScpActionDefinition$ = [3, n0, _SAD,
|
|
876
|
-
0,
|
|
877
|
-
[_PI, _TI],
|
|
878
|
-
[0, 64 | 0], 2
|
|
879
|
-
];
|
|
880
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
881
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
882
|
-
[_M],
|
|
883
|
-
[0]
|
|
884
|
-
];
|
|
885
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
886
|
-
var Spend$ = [3, n0, _Sp,
|
|
887
|
-
0,
|
|
888
|
-
[_Am, _Un],
|
|
889
|
-
[0, 0], 2
|
|
890
|
-
];
|
|
891
|
-
var SsmActionDefinition$ = [3, n0, _SADs,
|
|
892
|
-
0,
|
|
893
|
-
[_AST, _Re, _II],
|
|
894
|
-
[0, 0, 64 | 0], 3
|
|
895
|
-
];
|
|
896
|
-
var Subscriber$ = [3, n0, _Sub,
|
|
897
|
-
0,
|
|
898
|
-
[_ST, _Ad],
|
|
899
|
-
[0, [() => SubscriberAddress, 0]], 2
|
|
900
|
-
];
|
|
901
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
902
|
-
0,
|
|
903
|
-
[_RARN, _RT],
|
|
904
|
-
[0, () => ResourceTagList], 2
|
|
905
|
-
];
|
|
906
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
907
|
-
0,
|
|
908
|
-
[],
|
|
909
|
-
[]
|
|
910
|
-
];
|
|
911
|
-
var TagValues$ = [3, n0, _TV,
|
|
912
|
-
0,
|
|
913
|
-
[_K, _V, _MO],
|
|
914
|
-
[0, 64 | 0, 64 | 0]
|
|
915
|
-
];
|
|
916
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
917
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
918
|
-
[_M],
|
|
919
|
-
[0]
|
|
920
|
-
];
|
|
921
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
922
|
-
var TimePeriod$ = [3, n0, _TP,
|
|
923
|
-
0,
|
|
924
|
-
[_St, _En],
|
|
925
|
-
[4, 4]
|
|
926
|
-
];
|
|
927
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
928
|
-
0,
|
|
929
|
-
[_RARN, _RTK],
|
|
930
|
-
[0, 64 | 0], 2
|
|
931
|
-
];
|
|
932
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
933
|
-
0,
|
|
934
|
-
[],
|
|
935
|
-
[]
|
|
936
|
-
];
|
|
937
|
-
var UpdateBudgetActionRequest$ = [3, n0, _UBAR,
|
|
938
|
-
0,
|
|
939
|
-
[_AIc, _BN, _AI, _NT, _ATc, _D, _ERA, _AM, _Su],
|
|
940
|
-
[0, 0, 0, 0, () => ActionThreshold$, () => Definition$, 0, 0, [() => Subscribers, 0]], 3
|
|
941
|
-
];
|
|
942
|
-
var UpdateBudgetActionResponse$ = [3, n0, _UBARp,
|
|
943
|
-
0,
|
|
944
|
-
[_AIc, _BN, _OA, _NA],
|
|
945
|
-
[0, 0, [() => Action$, 0], [() => Action$, 0]], 4
|
|
946
|
-
];
|
|
947
|
-
var UpdateBudgetRequest$ = [3, n0, _UBR,
|
|
948
|
-
0,
|
|
949
|
-
[_AIc, _NB],
|
|
950
|
-
[0, () => Budget$], 2
|
|
951
|
-
];
|
|
952
|
-
var UpdateBudgetResponse$ = [3, n0, _UBRp,
|
|
953
|
-
0,
|
|
954
|
-
[],
|
|
955
|
-
[]
|
|
956
|
-
];
|
|
957
|
-
var UpdateNotificationRequest$ = [3, n0, _UNR,
|
|
958
|
-
0,
|
|
959
|
-
[_AIc, _BN, _ON, _NN],
|
|
960
|
-
[0, 0, () => Notification$, () => Notification$], 4
|
|
961
|
-
];
|
|
962
|
-
var UpdateNotificationResponse$ = [3, n0, _UNRp,
|
|
963
|
-
0,
|
|
964
|
-
[],
|
|
965
|
-
[]
|
|
966
|
-
];
|
|
967
|
-
var UpdateSubscriberRequest$ = [3, n0, _USR,
|
|
968
|
-
0,
|
|
969
|
-
[_AIc, _BN, _No, _OS, _NSe],
|
|
970
|
-
[0, 0, () => Notification$, [() => Subscriber$, 0], [() => Subscriber$, 0]], 5
|
|
971
|
-
];
|
|
972
|
-
var UpdateSubscriberResponse$ = [3, n0, _USRp,
|
|
973
|
-
0,
|
|
974
|
-
[],
|
|
975
|
-
[]
|
|
976
|
-
];
|
|
977
|
-
var BudgetsServiceException$ = [-3, _sm, "BudgetsServiceException", 0, [], []];
|
|
978
|
-
schema.TypeRegistry.for(_sm).registerError(BudgetsServiceException$, BudgetsServiceException);
|
|
979
|
-
var ActionHistories = [1, n0, _AHc,
|
|
980
|
-
0, [() => ActionHistory$,
|
|
981
|
-
0]
|
|
982
|
-
];
|
|
983
|
-
var Actions = [1, n0, _Ac,
|
|
984
|
-
0, [() => Action$,
|
|
985
|
-
0]
|
|
986
|
-
];
|
|
987
|
-
var BudgetedAndActualAmountsList = [1, n0, _BAAAL,
|
|
988
|
-
0, () => BudgetedAndActualAmounts$
|
|
989
|
-
];
|
|
990
|
-
var BudgetNotificationsForAccountList = [1, n0, _BNFAL,
|
|
991
|
-
0, () => BudgetNotificationsForAccount$
|
|
992
|
-
];
|
|
993
|
-
var Budgets$1 = [1, n0, _Bu,
|
|
994
|
-
0, () => Budget$
|
|
995
|
-
];
|
|
996
|
-
var Expressions = [1, n0, _Ex,
|
|
997
|
-
0, () => Expression$
|
|
998
|
-
];
|
|
999
|
-
var Notifications = [1, n0, _N,
|
|
1000
|
-
0, () => Notification$
|
|
1001
|
-
];
|
|
1002
|
-
var NotificationWithSubscribersList = [1, n0, _NWSL,
|
|
1003
|
-
0, [() => NotificationWithSubscribers$,
|
|
1004
|
-
0]
|
|
1005
|
-
];
|
|
1006
|
-
var ResourceTagList = [1, n0, _RTL,
|
|
1007
|
-
0, () => ResourceTag$
|
|
1008
|
-
];
|
|
1009
|
-
var Subscribers = [1, n0, _Su,
|
|
1010
|
-
0, [() => Subscriber$,
|
|
1011
|
-
0]
|
|
1012
|
-
];
|
|
1013
|
-
var PlannedBudgetLimits = [2, n0, _PBL,
|
|
1014
|
-
0, 0, () => Spend$
|
|
1015
|
-
];
|
|
1016
|
-
var CreateBudget$ = [9, n0, _CB,
|
|
1017
|
-
0, () => CreateBudgetRequest$, () => CreateBudgetResponse$
|
|
1018
|
-
];
|
|
1019
|
-
var CreateBudgetAction$ = [9, n0, _CBA,
|
|
1020
|
-
0, () => CreateBudgetActionRequest$, () => CreateBudgetActionResponse$
|
|
1021
|
-
];
|
|
1022
|
-
var CreateNotification$ = [9, n0, _CN,
|
|
1023
|
-
0, () => CreateNotificationRequest$, () => CreateNotificationResponse$
|
|
1024
|
-
];
|
|
1025
|
-
var CreateSubscriber$ = [9, n0, _CSr,
|
|
1026
|
-
0, () => CreateSubscriberRequest$, () => CreateSubscriberResponse$
|
|
1027
|
-
];
|
|
1028
|
-
var DeleteBudget$ = [9, n0, _DB,
|
|
1029
|
-
0, () => DeleteBudgetRequest$, () => DeleteBudgetResponse$
|
|
1030
|
-
];
|
|
1031
|
-
var DeleteBudgetAction$ = [9, n0, _DBA,
|
|
1032
|
-
0, () => DeleteBudgetActionRequest$, () => DeleteBudgetActionResponse$
|
|
1033
|
-
];
|
|
1034
|
-
var DeleteNotification$ = [9, n0, _DN,
|
|
1035
|
-
0, () => DeleteNotificationRequest$, () => DeleteNotificationResponse$
|
|
1036
|
-
];
|
|
1037
|
-
var DeleteSubscriber$ = [9, n0, _DS,
|
|
1038
|
-
0, () => DeleteSubscriberRequest$, () => DeleteSubscriberResponse$
|
|
1039
|
-
];
|
|
1040
|
-
var DescribeBudget$ = [9, n0, _DBe,
|
|
1041
|
-
0, () => DescribeBudgetRequest$, () => DescribeBudgetResponse$
|
|
1042
|
-
];
|
|
1043
|
-
var DescribeBudgetAction$ = [9, n0, _DBAe,
|
|
1044
|
-
0, () => DescribeBudgetActionRequest$, () => DescribeBudgetActionResponse$
|
|
1045
|
-
];
|
|
1046
|
-
var DescribeBudgetActionHistories$ = [9, n0, _DBAH,
|
|
1047
|
-
0, () => DescribeBudgetActionHistoriesRequest$, () => DescribeBudgetActionHistoriesResponse$
|
|
1048
|
-
];
|
|
1049
|
-
var DescribeBudgetActionsForAccount$ = [9, n0, _DBAFA,
|
|
1050
|
-
0, () => DescribeBudgetActionsForAccountRequest$, () => DescribeBudgetActionsForAccountResponse$
|
|
1051
|
-
];
|
|
1052
|
-
var DescribeBudgetActionsForBudget$ = [9, n0, _DBAFB,
|
|
1053
|
-
0, () => DescribeBudgetActionsForBudgetRequest$, () => DescribeBudgetActionsForBudgetResponse$
|
|
1054
|
-
];
|
|
1055
|
-
var DescribeBudgetNotificationsForAccount$ = [9, n0, _DBNFA,
|
|
1056
|
-
0, () => DescribeBudgetNotificationsForAccountRequest$, () => DescribeBudgetNotificationsForAccountResponse$
|
|
1057
|
-
];
|
|
1058
|
-
var DescribeBudgetPerformanceHistory$ = [9, n0, _DBPH,
|
|
1059
|
-
0, () => DescribeBudgetPerformanceHistoryRequest$, () => DescribeBudgetPerformanceHistoryResponse$
|
|
1060
|
-
];
|
|
1061
|
-
var DescribeBudgets$ = [9, n0, _DBes,
|
|
1062
|
-
0, () => DescribeBudgetsRequest$, () => DescribeBudgetsResponse$
|
|
1063
|
-
];
|
|
1064
|
-
var DescribeNotificationsForBudget$ = [9, n0, _DNFB,
|
|
1065
|
-
0, () => DescribeNotificationsForBudgetRequest$, () => DescribeNotificationsForBudgetResponse$
|
|
1066
|
-
];
|
|
1067
|
-
var DescribeSubscribersForNotification$ = [9, n0, _DSFN,
|
|
1068
|
-
0, () => DescribeSubscribersForNotificationRequest$, () => DescribeSubscribersForNotificationResponse$
|
|
1069
|
-
];
|
|
1070
|
-
var ExecuteBudgetAction$ = [9, n0, _EBA,
|
|
1071
|
-
0, () => ExecuteBudgetActionRequest$, () => ExecuteBudgetActionResponse$
|
|
1072
|
-
];
|
|
1073
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1074
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1075
|
-
];
|
|
1076
|
-
var TagResource$ = [9, n0, _TR,
|
|
1077
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1078
|
-
];
|
|
1079
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1080
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1081
|
-
];
|
|
1082
|
-
var UpdateBudget$ = [9, n0, _UBp,
|
|
1083
|
-
0, () => UpdateBudgetRequest$, () => UpdateBudgetResponse$
|
|
1084
|
-
];
|
|
1085
|
-
var UpdateBudgetAction$ = [9, n0, _UBA,
|
|
1086
|
-
0, () => UpdateBudgetActionRequest$, () => UpdateBudgetActionResponse$
|
|
1087
|
-
];
|
|
1088
|
-
var UpdateNotification$ = [9, n0, _UN,
|
|
1089
|
-
0, () => UpdateNotificationRequest$, () => UpdateNotificationResponse$
|
|
1090
|
-
];
|
|
1091
|
-
var UpdateSubscriber$ = [9, n0, _US,
|
|
1092
|
-
0, () => UpdateSubscriberRequest$, () => UpdateSubscriberResponse$
|
|
1093
|
-
];
|
|
1094
|
-
|
|
1095
116
|
class CreateBudgetActionCommand extends smithyClient.Command
|
|
1096
117
|
.classBuilder()
|
|
1097
118
|
.ep(commonParams)
|
|
@@ -1100,7 +121,7 @@ class CreateBudgetActionCommand extends smithyClient.Command
|
|
|
1100
121
|
})
|
|
1101
122
|
.s("AWSBudgetServiceGateway", "CreateBudgetAction", {})
|
|
1102
123
|
.n("BudgetsClient", "CreateBudgetActionCommand")
|
|
1103
|
-
.sc(CreateBudgetAction$)
|
|
124
|
+
.sc(schemas_0.CreateBudgetAction$)
|
|
1104
125
|
.build() {
|
|
1105
126
|
}
|
|
1106
127
|
|
|
@@ -1112,7 +133,7 @@ class CreateBudgetCommand extends smithyClient.Command
|
|
|
1112
133
|
})
|
|
1113
134
|
.s("AWSBudgetServiceGateway", "CreateBudget", {})
|
|
1114
135
|
.n("BudgetsClient", "CreateBudgetCommand")
|
|
1115
|
-
.sc(CreateBudget$)
|
|
136
|
+
.sc(schemas_0.CreateBudget$)
|
|
1116
137
|
.build() {
|
|
1117
138
|
}
|
|
1118
139
|
|
|
@@ -1124,7 +145,7 @@ class CreateNotificationCommand extends smithyClient.Command
|
|
|
1124
145
|
})
|
|
1125
146
|
.s("AWSBudgetServiceGateway", "CreateNotification", {})
|
|
1126
147
|
.n("BudgetsClient", "CreateNotificationCommand")
|
|
1127
|
-
.sc(CreateNotification$)
|
|
148
|
+
.sc(schemas_0.CreateNotification$)
|
|
1128
149
|
.build() {
|
|
1129
150
|
}
|
|
1130
151
|
|
|
@@ -1136,7 +157,7 @@ class CreateSubscriberCommand extends smithyClient.Command
|
|
|
1136
157
|
})
|
|
1137
158
|
.s("AWSBudgetServiceGateway", "CreateSubscriber", {})
|
|
1138
159
|
.n("BudgetsClient", "CreateSubscriberCommand")
|
|
1139
|
-
.sc(CreateSubscriber$)
|
|
160
|
+
.sc(schemas_0.CreateSubscriber$)
|
|
1140
161
|
.build() {
|
|
1141
162
|
}
|
|
1142
163
|
|
|
@@ -1148,7 +169,7 @@ class DeleteBudgetActionCommand extends smithyClient.Command
|
|
|
1148
169
|
})
|
|
1149
170
|
.s("AWSBudgetServiceGateway", "DeleteBudgetAction", {})
|
|
1150
171
|
.n("BudgetsClient", "DeleteBudgetActionCommand")
|
|
1151
|
-
.sc(DeleteBudgetAction$)
|
|
172
|
+
.sc(schemas_0.DeleteBudgetAction$)
|
|
1152
173
|
.build() {
|
|
1153
174
|
}
|
|
1154
175
|
|
|
@@ -1160,7 +181,7 @@ class DeleteBudgetCommand extends smithyClient.Command
|
|
|
1160
181
|
})
|
|
1161
182
|
.s("AWSBudgetServiceGateway", "DeleteBudget", {})
|
|
1162
183
|
.n("BudgetsClient", "DeleteBudgetCommand")
|
|
1163
|
-
.sc(DeleteBudget$)
|
|
184
|
+
.sc(schemas_0.DeleteBudget$)
|
|
1164
185
|
.build() {
|
|
1165
186
|
}
|
|
1166
187
|
|
|
@@ -1172,7 +193,7 @@ class DeleteNotificationCommand extends smithyClient.Command
|
|
|
1172
193
|
})
|
|
1173
194
|
.s("AWSBudgetServiceGateway", "DeleteNotification", {})
|
|
1174
195
|
.n("BudgetsClient", "DeleteNotificationCommand")
|
|
1175
|
-
.sc(DeleteNotification$)
|
|
196
|
+
.sc(schemas_0.DeleteNotification$)
|
|
1176
197
|
.build() {
|
|
1177
198
|
}
|
|
1178
199
|
|
|
@@ -1184,7 +205,7 @@ class DeleteSubscriberCommand extends smithyClient.Command
|
|
|
1184
205
|
})
|
|
1185
206
|
.s("AWSBudgetServiceGateway", "DeleteSubscriber", {})
|
|
1186
207
|
.n("BudgetsClient", "DeleteSubscriberCommand")
|
|
1187
|
-
.sc(DeleteSubscriber$)
|
|
208
|
+
.sc(schemas_0.DeleteSubscriber$)
|
|
1188
209
|
.build() {
|
|
1189
210
|
}
|
|
1190
211
|
|
|
@@ -1196,7 +217,7 @@ class DescribeBudgetActionCommand extends smithyClient.Command
|
|
|
1196
217
|
})
|
|
1197
218
|
.s("AWSBudgetServiceGateway", "DescribeBudgetAction", {})
|
|
1198
219
|
.n("BudgetsClient", "DescribeBudgetActionCommand")
|
|
1199
|
-
.sc(DescribeBudgetAction$)
|
|
220
|
+
.sc(schemas_0.DescribeBudgetAction$)
|
|
1200
221
|
.build() {
|
|
1201
222
|
}
|
|
1202
223
|
|
|
@@ -1208,7 +229,7 @@ class DescribeBudgetActionHistoriesCommand extends smithyClient.Command
|
|
|
1208
229
|
})
|
|
1209
230
|
.s("AWSBudgetServiceGateway", "DescribeBudgetActionHistories", {})
|
|
1210
231
|
.n("BudgetsClient", "DescribeBudgetActionHistoriesCommand")
|
|
1211
|
-
.sc(DescribeBudgetActionHistories$)
|
|
232
|
+
.sc(schemas_0.DescribeBudgetActionHistories$)
|
|
1212
233
|
.build() {
|
|
1213
234
|
}
|
|
1214
235
|
|
|
@@ -1220,7 +241,7 @@ class DescribeBudgetActionsForAccountCommand extends smithyClient.Command
|
|
|
1220
241
|
})
|
|
1221
242
|
.s("AWSBudgetServiceGateway", "DescribeBudgetActionsForAccount", {})
|
|
1222
243
|
.n("BudgetsClient", "DescribeBudgetActionsForAccountCommand")
|
|
1223
|
-
.sc(DescribeBudgetActionsForAccount$)
|
|
244
|
+
.sc(schemas_0.DescribeBudgetActionsForAccount$)
|
|
1224
245
|
.build() {
|
|
1225
246
|
}
|
|
1226
247
|
|
|
@@ -1232,7 +253,7 @@ class DescribeBudgetActionsForBudgetCommand extends smithyClient.Command
|
|
|
1232
253
|
})
|
|
1233
254
|
.s("AWSBudgetServiceGateway", "DescribeBudgetActionsForBudget", {})
|
|
1234
255
|
.n("BudgetsClient", "DescribeBudgetActionsForBudgetCommand")
|
|
1235
|
-
.sc(DescribeBudgetActionsForBudget$)
|
|
256
|
+
.sc(schemas_0.DescribeBudgetActionsForBudget$)
|
|
1236
257
|
.build() {
|
|
1237
258
|
}
|
|
1238
259
|
|
|
@@ -1244,7 +265,7 @@ class DescribeBudgetCommand extends smithyClient.Command
|
|
|
1244
265
|
})
|
|
1245
266
|
.s("AWSBudgetServiceGateway", "DescribeBudget", {})
|
|
1246
267
|
.n("BudgetsClient", "DescribeBudgetCommand")
|
|
1247
|
-
.sc(DescribeBudget$)
|
|
268
|
+
.sc(schemas_0.DescribeBudget$)
|
|
1248
269
|
.build() {
|
|
1249
270
|
}
|
|
1250
271
|
|
|
@@ -1256,7 +277,7 @@ class DescribeBudgetNotificationsForAccountCommand extends smithyClient.Command
|
|
|
1256
277
|
})
|
|
1257
278
|
.s("AWSBudgetServiceGateway", "DescribeBudgetNotificationsForAccount", {})
|
|
1258
279
|
.n("BudgetsClient", "DescribeBudgetNotificationsForAccountCommand")
|
|
1259
|
-
.sc(DescribeBudgetNotificationsForAccount$)
|
|
280
|
+
.sc(schemas_0.DescribeBudgetNotificationsForAccount$)
|
|
1260
281
|
.build() {
|
|
1261
282
|
}
|
|
1262
283
|
|
|
@@ -1268,7 +289,7 @@ class DescribeBudgetPerformanceHistoryCommand extends smithyClient.Command
|
|
|
1268
289
|
})
|
|
1269
290
|
.s("AWSBudgetServiceGateway", "DescribeBudgetPerformanceHistory", {})
|
|
1270
291
|
.n("BudgetsClient", "DescribeBudgetPerformanceHistoryCommand")
|
|
1271
|
-
.sc(DescribeBudgetPerformanceHistory$)
|
|
292
|
+
.sc(schemas_0.DescribeBudgetPerformanceHistory$)
|
|
1272
293
|
.build() {
|
|
1273
294
|
}
|
|
1274
295
|
|
|
@@ -1280,7 +301,7 @@ class DescribeBudgetsCommand extends smithyClient.Command
|
|
|
1280
301
|
})
|
|
1281
302
|
.s("AWSBudgetServiceGateway", "DescribeBudgets", {})
|
|
1282
303
|
.n("BudgetsClient", "DescribeBudgetsCommand")
|
|
1283
|
-
.sc(DescribeBudgets$)
|
|
304
|
+
.sc(schemas_0.DescribeBudgets$)
|
|
1284
305
|
.build() {
|
|
1285
306
|
}
|
|
1286
307
|
|
|
@@ -1292,7 +313,7 @@ class DescribeNotificationsForBudgetCommand extends smithyClient.Command
|
|
|
1292
313
|
})
|
|
1293
314
|
.s("AWSBudgetServiceGateway", "DescribeNotificationsForBudget", {})
|
|
1294
315
|
.n("BudgetsClient", "DescribeNotificationsForBudgetCommand")
|
|
1295
|
-
.sc(DescribeNotificationsForBudget$)
|
|
316
|
+
.sc(schemas_0.DescribeNotificationsForBudget$)
|
|
1296
317
|
.build() {
|
|
1297
318
|
}
|
|
1298
319
|
|
|
@@ -1304,7 +325,7 @@ class DescribeSubscribersForNotificationCommand extends smithyClient.Command
|
|
|
1304
325
|
})
|
|
1305
326
|
.s("AWSBudgetServiceGateway", "DescribeSubscribersForNotification", {})
|
|
1306
327
|
.n("BudgetsClient", "DescribeSubscribersForNotificationCommand")
|
|
1307
|
-
.sc(DescribeSubscribersForNotification$)
|
|
328
|
+
.sc(schemas_0.DescribeSubscribersForNotification$)
|
|
1308
329
|
.build() {
|
|
1309
330
|
}
|
|
1310
331
|
|
|
@@ -1316,7 +337,7 @@ class ExecuteBudgetActionCommand extends smithyClient.Command
|
|
|
1316
337
|
})
|
|
1317
338
|
.s("AWSBudgetServiceGateway", "ExecuteBudgetAction", {})
|
|
1318
339
|
.n("BudgetsClient", "ExecuteBudgetActionCommand")
|
|
1319
|
-
.sc(ExecuteBudgetAction$)
|
|
340
|
+
.sc(schemas_0.ExecuteBudgetAction$)
|
|
1320
341
|
.build() {
|
|
1321
342
|
}
|
|
1322
343
|
|
|
@@ -1328,7 +349,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1328
349
|
})
|
|
1329
350
|
.s("AWSBudgetServiceGateway", "ListTagsForResource", {})
|
|
1330
351
|
.n("BudgetsClient", "ListTagsForResourceCommand")
|
|
1331
|
-
.sc(ListTagsForResource$)
|
|
352
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1332
353
|
.build() {
|
|
1333
354
|
}
|
|
1334
355
|
|
|
@@ -1340,7 +361,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1340
361
|
})
|
|
1341
362
|
.s("AWSBudgetServiceGateway", "TagResource", {})
|
|
1342
363
|
.n("BudgetsClient", "TagResourceCommand")
|
|
1343
|
-
.sc(TagResource$)
|
|
364
|
+
.sc(schemas_0.TagResource$)
|
|
1344
365
|
.build() {
|
|
1345
366
|
}
|
|
1346
367
|
|
|
@@ -1352,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1352
373
|
})
|
|
1353
374
|
.s("AWSBudgetServiceGateway", "UntagResource", {})
|
|
1354
375
|
.n("BudgetsClient", "UntagResourceCommand")
|
|
1355
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1356
377
|
.build() {
|
|
1357
378
|
}
|
|
1358
379
|
|
|
@@ -1364,7 +385,7 @@ class UpdateBudgetActionCommand extends smithyClient.Command
|
|
|
1364
385
|
})
|
|
1365
386
|
.s("AWSBudgetServiceGateway", "UpdateBudgetAction", {})
|
|
1366
387
|
.n("BudgetsClient", "UpdateBudgetActionCommand")
|
|
1367
|
-
.sc(UpdateBudgetAction$)
|
|
388
|
+
.sc(schemas_0.UpdateBudgetAction$)
|
|
1368
389
|
.build() {
|
|
1369
390
|
}
|
|
1370
391
|
|
|
@@ -1376,7 +397,7 @@ class UpdateBudgetCommand extends smithyClient.Command
|
|
|
1376
397
|
})
|
|
1377
398
|
.s("AWSBudgetServiceGateway", "UpdateBudget", {})
|
|
1378
399
|
.n("BudgetsClient", "UpdateBudgetCommand")
|
|
1379
|
-
.sc(UpdateBudget$)
|
|
400
|
+
.sc(schemas_0.UpdateBudget$)
|
|
1380
401
|
.build() {
|
|
1381
402
|
}
|
|
1382
403
|
|
|
@@ -1388,7 +409,7 @@ class UpdateNotificationCommand extends smithyClient.Command
|
|
|
1388
409
|
})
|
|
1389
410
|
.s("AWSBudgetServiceGateway", "UpdateNotification", {})
|
|
1390
411
|
.n("BudgetsClient", "UpdateNotificationCommand")
|
|
1391
|
-
.sc(UpdateNotification$)
|
|
412
|
+
.sc(schemas_0.UpdateNotification$)
|
|
1392
413
|
.build() {
|
|
1393
414
|
}
|
|
1394
415
|
|
|
@@ -1400,7 +421,7 @@ class UpdateSubscriberCommand extends smithyClient.Command
|
|
|
1400
421
|
})
|
|
1401
422
|
.s("AWSBudgetServiceGateway", "UpdateSubscriber", {})
|
|
1402
423
|
.n("BudgetsClient", "UpdateSubscriberCommand")
|
|
1403
|
-
.sc(UpdateSubscriber$)
|
|
424
|
+
.sc(schemas_0.UpdateSubscriber$)
|
|
1404
425
|
.build() {
|
|
1405
426
|
}
|
|
1406
427
|
|
|
@@ -1614,184 +635,57 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1614
635
|
enumerable: true,
|
|
1615
636
|
get: function () { return smithyClient.Client; }
|
|
1616
637
|
});
|
|
1617
|
-
exports
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
exports.ActionHistoryDetails$ = ActionHistoryDetails$;
|
|
638
|
+
Object.defineProperty(exports, "BudgetsServiceException", {
|
|
639
|
+
enumerable: true,
|
|
640
|
+
get: function () { return BudgetsServiceException.BudgetsServiceException; }
|
|
641
|
+
});
|
|
1622
642
|
exports.ActionStatus = ActionStatus;
|
|
1623
643
|
exports.ActionSubType = ActionSubType;
|
|
1624
|
-
exports.ActionThreshold$ = ActionThreshold$;
|
|
1625
644
|
exports.ActionType = ActionType;
|
|
1626
645
|
exports.ApprovalModel = ApprovalModel;
|
|
1627
|
-
exports.AutoAdjustData$ = AutoAdjustData$;
|
|
1628
646
|
exports.AutoAdjustType = AutoAdjustType;
|
|
1629
|
-
exports.BillingViewHealthStatusException = BillingViewHealthStatusException;
|
|
1630
|
-
exports.BillingViewHealthStatusException$ = BillingViewHealthStatusException$;
|
|
1631
|
-
exports.Budget$ = Budget$;
|
|
1632
|
-
exports.BudgetNotificationsForAccount$ = BudgetNotificationsForAccount$;
|
|
1633
|
-
exports.BudgetPerformanceHistory$ = BudgetPerformanceHistory$;
|
|
1634
647
|
exports.BudgetType = BudgetType;
|
|
1635
|
-
exports.BudgetedAndActualAmounts$ = BudgetedAndActualAmounts$;
|
|
1636
648
|
exports.Budgets = Budgets;
|
|
1637
649
|
exports.BudgetsClient = BudgetsClient;
|
|
1638
|
-
exports.BudgetsServiceException = BudgetsServiceException;
|
|
1639
|
-
exports.BudgetsServiceException$ = BudgetsServiceException$;
|
|
1640
|
-
exports.CalculatedSpend$ = CalculatedSpend$;
|
|
1641
650
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1642
|
-
exports.CostCategoryValues$ = CostCategoryValues$;
|
|
1643
|
-
exports.CostTypes$ = CostTypes$;
|
|
1644
|
-
exports.CreateBudget$ = CreateBudget$;
|
|
1645
|
-
exports.CreateBudgetAction$ = CreateBudgetAction$;
|
|
1646
651
|
exports.CreateBudgetActionCommand = CreateBudgetActionCommand;
|
|
1647
|
-
exports.CreateBudgetActionRequest$ = CreateBudgetActionRequest$;
|
|
1648
|
-
exports.CreateBudgetActionResponse$ = CreateBudgetActionResponse$;
|
|
1649
652
|
exports.CreateBudgetCommand = CreateBudgetCommand;
|
|
1650
|
-
exports.CreateBudgetRequest$ = CreateBudgetRequest$;
|
|
1651
|
-
exports.CreateBudgetResponse$ = CreateBudgetResponse$;
|
|
1652
|
-
exports.CreateNotification$ = CreateNotification$;
|
|
1653
653
|
exports.CreateNotificationCommand = CreateNotificationCommand;
|
|
1654
|
-
exports.CreateNotificationRequest$ = CreateNotificationRequest$;
|
|
1655
|
-
exports.CreateNotificationResponse$ = CreateNotificationResponse$;
|
|
1656
|
-
exports.CreateSubscriber$ = CreateSubscriber$;
|
|
1657
654
|
exports.CreateSubscriberCommand = CreateSubscriberCommand;
|
|
1658
|
-
exports.CreateSubscriberRequest$ = CreateSubscriberRequest$;
|
|
1659
|
-
exports.CreateSubscriberResponse$ = CreateSubscriberResponse$;
|
|
1660
|
-
exports.CreationLimitExceededException = CreationLimitExceededException;
|
|
1661
|
-
exports.CreationLimitExceededException$ = CreationLimitExceededException$;
|
|
1662
|
-
exports.Definition$ = Definition$;
|
|
1663
|
-
exports.DeleteBudget$ = DeleteBudget$;
|
|
1664
|
-
exports.DeleteBudgetAction$ = DeleteBudgetAction$;
|
|
1665
655
|
exports.DeleteBudgetActionCommand = DeleteBudgetActionCommand;
|
|
1666
|
-
exports.DeleteBudgetActionRequest$ = DeleteBudgetActionRequest$;
|
|
1667
|
-
exports.DeleteBudgetActionResponse$ = DeleteBudgetActionResponse$;
|
|
1668
656
|
exports.DeleteBudgetCommand = DeleteBudgetCommand;
|
|
1669
|
-
exports.DeleteBudgetRequest$ = DeleteBudgetRequest$;
|
|
1670
|
-
exports.DeleteBudgetResponse$ = DeleteBudgetResponse$;
|
|
1671
|
-
exports.DeleteNotification$ = DeleteNotification$;
|
|
1672
657
|
exports.DeleteNotificationCommand = DeleteNotificationCommand;
|
|
1673
|
-
exports.DeleteNotificationRequest$ = DeleteNotificationRequest$;
|
|
1674
|
-
exports.DeleteNotificationResponse$ = DeleteNotificationResponse$;
|
|
1675
|
-
exports.DeleteSubscriber$ = DeleteSubscriber$;
|
|
1676
658
|
exports.DeleteSubscriberCommand = DeleteSubscriberCommand;
|
|
1677
|
-
exports.DeleteSubscriberRequest$ = DeleteSubscriberRequest$;
|
|
1678
|
-
exports.DeleteSubscriberResponse$ = DeleteSubscriberResponse$;
|
|
1679
|
-
exports.DescribeBudget$ = DescribeBudget$;
|
|
1680
|
-
exports.DescribeBudgetAction$ = DescribeBudgetAction$;
|
|
1681
659
|
exports.DescribeBudgetActionCommand = DescribeBudgetActionCommand;
|
|
1682
|
-
exports.DescribeBudgetActionHistories$ = DescribeBudgetActionHistories$;
|
|
1683
660
|
exports.DescribeBudgetActionHistoriesCommand = DescribeBudgetActionHistoriesCommand;
|
|
1684
|
-
exports.DescribeBudgetActionHistoriesRequest$ = DescribeBudgetActionHistoriesRequest$;
|
|
1685
|
-
exports.DescribeBudgetActionHistoriesResponse$ = DescribeBudgetActionHistoriesResponse$;
|
|
1686
|
-
exports.DescribeBudgetActionRequest$ = DescribeBudgetActionRequest$;
|
|
1687
|
-
exports.DescribeBudgetActionResponse$ = DescribeBudgetActionResponse$;
|
|
1688
|
-
exports.DescribeBudgetActionsForAccount$ = DescribeBudgetActionsForAccount$;
|
|
1689
661
|
exports.DescribeBudgetActionsForAccountCommand = DescribeBudgetActionsForAccountCommand;
|
|
1690
|
-
exports.DescribeBudgetActionsForAccountRequest$ = DescribeBudgetActionsForAccountRequest$;
|
|
1691
|
-
exports.DescribeBudgetActionsForAccountResponse$ = DescribeBudgetActionsForAccountResponse$;
|
|
1692
|
-
exports.DescribeBudgetActionsForBudget$ = DescribeBudgetActionsForBudget$;
|
|
1693
662
|
exports.DescribeBudgetActionsForBudgetCommand = DescribeBudgetActionsForBudgetCommand;
|
|
1694
|
-
exports.DescribeBudgetActionsForBudgetRequest$ = DescribeBudgetActionsForBudgetRequest$;
|
|
1695
|
-
exports.DescribeBudgetActionsForBudgetResponse$ = DescribeBudgetActionsForBudgetResponse$;
|
|
1696
663
|
exports.DescribeBudgetCommand = DescribeBudgetCommand;
|
|
1697
|
-
exports.DescribeBudgetNotificationsForAccount$ = DescribeBudgetNotificationsForAccount$;
|
|
1698
664
|
exports.DescribeBudgetNotificationsForAccountCommand = DescribeBudgetNotificationsForAccountCommand;
|
|
1699
|
-
exports.DescribeBudgetNotificationsForAccountRequest$ = DescribeBudgetNotificationsForAccountRequest$;
|
|
1700
|
-
exports.DescribeBudgetNotificationsForAccountResponse$ = DescribeBudgetNotificationsForAccountResponse$;
|
|
1701
|
-
exports.DescribeBudgetPerformanceHistory$ = DescribeBudgetPerformanceHistory$;
|
|
1702
665
|
exports.DescribeBudgetPerformanceHistoryCommand = DescribeBudgetPerformanceHistoryCommand;
|
|
1703
|
-
exports.DescribeBudgetPerformanceHistoryRequest$ = DescribeBudgetPerformanceHistoryRequest$;
|
|
1704
|
-
exports.DescribeBudgetPerformanceHistoryResponse$ = DescribeBudgetPerformanceHistoryResponse$;
|
|
1705
|
-
exports.DescribeBudgetRequest$ = DescribeBudgetRequest$;
|
|
1706
|
-
exports.DescribeBudgetResponse$ = DescribeBudgetResponse$;
|
|
1707
|
-
exports.DescribeBudgets$ = DescribeBudgets$;
|
|
1708
666
|
exports.DescribeBudgetsCommand = DescribeBudgetsCommand;
|
|
1709
|
-
exports.DescribeBudgetsRequest$ = DescribeBudgetsRequest$;
|
|
1710
|
-
exports.DescribeBudgetsResponse$ = DescribeBudgetsResponse$;
|
|
1711
|
-
exports.DescribeNotificationsForBudget$ = DescribeNotificationsForBudget$;
|
|
1712
667
|
exports.DescribeNotificationsForBudgetCommand = DescribeNotificationsForBudgetCommand;
|
|
1713
|
-
exports.DescribeNotificationsForBudgetRequest$ = DescribeNotificationsForBudgetRequest$;
|
|
1714
|
-
exports.DescribeNotificationsForBudgetResponse$ = DescribeNotificationsForBudgetResponse$;
|
|
1715
|
-
exports.DescribeSubscribersForNotification$ = DescribeSubscribersForNotification$;
|
|
1716
668
|
exports.DescribeSubscribersForNotificationCommand = DescribeSubscribersForNotificationCommand;
|
|
1717
|
-
exports.DescribeSubscribersForNotificationRequest$ = DescribeSubscribersForNotificationRequest$;
|
|
1718
|
-
exports.DescribeSubscribersForNotificationResponse$ = DescribeSubscribersForNotificationResponse$;
|
|
1719
669
|
exports.Dimension = Dimension;
|
|
1720
|
-
exports.DuplicateRecordException = DuplicateRecordException;
|
|
1721
|
-
exports.DuplicateRecordException$ = DuplicateRecordException$;
|
|
1722
670
|
exports.EventType = EventType;
|
|
1723
|
-
exports.ExecuteBudgetAction$ = ExecuteBudgetAction$;
|
|
1724
671
|
exports.ExecuteBudgetActionCommand = ExecuteBudgetActionCommand;
|
|
1725
|
-
exports.ExecuteBudgetActionRequest$ = ExecuteBudgetActionRequest$;
|
|
1726
|
-
exports.ExecuteBudgetActionResponse$ = ExecuteBudgetActionResponse$;
|
|
1727
672
|
exports.ExecutionType = ExecutionType;
|
|
1728
|
-
exports.ExpiredNextTokenException = ExpiredNextTokenException;
|
|
1729
|
-
exports.ExpiredNextTokenException$ = ExpiredNextTokenException$;
|
|
1730
|
-
exports.Expression$ = Expression$;
|
|
1731
|
-
exports.ExpressionDimensionValues$ = ExpressionDimensionValues$;
|
|
1732
|
-
exports.HealthStatus$ = HealthStatus$;
|
|
1733
673
|
exports.HealthStatusReason = HealthStatusReason;
|
|
1734
674
|
exports.HealthStatusValue = HealthStatusValue;
|
|
1735
|
-
exports.HistoricalOptions$ = HistoricalOptions$;
|
|
1736
|
-
exports.IamActionDefinition$ = IamActionDefinition$;
|
|
1737
|
-
exports.InternalErrorException = InternalErrorException;
|
|
1738
|
-
exports.InternalErrorException$ = InternalErrorException$;
|
|
1739
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1740
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1741
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
1742
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1743
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1744
675
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1745
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1746
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1747
676
|
exports.MatchOption = MatchOption;
|
|
1748
677
|
exports.Metric = Metric;
|
|
1749
|
-
exports.NotFoundException = NotFoundException;
|
|
1750
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1751
|
-
exports.Notification$ = Notification$;
|
|
1752
678
|
exports.NotificationState = NotificationState;
|
|
1753
679
|
exports.NotificationType = NotificationType;
|
|
1754
|
-
exports.NotificationWithSubscribers$ = NotificationWithSubscribers$;
|
|
1755
|
-
exports.ResourceLockedException = ResourceLockedException;
|
|
1756
|
-
exports.ResourceLockedException$ = ResourceLockedException$;
|
|
1757
|
-
exports.ResourceTag$ = ResourceTag$;
|
|
1758
|
-
exports.ScpActionDefinition$ = ScpActionDefinition$;
|
|
1759
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1760
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1761
|
-
exports.Spend$ = Spend$;
|
|
1762
|
-
exports.SsmActionDefinition$ = SsmActionDefinition$;
|
|
1763
|
-
exports.Subscriber$ = Subscriber$;
|
|
1764
680
|
exports.SubscriptionType = SubscriptionType;
|
|
1765
|
-
exports.TagResource$ = TagResource$;
|
|
1766
681
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1767
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1768
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1769
|
-
exports.TagValues$ = TagValues$;
|
|
1770
682
|
exports.ThresholdType = ThresholdType;
|
|
1771
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1772
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1773
|
-
exports.TimePeriod$ = TimePeriod$;
|
|
1774
683
|
exports.TimeUnit = TimeUnit;
|
|
1775
|
-
exports.UntagResource$ = UntagResource$;
|
|
1776
684
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1777
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1778
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1779
|
-
exports.UpdateBudget$ = UpdateBudget$;
|
|
1780
|
-
exports.UpdateBudgetAction$ = UpdateBudgetAction$;
|
|
1781
685
|
exports.UpdateBudgetActionCommand = UpdateBudgetActionCommand;
|
|
1782
|
-
exports.UpdateBudgetActionRequest$ = UpdateBudgetActionRequest$;
|
|
1783
|
-
exports.UpdateBudgetActionResponse$ = UpdateBudgetActionResponse$;
|
|
1784
686
|
exports.UpdateBudgetCommand = UpdateBudgetCommand;
|
|
1785
|
-
exports.UpdateBudgetRequest$ = UpdateBudgetRequest$;
|
|
1786
|
-
exports.UpdateBudgetResponse$ = UpdateBudgetResponse$;
|
|
1787
|
-
exports.UpdateNotification$ = UpdateNotification$;
|
|
1788
687
|
exports.UpdateNotificationCommand = UpdateNotificationCommand;
|
|
1789
|
-
exports.UpdateNotificationRequest$ = UpdateNotificationRequest$;
|
|
1790
|
-
exports.UpdateNotificationResponse$ = UpdateNotificationResponse$;
|
|
1791
|
-
exports.UpdateSubscriber$ = UpdateSubscriber$;
|
|
1792
688
|
exports.UpdateSubscriberCommand = UpdateSubscriberCommand;
|
|
1793
|
-
exports.UpdateSubscriberRequest$ = UpdateSubscriberRequest$;
|
|
1794
|
-
exports.UpdateSubscriberResponse$ = UpdateSubscriberResponse$;
|
|
1795
689
|
exports.paginateDescribeBudgetActionHistories = paginateDescribeBudgetActionHistories;
|
|
1796
690
|
exports.paginateDescribeBudgetActionsForAccount = paginateDescribeBudgetActionsForAccount;
|
|
1797
691
|
exports.paginateDescribeBudgetActionsForBudget = paginateDescribeBudgetActionsForBudget;
|
|
@@ -1800,3 +694,15 @@ exports.paginateDescribeBudgetPerformanceHistory = paginateDescribeBudgetPerform
|
|
|
1800
694
|
exports.paginateDescribeBudgets = paginateDescribeBudgets;
|
|
1801
695
|
exports.paginateDescribeNotificationsForBudget = paginateDescribeNotificationsForBudget;
|
|
1802
696
|
exports.paginateDescribeSubscribersForNotification = paginateDescribeSubscribersForNotification;
|
|
697
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
698
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
699
|
+
enumerable: true,
|
|
700
|
+
get: function () { return schemas_0[k]; }
|
|
701
|
+
});
|
|
702
|
+
});
|
|
703
|
+
Object.keys(errors).forEach(function (k) {
|
|
704
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
705
|
+
enumerable: true,
|
|
706
|
+
get: function () { return errors[k]; }
|
|
707
|
+
});
|
|
708
|
+
});
|