@aws-sdk/client-service-quotas 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +463 -258
  3. package/dist-cjs/runtimeConfig.shared.js +6 -6
  4. package/dist-es/ServiceQuotas.js +4 -0
  5. package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +2 -2
  6. package/dist-es/commands/CreateSupportCaseCommand.js +2 -2
  7. package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +2 -2
  8. package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +2 -2
  9. package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +2 -2
  10. package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +2 -2
  11. package/dist-es/commands/GetAutoManagementConfigurationCommand.js +2 -2
  12. package/dist-es/commands/GetQuotaUtilizationReportCommand.js +16 -0
  13. package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +2 -2
  14. package/dist-es/commands/GetServiceQuotaCommand.js +2 -2
  15. package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +2 -2
  16. package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +2 -2
  17. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +2 -2
  18. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +2 -2
  19. package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +2 -2
  20. package/dist-es/commands/ListServiceQuotasCommand.js +2 -2
  21. package/dist-es/commands/ListServicesCommand.js +2 -2
  22. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  23. package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +2 -2
  24. package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +2 -2
  25. package/dist-es/commands/StartAutoManagementCommand.js +2 -2
  26. package/dist-es/commands/StartQuotaUtilizationReportCommand.js +16 -0
  27. package/dist-es/commands/StopAutoManagementCommand.js +2 -2
  28. package/dist-es/commands/TagResourceCommand.js +2 -2
  29. package/dist-es/commands/UntagResourceCommand.js +2 -2
  30. package/dist-es/commands/UpdateAutoManagementCommand.js +2 -2
  31. package/dist-es/commands/index.js +2 -0
  32. package/dist-es/index.js +1 -0
  33. package/dist-es/models/enums.js +9 -0
  34. package/dist-es/runtimeConfig.shared.js +6 -6
  35. package/dist-es/schemas/schemas_0.js +251 -192
  36. package/dist-types/ServiceQuotas.d.ts +15 -0
  37. package/dist-types/ServiceQuotasClient.d.ts +5 -12
  38. package/dist-types/commands/GetQuotaUtilizationReportCommand.d.ts +120 -0
  39. package/dist-types/commands/GetRequestedServiceQuotaChangeCommand.d.ts +1 -0
  40. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +1 -0
  41. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +1 -0
  42. package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +1 -0
  43. package/dist-types/commands/StartQuotaUtilizationReportCommand.d.ts +98 -0
  44. package/dist-types/commands/index.d.ts +2 -0
  45. package/dist-types/index.d.ts +1 -0
  46. package/dist-types/models/enums.d.ts +25 -0
  47. package/dist-types/models/models_0.d.ts +194 -1
  48. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  49. package/dist-types/runtimeConfig.d.ts +6 -2
  50. package/dist-types/runtimeConfig.native.d.ts +6 -2
  51. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  52. package/dist-types/schemas/schemas_0.d.ts +108 -113
  53. package/dist-types/ts3.4/ServiceQuotas.d.ts +35 -0
  54. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +12 -4
  55. package/dist-types/ts3.4/commands/GetQuotaUtilizationReportCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/StartQuotaUtilizationReportCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +35 -0
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  64. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  65. package/dist-types/ts3.4/schemas/schemas_0.d.ts +107 -114
  66. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ServiceQuotasClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ServiceQuotasServiceException$1 = class ServiceQuotasServiceException extends smithyClient.ServiceException {
113
+ class ServiceQuotasServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ServiceQuotasServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends ServiceQuotasServiceException$1 {
120
+ class AccessDeniedException extends ServiceQuotasServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ServiceQuotasS
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let AWSServiceAccessNotEnabledException$1 = class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException$1 {
133
+ }
134
+ class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException {
135
135
  name = "AWSServiceAccessNotEnabledException";
136
136
  $fault = "client";
137
137
  Message;
@@ -144,8 +144,8 @@ let AWSServiceAccessNotEnabledException$1 = class AWSServiceAccessNotEnabledExce
144
144
  Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let DependencyAccessDeniedException$1 = class DependencyAccessDeniedException extends ServiceQuotasServiceException$1 {
147
+ }
148
+ class DependencyAccessDeniedException extends ServiceQuotasServiceException {
149
149
  name = "DependencyAccessDeniedException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let DependencyAccessDeniedException$1 = class DependencyAccessDeniedException ex
158
158
  Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let NoAvailableOrganizationException$1 = class NoAvailableOrganizationException extends ServiceQuotasServiceException$1 {
161
+ }
162
+ class NoAvailableOrganizationException extends ServiceQuotasServiceException {
163
163
  name = "NoAvailableOrganizationException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let NoAvailableOrganizationException$1 = class NoAvailableOrganizationException
172
172
  Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let OrganizationNotInAllFeaturesModeException$1 = class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException$1 {
175
+ }
176
+ class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException {
177
177
  name = "OrganizationNotInAllFeaturesModeException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let OrganizationNotInAllFeaturesModeException$1 = class OrganizationNotInAllFeat
186
186
  Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let ServiceException$1 = class ServiceException extends ServiceQuotasServiceException$1 {
189
+ }
190
+ class ServiceException extends ServiceQuotasServiceException {
191
191
  name = "ServiceException";
192
192
  $fault = "server";
193
193
  Message;
@@ -200,8 +200,8 @@ let ServiceException$1 = class ServiceException extends ServiceQuotasServiceExce
200
200
  Object.setPrototypeOf(this, ServiceException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
204
- let TemplatesNotAvailableInRegionException$1 = class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException$1 {
203
+ }
204
+ class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException {
205
205
  name = "TemplatesNotAvailableInRegionException";
206
206
  $fault = "client";
207
207
  Message;
@@ -214,8 +214,8 @@ let TemplatesNotAvailableInRegionException$1 = class TemplatesNotAvailableInRegi
214
214
  Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
215
215
  this.Message = opts.Message;
216
216
  }
217
- };
218
- let TooManyRequestsException$1 = class TooManyRequestsException extends ServiceQuotasServiceException$1 {
217
+ }
218
+ class TooManyRequestsException extends ServiceQuotasServiceException {
219
219
  name = "TooManyRequestsException";
220
220
  $fault = "client";
221
221
  Message;
@@ -228,8 +228,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends ServiceQ
228
228
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
229
229
  this.Message = opts.Message;
230
230
  }
231
- };
232
- let IllegalArgumentException$1 = class IllegalArgumentException extends ServiceQuotasServiceException$1 {
231
+ }
232
+ class IllegalArgumentException extends ServiceQuotasServiceException {
233
233
  name = "IllegalArgumentException";
234
234
  $fault = "client";
235
235
  Message;
@@ -242,8 +242,8 @@ let IllegalArgumentException$1 = class IllegalArgumentException extends ServiceQ
242
242
  Object.setPrototypeOf(this, IllegalArgumentException.prototype);
243
243
  this.Message = opts.Message;
244
244
  }
245
- };
246
- let InvalidResourceStateException$1 = class InvalidResourceStateException extends ServiceQuotasServiceException$1 {
245
+ }
246
+ class InvalidResourceStateException extends ServiceQuotasServiceException {
247
247
  name = "InvalidResourceStateException";
248
248
  $fault = "client";
249
249
  Message;
@@ -256,8 +256,8 @@ let InvalidResourceStateException$1 = class InvalidResourceStateException extend
256
256
  Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
257
257
  this.Message = opts.Message;
258
258
  }
259
- };
260
- let NoSuchResourceException$1 = class NoSuchResourceException extends ServiceQuotasServiceException$1 {
259
+ }
260
+ class NoSuchResourceException extends ServiceQuotasServiceException {
261
261
  name = "NoSuchResourceException";
262
262
  $fault = "client";
263
263
  Message;
@@ -270,8 +270,8 @@ let NoSuchResourceException$1 = class NoSuchResourceException extends ServiceQuo
270
270
  Object.setPrototypeOf(this, NoSuchResourceException.prototype);
271
271
  this.Message = opts.Message;
272
272
  }
273
- };
274
- let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException extends ServiceQuotasServiceException$1 {
273
+ }
274
+ class ResourceAlreadyExistsException extends ServiceQuotasServiceException {
275
275
  name = "ResourceAlreadyExistsException";
276
276
  $fault = "client";
277
277
  Message;
@@ -284,8 +284,8 @@ let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException exte
284
284
  Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
285
285
  this.Message = opts.Message;
286
286
  }
287
- };
288
- let ServiceQuotaTemplateNotInUseException$1 = class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException$1 {
287
+ }
288
+ class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException {
289
289
  name = "ServiceQuotaTemplateNotInUseException";
290
290
  $fault = "client";
291
291
  Message;
@@ -298,8 +298,8 @@ let ServiceQuotaTemplateNotInUseException$1 = class ServiceQuotaTemplateNotInUse
298
298
  Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
299
299
  this.Message = opts.Message;
300
300
  }
301
- };
302
- let InvalidPaginationTokenException$1 = class InvalidPaginationTokenException extends ServiceQuotasServiceException$1 {
301
+ }
302
+ class InvalidPaginationTokenException extends ServiceQuotasServiceException {
303
303
  name = "InvalidPaginationTokenException";
304
304
  $fault = "client";
305
305
  Message;
@@ -312,8 +312,8 @@ let InvalidPaginationTokenException$1 = class InvalidPaginationTokenException ex
312
312
  Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
313
313
  this.Message = opts.Message;
314
314
  }
315
- };
316
- let QuotaExceededException$1 = class QuotaExceededException extends ServiceQuotasServiceException$1 {
315
+ }
316
+ class QuotaExceededException extends ServiceQuotasServiceException {
317
317
  name = "QuotaExceededException";
318
318
  $fault = "client";
319
319
  Message;
@@ -326,8 +326,8 @@ let QuotaExceededException$1 = class QuotaExceededException extends ServiceQuota
326
326
  Object.setPrototypeOf(this, QuotaExceededException.prototype);
327
327
  this.Message = opts.Message;
328
328
  }
329
- };
330
- let TagPolicyViolationException$1 = class TagPolicyViolationException extends ServiceQuotasServiceException$1 {
329
+ }
330
+ class TagPolicyViolationException extends ServiceQuotasServiceException {
331
331
  name = "TagPolicyViolationException";
332
332
  $fault = "client";
333
333
  Message;
@@ -340,8 +340,8 @@ let TagPolicyViolationException$1 = class TagPolicyViolationException extends Se
340
340
  Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
341
341
  this.Message = opts.Message;
342
342
  }
343
- };
344
- let TooManyTagsException$1 = class TooManyTagsException extends ServiceQuotasServiceException$1 {
343
+ }
344
+ class TooManyTagsException extends ServiceQuotasServiceException {
345
345
  name = "TooManyTagsException";
346
346
  $fault = "client";
347
347
  Message;
@@ -354,7 +354,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends ServiceQuotasSer
354
354
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
355
355
  this.Message = opts.Message;
356
356
  }
357
- };
357
+ }
358
358
 
359
359
  const _A = "Adjustable";
360
360
  const _ADE = "AccessDeniedException";
@@ -362,6 +362,7 @@ const _AR = "AwsRegion";
362
362
  const _ASQT = "AssociateServiceQuotaTemplate";
363
363
  const _ASQTR = "AssociateServiceQuotaTemplateRequest";
