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