@aws-sdk/client-service-quotas 3.716.0 → 3.723.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 +212 -152
- package/dist-es/ServiceQuotasClient.js +1 -0
- package/dist-es/models/models_0.js +51 -34
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -172,7 +172,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
172
172
|
}, "resolveRuntimeExtensions");
|
|
173
173
|
|
|
174
174
|
// src/ServiceQuotasClient.ts
|
|
175
|
-
var
|
|
175
|
+
var ServiceQuotasClient = class extends import_smithy_client.Client {
|
|
176
|
+
static {
|
|
177
|
+
__name(this, "ServiceQuotasClient");
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* The resolved configuration of ServiceQuotasClient class. This is resolved and normalized from the {@link ServiceQuotasClientConfig | constructor configuration interface}.
|
|
181
|
+
*/
|
|
182
|
+
config;
|
|
176
183
|
constructor(...[configuration]) {
|
|
177
184
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
178
185
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -182,7 +189,7 @@ var _ServiceQuotasClient = class _ServiceQuotasClient extends import_smithy_clie
|
|
|
182
189
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
183
190
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
184
191
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
185
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
192
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
186
193
|
super(_config_8);
|
|
187
194
|
this.config = _config_8;
|
|
188
195
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -210,8 +217,6 @@ var _ServiceQuotasClient = class _ServiceQuotasClient extends import_smithy_clie
|
|
|
210
217
|
super.destroy();
|
|
211
218
|
}
|
|
212
219
|
};
|
|
213
|
-
__name(_ServiceQuotasClient, "ServiceQuotasClient");
|
|
214
|
-
var ServiceQuotasClient = _ServiceQuotasClient;
|
|
215
220
|
|
|
216
221
|
// src/ServiceQuotas.ts
|
|
217
222
|
|
|
@@ -228,7 +233,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
228
233
|
|
|
229
234
|
// src/models/ServiceQuotasServiceException.ts
|
|
230
235
|
|
|
231
|
-
var
|
|
236
|
+
var ServiceQuotasServiceException = class _ServiceQuotasServiceException extends import_smithy_client.ServiceException {
|
|
237
|
+
static {
|
|
238
|
+
__name(this, "ServiceQuotasServiceException");
|
|
239
|
+
}
|
|
232
240
|
/**
|
|
233
241
|
* @internal
|
|
234
242
|
*/
|
|
@@ -237,11 +245,15 @@ var _ServiceQuotasServiceException = class _ServiceQuotasServiceException extend
|
|
|
237
245
|
Object.setPrototypeOf(this, _ServiceQuotasServiceException.prototype);
|
|
238
246
|
}
|
|
239
247
|
};
|
|
240
|
-
__name(_ServiceQuotasServiceException, "ServiceQuotasServiceException");
|
|
241
|
-
var ServiceQuotasServiceException = _ServiceQuotasServiceException;
|
|
242
248
|
|
|
243
249
|
// src/models/models_0.ts
|
|
244
|
-
var
|
|
250
|
+
var AccessDeniedException = class _AccessDeniedException extends ServiceQuotasServiceException {
|
|
251
|
+
static {
|
|
252
|
+
__name(this, "AccessDeniedException");
|
|
253
|
+
}
|
|
254
|
+
name = "AccessDeniedException";
|
|
255
|
+
$fault = "client";
|
|
256
|
+
Message;
|
|
245
257
|
/**
|
|
246
258
|
* @internal
|
|
247
259
|
*/
|
|
@@ -251,20 +263,22 @@ var _AccessDeniedException = class _AccessDeniedException extends ServiceQuotasS
|
|
|
251
263
|
$fault: "client",
|
|
252
264
|
...opts
|
|
253
265
|
});
|
|
254
|
-
this.name = "AccessDeniedException";
|
|
255
|
-
this.$fault = "client";
|
|
256
266
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
257
267
|
this.Message = opts.Message;
|
|
258
268
|
}
|
|
259
269
|
};
|
|
260
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
261
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
262
270
|
var AppliedLevelEnum = {
|
|
263
271
|
ACCOUNT: "ACCOUNT",
|
|
264
272
|
ALL: "ALL",
|
|
265
273
|
RESOURCE: "RESOURCE"
|
|
266
274
|
};
|
|
267
|
-
var
|
|
275
|
+
var AWSServiceAccessNotEnabledException = class _AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException {
|
|
276
|
+
static {
|
|
277
|
+
__name(this, "AWSServiceAccessNotEnabledException");
|
|
278
|
+
}
|
|
279
|
+
name = "AWSServiceAccessNotEnabledException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
Message;
|
|
268
282
|
/**
|
|
269
283
|
* @internal
|
|
270
284
|
*/
|
|
@@ -274,15 +288,17 @@ var _AWSServiceAccessNotEnabledException = class _AWSServiceAccessNotEnabledExce
|
|
|
274
288
|
$fault: "client",
|
|
275
289
|
...opts
|
|
276
290
|
});
|
|
277
|
-
this.name = "AWSServiceAccessNotEnabledException";
|
|
278
|
-
this.$fault = "client";
|
|
279
291
|
Object.setPrototypeOf(this, _AWSServiceAccessNotEnabledException.prototype);
|
|
280
292
|
this.Message = opts.Message;
|
|
281
293
|
}
|
|
282
294
|
};
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
295
|
+
var DependencyAccessDeniedException = class _DependencyAccessDeniedException extends ServiceQuotasServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "DependencyAccessDeniedException");
|
|
298
|
+
}
|
|
299
|
+
name = "DependencyAccessDeniedException";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
Message;
|
|
286
302
|
/**
|
|
287
303
|
* @internal
|
|
288
304
|
*/
|
|
@@ -292,15 +308,17 @@ var _DependencyAccessDeniedException = class _DependencyAccessDeniedException ex
|
|
|
292
308
|
$fault: "client",
|
|
293
309
|
...opts
|
|
294
310
|
});
|
|
295
|
-
this.name = "DependencyAccessDeniedException";
|
|
296
|
-
this.$fault = "client";
|
|
297
311
|
Object.setPrototypeOf(this, _DependencyAccessDeniedException.prototype);
|
|
298
312
|
this.Message = opts.Message;
|
|
299
313
|
}
|
|
300
314
|
};
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
315
|
+
var NoAvailableOrganizationException = class _NoAvailableOrganizationException extends ServiceQuotasServiceException {
|
|
316
|
+
static {
|
|
317
|
+
__name(this, "NoAvailableOrganizationException");
|
|
318
|
+
}
|
|
319
|
+
name = "NoAvailableOrganizationException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
304
322
|
/**
|
|
305
323
|
* @internal
|
|
306
324
|
*/
|
|
@@ -310,15 +328,17 @@ var _NoAvailableOrganizationException = class _NoAvailableOrganizationException
|
|
|
310
328
|
$fault: "client",
|
|
311
329
|
...opts
|
|
312
330
|
});
|
|
313
|
-
this.name = "NoAvailableOrganizationException";
|
|
314
|
-
this.$fault = "client";
|
|
315
331
|
Object.setPrototypeOf(this, _NoAvailableOrganizationException.prototype);
|
|
316
332
|
this.Message = opts.Message;
|
|
317
333
|
}
|
|
318
334
|
};
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
335
|
+
var OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException {
|
|
336
|
+
static {
|
|
337
|
+
__name(this, "OrganizationNotInAllFeaturesModeException");
|
|
338
|
+
}
|
|
339
|
+
name = "OrganizationNotInAllFeaturesModeException";
|
|
340
|
+
$fault = "client";
|
|
341
|
+
Message;
|
|
322
342
|
/**
|
|
323
343
|
* @internal
|
|
324
344
|
*/
|
|
@@ -328,15 +348,17 @@ var _OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeat
|
|
|
328
348
|
$fault: "client",
|
|
329
349
|
...opts
|
|
330
350
|
});
|
|
331
|
-
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
332
|
-
this.$fault = "client";
|
|
333
351
|
Object.setPrototypeOf(this, _OrganizationNotInAllFeaturesModeException.prototype);
|
|
334
352
|
this.Message = opts.Message;
|
|
335
353
|
}
|
|
336
354
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
355
|
+
var ServiceException = class _ServiceException extends ServiceQuotasServiceException {
|
|
356
|
+
static {
|
|
357
|
+
__name(this, "ServiceException");
|
|
358
|
+
}
|
|
359
|
+
name = "ServiceException";
|
|
360
|
+
$fault = "server";
|
|
361
|
+
Message;
|
|
340
362
|
/**
|
|
341
363
|
* @internal
|
|
342
364
|
*/
|
|
@@ -346,15 +368,17 @@ var _ServiceException = class _ServiceException extends ServiceQuotasServiceExce
|
|
|
346
368
|
$fault: "server",
|
|
347
369
|
...opts
|
|
348
370
|
});
|
|
349
|
-
this.name = "ServiceException";
|
|
350
|
-
this.$fault = "server";
|
|
351
371
|
Object.setPrototypeOf(this, _ServiceException.prototype);
|
|
352
372
|
this.Message = opts.Message;
|
|
353
373
|
}
|
|
354
374
|
};
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
375
|
+
var TemplatesNotAvailableInRegionException = class _TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException {
|
|
376
|
+
static {
|
|
377
|
+
__name(this, "TemplatesNotAvailableInRegionException");
|
|
378
|
+
}
|
|
379
|
+
name = "TemplatesNotAvailableInRegionException";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
Message;
|
|
358
382
|
/**
|
|
359
383
|
* @internal
|
|
360
384
|
*/
|
|
@@ -364,15 +388,17 @@ var _TemplatesNotAvailableInRegionException = class _TemplatesNotAvailableInRegi
|
|
|
364
388
|
$fault: "client",
|
|
365
389
|
...opts
|
|
366
390
|
});
|
|
367
|
-
this.name = "TemplatesNotAvailableInRegionException";
|
|
368
|
-
this.$fault = "client";
|
|
369
391
|
Object.setPrototypeOf(this, _TemplatesNotAvailableInRegionException.prototype);
|
|
370
392
|
this.Message = opts.Message;
|
|
371
393
|
}
|
|
372
394
|
};
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
395
|
+
var TooManyRequestsException = class _TooManyRequestsException extends ServiceQuotasServiceException {
|
|
396
|
+
static {
|
|
397
|
+
__name(this, "TooManyRequestsException");
|
|
398
|
+
}
|
|
399
|
+
name = "TooManyRequestsException";
|
|
400
|
+
$fault = "client";
|
|
401
|
+
Message;
|
|
376
402
|
/**
|
|
377
403
|
* @internal
|
|
378
404
|
*/
|
|
@@ -382,15 +408,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends ServiceQ
|
|
|
382
408
|
$fault: "client",
|
|
383
409
|
...opts
|
|
384
410
|
});
|
|
385
|
-
this.name = "TooManyRequestsException";
|
|
386
|
-
this.$fault = "client";
|
|
387
411
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
388
412
|
this.Message = opts.Message;
|
|
389
413
|
}
|
|
390
414
|
};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
415
|
+
var IllegalArgumentException = class _IllegalArgumentException extends ServiceQuotasServiceException {
|
|
416
|
+
static {
|
|
417
|
+
__name(this, "IllegalArgumentException");
|
|
418
|
+
}
|
|
419
|
+
name = "IllegalArgumentException";
|
|
420
|
+
$fault = "client";
|
|
421
|
+
Message;
|
|
394
422
|
/**
|
|
395
423
|
* @internal
|
|
396
424
|
*/
|
|
@@ -400,15 +428,17 @@ var _IllegalArgumentException = class _IllegalArgumentException extends ServiceQ
|
|
|
400
428
|
$fault: "client",
|
|
401
429
|
...opts
|
|
402
430
|
});
|
|
403
|
-
this.name = "IllegalArgumentException";
|
|
404
|
-
this.$fault = "client";
|
|
405
431
|
Object.setPrototypeOf(this, _IllegalArgumentException.prototype);
|
|
406
432
|
this.Message = opts.Message;
|
|
407
433
|
}
|
|
408
434
|
};
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
435
|
+
var NoSuchResourceException = class _NoSuchResourceException extends ServiceQuotasServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "NoSuchResourceException");
|
|
438
|
+
}
|
|
439
|
+
name = "NoSuchResourceException";
|
|
440
|
+
$fault = "client";
|
|
441
|
+
Message;
|
|
412
442
|
/**
|
|
413
443
|
* @internal
|
|
414
444
|
*/
|
|
@@ -418,15 +448,17 @@ var _NoSuchResourceException = class _NoSuchResourceException extends ServiceQuo
|
|
|
418
448
|
$fault: "client",
|
|
419
449
|
...opts
|
|
420
450
|
});
|
|
421
|
-
this.name = "NoSuchResourceException";
|
|
422
|
-
this.$fault = "client";
|
|
423
451
|
Object.setPrototypeOf(this, _NoSuchResourceException.prototype);
|
|
424
452
|
this.Message = opts.Message;
|
|
425
453
|
}
|
|
426
454
|
};
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
455
|
+
var ServiceQuotaTemplateNotInUseException = class _ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException {
|
|
456
|
+
static {
|
|
457
|
+
__name(this, "ServiceQuotaTemplateNotInUseException");
|
|
458
|
+
}
|
|
459
|
+
name = "ServiceQuotaTemplateNotInUseException";
|
|
460
|
+
$fault = "client";
|
|
461
|
+
Message;
|
|
430
462
|
/**
|
|
431
463
|
* @internal
|
|
432
464
|
*/
|
|
@@ -436,14 +468,10 @@ var _ServiceQuotaTemplateNotInUseException = class _ServiceQuotaTemplateNotInUse
|
|
|
436
468
|
$fault: "client",
|
|
437
469
|
...opts
|
|
438
470
|
});
|
|
439
|
-
this.name = "ServiceQuotaTemplateNotInUseException";
|
|
440
|
-
this.$fault = "client";
|
|
441
471
|
Object.setPrototypeOf(this, _ServiceQuotaTemplateNotInUseException.prototype);
|
|
442
472
|
this.Message = opts.Message;
|
|
443
473
|
}
|
|
444
474
|
};
|
|
445
|
-
__name(_ServiceQuotaTemplateNotInUseException, "ServiceQuotaTemplateNotInUseException");
|
|
446
|
-
var ServiceQuotaTemplateNotInUseException = _ServiceQuotaTemplateNotInUseException;
|
|
447
475
|
var ErrorCode = {
|
|
448
476
|
DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
|
|
449
477
|
DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
|
|
@@ -476,7 +504,13 @@ var RequestStatus = {
|
|
|
476
504
|
NOT_APPROVED: "NOT_APPROVED",
|
|
477
505
|
PENDING: "PENDING"
|
|
478
506
|
};
|
|
479
|
-
var
|
|
507
|
+
var InvalidPaginationTokenException = class _InvalidPaginationTokenException extends ServiceQuotasServiceException {
|
|
508
|
+
static {
|
|
509
|
+
__name(this, "InvalidPaginationTokenException");
|
|
510
|
+
}
|
|
511
|
+
name = "InvalidPaginationTokenException";
|
|
512
|
+
$fault = "client";
|
|
513
|
+
Message;
|
|
480
514
|
/**
|
|
481
515
|
* @internal
|
|
482
516
|
*/
|
|
@@ -486,15 +520,17 @@ var _InvalidPaginationTokenException = class _InvalidPaginationTokenException ex
|
|
|
486
520
|
$fault: "client",
|
|
487
521
|
...opts
|
|
488
522
|
});
|
|
489
|
-
this.name = "InvalidPaginationTokenException";
|
|
490
|
-
this.$fault = "client";
|
|
491
523
|
Object.setPrototypeOf(this, _InvalidPaginationTokenException.prototype);
|
|
492
524
|
this.Message = opts.Message;
|
|
493
525
|
}
|
|
494
526
|
};
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
527
|
+
var InvalidResourceStateException = class _InvalidResourceStateException extends ServiceQuotasServiceException {
|
|
528
|
+
static {
|
|
529
|
+
__name(this, "InvalidResourceStateException");
|
|
530
|
+
}
|
|
531
|
+
name = "InvalidResourceStateException";
|
|
532
|
+
$fault = "client";
|
|
533
|
+
Message;
|
|
498
534
|
/**
|
|
499
535
|
* @internal
|
|
500
536
|
*/
|
|
@@ -504,15 +540,17 @@ var _InvalidResourceStateException = class _InvalidResourceStateException extend
|
|
|
504
540
|
$fault: "client",
|
|
505
541
|
...opts
|
|
506
542
|
});
|
|
507
|
-
this.name = "InvalidResourceStateException";
|
|
508
|
-
this.$fault = "client";
|
|
509
543
|
Object.setPrototypeOf(this, _InvalidResourceStateException.prototype);
|
|
510
544
|
this.Message = opts.Message;
|
|
511
545
|
}
|
|
512
546
|
};
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
547
|
+
var QuotaExceededException = class _QuotaExceededException extends ServiceQuotasServiceException {
|
|
548
|
+
static {
|
|
549
|
+
__name(this, "QuotaExceededException");
|
|
550
|
+
}
|
|
551
|
+
name = "QuotaExceededException";
|
|
552
|
+
$fault = "client";
|
|
553
|
+
Message;
|
|
516
554
|
/**
|
|
517
555
|
* @internal
|
|
518
556
|
*/
|
|
@@ -522,15 +560,17 @@ var _QuotaExceededException = class _QuotaExceededException extends ServiceQuota
|
|
|
522
560
|
$fault: "client",
|
|
523
561
|
...opts
|
|
524
562
|
});
|
|
525
|
-
this.name = "QuotaExceededException";
|
|
526
|
-
this.$fault = "client";
|
|
527
563
|
Object.setPrototypeOf(this, _QuotaExceededException.prototype);
|
|
528
564
|
this.Message = opts.Message;
|
|
529
565
|
}
|
|
530
566
|
};
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
567
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends ServiceQuotasServiceException {
|
|
568
|
+
static {
|
|
569
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
570
|
+
}
|
|
571
|
+
name = "ResourceAlreadyExistsException";
|
|
572
|
+
$fault = "client";
|
|
573
|
+
Message;
|
|
534
574
|
/**
|
|
535
575
|
* @internal
|
|
536
576
|
*/
|
|
@@ -540,15 +580,17 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
540
580
|
$fault: "client",
|
|
541
581
|
...opts
|
|
542
582
|
});
|
|
543
|
-
this.name = "ResourceAlreadyExistsException";
|
|
544
|
-
this.$fault = "client";
|
|
545
583
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
546
584
|
this.Message = opts.Message;
|
|
547
585
|
}
|
|
548
586
|
};
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
587
|
+
var TagPolicyViolationException = class _TagPolicyViolationException extends ServiceQuotasServiceException {
|
|
588
|
+
static {
|
|
589
|
+
__name(this, "TagPolicyViolationException");
|
|
590
|
+
}
|
|
591
|
+
name = "TagPolicyViolationException";
|
|
592
|
+
$fault = "client";
|
|
593
|
+
Message;
|
|
552
594
|
/**
|
|
553
595
|
* @internal
|
|
554
596
|
*/
|
|
@@ -558,15 +600,17 @@ var _TagPolicyViolationException = class _TagPolicyViolationException extends Se
|
|
|
558
600
|
$fault: "client",
|
|
559
601
|
...opts
|
|
560
602
|
});
|
|
561
|
-
this.name = "TagPolicyViolationException";
|
|
562
|
-
this.$fault = "client";
|
|
563
603
|
Object.setPrototypeOf(this, _TagPolicyViolationException.prototype);
|
|
564
604
|
this.Message = opts.Message;
|
|
565
605
|
}
|
|
566
606
|
};
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
607
|
+
var TooManyTagsException = class _TooManyTagsException extends ServiceQuotasServiceException {
|
|
608
|
+
static {
|
|
609
|
+
__name(this, "TooManyTagsException");
|
|
610
|
+
}
|
|
611
|
+
name = "TooManyTagsException";
|
|
612
|
+
$fault = "client";
|
|
613
|
+
Message;
|
|
570
614
|
/**
|
|
571
615
|
* @internal
|
|
572
616
|
*/
|
|
@@ -576,14 +620,10 @@ var _TooManyTagsException = class _TooManyTagsException extends ServiceQuotasSer
|
|
|
576
620
|
$fault: "client",
|
|
577
621
|
...opts
|
|
578
622
|
});
|
|
579
|
-
this.name = "TooManyTagsException";
|
|
580
|
-
this.$fault = "client";
|
|
581
623
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
582
624
|
this.Message = opts.Message;
|
|
583
625
|
}
|
|
584
626
|
};
|
|
585
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
586
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
587
627
|
|
|
588
628
|
// src/protocols/Aws_json1_1.ts
|
|
589
629
|
var se_AssociateServiceQuotaTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1345,267 +1385,286 @@ function sharedHeaders(operation) {
|
|
|
1345
1385
|
__name(sharedHeaders, "sharedHeaders");
|
|
1346
1386
|
|
|
1347
1387
|
// src/commands/AssociateServiceQuotaTemplateCommand.ts
|
|
1348
|
-
var
|
|
1388
|
+
var AssociateServiceQuotaTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1349
1389
|
return [
|
|
1350
1390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1351
1391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1352
1392
|
];
|
|
1353
1393
|
}).s("ServiceQuotasV20190624", "AssociateServiceQuotaTemplate", {}).n("ServiceQuotasClient", "AssociateServiceQuotaTemplateCommand").f(void 0, void 0).ser(se_AssociateServiceQuotaTemplateCommand).de(de_AssociateServiceQuotaTemplateCommand).build() {
|
|
1394
|
+
static {
|
|
1395
|
+
__name(this, "AssociateServiceQuotaTemplateCommand");
|
|
1396
|
+
}
|
|
1354
1397
|
};
|
|
1355
|
-
__name(_AssociateServiceQuotaTemplateCommand, "AssociateServiceQuotaTemplateCommand");
|
|
1356
|
-
var AssociateServiceQuotaTemplateCommand = _AssociateServiceQuotaTemplateCommand;
|
|
1357
1398
|
|
|
1358
1399
|
// src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts
|
|
1359
1400
|
|
|
1360
1401
|
|
|
1361
1402
|
|
|
1362
|
-
var
|
|
1403
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1363
1404
|
return [
|
|
1364
1405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1365
1406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1366
1407
|
];
|
|
1367
1408
|
}).s("ServiceQuotasV20190624", "DeleteServiceQuotaIncreaseRequestFromTemplate", {}).n("ServiceQuotasClient", "DeleteServiceQuotaIncreaseRequestFromTemplateCommand").f(void 0, void 0).ser(se_DeleteServiceQuotaIncreaseRequestFromTemplateCommand).de(de_DeleteServiceQuotaIncreaseRequestFromTemplateCommand).build() {
|
|
1409
|
+
static {
|
|
1410
|
+
__name(this, "DeleteServiceQuotaIncreaseRequestFromTemplateCommand");
|
|
1411
|
+
}
|
|
1368
1412
|
};
|
|
1369
|
-
__name(_DeleteServiceQuotaIncreaseRequestFromTemplateCommand, "DeleteServiceQuotaIncreaseRequestFromTemplateCommand");
|
|
1370
|
-
var DeleteServiceQuotaIncreaseRequestFromTemplateCommand = _DeleteServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1371
1413
|
|
|
1372
1414
|
// src/commands/DisassociateServiceQuotaTemplateCommand.ts
|
|
1373
1415
|
|
|
1374
1416
|
|
|
1375
1417
|
|
|
1376
|
-
var
|
|
1418
|
+
var DisassociateServiceQuotaTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1377
1419
|
return [
|
|
1378
1420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1379
1421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1380
1422
|
];
|
|
1381
1423
|
}).s("ServiceQuotasV20190624", "DisassociateServiceQuotaTemplate", {}).n("ServiceQuotasClient", "DisassociateServiceQuotaTemplateCommand").f(void 0, void 0).ser(se_DisassociateServiceQuotaTemplateCommand).de(de_DisassociateServiceQuotaTemplateCommand).build() {
|
|
1424
|
+
static {
|
|
1425
|
+
__name(this, "DisassociateServiceQuotaTemplateCommand");
|
|
1426
|
+
}
|
|
1382
1427
|
};
|
|
1383
|
-
__name(_DisassociateServiceQuotaTemplateCommand, "DisassociateServiceQuotaTemplateCommand");
|
|
1384
|
-
var DisassociateServiceQuotaTemplateCommand = _DisassociateServiceQuotaTemplateCommand;
|
|
1385
1428
|
|
|
1386
1429
|
// src/commands/GetAssociationForServiceQuotaTemplateCommand.ts
|
|
1387
1430
|
|
|
1388
1431
|
|
|
1389
1432
|
|
|
1390
|
-
var
|
|
1433
|
+
var GetAssociationForServiceQuotaTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1391
1434
|
return [
|
|
1392
1435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1393
1436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1394
1437
|
];
|
|
1395
1438
|
}).s("ServiceQuotasV20190624", "GetAssociationForServiceQuotaTemplate", {}).n("ServiceQuotasClient", "GetAssociationForServiceQuotaTemplateCommand").f(void 0, void 0).ser(se_GetAssociationForServiceQuotaTemplateCommand).de(de_GetAssociationForServiceQuotaTemplateCommand).build() {
|
|
1439
|
+
static {
|
|
1440
|
+
__name(this, "GetAssociationForServiceQuotaTemplateCommand");
|
|
1441
|
+
}
|
|
1396
1442
|
};
|
|
1397
|
-
__name(_GetAssociationForServiceQuotaTemplateCommand, "GetAssociationForServiceQuotaTemplateCommand");
|
|
1398
|
-
var GetAssociationForServiceQuotaTemplateCommand = _GetAssociationForServiceQuotaTemplateCommand;
|
|
1399
1443
|
|
|
1400
1444
|
// src/commands/GetAWSDefaultServiceQuotaCommand.ts
|
|
1401
1445
|
|
|
1402
1446
|
|
|
1403
1447
|
|
|
1404
|
-
var
|
|
1448
|
+
var GetAWSDefaultServiceQuotaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1405
1449
|
return [
|
|
1406
1450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1407
1451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1408
1452
|
];
|
|
1409
1453
|
}).s("ServiceQuotasV20190624", "GetAWSDefaultServiceQuota", {}).n("ServiceQuotasClient", "GetAWSDefaultServiceQuotaCommand").f(void 0, void 0).ser(se_GetAWSDefaultServiceQuotaCommand).de(de_GetAWSDefaultServiceQuotaCommand).build() {
|
|
1454
|
+
static {
|
|
1455
|
+
__name(this, "GetAWSDefaultServiceQuotaCommand");
|
|
1456
|
+
}
|
|
1410
1457
|
};
|
|
1411
|
-
__name(_GetAWSDefaultServiceQuotaCommand, "GetAWSDefaultServiceQuotaCommand");
|
|
1412
|
-
var GetAWSDefaultServiceQuotaCommand = _GetAWSDefaultServiceQuotaCommand;
|
|
1413
1458
|
|
|
1414
1459
|
// src/commands/GetRequestedServiceQuotaChangeCommand.ts
|
|
1415
1460
|
|
|
1416
1461
|
|
|
1417
1462
|
|
|
1418
|
-
var
|
|
1463
|
+
var GetRequestedServiceQuotaChangeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1419
1464
|
return [
|
|
1420
1465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1421
1466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1422
1467
|
];
|
|
1423
1468
|
}).s("ServiceQuotasV20190624", "GetRequestedServiceQuotaChange", {}).n("ServiceQuotasClient", "GetRequestedServiceQuotaChangeCommand").f(void 0, void 0).ser(se_GetRequestedServiceQuotaChangeCommand).de(de_GetRequestedServiceQuotaChangeCommand).build() {
|
|
1469
|
+
static {
|
|
1470
|
+
__name(this, "GetRequestedServiceQuotaChangeCommand");
|
|
1471
|
+
}
|
|
1424
1472
|
};
|
|
1425
|
-
__name(_GetRequestedServiceQuotaChangeCommand, "GetRequestedServiceQuotaChangeCommand");
|
|
1426
|
-
var GetRequestedServiceQuotaChangeCommand = _GetRequestedServiceQuotaChangeCommand;
|
|
1427
1473
|
|
|
1428
1474
|
// src/commands/GetServiceQuotaCommand.ts
|
|
1429
1475
|
|
|
1430
1476
|
|
|
1431
1477
|
|
|
1432
|
-
var
|
|
1478
|
+
var GetServiceQuotaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1433
1479
|
return [
|
|
1434
1480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1435
1481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1436
1482
|
];
|
|
1437
1483
|
}).s("ServiceQuotasV20190624", "GetServiceQuota", {}).n("ServiceQuotasClient", "GetServiceQuotaCommand").f(void 0, void 0).ser(se_GetServiceQuotaCommand).de(de_GetServiceQuotaCommand).build() {
|
|
1484
|
+
static {
|
|
1485
|
+
__name(this, "GetServiceQuotaCommand");
|
|
1486
|
+
}
|
|
1438
1487
|
};
|
|
1439
|
-
__name(_GetServiceQuotaCommand, "GetServiceQuotaCommand");
|
|
1440
|
-
var GetServiceQuotaCommand = _GetServiceQuotaCommand;
|
|
1441
1488
|
|
|
1442
1489
|
// src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts
|
|
1443
1490
|
|
|
1444
1491
|
|
|
1445
1492
|
|
|
1446
|
-
var
|
|
1493
|
+
var GetServiceQuotaIncreaseRequestFromTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1447
1494
|
return [
|
|
1448
1495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1449
1496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1450
1497
|
];
|
|
1451
1498
|
}).s("ServiceQuotasV20190624", "GetServiceQuotaIncreaseRequestFromTemplate", {}).n("ServiceQuotasClient", "GetServiceQuotaIncreaseRequestFromTemplateCommand").f(void 0, void 0).ser(se_GetServiceQuotaIncreaseRequestFromTemplateCommand).de(de_GetServiceQuotaIncreaseRequestFromTemplateCommand).build() {
|
|
1499
|
+
static {
|
|
1500
|
+
__name(this, "GetServiceQuotaIncreaseRequestFromTemplateCommand");
|
|
1501
|
+
}
|
|
1452
1502
|
};
|
|
1453
|
-
__name(_GetServiceQuotaIncreaseRequestFromTemplateCommand, "GetServiceQuotaIncreaseRequestFromTemplateCommand");
|
|
1454
|
-
var GetServiceQuotaIncreaseRequestFromTemplateCommand = _GetServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1455
1503
|
|
|
1456
1504
|
// src/commands/ListAWSDefaultServiceQuotasCommand.ts
|
|
1457
1505
|
|
|
1458
1506
|
|
|
1459
1507
|
|
|
1460
|
-
var
|
|
1508
|
+
var ListAWSDefaultServiceQuotasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1461
1509
|
return [
|
|
1462
1510
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1463
1511
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1464
1512
|
];
|
|
1465
1513
|
}).s("ServiceQuotasV20190624", "ListAWSDefaultServiceQuotas", {}).n("ServiceQuotasClient", "ListAWSDefaultServiceQuotasCommand").f(void 0, void 0).ser(se_ListAWSDefaultServiceQuotasCommand).de(de_ListAWSDefaultServiceQuotasCommand).build() {
|
|
1514
|
+
static {
|
|
1515
|
+
__name(this, "ListAWSDefaultServiceQuotasCommand");
|
|
1516
|
+
}
|
|
1466
1517
|
};
|
|
1467
|
-
__name(_ListAWSDefaultServiceQuotasCommand, "ListAWSDefaultServiceQuotasCommand");
|
|
1468
|
-
var ListAWSDefaultServiceQuotasCommand = _ListAWSDefaultServiceQuotasCommand;
|
|
1469
1518
|
|
|
1470
1519
|
// src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts
|
|
1471
1520
|
|
|
1472
1521
|
|
|
1473
1522
|
|
|
1474
|
-
var
|
|
1523
|
+
var ListRequestedServiceQuotaChangeHistoryByQuotaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1475
1524
|
return [
|
|
1476
1525
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1477
1526
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1478
1527
|
];
|
|
1479
1528
|
}).s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistoryByQuota", {}).n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryByQuotaCommand").f(void 0, void 0).ser(se_ListRequestedServiceQuotaChangeHistoryByQuotaCommand).de(de_ListRequestedServiceQuotaChangeHistoryByQuotaCommand).build() {
|
|
1529
|
+
static {
|
|
1530
|
+
__name(this, "ListRequestedServiceQuotaChangeHistoryByQuotaCommand");
|
|
1531
|
+
}
|
|
1480
1532
|
};
|
|
1481
|
-
__name(_ListRequestedServiceQuotaChangeHistoryByQuotaCommand, "ListRequestedServiceQuotaChangeHistoryByQuotaCommand");
|
|
1482
|
-
var ListRequestedServiceQuotaChangeHistoryByQuotaCommand = _ListRequestedServiceQuotaChangeHistoryByQuotaCommand;
|
|
1483
1533
|
|
|
1484
1534
|
// src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts
|
|
1485
1535
|
|
|
1486
1536
|
|
|
1487
1537
|
|
|
1488
|
-
var
|
|
1538
|
+
var ListRequestedServiceQuotaChangeHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1489
1539
|
return [
|
|
1490
1540
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1491
1541
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1492
1542
|
];
|
|
1493
1543
|
}).s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistory", {}).n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryCommand").f(void 0, void 0).ser(se_ListRequestedServiceQuotaChangeHistoryCommand).de(de_ListRequestedServiceQuotaChangeHistoryCommand).build() {
|
|
1544
|
+
static {
|
|
1545
|
+
__name(this, "ListRequestedServiceQuotaChangeHistoryCommand");
|
|
1546
|
+
}
|
|
1494
1547
|
};
|
|
1495
|
-
__name(_ListRequestedServiceQuotaChangeHistoryCommand, "ListRequestedServiceQuotaChangeHistoryCommand");
|
|
1496
|
-
var ListRequestedServiceQuotaChangeHistoryCommand = _ListRequestedServiceQuotaChangeHistoryCommand;
|
|
1497
1548
|
|
|
1498
1549
|
// src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts
|
|
1499
1550
|
|
|
1500
1551
|
|
|
1501
1552
|
|
|
1502
|
-
var
|
|
1553
|
+
var ListServiceQuotaIncreaseRequestsInTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1503
1554
|
return [
|
|
1504
1555
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1505
1556
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1506
1557
|
];
|
|
1507
1558
|
}).s("ServiceQuotasV20190624", "ListServiceQuotaIncreaseRequestsInTemplate", {}).n("ServiceQuotasClient", "ListServiceQuotaIncreaseRequestsInTemplateCommand").f(void 0, void 0).ser(se_ListServiceQuotaIncreaseRequestsInTemplateCommand).de(de_ListServiceQuotaIncreaseRequestsInTemplateCommand).build() {
|
|
1559
|
+
static {
|
|
1560
|
+
__name(this, "ListServiceQuotaIncreaseRequestsInTemplateCommand");
|
|
1561
|
+
}
|
|
1508
1562
|
};
|
|
1509
|
-
__name(_ListServiceQuotaIncreaseRequestsInTemplateCommand, "ListServiceQuotaIncreaseRequestsInTemplateCommand");
|
|
1510
|
-
var ListServiceQuotaIncreaseRequestsInTemplateCommand = _ListServiceQuotaIncreaseRequestsInTemplateCommand;
|
|
1511
1563
|
|
|
1512
1564
|
// src/commands/ListServiceQuotasCommand.ts
|
|
1513
1565
|
|
|
1514
1566
|
|
|
1515
1567
|
|
|
1516
|
-
var
|
|
1568
|
+
var ListServiceQuotasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1517
1569
|
return [
|
|
1518
1570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1519
1571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1520
1572
|
];
|
|
1521
1573
|
}).s("ServiceQuotasV20190624", "ListServiceQuotas", {}).n("ServiceQuotasClient", "ListServiceQuotasCommand").f(void 0, void 0).ser(se_ListServiceQuotasCommand).de(de_ListServiceQuotasCommand).build() {
|
|
1574
|
+
static {
|
|
1575
|
+
__name(this, "ListServiceQuotasCommand");
|
|
1576
|
+
}
|
|
1522
1577
|
};
|
|
1523
|
-
__name(_ListServiceQuotasCommand, "ListServiceQuotasCommand");
|
|
1524
|
-
var ListServiceQuotasCommand = _ListServiceQuotasCommand;
|
|
1525
1578
|
|
|
1526
1579
|
// src/commands/ListServicesCommand.ts
|
|
1527
1580
|
|
|
1528
1581
|
|
|
1529
1582
|
|
|
1530
|
-
var
|
|
1583
|
+
var ListServicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1531
1584
|
return [
|
|
1532
1585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1533
1586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1534
1587
|
];
|
|
1535
1588
|
}).s("ServiceQuotasV20190624", "ListServices", {}).n("ServiceQuotasClient", "ListServicesCommand").f(void 0, void 0).ser(se_ListServicesCommand).de(de_ListServicesCommand).build() {
|
|
1589
|
+
static {
|
|
1590
|
+
__name(this, "ListServicesCommand");
|
|
1591
|
+
}
|
|
1536
1592
|
};
|
|
1537
|
-
__name(_ListServicesCommand, "ListServicesCommand");
|
|
1538
|
-
var ListServicesCommand = _ListServicesCommand;
|
|
1539
1593
|
|
|
1540
1594
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1541
1595
|
|
|
1542
1596
|
|
|
1543
1597
|
|
|
1544
|
-
var
|
|
1598
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1545
1599
|
return [
|
|
1546
1600
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1547
1601
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1548
1602
|
];
|
|
1549
1603
|
}).s("ServiceQuotasV20190624", "ListTagsForResource", {}).n("ServiceQuotasClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1604
|
+
static {
|
|
1605
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1606
|
+
}
|
|
1550
1607
|
};
|
|
1551
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1552
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1553
1608
|
|
|
1554
1609
|
// src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts
|
|
1555
1610
|
|
|
1556
1611
|
|
|
1557
1612
|
|
|
1558
|
-
var
|
|
1613
|
+
var PutServiceQuotaIncreaseRequestIntoTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1559
1614
|
return [
|
|
1560
1615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1561
1616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1562
1617
|
];
|
|
1563
1618
|
}).s("ServiceQuotasV20190624", "PutServiceQuotaIncreaseRequestIntoTemplate", {}).n("ServiceQuotasClient", "PutServiceQuotaIncreaseRequestIntoTemplateCommand").f(void 0, void 0).ser(se_PutServiceQuotaIncreaseRequestIntoTemplateCommand).de(de_PutServiceQuotaIncreaseRequestIntoTemplateCommand).build() {
|
|
1619
|
+
static {
|
|
1620
|
+
__name(this, "PutServiceQuotaIncreaseRequestIntoTemplateCommand");
|
|
1621
|
+
}
|
|
1564
1622
|
};
|
|
1565
|
-
__name(_PutServiceQuotaIncreaseRequestIntoTemplateCommand, "PutServiceQuotaIncreaseRequestIntoTemplateCommand");
|
|
1566
|
-
var PutServiceQuotaIncreaseRequestIntoTemplateCommand = _PutServiceQuotaIncreaseRequestIntoTemplateCommand;
|
|
1567
1623
|
|
|
1568
1624
|
// src/commands/RequestServiceQuotaIncreaseCommand.ts
|
|
1569
1625
|
|
|
1570
1626
|
|
|
1571
1627
|
|
|
1572
|
-
var
|
|
1628
|
+
var RequestServiceQuotaIncreaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1573
1629
|
return [
|
|
1574
1630
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1575
1631
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1576
1632
|
];
|
|
1577
1633
|
}).s("ServiceQuotasV20190624", "RequestServiceQuotaIncrease", {}).n("ServiceQuotasClient", "RequestServiceQuotaIncreaseCommand").f(void 0, void 0).ser(se_RequestServiceQuotaIncreaseCommand).de(de_RequestServiceQuotaIncreaseCommand).build() {
|
|
1634
|
+
static {
|
|
1635
|
+
__name(this, "RequestServiceQuotaIncreaseCommand");
|
|
1636
|
+
}
|
|
1578
1637
|
};
|
|
1579
|
-
__name(_RequestServiceQuotaIncreaseCommand, "RequestServiceQuotaIncreaseCommand");
|
|
1580
|
-
var RequestServiceQuotaIncreaseCommand = _RequestServiceQuotaIncreaseCommand;
|
|
1581
1638
|
|
|
1582
1639
|
// src/commands/TagResourceCommand.ts
|
|
1583
1640
|
|
|
1584
1641
|
|
|
1585
1642
|
|
|
1586
|
-
var
|
|
1643
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1587
1644
|
return [
|
|
1588
1645
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1589
1646
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1590
1647
|
];
|
|
1591
1648
|
}).s("ServiceQuotasV20190624", "TagResource", {}).n("ServiceQuotasClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1649
|
+
static {
|
|
1650
|
+
__name(this, "TagResourceCommand");
|
|
1651
|
+
}
|
|
1592
1652
|
};
|
|
1593
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1594
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1595
1653
|
|
|
1596
1654
|
// src/commands/UntagResourceCommand.ts
|
|
1597
1655
|
|
|
1598
1656
|
|
|
1599
1657
|
|
|
1600
|
-
var
|
|
1658
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1601
1659
|
return [
|
|
1602
1660
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1603
1661
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1604
1662
|
];
|
|
1605
1663
|
}).s("ServiceQuotasV20190624", "UntagResource", {}).n("ServiceQuotasClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1664
|
+
static {
|
|
1665
|
+
__name(this, "UntagResourceCommand");
|
|
1666
|
+
}
|
|
1606
1667
|
};
|
|
1607
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1608
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1609
1668
|
|
|
1610
1669
|
// src/ServiceQuotas.ts
|
|
1611
1670
|
var commands = {
|
|
@@ -1629,10 +1688,11 @@ var commands = {
|
|
|
1629
1688
|
TagResourceCommand,
|
|
1630
1689
|
UntagResourceCommand
|
|
1631
1690
|
};
|
|
1632
|
-
var
|
|
1691
|
+
var ServiceQuotas = class extends ServiceQuotasClient {
|
|
1692
|
+
static {
|
|
1693
|
+
__name(this, "ServiceQuotas");
|
|
1694
|
+
}
|
|
1633
1695
|
};
|
|
1634
|
-
__name(_ServiceQuotas, "ServiceQuotas");
|
|
1635
|
-
var ServiceQuotas = _ServiceQuotas;
|
|
1636
1696
|
(0, import_smithy_client.createAggregatedClient)(commands, ServiceQuotas);
|
|
1637
1697
|
|
|
1638
1698
|
// src/pagination/ListAWSDefaultServiceQuotasPaginator.ts
|