364
364
  const _ASQTRs = "AssociateServiceQuotaTemplateResponse";
365
+ const _AV = "AppliedValue";
365
366
  const _AWSSANEE = "AWSServiceAccessNotEnabledException";
366
367
  const _C = "Created";
367
368
  const _CI = "ContextId";
@@ -380,11 +381,13 @@ const _DSQT = "DisassociateServiceQuotaTemplate";
380
381
  const _DSQTR = "DisassociateServiceQuotaTemplateRequest";
381
382
  const _DSQTRi = "DisassociateServiceQuotaTemplateResponse";
382
383
  const _DV = "DesiredValue";
384
+ const _DVe = "DefaultValue";
383
385
  const _EC = "ErrorCode";
384
386
  const _EL = "ExclusionList";
385
387
  const _EM = "ErrorMessage";
386
388
  const _EQL = "ExclusionQuotaList";
387
389
  const _ER = "ErrorReason";
390
+ const _GA = "GeneratedAt";
388
391
  const _GAFSQT = "GetAssociationForServiceQuotaTemplate";
389
392
  const _GAFSQTR = "GetAssociationForServiceQuotaTemplateRequest";
390
393
  const _GAFSQTRe = "GetAssociationForServiceQuotaTemplateResponse";
@@ -395,6 +398,9 @@ const _GAWSDSQ = "GetAWSDefaultServiceQuota";
395
398
  const _GAWSDSQR = "GetAWSDefaultServiceQuotaRequest";
396
399
  const _GAWSDSQRe = "GetAWSDefaultServiceQuotaResponse";
397
400
  const _GQ = "GlobalQuota";
401
+ const _GQUR = "GetQuotaUtilizationReport";
402
+ const _GQURR = "GetQuotaUtilizationReportRequest";
403
+ const _GQURRe = "GetQuotaUtilizationReportResponse";
398
404
  const _GRSQC = "GetRequestedServiceQuotaChange";
399
405
  const _GRSQCR = "GetRequestedServiceQuotaChangeRequest";
400
406
  const _GRSQCRe = "GetRequestedServiceQuotaChangeResponse";
@@ -439,6 +445,7 @@ const _MN = "MetricNamespace";
439
445
  const _MNe = "MetricName";
440
446
  const _MR = "MaxResults";
441
447
  const _MSR = "MetricStatisticRecommendation";
448
+ const _N = "Namespace";
442
449
  const _NA = "NotificationArn";
443
450
  const _NAOE = "NoAvailableOrganizationException";
444
451
  const _NSRE = "NoSuchResourceException";
@@ -466,11 +473,14 @@ const _QIL = "QuotaInfoList";
466
473
  const _QN = "QuotaName";
467
474
  const _QP = "QuotaPeriod";
468
475
  const _QRAL = "QuotaRequestedAtLevel";
476
+ const _QUI = "QuotaUtilizationInfo";
477
+ const _QUIL = "QuotaUtilizationInfoList";
469
478
  const _Qu = "Quotas";
470
479
  const _R = "Requester";
471
480
  const _RAEE = "ResourceAlreadyExistsException";
472
481
  const _RARN = "ResourceARN";
473
482
  const _RI = "RequestId";
483
+ const _RIe = "ReportId";
474
484
  const _RQ = "RequestedQuota";
475
485
  const _RQe = "RequestedQuotas";
476
486
  const _RSQC = "RequestedServiceQuotaChange";
@@ -478,6 +488,7 @@ const _RSQCHLD = "RequestedServiceQuotaChangeHistoryListDefinition";
478
488
  const _RSQI = "RequestServiceQuotaIncrease";
479
489
  const _RSQIR = "RequestServiceQuotaIncreaseRequest";
480
490
  const _RSQIRe = "RequestServiceQuotaIncreaseResponse";
491
+ const _RT = "RequestType";
481
492
  const _S = "Status";
482
493
  const _SAM = "StartAutoManagement";
483
494
  const _SAMR = "StartAutoManagementRequest";
@@ -497,8 +508,12 @@ const _SQIRITL = "ServiceQuotaIncreaseRequestInTemplateList";
497
508
  const _SQLD = "ServiceQuotaListDefinition";
498
509
  const _SQTAS = "ServiceQuotaTemplateAssociationStatus";
499
510
  const _SQTNIUE = "ServiceQuotaTemplateNotInUseException";
511
+ const _SQUR = "StartQuotaUtilizationReport";
512
+ const _SQURR = "StartQuotaUtilizationReportRequest";
513
+ const _SQURRt = "StartQuotaUtilizationReportResponse";
500
514
  const _Se = "Services";
501
515
  const _T = "Tags";
516
+ const _TC = "TotalCount";
502
517
  const _TK = "TagKeys";
503
518
  const _TMRE = "TooManyRequestsException";
504
519
  const _TMTE = "TooManyTagsException";
@@ -508,7 +523,7 @@ const _TR = "TagResource";
508
523
  const _TRR = "TagResourceRequest";
509
524
  const _TRRa = "TagResourceResponse";
510
525
  const _Ta = "Tag";
511
- const _U = "Unit";
526
+ const _U = "Utilization";
512
527
  const _UAM = "UpdateAutoManagement";
513
528
  const _UAMR = "UpdateAutoManagementRequest";
514
529
  const _UAMRp = "UpdateAutoManagementResponse";
@@ -516,6 +531,7 @@ const _UM = "UsageMetric";
516
531
  const _UR = "UntagResource";
517
532
  const _URR = "UntagResourceRequest";
518
533
  const _URRn = "UntagResourceResponse";
534
+ const _Un = "Unit";
519
535
  const _V = "Value";
520
536
  const _c = "client";
521
537
  const _e = "error";
@@ -523,11 +539,11 @@ const _hE = "httpError";
523
539
  const _s = "server";
524
540
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.servicequotas";
525
541
  const n0 = "com.amazonaws.servicequotas";
