@aws-sdk/client-service-quotas 3.1075.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1269 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ServiceQuotasServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -239
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -803
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException: ServiceException$1, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultServiceQuotasHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "servicequotas",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultServiceQuotasHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1097 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://servicequotas-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://servicequotas.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://servicequotas-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://servicequotas.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://servicequotas.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class ServiceQuotasServiceException extends ServiceException$1 {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, ServiceQuotasServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class AccessDeniedException extends ServiceQuotasServiceException {
|
|
144
|
+
name = "AccessDeniedException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
Message;
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "AccessDeniedException",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException {
|
|
158
|
+
name = "AWSServiceAccessNotEnabledException";
|
|
159
|
+
$fault = "client";
|
|
160
|
+
Message;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "AWSServiceAccessNotEnabledException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class DependencyAccessDeniedException extends ServiceQuotasServiceException {
|
|
172
|
+
name = "DependencyAccessDeniedException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Message;
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "DependencyAccessDeniedException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
|
|
182
|
+
this.Message = opts.Message;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class NoAvailableOrganizationException extends ServiceQuotasServiceException {
|
|
186
|
+
name = "NoAvailableOrganizationException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
Message;
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "NoAvailableOrganizationException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException {
|
|
200
|
+
name = "OrganizationNotInAllFeaturesModeException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
Message;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "OrganizationNotInAllFeaturesModeException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
210
|
+
this.Message = opts.Message;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class ServiceException extends ServiceQuotasServiceException {
|
|
214
|
+
name = "ServiceException";
|
|
215
|
+
$fault = "server";
|
|
216
|
+
Message;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "ServiceException",
|
|
220
|
+
$fault: "server",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException {
|
|
228
|
+
name = "TemplatesNotAvailableInRegionException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
Message;
|
|
231
|
+
constructor(opts) {
|
|
232
|
+
super({
|
|
233
|
+
name: "TemplatesNotAvailableInRegionException",
|
|
234
|
+
$fault: "client",
|
|
235
|
+
...opts,
|
|
236
|
+
});
|
|
237
|
+
Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
|
|
238
|
+
this.Message = opts.Message;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class TooManyRequestsException extends ServiceQuotasServiceException {
|
|
242
|
+
name = "TooManyRequestsException";
|
|
243
|
+
$fault = "client";
|
|
244
|
+
Message;
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "TooManyRequestsException",
|
|
248
|
+
$fault: "client",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
252
|
+
this.Message = opts.Message;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
class IllegalArgumentException extends ServiceQuotasServiceException {
|
|
256
|
+
name = "IllegalArgumentException";
|
|
257
|
+
$fault = "client";
|
|
258
|
+
Message;
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "IllegalArgumentException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
266
|
+
this.Message = opts.Message;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
class InvalidResourceStateException extends ServiceQuotasServiceException {
|
|
270
|
+
name = "InvalidResourceStateException";
|
|
271
|
+
$fault = "client";
|
|
272
|
+
Message;
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "InvalidResourceStateException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class NoSuchResourceException extends ServiceQuotasServiceException {
|
|
284
|
+
name = "NoSuchResourceException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
Message;
|
|
287
|
+
constructor(opts) {
|
|
288
|
+
super({
|
|
289
|
+
name: "NoSuchResourceException",
|
|
290
|
+
$fault: "client",
|
|
291
|
+
...opts,
|
|
292
|
+
});
|
|
293
|
+
Object.setPrototypeOf(this, NoSuchResourceException.prototype);
|
|
294
|
+
this.Message = opts.Message;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
class ResourceAlreadyExistsException extends ServiceQuotasServiceException {
|
|
298
|
+
name = "ResourceAlreadyExistsException";
|
|
299
|
+
$fault = "client";
|
|
300
|
+
Message;
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "ResourceAlreadyExistsException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
308
|
+
this.Message = opts.Message;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException {
|
|
312
|
+
name = "ServiceQuotaTemplateNotInUseException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
Message;
|
|
315
|
+
constructor(opts) {
|
|
316
|
+
super({
|
|
317
|
+
name: "ServiceQuotaTemplateNotInUseException",
|
|
318
|
+
$fault: "client",
|
|
319
|
+
...opts,
|
|
320
|
+
});
|
|
321
|
+
Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
322
|
+
this.Message = opts.Message;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class InvalidPaginationTokenException extends ServiceQuotasServiceException {
|
|
326
|
+
name = "InvalidPaginationTokenException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
Message;
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "InvalidPaginationTokenException",
|
|
332
|
+
$fault: "client",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
336
|
+
this.Message = opts.Message;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
class QuotaExceededException extends ServiceQuotasServiceException {
|
|
340
|
+
name = "QuotaExceededException";
|
|
341
|
+
$fault = "client";
|
|
342
|
+
Message;
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "QuotaExceededException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, QuotaExceededException.prototype);
|
|
350
|
+
this.Message = opts.Message;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class TagPolicyViolationException extends ServiceQuotasServiceException {
|
|
354
|
+
name = "TagPolicyViolationException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "TagPolicyViolationException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
364
|
+
this.Message = opts.Message;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
class TooManyTagsException extends ServiceQuotasServiceException {
|
|
368
|
+
name = "TooManyTagsException";
|
|
369
|
+
$fault = "client";
|
|
370
|
+
Message;
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "TooManyTagsException",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts,
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
378
|
+
this.Message = opts.Message;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
const _A = "Adjustable";
|
|
383
|
+
const _ADE = "AccessDeniedException";
|
|
384
|
+
const _AR = "AwsRegion";
|
|
385
|
+
const _ASQT = "AssociateServiceQuotaTemplate";
|
|
386
|
+
const _ASQTR = "AssociateServiceQuotaTemplateRequest";
|
|
387
|
+
const _ASQTRs = "AssociateServiceQuotaTemplateResponse";
|
|
388
|
+
const _AV = "AppliedValue";
|
|
389
|
+
const _AWSSANEE = "AWSServiceAccessNotEnabledException";
|
|
390
|
+
const _C = "Created";
|
|
391
|
+
const _CI = "ContextId";
|
|
392
|
+
const _CIa = "CaseId";
|
|
393
|
+
const _CS = "ContextScope";
|
|
394
|
+
const _CSC = "CreateSupportCase";
|
|
395
|
+
const _CSCR = "CreateSupportCaseRequest";
|
|
396
|
+
const _CSCRr = "CreateSupportCaseResponse";
|
|
397
|
+
const _CST = "ContextScopeType";
|
|
398
|
+
const _D = "Description";
|
|
399
|
+
const _DADE = "DependencyAccessDeniedException";
|
|
400
|
+
const _DSQIRFT = "DeleteServiceQuotaIncreaseRequestFromTemplate";
|
|
401
|
+
const _DSQIRFTR = "DeleteServiceQuotaIncreaseRequestFromTemplateRequest";
|
|
402
|
+
const _DSQIRFTRe = "DeleteServiceQuotaIncreaseRequestFromTemplateResponse";
|
|
403
|
+
const _DSQT = "DisassociateServiceQuotaTemplate";
|
|
404
|
+
const _DSQTR = "DisassociateServiceQuotaTemplateRequest";
|
|
405
|
+
const _DSQTRi = "DisassociateServiceQuotaTemplateResponse";
|
|
406
|
+
const _DV = "DesiredValue";
|
|
407
|
+
const _DVe = "DefaultValue";
|
|
408
|
+
const _EC = "ErrorCode";
|
|
409
|
+
const _EL = "ExclusionList";
|
|
410
|
+
const _EM = "ErrorMessage";
|
|
411
|
+
const _EQL = "ExclusionQuotaList";
|
|
412
|
+
const _ER = "ErrorReason";
|
|
413
|
+
const _GA = "GeneratedAt";
|
|
414
|
+
const _GAFSQT = "GetAssociationForServiceQuotaTemplate";
|
|
415
|
+
const _GAFSQTR = "GetAssociationForServiceQuotaTemplateRequest";
|
|
416
|
+
const _GAFSQTRe = "GetAssociationForServiceQuotaTemplateResponse";
|
|
417
|
+
const _GAMC = "GetAutoManagementConfiguration";
|
|
418
|
+
const _GAMCR = "GetAutoManagementConfigurationRequest";
|
|
419
|
+
const _GAMCRe = "GetAutoManagementConfigurationResponse";
|
|
420
|
+
const _GAWSDSQ = "GetAWSDefaultServiceQuota";
|
|
421
|
+
const _GAWSDSQR = "GetAWSDefaultServiceQuotaRequest";
|
|
422
|
+
const _GAWSDSQRe = "GetAWSDefaultServiceQuotaResponse";
|
|
423
|
+
const _GQ = "GlobalQuota";
|
|
424
|
+
const _GQUR = "GetQuotaUtilizationReport";
|
|
425
|
+
const _GQURR = "GetQuotaUtilizationReportRequest";
|
|
426
|
+
const _GQURRe = "GetQuotaUtilizationReportResponse";
|
|
427
|
+
const _GRSQC = "GetRequestedServiceQuotaChange";
|
|
428
|
+
const _GRSQCR = "GetRequestedServiceQuotaChangeRequest";
|
|
429
|
+
const _GRSQCRe = "GetRequestedServiceQuotaChangeResponse";
|
|
430
|
+
const _GSQ = "GetServiceQuota";
|
|
431
|
+
const _GSQIRFT = "GetServiceQuotaIncreaseRequestFromTemplate";
|
|
432
|
+
const _GSQIRFTR = "GetServiceQuotaIncreaseRequestFromTemplateRequest";
|
|
433
|
+
const _GSQIRFTRe = "GetServiceQuotaIncreaseRequestFromTemplateResponse";
|
|
434
|
+
const _GSQR = "GetServiceQuotaRequest";
|
|
435
|
+
const _GSQRe = "GetServiceQuotaResponse";
|
|
436
|
+
const _I = "Id";
|
|
437
|
+
const _IAE = "IllegalArgumentException";
|
|
438
|
+
const _IPTE = "InvalidPaginationTokenException";
|
|
439
|
+
const _IRSE = "InvalidResourceStateException";
|
|
440
|
+
const _IT = "InputTags";
|
|
441
|
+
const _K = "Key";
|
|
442
|
+
const _LAWSDSQ = "ListAWSDefaultServiceQuotas";
|
|
443
|
+
const _LAWSDSQR = "ListAWSDefaultServiceQuotasRequest";
|
|
444
|
+
const _LAWSDSQRi = "ListAWSDefaultServiceQuotasResponse";
|
|
445
|
+
const _LRSQCH = "ListRequestedServiceQuotaChangeHistory";
|
|
446
|
+
const _LRSQCHBQ = "ListRequestedServiceQuotaChangeHistoryByQuota";
|
|
447
|
+
const _LRSQCHBQR = "ListRequestedServiceQuotaChangeHistoryByQuotaRequest";
|
|
448
|
+
const _LRSQCHBQRi = "ListRequestedServiceQuotaChangeHistoryByQuotaResponse";
|
|
449
|
+
const _LRSQCHR = "ListRequestedServiceQuotaChangeHistoryRequest";
|
|
450
|
+
const _LRSQCHRi = "ListRequestedServiceQuotaChangeHistoryResponse";
|
|
451
|
+
const _LS = "ListServices";
|
|
452
|
+
const _LSQ = "ListServiceQuotas";
|
|
453
|
+
const _LSQIRIT = "ListServiceQuotaIncreaseRequestsInTemplate";
|
|
454
|
+
const _LSQIRITR = "ListServiceQuotaIncreaseRequestsInTemplateRequest";
|
|
455
|
+
const _LSQIRITRi = "ListServiceQuotaIncreaseRequestsInTemplateResponse";
|
|
456
|
+
const _LSQR = "ListServiceQuotasRequest";
|
|
457
|
+
const _LSQRi = "ListServiceQuotasResponse";
|
|
458
|
+
const _LSR = "ListServicesRequest";
|
|
459
|
+
const _LSRi = "ListServicesResponse";
|
|
460
|
+
const _LTFR = "ListTagsForResource";
|
|
461
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
462
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
463
|
+
const _LU = "LastUpdated";
|
|
464
|
+
const _M = "Message";
|
|
465
|
+
const _MD = "MetricDimensions";
|
|
466
|
+
const _MI = "MetricInfo";
|
|
467
|
+
const _MN = "MetricNamespace";
|
|
468
|
+
const _MNe = "MetricName";
|
|
469
|
+
const _MR = "MaxResults";
|
|
470
|
+
const _MSR = "MetricStatisticRecommendation";
|
|
471
|
+
const _N = "Namespace";
|
|
472
|
+
const _NA = "NotificationArn";
|
|
473
|
+
const _NAOE = "NoAvailableOrganizationException";
|
|
474
|
+
const _NSRE = "NoSuchResourceException";
|
|
475
|
+
const _NT = "NextToken";
|
|
476
|
+
const _OIL = "OptInLevel";
|
|
477
|
+
const _OIS = "OptInStatus";
|
|
478
|
+
const _OIT = "OptInType";
|
|
479
|
+
const _ONIAFME = "OrganizationNotInAllFeaturesModeException";
|
|
480
|
+
const _OT = "OutputTags";
|
|
481
|
+
const _P = "Period";
|
|
482
|
+
const _PSQIRIT = "PutServiceQuotaIncreaseRequestIntoTemplate";
|
|
483
|
+
const _PSQIRITR = "PutServiceQuotaIncreaseRequestIntoTemplateRequest";
|
|
484
|
+
const _PSQIRITRu = "PutServiceQuotaIncreaseRequestIntoTemplateResponse";
|
|
485
|
+
const _PU = "PeriodUnit";
|
|
486
|
+
const _PV = "PeriodValue";
|
|
487
|
+
const _Q = "Quota";
|
|
488
|
+
const _QA = "QuotaArn";
|
|
489
|
+
const _QAAL = "QuotaAppliedAtLevel";
|
|
490
|
+
const _QC = "QuotaCode";
|
|
491
|
+
const _QCI = "QuotaContextInfo";
|
|
492
|
+
const _QCu = "QuotaContext";
|
|
493
|
+
const _QEE = "QuotaExceededException";
|
|
494
|
+
const _QI = "QuotaInfo";
|
|
495
|
+
const _QIL = "QuotaInfoList";
|
|
496
|
+
const _QN = "QuotaName";
|
|
497
|
+
const _QP = "QuotaPeriod";
|
|
498
|
+
const _QRAL = "QuotaRequestedAtLevel";
|
|
499
|
+
const _QUI = "QuotaUtilizationInfo";
|
|
500
|
+
const _QUIL = "QuotaUtilizationInfoList";
|
|
501
|
+
const _Qu = "Quotas";
|
|
502
|
+
const _R = "Requester";
|
|
503
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
504
|
+
const _RARN = "ResourceARN";
|
|
505
|
+
const _RI = "RequestId";
|
|
506
|
+
const _RIe = "ReportId";
|
|
507
|
+
const _RQ = "RequestedQuota";
|
|
508
|
+
const _RQe = "RequestedQuotas";
|
|
509
|
+
const _RSQC = "RequestedServiceQuotaChange";
|
|
510
|
+
const _RSQCHLD = "RequestedServiceQuotaChangeHistoryListDefinition";
|
|
511
|
+
const _RSQI = "RequestServiceQuotaIncrease";
|
|
512
|
+
const _RSQIR = "RequestServiceQuotaIncreaseRequest";
|
|
513
|
+
const _RSQIRe = "RequestServiceQuotaIncreaseResponse";
|
|
514
|
+
const _RT = "RequestType";
|
|
515
|
+
const _S = "Status";
|
|
516
|
+
const _SAM = "StartAutoManagement";
|
|
517
|
+
const _SAMR = "StartAutoManagementRequest";
|
|
518
|
+
const _SAMRt = "StartAutoManagementResponse";
|
|
519
|
+
const _SAMRto = "StopAutoManagementRequest";
|
|
520
|
+
const _SAMRtop = "StopAutoManagementResponse";
|
|
521
|
+
const _SAMt = "StopAutoManagement";
|
|
522
|
+
const _SC = "ServiceCode";
|
|
523
|
+
const _SCA = "SupportCaseAllowed";
|
|
524
|
+
const _SE = "ServiceException";
|
|
525
|
+
const _SI = "ServiceInfo";
|
|
526
|
+
const _SILD = "ServiceInfoListDefinition";
|
|
527
|
+
const _SN = "ServiceName";
|
|
528
|
+
const _SQ = "ServiceQuota";
|
|
529
|
+
const _SQIRIT = "ServiceQuotaIncreaseRequestInTemplate";
|
|
530
|
+
const _SQIRITL = "ServiceQuotaIncreaseRequestInTemplateList";
|
|
531
|
+
const _SQLD = "ServiceQuotaListDefinition";
|
|
532
|
+
const _SQTAS = "ServiceQuotaTemplateAssociationStatus";
|
|
533
|
+
const _SQTNIUE = "ServiceQuotaTemplateNotInUseException";
|
|
534
|
+
const _SQUR = "StartQuotaUtilizationReport";
|
|
535
|
+
const _SQURR = "StartQuotaUtilizationReportRequest";
|
|
536
|
+
const _SQURRt = "StartQuotaUtilizationReportResponse";
|
|
537
|
+
const _Se = "Services";
|
|
538
|
+
const _T = "Tags";
|
|
539
|
+
const _TC = "TotalCount";
|
|
540
|
+
const _TK = "TagKeys";
|
|
541
|
+
const _TMRE = "TooManyRequestsException";
|
|
542
|
+
const _TMTE = "TooManyTagsException";
|
|
543
|
+
const _TNAIRE = "TemplatesNotAvailableInRegionException";
|
|
544
|
+
const _TPVE = "TagPolicyViolationException";
|
|
545
|
+
const _TR = "TagResource";
|
|
546
|
+
const _TRR = "TagResourceRequest";
|
|
547
|
+
const _TRRa = "TagResourceResponse";
|
|
548
|
+
const _Ta = "Tag";
|
|
549
|
+
const _U = "Utilization";
|
|
550
|
+
const _UAM = "UpdateAutoManagement";
|
|
551
|
+
const _UAMR = "UpdateAutoManagementRequest";
|
|
552
|
+
const _UAMRp = "UpdateAutoManagementResponse";
|
|
553
|
+
const _UM = "UsageMetric";
|
|
554
|
+
const _UR = "UntagResource";
|
|
555
|
+
const _URR = "UntagResourceRequest";
|
|
556
|
+
const _URRn = "UntagResourceResponse";
|
|
557
|
+
const _Un = "Unit";
|
|
558
|
+
const _V = "Value";
|
|
559
|
+
const _c = "client";
|
|
560
|
+
const _e = "error";
|
|
561
|
+
const _hE = "httpError";
|
|
562
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.servicequotas";
|
|
563
|
+
const _se = "server";
|
|
564
|
+
const n0 = "com.amazonaws.servicequotas";
|
|
565
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
566
|
+
var ServiceQuotasServiceException$ = [-3, _s, "ServiceQuotasServiceException", 0, [], []];
|
|
567
|
+
_s_registry.registerError(ServiceQuotasServiceException$, ServiceQuotasServiceException);
|
|
568
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
569
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
570
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
571
|
+
[_M],
|
|
572
|
+
[0]
|
|
573
|
+
];
|
|
574
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
575
|
+
var AWSServiceAccessNotEnabledException$ = [-3, n0, _AWSSANEE,
|
|
576
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
577
|
+
[_M],
|
|
578
|
+
[0]
|
|
579
|
+
];
|
|
580
|
+
n0_registry.registerError(AWSServiceAccessNotEnabledException$, AWSServiceAccessNotEnabledException);
|
|
581
|
+
var DependencyAccessDeniedException$ = [-3, n0, _DADE,
|
|
582
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
583
|
+
[_M],
|
|
584
|
+
[0]
|
|
585
|
+
];
|
|
586
|
+
n0_registry.registerError(DependencyAccessDeniedException$, DependencyAccessDeniedException);
|
|
587
|
+
var IllegalArgumentException$ = [-3, n0, _IAE,
|
|
588
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
589
|
+
[_M],
|
|
590
|
+
[0]
|
|
591
|
+
];
|
|
592
|
+
n0_registry.registerError(IllegalArgumentException$, IllegalArgumentException);
|
|
593
|
+
var InvalidPaginationTokenException$ = [-3, n0, _IPTE,
|
|
594
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
595
|
+
[_M],
|
|
596
|
+
[0]
|
|
597
|
+
];
|
|
598
|
+
n0_registry.registerError(InvalidPaginationTokenException$, InvalidPaginationTokenException);
|
|
599
|
+
var InvalidResourceStateException$ = [-3, n0, _IRSE,
|
|
600
|
+
{ [_e]: _c, [_hE]: 405 },
|
|
601
|
+
[_M],
|
|
602
|
+
[0]
|
|
603
|
+
];
|
|
604
|
+
n0_registry.registerError(InvalidResourceStateException$, InvalidResourceStateException);
|
|
605
|
+
var NoAvailableOrganizationException$ = [-3, n0, _NAOE,
|
|
606
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
607
|
+
[_M],
|
|
608
|
+
[0]
|
|
609
|
+
];
|
|
610
|
+
n0_registry.registerError(NoAvailableOrganizationException$, NoAvailableOrganizationException);
|
|
611
|
+
var NoSuchResourceException$ = [-3, n0, _NSRE,
|
|
612
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
613
|
+
[_M],
|
|
614
|
+
[0]
|
|
615
|
+
];
|
|
616
|
+
n0_registry.registerError(NoSuchResourceException$, NoSuchResourceException);
|
|
617
|
+
var OrganizationNotInAllFeaturesModeException$ = [-3, n0, _ONIAFME,
|
|
618
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
619
|
+
[_M],
|
|
620
|
+
[0]
|
|
621
|
+
];
|
|
622
|
+
n0_registry.registerError(OrganizationNotInAllFeaturesModeException$, OrganizationNotInAllFeaturesModeException);
|
|
623
|
+
var QuotaExceededException$ = [-3, n0, _QEE,
|
|
624
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
625
|
+
[_M],
|
|
626
|
+
[0]
|
|
627
|
+
];
|
|
628
|
+
n0_registry.registerError(QuotaExceededException$, QuotaExceededException);
|
|
629
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
630
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
631
|
+
[_M],
|
|
632
|
+
[0]
|
|
633
|
+
];
|
|
634
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
635
|
+
var ServiceException$ = [-3, n0, _SE,
|
|
636
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
637
|
+
[_M],
|
|
638
|
+
[0]
|
|
639
|
+
];
|
|
640
|
+
n0_registry.registerError(ServiceException$, ServiceException);
|
|
641
|
+
var ServiceQuotaTemplateNotInUseException$ = [-3, n0, _SQTNIUE,
|
|
642
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
643
|
+
[_M],
|
|
644
|
+
[0]
|
|
645
|
+
];
|
|
646
|
+
n0_registry.registerError(ServiceQuotaTemplateNotInUseException$, ServiceQuotaTemplateNotInUseException);
|
|
647
|
+
var TagPolicyViolationException$ = [-3, n0, _TPVE,
|
|
648
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
649
|
+
[_M],
|
|
650
|
+
[0]
|
|
651
|
+
];
|
|
652
|
+
n0_registry.registerError(TagPolicyViolationException$, TagPolicyViolationException);
|
|
653
|
+
var TemplatesNotAvailableInRegionException$ = [-3, n0, _TNAIRE,
|
|
654
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
655
|
+
[_M],
|
|
656
|
+
[0]
|
|
657
|
+
];
|
|
658
|
+
n0_registry.registerError(TemplatesNotAvailableInRegionException$, TemplatesNotAvailableInRegionException);
|
|
659
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
660
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
661
|
+
[_M],
|
|
662
|
+
[0]
|
|
663
|
+
];
|
|
664
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
665
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
666
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
667
|
+
[_M],
|
|
668
|
+
[0]
|
|
669
|
+
];
|
|
670
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
671
|
+
const errorTypeRegistries = [
|
|
672
|
+
_s_registry,
|
|
673
|
+
n0_registry,
|
|
674
|
+
];
|
|
675
|
+
var AssociateServiceQuotaTemplateRequest$ = [3, n0, _ASQTR,
|
|
676
|
+
0,
|
|
677
|
+
[],
|
|
678
|
+
[]
|
|
679
|
+
];
|
|
680
|
+
var AssociateServiceQuotaTemplateResponse$ = [3, n0, _ASQTRs,
|
|
681
|
+
0,
|
|
682
|
+
[],
|
|
683
|
+
[]
|
|
684
|
+
];
|
|
685
|
+
var CreateSupportCaseRequest$ = [3, n0, _CSCR,
|
|
686
|
+
0,
|
|
687
|
+
[_RI],
|
|
688
|
+
[0], 1
|
|
689
|
+
];
|
|
690
|
+
var CreateSupportCaseResponse$ = [3, n0, _CSCRr,
|
|
691
|
+
0,
|
|
692
|
+
[],
|
|
693
|
+
[]
|
|
694
|
+
];
|
|
695
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplateRequest$ = [3, n0, _DSQIRFTR,
|
|
696
|
+
0,
|
|
697
|
+
[_SC, _QC, _AR],
|
|
698
|
+
[0, 0, 0], 3
|
|
699
|
+
];
|
|
700
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplateResponse$ = [3, n0, _DSQIRFTRe,
|
|
701
|
+
0,
|
|
702
|
+
[],
|
|
703
|
+
[]
|
|
704
|
+
];
|
|
705
|
+
var DisassociateServiceQuotaTemplateRequest$ = [3, n0, _DSQTR,
|
|
706
|
+
0,
|
|
707
|
+
[],
|
|
708
|
+
[]
|
|
709
|
+
];
|
|
710
|
+
var DisassociateServiceQuotaTemplateResponse$ = [3, n0, _DSQTRi,
|
|
711
|
+
0,
|
|
712
|
+
[],
|
|
713
|
+
[]
|
|
714
|
+
];
|
|
715
|
+
var ErrorReason$ = [3, n0, _ER,
|
|
716
|
+
0,
|
|
717
|
+
[_EC, _EM],
|
|
718
|
+
[0, 0]
|
|
719
|
+
];
|
|
720
|
+
var GetAssociationForServiceQuotaTemplateRequest$ = [3, n0, _GAFSQTR,
|
|
721
|
+
0,
|
|
722
|
+
[],
|
|
723
|
+
[]
|
|
724
|
+
];
|
|
725
|
+
var GetAssociationForServiceQuotaTemplateResponse$ = [3, n0, _GAFSQTRe,
|
|
726
|
+
0,
|
|
727
|
+
[_SQTAS],
|
|
728
|
+
[0]
|
|
729
|
+
];
|
|
730
|
+
var GetAutoManagementConfigurationRequest$ = [3, n0, _GAMCR,
|
|
731
|
+
0,
|
|
732
|
+
[],
|
|
733
|
+
[]
|
|
734
|
+
];
|
|
735
|
+
var GetAutoManagementConfigurationResponse$ = [3, n0, _GAMCRe,
|
|
736
|
+
0,
|
|
737
|
+
[_OIL, _OIT, _NA, _OIS, _EL],
|
|
738
|
+
[0, 0, 0, 0, () => ExclusionQuotaList]
|
|
739
|
+
];
|
|
740
|
+
var GetAWSDefaultServiceQuotaRequest$ = [3, n0, _GAWSDSQR,
|
|
741
|
+
0,
|
|
742
|
+
[_SC, _QC],
|
|
743
|
+
[0, 0], 2
|
|
744
|
+
];
|
|
745
|
+
var GetAWSDefaultServiceQuotaResponse$ = [3, n0, _GAWSDSQRe,
|
|
746
|
+
0,
|
|
747
|
+
[_Q],
|
|
748
|
+
[() => ServiceQuota$]
|
|
749
|
+
];
|
|
750
|
+
var GetQuotaUtilizationReportRequest$ = [3, n0, _GQURR,
|
|
751
|
+
0,
|
|
752
|
+
[_RIe, _NT, _MR],
|
|
753
|
+
[0, 0, 1], 1
|
|
754
|
+
];
|
|
755
|
+
var GetQuotaUtilizationReportResponse$ = [3, n0, _GQURRe,
|
|
756
|
+
0,
|
|
757
|
+
[_RIe, _S, _GA, _TC, _Qu, _NT, _EC, _EM],
|
|
758
|
+
[0, 0, 4, 1, () => QuotaUtilizationInfoList, 0, 0, 0]
|
|
759
|
+
];
|
|
760
|
+
var GetRequestedServiceQuotaChangeRequest$ = [3, n0, _GRSQCR,
|
|
761
|
+
0,
|
|
762
|
+
[_RI],
|
|
763
|
+
[0], 1
|
|
764
|
+
];
|
|
765
|
+
var GetRequestedServiceQuotaChangeResponse$ = [3, n0, _GRSQCRe,
|
|
766
|
+
0,
|
|
767
|
+
[_RQ],
|
|
768
|
+
[() => RequestedServiceQuotaChange$]
|
|
769
|
+
];
|
|
770
|
+
var GetServiceQuotaIncreaseRequestFromTemplateRequest$ = [3, n0, _GSQIRFTR,
|
|
771
|
+
0,
|
|
772
|
+
[_SC, _QC, _AR],
|
|
773
|
+
[0, 0, 0], 3
|
|
774
|
+
];
|
|
775
|
+
var GetServiceQuotaIncreaseRequestFromTemplateResponse$ = [3, n0, _GSQIRFTRe,
|
|
776
|
+
0,
|
|
777
|
+
[_SQIRIT],
|
|
778
|
+
[() => ServiceQuotaIncreaseRequestInTemplate$]
|
|
779
|
+
];
|
|
780
|
+
var GetServiceQuotaRequest$ = [3, n0, _GSQR,
|
|
781
|
+
0,
|
|
782
|
+
[_SC, _QC, _CI],
|
|
783
|
+
[0, 0, 0], 2
|
|
784
|
+
];
|
|
785
|
+
var GetServiceQuotaResponse$ = [3, n0, _GSQRe,
|
|
786
|
+
0,
|
|
787
|
+
[_Q],
|
|
788
|
+
[() => ServiceQuota$]
|
|
789
|
+
];
|
|
790
|
+
var ListAWSDefaultServiceQuotasRequest$ = [3, n0, _LAWSDSQR,
|
|
791
|
+
0,
|
|
792
|
+
[_SC, _NT, _MR],
|
|
793
|
+
[0, 0, 1], 1
|
|
794
|
+
];
|
|
795
|
+
var ListAWSDefaultServiceQuotasResponse$ = [3, n0, _LAWSDSQRi,
|
|
796
|
+
0,
|
|
797
|
+
[_NT, _Qu],
|
|
798
|
+
[0, () => ServiceQuotaListDefinition]
|
|
799
|
+
];
|
|
800
|
+
var ListRequestedServiceQuotaChangeHistoryByQuotaRequest$ = [3, n0, _LRSQCHBQR,
|
|
801
|
+
0,
|
|
802
|
+
[_SC, _QC, _S, _NT, _MR, _QRAL],
|
|
803
|
+
[0, 0, 0, 0, 1, 0], 2
|
|
804
|
+
];
|
|
805
|
+
var ListRequestedServiceQuotaChangeHistoryByQuotaResponse$ = [3, n0, _LRSQCHBQRi,
|
|
806
|
+
0,
|
|
807
|
+
[_NT, _RQe],
|
|
808
|
+
[0, () => RequestedServiceQuotaChangeHistoryListDefinition]
|
|
809
|
+
];
|
|
810
|
+
var ListRequestedServiceQuotaChangeHistoryRequest$ = [3, n0, _LRSQCHR,
|
|
811
|
+
0,
|
|
812
|
+
[_SC, _S, _NT, _MR, _QRAL],
|
|
813
|
+
[0, 0, 0, 1, 0]
|
|
814
|
+
];
|
|
815
|
+
var ListRequestedServiceQuotaChangeHistoryResponse$ = [3, n0, _LRSQCHRi,
|
|
816
|
+
0,
|
|
817
|
+
[_NT, _RQe],
|
|
818
|
+
[0, () => RequestedServiceQuotaChangeHistoryListDefinition]
|
|
819
|
+
];
|
|
820
|
+
var ListServiceQuotaIncreaseRequestsInTemplateRequest$ = [3, n0, _LSQIRITR,
|
|
821
|
+
0,
|
|
822
|
+
[_SC, _AR, _NT, _MR],
|
|
823
|
+
[0, 0, 0, 1]
|
|
824
|
+
];
|
|
825
|
+
var ListServiceQuotaIncreaseRequestsInTemplateResponse$ = [3, n0, _LSQIRITRi,
|
|
826
|
+
0,
|
|
827
|
+
[_SQIRITL, _NT],
|
|
828
|
+
[() => ServiceQuotaIncreaseRequestInTemplateList, 0]
|
|
829
|
+
];
|
|
830
|
+
var ListServiceQuotasRequest$ = [3, n0, _LSQR,
|
|
831
|
+
0,
|
|
832
|
+
[_SC, _NT, _MR, _QC, _QAAL],
|
|
833
|
+
[0, 0, 1, 0, 0], 1
|
|
834
|
+
];
|
|
835
|
+
var ListServiceQuotasResponse$ = [3, n0, _LSQRi,
|
|
836
|
+
0,
|
|
837
|
+
[_NT, _Qu],
|
|
838
|
+
[0, () => ServiceQuotaListDefinition]
|
|
839
|
+
];
|
|
840
|
+
var ListServicesRequest$ = [3, n0, _LSR,
|
|
841
|
+
0,
|
|
842
|
+
[_NT, _MR],
|
|
843
|
+
[0, 1]
|
|
844
|
+
];
|
|
845
|
+
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
846
|
+
0,
|
|
847
|
+
[_NT, _Se],
|
|
848
|
+
[0, () => ServiceInfoListDefinition]
|
|
849
|
+
];
|
|
850
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
851
|
+
0,
|
|
852
|
+
[_RARN],
|
|
853
|
+
[0], 1
|
|
854
|
+
];
|
|
855
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
856
|
+
0,
|
|
857
|
+
[_T],
|
|
858
|
+
[() => OutputTags]
|
|
859
|
+
];
|
|
860
|
+
var MetricInfo$ = [3, n0, _MI,
|
|
861
|
+
0,
|
|
862
|
+
[_MN, _MNe, _MD, _MSR],
|
|
863
|
+
[0, 0, 128 | 0, 0]
|
|
864
|
+
];
|
|
865
|
+
var PutServiceQuotaIncreaseRequestIntoTemplateRequest$ = [3, n0, _PSQIRITR,
|
|
866
|
+
0,
|
|
867
|
+
[_QC, _SC, _AR, _DV],
|
|
868
|
+
[0, 0, 0, 1], 4
|
|
869
|
+
];
|
|
870
|
+
var PutServiceQuotaIncreaseRequestIntoTemplateResponse$ = [3, n0, _PSQIRITRu,
|
|
871
|
+
0,
|
|
872
|
+
[_SQIRIT],
|
|
873
|
+
[() => ServiceQuotaIncreaseRequestInTemplate$]
|
|
874
|
+
];
|
|
875
|
+
var QuotaContextInfo$ = [3, n0, _QCI,
|
|
876
|
+
0,
|
|
877
|
+
[_CS, _CST, _CI],
|
|
878
|
+
[0, 0, 0]
|
|
879
|
+
];
|
|
880
|
+
var QuotaInfo$ = [3, n0, _QI,
|
|
881
|
+
0,
|
|
882
|
+
[_QC, _QN],
|
|
883
|
+
[0, 0]
|
|
884
|
+
];
|
|
885
|
+
var QuotaPeriod$ = [3, n0, _QP,
|
|
886
|
+
0,
|
|
887
|
+
[_PV, _PU],
|
|
888
|
+
[1, 0]
|
|
889
|
+
];
|
|
890
|
+
var QuotaUtilizationInfo$ = [3, n0, _QUI,
|
|
891
|
+
0,
|
|
892
|
+
[_QC, _SC, _QN, _N, _U, _DVe, _AV, _SN, _A],
|
|
893
|
+
[0, 0, 0, 0, 1, 1, 1, 0, 2]
|
|
894
|
+
];
|
|
895
|
+
var RequestedServiceQuotaChange$ = [3, n0, _RSQC,
|
|
896
|
+
0,
|
|
897
|
+
[_I, _RT, _CIa, _SC, _SN, _QC, _QN, _DV, _S, _C, _LU, _R, _QA, _GQ, _Un, _QRAL, _QCu],
|
|
898
|
+
[0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0, 2, 0, 0, () => QuotaContextInfo$]
|
|
899
|
+
];
|
|
900
|
+
var RequestServiceQuotaIncreaseRequest$ = [3, n0, _RSQIR,
|
|
901
|
+
0,
|
|
902
|
+
[_SC, _QC, _DV, _CI, _SCA],
|
|
903
|
+
[0, 0, 1, 0, 2], 3
|
|
904
|
+
];
|
|
905
|
+
var RequestServiceQuotaIncreaseResponse$ = [3, n0, _RSQIRe,
|
|
906
|
+
0,
|
|
907
|
+
[_RQ],
|
|
908
|
+
[() => RequestedServiceQuotaChange$]
|
|
909
|
+
];
|
|
910
|
+
var ServiceInfo$ = [3, n0, _SI,
|
|
911
|
+
0,
|
|
912
|
+
[_SC, _SN],
|
|
913
|
+
[0, 0]
|
|
914
|
+
];
|
|
915
|
+
var ServiceQuota$ = [3, n0, _SQ,
|
|
916
|
+
0,
|
|
917
|
+
[_SC, _SN, _QA, _QC, _QN, _V, _Un, _A, _GQ, _UM, _P, _ER, _QAAL, _QCu, _D],
|
|
918
|
+
[0, 0, 0, 0, 0, 1, 0, 2, 2, () => MetricInfo$, () => QuotaPeriod$, () => ErrorReason$, 0, () => QuotaContextInfo$, 0]
|
|
919
|
+
];
|
|
920
|
+
var ServiceQuotaIncreaseRequestInTemplate$ = [3, n0, _SQIRIT,
|
|
921
|
+
0,
|
|
922
|
+
[_SC, _SN, _QC, _QN, _DV, _AR, _Un, _GQ],
|
|
923
|
+
[0, 0, 0, 0, 1, 0, 0, 2]
|
|
924
|
+
];
|
|
925
|
+
var StartAutoManagementRequest$ = [3, n0, _SAMR,
|
|
926
|
+
0,
|
|
927
|
+
[_OIL, _OIT, _NA, _EL],
|
|
928
|
+
[0, 0, 0, [2, n0, _EL, 0, 0, 64 | 0]], 2
|
|
929
|
+
];
|
|
930
|
+
var StartAutoManagementResponse$ = [3, n0, _SAMRt,
|
|
931
|
+
0,
|
|
932
|
+
[],
|
|
933
|
+
[]
|
|
934
|
+
];
|
|
935
|
+
var StartQuotaUtilizationReportRequest$ = [3, n0, _SQURR,
|
|
936
|
+
0,
|
|
937
|
+
[],
|
|
938
|
+
[]
|
|
939
|
+
];
|
|
940
|
+
var StartQuotaUtilizationReportResponse$ = [3, n0, _SQURRt,
|
|
941
|
+
0,
|
|
942
|
+
[_RIe, _S, _M],
|
|
943
|
+
[0, 0, 0]
|
|
944
|
+
];
|
|
945
|
+
var StopAutoManagementRequest$ = [3, n0, _SAMRto,
|
|
946
|
+
0,
|
|
947
|
+
[],
|
|
948
|
+
[]
|
|
949
|
+
];
|
|
950
|
+
var StopAutoManagementResponse$ = [3, n0, _SAMRtop,
|
|
951
|
+
0,
|
|
952
|
+
[],
|
|
953
|
+
[]
|
|
954
|
+
];
|
|
955
|
+
var Tag$ = [3, n0, _Ta,
|
|
956
|
+
0,
|
|
957
|
+
[_K, _V],
|
|
958
|
+
[0, 0], 2
|
|
959
|
+
];
|
|
960
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
961
|
+
0,
|
|
962
|
+
[_RARN, _T],
|
|
963
|
+
[0, () => InputTags], 2
|
|
964
|
+
];
|
|
965
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
966
|
+
0,
|
|
967
|
+
[],
|
|
968
|
+
[]
|
|
969
|
+
];
|
|
970
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
971
|
+
0,
|
|
972
|
+
[_RARN, _TK],
|
|
973
|
+
[0, 64 | 0], 2
|
|
974
|
+
];
|
|
975
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
976
|
+
0,
|
|
977
|
+
[],
|
|
978
|
+
[]
|
|
979
|
+
];
|
|
980
|
+
var UpdateAutoManagementRequest$ = [3, n0, _UAMR,
|
|
981
|
+
0,
|
|
982
|
+
[_OIT, _NA, _EL],
|
|
983
|
+
[0, 0, [2, n0, _EL, 0, 0, 64 | 0]]
|
|
984
|
+
];
|
|
985
|
+
var UpdateAutoManagementResponse$ = [3, n0, _UAMRp,
|
|
986
|
+
0,
|
|
987
|
+
[],
|
|
988
|
+
[]
|
|
989
|
+
];
|
|
990
|
+
var InputTags = [1, n0, _IT,
|
|
991
|
+
0, () => Tag$
|
|
992
|
+
];
|
|
993
|
+
var OutputTags = [1, n0, _OT,
|
|
994
|
+
0, () => Tag$
|
|
995
|
+
];
|
|
996
|
+
var QuotaInfoList = [1, n0, _QIL,
|
|
997
|
+
0, () => QuotaInfo$
|
|
998
|
+
];
|
|
999
|
+
var QuotaUtilizationInfoList = [1, n0, _QUIL,
|
|
1000
|
+
0, () => QuotaUtilizationInfo$
|
|
1001
|
+
];
|
|
1002
|
+
var RequestedServiceQuotaChangeHistoryListDefinition = [1, n0, _RSQCHLD,
|
|
1003
|
+
0, () => RequestedServiceQuotaChange$
|
|
1004
|
+
];
|
|
1005
|
+
var ServiceInfoListDefinition = [1, n0, _SILD,
|
|
1006
|
+
0, () => ServiceInfo$
|
|
1007
|
+
];
|
|
1008
|
+
var ServiceQuotaIncreaseRequestInTemplateList = [1, n0, _SQIRITL,
|
|
1009
|
+
0, () => ServiceQuotaIncreaseRequestInTemplate$
|
|
1010
|
+
];
|
|
1011
|
+
var ServiceQuotaListDefinition = [1, n0, _SQLD,
|
|
1012
|
+
0, () => ServiceQuota$
|
|
1013
|
+
];
|
|
1014
|
+
var ExclusionQuotaList = [2, n0, _EQL,
|
|
1015
|
+
0, 0, () => QuotaInfoList
|
|
1016
|
+
];
|
|
1017
|
+
var AssociateServiceQuotaTemplate$ = [9, n0, _ASQT,
|
|
1018
|
+
0, () => AssociateServiceQuotaTemplateRequest$, () => AssociateServiceQuotaTemplateResponse$
|
|
1019
|
+
];
|
|
1020
|
+
var CreateSupportCase$ = [9, n0, _CSC,
|
|
1021
|
+
0, () => CreateSupportCaseRequest$, () => CreateSupportCaseResponse$
|
|
1022
|
+
];
|
|
1023
|
+
var DeleteServiceQuotaIncreaseRequestFromTemplate$ = [9, n0, _DSQIRFT,
|
|
1024
|
+
0, () => DeleteServiceQuotaIncreaseRequestFromTemplateRequest$, () => DeleteServiceQuotaIncreaseRequestFromTemplateResponse$
|
|
1025
|
+
];
|
|
1026
|
+
var DisassociateServiceQuotaTemplate$ = [9, n0, _DSQT,
|
|
1027
|
+
0, () => DisassociateServiceQuotaTemplateRequest$, () => DisassociateServiceQuotaTemplateResponse$
|
|
1028
|
+
];
|
|
1029
|
+
var GetAssociationForServiceQuotaTemplate$ = [9, n0, _GAFSQT,
|
|
1030
|
+
0, () => GetAssociationForServiceQuotaTemplateRequest$, () => GetAssociationForServiceQuotaTemplateResponse$
|
|
1031
|
+
];
|
|
1032
|
+
var GetAutoManagementConfiguration$ = [9, n0, _GAMC,
|
|
1033
|
+
0, () => GetAutoManagementConfigurationRequest$, () => GetAutoManagementConfigurationResponse$
|
|
1034
|
+
];
|
|
1035
|
+
var GetAWSDefaultServiceQuota$ = [9, n0, _GAWSDSQ,
|
|
1036
|
+
0, () => GetAWSDefaultServiceQuotaRequest$, () => GetAWSDefaultServiceQuotaResponse$
|
|
1037
|
+
];
|
|
1038
|
+
var GetQuotaUtilizationReport$ = [9, n0, _GQUR,
|
|
1039
|
+
0, () => GetQuotaUtilizationReportRequest$, () => GetQuotaUtilizationReportResponse$
|
|
1040
|
+
];
|
|
1041
|
+
var GetRequestedServiceQuotaChange$ = [9, n0, _GRSQC,
|
|
1042
|
+
0, () => GetRequestedServiceQuotaChangeRequest$, () => GetRequestedServiceQuotaChangeResponse$
|
|
1043
|
+
];
|
|
1044
|
+
var GetServiceQuota$ = [9, n0, _GSQ,
|
|
1045
|
+
0, () => GetServiceQuotaRequest$, () => GetServiceQuotaResponse$
|
|
1046
|
+
];
|
|
1047
|
+
var GetServiceQuotaIncreaseRequestFromTemplate$ = [9, n0, _GSQIRFT,
|
|
1048
|
+
0, () => GetServiceQuotaIncreaseRequestFromTemplateRequest$, () => GetServiceQuotaIncreaseRequestFromTemplateResponse$
|
|
1049
|
+
];
|
|
1050
|
+
var ListAWSDefaultServiceQuotas$ = [9, n0, _LAWSDSQ,
|
|
1051
|
+
0, () => ListAWSDefaultServiceQuotasRequest$, () => ListAWSDefaultServiceQuotasResponse$
|
|
1052
|
+
];
|
|
1053
|
+
var ListRequestedServiceQuotaChangeHistory$ = [9, n0, _LRSQCH,
|
|
1054
|
+
0, () => ListRequestedServiceQuotaChangeHistoryRequest$, () => ListRequestedServiceQuotaChangeHistoryResponse$
|
|
1055
|
+
];
|
|
1056
|
+
var ListRequestedServiceQuotaChangeHistoryByQuota$ = [9, n0, _LRSQCHBQ,
|
|
1057
|
+
0, () => ListRequestedServiceQuotaChangeHistoryByQuotaRequest$, () => ListRequestedServiceQuotaChangeHistoryByQuotaResponse$
|
|
1058
|
+
];
|
|
1059
|
+
var ListServiceQuotaIncreaseRequestsInTemplate$ = [9, n0, _LSQIRIT,
|
|
1060
|
+
0, () => ListServiceQuotaIncreaseRequestsInTemplateRequest$, () => ListServiceQuotaIncreaseRequestsInTemplateResponse$
|
|
1061
|
+
];
|
|
1062
|
+
var ListServiceQuotas$ = [9, n0, _LSQ,
|
|
1063
|
+
0, () => ListServiceQuotasRequest$, () => ListServiceQuotasResponse$
|
|
1064
|
+
];
|
|
1065
|
+
var ListServices$ = [9, n0, _LS,
|
|
1066
|
+
0, () => ListServicesRequest$, () => ListServicesResponse$
|
|
1067
|
+
];
|
|
1068
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1069
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1070
|
+
];
|
|
1071
|
+
var PutServiceQuotaIncreaseRequestIntoTemplate$ = [9, n0, _PSQIRIT,
|
|
1072
|
+
0, () => PutServiceQuotaIncreaseRequestIntoTemplateRequest$, () => PutServiceQuotaIncreaseRequestIntoTemplateResponse$
|
|
1073
|
+
];
|
|
1074
|
+
var RequestServiceQuotaIncrease$ = [9, n0, _RSQI,
|
|
1075
|
+
0, () => RequestServiceQuotaIncreaseRequest$, () => RequestServiceQuotaIncreaseResponse$
|
|
1076
|
+
];
|
|
1077
|
+
var StartAutoManagement$ = [9, n0, _SAM,
|
|
1078
|
+
0, () => StartAutoManagementRequest$, () => StartAutoManagementResponse$
|
|
1079
|
+
];
|
|
1080
|
+
var StartQuotaUtilizationReport$ = [9, n0, _SQUR,
|
|
1081
|
+
0, () => StartQuotaUtilizationReportRequest$, () => StartQuotaUtilizationReportResponse$
|
|
1082
|
+
];
|
|
1083
|
+
var StopAutoManagement$ = [9, n0, _SAMt,
|
|
1084
|
+
0, () => StopAutoManagementRequest$, () => StopAutoManagementResponse$
|
|
1085
|
+
];
|
|
1086
|
+
var TagResource$ = [9, n0, _TR,
|
|
1087
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1088
|
+
];
|
|
1089
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1090
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1091
|
+
];
|
|
1092
|
+
var UpdateAutoManagement$ = [9, n0, _UAM,
|
|
1093
|
+
0, () => UpdateAutoManagementRequest$, () => UpdateAutoManagementResponse$
|
|
1094
|
+
];
|
|
1095
|
+
|
|
1096
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1097
|
+
return {
|
|
1098
|
+
apiVersion: "2019-06-24",
|
|
1099
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1100
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1101
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1102
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1103
|
+
extensions: config?.extensions ?? [],
|
|
1104
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultServiceQuotasHttpAuthSchemeProvider,
|
|
1105
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1106
|
+
{
|
|
1107
|
+
schemeId: "aws.auth#sigv4",
|
|
1108
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1109
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1110
|
+
},
|
|
1111
|
+
],
|
|
1112
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1113
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1114
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1115
|
+
defaultNamespace: "com.amazonaws.servicequotas",
|
|
1116
|
+
errorTypeRegistries,
|
|
1117
|
+
version: "2019-06-24",
|
|
1118
|
+
serviceTarget: "ServiceQuotasV20190624",
|
|
1119
|
+
},
|
|
1120
|
+
serviceId: config?.serviceId ?? "Service Quotas",
|
|
1121
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1122
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1123
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1124
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1125
|
+
};
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
const getRuntimeConfig = (config) => {
|
|
1129
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1130
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1131
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1132
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1133
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1134
|
+
const loaderConfig = {
|
|
1135
|
+
profile: config?.profile,
|
|
1136
|
+
logger: clientSharedValues.logger,
|
|
1137
|
+
};
|
|
1138
|
+
return {
|
|
1139
|
+
...clientSharedValues,
|
|
1140
|
+
...config,
|
|
1141
|
+
runtime: "node",
|
|
1142
|
+
defaultsMode,
|
|
1143
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1144
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1145
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1146
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1147
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1148
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1149
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1150
|
+
retryMode: config?.retryMode ??
|
|
1151
|
+
loadConfig({
|
|
1152
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1153
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1154
|
+
}, config),
|
|
1155
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1156
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1157
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1158
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
|
|
34
1162
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1163
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1164
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -533,45 +1661,171 @@ const RequestStatus = {
|
|
|
533
1661
|
PENDING: "PENDING",
|
|
534
1662
|
};
|
|
535
1663
|
|
|
1664
|
+
exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException;
|
|
1665
|
+
exports.AWSServiceAccessNotEnabledException$ = AWSServiceAccessNotEnabledException$;
|
|
1666
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1667
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
536
1668
|
exports.AppliedLevelEnum = AppliedLevelEnum;
|
|
1669
|
+
exports.AssociateServiceQuotaTemplate$ = AssociateServiceQuotaTemplate$;
|
|
537
1670
|
exports.AssociateServiceQuotaTemplateCommand = AssociateServiceQuotaTemplateCommand;
|
|
1671
|
+
exports.AssociateServiceQuotaTemplateRequest$ = AssociateServiceQuotaTemplateRequest$;
|
|
1672
|
+
exports.AssociateServiceQuotaTemplateResponse$ = AssociateServiceQuotaTemplateResponse$;
|
|
1673
|
+
exports.CreateSupportCase$ = CreateSupportCase$;
|
|
538
1674
|
exports.CreateSupportCaseCommand = CreateSupportCaseCommand;
|
|
1675
|
+
exports.CreateSupportCaseRequest$ = CreateSupportCaseRequest$;
|
|
1676
|
+
exports.CreateSupportCaseResponse$ = CreateSupportCaseResponse$;
|
|
1677
|
+
exports.DeleteServiceQuotaIncreaseRequestFromTemplate$ = DeleteServiceQuotaIncreaseRequestFromTemplate$;
|
|
539
1678
|
exports.DeleteServiceQuotaIncreaseRequestFromTemplateCommand = DeleteServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1679
|
+
exports.DeleteServiceQuotaIncreaseRequestFromTemplateRequest$ = DeleteServiceQuotaIncreaseRequestFromTemplateRequest$;
|
|
1680
|
+
exports.DeleteServiceQuotaIncreaseRequestFromTemplateResponse$ = DeleteServiceQuotaIncreaseRequestFromTemplateResponse$;
|
|
1681
|
+
exports.DependencyAccessDeniedException = DependencyAccessDeniedException;
|
|
1682
|
+
exports.DependencyAccessDeniedException$ = DependencyAccessDeniedException$;
|
|
1683
|
+
exports.DisassociateServiceQuotaTemplate$ = DisassociateServiceQuotaTemplate$;
|
|
540
1684
|
exports.DisassociateServiceQuotaTemplateCommand = DisassociateServiceQuotaTemplateCommand;
|
|
1685
|
+
exports.DisassociateServiceQuotaTemplateRequest$ = DisassociateServiceQuotaTemplateRequest$;
|
|
1686
|
+
exports.DisassociateServiceQuotaTemplateResponse$ = DisassociateServiceQuotaTemplateResponse$;
|
|
541
1687
|
exports.ErrorCode = ErrorCode;
|
|
1688
|
+
exports.ErrorReason$ = ErrorReason$;
|
|
1689
|
+
exports.GetAWSDefaultServiceQuota$ = GetAWSDefaultServiceQuota$;
|
|
542
1690
|
exports.GetAWSDefaultServiceQuotaCommand = GetAWSDefaultServiceQuotaCommand;
|
|
1691
|
+
exports.GetAWSDefaultServiceQuotaRequest$ = GetAWSDefaultServiceQuotaRequest$;
|
|
1692
|
+
exports.GetAWSDefaultServiceQuotaResponse$ = GetAWSDefaultServiceQuotaResponse$;
|
|
1693
|
+
exports.GetAssociationForServiceQuotaTemplate$ = GetAssociationForServiceQuotaTemplate$;
|
|
543
1694
|
exports.GetAssociationForServiceQuotaTemplateCommand = GetAssociationForServiceQuotaTemplateCommand;
|
|
1695
|
+
exports.GetAssociationForServiceQuotaTemplateRequest$ = GetAssociationForServiceQuotaTemplateRequest$;
|
|
1696
|
+
exports.GetAssociationForServiceQuotaTemplateResponse$ = GetAssociationForServiceQuotaTemplateResponse$;
|
|
1697
|
+
exports.GetAutoManagementConfiguration$ = GetAutoManagementConfiguration$;
|
|
544
1698
|
exports.GetAutoManagementConfigurationCommand = GetAutoManagementConfigurationCommand;
|
|
1699
|
+
exports.GetAutoManagementConfigurationRequest$ = GetAutoManagementConfigurationRequest$;
|
|
1700
|
+
exports.GetAutoManagementConfigurationResponse$ = GetAutoManagementConfigurationResponse$;
|
|
1701
|
+
exports.GetQuotaUtilizationReport$ = GetQuotaUtilizationReport$;
|
|
545
1702
|
exports.GetQuotaUtilizationReportCommand = GetQuotaUtilizationReportCommand;
|
|
1703
|
+
exports.GetQuotaUtilizationReportRequest$ = GetQuotaUtilizationReportRequest$;
|
|
1704
|
+
exports.GetQuotaUtilizationReportResponse$ = GetQuotaUtilizationReportResponse$;
|
|
1705
|
+
exports.GetRequestedServiceQuotaChange$ = GetRequestedServiceQuotaChange$;
|
|
546
1706
|
exports.GetRequestedServiceQuotaChangeCommand = GetRequestedServiceQuotaChangeCommand;
|
|
1707
|
+
exports.GetRequestedServiceQuotaChangeRequest$ = GetRequestedServiceQuotaChangeRequest$;
|
|
1708
|
+
exports.GetRequestedServiceQuotaChangeResponse$ = GetRequestedServiceQuotaChangeResponse$;
|
|
1709
|
+
exports.GetServiceQuota$ = GetServiceQuota$;
|
|
547
1710
|
exports.GetServiceQuotaCommand = GetServiceQuotaCommand;
|
|
1711
|
+
exports.GetServiceQuotaIncreaseRequestFromTemplate$ = GetServiceQuotaIncreaseRequestFromTemplate$;
|
|
548
1712
|
exports.GetServiceQuotaIncreaseRequestFromTemplateCommand = GetServiceQuotaIncreaseRequestFromTemplateCommand;
|
|
1713
|
+
exports.GetServiceQuotaIncreaseRequestFromTemplateRequest$ = GetServiceQuotaIncreaseRequestFromTemplateRequest$;
|
|
1714
|
+
exports.GetServiceQuotaIncreaseRequestFromTemplateResponse$ = GetServiceQuotaIncreaseRequestFromTemplateResponse$;
|
|
1715
|
+
exports.GetServiceQuotaRequest$ = GetServiceQuotaRequest$;
|
|
1716
|
+
exports.GetServiceQuotaResponse$ = GetServiceQuotaResponse$;
|
|
1717
|
+
exports.IllegalArgumentException = IllegalArgumentException;
|
|
1718
|
+
exports.IllegalArgumentException$ = IllegalArgumentException$;
|
|
1719
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
1720
|
+
exports.InvalidPaginationTokenException$ = InvalidPaginationTokenException$;
|
|
1721
|
+
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
1722
|
+
exports.InvalidResourceStateException$ = InvalidResourceStateException$;
|
|
1723
|
+
exports.ListAWSDefaultServiceQuotas$ = ListAWSDefaultServiceQuotas$;
|
|
549
1724
|
exports.ListAWSDefaultServiceQuotasCommand = ListAWSDefaultServiceQuotasCommand;
|
|
1725
|
+
exports.ListAWSDefaultServiceQuotasRequest$ = ListAWSDefaultServiceQuotasRequest$;
|
|
1726
|
+
exports.ListAWSDefaultServiceQuotasResponse$ = ListAWSDefaultServiceQuotasResponse$;
|
|
1727
|
+
exports.ListRequestedServiceQuotaChangeHistory$ = ListRequestedServiceQuotaChangeHistory$;
|
|
1728
|
+
exports.ListRequestedServiceQuotaChangeHistoryByQuota$ = ListRequestedServiceQuotaChangeHistoryByQuota$;
|
|
550
1729
|
exports.ListRequestedServiceQuotaChangeHistoryByQuotaCommand = ListRequestedServiceQuotaChangeHistoryByQuotaCommand;
|
|
1730
|
+
exports.ListRequestedServiceQuotaChangeHistoryByQuotaRequest$ = ListRequestedServiceQuotaChangeHistoryByQuotaRequest$;
|
|
1731
|
+
exports.ListRequestedServiceQuotaChangeHistoryByQuotaResponse$ = ListRequestedServiceQuotaChangeHistoryByQuotaResponse$;
|
|
551
1732
|
exports.ListRequestedServiceQuotaChangeHistoryCommand = ListRequestedServiceQuotaChangeHistoryCommand;
|
|
1733
|
+
exports.ListRequestedServiceQuotaChangeHistoryRequest$ = ListRequestedServiceQuotaChangeHistoryRequest$;
|
|
1734
|
+
exports.ListRequestedServiceQuotaChangeHistoryResponse$ = ListRequestedServiceQuotaChangeHistoryResponse$;
|
|
1735
|
+
exports.ListServiceQuotaIncreaseRequestsInTemplate$ = ListServiceQuotaIncreaseRequestsInTemplate$;
|
|
552
1736
|
exports.ListServiceQuotaIncreaseRequestsInTemplateCommand = ListServiceQuotaIncreaseRequestsInTemplateCommand;
|
|
1737
|
+
exports.ListServiceQuotaIncreaseRequestsInTemplateRequest$ = ListServiceQuotaIncreaseRequestsInTemplateRequest$;
|
|
1738
|
+
exports.ListServiceQuotaIncreaseRequestsInTemplateResponse$ = ListServiceQuotaIncreaseRequestsInTemplateResponse$;
|
|
1739
|
+
exports.ListServiceQuotas$ = ListServiceQuotas$;
|
|
553
1740
|
exports.ListServiceQuotasCommand = ListServiceQuotasCommand;
|
|
1741
|
+
exports.ListServiceQuotasRequest$ = ListServiceQuotasRequest$;
|
|
1742
|
+
exports.ListServiceQuotasResponse$ = ListServiceQuotasResponse$;
|
|
1743
|
+
exports.ListServices$ = ListServices$;
|
|
554
1744
|
exports.ListServicesCommand = ListServicesCommand;
|
|
1745
|
+
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
1746
|
+
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
1747
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
555
1748
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1749
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1750
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1751
|
+
exports.MetricInfo$ = MetricInfo$;
|
|
1752
|
+
exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
|
|
1753
|
+
exports.NoAvailableOrganizationException$ = NoAvailableOrganizationException$;
|
|
1754
|
+
exports.NoSuchResourceException = NoSuchResourceException;
|
|
1755
|
+
exports.NoSuchResourceException$ = NoSuchResourceException$;
|
|
556
1756
|
exports.OptInLevel = OptInLevel;
|
|
557
1757
|
exports.OptInStatus = OptInStatus;
|
|
558
1758
|
exports.OptInType = OptInType;
|
|
1759
|
+
exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
|
|
1760
|
+
exports.OrganizationNotInAllFeaturesModeException$ = OrganizationNotInAllFeaturesModeException$;
|
|
559
1761
|
exports.PeriodUnit = PeriodUnit;
|
|
1762
|
+
exports.PutServiceQuotaIncreaseRequestIntoTemplate$ = PutServiceQuotaIncreaseRequestIntoTemplate$;
|
|
560
1763
|
exports.PutServiceQuotaIncreaseRequestIntoTemplateCommand = PutServiceQuotaIncreaseRequestIntoTemplateCommand;
|
|
1764
|
+
exports.PutServiceQuotaIncreaseRequestIntoTemplateRequest$ = PutServiceQuotaIncreaseRequestIntoTemplateRequest$;
|
|
1765
|
+
exports.PutServiceQuotaIncreaseRequestIntoTemplateResponse$ = PutServiceQuotaIncreaseRequestIntoTemplateResponse$;
|
|
1766
|
+
exports.QuotaContextInfo$ = QuotaContextInfo$;
|
|
561
1767
|
exports.QuotaContextScope = QuotaContextScope;
|
|
1768
|
+
exports.QuotaExceededException = QuotaExceededException;
|
|
1769
|
+
exports.QuotaExceededException$ = QuotaExceededException$;
|
|
1770
|
+
exports.QuotaInfo$ = QuotaInfo$;
|
|
1771
|
+
exports.QuotaPeriod$ = QuotaPeriod$;
|
|
1772
|
+
exports.QuotaUtilizationInfo$ = QuotaUtilizationInfo$;
|
|
562
1773
|
exports.ReportStatus = ReportStatus;
|
|
1774
|
+
exports.RequestServiceQuotaIncrease$ = RequestServiceQuotaIncrease$;
|
|
563
1775
|
exports.RequestServiceQuotaIncreaseCommand = RequestServiceQuotaIncreaseCommand;
|
|
1776
|
+
exports.RequestServiceQuotaIncreaseRequest$ = RequestServiceQuotaIncreaseRequest$;
|
|
1777
|
+
exports.RequestServiceQuotaIncreaseResponse$ = RequestServiceQuotaIncreaseResponse$;
|
|
564
1778
|
exports.RequestStatus = RequestStatus;
|
|
565
1779
|
exports.RequestType = RequestType;
|
|
1780
|
+
exports.RequestedServiceQuotaChange$ = RequestedServiceQuotaChange$;
|
|
1781
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1782
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
1783
|
+
exports.ServiceException = ServiceException;
|
|
1784
|
+
exports.ServiceException$ = ServiceException$;
|
|
1785
|
+
exports.ServiceInfo$ = ServiceInfo$;
|
|
1786
|
+
exports.ServiceQuota$ = ServiceQuota$;
|
|
1787
|
+
exports.ServiceQuotaIncreaseRequestInTemplate$ = ServiceQuotaIncreaseRequestInTemplate$;
|
|
566
1788
|
exports.ServiceQuotaTemplateAssociationStatus = ServiceQuotaTemplateAssociationStatus;
|
|
1789
|
+
exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException;
|
|
1790
|
+
exports.ServiceQuotaTemplateNotInUseException$ = ServiceQuotaTemplateNotInUseException$;
|
|
567
1791
|
exports.ServiceQuotas = ServiceQuotas;
|
|
568
1792
|
exports.ServiceQuotasClient = ServiceQuotasClient;
|
|
1793
|
+
exports.ServiceQuotasServiceException = ServiceQuotasServiceException;
|
|
1794
|
+
exports.ServiceQuotasServiceException$ = ServiceQuotasServiceException$;
|
|
1795
|
+
exports.StartAutoManagement$ = StartAutoManagement$;
|
|
569
1796
|
exports.StartAutoManagementCommand = StartAutoManagementCommand;
|
|
1797
|
+
exports.StartAutoManagementRequest$ = StartAutoManagementRequest$;
|
|
1798
|
+
exports.StartAutoManagementResponse$ = StartAutoManagementResponse$;
|
|
1799
|
+
exports.StartQuotaUtilizationReport$ = StartQuotaUtilizationReport$;
|
|
570
1800
|
exports.StartQuotaUtilizationReportCommand = StartQuotaUtilizationReportCommand;
|
|
1801
|
+
exports.StartQuotaUtilizationReportRequest$ = StartQuotaUtilizationReportRequest$;
|
|
1802
|
+
exports.StartQuotaUtilizationReportResponse$ = StartQuotaUtilizationReportResponse$;
|
|
1803
|
+
exports.StopAutoManagement$ = StopAutoManagement$;
|
|
571
1804
|
exports.StopAutoManagementCommand = StopAutoManagementCommand;
|
|
1805
|
+
exports.StopAutoManagementRequest$ = StopAutoManagementRequest$;
|
|
1806
|
+
exports.StopAutoManagementResponse$ = StopAutoManagementResponse$;
|
|
1807
|
+
exports.Tag$ = Tag$;
|
|
1808
|
+
exports.TagPolicyViolationException = TagPolicyViolationException;
|
|
1809
|
+
exports.TagPolicyViolationException$ = TagPolicyViolationException$;
|
|
1810
|
+
exports.TagResource$ = TagResource$;
|
|
572
1811
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1812
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1813
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1814
|
+
exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException;
|
|
1815
|
+
exports.TemplatesNotAvailableInRegionException$ = TemplatesNotAvailableInRegionException$;
|
|
1816
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1817
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1818
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1819
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1820
|
+
exports.UntagResource$ = UntagResource$;
|
|
573
1821
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1822
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1823
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1824
|
+
exports.UpdateAutoManagement$ = UpdateAutoManagement$;
|
|
574
1825
|
exports.UpdateAutoManagementCommand = UpdateAutoManagementCommand;
|
|
1826
|
+
exports.UpdateAutoManagementRequest$ = UpdateAutoManagementRequest$;
|
|
1827
|
+
exports.UpdateAutoManagementResponse$ = UpdateAutoManagementResponse$;
|
|
1828
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
575
1829
|
exports.paginateListAWSDefaultServiceQuotas = paginateListAWSDefaultServiceQuotas;
|
|
576
1830
|
exports.paginateListRequestedServiceQuotaChangeHistory = paginateListRequestedServiceQuotaChangeHistory;
|
|
577
1831
|
exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = paginateListRequestedServiceQuotaChangeHistoryByQuota;
|