@aws-sdk/client-service-quotas 3.926.0 → 3.928.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 +922 -1080
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/ServiceQuotasClient.js +2 -0
- package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +3 -9
- package/dist-es/commands/CreateSupportCaseCommand.js +3 -9
- package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
- package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +3 -9
- package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +3 -9
- package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +3 -9
- package/dist-es/commands/GetAutoManagementConfigurationCommand.js +3 -9
- package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +3 -9
- package/dist-es/commands/GetServiceQuotaCommand.js +3 -9
- package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
- package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +3 -9
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +3 -9
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +3 -9
- package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +3 -9
- package/dist-es/commands/ListServiceQuotasCommand.js +3 -9
- package/dist-es/commands/ListServicesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +3 -9
- package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +3 -9
- package/dist-es/commands/StartAutoManagementCommand.js +3 -9
- package/dist-es/commands/StopAutoManagementCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAutoManagementCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +826 -0
- package/dist-types/ServiceQuotasClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +114 -0
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +120 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -865
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -218
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -293
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class ServiceQuotasClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class ServiceQuotasClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class ServiceQuotasServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let ServiceQuotasServiceException$1 = 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
|
-
class AccessDeniedException extends ServiceQuotasServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends ServiceQuotasServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,13 +130,13 @@ class AccessDeniedException extends ServiceQuotasServiceException {
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
};
|
|
134
134
|
const AppliedLevelEnum = {
|
|
135
135
|
ACCOUNT: "ACCOUNT",
|
|
136
136
|
ALL: "ALL",
|
|
137
137
|
RESOURCE: "RESOURCE",
|
|
138
138
|
};
|
|
139
|
-
class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException {
|
|
139
|
+
let AWSServiceAccessNotEnabledException$1 = class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException$1 {
|
|
140
140
|
name = "AWSServiceAccessNotEnabledException";
|
|
141
141
|
$fault = "client";
|
|
142
142
|
Message;
|
|
@@ -149,8 +149,8 @@ class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException
|
|
|
149
149
|
Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
|
|
150
150
|
this.Message = opts.Message;
|
|
151
151
|
}
|
|
152
|
-
}
|
|
153
|
-
class DependencyAccessDeniedException extends ServiceQuotasServiceException {
|
|
152
|
+
};
|
|
153
|
+
let DependencyAccessDeniedException$1 = class DependencyAccessDeniedException extends ServiceQuotasServiceException$1 {
|
|
154
154
|
name = "DependencyAccessDeniedException";
|
|
155
155
|
$fault = "client";
|
|
156
156
|
Message;
|
|
@@ -163,8 +163,8 @@ class DependencyAccessDeniedException extends ServiceQuotasServiceException {
|
|
|
163
163
|
Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
|
|
164
164
|
this.Message = opts.Message;
|
|
165
165
|
}
|
|
166
|
-
}
|
|
167
|
-
class NoAvailableOrganizationException extends ServiceQuotasServiceException {
|
|
166
|
+
};
|
|
167
|
+
let NoAvailableOrganizationException$1 = class NoAvailableOrganizationException extends ServiceQuotasServiceException$1 {
|
|
168
168
|
name = "NoAvailableOrganizationException";
|
|
169
169
|
$fault = "client";
|
|
170
170
|
Message;
|
|
@@ -177,8 +177,8 @@ class NoAvailableOrganizationException extends ServiceQuotasServiceException {
|
|
|
177
177
|
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
178
178
|
this.Message = opts.Message;
|
|
179
179
|
}
|
|
180
|
-
}
|
|
181
|
-
class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException {
|
|
180
|
+
};
|
|
181
|
+
let OrganizationNotInAllFeaturesModeException$1 = class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException$1 {
|
|
182
182
|
name = "OrganizationNotInAllFeaturesModeException";
|
|
183
183
|
$fault = "client";
|
|
184
184
|
Message;
|
|
@@ -191,8 +191,8 @@ class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceExce
|
|
|
191
191
|
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
192
192
|
this.Message = opts.Message;
|
|
193
193
|
}
|
|
194
|
-
}
|
|
195
|
-
class ServiceException extends ServiceQuotasServiceException {
|
|
194
|
+
};
|
|
195
|
+
let ServiceException$1 = class ServiceException extends ServiceQuotasServiceException$1 {
|
|
196
196
|
name = "ServiceException";
|
|
197
197
|
$fault = "server";
|
|
198
198
|
Message;
|
|
@@ -205,8 +205,8 @@ class ServiceException extends ServiceQuotasServiceException {
|
|
|
205
205
|
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
206
206
|
this.Message = opts.Message;
|
|
207
207
|
}
|
|
208
|
-
}
|
|
209
|
-
class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException {
|
|
208
|
+
};
|
|
209
|
+
let TemplatesNotAvailableInRegionException$1 = class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException$1 {
|
|
210
210
|
name = "TemplatesNotAvailableInRegionException";
|
|
211
211
|
$fault = "client";
|
|
212
212
|
Message;
|
|
@@ -219,8 +219,8 @@ class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceExcepti
|
|
|
219
219
|
Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
|
|
220
220
|
this.Message = opts.Message;
|
|
221
221
|
}
|
|
222
|
-
}
|
|
223
|
-
class TooManyRequestsException extends ServiceQuotasServiceException {
|
|
222
|
+
};
|
|
223
|
+
let TooManyRequestsException$1 = class TooManyRequestsException extends ServiceQuotasServiceException$1 {
|
|
224
224
|
name = "TooManyRequestsException";
|
|
225
225
|
$fault = "client";
|
|
226
226
|
Message;
|
|
@@ -233,8 +233,8 @@ class TooManyRequestsException extends ServiceQuotasServiceException {
|
|
|
233
233
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
234
234
|
this.Message = opts.Message;
|
|
235
235
|
}
|
|
236
|
-
}
|
|
237
|
-
class IllegalArgumentException extends ServiceQuotasServiceException {
|
|
236
|
+
};
|
|
237
|
+
let IllegalArgumentException$1 = class IllegalArgumentException extends ServiceQuotasServiceException$1 {
|
|
238
238
|
name = "IllegalArgumentException";
|
|
239
239
|
$fault = "client";
|
|
240
240
|
Message;
|
|
@@ -247,8 +247,8 @@ class IllegalArgumentException extends ServiceQuotasServiceException {
|
|
|
247
247
|
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
248
248
|
this.Message = opts.Message;
|
|
249
249
|
}
|
|
250
|
-
}
|
|
251
|
-
class InvalidResourceStateException extends ServiceQuotasServiceException {
|
|
250
|
+
};
|
|
251
|
+
let InvalidResourceStateException$1 = class InvalidResourceStateException extends ServiceQuotasServiceException$1 {
|
|
252
252
|
name = "InvalidResourceStateException";
|
|
253
253
|
$fault = "client";
|
|
254
254
|
Message;
|
|
@@ -261,8 +261,8 @@ class InvalidResourceStateException extends ServiceQuotasServiceException {
|
|
|
261
261
|
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
262
262
|
this.Message = opts.Message;
|
|
263
263
|
}
|
|
264
|
-
}
|
|
265
|
-
class NoSuchResourceException extends ServiceQuotasServiceException {
|
|
264
|
+
};
|
|
265
|
+
let NoSuchResourceException$1 = class NoSuchResourceException extends ServiceQuotasServiceException$1 {
|
|
266
266
|
name = "NoSuchResourceException";
|
|
267
267
|
$fault = "client";
|
|
268
268
|
Message;
|
|
@@ -275,8 +275,8 @@ class NoSuchResourceException extends ServiceQuotasServiceException {
|
|
|
275
275
|
Object.setPrototypeOf(this, NoSuchResourceException.prototype);
|
|
276
276
|
this.Message = opts.Message;
|
|
277
277
|
}
|
|
278
|
-
}
|
|
279
|
-
class ResourceAlreadyExistsException extends ServiceQuotasServiceException {
|
|
278
|
+
};
|
|
279
|
+
let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException extends ServiceQuotasServiceException$1 {
|
|
280
280
|
name = "ResourceAlreadyExistsException";
|
|
281
281
|
$fault = "client";
|
|
282
282
|
Message;
|
|
@@ -289,8 +289,8 @@ class ResourceAlreadyExistsException extends ServiceQuotasServiceException {
|
|
|
289
289
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
290
290
|
this.Message = opts.Message;
|
|
291
291
|
}
|
|
292
|
-
}
|
|
293
|
-
class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException {
|
|
292
|
+
};
|
|
293
|
+
let ServiceQuotaTemplateNotInUseException$1 = class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException$1 {
|
|
294
294
|
name = "ServiceQuotaTemplateNotInUseException";
|
|
295
295
|
$fault = "client";
|
|
296
296
|
Message;
|
|
@@ -303,7 +303,7 @@ class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceExceptio
|
|
|
303
303
|
Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
304
304
|
this.Message = opts.Message;
|
|
305
305
|
}
|
|
306
|
-
}
|
|
306
|
+
};
|
|
307
307
|
const ErrorCode = {
|
|
308
308
|
DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
|
|
309
309
|
DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
|
|
@@ -347,7 +347,7 @@ const RequestStatus = {
|
|
|
347
347
|
NOT_APPROVED: "NOT_APPROVED",
|
|
348
348
|
PENDING: "PENDING",
|
|
349
349
|
};
|
|
350
|
-
class InvalidPaginationTokenException extends ServiceQuotasServiceException {
|
|
350
|
+
let InvalidPaginationTokenException$1 = class InvalidPaginationTokenException extends ServiceQuotasServiceException$1 {
|
|
351
351
|
name = "InvalidPaginationTokenException";
|
|
352
352
|
$fault = "client";
|
|
353
353
|
Message;
|
|
@@ -360,8 +360,8 @@ class InvalidPaginationTokenException extends ServiceQuotasServiceException {
|
|
|
360
360
|
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
361
361
|
this.Message = opts.Message;
|
|
362
362
|
}
|
|
363
|
-
}
|
|
364
|
-
class QuotaExceededException extends ServiceQuotasServiceException {
|
|
363
|
+
};
|
|
364
|
+
let QuotaExceededException$1 = class QuotaExceededException extends ServiceQuotasServiceException$1 {
|
|
365
365
|
name = "QuotaExceededException";
|
|
366
366
|
$fault = "client";
|
|
367
367
|
Message;
|
|
@@ -374,8 +374,8 @@ class QuotaExceededException extends ServiceQuotasServiceException {
|
|
|
374
374
|
Object.setPrototypeOf(this, QuotaExceededException.prototype);
|
|
375
375
|
this.Message = opts.Message;
|
|
376
376
|
}
|
|
377
|
-
}
|
|
378
|
-
class TagPolicyViolationException extends ServiceQuotasServiceException {
|
|
377
|
+
};
|
|
378
|
+
let TagPolicyViolationException$1 = class TagPolicyViolationException extends ServiceQuotasServiceException$1 {
|
|
379
379
|
name = "TagPolicyViolationException";
|
|
380
380
|
$fault = "client";
|
|
381
381
|
Message;
|
|
@@ -388,8 +388,8 @@ class TagPolicyViolationException extends ServiceQuotasServiceException {
|
|
|
388
388
|
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
389
389
|
this.Message = opts.Message;
|
|
390
390
|
}
|
|
391
|
-
}
|
|
392
|
-
class TooManyTagsException extends ServiceQuotasServiceException {
|
|
391
|
+
};
|
|
392
|
+
let TooManyTagsException$1 = class TooManyTagsException extends ServiceQuotasServiceException$1 {
|
|
393
393
|
name = "TooManyTagsException";
|
|
394
394
|
$fault = "client";
|
|
395
395
|
Message;
|
|
@@ -402,879 +402,836 @@ class TooManyTagsException extends ServiceQuotasServiceException {
|
|
|
402
402
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
403
403
|
this.Message = opts.Message;
|
|
404
404
|
}
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
const se_AssociateServiceQuotaTemplateCommand = async (input, context) => {
|
|
408
|
-
const headers = sharedHeaders("AssociateServiceQuotaTemplate");
|
|
409
|
-
let body;
|
|
410
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
411
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
412
|
-
};
|
|
413
|
-
const se_CreateSupportCaseCommand = async (input, context) => {
|
|
414
|
-
const headers = sharedHeaders("CreateSupportCase");
|
|
415
|
-
let body;
|
|
416
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
417
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
418
|
-
};
|
|
419
|
-
const se_DeleteServiceQuotaIncreaseRequestFromTemplateCommand = async (input, context) => {
|
|
420
|
-
const headers = sharedHeaders("DeleteServiceQuotaIncreaseRequestFromTemplate");
|
|
421
|
-
let body;
|
|
422
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
423
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
424
|
-
};
|
|
425
|
-
const se_DisassociateServiceQuotaTemplateCommand = async (input, context) => {
|
|
426
|
-
const headers = sharedHeaders("DisassociateServiceQuotaTemplate");
|
|
427
|
-
let body;
|
|
428
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
429
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
430
|
-
};
|
|
431
|
-
const se_GetAssociationForServiceQuotaTemplateCommand = async (input, context) => {
|
|
432
|
-
const headers = sharedHeaders("GetAssociationForServiceQuotaTemplate");
|
|
433
|
-
let body;
|
|
434
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
435
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
436
|
-
};
|
|
437
|
-
const se_GetAutoManagementConfigurationCommand = async (input, context) => {
|
|
438
|
-
const headers = sharedHeaders("GetAutoManagementConfiguration");
|
|
439
|
-
let body;
|
|
440
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
441
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
442
|
-
};
|
|
443
|
-
const se_GetAWSDefaultServiceQuotaCommand = async (input, context) => {
|
|
444
|
-
const headers = sharedHeaders("GetAWSDefaultServiceQuota");
|
|
445
|
-
let body;
|
|
446
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
447
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
448
|
-
};
|
|
449
|
-
const se_GetRequestedServiceQuotaChangeCommand = async (input, context) => {
|
|
450
|
-
const headers = sharedHeaders("GetRequestedServiceQuotaChange");
|
|
451
|
-
let body;
|
|
452
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
453
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
454
|
-
};
|
|
455
|
-
const se_GetServiceQuotaCommand = async (input, context) => {
|
|
456
|
-
const headers = sharedHeaders("GetServiceQuota");
|
|
457
|
-
let body;
|
|
458
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
459
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
460
|
-
};
|
|
461
|
-
const se_GetServiceQuotaIncreaseRequestFromTemplateCommand = async (input, context) => {
|
|
462
|
-
const headers = sharedHeaders("GetServiceQuotaIncreaseRequestFromTemplate");
|
|
463
|
-
let body;
|
|
464
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
465
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
466
|
-
};
|
|
467
|
-
const se_ListAWSDefaultServiceQuotasCommand = async (input, context) => {
|
|
468
|
-
const headers = sharedHeaders("ListAWSDefaultServiceQuotas");
|
|
469
|
-
let body;
|
|
470
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
471
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
472
|
-
};
|
|
473
|
-
const se_ListRequestedServiceQuotaChangeHistoryCommand = async (input, context) => {
|
|
474
|
-
const headers = sharedHeaders("ListRequestedServiceQuotaChangeHistory");
|
|
475
|
-
let body;
|
|
476
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
477
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
478
|
-
};
|
|
479
|
-
const se_ListRequestedServiceQuotaChangeHistoryByQuotaCommand = async (input, context) => {
|
|
480
|
-
const headers = sharedHeaders("ListRequestedServiceQuotaChangeHistoryByQuota");
|
|
481
|
-
let body;
|
|
482
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
483
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
484
|
-
};
|
|
485
|
-
const se_ListServiceQuotaIncreaseRequestsInTemplateCommand = async (input, context) => {
|
|
486
|
-
const headers = sharedHeaders("ListServiceQuotaIncreaseRequestsInTemplate");
|
|
487
|
-
let body;
|
|
488
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
489
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
490
|
-
};
|
|
491
|
-
const se_ListServiceQuotasCommand = async (input, context) => {
|
|
492
|
-
const headers = sharedHeaders("ListServiceQuotas");
|
|
493
|
-
let body;
|
|
494
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
495
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
496
|
-
};
|
|
497
|
-
const se_ListServicesCommand = async (input, context) => {
|
|
498
|
-
const headers = sharedHeaders("ListServices");
|
|
499
|
-
let body;
|
|
500
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
501
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
502
|
-
};
|
|
503
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
504
|
-
const headers = sharedHeaders("ListTagsForResource");
|
|
505
|
-
let body;
|
|
506
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
507
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
508
|
-
};
|
|
509
|
-
const se_PutServiceQuotaIncreaseRequestIntoTemplateCommand = async (input, context) => {
|
|
510
|
-
const headers = sharedHeaders("PutServiceQuotaIncreaseRequestIntoTemplate");
|
|
511
|
-
let body;
|
|
512
|
-
body = JSON.stringify(se_PutServiceQuotaIncreaseRequestIntoTemplateRequest(input));
|
|
513
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
514
|
-
};
|
|
515
|
-
const se_RequestServiceQuotaIncreaseCommand = async (input, context) => {
|
|
516
|
-
const headers = sharedHeaders("RequestServiceQuotaIncrease");
|
|
517
|
-
let body;
|
|
518
|
-
body = JSON.stringify(se_RequestServiceQuotaIncreaseRequest(input));
|
|
519
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
520
|
-
};
|
|
521
|
-
const se_StartAutoManagementCommand = async (input, context) => {
|
|
522
|
-
const headers = sharedHeaders("StartAutoManagement");
|
|
523
|
-
let body;
|
|
524
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
525
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
526
|
-
};
|
|
527
|
-
const se_StopAutoManagementCommand = async (input, context) => {
|
|
528
|
-
const headers = sharedHeaders("StopAutoManagement");
|
|
529
|
-
let body;
|
|
530
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
531
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
532
|
-
};
|
|
533
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
534
|
-
const headers = sharedHeaders("TagResource");
|
|
535
|
-
let body;
|
|
536
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
537
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
538
|
-
};
|
|
539
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
540
|
-
const headers = sharedHeaders("UntagResource");
|
|
541
|
-
let body;
|
|
542
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
543
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
544
|
-
};
|
|
545
|
-
const se_UpdateAutoManagementCommand = async (input, context) => {
|
|
546
|
-
const headers = sharedHeaders("UpdateAutoManagement");
|
|
547
|
-
let body;
|
|
548
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
549
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
550
|
-
};
|
|
551
|
-
const de_AssociateServiceQuotaTemplateCommand = async (output, context) => {
|
|
552
|
-
if (output.statusCode >= 300) {
|
|
553
|
-
return de_CommandError(output, context);
|
|
554
|
-
}
|
|
555
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
556
|
-
let contents = {};
|
|
557
|
-
contents = smithyClient._json(data);
|
|
558
|
-
const response = {
|
|
559
|
-
$metadata: deserializeMetadata(output),
|
|
560
|
-
...contents,
|
|
561
|
-
};
|
|
562
|
-
return response;
|
|
563
|
-
};
|
|
564
|
-
const de_CreateSupportCaseCommand = async (output, context) => {
|
|
565
|
-
if (output.statusCode >= 300) {
|
|
566
|
-
return de_CommandError(output, context);
|
|
567
|
-
}
|
|
568
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
569
|
-
let contents = {};
|
|
570
|
-
contents = smithyClient._json(data);
|
|
571
|
-
const response = {
|
|
572
|
-
$metadata: deserializeMetadata(output),
|
|
573
|
-
...contents,
|
|
574
|
-
};
|
|
575
|
-
return response;
|
|
576
|
-
};
|
|
577
|
-
const de_DeleteServiceQuotaIncreaseRequestFromTemplateCommand = async (output, context) => {
|
|
578
|
-
if (output.statusCode >= 300) {
|
|
579
|
-
return de_CommandError(output, context);
|
|
580
|
-
}
|
|
581
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
582
|
-
let contents = {};
|
|
583
|
-
contents = smithyClient._json(data);
|
|
584
|
-
const response = {
|
|
585
|
-
$metadata: deserializeMetadata(output),
|
|
586
|
-
...contents,
|
|
587
|
-
};
|
|
588
|
-
return response;
|
|
589
|
-
};
|
|
590
|
-
const de_DisassociateServiceQuotaTemplateCommand = async (output, context) => {
|
|
591
|
-
if (output.statusCode >= 300) {
|
|
592
|
-
return de_CommandError(output, context);
|
|
593
|
-
}
|
|
594
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
595
|
-
let contents = {};
|
|
596
|
-
contents = smithyClient._json(data);
|
|
597
|
-
const response = {
|
|
598
|
-
$metadata: deserializeMetadata(output),
|
|
599
|
-
...contents,
|
|
600
|
-
};
|
|
601
|
-
return response;
|
|
602
|
-
};
|
|
603
|
-
const de_GetAssociationForServiceQuotaTemplateCommand = async (output, context) => {
|
|
604
|
-
if (output.statusCode >= 300) {
|
|
605
|
-
return de_CommandError(output, context);
|
|
606
|
-
}
|
|
607
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
608
|
-
let contents = {};
|
|
609
|
-
contents = smithyClient._json(data);
|
|
610
|
-
const response = {
|
|
611
|
-
$metadata: deserializeMetadata(output),
|
|
612
|
-
...contents,
|
|
613
|
-
};
|
|
614
|
-
return response;
|
|
615
|
-
};
|
|
616
|
-
const de_GetAutoManagementConfigurationCommand = async (output, context) => {
|
|
617
|
-
if (output.statusCode >= 300) {
|
|
618
|
-
return de_CommandError(output, context);
|
|
619
|
-
}
|
|
620
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
621
|
-
let contents = {};
|
|
622
|
-
contents = smithyClient._json(data);
|
|
623
|
-
const response = {
|
|
624
|
-
$metadata: deserializeMetadata(output),
|
|
625
|
-
...contents,
|
|
626
|
-
};
|
|
627
|
-
return response;
|
|
628
|
-
};
|
|
629
|
-
const de_GetAWSDefaultServiceQuotaCommand = async (output, context) => {
|
|
630
|
-
if (output.statusCode >= 300) {
|
|
631
|
-
return de_CommandError(output, context);
|
|
632
|
-
}
|
|
633
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
634
|
-
let contents = {};
|
|
635
|
-
contents = de_GetAWSDefaultServiceQuotaResponse(data);
|
|
636
|
-
const response = {
|
|
637
|
-
$metadata: deserializeMetadata(output),
|
|
638
|
-
...contents,
|
|
639
|
-
};
|
|
640
|
-
return response;
|
|
641
|
-
};
|
|
642
|
-
const de_GetRequestedServiceQuotaChangeCommand = async (output, context) => {
|
|
643
|
-
if (output.statusCode >= 300) {
|
|
644
|
-
return de_CommandError(output, context);
|
|
645
|
-
}
|
|
646
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
647
|
-
let contents = {};
|
|
648
|
-
contents = de_GetRequestedServiceQuotaChangeResponse(data);
|
|
649
|
-
const response = {
|
|
650
|
-
$metadata: deserializeMetadata(output),
|
|
651
|
-
...contents,
|
|
652
|
-
};
|
|
653
|
-
return response;
|
|
654
|
-
};
|
|
655
|
-
const de_GetServiceQuotaCommand = async (output, context) => {
|
|
656
|
-
if (output.statusCode >= 300) {
|
|
657
|
-
return de_CommandError(output, context);
|
|
658
|
-
}
|
|
659
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
660
|
-
let contents = {};
|
|
661
|
-
contents = de_GetServiceQuotaResponse(data);
|
|
662
|
-
const response = {
|
|
663
|
-
$metadata: deserializeMetadata(output),
|
|
664
|
-
...contents,
|
|
665
|
-
};
|
|
666
|
-
return response;
|
|
667
|
-
};
|
|
668
|
-
const de_GetServiceQuotaIncreaseRequestFromTemplateCommand = async (output, context) => {
|
|
669
|
-
if (output.statusCode >= 300) {
|
|
670
|
-
return de_CommandError(output, context);
|
|
671
|
-
}
|
|
672
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
673
|
-
let contents = {};
|
|
674
|
-
contents = de_GetServiceQuotaIncreaseRequestFromTemplateResponse(data);
|
|
675
|
-
const response = {
|
|
676
|
-
$metadata: deserializeMetadata(output),
|
|
677
|
-
...contents,
|
|
678
|
-
};
|
|
679
|
-
return response;
|
|
680
|
-
};
|
|
681
|
-
const de_ListAWSDefaultServiceQuotasCommand = async (output, context) => {
|
|
682
|
-
if (output.statusCode >= 300) {
|
|
683
|
-
return de_CommandError(output, context);
|
|
684
|
-
}
|
|
685
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
686
|
-
let contents = {};
|
|
687
|
-
contents = de_ListAWSDefaultServiceQuotasResponse(data);
|
|
688
|
-
const response = {
|
|
689
|
-
$metadata: deserializeMetadata(output),
|
|
690
|
-
...contents,
|
|
691
|
-
};
|
|
692
|
-
return response;
|
|
693
|
-
};
|
|
694
|
-
const de_ListRequestedServiceQuotaChangeHistoryCommand = async (output, context) => {
|
|
695
|
-
if (output.statusCode >= 300) {
|
|
696
|
-
return de_CommandError(output, context);
|
|
697
|
-
}
|
|
698
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
699
|
-
let contents = {};
|
|
700
|
-
contents = de_ListRequestedServiceQuotaChangeHistoryResponse(data);
|
|
701
|
-
const response = {
|
|
702
|
-
$metadata: deserializeMetadata(output),
|
|
703
|
-
...contents,
|
|
704
|
-
};
|
|
705
|
-
return response;
|
|
706
|
-
};
|
|
707
|
-
const de_ListRequestedServiceQuotaChangeHistoryByQuotaCommand = async (output, context) => {
|
|
708
|
-
if (output.statusCode >= 300) {
|
|
709
|
-
return de_CommandError(output, context);
|
|
710
|
-
}
|
|
711
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
712
|
-
let contents = {};
|
|
713
|
-
contents = de_ListRequestedServiceQuotaChangeHistoryByQuotaResponse(data);
|
|
714
|
-
const response = {
|
|
715
|
-
$metadata: deserializeMetadata(output),
|
|
716
|
-
...contents,
|
|
717
|
-
};
|
|
718
|
-
return response;
|
|
719
|
-
};
|
|
720
|
-
const de_ListServiceQuotaIncreaseRequestsInTemplateCommand = async (output, context) => {
|
|
721
|
-
if (output.statusCode >= 300) {
|
|
722
|
-
return de_CommandError(output, context);
|
|
723
|
-
}
|
|
724
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
725
|
-
let contents = {};
|
|
726
|
-
contents = de_ListServiceQuotaIncreaseRequestsInTemplateResponse(data);
|
|
727
|
-
const response = {
|
|
728
|
-
$metadata: deserializeMetadata(output),
|
|
729
|
-
...contents,
|
|
730
|
-
};
|
|
731
|
-
return response;
|
|
732
|
-
};
|
|
733
|
-
const de_ListServiceQuotasCommand = async (output, context) => {
|
|
734
|
-
if (output.statusCode >= 300) {
|
|
735
|
-
return de_CommandError(output, context);
|
|
736
|
-
}
|
|
737
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
738
|
-
let contents = {};
|
|
739
|
-
contents = de_ListServiceQuotasResponse(data);
|
|
740
|
-
const response = {
|
|
741
|
-
$metadata: deserializeMetadata(output),
|
|
742
|
-
...contents,
|
|
743
|
-
};
|
|
744
|
-
return response;
|
|
745
|
-
};
|
|
746
|
-
const de_ListServicesCommand = async (output, context) => {
|
|
747
|
-
if (output.statusCode >= 300) {
|
|
748
|
-
return de_CommandError(output, context);
|
|
749
|
-
}
|
|
750
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
751
|
-
let contents = {};
|
|
752
|
-
contents = smithyClient._json(data);
|
|
753
|
-
const response = {
|
|
754
|
-
$metadata: deserializeMetadata(output),
|
|
755
|
-
...contents,
|
|
756
|
-
};
|
|
757
|
-
return response;
|
|
758
|
-
};
|
|
759
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
760
|
-
if (output.statusCode >= 300) {
|
|
761
|
-
return de_CommandError(output, context);
|
|
762
|
-
}
|
|
763
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
764
|
-
let contents = {};
|
|
765
|
-
contents = smithyClient._json(data);
|
|
766
|
-
const response = {
|
|
767
|
-
$metadata: deserializeMetadata(output),
|
|
768
|
-
...contents,
|
|
769
|
-
};
|
|
770
|
-
return response;
|
|
771
|
-
};
|
|
772
|
-
const de_PutServiceQuotaIncreaseRequestIntoTemplateCommand = async (output, context) => {
|
|
773
|
-
if (output.statusCode >= 300) {
|
|
774
|
-
return de_CommandError(output, context);
|
|
775
|
-
}
|
|
776
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
777
|
-
let contents = {};
|
|
778
|
-
contents = de_PutServiceQuotaIncreaseRequestIntoTemplateResponse(data);
|
|
779
|
-
const response = {
|
|
780
|
-
$metadata: deserializeMetadata(output),
|
|
781
|
-
...contents,
|
|
782
|
-
};
|
|
783
|
-
return response;
|
|
784
|
-
};
|
|
785
|
-
const de_RequestServiceQuotaIncreaseCommand = async (output, context) => {
|
|
786
|
-
if (output.statusCode >= 300) {
|
|
787
|
-
return de_CommandError(output, context);
|
|
788
|
-
}
|
|
789
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
790
|
-
let contents = {};
|
|
791
|
-
contents = de_RequestServiceQuotaIncreaseResponse(data);
|
|
792
|
-
const response = {
|
|
793
|
-
$metadata: deserializeMetadata(output),
|
|
794
|
-
...contents,
|
|
795
|
-
};
|
|
796
|
-
return response;
|
|
797
|
-
};
|
|
798
|
-
const de_StartAutoManagementCommand = async (output, context) => {
|
|
799
|
-
if (output.statusCode >= 300) {
|
|
800
|
-
return de_CommandError(output, context);
|
|
801
|
-
}
|
|
802
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
803
|
-
let contents = {};
|
|
804
|
-
contents = smithyClient._json(data);
|
|
805
|
-
const response = {
|
|
806
|
-
$metadata: deserializeMetadata(output),
|
|
807
|
-
...contents,
|
|
808
|
-
};
|
|
809
|
-
return response;
|
|
810
|
-
};
|
|
811
|
-
const de_StopAutoManagementCommand = async (output, context) => {
|
|
812
|
-
if (output.statusCode >= 300) {
|
|
813
|
-
return de_CommandError(output, context);
|
|
814
|
-
}
|
|
815
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
816
|
-
let contents = {};
|
|
817
|
-
contents = smithyClient._json(data);
|
|
818
|
-
const response = {
|
|
819
|
-
$metadata: deserializeMetadata(output),
|
|
820
|
-
...contents,
|
|
821
|
-
};
|
|
822
|
-
return response;
|
|
823
|
-
};
|
|
824
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
825
|
-
if (output.statusCode >= 300) {
|
|
826
|
-
return de_CommandError(output, context);
|
|
827
|
-
}
|
|
828
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
829
|
-
let contents = {};
|
|
830
|
-
contents = smithyClient._json(data);
|
|
831
|
-
const response = {
|
|
832
|
-
$metadata: deserializeMetadata(output),
|
|
833
|
-
...contents,
|
|
834
|
-
};
|
|
835
|
-
return response;
|
|
836
|
-
};
|
|
837
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
838
|
-
if (output.statusCode >= 300) {
|
|
839
|
-
return de_CommandError(output, context);
|
|
840
|
-
}
|
|
841
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
842
|
-
let contents = {};
|
|
843
|
-
contents = smithyClient._json(data);
|
|
844
|
-
const response = {
|
|
845
|
-
$metadata: deserializeMetadata(output),
|
|
846
|
-
...contents,
|
|
847
|
-
};
|
|
848
|
-
return response;
|
|
849
|
-
};
|
|
850
|
-
const de_UpdateAutoManagementCommand = async (output, context) => {
|
|
851
|
-
if (output.statusCode >= 300) {
|
|
852
|
-
return de_CommandError(output, context);
|
|
853
|
-
}
|
|
854
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
855
|
-
let contents = {};
|
|
856
|
-
contents = smithyClient._json(data);
|
|
857
|
-
const response = {
|
|
858
|
-
$metadata: deserializeMetadata(output),
|
|
859
|
-
...contents,
|
|
860
|
-
};
|
|
861
|
-
return response;
|
|
862
|
-
};
|
|
863
|
-
const de_CommandError = async (output, context) => {
|
|
864
|
-
const parsedOutput = {
|
|
865
|
-
...output,
|
|
866
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
867
|
-
};
|
|
868
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
869
|
-
switch (errorCode) {
|
|
870
|
-
case "AWSServiceAccessNotEnabledException":
|
|
871
|
-
case "com.amazonaws.servicequotas#AWSServiceAccessNotEnabledException":
|
|
872
|
-
throw await de_AWSServiceAccessNotEnabledExceptionRes(parsedOutput);
|
|
873
|
-
case "AccessDeniedException":
|
|
874
|
-
case "com.amazonaws.servicequotas#AccessDeniedException":
|
|
875
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
876
|
-
case "DependencyAccessDeniedException":
|
|
877
|
-
case "com.amazonaws.servicequotas#DependencyAccessDeniedException":
|
|
878
|
-
throw await de_DependencyAccessDeniedExceptionRes(parsedOutput);
|
|
879
|
-
case "NoAvailableOrganizationException":
|
|
880
|
-
case "com.amazonaws.servicequotas#NoAvailableOrganizationException":
|
|
881
|
-
throw await de_NoAvailableOrganizationExceptionRes(parsedOutput);
|
|
882
|
-
case "OrganizationNotInAllFeaturesModeException":
|
|
883
|
-
case "com.amazonaws.servicequotas#OrganizationNotInAllFeaturesModeException":
|
|
884
|
-
throw await de_OrganizationNotInAllFeaturesModeExceptionRes(parsedOutput);
|
|
885
|
-
case "ServiceException":
|
|
886
|
-
case "com.amazonaws.servicequotas#ServiceException":
|
|
887
|
-
throw await de_ServiceExceptionRes(parsedOutput);
|
|
888
|
-
case "TemplatesNotAvailableInRegionException":
|
|
889
|
-
case "com.amazonaws.servicequotas#TemplatesNotAvailableInRegionException":
|
|
890
|
-
throw await de_TemplatesNotAvailableInRegionExceptionRes(parsedOutput);
|
|
891
|
-
case "TooManyRequestsException":
|
|
892
|
-
case "com.amazonaws.servicequotas#TooManyRequestsException":
|
|
893
|
-
throw await de_TooManyRequestsExceptionRes(parsedOutput);
|
|
894
|
-
case "IllegalArgumentException":
|
|
895
|
-
case "com.amazonaws.servicequotas#IllegalArgumentException":
|
|
896
|
-
throw await de_IllegalArgumentExceptionRes(parsedOutput);
|
|
897
|
-
case "InvalidResourceStateException":
|
|
898
|
-
case "com.amazonaws.servicequotas#InvalidResourceStateException":
|
|
899
|
-
throw await de_InvalidResourceStateExceptionRes(parsedOutput);
|
|
900
|
-
case "NoSuchResourceException":
|
|
901
|
-
case "com.amazonaws.servicequotas#NoSuchResourceException":
|
|
902
|
-
throw await de_NoSuchResourceExceptionRes(parsedOutput);
|
|
903
|
-
case "ResourceAlreadyExistsException":
|
|
904
|
-
case "com.amazonaws.servicequotas#ResourceAlreadyExistsException":
|
|
905
|
-
throw await de_ResourceAlreadyExistsExceptionRes(parsedOutput);
|
|
906
|
-
case "ServiceQuotaTemplateNotInUseException":
|
|
907
|
-
case "com.amazonaws.servicequotas#ServiceQuotaTemplateNotInUseException":
|
|
908
|
-
throw await de_ServiceQuotaTemplateNotInUseExceptionRes(parsedOutput);
|
|
909
|
-
case "InvalidPaginationTokenException":
|
|
910
|
-
case "com.amazonaws.servicequotas#InvalidPaginationTokenException":
|
|
911
|
-
throw await de_InvalidPaginationTokenExceptionRes(parsedOutput);
|
|
912
|
-
case "QuotaExceededException":
|
|
913
|
-
case "com.amazonaws.servicequotas#QuotaExceededException":
|
|
914
|
-
throw await de_QuotaExceededExceptionRes(parsedOutput);
|
|
915
|
-
case "TagPolicyViolationException":
|
|
916
|
-
case "com.amazonaws.servicequotas#TagPolicyViolationException":
|
|
917
|
-
throw await de_TagPolicyViolationExceptionRes(parsedOutput);
|
|
918
|
-
case "TooManyTagsException":
|
|
919
|
-
case "com.amazonaws.servicequotas#TooManyTagsException":
|
|
920
|
-
throw await de_TooManyTagsExceptionRes(parsedOutput);
|
|
921
|
-
default:
|
|
922
|
-
const parsedBody = parsedOutput.body;
|
|
923
|
-
return throwDefaultError({
|
|
924
|
-
output,
|
|
925
|
-
parsedBody,
|
|
926
|
-
errorCode,
|
|
927
|
-
});
|
|
928
|
-
}
|
|
929
405
|
};
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
const
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
const
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
const
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
const
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
const
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
const
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
const
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
const
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
const
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
const
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
const
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
const
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
const
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
const
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
const
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
const
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
const
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
const
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
406
|
+
|
|
407
|
+
const _A = "Adjustable";
|
|
408
|
+
const _ADE = "AccessDeniedException";
|
|
409
|
+
const _AR = "AwsRegion";
|
|
410
|
+
const _ASQT = "AssociateServiceQuotaTemplate";
|
|
411
|
+
const _ASQTR = "AssociateServiceQuotaTemplateRequest";
|
|
412
|
+
const _ASQTRs = "AssociateServiceQuotaTemplateResponse";
|
|
413
|
+
const _AWSSANEE = "AWSServiceAccessNotEnabledException";
|
|
414
|
+
const _C = "Created";
|
|
415
|
+
const _CI = "ContextId";
|
|
416
|
+
const _CIa = "CaseId";
|
|
417
|
+
const _CS = "ContextScope";
|
|
418
|
+
const _CSC = "CreateSupportCase";
|
|
419
|
+
const _CSCR = "CreateSupportCaseRequest";
|
|
420
|
+
const _CSCRr = "CreateSupportCaseResponse";
|
|
421
|
+
const _CST = "ContextScopeType";
|
|
422
|
+
const _D = "Description";
|
|
423
|
+
const _DADE = "DependencyAccessDeniedException";
|
|
424
|
+
const _DSQIRFT = "DeleteServiceQuotaIncreaseRequestFromTemplate";
|
|
425
|
+
const _DSQIRFTR = "DeleteServiceQuotaIncreaseRequestFromTemplateRequest";
|
|
426
|
+
const _DSQIRFTRe = "DeleteServiceQuotaIncreaseRequestFromTemplateResponse";
|
|
427
|
+
const _DSQT = "DisassociateServiceQuotaTemplate";
|
|
428
|
+
const _DSQTR = "DisassociateServiceQuotaTemplateRequest";
|
|
429
|
+
const _DSQTRi = "DisassociateServiceQuotaTemplateResponse";
|
|
430
|
+
const _DV = "DesiredValue";
|
|
431
|
+
const _EC = "ErrorCode";
|
|
432
|
+
const _EL = "ExclusionList";
|
|
433
|
+
const _EM = "ErrorMessage";
|
|
434
|
+
const _EQL = "ExclusionQuotaList";
|
|
435
|
+
const _ER = "ErrorReason";
|
|
436
|
+
const _GAFSQT = "GetAssociationForServiceQuotaTemplate";
|
|
437
|
+
const _GAFSQTR = "GetAssociationForServiceQuotaTemplateRequest";
|
|
438
|
+
const _GAFSQTRe = "GetAssociationForServiceQuotaTemplateResponse";
|
|
439
|
+
const _GAMC = "GetAutoManagementConfiguration";
|
|
440
|
+
const _GAMCR = "GetAutoManagementConfigurationRequest";
|
|
441
|
+
const _GAMCRe = "GetAutoManagementConfigurationResponse";
|
|
442
|
+
const _GAWSDSQ = "GetAWSDefaultServiceQuota";
|
|
443
|
+
const _GAWSDSQR = "GetAWSDefaultServiceQuotaRequest";
|
|
444
|
+
const _GAWSDSQRe = "GetAWSDefaultServiceQuotaResponse";
|
|
445
|
+
const _GQ = "GlobalQuota";
|
|
446
|
+
const _GRSQC = "GetRequestedServiceQuotaChange";
|
|
447
|
+
const _GRSQCR = "GetRequestedServiceQuotaChangeRequest";
|
|
448
|
+
const _GRSQCRe = "GetRequestedServiceQuotaChangeResponse";
|
|
449
|
+
const _GSQ = "GetServiceQuota";
|
|
450
|
+
const _GSQIRFT = "GetServiceQuotaIncreaseRequestFromTemplate";
|
|
451
|
+
const _GSQIRFTR = "GetServiceQuotaIncreaseRequestFromTemplateRequest";
|
|
452
|
+
const _GSQIRFTRe = "GetServiceQuotaIncreaseRequestFromTemplateResponse";
|
|
453
|
+
const _GSQR = "GetServiceQuotaRequest";
|
|
454
|
+
const _GSQRe = "GetServiceQuotaResponse";
|
|
455
|
+
const _I = "Id";
|
|
456
|
+
const _IAE = "IllegalArgumentException";
|
|
457
|
+
const _IPTE = "InvalidPaginationTokenException";
|
|
458
|
+
const _IRSE = "InvalidResourceStateException";
|
|
459
|
+
const _IT = "InputTags";
|
|
460
|
+
const _K = "Key";
|
|
461
|
+
const _LAWSDSQ = "ListAWSDefaultServiceQuotas";
|
|
462
|
+
const _LAWSDSQR = "ListAWSDefaultServiceQuotasRequest";
|
|
463
|
+
const _LAWSDSQRi = "ListAWSDefaultServiceQuotasResponse";
|
|
464
|
+
const _LRSQCH = "ListRequestedServiceQuotaChangeHistory";
|
|
465
|
+
const _LRSQCHBQ = "ListRequestedServiceQuotaChangeHistoryByQuota";
|
|
466
|
+
const _LRSQCHBQR = "ListRequestedServiceQuotaChangeHistoryByQuotaRequest";
|
|
467
|
+
const _LRSQCHBQRi = "ListRequestedServiceQuotaChangeHistoryByQuotaResponse";
|
|
468
|
+
const _LRSQCHR = "ListRequestedServiceQuotaChangeHistoryRequest";
|
|
469
|
+
const _LRSQCHRi = "ListRequestedServiceQuotaChangeHistoryResponse";
|
|
470
|
+
const _LS = "ListServices";
|
|
471
|
+
const _LSQ = "ListServiceQuotas";
|
|
472
|
+
const _LSQIRIT = "ListServiceQuotaIncreaseRequestsInTemplate";
|
|
473
|
+
const _LSQIRITR = "ListServiceQuotaIncreaseRequestsInTemplateRequest";
|
|
474
|
+
const _LSQIRITRi = "ListServiceQuotaIncreaseRequestsInTemplateResponse";
|
|
475
|
+
const _LSQR = "ListServiceQuotasRequest";
|
|
476
|
+
const _LSQRi = "ListServiceQuotasResponse";
|
|
477
|
+
const _LSR = "ListServicesRequest";
|
|
478
|
+
const _LSRi = "ListServicesResponse";
|
|
479
|
+
const _LTFR = "ListTagsForResource";
|
|
480
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
481
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
482
|
+
const _LU = "LastUpdated";
|
|
483
|
+
const _M = "Message";
|
|
484
|
+
const _MD = "MetricDimensions";
|
|
485
|
+
const _MI = "MetricInfo";
|
|
486
|
+
const _MN = "MetricNamespace";
|
|
487
|
+
const _MNe = "MetricName";
|
|
488
|
+
const _MR = "MaxResults";
|
|
489
|
+
const _MSR = "MetricStatisticRecommendation";
|
|
490
|
+
const _NA = "NotificationArn";
|
|
491
|
+
const _NAOE = "NoAvailableOrganizationException";
|
|
492
|
+
const _NSRE = "NoSuchResourceException";
|
|
493
|
+
const _NT = "NextToken";
|
|
494
|
+
const _OIL = "OptInLevel";
|
|
495
|
+
const _OIS = "OptInStatus";
|
|
496
|
+
const _OIT = "OptInType";
|
|
497
|
+
const _ONIAFME = "OrganizationNotInAllFeaturesModeException";
|
|
498
|
+
const _OT = "OutputTags";
|
|
499
|
+
const _P = "Period";
|
|
500
|
+
const _PSQIRIT = "PutServiceQuotaIncreaseRequestIntoTemplate";
|
|
501
|
+
const _PSQIRITR = "PutServiceQuotaIncreaseRequestIntoTemplateRequest";
|
|
502
|
+
const _PSQIRITRu = "PutServiceQuotaIncreaseRequestIntoTemplateResponse";
|
|
503
|
+
const _PU = "PeriodUnit";
|
|
504
|
+
const _PV = "PeriodValue";
|
|
505
|
+
const _Q = "Quota";
|
|
506
|
+
const _QA = "QuotaArn";
|
|
507
|
+
const _QAAL = "QuotaAppliedAtLevel";
|
|
508
|
+
const _QC = "QuotaCode";
|
|
509
|
+
const _QCI = "QuotaContextInfo";
|
|
510
|
+
const _QCu = "QuotaContext";
|
|
511
|
+
const _QEE = "QuotaExceededException";
|
|
512
|
+
const _QI = "QuotaInfo";
|
|
513
|
+
const _QIL = "QuotaInfoList";
|
|
514
|
+
const _QN = "QuotaName";
|
|
515
|
+
const _QP = "QuotaPeriod";
|
|
516
|
+
const _QRAL = "QuotaRequestedAtLevel";
|
|
517
|
+
const _Qu = "Quotas";
|
|
518
|
+
const _R = "Requester";
|
|
519
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
520
|
+
const _RARN = "ResourceARN";
|
|
521
|
+
const _RI = "RequestId";
|
|
522
|
+
const _RQ = "RequestedQuota";
|
|
523
|
+
const _RQe = "RequestedQuotas";
|
|
524
|
+
const _RSQC = "RequestedServiceQuotaChange";
|
|
525
|
+
const _RSQCHLD = "RequestedServiceQuotaChangeHistoryListDefinition";
|
|
526
|
+
const _RSQI = "RequestServiceQuotaIncrease";
|
|
527
|
+
const _RSQIR = "RequestServiceQuotaIncreaseRequest";
|
|
528
|
+
const _RSQIRe = "RequestServiceQuotaIncreaseResponse";
|
|
529
|
+
const _S = "Status";
|
|
530
|
+
const _SAM = "StartAutoManagement";
|
|
531
|
+
const _SAMR = "StartAutoManagementRequest";
|
|
532
|
+
const _SAMRt = "StartAutoManagementResponse";
|
|
533
|
+
const _SAMRto = "StopAutoManagementRequest";
|
|
534
|
+
const _SAMRtop = "StopAutoManagementResponse";
|
|
535
|
+
const _SAMt = "StopAutoManagement";
|
|
536
|
+
const _SC = "ServiceCode";
|
|
537
|
+
const _SCA = "SupportCaseAllowed";
|
|
538
|
+
const _SE = "ServiceException";
|
|
539
|
+
const _SI = "ServiceInfo";
|
|
540
|
+
const _SILD = "ServiceInfoListDefinition";
|
|
541
|
+
const _SN = "ServiceName";
|
|
542
|
+
const _SQ = "ServiceQuota";
|
|
543
|
+
const _SQIRIT = "ServiceQuotaIncreaseRequestInTemplate";
|
|
544
|
+
const _SQIRITL = "ServiceQuotaIncreaseRequestInTemplateList";
|
|
545
|
+
const _SQLD = "ServiceQuotaListDefinition";
|
|
546
|
+
const _SQTAS = "ServiceQuotaTemplateAssociationStatus";
|
|
547
|
+
const _SQTNIUE = "ServiceQuotaTemplateNotInUseException";
|
|
548
|
+
const _Se = "Services";
|
|
549
|
+
const _T = "Tags";
|
|
550
|
+
const _TK = "TagKeys";
|
|
551
|
+
const _TMRE = "TooManyRequestsException";
|
|
552
|
+
const _TMTE = "TooManyTagsException";
|
|
553
|
+
const _TNAIRE = "TemplatesNotAvailableInRegionException";
|
|
554
|
+
const _TPVE = "TagPolicyViolationException";
|
|
555
|
+
const _TR = "TagResource";
|
|
556
|
+
const _TRR = "TagResourceRequest";
|
|
557
|
+
const _TRRa = "TagResourceResponse";
|
|
558
|
+
const _Ta = "Tag";
|
|
559
|
+
const _U = "Unit";
|
|
560
|
+
const _UAM = "UpdateAutoManagement";
|
|
561
|
+
const _UAMR = "UpdateAutoManagementRequest";
|
|
562
|
+
const _UAMRp = "UpdateAutoManagementResponse";
|
|
563
|
+
const _UM = "UsageMetric";
|
|
564
|
+
const _UR = "UntagResource";
|
|
565
|
+
const _URR = "UntagResourceRequest";
|
|
566
|
+
const _URRn = "UntagResourceResponse";
|
|
567
|
+
const _V = "Value";
|
|
568
|
+
const _c = "client";
|
|
569
|
+
const _e = "error";
|
|
570
|
+
const _hE = "httpError";
|
|
571
|
+
const _s = "server";
|
|
572
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.servicequotas";
|
|
573
|
+
const n0 = "com.amazonaws.servicequotas";
|
|
574
|
+
var AccessDeniedException = [
|
|
575
|
+
-3,
|
|
576
|
+
n0,
|
|
577
|
+
_ADE,
|
|
578
|
+
{
|
|
579
|
+
[_e]: _c,
|
|
580
|
+
[_hE]: 403,
|
|
581
|
+
},
|
|
582
|
+
[_M],
|
|
583
|
+
[0],
|
|
584
|
+
];
|
|
585
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
586
|
+
var AssociateServiceQuotaTemplateRequest = [3, n0, _ASQTR, 0, [], []];
|
|
587
|
+
var AssociateServiceQuotaTemplateResponse = [3, n0, _ASQTRs, 0, [], []];
|
|
588
|
+
var AWSServiceAccessNotEnabledException = [
|
|
589
|
+
-3,
|
|
590
|
+
n0,
|
|
591
|
+
_AWSSANEE,
|
|
592
|
+
{
|
|
593
|
+
[_e]: _c,
|
|
594
|
+
[_hE]: 403,
|
|
595
|
+
},
|
|
596
|
+
[_M],
|
|
597
|
+
[0],
|
|
598
|
+
];
|
|
599
|
+
schema.TypeRegistry.for(n0).registerError(AWSServiceAccessNotEnabledException, AWSServiceAccessNotEnabledException$1);
|
|
600
|
+
var CreateSupportCaseRequest = [3, n0, _CSCR, 0, [_RI], [0]];
|
|
601
|
+
var CreateSupportCaseResponse = [3, n0, _CSCRr, 0, [], []];
|
|
602
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplateRequest = [
|
|
603
|
+
3,
|
|
604
|
+
n0,
|
|
605
|
+
_DSQIRFTR,
|
|
606
|
+
0,
|
|
607
|
+
[_SC, _QC, _AR],
|
|
608
|
+
[0, 0, 0],
|
|
609
|
+
];
|
|
610
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplateResponse = [
|
|
611
|
+
3,
|
|
612
|
+
n0,
|
|
613
|
+
_DSQIRFTRe,
|
|
614
|
+
0,
|
|
615
|
+
[],
|
|
616
|
+
[],
|
|
617
|
+
];
|
|
618
|
+
var DependencyAccessDeniedException = [
|
|
619
|
+
-3,
|
|
620
|
+
n0,
|
|
621
|
+
_DADE,
|
|
622
|
+
{
|
|
623
|
+
[_e]: _c,
|
|
624
|
+
[_hE]: 403,
|
|
625
|
+
},
|
|
626
|
+
[_M],
|
|
627
|
+
[0],
|
|
628
|
+
];
|
|
629
|
+
schema.TypeRegistry.for(n0).registerError(DependencyAccessDeniedException, DependencyAccessDeniedException$1);
|
|
630
|
+
var DisassociateServiceQuotaTemplateRequest = [3, n0, _DSQTR, 0, [], []];
|
|
631
|
+
var DisassociateServiceQuotaTemplateResponse = [3, n0, _DSQTRi, 0, [], []];
|
|
632
|
+
var ErrorReason = [3, n0, _ER, 0, [_EC, _EM], [0, 0]];
|
|
633
|
+
var GetAssociationForServiceQuotaTemplateRequest = [3, n0, _GAFSQTR, 0, [], []];
|
|
634
|
+
var GetAssociationForServiceQuotaTemplateResponse = [3, n0, _GAFSQTRe, 0, [_SQTAS], [0]];
|
|
635
|
+
var GetAutoManagementConfigurationRequest = [3, n0, _GAMCR, 0, [], []];
|
|
636
|
+
var GetAutoManagementConfigurationResponse = [
|
|
637
|
+
3,
|
|
638
|
+
n0,
|
|
639
|
+
_GAMCRe,
|
|
640
|
+
0,
|
|
641
|
+
[_OIL, _OIT, _NA, _OIS, _EL],
|
|
642
|
+
[0, 0, 0, 0, () => ExclusionQuotaList],
|
|
643
|
+
];
|
|
644
|
+
var GetAWSDefaultServiceQuotaRequest = [3, n0, _GAWSDSQR, 0, [_SC, _QC], [0, 0]];
|
|
645
|
+
var GetAWSDefaultServiceQuotaResponse = [
|
|
646
|
+
3,
|
|
647
|
+
n0,
|
|
648
|
+
_GAWSDSQRe,
|
|
649
|
+
0,
|
|
650
|
+
[_Q],
|
|
651
|
+
[() => ServiceQuota],
|
|
652
|
+
];
|
|
653
|
+
var GetRequestedServiceQuotaChangeRequest = [3, n0, _GRSQCR, 0, [_RI], [0]];
|
|
654
|
+
var GetRequestedServiceQuotaChangeResponse = [
|
|
655
|
+
3,
|
|
656
|
+
n0,
|
|
657
|
+
_GRSQCRe,
|
|
658
|
+
0,
|
|
659
|
+
[_RQ],
|
|
660
|
+
[() => RequestedServiceQuotaChange],
|
|
661
|
+
];
|
|
662
|
+
var GetServiceQuotaIncreaseRequestFromTemplateRequest = [
|
|
663
|
+
3,
|
|
664
|
+
n0,
|
|
665
|
+
_GSQIRFTR,
|
|
666
|
+
0,
|
|
667
|
+
[_SC, _QC, _AR],
|
|
668
|
+
[0, 0, 0],
|
|
669
|
+
];
|
|
670
|
+
var GetServiceQuotaIncreaseRequestFromTemplateResponse = [
|
|
671
|
+
3,
|
|
672
|
+
n0,
|
|
673
|
+
_GSQIRFTRe,
|
|
674
|
+
0,
|
|
675
|
+
[_SQIRIT],
|
|
676
|
+
[() => ServiceQuotaIncreaseRequestInTemplate],
|
|
677
|
+
];
|
|
678
|
+
var GetServiceQuotaRequest = [3, n0, _GSQR, 0, [_SC, _QC, _CI], [0, 0, 0]];
|
|
679
|
+
var GetServiceQuotaResponse = [3, n0, _GSQRe, 0, [_Q], [() => ServiceQuota]];
|
|
680
|
+
var IllegalArgumentException = [
|
|
681
|
+
-3,
|
|
682
|
+
n0,
|
|
683
|
+
_IAE,
|
|
684
|
+
{
|
|
685
|
+
[_e]: _c,
|
|
686
|
+
[_hE]: 400,
|
|
687
|
+
},
|
|
688
|
+
[_M],
|
|
689
|
+
[0],
|
|
690
|
+
];
|
|
691
|
+
schema.TypeRegistry.for(n0).registerError(IllegalArgumentException, IllegalArgumentException$1);
|
|
692
|
+
var InvalidPaginationTokenException = [
|
|
693
|
+
-3,
|
|
694
|
+
n0,
|
|
695
|
+
_IPTE,
|
|
696
|
+
{
|
|
697
|
+
[_e]: _c,
|
|
698
|
+
[_hE]: 400,
|
|
699
|
+
},
|
|
700
|
+
[_M],
|
|
701
|
+
[0],
|
|
702
|
+
];
|
|
703
|
+
schema.TypeRegistry.for(n0).registerError(InvalidPaginationTokenException, InvalidPaginationTokenException$1);
|
|
704
|
+
var InvalidResourceStateException = [
|
|
705
|
+
-3,
|
|
706
|
+
n0,
|
|
707
|
+
_IRSE,
|
|
708
|
+
{
|
|
709
|
+
[_e]: _c,
|
|
710
|
+
[_hE]: 405,
|
|
711
|
+
},
|
|
712
|
+
[_M],
|
|
713
|
+
[0],
|
|
714
|
+
];
|
|
715
|
+
schema.TypeRegistry.for(n0).registerError(InvalidResourceStateException, InvalidResourceStateException$1);
|
|
716
|
+
var ListAWSDefaultServiceQuotasRequest = [
|
|
717
|
+
3,
|
|
718
|
+
n0,
|
|
719
|
+
_LAWSDSQR,
|
|
720
|
+
0,
|
|
721
|
+
[_SC, _NT, _MR],
|
|
722
|
+
[0, 0, 1],
|
|
723
|
+
];
|
|
724
|
+
var ListAWSDefaultServiceQuotasResponse = [
|
|
725
|
+
3,
|
|
726
|
+
n0,
|
|
727
|
+
_LAWSDSQRi,
|
|
728
|
+
0,
|
|
729
|
+
[_NT, _Qu],
|
|
730
|
+
[0, () => ServiceQuotaListDefinition],
|
|
731
|
+
];
|
|
732
|
+
var ListRequestedServiceQuotaChangeHistoryByQuotaRequest = [
|
|
733
|
+
3,
|
|
734
|
+
n0,
|
|
735
|
+
_LRSQCHBQR,
|
|
736
|
+
0,
|
|
737
|
+
[_SC, _QC, _S, _NT, _MR, _QRAL],
|
|
738
|
+
[0, 0, 0, 0, 1, 0],
|
|
739
|
+
];
|
|
740
|
+
var ListRequestedServiceQuotaChangeHistoryByQuotaResponse = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_LRSQCHBQRi,
|
|
744
|
+
0,
|
|
745
|
+
[_NT, _RQe],
|
|
746
|
+
[0, () => RequestedServiceQuotaChangeHistoryListDefinition],
|
|
747
|
+
];
|
|
748
|
+
var ListRequestedServiceQuotaChangeHistoryRequest = [
|
|
749
|
+
3,
|
|
750
|
+
n0,
|
|
751
|
+
_LRSQCHR,
|
|
752
|
+
0,
|
|
753
|
+
[_SC, _S, _NT, _MR, _QRAL],
|
|
754
|
+
[0, 0, 0, 1, 0],
|
|
755
|
+
];
|
|
756
|
+
var ListRequestedServiceQuotaChangeHistoryResponse = [
|
|
757
|
+
3,
|
|
758
|
+
n0,
|
|
759
|
+
_LRSQCHRi,
|
|
760
|
+
0,
|
|
761
|
+
[_NT, _RQe],
|
|
762
|
+
[0, () => RequestedServiceQuotaChangeHistoryListDefinition],
|
|
763
|
+
];
|
|
764
|
+
var ListServiceQuotaIncreaseRequestsInTemplateRequest = [
|
|
765
|
+
3,
|
|
766
|
+
n0,
|
|
767
|
+
_LSQIRITR,
|
|
768
|
+
0,
|
|
769
|
+
[_SC, _AR, _NT, _MR],
|
|
770
|
+
[0, 0, 0, 1],
|
|
771
|
+
];
|
|
772
|
+
var ListServiceQuotaIncreaseRequestsInTemplateResponse = [
|
|
773
|
+
3,
|
|
774
|
+
n0,
|
|
775
|
+
_LSQIRITRi,
|
|
776
|
+
0,
|
|
777
|
+
[_SQIRITL, _NT],
|
|
778
|
+
[() => ServiceQuotaIncreaseRequestInTemplateList, 0],
|
|
779
|
+
];
|
|
780
|
+
var ListServiceQuotasRequest = [
|
|
781
|
+
3,
|
|
782
|
+
n0,
|
|
783
|
+
_LSQR,
|
|
784
|
+
0,
|
|
785
|
+
[_SC, _NT, _MR, _QC, _QAAL],
|
|
786
|
+
[0, 0, 1, 0, 0],
|
|
787
|
+
];
|
|
788
|
+
var ListServiceQuotasResponse = [
|
|
789
|
+
3,
|
|
790
|
+
n0,
|
|
791
|
+
_LSQRi,
|
|
792
|
+
0,
|
|
793
|
+
[_NT, _Qu],
|
|
794
|
+
[0, () => ServiceQuotaListDefinition],
|
|
795
|
+
];
|
|
796
|
+
var ListServicesRequest = [3, n0, _LSR, 0, [_NT, _MR], [0, 1]];
|
|
797
|
+
var ListServicesResponse = [
|
|
798
|
+
3,
|
|
799
|
+
n0,
|
|
800
|
+
_LSRi,
|
|
801
|
+
0,
|
|
802
|
+
[_NT, _Se],
|
|
803
|
+
[0, () => ServiceInfoListDefinition],
|
|
804
|
+
];
|
|
805
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
806
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => OutputTags]];
|
|
807
|
+
var MetricInfo = [3, n0, _MI, 0, [_MN, _MNe, _MD, _MSR], [0, 0, 128 | 0, 0]];
|
|
808
|
+
var NoAvailableOrganizationException = [
|
|
809
|
+
-3,
|
|
810
|
+
n0,
|
|
811
|
+
_NAOE,
|
|
812
|
+
{
|
|
813
|
+
[_e]: _c,
|
|
814
|
+
[_hE]: 403,
|
|
815
|
+
},
|
|
816
|
+
[_M],
|
|
817
|
+
[0],
|
|
818
|
+
];
|
|
819
|
+
schema.TypeRegistry.for(n0).registerError(NoAvailableOrganizationException, NoAvailableOrganizationException$1);
|
|
820
|
+
var NoSuchResourceException = [
|
|
821
|
+
-3,
|
|
822
|
+
n0,
|
|
823
|
+
_NSRE,
|
|
824
|
+
{
|
|
825
|
+
[_e]: _c,
|
|
826
|
+
[_hE]: 404,
|
|
827
|
+
},
|
|
828
|
+
[_M],
|
|
829
|
+
[0],
|
|
830
|
+
];
|
|
831
|
+
schema.TypeRegistry.for(n0).registerError(NoSuchResourceException, NoSuchResourceException$1);
|
|
832
|
+
var OrganizationNotInAllFeaturesModeException = [
|
|
833
|
+
-3,
|
|
834
|
+
n0,
|
|
835
|
+
_ONIAFME,
|
|
836
|
+
{
|
|
837
|
+
[_e]: _c,
|
|
838
|
+
[_hE]: 400,
|
|
839
|
+
},
|
|
840
|
+
[_M],
|
|
841
|
+
[0],
|
|
842
|
+
];
|
|
843
|
+
schema.TypeRegistry.for(n0).registerError(OrganizationNotInAllFeaturesModeException, OrganizationNotInAllFeaturesModeException$1);
|
|
844
|
+
var PutServiceQuotaIncreaseRequestIntoTemplateRequest = [
|
|
845
|
+
3,
|
|
846
|
+
n0,
|
|
847
|
+
_PSQIRITR,
|
|
848
|
+
0,
|
|
849
|
+
[_QC, _SC, _AR, _DV],
|
|
850
|
+
[0, 0, 0, 1],
|
|
851
|
+
];
|
|
852
|
+
var PutServiceQuotaIncreaseRequestIntoTemplateResponse = [
|
|
853
|
+
3,
|
|
854
|
+
n0,
|
|
855
|
+
_PSQIRITRu,
|
|
856
|
+
0,
|
|
857
|
+
[_SQIRIT],
|
|
858
|
+
[() => ServiceQuotaIncreaseRequestInTemplate],
|
|
859
|
+
];
|
|
860
|
+
var QuotaContextInfo = [3, n0, _QCI, 0, [_CS, _CST, _CI], [0, 0, 0]];
|
|
861
|
+
var QuotaExceededException = [
|
|
862
|
+
-3,
|
|
863
|
+
n0,
|
|
864
|
+
_QEE,
|
|
865
|
+
{
|
|
866
|
+
[_e]: _c,
|
|
867
|
+
[_hE]: 409,
|
|
868
|
+
},
|
|
869
|
+
[_M],
|
|
870
|
+
[0],
|
|
871
|
+
];
|
|
872
|
+
schema.TypeRegistry.for(n0).registerError(QuotaExceededException, QuotaExceededException$1);
|
|
873
|
+
var QuotaInfo = [3, n0, _QI, 0, [_QC, _QN], [0, 0]];
|
|
874
|
+
var QuotaPeriod = [3, n0, _QP, 0, [_PV, _PU], [1, 0]];
|
|
875
|
+
var RequestedServiceQuotaChange = [
|
|
876
|
+
3,
|
|
877
|
+
n0,
|
|
878
|
+
_RSQC,
|
|
879
|
+
0,
|
|
880
|
+
[_I, _CIa, _SC, _SN, _QC, _QN, _DV, _S, _C, _LU, _R, _QA, _GQ, _U, _QRAL, _QCu],
|
|
881
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0, 2, 0, 0, () => QuotaContextInfo],
|
|
882
|
+
];
|
|
883
|
+
var RequestServiceQuotaIncreaseRequest = [
|
|
884
|
+
3,
|
|
885
|
+
n0,
|
|
886
|
+
_RSQIR,
|
|
887
|
+
0,
|
|
888
|
+
[_SC, _QC, _DV, _CI, _SCA],
|
|
889
|
+
[0, 0, 1, 0, 2],
|
|
890
|
+
];
|
|
891
|
+
var RequestServiceQuotaIncreaseResponse = [
|
|
892
|
+
3,
|
|
893
|
+
n0,
|
|
894
|
+
_RSQIRe,
|
|
895
|
+
0,
|
|
896
|
+
[_RQ],
|
|
897
|
+
[() => RequestedServiceQuotaChange],
|
|
898
|
+
];
|
|
899
|
+
var ResourceAlreadyExistsException = [
|
|
900
|
+
-3,
|
|
901
|
+
n0,
|
|
902
|
+
_RAEE,
|
|
903
|
+
{
|
|
904
|
+
[_e]: _c,
|
|
905
|
+
[_hE]: 400,
|
|
906
|
+
},
|
|
907
|
+
[_M],
|
|
908
|
+
[0],
|
|
909
|
+
];
|
|
910
|
+
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException, ResourceAlreadyExistsException$1);
|
|
911
|
+
var ServiceException = [
|
|
912
|
+
-3,
|
|
913
|
+
n0,
|
|
914
|
+
_SE,
|
|
915
|
+
{
|
|
916
|
+
[_e]: _s,
|
|
917
|
+
[_hE]: 500,
|
|
918
|
+
},
|
|
919
|
+
[_M],
|
|
920
|
+
[0],
|
|
921
|
+
];
|
|
922
|
+
schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
|
|
923
|
+
var ServiceInfo = [3, n0, _SI, 0, [_SC, _SN], [0, 0]];
|
|
924
|
+
var ServiceQuota = [
|
|
925
|
+
3,
|
|
926
|
+
n0,
|
|
927
|
+
_SQ,
|
|
928
|
+
0,
|
|
929
|
+
[_SC, _SN, _QA, _QC, _QN, _V, _U, _A, _GQ, _UM, _P, _ER, _QAAL, _QCu, _D],
|
|
930
|
+
[0, 0, 0, 0, 0, 1, 0, 2, 2, () => MetricInfo, () => QuotaPeriod, () => ErrorReason, 0, () => QuotaContextInfo, 0],
|
|
931
|
+
];
|
|
932
|
+
var ServiceQuotaIncreaseRequestInTemplate = [
|
|
933
|
+
3,
|
|
934
|
+
n0,
|
|
935
|
+
_SQIRIT,
|
|
936
|
+
0,
|
|
937
|
+
[_SC, _SN, _QC, _QN, _DV, _AR, _U, _GQ],
|
|
938
|
+
[0, 0, 0, 0, 1, 0, 0, 2],
|
|
939
|
+
];
|
|
940
|
+
var ServiceQuotaTemplateNotInUseException = [
|
|
941
|
+
-3,
|
|
942
|
+
n0,
|
|
943
|
+
_SQTNIUE,
|
|
944
|
+
{
|
|
945
|
+
[_e]: _c,
|
|
946
|
+
[_hE]: 400,
|
|
947
|
+
},
|
|
948
|
+
[_M],
|
|
949
|
+
[0],
|
|
950
|
+
];
|
|
951
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaTemplateNotInUseException, ServiceQuotaTemplateNotInUseException$1);
|
|
952
|
+
var StartAutoManagementRequest = [
|
|
953
|
+
3,
|
|
954
|
+
n0,
|
|
955
|
+
_SAMR,
|
|
956
|
+
0,
|
|
957
|
+
[_OIL, _OIT, _NA, _EL],
|
|
958
|
+
[0, 0, 0, [2, n0, _EL, 0, 0, 64 | 0]],
|
|
959
|
+
];
|
|
960
|
+
var StartAutoManagementResponse = [3, n0, _SAMRt, 0, [], []];
|
|
961
|
+
var StopAutoManagementRequest = [3, n0, _SAMRto, 0, [], []];
|
|
962
|
+
var StopAutoManagementResponse = [3, n0, _SAMRtop, 0, [], []];
|
|
963
|
+
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
964
|
+
var TagPolicyViolationException = [
|
|
965
|
+
-3,
|
|
966
|
+
n0,
|
|
967
|
+
_TPVE,
|
|
968
|
+
{
|
|
969
|
+
[_e]: _c,
|
|
970
|
+
[_hE]: 401,
|
|
971
|
+
},
|
|
972
|
+
[_M],
|
|
973
|
+
[0],
|
|
974
|
+
];
|
|
975
|
+
schema.TypeRegistry.for(n0).registerError(TagPolicyViolationException, TagPolicyViolationException$1);
|
|
976
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, () => InputTags]];
|
|
977
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
978
|
+
var TemplatesNotAvailableInRegionException = [
|
|
979
|
+
-3,
|
|
980
|
+
n0,
|
|
981
|
+
_TNAIRE,
|
|
982
|
+
{
|
|
983
|
+
[_e]: _c,
|
|
984
|
+
[_hE]: 404,
|
|
985
|
+
},
|
|
986
|
+
[_M],
|
|
987
|
+
[0],
|
|
988
|
+
];
|
|
989
|
+
schema.TypeRegistry.for(n0).registerError(TemplatesNotAvailableInRegionException, TemplatesNotAvailableInRegionException$1);
|
|
990
|
+
var TooManyRequestsException = [
|
|
991
|
+
-3,
|
|
992
|
+
n0,
|
|
993
|
+
_TMRE,
|
|
994
|
+
{
|
|
995
|
+
[_e]: _c,
|
|
996
|
+
[_hE]: 429,
|
|
997
|
+
},
|
|
998
|
+
[_M],
|
|
999
|
+
[0],
|
|
1000
|
+
];
|
|
1001
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
|
|
1002
|
+
var TooManyTagsException = [
|
|
1003
|
+
-3,
|
|
1004
|
+
n0,
|
|
1005
|
+
_TMTE,
|
|
1006
|
+
{
|
|
1007
|
+
[_e]: _c,
|
|
1008
|
+
[_hE]: 400,
|
|
1009
|
+
},
|
|
1010
|
+
[_M],
|
|
1011
|
+
[0],
|
|
1012
|
+
];
|
|
1013
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
|
|
1014
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
1015
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1016
|
+
var UpdateAutoManagementRequest = [
|
|
1017
|
+
3,
|
|
1018
|
+
n0,
|
|
1019
|
+
_UAMR,
|
|
1020
|
+
0,
|
|
1021
|
+
[_OIT, _NA, _EL],
|
|
1022
|
+
[0, 0, [2, n0, _EL, 0, 0, 64 | 0]],
|
|
1023
|
+
];
|
|
1024
|
+
var UpdateAutoManagementResponse = [3, n0, _UAMRp, 0, [], []];
|
|
1025
|
+
var ServiceQuotasServiceException = [-3, _sm, "ServiceQuotasServiceException", 0, [], []];
|
|
1026
|
+
schema.TypeRegistry.for(_sm).registerError(ServiceQuotasServiceException, ServiceQuotasServiceException$1);
|
|
1027
|
+
var InputTags = [1, n0, _IT, 0, () => Tag];
|
|
1028
|
+
var OutputTags = [1, n0, _OT, 0, () => Tag];
|
|
1029
|
+
var QuotaInfoList = [1, n0, _QIL, 0, () => QuotaInfo];
|
|
1030
|
+
var RequestedServiceQuotaChangeHistoryListDefinition = [
|
|
1031
|
+
1,
|
|
1032
|
+
n0,
|
|
1033
|
+
_RSQCHLD,
|
|
1034
|
+
0,
|
|
1035
|
+
() => RequestedServiceQuotaChange,
|
|
1036
|
+
];
|
|
1037
|
+
var ServiceInfoListDefinition = [1, n0, _SILD, 0, () => ServiceInfo];
|
|
1038
|
+
var ServiceQuotaIncreaseRequestInTemplateList = [
|
|
1039
|
+
1,
|
|
1040
|
+
n0,
|
|
1041
|
+
_SQIRITL,
|
|
1042
|
+
0,
|
|
1043
|
+
() => ServiceQuotaIncreaseRequestInTemplate,
|
|
1044
|
+
];
|
|
1045
|
+
var ServiceQuotaListDefinition = [1, n0, _SQLD, 0, () => ServiceQuota];
|
|
1046
|
+
var ExclusionQuotaList = [2, n0, _EQL, 0, 0, () => QuotaInfoList];
|
|
1047
|
+
var AssociateServiceQuotaTemplate = [
|
|
1048
|
+
9,
|
|
1049
|
+
n0,
|
|
1050
|
+
_ASQT,
|
|
1051
|
+
0,
|
|
1052
|
+
() => AssociateServiceQuotaTemplateRequest,
|
|
1053
|
+
() => AssociateServiceQuotaTemplateResponse,
|
|
1054
|
+
];
|
|
1055
|
+
var CreateSupportCase = [
|
|
1056
|
+
9,
|
|
1057
|
+
n0,
|
|
1058
|
+
_CSC,
|
|
1059
|
+
0,
|
|
1060
|
+
() => CreateSupportCaseRequest,
|
|
1061
|
+
() => CreateSupportCaseResponse,
|
|
1062
|
+
];
|
|
1063
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplate = [
|
|
1064
|
+
9,
|
|
1065
|
+
n0,
|
|
1066
|
+
_DSQIRFT,
|
|
1067
|
+
0,
|
|
1068
|
+
() => DeleteServiceQuotaIncreaseRequestFromTemplateRequest,
|
|
1069
|
+
() => DeleteServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
1070
|
+
];
|
|
1071
|
+
var DisassociateServiceQuotaTemplate = [
|
|
1072
|
+
9,
|
|
1073
|
+
n0,
|
|
1074
|
+
_DSQT,
|
|
1075
|
+
0,
|
|
1076
|
+
() => DisassociateServiceQuotaTemplateRequest,
|
|
1077
|
+
() => DisassociateServiceQuotaTemplateResponse,
|
|
1078
|
+
];
|
|
1079
|
+
var GetAssociationForServiceQuotaTemplate = [
|
|
1080
|
+
9,
|
|
1081
|
+
n0,
|
|
1082
|
+
_GAFSQT,
|
|
1083
|
+
0,
|
|
1084
|
+
() => GetAssociationForServiceQuotaTemplateRequest,
|
|
1085
|
+
() => GetAssociationForServiceQuotaTemplateResponse,
|
|
1086
|
+
];
|
|
1087
|
+
var GetAutoManagementConfiguration = [
|
|
1088
|
+
9,
|
|
1089
|
+
n0,
|
|
1090
|
+
_GAMC,
|
|
1091
|
+
0,
|
|
1092
|
+
() => GetAutoManagementConfigurationRequest,
|
|
1093
|
+
() => GetAutoManagementConfigurationResponse,
|
|
1094
|
+
];
|
|
1095
|
+
var GetAWSDefaultServiceQuota = [
|
|
1096
|
+
9,
|
|
1097
|
+
n0,
|
|
1098
|
+
_GAWSDSQ,
|
|
1099
|
+
0,
|
|
1100
|
+
() => GetAWSDefaultServiceQuotaRequest,
|
|
1101
|
+
() => GetAWSDefaultServiceQuotaResponse,
|
|
1102
|
+
];
|
|
1103
|
+
var GetRequestedServiceQuotaChange = [
|
|
1104
|
+
9,
|
|
1105
|
+
n0,
|
|
1106
|
+
_GRSQC,
|
|
1107
|
+
0,
|
|
1108
|
+
() => GetRequestedServiceQuotaChangeRequest,
|
|
1109
|
+
() => GetRequestedServiceQuotaChangeResponse,
|
|
1110
|
+
];
|
|
1111
|
+
var GetServiceQuota = [
|
|
1112
|
+
9,
|
|
1113
|
+
n0,
|
|
1114
|
+
_GSQ,
|
|
1115
|
+
0,
|
|
1116
|
+
() => GetServiceQuotaRequest,
|
|
1117
|
+
() => GetServiceQuotaResponse,
|
|
1118
|
+
];
|
|
1119
|
+
var GetServiceQuotaIncreaseRequestFromTemplate = [
|
|
1120
|
+
9,
|
|
1121
|
+
n0,
|
|
1122
|
+
_GSQIRFT,
|
|
1123
|
+
0,
|
|
1124
|
+
() => GetServiceQuotaIncreaseRequestFromTemplateRequest,
|
|
1125
|
+
() => GetServiceQuotaIncreaseRequestFromTemplateResponse,
|
|
1126
|
+
];
|
|
1127
|
+
var ListAWSDefaultServiceQuotas = [
|
|
1128
|
+
9,
|
|
1129
|
+
n0,
|
|
1130
|
+
_LAWSDSQ,
|
|
1131
|
+
0,
|
|
1132
|
+
() => ListAWSDefaultServiceQuotasRequest,
|
|
1133
|
+
() => ListAWSDefaultServiceQuotasResponse,
|
|
1134
|
+
];
|
|
1135
|
+
var ListRequestedServiceQuotaChangeHistory = [
|
|
1136
|
+
9,
|
|
1137
|
+
n0,
|
|
1138
|
+
_LRSQCH,
|
|
1139
|
+
0,
|
|
1140
|
+
() => ListRequestedServiceQuotaChangeHistoryRequest,
|
|
1141
|
+
() => ListRequestedServiceQuotaChangeHistoryResponse,
|
|
1142
|
+
];
|
|
1143
|
+
var ListRequestedServiceQuotaChangeHistoryByQuota = [
|
|
1144
|
+
9,
|
|
1145
|
+
n0,
|
|
1146
|
+
_LRSQCHBQ,
|
|
1147
|
+
0,
|
|
1148
|
+
() => ListRequestedServiceQuotaChangeHistoryByQuotaRequest,
|
|
1149
|
+
() => ListRequestedServiceQuotaChangeHistoryByQuotaResponse,
|
|
1150
|
+
];
|
|
1151
|
+
var ListServiceQuotaIncreaseRequestsInTemplate = [
|
|
1152
|
+
9,
|
|
1153
|
+
n0,
|
|
1154
|
+
_LSQIRIT,
|
|
1155
|
+
0,
|
|
1156
|
+
() => ListServiceQuotaIncreaseRequestsInTemplateRequest,
|
|
1157
|
+
() => ListServiceQuotaIncreaseRequestsInTemplateResponse,
|
|
1158
|
+
];
|
|
1159
|
+
var ListServiceQuotas = [
|
|
1160
|
+
9,
|
|
1161
|
+
n0,
|
|
1162
|
+
_LSQ,
|
|
1163
|
+
0,
|
|
1164
|
+
() => ListServiceQuotasRequest,
|
|
1165
|
+
() => ListServiceQuotasResponse,
|
|
1166
|
+
];
|
|
1167
|
+
var ListServices = [9, n0, _LS, 0, () => ListServicesRequest, () => ListServicesResponse];
|
|
1168
|
+
var ListTagsForResource = [
|
|
1169
|
+
9,
|
|
1170
|
+
n0,
|
|
1171
|
+
_LTFR,
|
|
1172
|
+
0,
|
|
1173
|
+
() => ListTagsForResourceRequest,
|
|
1174
|
+
() => ListTagsForResourceResponse,
|
|
1175
|
+
];
|
|
1176
|
+
var PutServiceQuotaIncreaseRequestIntoTemplate = [
|
|
1177
|
+
9,
|
|
1178
|
+
n0,
|
|
1179
|
+
_PSQIRIT,
|
|
1180
|
+
0,
|
|
1181
|
+
() => PutServiceQuotaIncreaseRequestIntoTemplateRequest,
|
|
1182
|
+
() => PutServiceQuotaIncreaseRequestIntoTemplateResponse,
|
|
1183
|
+
];
|
|
1184
|
+
var RequestServiceQuotaIncrease = [
|
|
1185
|
+
9,
|
|
1186
|
+
n0,
|
|
1187
|
+
_RSQI,
|
|
1188
|
+
0,
|
|
1189
|
+
() => RequestServiceQuotaIncreaseRequest,
|
|
1190
|
+
() => RequestServiceQuotaIncreaseResponse,
|
|
1191
|
+
];
|
|
1192
|
+
var StartAutoManagement = [
|
|
1193
|
+
9,
|
|
1194
|
+
n0,
|
|
1195
|
+
_SAM,
|
|
1196
|
+
0,
|
|
1197
|
+
() => StartAutoManagementRequest,
|
|
1198
|
+
() => StartAutoManagementResponse,
|
|
1199
|
+
];
|
|
1200
|
+
var StopAutoManagement = [
|
|
1201
|
+
9,
|
|
1202
|
+
n0,
|
|
1203
|
+
_SAMt,
|
|
1204
|
+
0,
|
|
1205
|
+
() => StopAutoManagementRequest,
|
|
1206
|
+
() => StopAutoManagementResponse,
|
|
1207
|
+
];
|
|
1208
|
+
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
|
|
1209
|
+
var UntagResource = [
|
|
1210
|
+
9,
|
|
1211
|
+
n0,
|
|
1212
|
+
_UR,
|
|
1213
|
+
0,
|
|
1214
|
+
() => UntagResourceRequest,
|
|
1215
|
+
() => UntagResourceResponse,
|
|
1216
|
+
];
|
|
1217
|
+
var UpdateAutoManagement = [
|
|
1218
|
+
9,
|
|
1219
|
+
n0,
|
|
1220
|
+
_UAM,
|
|
1221
|
+
0,
|
|
1222
|
+
() => UpdateAutoManagementRequest,
|
|
1223
|
+
() => UpdateAutoManagementResponse,
|
|
1224
|
+
];
|
|
1263
1225
|
|
|
1264
1226
|
class AssociateServiceQuotaTemplateCommand extends smithyClient.Command
|
|
1265
1227
|
.classBuilder()
|
|
1266
1228
|
.ep(commonParams)
|
|
1267
1229
|
.m(function (Command, cs, config, o) {
|
|
1268
|
-
return [
|
|
1269
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1270
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1271
|
-
];
|
|
1230
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1272
1231
|
})
|
|
1273
1232
|
.s("ServiceQuotasV20190624", "AssociateServiceQuotaTemplate", {})
|
|
1274
1233
|
.n("ServiceQuotasClient", "AssociateServiceQuotaTemplateCommand")
|
|
1275
|
-
.
|
|
1276
|
-
.ser(se_AssociateServiceQuotaTemplateCommand)
|
|
1277
|
-
.de(de_AssociateServiceQuotaTemplateCommand)
|
|
1234
|
+
.sc(AssociateServiceQuotaTemplate)
|
|
1278
1235
|
.build() {
|
|
1279
1236
|
}
|
|
1280
1237
|
|
|
@@ -1282,16 +1239,11 @@ class CreateSupportCaseCommand extends smithyClient.Command
|
|
|
1282
1239
|
.classBuilder()
|
|
1283
1240
|
.ep(commonParams)
|
|
1284
1241
|
.m(function (Command, cs, config, o) {
|
|
1285
|
-
return [
|
|
1286
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1287
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1288
|
-
];
|
|
1242
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1289
1243
|
})
|
|
1290
1244
|
.s("ServiceQuotasV20190624", "CreateSupportCase", {})
|
|
1291
1245
|
.n("ServiceQuotasClient", "CreateSupportCaseCommand")
|
|
1292
|
-
.
|
|
1293
|
-
.ser(se_CreateSupportCaseCommand)
|
|
1294
|
-
.de(de_CreateSupportCaseCommand)
|
|
1246
|
+
.sc(CreateSupportCase)
|
|
1295
1247
|
.build() {
|
|
1296
1248
|
}
|
|
1297
1249
|
|
|
@@ -1299,16 +1251,11 @@ class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends smithyClient.
|
|
|
1299
1251
|
.classBuilder()
|
|
1300
1252
|
.ep(commonParams)
|
|
1301
1253
|
.m(function (Command, cs, config, o) {
|
|
1302
|
-
return [
|
|
1303
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1304
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1305
|
-
];
|
|
1254
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1306
1255
|
})
|
|
1307
1256
|
.s("ServiceQuotasV20190624", "DeleteServiceQuotaIncreaseRequestFromTemplate", {})
|
|
1308
1257
|
.n("ServiceQuotasClient", "DeleteServiceQuotaIncreaseRequestFromTemplateCommand")
|
|
1309
|
-
.
|
|
1310
|
-
.ser(se_DeleteServiceQuotaIncreaseRequestFromTemplateCommand)
|
|
1311
|
-
.de(de_DeleteServiceQuotaIncreaseRequestFromTemplateCommand)
|
|
1258
|
+
.sc(DeleteServiceQuotaIncreaseRequestFromTemplate)
|
|
1312
1259
|
.build() {
|
|
1313
1260
|
}
|
|
1314
1261
|
|
|
@@ -1316,16 +1263,11 @@ class DisassociateServiceQuotaTemplateCommand extends smithyClient.Command
|
|
|
1316
1263
|
.classBuilder()
|
|
1317
1264
|
.ep(commonParams)
|
|
1318
1265
|
.m(function (Command, cs, config, o) {
|
|
1319
|
-
return [
|
|
1320
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1321
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1322
|
-
];
|
|
1266
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1323
1267
|
})
|
|
1324
1268
|
.s("ServiceQuotasV20190624", "DisassociateServiceQuotaTemplate", {})
|
|
1325
1269
|
.n("ServiceQuotasClient", "DisassociateServiceQuotaTemplateCommand")
|
|
1326
|
-
.
|
|
1327
|
-
.ser(se_DisassociateServiceQuotaTemplateCommand)
|
|
1328
|
-
.de(de_DisassociateServiceQuotaTemplateCommand)
|
|
1270
|
+
.sc(DisassociateServiceQuotaTemplate)
|
|
1329
1271
|
.build() {
|
|
1330
1272
|
}
|
|
1331
1273
|
|
|
@@ -1333,16 +1275,11 @@ class GetAssociationForServiceQuotaTemplateCommand extends smithyClient.Command
|
|
|
1333
1275
|
.classBuilder()
|
|
1334
1276
|
.ep(commonParams)
|
|
1335
1277
|
.m(function (Command, cs, config, o) {
|
|
1336
|
-
return [
|
|
1337
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1338
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1339
|
-
];
|
|
1278
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1340
1279
|
})
|
|
1341
1280
|
.s("ServiceQuotasV20190624", "GetAssociationForServiceQuotaTemplate", {})
|
|
1342
1281
|
.n("ServiceQuotasClient", "GetAssociationForServiceQuotaTemplateCommand")
|
|
1343
|
-
.
|
|
1344
|
-
.ser(se_GetAssociationForServiceQuotaTemplateCommand)
|
|
1345
|
-
.de(de_GetAssociationForServiceQuotaTemplateCommand)
|
|
1282
|
+
.sc(GetAssociationForServiceQuotaTemplate)
|
|
1346
1283
|
.build() {
|
|
1347
1284
|
}
|
|
1348
1285
|
|
|
@@ -1350,16 +1287,11 @@ class GetAutoManagementConfigurationCommand extends smithyClient.Command
|
|
|
1350
1287
|
.classBuilder()
|
|
1351
1288
|
.ep(commonParams)
|
|
1352
1289
|
.m(function (Command, cs, config, o) {
|
|
1353
|
-
return [
|
|
1354
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1355
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1356
|
-
];
|
|
1290
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1357
1291
|
})
|
|
1358
1292
|
.s("ServiceQuotasV20190624", "GetAutoManagementConfiguration", {})
|
|
1359
1293
|
.n("ServiceQuotasClient", "GetAutoManagementConfigurationCommand")
|
|
1360
|
-
.
|
|
1361
|
-
.ser(se_GetAutoManagementConfigurationCommand)
|
|
1362
|
-
.de(de_GetAutoManagementConfigurationCommand)
|
|
1294
|
+
.sc(GetAutoManagementConfiguration)
|
|
1363
1295
|
.build() {
|
|
1364
1296
|
}
|
|
1365
1297
|
|
|
@@ -1367,16 +1299,11 @@ class GetAWSDefaultServiceQuotaCommand extends smithyClient.Command
|
|
|
1367
1299
|
.classBuilder()
|
|
1368
1300
|
.ep(commonParams)
|
|
1369
1301
|
.m(function (Command, cs, config, o) {
|
|
1370
|
-
return [
|
|
1371
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1372
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1373
|
-
];
|
|
1302
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1374
1303
|
})
|
|
1375
1304
|
.s("ServiceQuotasV20190624", "GetAWSDefaultServiceQuota", {})
|
|
1376
1305
|
.n("ServiceQuotasClient", "GetAWSDefaultServiceQuotaCommand")
|
|
1377
|
-
.
|
|
1378
|
-
.ser(se_GetAWSDefaultServiceQuotaCommand)
|
|
1379
|
-
.de(de_GetAWSDefaultServiceQuotaCommand)
|
|
1306
|
+
.sc(GetAWSDefaultServiceQuota)
|
|
1380
1307
|
.build() {
|
|
1381
1308
|
}
|
|
1382
1309
|
|
|
@@ -1384,16 +1311,11 @@ class GetRequestedServiceQuotaChangeCommand extends smithyClient.Command
|
|
|
1384
1311
|
.classBuilder()
|
|
1385
1312
|
.ep(commonParams)
|
|
1386
1313
|
.m(function (Command, cs, config, o) {
|
|
1387
|
-
return [
|
|
1388
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1389
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1390
|
-
];
|
|
1314
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1391
1315
|
})
|
|
1392
1316
|
.s("ServiceQuotasV20190624", "GetRequestedServiceQuotaChange", {})
|
|
1393
1317
|
.n("ServiceQuotasClient", "GetRequestedServiceQuotaChangeCommand")
|
|
1394
|
-
.
|
|
1395
|
-
.ser(se_GetRequestedServiceQuotaChangeCommand)
|
|
1396
|
-
.de(de_GetRequestedServiceQuotaChangeCommand)
|
|
1318
|
+
.sc(GetRequestedServiceQuotaChange)
|
|
1397
1319
|
.build() {
|
|
1398
1320
|
}
|
|
1399
1321
|
|
|
@@ -1401,16 +1323,11 @@ class GetServiceQuotaCommand extends smithyClient.Command
|
|
|
1401
1323
|
.classBuilder()
|
|
1402
1324
|
.ep(commonParams)
|
|
1403
1325
|
.m(function (Command, cs, config, o) {
|
|
1404
|
-
return [
|
|
1405
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1406
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1407
|
-
];
|
|
1326
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1408
1327
|
})
|
|
1409
1328
|
.s("ServiceQuotasV20190624", "GetServiceQuota", {})
|
|
1410
1329
|
.n("ServiceQuotasClient", "GetServiceQuotaCommand")
|
|
1411
|
-
.
|
|
1412
|
-
.ser(se_GetServiceQuotaCommand)
|
|
1413
|
-
.de(de_GetServiceQuotaCommand)
|
|
1330
|
+
.sc(GetServiceQuota)
|
|
1414
1331
|
.build() {
|
|
1415
1332
|
}
|
|
1416
1333
|
|
|
@@ -1418,16 +1335,11 @@ class GetServiceQuotaIncreaseRequestFromTemplateCommand extends smithyClient.Com
|
|
|
1418
1335
|
.classBuilder()
|
|
1419
1336
|
.ep(commonParams)
|
|
1420
1337
|
.m(function (Command, cs, config, o) {
|
|
1421
|
-
return [
|
|
1422
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1423
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1424
|
-
];
|
|
1338
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1425
1339
|
})
|
|
1426
1340
|
.s("ServiceQuotasV20190624", "GetServiceQuotaIncreaseRequestFromTemplate", {})
|
|
1427
1341
|
.n("ServiceQuotasClient", "GetServiceQuotaIncreaseRequestFromTemplateCommand")
|
|
1428
|
-
.
|
|
1429
|
-
.ser(se_GetServiceQuotaIncreaseRequestFromTemplateCommand)
|
|
1430
|
-
.de(de_GetServiceQuotaIncreaseRequestFromTemplateCommand)
|
|
1342
|
+
.sc(GetServiceQuotaIncreaseRequestFromTemplate)
|
|
1431
1343
|
.build() {
|
|
1432
1344
|
}
|
|
1433
1345
|
|
|
@@ -1435,16 +1347,11 @@ class ListAWSDefaultServiceQuotasCommand extends smithyClient.Command
|
|
|
1435
1347
|
.classBuilder()
|
|
1436
1348
|
.ep(commonParams)
|
|
1437
1349
|
.m(function (Command, cs, config, o) {
|
|
1438
|
-
return [
|
|
1439
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1440
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1441
|
-
];
|
|
1350
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1442
1351
|
})
|
|
1443
1352
|
.s("ServiceQuotasV20190624", "ListAWSDefaultServiceQuotas", {})
|
|
1444
1353
|
.n("ServiceQuotasClient", "ListAWSDefaultServiceQuotasCommand")
|
|
1445
|
-
.
|
|
1446
|
-
.ser(se_ListAWSDefaultServiceQuotasCommand)
|
|
1447
|
-
.de(de_ListAWSDefaultServiceQuotasCommand)
|
|
1354
|
+
.sc(ListAWSDefaultServiceQuotas)
|
|
1448
1355
|
.build() {
|
|
1449
1356
|
}
|
|
1450
1357
|
|
|
@@ -1452,16 +1359,11 @@ class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends smithyClient.
|
|
|
1452
1359
|
.classBuilder()
|
|
1453
1360
|
.ep(commonParams)
|
|
1454
1361
|
.m(function (Command, cs, config, o) {
|
|
1455
|
-
return [
|
|
1456
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1457
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1458
|
-
];
|
|
1362
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1459
1363
|
})
|
|
1460
1364
|
.s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistoryByQuota", {})
|
|
1461
1365
|
.n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryByQuotaCommand")
|
|
1462
|
-
.
|
|
1463
|
-
.ser(se_ListRequestedServiceQuotaChangeHistoryByQuotaCommand)
|
|
1464
|
-
.de(de_ListRequestedServiceQuotaChangeHistoryByQuotaCommand)
|
|
1366
|
+
.sc(ListRequestedServiceQuotaChangeHistoryByQuota)
|
|
1465
1367
|
.build() {
|
|
1466
1368
|
}
|
|
1467
1369
|
|
|
@@ -1469,16 +1371,11 @@ class ListRequestedServiceQuotaChangeHistoryCommand extends smithyClient.Command
|
|
|
1469
1371
|
.classBuilder()
|
|
1470
1372
|
.ep(commonParams)
|
|
1471
1373
|
.m(function (Command, cs, config, o) {
|
|
1472
|
-
return [
|
|
1473
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1474
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1475
|
-
];
|
|
1374
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1476
1375
|
})
|
|
1477
1376
|
.s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistory", {})
|
|
1478
1377
|
.n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryCommand")
|
|
1479
|
-
.
|
|
1480
|
-
.ser(se_ListRequestedServiceQuotaChangeHistoryCommand)
|
|
1481
|
-
.de(de_ListRequestedServiceQuotaChangeHistoryCommand)
|
|
1378
|
+
.sc(ListRequestedServiceQuotaChangeHistory)
|
|
1482
1379
|
.build() {
|
|
1483
1380
|
}
|
|
1484
1381
|
|
|
@@ -1486,16 +1383,11 @@ class ListServiceQuotaIncreaseRequestsInTemplateCommand extends smithyClient.Com
|
|
|
1486
1383
|
.classBuilder()
|
|
1487
1384
|
.ep(commonParams)
|
|
1488
1385
|
.m(function (Command, cs, config, o) {
|
|
1489
|
-
return [
|
|
1490
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1491
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1492
|
-
];
|
|
1386
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1493
1387
|
})
|
|
1494
1388
|
.s("ServiceQuotasV20190624", "ListServiceQuotaIncreaseRequestsInTemplate", {})
|
|
1495
1389
|
.n("ServiceQuotasClient", "ListServiceQuotaIncreaseRequestsInTemplateCommand")
|
|
1496
|
-
.
|
|
1497
|
-
.ser(se_ListServiceQuotaIncreaseRequestsInTemplateCommand)
|
|
1498
|
-
.de(de_ListServiceQuotaIncreaseRequestsInTemplateCommand)
|
|
1390
|
+
.sc(ListServiceQuotaIncreaseRequestsInTemplate)
|
|
1499
1391
|
.build() {
|
|
1500
1392
|
}
|
|
1501
1393
|
|
|
@@ -1503,16 +1395,11 @@ class ListServiceQuotasCommand extends smithyClient.Command
|
|
|
1503
1395
|
.classBuilder()
|
|
1504
1396
|
.ep(commonParams)
|
|
1505
1397
|
.m(function (Command, cs, config, o) {
|
|
1506
|
-
return [
|
|
1507
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1508
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1509
|
-
];
|
|
1398
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1510
1399
|
})
|
|
1511
1400
|
.s("ServiceQuotasV20190624", "ListServiceQuotas", {})
|
|
1512
1401
|
.n("ServiceQuotasClient", "ListServiceQuotasCommand")
|
|
1513
|
-
.
|
|
1514
|
-
.ser(se_ListServiceQuotasCommand)
|
|
1515
|
-
.de(de_ListServiceQuotasCommand)
|
|
1402
|
+
.sc(ListServiceQuotas)
|
|
1516
1403
|
.build() {
|
|
1517
1404
|
}
|
|
1518
1405
|
|
|
@@ -1520,16 +1407,11 @@ class ListServicesCommand extends smithyClient.Command
|
|
|
1520
1407
|
.classBuilder()
|
|
1521
1408
|
.ep(commonParams)
|
|
1522
1409
|
.m(function (Command, cs, config, o) {
|
|
1523
|
-
return [
|
|
1524
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1525
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1526
|
-
];
|
|
1410
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1527
1411
|
})
|
|
1528
1412
|
.s("ServiceQuotasV20190624", "ListServices", {})
|
|
1529
1413
|
.n("ServiceQuotasClient", "ListServicesCommand")
|
|
1530
|
-
.
|
|
1531
|
-
.ser(se_ListServicesCommand)
|
|
1532
|
-
.de(de_ListServicesCommand)
|
|
1414
|
+
.sc(ListServices)
|
|
1533
1415
|
.build() {
|
|
1534
1416
|
}
|
|
1535
1417
|
|
|
@@ -1537,16 +1419,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1537
1419
|
.classBuilder()
|
|
1538
1420
|
.ep(commonParams)
|
|
1539
1421
|
.m(function (Command, cs, config, o) {
|
|
1540
|
-
return [
|
|
1541
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1542
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1543
|
-
];
|
|
1422
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1544
1423
|
})
|
|
1545
1424
|
.s("ServiceQuotasV20190624", "ListTagsForResource", {})
|
|
1546
1425
|
.n("ServiceQuotasClient", "ListTagsForResourceCommand")
|
|
1547
|
-
.
|
|
1548
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1549
|
-
.de(de_ListTagsForResourceCommand)
|
|
1426
|
+
.sc(ListTagsForResource)
|
|
1550
1427
|
.build() {
|
|
1551
1428
|
}
|
|
1552
1429
|
|
|
@@ -1554,16 +1431,11 @@ class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends smithyClient.Com
|
|
|
1554
1431
|
.classBuilder()
|
|
1555
1432
|
.ep(commonParams)
|
|
1556
1433
|
.m(function (Command, cs, config, o) {
|
|
1557
|
-
return [
|
|
1558
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1559
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1560
|
-
];
|
|
1434
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1561
1435
|
})
|
|
1562
1436
|
.s("ServiceQuotasV20190624", "PutServiceQuotaIncreaseRequestIntoTemplate", {})
|
|
1563
1437
|
.n("ServiceQuotasClient", "PutServiceQuotaIncreaseRequestIntoTemplateCommand")
|
|
1564
|
-
.
|
|
1565
|
-
.ser(se_PutServiceQuotaIncreaseRequestIntoTemplateCommand)
|
|
1566
|
-
.de(de_PutServiceQuotaIncreaseRequestIntoTemplateCommand)
|
|
1438
|
+
.sc(PutServiceQuotaIncreaseRequestIntoTemplate)
|
|
1567
1439
|
.build() {
|
|
1568
1440
|
}
|
|
1569
1441
|
|
|
@@ -1571,16 +1443,11 @@ class RequestServiceQuotaIncreaseCommand extends smithyClient.Command
|
|
|
1571
1443
|
.classBuilder()
|
|
1572
1444
|
.ep(commonParams)
|
|
1573
1445
|
.m(function (Command, cs, config, o) {
|
|
1574
|
-
return [
|
|
1575
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1576
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1577
|
-
];
|
|
1446
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1578
1447
|
})
|
|
1579
1448
|
.s("ServiceQuotasV20190624", "RequestServiceQuotaIncrease", {})
|
|
1580
1449
|
.n("ServiceQuotasClient", "RequestServiceQuotaIncreaseCommand")
|
|
1581
|
-
.
|
|
1582
|
-
.ser(se_RequestServiceQuotaIncreaseCommand)
|
|
1583
|
-
.de(de_RequestServiceQuotaIncreaseCommand)
|
|
1450
|
+
.sc(RequestServiceQuotaIncrease)
|
|
1584
1451
|
.build() {
|
|
1585
1452
|
}
|
|
1586
1453
|
|
|
@@ -1588,16 +1455,11 @@ class StartAutoManagementCommand extends smithyClient.Command
|
|
|
1588
1455
|
.classBuilder()
|
|
1589
1456
|
.ep(commonParams)
|
|
1590
1457
|
.m(function (Command, cs, config, o) {
|
|
1591
|
-
return [
|
|
1592
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1593
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1594
|
-
];
|
|
1458
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1595
1459
|
})
|
|
1596
1460
|
.s("ServiceQuotasV20190624", "StartAutoManagement", {})
|
|
1597
1461
|
.n("ServiceQuotasClient", "StartAutoManagementCommand")
|
|
1598
|
-
.
|
|
1599
|
-
.ser(se_StartAutoManagementCommand)
|
|
1600
|
-
.de(de_StartAutoManagementCommand)
|
|
1462
|
+
.sc(StartAutoManagement)
|
|
1601
1463
|
.build() {
|
|
1602
1464
|
}
|
|
1603
1465
|
|
|
@@ -1605,16 +1467,11 @@ class StopAutoManagementCommand extends smithyClient.Command
|
|
|
1605
1467
|
.classBuilder()
|
|
1606
1468
|
.ep(commonParams)
|
|
1607
1469
|
.m(function (Command, cs, config, o) {
|
|
1608
|
-
return [
|
|
1609
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1610
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1611
|
-
];
|
|
1470
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1612
1471
|
})
|
|
1613
1472
|
.s("ServiceQuotasV20190624", "StopAutoManagement", {})
|
|
1614
1473
|
.n("ServiceQuotasClient", "StopAutoManagementCommand")
|
|
1615
|
-
.
|
|
1616
|
-
.ser(se_StopAutoManagementCommand)
|
|
1617
|
-
.de(de_StopAutoManagementCommand)
|
|
1474
|
+
.sc(StopAutoManagement)
|
|
1618
1475
|
.build() {
|
|
1619
1476
|
}
|
|
1620
1477
|
|
|
@@ -1622,16 +1479,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1622
1479
|
.classBuilder()
|
|
1623
1480
|
.ep(commonParams)
|
|
1624
1481
|
.m(function (Command, cs, config, o) {
|
|
1625
|
-
return [
|
|
1626
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1627
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1628
|
-
];
|
|
1482
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1629
1483
|
})
|
|
1630
1484
|
.s("ServiceQuotasV20190624", "TagResource", {})
|
|
1631
1485
|
.n("ServiceQuotasClient", "TagResourceCommand")
|
|
1632
|
-
.
|
|
1633
|
-
.ser(se_TagResourceCommand)
|
|
1634
|
-
.de(de_TagResourceCommand)
|
|
1486
|
+
.sc(TagResource)
|
|
1635
1487
|
.build() {
|
|
1636
1488
|
}
|
|
1637
1489
|
|
|
@@ -1639,16 +1491,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1639
1491
|
.classBuilder()
|
|
1640
1492
|
.ep(commonParams)
|
|
1641
1493
|
.m(function (Command, cs, config, o) {
|
|
1642
|
-
return [
|
|
1643
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1644
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1645
|
-
];
|
|
1494
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1646
1495
|
})
|
|
1647
1496
|
.s("ServiceQuotasV20190624", "UntagResource", {})
|
|
1648
1497
|
.n("ServiceQuotasClient", "UntagResourceCommand")
|
|
1649
|
-
.
|
|
1650
|
-
.ser(se_UntagResourceCommand)
|
|
1651
|
-
.de(de_UntagResourceCommand)
|
|
1498
|
+
.sc(UntagResource)
|
|
1652
1499
|
.build() {
|
|
1653
1500
|
}
|
|
1654
1501
|
|
|
@@ -1656,16 +1503,11 @@ class UpdateAutoManagementCommand extends smithyClient.Command
|
|
|
1656
1503
|
.classBuilder()
|
|
1657
1504
|
.ep(commonParams)
|
|
1658
1505
|
.m(function (Command, cs, config, o) {
|
|
1659
|
-
return [
|
|
1660
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1661
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1662
|
-
];
|
|
1506
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1663
1507
|
})
|
|
1664
1508
|
.s("ServiceQuotasV20190624", "UpdateAutoManagement", {})
|
|
1665
1509
|
.n("ServiceQuotasClient", "UpdateAutoManagementCommand")
|
|
1666
|
-
.
|
|
1667
|
-
.ser(se_UpdateAutoManagementCommand)
|
|
1668
|
-
.de(de_UpdateAutoManagementCommand)
|
|
1510
|
+
.sc(UpdateAutoManagement)
|
|
1669
1511
|
.build() {
|
|
1670
1512
|
}
|
|
1671
1513
|
|
|
@@ -1719,13 +1561,13 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1719
1561
|
enumerable: true,
|
|
1720
1562
|
get: function () { return smithyClient.Client; }
|
|
1721
1563
|
});
|
|
1722
|
-
exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException;
|
|
1723
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1564
|
+
exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException$1;
|
|
1565
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1724
1566
|
exports.AppliedLevelEnum = AppliedLevelEnum;
|
|
1725
1567
|
exports.AssociateServiceQuotaTemplateCommand = AssociateServiceQuotaTemplateCommand;
|
|
1726
1568
|
exports.CreateSupportCaseCommand = CreateSupportCaseCommand;
|
|
1727
1569
|
exports.DeleteServiceQuotaIncreaseRequestFromTemplateCommand = DeleteServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1728
|
-
exports.DependencyAccessDeniedException = DependencyAccessDeniedException;
|
|
1570
|
+
exports.DependencyAccessDeniedException = DependencyAccessDeniedException$1;
|
|
1729
1571
|
exports.DisassociateServiceQuotaTemplateCommand = DisassociateServiceQuotaTemplateCommand;
|
|
1730
1572
|
exports.ErrorCode = ErrorCode;
|
|
1731
1573
|
exports.GetAWSDefaultServiceQuotaCommand = GetAWSDefaultServiceQuotaCommand;
|
|
@@ -1734,9 +1576,9 @@ exports.GetAutoManagementConfigurationCommand = GetAutoManagementConfigurationCo
|
|
|
1734
1576
|
exports.GetRequestedServiceQuotaChangeCommand = GetRequestedServiceQuotaChangeCommand;
|
|
1735
1577
|
exports.GetServiceQuotaCommand = GetServiceQuotaCommand;
|
|
1736
1578
|
exports.GetServiceQuotaIncreaseRequestFromTemplateCommand = GetServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1737
|
-
exports.IllegalArgumentException = IllegalArgumentException;
|
|
1738
|
-
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
1739
|
-
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
1579
|
+
exports.IllegalArgumentException = IllegalArgumentException$1;
|
|
1580
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException$1;
|
|
1581
|
+
exports.InvalidResourceStateException = InvalidResourceStateException$1;
|
|
1740
1582
|
exports.ListAWSDefaultServiceQuotasCommand = ListAWSDefaultServiceQuotasCommand;
|
|
1741
1583
|
exports.ListRequestedServiceQuotaChangeHistoryByQuotaCommand = ListRequestedServiceQuotaChangeHistoryByQuotaCommand;
|
|
1742
1584
|
exports.ListRequestedServiceQuotaChangeHistoryCommand = ListRequestedServiceQuotaChangeHistoryCommand;
|
|
@@ -1744,32 +1586,32 @@ exports.ListServiceQuotaIncreaseRequestsInTemplateCommand = ListServiceQuotaIncr
|
|
|
1744
1586
|
exports.ListServiceQuotasCommand = ListServiceQuotasCommand;
|
|
1745
1587
|
exports.ListServicesCommand = ListServicesCommand;
|
|
1746
1588
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1747
|
-
exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
|
|
1748
|
-
exports.NoSuchResourceException = NoSuchResourceException;
|
|
1589
|
+
exports.NoAvailableOrganizationException = NoAvailableOrganizationException$1;
|
|
1590
|
+
exports.NoSuchResourceException = NoSuchResourceException$1;
|
|
1749
1591
|
exports.OptInLevel = OptInLevel;
|
|
1750
1592
|
exports.OptInStatus = OptInStatus;
|
|
1751
1593
|
exports.OptInType = OptInType;
|
|
1752
|
-
exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
|
|
1594
|
+
exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException$1;
|
|
1753
1595
|
exports.PeriodUnit = PeriodUnit;
|
|
1754
1596
|
exports.PutServiceQuotaIncreaseRequestIntoTemplateCommand = PutServiceQuotaIncreaseRequestIntoTemplateCommand;
|
|
1755
1597
|
exports.QuotaContextScope = QuotaContextScope;
|
|
1756
|
-
exports.QuotaExceededException = QuotaExceededException;
|
|
1598
|
+
exports.QuotaExceededException = QuotaExceededException$1;
|
|
1757
1599
|
exports.RequestServiceQuotaIncreaseCommand = RequestServiceQuotaIncreaseCommand;
|
|
1758
1600
|
exports.RequestStatus = RequestStatus;
|
|
1759
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1760
|
-
exports.ServiceException = ServiceException;
|
|
1601
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException$1;
|
|
1602
|
+
exports.ServiceException = ServiceException$1;
|
|
1761
1603
|
exports.ServiceQuotaTemplateAssociationStatus = ServiceQuotaTemplateAssociationStatus;
|
|
1762
|
-
exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException;
|
|
1604
|
+
exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException$1;
|
|
1763
1605
|
exports.ServiceQuotas = ServiceQuotas;
|
|
1764
1606
|
exports.ServiceQuotasClient = ServiceQuotasClient;
|
|
1765
|
-
exports.ServiceQuotasServiceException = ServiceQuotasServiceException;
|
|
1607
|
+
exports.ServiceQuotasServiceException = ServiceQuotasServiceException$1;
|
|
1766
1608
|
exports.StartAutoManagementCommand = StartAutoManagementCommand;
|
|
1767
1609
|
exports.StopAutoManagementCommand = StopAutoManagementCommand;
|
|
1768
|
-
exports.TagPolicyViolationException = TagPolicyViolationException;
|
|
1610
|
+
exports.TagPolicyViolationException = TagPolicyViolationException$1;
|
|
1769
1611
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1770
|
-
exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException;
|
|
1771
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1772
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1612
|
+
exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException$1;
|
|
1613
|
+
exports.TooManyRequestsException = TooManyRequestsException$1;
|
|
1614
|
+
exports.TooManyTagsException = TooManyTagsException$1;
|
|
1773
1615
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1774
1616
|
exports.UpdateAutoManagementCommand = UpdateAutoManagementCommand;
|
|
1775
1617
|
exports.paginateListAWSDefaultServiceQuotas = paginateListAWSDefaultServiceQuotas;
|