526
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
527
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
528
- var AssociateServiceQuotaTemplateRequest = [3, n0, _ASQTR, 0, [], []];
529
- var AssociateServiceQuotaTemplateResponse = [3, n0, _ASQTRs, 0, [], []];
530
- var AWSServiceAccessNotEnabledException = [
542
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
543
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
544
+ var AssociateServiceQuotaTemplateRequest$ = [3, n0, _ASQTR, 0, [], []];
545
+ var AssociateServiceQuotaTemplateResponse$ = [3, n0, _ASQTRs, 0, [], []];
546
+ var AWSServiceAccessNotEnabledException$ = [
531
547
  -3,
532
548
  n0,
533
549
  _AWSSANEE,
@@ -535,10 +551,10 @@ var AWSServiceAccessNotEnabledException = [
535
551
  [_M],
536
552
  [0],
537
553
  ];
538
- schema.TypeRegistry.for(n0).registerError(AWSServiceAccessNotEnabledException, AWSServiceAccessNotEnabledException$1);
539
- var CreateSupportCaseRequest = [3, n0, _CSCR, 0, [_RI], [0]];
540
- var CreateSupportCaseResponse = [3, n0, _CSCRr, 0, [], []];
541
- var DeleteServiceQuotaIncreaseRequestFromTemplateRequest = [
554
+ schema.TypeRegistry.for(n0).registerError(AWSServiceAccessNotEnabledException$, AWSServiceAccessNotEnabledException);
555
+ var CreateSupportCaseRequest$ = [3, n0, _CSCR, 0, [_RI], [0]];
556
+ var CreateSupportCaseResponse$ = [3, n0, _CSCRr, 0, [], []];
557
+ var DeleteServiceQuotaIncreaseRequestFromTemplateRequest$ = [
542
558
  3,
543
559
  n0,
544
560
  _DSQIRFTR,
@@ -546,7 +562,7 @@ var DeleteServiceQuotaIncreaseRequestFromTemplateRequest = [
546
562
  [_SC, _QC, _AR],
547
563
  [0, 0, 0],
548
564
  ];
549
- var DeleteServiceQuotaIncreaseRequestFromTemplateResponse = [
565
+ var DeleteServiceQuotaIncreaseRequestFromTemplateResponse$ = [
550
566
  3,
551
567
  n0,
552
568
  _DSQIRFTRe,
@@ -554,15 +570,15 @@ var DeleteServiceQuotaIncreaseRequestFromTemplateResponse = [
554
570
  [],
555
571
  [],
556
572
  ];
557
- var DependencyAccessDeniedException = [-3, n0, _DADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
558
- schema.TypeRegistry.for(n0).registerError(DependencyAccessDeniedException, DependencyAccessDeniedException$1);
559
- var DisassociateServiceQuotaTemplateRequest = [3, n0, _DSQTR, 0, [], []];
560
- var DisassociateServiceQuotaTemplateResponse = [3, n0, _DSQTRi, 0, [], []];
561
- var ErrorReason = [3, n0, _ER, 0, [_EC, _EM], [0, 0]];
562
- var GetAssociationForServiceQuotaTemplateRequest = [3, n0, _GAFSQTR, 0, [], []];
563
- var GetAssociationForServiceQuotaTemplateResponse = [3, n0, _GAFSQTRe, 0, [_SQTAS], [0]];
564
- var GetAutoManagementConfigurationRequest = [3, n0, _GAMCR, 0, [], []];
565
- var GetAutoManagementConfigurationResponse = [
573
+ var DependencyAccessDeniedException$ = [-3, n0, _DADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
574
+ schema.TypeRegistry.for(n0).registerError(DependencyAccessDeniedException$, DependencyAccessDeniedException);
575
+ var DisassociateServiceQuotaTemplateRequest$ = [3, n0, _DSQTR, 0, [], []];
576
+ var DisassociateServiceQuotaTemplateResponse$ = [3, n0, _DSQTRi, 0, [], []];
577
+ var ErrorReason$ = [3, n0, _ER, 0, [_EC, _EM], [0, 0]];
578
+ var GetAssociationForServiceQuotaTemplateRequest$ = [3, n0, _GAFSQTR, 0, [], []];
579
+ var GetAssociationForServiceQuotaTemplateResponse$ = [3, n0, _GAFSQTRe, 0, [_SQTAS], [0]];
580
+ var GetAutoManagementConfigurationRequest$ = [3, n0, _GAMCR, 0, [], []];
581
+ var GetAutoManagementConfigurationResponse$ = [
566
582
  3,
567
583
  n0,
568
584
  _GAMCRe,
@@ -570,25 +586,34 @@ var GetAutoManagementConfigurationResponse = [
570
586
  [_OIL, _OIT, _NA, _OIS, _EL],
571
587
  [0, 0, 0, 0, () => ExclusionQuotaList],
572
588
  ];
573
- var GetAWSDefaultServiceQuotaRequest = [3, n0, _GAWSDSQR, 0, [_SC, _QC], [0, 0]];
574
- var GetAWSDefaultServiceQuotaResponse = [
589
+ var GetAWSDefaultServiceQuotaRequest$ = [3, n0, _GAWSDSQR, 0, [_SC, _QC], [0, 0]];
590
+ var GetAWSDefaultServiceQuotaResponse$ = [
575
591
  3,
576
592
  n0,
577
593
  _GAWSDSQRe,
578
594
  0,
579
595
  [_Q],
580
- [() => ServiceQuota],
596
+ [() => ServiceQuota$],
581
597
  ];
582
- var GetRequestedServiceQuotaChangeRequest = [3, n0, _GRSQCR, 0, [_RI], [0]];
583
- var GetRequestedServiceQuotaChangeResponse = [
598
+ var GetQuotaUtilizationReportRequest$ = [3, n0, _GQURR, 0, [_RIe, _NT, _MR], [0, 0, 1]];
599
+ var GetQuotaUtilizationReportResponse$ = [
600
+ 3,
601
+ n0,
602
+ _GQURRe,
603
+ 0,
604
+ [_RIe, _S, _GA, _TC, _Qu, _NT, _EC, _EM],
605
+ [0, 0, 4, 1, () => QuotaUtilizationInfoList, 0, 0, 0],
606
+ ];
607
+ var GetRequestedServiceQuotaChangeRequest$ = [3, n0, _GRSQCR, 0, [_RI], [0]];
608
+ var GetRequestedServiceQuotaChangeResponse$ = [
584
609
  3,
585
610
  n0,
586
611
  _GRSQCRe,
587
612
  0,
588
613
  [_RQ],
589
- [() => RequestedServiceQuotaChange],
614
+ [() => RequestedServiceQuotaChange$],
590
615
  ];
591
- var GetServiceQuotaIncreaseRequestFromTemplateRequest = [
616
+ var GetServiceQuotaIncreaseRequestFromTemplateRequest$ = [
592
617
  3,
593
618
  n0,
594
619
  _GSQIRFTR,
@@ -596,23 +621,23 @@ var GetServiceQuotaIncreaseRequestFromTemplateRequest = [
596
621
  [_SC, _QC, _AR],
597
622
  [0, 0, 0],
598
623
  ];
599
- var GetServiceQuotaIncreaseRequestFromTemplateResponse = [
624
+ var GetServiceQuotaIncreaseRequestFromTemplateResponse$ = [
600
625
  3,
601
626
  n0,
602
627
  _GSQIRFTRe,
603
628
  0,
604
629
  [_SQIRIT],
605
- [() => ServiceQuotaIncreaseRequestInTemplate],
630
+ [() => ServiceQuotaIncreaseRequestInTemplate$],
606
631
  ];
607
- var GetServiceQuotaRequest = [3, n0, _GSQR, 0, [_SC, _QC, _CI], [0, 0, 0]];
608
- var GetServiceQuotaResponse = [3, n0, _GSQRe, 0, [_Q], [() => ServiceQuota]];
609
- var IllegalArgumentException = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
610
- schema.TypeRegistry.for(n0).registerError(IllegalArgumentException, IllegalArgumentException$1);
611
- var InvalidPaginationTokenException = [-3, n0, _IPTE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
612
- schema.TypeRegistry.for(n0).registerError(InvalidPaginationTokenException, InvalidPaginationTokenException$1);
613
- var InvalidResourceStateException = [-3, n0, _IRSE, { [_e]: _c, [_hE]: 405 }, [_M], [0]];
614
- schema.TypeRegistry.for(n0).registerError(InvalidResourceStateException, InvalidResourceStateException$1);
615
- var ListAWSDefaultServiceQuotasRequest = [
632
+ var GetServiceQuotaRequest$ = [3, n0, _GSQR, 0, [_SC, _QC, _CI], [0, 0, 0]];
633
+ var GetServiceQuotaResponse$ = [3, n0, _GSQRe, 0, [_Q], [() => ServiceQuota$]];
634
+ var IllegalArgumentException$ = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
635
+ schema.TypeRegistry.for(n0).registerError(IllegalArgumentException$, IllegalArgumentException);
636
+ var InvalidPaginationTokenException$ = [-3, n0, _IPTE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
637
+ schema.TypeRegistry.for(n0).registerError(InvalidPaginationTokenException$, InvalidPaginationTokenException);
638
+ var InvalidResourceStateException$ = [-3, n0, _IRSE, { [_e]: _c, [_hE]: 405 }, [_M], [0]];
639
+ schema.TypeRegistry.for(n0).registerError(InvalidResourceStateException$, InvalidResourceStateException);
640
+ var ListAWSDefaultServiceQuotasRequest$ = [
616
641
  3,
617
642
  n0,
618
643
  _LAWSDSQR,
@@ -620,7 +645,7 @@ var ListAWSDefaultServiceQuotasRequest = [
620
645
  [_SC, _NT, _MR],
621
646
  [0, 0, 1],
622
647
  ];
623
- var ListAWSDefaultServiceQuotasResponse = [
648
+ var ListAWSDefaultServiceQuotasResponse$ = [
624
649
  3,
625
650
  n0,
626
651
  _LAWSDSQRi,
@@ -628,7 +653,7 @@ var ListAWSDefaultServiceQuotasResponse = [
628
653
  [_NT, _Qu],
629
654
  [0, () => ServiceQuotaListDefinition],
630
655
  ];
631
- var ListRequestedServiceQuotaChangeHistoryByQuotaRequest = [
656
+ var ListRequestedServiceQuotaChangeHistoryByQuotaRequest$ = [
632
657
  3,
633
658
  n0,
634
659
  _LRSQCHBQR,
@@ -636,7 +661,7 @@ var ListRequestedServiceQuotaChangeHistoryByQuotaRequest = [
636
661
  [_SC, _QC, _S, _NT, _MR, _QRAL],
637
662
  [0, 0, 0, 0, 1, 0],
638
663
  ];
639
- var ListRequestedServiceQuotaChangeHistoryByQuotaResponse = [
664
+ var ListRequestedServiceQuotaChangeHistoryByQuotaResponse$ = [
640
665
  3,
641
666
  n0,
642
667
  _LRSQCHBQRi,
@@ -644,7 +669,7 @@ var ListRequestedServiceQuotaChangeHistoryByQuotaResponse = [
644
669
  [_NT, _RQe],
645
670
  [0, () => RequestedServiceQuotaChangeHistoryListDefinition],
646
671
  ];
647
- var ListRequestedServiceQuotaChangeHistoryRequest = [
672
+ var ListRequestedServiceQuotaChangeHistoryRequest$ = [
648
673
  3,
649
674
  n0,
650
675
  _LRSQCHR,
@@ -652,7 +677,7 @@ var ListRequestedServiceQuotaChangeHistoryRequest = [
652
677
  [_SC, _S, _NT, _MR, _QRAL],
653
678
  [0, 0, 0, 1, 0],
654
679
  ];
655
- var ListRequestedServiceQuotaChangeHistoryResponse = [
680
+ var ListRequestedServiceQuotaChangeHistoryResponse$ = [
656
681
  3,
657
682
  n0,
658
683
  _LRSQCHRi,
@@ -660,7 +685,7 @@ var ListRequestedServiceQuotaChangeHistoryResponse = [
660
685
  [_NT, _RQe],
661
686
  [0, () => RequestedServiceQuotaChangeHistoryListDefinition],
662
687
  ];
663
- var ListServiceQuotaIncreaseRequestsInTemplateRequest = [
688
+ var ListServiceQuotaIncreaseRequestsInTemplateRequest$ = [
664
689
  3,
665
690
  n0,
666
691
  _LSQIRITR,
@@ -668,7 +693,7 @@ var ListServiceQuotaIncreaseRequestsInTemplateRequest = [
668
693
  [_SC, _AR, _NT, _MR],
669
694
  [0, 0, 0, 1],
670
695
  ];
671
- var ListServiceQuotaIncreaseRequestsInTemplateResponse = [
696
+ var ListServiceQuotaIncreaseRequestsInTemplateResponse$ = [
672
697
  3,
673
698
  n0,
674
699
  _LSQIRITRi,
@@ -676,7 +701,7 @@ var ListServiceQuotaIncreaseRequestsInTemplateResponse = [
676
701
  [_SQIRITL, _NT],
677
702
  [() => ServiceQuotaIncreaseRequestInTemplateList, 0],
678
703
  ];
679
- var ListServiceQuotasRequest = [
704
+ var ListServiceQuotasRequest$ = [
680
705
  3,
681
706
  n0,
682
707
  _LSQR,
@@ -684,7 +709,7 @@ var ListServiceQuotasRequest = [
684
709
  [_SC, _NT, _MR, _QC, _QAAL],
685
710
  [0, 0, 1, 0, 0],
686
711
  ];
687
- var ListServiceQuotasResponse = [
712
+ var ListServiceQuotasResponse$ = [
688
713
  3,
689
714
  n0,
690
715
  _LSQRi,
@@ -692,8 +717,8 @@ var ListServiceQuotasResponse = [
692
717
  [_NT, _Qu],
693
718
  [0, () => ServiceQuotaListDefinition],
694
719
  ];
695
- var ListServicesRequest = [3, n0, _LSR, 0, [_NT, _MR], [0, 1]];
696
- var ListServicesResponse = [
720
+ var ListServicesRequest$ = [3, n0, _LSR, 0, [_NT, _MR], [0, 1]];
721
+ var ListServicesResponse$ = [
697
722
  3,
698
723
  n0,
699
724
  _LSRi,
@@ -701,14 +726,14 @@ var ListServicesResponse = [
701
726
  [_NT, _Se],
702
727
  [0, () => ServiceInfoListDefinition],
703
728
  ];
704
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
705
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => OutputTags]];
706
- var MetricInfo = [3, n0, _MI, 0, [_MN, _MNe, _MD, _MSR], [0, 0, 128 | 0, 0]];
707
- var NoAvailableOrganizationException = [-3, n0, _NAOE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
708
- schema.TypeRegistry.for(n0).registerError(NoAvailableOrganizationException, NoAvailableOrganizationException$1);
709
- var NoSuchResourceException = [-3, n0, _NSRE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
710
- schema.TypeRegistry.for(n0).registerError(NoSuchResourceException, NoSuchResourceException$1);
711
- var OrganizationNotInAllFeaturesModeException = [
729
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
730
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [() => OutputTags]];
731
+ var MetricInfo$ = [3, n0, _MI, 0, [_MN, _MNe, _MD, _MSR], [0, 0, 128 | 0, 0]];
732
+ var NoAvailableOrganizationException$ = [-3, n0, _NAOE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
733
+ schema.TypeRegistry.for(n0).registerError(NoAvailableOrganizationException$, NoAvailableOrganizationException);
734
+ var NoSuchResourceException$ = [-3, n0, _NSRE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
735
+ schema.TypeRegistry.for(n0).registerError(NoSuchResourceException$, NoSuchResourceException);
736
+ var OrganizationNotInAllFeaturesModeException$ = [
712
737
  -3,
713
738
  n0,
714
739
  _ONIAFME,
@@ -716,8 +741,8 @@ var OrganizationNotInAllFeaturesModeException = [
716
741
  [_M],
717
742
  [0],
718
743
  ];
719
- schema.TypeRegistry.for(n0).registerError(OrganizationNotInAllFeaturesModeException, OrganizationNotInAllFeaturesModeException$1);
720
- var PutServiceQuotaIncreaseRequestIntoTemplateRequest = [
744
+ schema.TypeRegistry.for(n0).registerError(OrganizationNotInAllFeaturesModeException$, OrganizationNotInAllFeaturesModeException);
745
+ var PutServiceQuotaIncreaseRequestIntoTemplateRequest$ = [
721
746
  3,
722
747
  n0,
723
748
  _PSQIRITR,
@@ -725,28 +750,36 @@ var PutServiceQuotaIncreaseRequestIntoTemplateRequest = [
725
750
  [_QC, _SC, _AR, _DV],
726
751
  [0, 0, 0, 1],
727
752
  ];
728
- var PutServiceQuotaIncreaseRequestIntoTemplateResponse = [
753
+ var PutServiceQuotaIncreaseRequestIntoTemplateResponse$ = [
729
754
  3,
730
755
  n0,
731
756
  _PSQIRITRu,
732
757
  0,
733
758
  [_SQIRIT],
734
- [() => ServiceQuotaIncreaseRequestInTemplate],
759
+ [() => ServiceQuotaIncreaseRequestInTemplate$],
760
+ ];
761
+ var QuotaContextInfo$ = [3, n0, _QCI, 0, [_CS, _CST, _CI], [0, 0, 0]];
762
+ var QuotaExceededException$ = [-3, n0, _QEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
763
+ schema.TypeRegistry.for(n0).registerError(QuotaExceededException$, QuotaExceededException);
764
+ var QuotaInfo$ = [3, n0, _QI, 0, [_QC, _QN], [0, 0]];
765
+ var QuotaPeriod$ = [3, n0, _QP, 0, [_PV, _PU], [1, 0]];
766
+ var QuotaUtilizationInfo$ = [
767
+ 3,
768
+ n0,
769
+ _QUI,
770
+ 0,
771
+ [_QC, _SC, _QN, _N, _U, _DVe, _AV, _SN, _A],
772
+ [0, 0, 0, 0, 1, 1, 1, 0, 2],
735
773
  ];
736
- var QuotaContextInfo = [3, n0, _QCI, 0, [_CS, _CST, _CI], [0, 0, 0]];
737
- var QuotaExceededException = [-3, n0, _QEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
738
- schema.TypeRegistry.for(n0).registerError(QuotaExceededException, QuotaExceededException$1);
739
- var QuotaInfo = [3, n0, _QI, 0, [_QC, _QN], [0, 0]];
740
- var QuotaPeriod = [3, n0, _QP, 0, [_PV, _PU], [1, 0]];
741
- var RequestedServiceQuotaChange = [
774
+ var RequestedServiceQuotaChange$ = [
742
775
  3,
743
776
  n0,
744
777
  _RSQC,
745
778
  0,
746
- [_I, _CIa, _SC, _SN, _QC, _QN, _DV, _S, _C, _LU, _R, _QA, _GQ, _U, _QRAL, _QCu],
747
- [0, 0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0, 2, 0, 0, () => QuotaContextInfo],
779
+ [_I, _RT, _CIa, _SC, _SN, _QC, _QN, _DV, _S, _C, _LU, _R, _QA, _GQ, _Un, _QRAL, _QCu],
780
+ [0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0, 2, 0, 0, () => QuotaContextInfo$],
748
781
  ];
749
- var RequestServiceQuotaIncreaseRequest = [
782
+ var RequestServiceQuotaIncreaseRequest$ = [
750
783
  3,
751
784
  n0,
752
785
  _RSQIR,
@@ -754,36 +787,36 @@ var RequestServiceQuotaIncreaseRequest = [
754
787
  [_SC, _QC, _DV, _CI, _SCA],
755
788
  [0, 0, 1, 0, 2],
756
789
  ];
757
- var RequestServiceQuotaIncreaseResponse = [
790
+ var RequestServiceQuotaIncreaseResponse$ = [
758
791
  3,
759
792
  n0,
760
793
  _RSQIRe,
761
794
  0,
762
795
  [_RQ],
763
- [() => RequestedServiceQuotaChange],
796
+ [() => RequestedServiceQuotaChange$],
764
797
  ];
765
- var ResourceAlreadyExistsException = [-3, n0, _RAEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
766
- schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException, ResourceAlreadyExistsException$1);
767
- var ServiceException = [-3, n0, _SE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
768
- schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
769
- var ServiceInfo = [3, n0, _SI, 0, [_SC, _SN], [0, 0]];
770
- var ServiceQuota = [
798
+ var ResourceAlreadyExistsException$ = [-3, n0, _RAEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
799
+ schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
800
+ var ServiceException$ = [-3, n0, _SE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
801
+ schema.TypeRegistry.for(n0).registerError(ServiceException$, ServiceException);
802
+ var ServiceInfo$ = [3, n0, _SI, 0, [_SC, _SN], [0, 0]];
803
+ var ServiceQuota$ = [
771
804
  3,
772
805
  n0,
773
806
  _SQ,
774
807
  0,
775
- [_SC, _SN, _QA, _QC, _QN, _V, _U, _A, _GQ, _UM, _P, _ER, _QAAL, _QCu, _D],
776
- [0, 0, 0, 0, 0, 1, 0, 2, 2, () => MetricInfo, () => QuotaPeriod, () => ErrorReason, 0, () => QuotaContextInfo, 0],
808
+ [_SC, _SN, _QA, _QC, _QN, _V, _Un, _A, _GQ, _UM, _P, _ER, _QAAL, _QCu, _D],
809
+ [0, 0, 0, 0, 0, 1, 0, 2, 2, () => MetricInfo$, () => QuotaPeriod$, () => ErrorReason$, 0, () => QuotaContextInfo$, 0],
777
810
  ];
778
- var ServiceQuotaIncreaseRequestInTemplate = [
811
+ var ServiceQuotaIncreaseRequestInTemplate$ = [
779
812
  3,
780
813
  n0,
781
814
  _SQIRIT,
782
815
  0,
783
- [_SC, _SN, _QC, _QN, _DV, _AR, _U, _GQ],
816
+ [_SC, _SN, _QC, _QN, _DV, _AR, _Un, _GQ],
784
817
  [0, 0, 0, 0, 1, 0, 0, 2],
785
818
  ];
786
- var ServiceQuotaTemplateNotInUseException = [
819
+ var ServiceQuotaTemplateNotInUseException$ = [
787
820
  -3,
788
821
  n0,
789
822
  _SQTNIUE,
@@ -791,8 +824,8 @@ var ServiceQuotaTemplateNotInUseException = [
791
824
  [_M],
792
825
  [0],
793
826
  ];
794
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaTemplateNotInUseException, ServiceQuotaTemplateNotInUseException$1);
795
- var StartAutoManagementRequest = [
827
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaTemplateNotInUseException$, ServiceQuotaTemplateNotInUseException);
828
+ var StartAutoManagementRequest$ = [
796
829
  3,
797
830
  n0,
798
831
  _SAMR,
@@ -800,15 +833,17 @@ var StartAutoManagementRequest = [
800
833
  [_OIL, _OIT, _NA, _EL],
801
834
  [0, 0, 0, [2, n0, _EL, 0, 0, 64 | 0]],
802
835
  ];
803
- var StartAutoManagementResponse = [3, n0, _SAMRt, 0, [], []];
804
- var StopAutoManagementRequest = [3, n0, _SAMRto, 0, [], []];
805
- var StopAutoManagementResponse = [3, n0, _SAMRtop, 0, [], []];
806
- var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
807
- var TagPolicyViolationException = [-3, n0, _TPVE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
808
- schema.TypeRegistry.for(n0).registerError(TagPolicyViolationException, TagPolicyViolationException$1);
809
- var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, () => InputTags]];
810
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
811
- var TemplatesNotAvailableInRegionException = [
836
+ var StartAutoManagementResponse$ = [3, n0, _SAMRt, 0, [], []];
837
+ var StartQuotaUtilizationReportRequest$ = [3, n0, _SQURR, 0, [], []];
838
+ var StartQuotaUtilizationReportResponse$ = [3, n0, _SQURRt, 0, [_RIe, _S, _M], [0, 0, 0]];
839
+ var StopAutoManagementRequest$ = [3, n0, _SAMRto, 0, [], []];
840
+ var StopAutoManagementResponse$ = [3, n0, _SAMRtop, 0, [], []];
841
+ var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
842
+ var TagPolicyViolationException$ = [-3, n0, _TPVE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
843
+ schema.TypeRegistry.for(n0).registerError(TagPolicyViolationException$, TagPolicyViolationException);
844
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _T], [0, () => InputTags]];
845
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
846
+ var TemplatesNotAvailableInRegionException$ = [
812
847
  -3,
813
848
  n0,
814
849
  _TNAIRE,
@@ -816,14 +851,14 @@ var TemplatesNotAvailableInRegionException = [
816
851
  [_M],
817
852
  [0],
818
853
  ];
819
- schema.TypeRegistry.for(n0).registerError(TemplatesNotAvailableInRegionException, TemplatesNotAvailableInRegionException$1);
820
- var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
821
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
822
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
823
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
824
- var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
825
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
826
- var UpdateAutoManagementRequest = [
854
+ schema.TypeRegistry.for(n0).registerError(TemplatesNotAvailableInRegionException$, TemplatesNotAvailableInRegionException);
855
+ var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
856
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
857
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
858
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
859
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
860
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
861
+ var UpdateAutoManagementRequest$ = [
827
862
  3,
828
863
  n0,
829
864
  _UAMR,
@@ -831,206 +866,230 @@ var UpdateAutoManagementRequest = [
831
866
  [_OIT, _NA, _EL],
832
867
  [0, 0, [2, n0, _EL, 0, 0, 64 | 0]],
833
868
  ];
834
- var UpdateAutoManagementResponse = [3, n0, _UAMRp, 0, [], []];
835
- var ServiceQuotasServiceException = [-3, _sm, "ServiceQuotasServiceException", 0, [], []];
836
- schema.TypeRegistry.for(_sm).registerError(ServiceQuotasServiceException, ServiceQuotasServiceException$1);
837
- var InputTags = [1, n0, _IT, 0, () => Tag];
838
- var OutputTags = [1, n0, _OT, 0, () => Tag];
839
- var QuotaInfoList = [1, n0, _QIL, 0, () => QuotaInfo];
869
+ var UpdateAutoManagementResponse$ = [3, n0, _UAMRp, 0, [], []];
870
+ var ServiceQuotasServiceException$ = [-3, _sm, "ServiceQuotasServiceException", 0, [], []];
871
+ schema.TypeRegistry.for(_sm).registerError(ServiceQuotasServiceException$, ServiceQuotasServiceException);
872
+ var InputTags = [1, n0, _IT, 0, () => Tag$];
873
+ var OutputTags = [1, n0, _OT, 0, () => Tag$];
874
+ var QuotaInfoList = [1, n0, _QIL, 0, () => QuotaInfo$];
875
+ var QuotaUtilizationInfoList = [1, n0, _QUIL, 0, () => QuotaUtilizationInfo$];
840
876
  var RequestedServiceQuotaChangeHistoryListDefinition = [
841
877
  1,
842
878
  n0,
843
879
  _RSQCHLD,
844
880
  0,
845
- () => RequestedServiceQuotaChange,
881
+ () => RequestedServiceQuotaChange$,
846
882
  ];
847
- var ServiceInfoListDefinition = [1, n0, _SILD, 0, () => ServiceInfo];
883
+ var ServiceInfoListDefinition = [1, n0, _SILD, 0, () => ServiceInfo$];
848
884
  var ServiceQuotaIncreaseRequestInTemplateList = [
849
885
  1,
850
886
  n0,
851
887
  _SQIRITL,
852
888
  0,
853
- () => ServiceQuotaIncreaseRequestInTemplate,
889
+ () => ServiceQuotaIncreaseRequestInTemplate$,
854
890
  ];
855
- var ServiceQuotaListDefinition = [1, n0, _SQLD, 0, () => ServiceQuota];
891
+ var ServiceQuotaListDefinition = [1, n0, _SQLD, 0, () => ServiceQuota$];
856
892
  var ExclusionQuotaList = [2, n0, _EQL, 0, 0, () => QuotaInfoList];
857
- var AssociateServiceQuotaTemplate = [
893
+ var AssociateServiceQuotaTemplate$ = [
858
894
  9,
859
895
  n0,
860
896
  _ASQT,
861
897
  0,
862
- () => AssociateServiceQuotaTemplateRequest,
863
- () => AssociateServiceQuotaTemplateResponse,
898
+ () => AssociateServiceQuotaTemplateRequest$,
899
+ () => AssociateServiceQuotaTemplateResponse$,
864
900
  ];
865
- var CreateSupportCase = [
901
+ var CreateSupportCase$ = [
866
902
  9,
867
903
  n0,
868
904
  _CSC,
869
905
  0,
870
- () => CreateSupportCaseRequest,
871
- () => CreateSupportCaseResponse,
906
+ () => CreateSupportCaseRequest$,
907
+ () => CreateSupportCaseResponse$,
872
908
  ];
873
- var DeleteServiceQuotaIncreaseRequestFromTemplate = [
909
+ var DeleteServiceQuotaIncreaseRequestFromTemplate$ = [
874
910
  9,
875
911
  n0,
876
912
  _DSQIRFT,
877
913
  0,
878
- () => DeleteServiceQuotaIncreaseRequestFromTemplateRequest,
879
- () => DeleteServiceQuotaIncreaseRequestFromTemplateResponse,
914
+ () => DeleteServiceQuotaIncreaseRequestFromTemplateRequest$,
915
+ () => DeleteServiceQuotaIncreaseRequestFromTemplateResponse$,
880
916
  ];
881
- var DisassociateServiceQuotaTemplate = [
917
+ var DisassociateServiceQuotaTemplate$ = [
882
918
  9,
883
919
  n0,
884
920
  _DSQT,
885
921
  0,
886
- () => DisassociateServiceQuotaTemplateRequest,
887
- () => DisassociateServiceQuotaTemplateResponse,
922
+ () => DisassociateServiceQuotaTemplateRequest$,
923
+ () => DisassociateServiceQuotaTemplateResponse$,
888
924
  ];
889
- var GetAssociationForServiceQuotaTemplate = [
925
+ var GetAssociationForServiceQuotaTemplate$ = [
890
926
  9,
891
927
  n0,
892
928
  _GAFSQT,
893
929
  0,
894
- () => GetAssociationForServiceQuotaTemplateRequest,
895
- () => GetAssociationForServiceQuotaTemplateResponse,
930
+ () => GetAssociationForServiceQuotaTemplateRequest$,
931
+ () => GetAssociationForServiceQuotaTemplateResponse$,
896
932
  ];
897
- var GetAutoManagementConfiguration = [
933
+ var GetAutoManagementConfiguration$ = [
898
934
  9,
899
935
  n0,
900
936
  _GAMC,
901
937
  0,
902
- () => GetAutoManagementConfigurationRequest,
903
- () => GetAutoManagementConfigurationResponse,
938
+ () => GetAutoManagementConfigurationRequest$,
939
+ () => GetAutoManagementConfigurationResponse$,
904
940
  ];
905
- var GetAWSDefaultServiceQuota = [
941
+ var GetAWSDefaultServiceQuota$ = [
906
942
  9,
907
943
  n0,
908
944
  _GAWSDSQ,
909
945
  0,
910
- () => GetAWSDefaultServiceQuotaRequest,
911
- () => GetAWSDefaultServiceQuotaResponse,
946
+ () => GetAWSDefaultServiceQuotaRequest$,
947
+ () => GetAWSDefaultServiceQuotaResponse$,
948
+ ];
949
+ var GetQuotaUtilizationReport$ = [
950
+ 9,
951
+ n0,
952
+ _GQUR,
953
+ 0,
954
+ () => GetQuotaUtilizationReportRequest$,
955
+ () => GetQuotaUtilizationReportResponse$,
912
956
  ];
913
- var GetRequestedServiceQuotaChange = [
957
+ var GetRequestedServiceQuotaChange$ = [
914
958
  9,
915
959
  n0,
916
960
  _GRSQC,
917
961
  0,
918
- () => GetRequestedServiceQuotaChangeRequest,
919
- () => GetRequestedServiceQuotaChangeResponse,
962
+ () => GetRequestedServiceQuotaChangeRequest$,
963
+ () => GetRequestedServiceQuotaChangeResponse$,
920
964
  ];
921
- var GetServiceQuota = [
965
+ var GetServiceQuota$ = [
922
966
  9,
923
967
  n0,
924
968
  _GSQ,
925
969
  0,
926
- () => GetServiceQuotaRequest,
927
- () => GetServiceQuotaResponse,
970
+ () => GetServiceQuotaRequest$,
971
+ () => GetServiceQuotaResponse$,
928
972
  ];
929
- var GetServiceQuotaIncreaseRequestFromTemplate = [
973
+ var GetServiceQuotaIncreaseRequestFromTemplate$ = [
930
974
  9,
931
975
  n0,
932
976
  _GSQIRFT,
933
977
  0,
934
- () => GetServiceQuotaIncreaseRequestFromTemplateRequest,
935
- () => GetServiceQuotaIncreaseRequestFromTemplateResponse,
978
+ () => GetServiceQuotaIncreaseRequestFromTemplateRequest$,
979
+ () => GetServiceQuotaIncreaseRequestFromTemplateResponse$,
936
980
  ];
937
- var ListAWSDefaultServiceQuotas = [
981
+ var ListAWSDefaultServiceQuotas$ = [
938
982
  9,
939
983
  n0,
940
984
  _LAWSDSQ,
941
985
  0,
942
- () => ListAWSDefaultServiceQuotasRequest,
943
- () => ListAWSDefaultServiceQuotasResponse,
986
+ () => ListAWSDefaultServiceQuotasRequest$,
987
+ () => ListAWSDefaultServiceQuotasResponse$,
944
988
  ];
945
- var ListRequestedServiceQuotaChangeHistory = [
989
+ var ListRequestedServiceQuotaChangeHistory$ = [
946
990
  9,
947
991
  n0,
948
992
  _LRSQCH,
949
993
  0,
950
- () => ListRequestedServiceQuotaChangeHistoryRequest,
951
- () => ListRequestedServiceQuotaChangeHistoryResponse,
994
+ () => ListRequestedServiceQuotaChangeHistoryRequest$,
995
+ () => ListRequestedServiceQuotaChangeHistoryResponse$,
952
996
  ];
953
- var ListRequestedServiceQuotaChangeHistoryByQuota = [
997
+ var ListRequestedServiceQuotaChangeHistoryByQuota$ = [
954
998
  9,
955
999
  n0,
956
1000
  _LRSQCHBQ,
957
1001
  0,
958
- () => ListRequestedServiceQuotaChangeHistoryByQuotaRequest,
959
- () => ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
1002
+ () => ListRequestedServiceQuotaChangeHistoryByQuotaRequest$,
1003
+ () => ListRequestedServiceQuotaChangeHistoryByQuotaResponse$,
960
1004
  ];
961
- var ListServiceQuotaIncreaseRequestsInTemplate = [
1005
+ var ListServiceQuotaIncreaseRequestsInTemplate$ = [
962
1006
  9,
963
1007
  n0,
964
1008
  _LSQIRIT,
965
1009
  0,
966
- () => ListServiceQuotaIncreaseRequestsInTemplateRequest,
967
- () => ListServiceQuotaIncreaseRequestsInTemplateResponse,
1010
+ () => ListServiceQuotaIncreaseRequestsInTemplateRequest$,
1011
+ () => ListServiceQuotaIncreaseRequestsInTemplateResponse$,
968
1012
  ];
969
- var ListServiceQuotas = [
1013
+ var ListServiceQuotas$ = [
970
1014
  9,
971
1015
  n0,
972
1016
  _LSQ,
973
1017
  0,
974
- () => ListServiceQuotasRequest,
975
- () => ListServiceQuotasResponse,
1018
+ () => ListServiceQuotasRequest$,
1019
+ () => ListServiceQuotasResponse$,
976
1020
  ];
977
- var ListServices = [9, n0, _LS, 0, () => ListServicesRequest, () => ListServicesResponse];
978
- var ListTagsForResource = [
1021
+ var ListServices$ = [
1022
+ 9,
1023
+ n0,
1024
+ _LS,
1025
+ 0,
1026
+ () => ListServicesRequest$,
1027
+ () => ListServicesResponse$,
1028
+ ];
1029
+ var ListTagsForResource$ = [
979
1030
  9,
980
1031
  n0,
981
1032
  _LTFR,
982
1033
  0,
983
- () => ListTagsForResourceRequest,
984
- () => ListTagsForResourceResponse,
1034
+ () => ListTagsForResourceRequest$,
1035
+ () => ListTagsForResourceResponse$,
985
1036
  ];
986
- var PutServiceQuotaIncreaseRequestIntoTemplate = [
1037
+ var PutServiceQuotaIncreaseRequestIntoTemplate$ = [
987
1038
  9,
988
1039
  n0,
989
1040
  _PSQIRIT,
990
1041
  0,
991
- () => PutServiceQuotaIncreaseRequestIntoTemplateRequest,
992
- () => PutServiceQuotaIncreaseRequestIntoTemplateResponse,
1042
+ () => PutServiceQuotaIncreaseRequestIntoTemplateRequest$,
1043
+ () => PutServiceQuotaIncreaseRequestIntoTemplateResponse$,
993
1044
  ];
994
- var RequestServiceQuotaIncrease = [
1045
+ var RequestServiceQuotaIncrease$ = [
995
1046
  9,
996
1047
  n0,
997
1048
  _RSQI,
998
1049
  0,
999
- () => RequestServiceQuotaIncreaseRequest,
1000
- () => RequestServiceQuotaIncreaseResponse,
1050
+ () => RequestServiceQuotaIncreaseRequest$,
1051
+ () => RequestServiceQuotaIncreaseResponse$,
1001
1052
  ];
1002
- var StartAutoManagement = [
1053
+ var StartAutoManagement$ = [
1003
1054
  9,
1004
1055
  n0,
1005
1056
  _SAM,
1006
1057
  0,
1007
- () => StartAutoManagementRequest,
1008
- () => StartAutoManagementResponse,
1058
+ () => StartAutoManagementRequest$,
1059
+ () => StartAutoManagementResponse$,
1009
1060
  ];
1010
- var StopAutoManagement = [
1061
+ var StartQuotaUtilizationReport$ = [
1062
+ 9,
1063
+ n0,
1064
+ _SQUR,
1065
+ 0,
1066
+ () => StartQuotaUtilizationReportRequest$,
1067
+ () => StartQuotaUtilizationReportResponse$,
1068
+ ];
1069
+ var StopAutoManagement$ = [
1011
1070
  9,
1012
1071
  n0,
1013
1072
  _SAMt,
1014
1073
  0,
1015
- () => StopAutoManagementRequest,
1016
- () => StopAutoManagementResponse,
1074
+ () => StopAutoManagementRequest$,
1075
+ () => StopAutoManagementResponse$,
1017
1076
  ];
1018
- var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1019
- var UntagResource = [
1077
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
1078
+ var UntagResource$ = [
1020
1079
  9,
1021
1080
  n0,
1022
1081
  _UR,
1023
1082
  0,
1024
- () => UntagResourceRequest,
1025
- () => UntagResourceResponse,
1083
+ () => UntagResourceRequest$,
1084
+ () => UntagResourceResponse$,
1026
1085
  ];
1027
- var UpdateAutoManagement = [
1086
+ var UpdateAutoManagement$ = [
1028
1087
  9,
1029
1088
  n0,
1030
1089
  _UAM,
1031
1090
  0,
1032
- () => UpdateAutoManagementRequest,
1033
- () => UpdateAutoManagementResponse,
1091
+ () => UpdateAutoManagementRequest$,
1092
+ () => UpdateAutoManagementResponse$,
1034
1093
  ];
1035
1094
 
1036
1095
  class AssociateServiceQuotaTemplateCommand extends smithyClient.Command
@@ -1041,7 +1100,7 @@ class AssociateServiceQuotaTemplateCommand extends smithyClient.Command
1041
1100
  })
1042
1101
  .s("ServiceQuotasV20190624", "AssociateServiceQuotaTemplate", {})
1043
1102
  .n("ServiceQuotasClient", "AssociateServiceQuotaTemplateCommand")
1044
- .sc(AssociateServiceQuotaTemplate)
1103
+ .sc(AssociateServiceQuotaTemplate$)
1045
1104
  .build() {
1046
1105
  }
1047
1106
 
@@ -1053,7 +1112,7 @@ class CreateSupportCaseCommand extends smithyClient.Command
1053
1112
  })
1054
1113
  .s("ServiceQuotasV20190624", "CreateSupportCase", {})
1055
1114
  .n("ServiceQuotasClient", "CreateSupportCaseCommand")
1056
- .sc(CreateSupportCase)
1115
+ .sc(CreateSupportCase$)
1057
1116
  .build() {
1058
1117
  }
1059
1118
 
@@ -1065,7 +1124,7 @@ class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends smithyClient.
1065
1124
  })
1066
1125
  .s("ServiceQuotasV20190624", "DeleteServiceQuotaIncreaseRequestFromTemplate", {})
1067
1126
  .n("ServiceQuotasClient", "DeleteServiceQuotaIncreaseRequestFromTemplateCommand")
1068
- .sc(DeleteServiceQuotaIncreaseRequestFromTemplate)
1127
+ .sc(DeleteServiceQuotaIncreaseRequestFromTemplate$)
1069
1128
  .build() {
1070
1129
  }
1071
1130
 
@@ -1077,7 +1136,7 @@ class DisassociateServiceQuotaTemplateCommand extends smithyClient.Command
1077
1136
  })
1078
1137
  .s("ServiceQuotasV20190624", "DisassociateServiceQuotaTemplate", {})
1079
1138
  .n("ServiceQuotasClient", "DisassociateServiceQuotaTemplateCommand")
1080
- .sc(DisassociateServiceQuotaTemplate)
1139
+ .sc(DisassociateServiceQuotaTemplate$)
1081
1140
  .build() {
1082
1141
  }
1083
1142
 
@@ -1089,7 +1148,7 @@ class GetAssociationForServiceQuotaTemplateCommand extends smithyClient.Command
1089
1148
  })
1090
1149
  .s("ServiceQuotasV20190624", "GetAssociationForServiceQuotaTemplate", {})
1091
1150
  .n("ServiceQuotasClient", "GetAssociationForServiceQuotaTemplateCommand")
1092
- .sc(GetAssociationForServiceQuotaTemplate)
1151
+ .sc(GetAssociationForServiceQuotaTemplate$)
1093
1152
  .build() {
1094
1153
  }
1095
1154
 
@@ -1101,7 +1160,7 @@ class GetAutoManagementConfigurationCommand extends smithyClient.Command
1101
1160
  })
1102
1161
  .s("ServiceQuotasV20190624", "GetAutoManagementConfiguration", {})
1103
1162
  .n("ServiceQuotasClient", "GetAutoManagementConfigurationCommand")
1104
- .sc(GetAutoManagementConfiguration)
1163
+ .sc(GetAutoManagementConfiguration$)
1105
1164
  .build() {
1106
1165
  }
1107
1166
 
@@ -1113,7 +1172,19 @@ class GetAWSDefaultServiceQuotaCommand extends smithyClient.Command
1113
1172
  })
1114
1173
  .s("ServiceQuotasV20190624", "GetAWSDefaultServiceQuota", {})
1115
1174
  .n("ServiceQuotasClient", "GetAWSDefaultServiceQuotaCommand")
1116
- .sc(GetAWSDefaultServiceQuota)
1175
+ .sc(GetAWSDefaultServiceQuota$)
1176
+ .build() {
1177
+ }
1178
+
1179
+ class GetQuotaUtilizationReportCommand extends smithyClient.Command
1180
+ .classBuilder()
1181
+ .ep(commonParams)
1182
+ .m(function (Command, cs, config, o) {
1183
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1184
+ })
1185
+ .s("ServiceQuotasV20190624", "GetQuotaUtilizationReport", {})
1186
+ .n("ServiceQuotasClient", "GetQuotaUtilizationReportCommand")
1187
+ .sc(GetQuotaUtilizationReport$)
1117
1188
  .build() {
1118
1189
  }
1119
1190
 
@@ -1125,7 +1196,7 @@ class GetRequestedServiceQuotaChangeCommand extends smithyClient.Command
1125
1196
  })
1126
1197
  .s("ServiceQuotasV20190624", "GetRequestedServiceQuotaChange", {})
1127
1198
  .n("ServiceQuotasClient", "GetRequestedServiceQuotaChangeCommand")
1128
- .sc(GetRequestedServiceQuotaChange)
1199
+ .sc(GetRequestedServiceQuotaChange$)
1129
1200
  .build() {
1130
1201
  }
1131
1202
 
@@ -1137,7 +1208,7 @@ class GetServiceQuotaCommand extends smithyClient.Command
1137
1208
  })
1138
1209
  .s("ServiceQuotasV20190624", "GetServiceQuota", {})
1139
1210
  .n("ServiceQuotasClient", "GetServiceQuotaCommand")
1140
- .sc(GetServiceQuota)
1211
+ .sc(GetServiceQuota$)
1141
1212
  .build() {
1142
1213
  }
1143
1214
 
@@ -1149,7 +1220,7 @@ class GetServiceQuotaIncreaseRequestFromTemplateCommand extends smithyClient.Com
1149
1220
  })
1150
1221
  .s("ServiceQuotasV20190624", "GetServiceQuotaIncreaseRequestFromTemplate", {})
1151
1222
  .n("ServiceQuotasClient", "GetServiceQuotaIncreaseRequestFromTemplateCommand")
1152
- .sc(GetServiceQuotaIncreaseRequestFromTemplate)
1223
+ .sc(GetServiceQuotaIncreaseRequestFromTemplate$)
1153
1224
  .build() {
1154
1225
  }
1155
1226
 
@@ -1161,7 +1232,7 @@ class ListAWSDefaultServiceQuotasCommand extends smithyClient.Command
1161
1232
  })
1162
1233
  .s("ServiceQuotasV20190624", "ListAWSDefaultServiceQuotas", {})
1163
1234
  .n("ServiceQuotasClient", "ListAWSDefaultServiceQuotasCommand")
1164
- .sc(ListAWSDefaultServiceQuotas)
1235
+ .sc(ListAWSDefaultServiceQuotas$)
1165
1236
  .build() {
1166
1237
  }
1167
1238
 
@@ -1173,7 +1244,7 @@ class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends smithyClient.
1173
1244
  })
1174
1245
  .s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistoryByQuota", {})
1175
1246
  .n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryByQuotaCommand")
1176
- .sc(ListRequestedServiceQuotaChangeHistoryByQuota)
1247
+ .sc(ListRequestedServiceQuotaChangeHistoryByQuota$)
1177
1248
  .build() {
1178
1249
  }
1179
1250
 
@@ -1185,7 +1256,7 @@ class ListRequestedServiceQuotaChangeHistoryCommand extends smithyClient.Command
1185
1256
  })
1186
1257
  .s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistory", {})
1187
1258
  .n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryCommand")
1188
- .sc(ListRequestedServiceQuotaChangeHistory)
1259
+ .sc(ListRequestedServiceQuotaChangeHistory$)
1189
1260
  .build() {
1190
1261
  }
1191
1262
 
@@ -1197,7 +1268,7 @@ class ListServiceQuotaIncreaseRequestsInTemplateCommand extends smithyClient.Com
1197
1268
  })
1198
1269
  .s("ServiceQuotasV20190624", "ListServiceQuotaIncreaseRequestsInTemplate", {})
1199
1270
  .n("ServiceQuotasClient", "ListServiceQuotaIncreaseRequestsInTemplateCommand")
1200
- .sc(ListServiceQuotaIncreaseRequestsInTemplate)
1271
+ .sc(ListServiceQuotaIncreaseRequestsInTemplate$)
1201
1272
  .build() {
1202
1273
  }
1203
1274
 
@@ -1209,7 +1280,7 @@ class ListServiceQuotasCommand extends smithyClient.Command
1209
1280
  })
1210
1281
  .s("ServiceQuotasV20190624", "ListServiceQuotas", {})
1211
1282
  .n("ServiceQuotasClient", "ListServiceQuotasCommand")
1212
- .sc(ListServiceQuotas)
1283
+ .sc(ListServiceQuotas$)
1213
1284
  .build() {
1214
1285
  }
1215
1286
 
@@ -1221,7 +1292,7 @@ class ListServicesCommand extends smithyClient.Command
1221
1292
  })
1222
1293
  .s("ServiceQuotasV20190624", "ListServices", {})
1223
1294
  .n("ServiceQuotasClient", "ListServicesCommand")
1224
- .sc(ListServices)
1295
+ .sc(ListServices$)
1225
1296
  .build() {
1226
1297
  }
1227
1298
 
@@ -1233,7 +1304,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1233
1304
  })
1234
1305
  .s("ServiceQuotasV20190624", "ListTagsForResource", {})
1235
1306
  .n("ServiceQuotasClient", "ListTagsForResourceCommand")
1236
- .sc(ListTagsForResource)
1307
+ .sc(ListTagsForResource$)
1237
1308
  .build() {
1238
1309
  }
1239
1310
 
@@ -1245,7 +1316,7 @@ class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends smithyClient.Com
1245
1316
  })
1246
1317
  .s("ServiceQuotasV20190624", "PutServiceQuotaIncreaseRequestIntoTemplate", {})
1247
1318
  .n("ServiceQuotasClient", "PutServiceQuotaIncreaseRequestIntoTemplateCommand")
1248
- .sc(PutServiceQuotaIncreaseRequestIntoTemplate)
1319
+ .sc(PutServiceQuotaIncreaseRequestIntoTemplate$)
1249
1320
  .build() {
1250
1321
  }
1251
1322
 
@@ -1257,7 +1328,7 @@ class RequestServiceQuotaIncreaseCommand extends smithyClient.Command
1257
1328
  })
1258
1329
  .s("ServiceQuotasV20190624", "RequestServiceQuotaIncrease", {})
1259
1330
  .n("ServiceQuotasClient", "RequestServiceQuotaIncreaseCommand")
1260
- .sc(RequestServiceQuotaIncrease)
1331
+ .sc(RequestServiceQuotaIncrease$)
1261
1332
  .build() {
1262
1333
  }
1263
1334
 
@@ -1269,7 +1340,19 @@ class StartAutoManagementCommand extends smithyClient.Command
1269
1340
  })
1270
1341
  .s("ServiceQuotasV20190624", "StartAutoManagement", {})
1271
1342
  .n("ServiceQuotasClient", "StartAutoManagementCommand")
1272
- .sc(StartAutoManagement)
1343
+ .sc(StartAutoManagement$)
1344
+ .build() {
1345
+ }
1346
+
1347
+ class StartQuotaUtilizationReportCommand extends smithyClient.Command
1348
+ .classBuilder()
1349
+ .ep(commonParams)
1350
+ .m(function (Command, cs, config, o) {
1351
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1352
+ })
1353
+ .s("ServiceQuotasV20190624", "StartQuotaUtilizationReport", {})
1354
+ .n("ServiceQuotasClient", "StartQuotaUtilizationReportCommand")
1355
+ .sc(StartQuotaUtilizationReport$)
1273
1356
  .build() {
1274
1357
  }
1275
1358
 
@@ -1281,7 +1364,7 @@ class StopAutoManagementCommand extends smithyClient.Command
1281
1364
  })
1282
1365
  .s("ServiceQuotasV20190624", "StopAutoManagement", {})
1283
1366
  .n("ServiceQuotasClient", "StopAutoManagementCommand")
1284
- .sc(StopAutoManagement)
1367
+ .sc(StopAutoManagement$)
1285
1368
  .build() {
1286
1369
  }
1287
1370
 
@@ -1293,7 +1376,7 @@ class TagResourceCommand extends smithyClient.Command
1293
1376
  })
1294
1377
  .s("ServiceQuotasV20190624", "TagResource", {})
1295
1378
  .n("ServiceQuotasClient", "TagResourceCommand")
1296
- .sc(TagResource)
1379
+ .sc(TagResource$)
1297
1380
  .build() {
1298
1381
  }
1299
1382
 
@@ -1305,7 +1388,7 @@ class UntagResourceCommand extends smithyClient.Command
1305
1388
  })
1306
1389
  .s("ServiceQuotasV20190624", "UntagResource", {})
1307
1390
  .n("ServiceQuotasClient", "UntagResourceCommand")
1308
- .sc(UntagResource)
1391
+ .sc(UntagResource$)
1309
1392
  .build() {
1310
1393
  }
1311
1394
 
@@ -1317,7 +1400,7 @@ class UpdateAutoManagementCommand extends smithyClient.Command
1317
1400
  })
1318
1401
  .s("ServiceQuotasV20190624", "UpdateAutoManagement", {})
1319
1402
  .n("ServiceQuotasClient", "UpdateAutoManagementCommand")
1320
- .sc(UpdateAutoManagement)
1403
+ .sc(UpdateAutoManagement$)
1321
1404
  .build() {
1322
1405
  }
1323
1406
 
@@ -1329,6 +1412,7 @@ const commands = {
1329
1412
  GetAssociationForServiceQuotaTemplateCommand,
1330
1413
  GetAutoManagementConfigurationCommand,
1331
1414
  GetAWSDefaultServiceQuotaCommand,
1415
+ GetQuotaUtilizationReportCommand,
1332
1416
  GetRequestedServiceQuotaChangeCommand,
1333
1417
  GetServiceQuotaCommand,
1334
1418
  GetServiceQuotaIncreaseRequestFromTemplateCommand,
@@ -1342,6 +1426,7 @@ const commands = {
1342
1426
  PutServiceQuotaIncreaseRequestIntoTemplateCommand,
1343
1427
  RequestServiceQuotaIncreaseCommand,
1344
1428
  StartAutoManagementCommand,
1429
+ StartQuotaUtilizationReportCommand,
1345
1430
  StopAutoManagementCommand,
1346
1431
  TagResourceCommand,
1347
1432
  UntagResourceCommand,
@@ -1402,6 +1487,15 @@ const QuotaContextScope = {
1402
1487
  ACCOUNT: "ACCOUNT",
1403
1488
  RESOURCE: "RESOURCE",
1404
1489
  };
1490
+ const ReportStatus = {
1491
+ COMPLETED: "COMPLETED",
1492
+ FAILED: "FAILED",
1493
+ IN_PROGRESS: "IN_PROGRESS",
1494
+ PENDING: "PENDING",
1495
+ };
1496
+ const RequestType = {
1497
+ AutomaticManagement: "AutomaticManagement",
1498
+ };
1405
1499
  const RequestStatus = {
1406
1500
  APPROVED: "APPROVED",
1407
1501
  CASE_CLOSED: "CASE_CLOSED",
@@ -1420,59 +1514,170 @@ Object.defineProperty(exports, "__Client", {
1420
1514
  enumerable: true,
1421
1515
  get: function () { return smithyClient.Client; }
1422
1516
  });
1423
- exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException$1;
1424
- exports.AccessDeniedException = AccessDeniedException$1;
1517
+ exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException;
1518
+ exports.AWSServiceAccessNotEnabledException$ = AWSServiceAccessNotEnabledException$;
1519
+ exports.AccessDeniedException = AccessDeniedException;
1520
+ exports.AccessDeniedException$ = AccessDeniedException$;
1425
1521
  exports.AppliedLevelEnum = AppliedLevelEnum;
1522
+ exports.AssociateServiceQuotaTemplate$ = AssociateServiceQuotaTemplate$;
1426
1523
  exports.AssociateServiceQuotaTemplateCommand = AssociateServiceQuotaTemplateCommand;
1524
+ exports.AssociateServiceQuotaTemplateRequest$ = AssociateServiceQuotaTemplateRequest$;
1525
+ exports.AssociateServiceQuotaTemplateResponse$ = AssociateServiceQuotaTemplateResponse$;
1526
+ exports.CreateSupportCase$ = CreateSupportCase$;
1427
1527
  exports.CreateSupportCaseCommand = CreateSupportCaseCommand;
1528
+ exports.CreateSupportCaseRequest$ = CreateSupportCaseRequest$;
1529
+ exports.CreateSupportCaseResponse$ = CreateSupportCaseResponse$;
1530
+ exports.DeleteServiceQuotaIncreaseRequestFromTemplate$ = DeleteServiceQuotaIncreaseRequestFromTemplate$;
1428
1531
  exports.DeleteServiceQuotaIncreaseRequestFromTemplateCommand = DeleteServiceQuotaIncreaseRequestFromTemplateCommand;
1429
- exports.DependencyAccessDeniedException = DependencyAccessDeniedException$1;
1532
+ exports.DeleteServiceQuotaIncreaseRequestFromTemplateRequest$ = DeleteServiceQuotaIncreaseRequestFromTemplateRequest$;
1533
+ exports.DeleteServiceQuotaIncreaseRequestFromTemplateResponse$ = DeleteServiceQuotaIncreaseRequestFromTemplateResponse$;
1534
+ exports.DependencyAccessDeniedException = DependencyAccessDeniedException;
1535
+ exports.DependencyAccessDeniedException$ = DependencyAccessDeniedException$;
1536
+ exports.DisassociateServiceQuotaTemplate$ = DisassociateServiceQuotaTemplate$;
1430
1537
  exports.DisassociateServiceQuotaTemplateCommand = DisassociateServiceQuotaTemplateCommand;
1538
+ exports.DisassociateServiceQuotaTemplateRequest$ = DisassociateServiceQuotaTemplateRequest$;
1539
+ exports.DisassociateServiceQuotaTemplateResponse$ = DisassociateServiceQuotaTemplateResponse$;
1431
1540
  exports.ErrorCode = ErrorCode;
1541
+ exports.ErrorReason$ = ErrorReason$;
1542
+ exports.GetAWSDefaultServiceQuota$ = GetAWSDefaultServiceQuota$;
1432
1543
  exports.GetAWSDefaultServiceQuotaCommand = GetAWSDefaultServiceQuotaCommand;
1544
+ exports.GetAWSDefaultServiceQuotaRequest$ = GetAWSDefaultServiceQuotaRequest$;
1545
+ exports.GetAWSDefaultServiceQuotaResponse$ = GetAWSDefaultServiceQuotaResponse$;
1546
+ exports.GetAssociationForServiceQuotaTemplate$ = GetAssociationForServiceQuotaTemplate$;
1433
1547
  exports.GetAssociationForServiceQuotaTemplateCommand = GetAssociationForServiceQuotaTemplateCommand;
1548
+ exports.GetAssociationForServiceQuotaTemplateRequest$ = GetAssociationForServiceQuotaTemplateRequest$;
1549
+ exports.GetAssociationForServiceQuotaTemplateResponse$ = GetAssociationForServiceQuotaTemplateResponse$;
1550
+ exports.GetAutoManagementConfiguration$ = GetAutoManagementConfiguration$;
1434
1551
  exports.GetAutoManagementConfigurationCommand = GetAutoManagementConfigurationCommand;
1552
+ exports.GetAutoManagementConfigurationRequest$ = GetAutoManagementConfigurationRequest$;
1553
+ exports.GetAutoManagementConfigurationResponse$ = GetAutoManagementConfigurationResponse$;
1554
+ exports.GetQuotaUtilizationReport$ = GetQuotaUtilizationReport$;
1555
+ exports.GetQuotaUtilizationReportCommand = GetQuotaUtilizationReportCommand;
1556
+ exports.GetQuotaUtilizationReportRequest$ = GetQuotaUtilizationReportRequest$;
1557
+ exports.GetQuotaUtilizationReportResponse$ = GetQuotaUtilizationReportResponse$;
1558
+ exports.GetRequestedServiceQuotaChange$ = GetRequestedServiceQuotaChange$;
1435
1559
  exports.GetRequestedServiceQuotaChangeCommand = GetRequestedServiceQuotaChangeCommand;
1560
+ exports.GetRequestedServiceQuotaChangeRequest$ = GetRequestedServiceQuotaChangeRequest$;
1561
+ exports.GetRequestedServiceQuotaChangeResponse$ = GetRequestedServiceQuotaChangeResponse$;
1562
+ exports.GetServiceQuota$ = GetServiceQuota$;
1436
1563
  exports.GetServiceQuotaCommand = GetServiceQuotaCommand;
1564
+ exports.GetServiceQuotaIncreaseRequestFromTemplate$ = GetServiceQuotaIncreaseRequestFromTemplate$;
1437
1565
  exports.GetServiceQuotaIncreaseRequestFromTemplateCommand = GetServiceQuotaIncreaseRequestFromTemplateCommand;
1438
- exports.IllegalArgumentException = IllegalArgumentException$1;
1439
- exports.InvalidPaginationTokenException = InvalidPaginationTokenException$1;
1440
- exports.InvalidResourceStateException = InvalidResourceStateException$1;
1566
+ exports.GetServiceQuotaIncreaseRequestFromTemplateRequest$ = GetServiceQuotaIncreaseRequestFromTemplateRequest$;
1567
+ exports.GetServiceQuotaIncreaseRequestFromTemplateResponse$ = GetServiceQuotaIncreaseRequestFromTemplateResponse$;
1568
+ exports.GetServiceQuotaRequest$ = GetServiceQuotaRequest$;
1569
+ exports.GetServiceQuotaResponse$ = GetServiceQuotaResponse$;
1570
+ exports.IllegalArgumentException = IllegalArgumentException;
1571
+ exports.IllegalArgumentException$ = IllegalArgumentException$;
1572
+ exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
1573
+ exports.InvalidPaginationTokenException$ = InvalidPaginationTokenException$;
1574
+ exports.InvalidResourceStateException = InvalidResourceStateException;
1575
+ exports.InvalidResourceStateException$ = InvalidResourceStateException$;
1576
+ exports.ListAWSDefaultServiceQuotas$ = ListAWSDefaultServiceQuotas$;
1441
1577
  exports.ListAWSDefaultServiceQuotasCommand = ListAWSDefaultServiceQuotasCommand;
1578
+ exports.ListAWSDefaultServiceQuotasRequest$ = ListAWSDefaultServiceQuotasRequest$;
1579
+ exports.ListAWSDefaultServiceQuotasResponse$ = ListAWSDefaultServiceQuotasResponse$;
1580
+ exports.ListRequestedServiceQuotaChangeHistory$ = ListRequestedServiceQuotaChangeHistory$;
1581
+ exports.ListRequestedServiceQuotaChangeHistoryByQuota$ = ListRequestedServiceQuotaChangeHistoryByQuota$;
1442
1582
  exports.ListRequestedServiceQuotaChangeHistoryByQuotaCommand = ListRequestedServiceQuotaChangeHistoryByQuotaCommand;
1583
+ exports.ListRequestedServiceQuotaChangeHistoryByQuotaRequest$ = ListRequestedServiceQuotaChangeHistoryByQuotaRequest$;
1584
+ exports.ListRequestedServiceQuotaChangeHistoryByQuotaResponse$ = ListRequestedServiceQuotaChangeHistoryByQuotaResponse$;
1443
1585
  exports.ListRequestedServiceQuotaChangeHistoryCommand = ListRequestedServiceQuotaChangeHistoryCommand;
1586
+ exports.ListRequestedServiceQuotaChangeHistoryRequest$ = ListRequestedServiceQuotaChangeHistoryRequest$;
1587
+ exports.ListRequestedServiceQuotaChangeHistoryResponse$ = ListRequestedServiceQuotaChangeHistoryResponse$;
1588
+ exports.ListServiceQuotaIncreaseRequestsInTemplate$ = ListServiceQuotaIncreaseRequestsInTemplate$;
1444
1589
  exports.ListServiceQuotaIncreaseRequestsInTemplateCommand = ListServiceQuotaIncreaseRequestsInTemplateCommand;
1590
+ exports.ListServiceQuotaIncreaseRequestsInTemplateRequest$ = ListServiceQuotaIncreaseRequestsInTemplateRequest$;
1591
+ exports.ListServiceQuotaIncreaseRequestsInTemplateResponse$ = ListServiceQuotaIncreaseRequestsInTemplateResponse$;
1592
+ exports.ListServiceQuotas$ = ListServiceQuotas$;
1445
1593
  exports.ListServiceQuotasCommand = ListServiceQuotasCommand;
1594
+ exports.ListServiceQuotasRequest$ = ListServiceQuotasRequest$;
1595
+ exports.ListServiceQuotasResponse$ = ListServiceQuotasResponse$;
1596
+ exports.ListServices$ = ListServices$;
1446
1597
  exports.ListServicesCommand = ListServicesCommand;
1598
+ exports.ListServicesRequest$ = ListServicesRequest$;
1599
+ exports.ListServicesResponse$ = ListServicesResponse$;
1600
+ exports.ListTagsForResource$ = ListTagsForResource$;
1447
1601
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1448
- exports.NoAvailableOrganizationException = NoAvailableOrganizationException$1;
1449
- exports.NoSuchResourceException = NoSuchResourceException$1;
1602
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1603
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1604
+ exports.MetricInfo$ = MetricInfo$;
1605
+ exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
1606
+ exports.NoAvailableOrganizationException$ = NoAvailableOrganizationException$;
1607
+ exports.NoSuchResourceException = NoSuchResourceException;
1608
+ exports.NoSuchResourceException$ = NoSuchResourceException$;
1450
1609
  exports.OptInLevel = OptInLevel;
1451
1610
  exports.OptInStatus = OptInStatus;
1452
1611
  exports.OptInType = OptInType;
1453
- exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException$1;
1612
+ exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
1613
+ exports.OrganizationNotInAllFeaturesModeException$ = OrganizationNotInAllFeaturesModeException$;
1454
1614
  exports.PeriodUnit = PeriodUnit;
1615
+ exports.PutServiceQuotaIncreaseRequestIntoTemplate$ = PutServiceQuotaIncreaseRequestIntoTemplate$;
1455
1616
  exports.PutServiceQuotaIncreaseRequestIntoTemplateCommand = PutServiceQuotaIncreaseRequestIntoTemplateCommand;
1617
+ exports.PutServiceQuotaIncreaseRequestIntoTemplateRequest$ = PutServiceQuotaIncreaseRequestIntoTemplateRequest$;
1618
+ exports.PutServiceQuotaIncreaseRequestIntoTemplateResponse$ = PutServiceQuotaIncreaseRequestIntoTemplateResponse$;
1619
+ exports.QuotaContextInfo$ = QuotaContextInfo$;
1456
1620
  exports.QuotaContextScope = QuotaContextScope;
1457
- exports.QuotaExceededException = QuotaExceededException$1;
1621
+ exports.QuotaExceededException = QuotaExceededException;
1622
+ exports.QuotaExceededException$ = QuotaExceededException$;
1623
+ exports.QuotaInfo$ = QuotaInfo$;
1624
+ exports.QuotaPeriod$ = QuotaPeriod$;
1625
+ exports.QuotaUtilizationInfo$ = QuotaUtilizationInfo$;
1626
+ exports.ReportStatus = ReportStatus;
1627
+ exports.RequestServiceQuotaIncrease$ = RequestServiceQuotaIncrease$;
1458
1628
  exports.RequestServiceQuotaIncreaseCommand = RequestServiceQuotaIncreaseCommand;
1629
+ exports.RequestServiceQuotaIncreaseRequest$ = RequestServiceQuotaIncreaseRequest$;
1630
+ exports.RequestServiceQuotaIncreaseResponse$ = RequestServiceQuotaIncreaseResponse$;
1459
1631
  exports.RequestStatus = RequestStatus;
1460
- exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException$1;
1461
- exports.ServiceException = ServiceException$1;
1632
+ exports.RequestType = RequestType;
1633
+ exports.RequestedServiceQuotaChange$ = RequestedServiceQuotaChange$;
1634
+ exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
1635
+ exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
1636
+ exports.ServiceException = ServiceException;
1637
+ exports.ServiceException$ = ServiceException$;
1638
+ exports.ServiceInfo$ = ServiceInfo$;
1639
+ exports.ServiceQuota$ = ServiceQuota$;
1640
+ exports.ServiceQuotaIncreaseRequestInTemplate$ = ServiceQuotaIncreaseRequestInTemplate$;
1462
1641
  exports.ServiceQuotaTemplateAssociationStatus = ServiceQuotaTemplateAssociationStatus;
1463
- exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException$1;
1642
+ exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException;
1643
+ exports.ServiceQuotaTemplateNotInUseException$ = ServiceQuotaTemplateNotInUseException$;
1464
1644
  exports.ServiceQuotas = ServiceQuotas;
1465
1645
  exports.ServiceQuotasClient = ServiceQuotasClient;
1466
- exports.ServiceQuotasServiceException = ServiceQuotasServiceException$1;
1646
+ exports.ServiceQuotasServiceException = ServiceQuotasServiceException;
1647
+ exports.ServiceQuotasServiceException$ = ServiceQuotasServiceException$;
1648
+ exports.StartAutoManagement$ = StartAutoManagement$;
1467
1649
  exports.StartAutoManagementCommand = StartAutoManagementCommand;
1650
+ exports.StartAutoManagementRequest$ = StartAutoManagementRequest$;
1651
+ exports.StartAutoManagementResponse$ = StartAutoManagementResponse$;
1652
+ exports.StartQuotaUtilizationReport$ = StartQuotaUtilizationReport$;
1653
+ exports.StartQuotaUtilizationReportCommand = StartQuotaUtilizationReportCommand;
1654
+ exports.StartQuotaUtilizationReportRequest$ = StartQuotaUtilizationReportRequest$;
1655
+ exports.StartQuotaUtilizationReportResponse$ = StartQuotaUtilizationReportResponse$;
1656
+ exports.StopAutoManagement$ = StopAutoManagement$;
1468
1657
  exports.StopAutoManagementCommand = StopAutoManagementCommand;
1469
- exports.TagPolicyViolationException = TagPolicyViolationException$1;
1658
+ exports.StopAutoManagementRequest$ = StopAutoManagementRequest$;
1659
+ exports.StopAutoManagementResponse$ = StopAutoManagementResponse$;
1660
+ exports.Tag$ = Tag$;
1661
+ exports.TagPolicyViolationException = TagPolicyViolationException;
1662
+ exports.TagPolicyViolationException$ = TagPolicyViolationException$;
1663
+ exports.TagResource$ = TagResource$;
1470
1664
  exports.TagResourceCommand = TagResourceCommand;
1471
- exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException$1;
1472
- exports.TooManyRequestsException = TooManyRequestsException$1;
1473
- exports.TooManyTagsException = TooManyTagsException$1;
1665
+ exports.TagResourceRequest$ = TagResourceRequest$;
1666
+ exports.TagResourceResponse$ = TagResourceResponse$;
1667
+ exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException;
1668
+ exports.TemplatesNotAvailableInRegionException$ = TemplatesNotAvailableInRegionException$;
1669
+ exports.TooManyRequestsException = TooManyRequestsException;
1670
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
1671
+ exports.TooManyTagsException = TooManyTagsException;
1672
+ exports.TooManyTagsException$ = TooManyTagsException$;
1673
+ exports.UntagResource$ = UntagResource$;
1474
1674
  exports.UntagResourceCommand = UntagResourceCommand;
1675
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1676
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1677
+ exports.UpdateAutoManagement$ = UpdateAutoManagement$;
1475
1678
  exports.UpdateAutoManagementCommand = UpdateAutoManagementCommand;
1679
+ exports.UpdateAutoManagementRequest$ = UpdateAutoManagementRequest$;
1680
+ exports.UpdateAutoManagementResponse$ = UpdateAutoManagementResponse$;
1476
1681
  exports.paginateListAWSDefaultServiceQuotas = paginateListAWSDefaultServiceQuotas;
1477
1682
  exports.paginateListRequestedServiceQuotaChangeHistory = paginateListRequestedServiceQuotaChangeHistory;
1478
1683
  exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = paginateListRequestedServiceQuotaChangeHistoryByQuota;