@aws-sdk/client-global-accelerator 3.1075.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 +2034 -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 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/GlobalAcceleratorServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -281
- 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 -1500
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, 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 defaultGlobalAcceleratorHttpAuthSchemeParametersProvider = 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: "globalaccelerator",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultGlobalAcceleratorHttpAuthSchemeProvider = (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,1760 @@ 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
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://globalaccelerator-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://globalaccelerator-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://globalaccelerator.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://globalaccelerator.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class GlobalAcceleratorServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, GlobalAcceleratorServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AcceleratorNotDisabledException extends GlobalAcceleratorServiceException {
|
|
140
|
+
name = "AcceleratorNotDisabledException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AcceleratorNotDisabledException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AcceleratorNotDisabledException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class AcceleratorNotFoundException extends GlobalAcceleratorServiceException {
|
|
154
|
+
name = "AcceleratorNotFoundException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "AcceleratorNotFoundException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, AcceleratorNotFoundException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class AccessDeniedException extends GlobalAcceleratorServiceException {
|
|
168
|
+
name = "AccessDeniedException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "AccessDeniedException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ConflictException extends GlobalAcceleratorServiceException {
|
|
182
|
+
name = "ConflictException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ConflictException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class EndpointAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
196
|
+
name = "EndpointAlreadyExistsException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "EndpointAlreadyExistsException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, EndpointAlreadyExistsException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class EndpointGroupNotFoundException extends GlobalAcceleratorServiceException {
|
|
210
|
+
name = "EndpointGroupNotFoundException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "EndpointGroupNotFoundException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, EndpointGroupNotFoundException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class InternalServiceErrorException extends GlobalAcceleratorServiceException {
|
|
224
|
+
name = "InternalServiceErrorException";
|
|
225
|
+
$fault = "server";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "InternalServiceErrorException",
|
|
230
|
+
$fault: "server",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class InvalidArgumentException extends GlobalAcceleratorServiceException {
|
|
238
|
+
name = "InvalidArgumentException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "InvalidArgumentException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class LimitExceededException extends GlobalAcceleratorServiceException {
|
|
252
|
+
name = "LimitExceededException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "LimitExceededException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class TransactionInProgressException extends GlobalAcceleratorServiceException {
|
|
266
|
+
name = "TransactionInProgressException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "TransactionInProgressException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, TransactionInProgressException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class ByoipCidrNotFoundException extends GlobalAcceleratorServiceException {
|
|
280
|
+
name = "ByoipCidrNotFoundException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "ByoipCidrNotFoundException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, ByoipCidrNotFoundException.prototype);
|
|
290
|
+
this.Message = opts.Message;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class IncorrectCidrStateException extends GlobalAcceleratorServiceException {
|
|
294
|
+
name = "IncorrectCidrStateException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "IncorrectCidrStateException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, IncorrectCidrStateException.prototype);
|
|
304
|
+
this.Message = opts.Message;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
class AssociatedEndpointGroupFoundException extends GlobalAcceleratorServiceException {
|
|
308
|
+
name = "AssociatedEndpointGroupFoundException";
|
|
309
|
+
$fault = "client";
|
|
310
|
+
Message;
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "AssociatedEndpointGroupFoundException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
Object.setPrototypeOf(this, AssociatedEndpointGroupFoundException.prototype);
|
|
318
|
+
this.Message = opts.Message;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
class AssociatedListenerFoundException extends GlobalAcceleratorServiceException {
|
|
322
|
+
name = "AssociatedListenerFoundException";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
Message;
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "AssociatedListenerFoundException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, AssociatedListenerFoundException.prototype);
|
|
332
|
+
this.Message = opts.Message;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class AttachmentNotFoundException extends GlobalAcceleratorServiceException {
|
|
336
|
+
name = "AttachmentNotFoundException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
Message;
|
|
339
|
+
constructor(opts) {
|
|
340
|
+
super({
|
|
341
|
+
name: "AttachmentNotFoundException",
|
|
342
|
+
$fault: "client",
|
|
343
|
+
...opts,
|
|
344
|
+
});
|
|
345
|
+
Object.setPrototypeOf(this, AttachmentNotFoundException.prototype);
|
|
346
|
+
this.Message = opts.Message;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
class EndpointGroupAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
350
|
+
name = "EndpointGroupAlreadyExistsException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
Message;
|
|
353
|
+
constructor(opts) {
|
|
354
|
+
super({
|
|
355
|
+
name: "EndpointGroupAlreadyExistsException",
|
|
356
|
+
$fault: "client",
|
|
357
|
+
...opts,
|
|
358
|
+
});
|
|
359
|
+
Object.setPrototypeOf(this, EndpointGroupAlreadyExistsException.prototype);
|
|
360
|
+
this.Message = opts.Message;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
class InvalidPortRangeException extends GlobalAcceleratorServiceException {
|
|
364
|
+
name = "InvalidPortRangeException";
|
|
365
|
+
$fault = "client";
|
|
366
|
+
Message;
|
|
367
|
+
constructor(opts) {
|
|
368
|
+
super({
|
|
369
|
+
name: "InvalidPortRangeException",
|
|
370
|
+
$fault: "client",
|
|
371
|
+
...opts,
|
|
372
|
+
});
|
|
373
|
+
Object.setPrototypeOf(this, InvalidPortRangeException.prototype);
|
|
374
|
+
this.Message = opts.Message;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
class ListenerNotFoundException extends GlobalAcceleratorServiceException {
|
|
378
|
+
name = "ListenerNotFoundException";
|
|
379
|
+
$fault = "client";
|
|
380
|
+
Message;
|
|
381
|
+
constructor(opts) {
|
|
382
|
+
super({
|
|
383
|
+
name: "ListenerNotFoundException",
|
|
384
|
+
$fault: "client",
|
|
385
|
+
...opts,
|
|
386
|
+
});
|
|
387
|
+
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
388
|
+
this.Message = opts.Message;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
class EndpointNotFoundException extends GlobalAcceleratorServiceException {
|
|
392
|
+
name = "EndpointNotFoundException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
395
|
+
constructor(opts) {
|
|
396
|
+
super({
|
|
397
|
+
name: "EndpointNotFoundException",
|
|
398
|
+
$fault: "client",
|
|
399
|
+
...opts,
|
|
400
|
+
});
|
|
401
|
+
Object.setPrototypeOf(this, EndpointNotFoundException.prototype);
|
|
402
|
+
this.Message = opts.Message;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
class InvalidNextTokenException extends GlobalAcceleratorServiceException {
|
|
406
|
+
name = "InvalidNextTokenException";
|
|
407
|
+
$fault = "client";
|
|
408
|
+
Message;
|
|
409
|
+
constructor(opts) {
|
|
410
|
+
super({
|
|
411
|
+
name: "InvalidNextTokenException",
|
|
412
|
+
$fault: "client",
|
|
413
|
+
...opts,
|
|
414
|
+
});
|
|
415
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
416
|
+
this.Message = opts.Message;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
const _A = "Accelerator";
|
|
421
|
+
const _AA = "AcceleratorArn";
|
|
422
|
+
const _AATTE = "AllowAllTrafficToEndpoint";
|
|
423
|
+
const _AAc = "AcceleratorAttributes";
|
|
424
|
+
const _AAt = "AttachmentArn";
|
|
425
|
+
const _ABC = "AdvertiseByoipCidr";
|
|
426
|
+
const _ABCR = "AdvertiseByoipCidrRequest";
|
|
427
|
+
const _ABCRd = "AdvertiseByoipCidrResponse";
|
|
428
|
+
const _ACRE = "AddCustomRoutingEndpoints";
|
|
429
|
+
const _ACRER = "AddCustomRoutingEndpointsRequest";
|
|
430
|
+
const _ACRERd = "AddCustomRoutingEndpointsResponse";
|
|
431
|
+
const _ACRT = "AllowCustomRoutingTraffic";
|
|
432
|
+
const _ACRTR = "AllowCustomRoutingTrafficRequest";
|
|
433
|
+
const _ADE = "AccessDeniedException";
|
|
434
|
+
const _AE = "AcceleratorEvent";
|
|
435
|
+
const _AEGFE = "AssociatedEndpointGroupFoundException";
|
|
436
|
+
const _AER = "AddEndpointsRequest";
|
|
437
|
+
const _AERd = "AddEndpointsResponse";
|
|
438
|
+
const _AEc = "AcceleratorEvents";
|
|
439
|
+
const _AEd = "AddEndpoints";
|
|
440
|
+
const _ALFE = "AssociatedListenerFoundException";
|
|
441
|
+
const _ANDE = "AcceleratorNotDisabledException";
|
|
442
|
+
const _ANFE = "AcceleratorNotFoundException";
|
|
443
|
+
const _ANFEt = "AttachmentNotFoundException";
|
|
444
|
+
const _AP = "AcceleratorPort";
|
|
445
|
+
const _APd = "AddPrincipals";
|
|
446
|
+
const _AR = "AddResources";
|
|
447
|
+
const _ASA = "AcceleratorSocketAddresses";
|
|
448
|
+
const _Ac = "Accelerators";
|
|
449
|
+
const _At = "Attachment";
|
|
450
|
+
const _Att = "Attachments";
|
|
451
|
+
const _BC = "ByoipCidr";
|
|
452
|
+
const _BCE = "ByoipCidrEvent";
|
|
453
|
+
const _BCEy = "ByoipCidrEvents";
|
|
454
|
+
const _BCNFE = "ByoipCidrNotFoundException";
|
|
455
|
+
const _BCy = "ByoipCidrs";
|
|
456
|
+
const _C = "Cidr";
|
|
457
|
+
const _CA = "ClientAffinity";
|
|
458
|
+
const _CAA = "CrossAccountAttachment";
|
|
459
|
+
const _CAAr = "CrossAccountAttachments";
|
|
460
|
+
const _CAC = "CidrAuthorizationContext";
|
|
461
|
+
const _CAR = "CreateAcceleratorRequest";
|
|
462
|
+
const _CARr = "CreateAcceleratorResponse";
|
|
463
|
+
const _CARro = "CrossAccountResource";
|
|
464
|
+
const _CARros = "CrossAccountResources";
|
|
465
|
+
const _CAr = "CreateAccelerator";
|
|
466
|
+
const _CCAA = "CreateCrossAccountAttachment";
|
|
467
|
+
const _CCAAR = "CreateCrossAccountAttachmentRequest";
|
|
468
|
+
const _CCAARr = "CreateCrossAccountAttachmentResponse";
|
|
469
|
+
const _CCRA = "CreateCustomRoutingAccelerator";
|
|
470
|
+
const _CCRAR = "CreateCustomRoutingAcceleratorRequest";
|
|
471
|
+
const _CCRARr = "CreateCustomRoutingAcceleratorResponse";
|
|
472
|
+
const _CCREG = "CreateCustomRoutingEndpointGroup";
|
|
473
|
+
const _CCREGR = "CreateCustomRoutingEndpointGroupRequest";
|
|
474
|
+
const _CCREGRr = "CreateCustomRoutingEndpointGroupResponse";
|
|
475
|
+
const _CCRL = "CreateCustomRoutingListener";
|
|
476
|
+
const _CCRLR = "CreateCustomRoutingListenerRequest";
|
|
477
|
+
const _CCRLRr = "CreateCustomRoutingListenerResponse";
|
|
478
|
+
const _CE = "ConflictException";
|
|
479
|
+
const _CEG = "CreateEndpointGroup";
|
|
480
|
+
const _CEGR = "CreateEndpointGroupRequest";
|
|
481
|
+
const _CEGRr = "CreateEndpointGroupResponse";
|
|
482
|
+
const _CIPPE = "ClientIPPreservationEnabled";
|
|
483
|
+
const _CL = "CreateListener";
|
|
484
|
+
const _CLR = "CreateListenerRequest";
|
|
485
|
+
const _CLRr = "CreateListenerResponse";
|
|
486
|
+
const _CRA = "CustomRoutingAccelerator";
|
|
487
|
+
const _CRAA = "CustomRoutingAcceleratorAttributes";
|
|
488
|
+
const _CRAu = "CustomRoutingAccelerators";
|
|
489
|
+
const _CRDC = "CustomRoutingDestinationConfiguration";
|
|
490
|
+
const _CRDCu = "CustomRoutingDestinationConfigurations";
|
|
491
|
+
const _CRDD = "CustomRoutingDestinationDescription";
|
|
492
|
+
const _CRDDu = "CustomRoutingDestinationDescriptions";
|
|
493
|
+
const _CREC = "CustomRoutingEndpointConfiguration";
|
|
494
|
+
const _CRECu = "CustomRoutingEndpointConfigurations";
|
|
495
|
+
const _CRED = "CustomRoutingEndpointDescription";
|
|
496
|
+
const _CREDu = "CustomRoutingEndpointDescriptions";
|
|
497
|
+
const _CREG = "CustomRoutingEndpointGroup";
|
|
498
|
+
const _CREGu = "CustomRoutingEndpointGroups";
|
|
499
|
+
const _CRL = "CustomRoutingListener";
|
|
500
|
+
const _CRLu = "CustomRoutingListeners";
|
|
501
|
+
const _CT = "CreatedTime";
|
|
502
|
+
const _DA = "DestinationAddresses";
|
|
503
|
+
const _DAA = "DescribeAcceleratorAttributes";
|
|
504
|
+
const _DAAR = "DescribeAcceleratorAttributesRequest";
|
|
505
|
+
const _DAARe = "DescribeAcceleratorAttributesResponse";
|
|
506
|
+
const _DAR = "DeleteAcceleratorRequest";
|
|
507
|
+
const _DARe = "DescribeAcceleratorRequest";
|
|
508
|
+
const _DARes = "DescribeAcceleratorResponse";
|
|
509
|
+
const _DATTE = "DenyAllTrafficToEndpoint";
|
|
510
|
+
const _DAe = "DestinationAddress";
|
|
511
|
+
const _DAel = "DeleteAccelerator";
|
|
512
|
+
const _DAes = "DescribeAccelerator";
|
|
513
|
+
const _DBC = "DeprovisionByoipCidr";
|
|
514
|
+
const _DBCR = "DeprovisionByoipCidrRequest";
|
|
515
|
+
const _DBCRe = "DeprovisionByoipCidrResponse";
|
|
516
|
+
const _DC = "DestinationConfigurations";
|
|
517
|
+
const _DCAA = "DeleteCrossAccountAttachment";
|
|
518
|
+
const _DCAAR = "DeleteCrossAccountAttachmentRequest";
|
|
519
|
+
const _DCAARe = "DescribeCrossAccountAttachmentRequest";
|
|
520
|
+
const _DCAARes = "DescribeCrossAccountAttachmentResponse";
|
|
521
|
+
const _DCAAe = "DescribeCrossAccountAttachment";
|
|
522
|
+
const _DCRA = "DeleteCustomRoutingAccelerator";
|
|
523
|
+
const _DCRAA = "DescribeCustomRoutingAcceleratorAttributes";
|
|
524
|
+
const _DCRAAR = "DescribeCustomRoutingAcceleratorAttributesRequest";
|
|
525
|
+
const _DCRAARe = "DescribeCustomRoutingAcceleratorAttributesResponse";
|
|
526
|
+
const _DCRAR = "DeleteCustomRoutingAcceleratorRequest";
|
|
527
|
+
const _DCRARe = "DescribeCustomRoutingAcceleratorRequest";
|
|
528
|
+
const _DCRARes = "DescribeCustomRoutingAcceleratorResponse";
|
|
529
|
+
const _DCRAe = "DescribeCustomRoutingAccelerator";
|
|
530
|
+
const _DCREG = "DeleteCustomRoutingEndpointGroup";
|
|
531
|
+
const _DCREGR = "DeleteCustomRoutingEndpointGroupRequest";
|
|
532
|
+
const _DCREGRe = "DescribeCustomRoutingEndpointGroupRequest";
|
|
533
|
+
const _DCREGRes = "DescribeCustomRoutingEndpointGroupResponse";
|
|
534
|
+
const _DCREGe = "DescribeCustomRoutingEndpointGroup";
|
|
535
|
+
const _DCRL = "DeleteCustomRoutingListener";
|
|
536
|
+
const _DCRLR = "DeleteCustomRoutingListenerRequest";
|
|
537
|
+
const _DCRLRe = "DescribeCustomRoutingListenerRequest";
|
|
538
|
+
const _DCRLRes = "DescribeCustomRoutingListenerResponse";
|
|
539
|
+
const _DCRLe = "DescribeCustomRoutingListener";
|
|
540
|
+
const _DCRT = "DenyCustomRoutingTraffic";
|
|
541
|
+
const _DCRTR = "DenyCustomRoutingTrafficRequest";
|
|
542
|
+
const _DD = "DestinationDescriptions";
|
|
543
|
+
const _DEG = "DeleteEndpointGroup";
|
|
544
|
+
const _DEGR = "DeleteEndpointGroupRequest";
|
|
545
|
+
const _DEGRe = "DescribeEndpointGroupRequest";
|
|
546
|
+
const _DEGRes = "DescribeEndpointGroupResponse";
|
|
547
|
+
const _DEGe = "DescribeEndpointGroup";
|
|
548
|
+
const _DL = "DeleteListener";
|
|
549
|
+
const _DLR = "DeleteListenerRequest";
|
|
550
|
+
const _DLRe = "DescribeListenerRequest";
|
|
551
|
+
const _DLRes = "DescribeListenerResponse";
|
|
552
|
+
const _DLe = "DescribeListener";
|
|
553
|
+
const _DN = "DnsName";
|
|
554
|
+
const _DP = "DestinationPorts";
|
|
555
|
+
const _DPM = "DestinationPortMapping";
|
|
556
|
+
const _DPMe = "DestinationPortMappings";
|
|
557
|
+
const _DSA = "DestinationSocketAddress";
|
|
558
|
+
const _DSDN = "DualStackDnsName";
|
|
559
|
+
const _DTS = "DestinationTrafficState";
|
|
560
|
+
const _E = "Enabled";
|
|
561
|
+
const _EAEE = "EndpointAlreadyExistsException";
|
|
562
|
+
const _EC = "EndpointConfigurations";
|
|
563
|
+
const _ECn = "EndpointConfiguration";
|
|
564
|
+
const _ED = "EndpointDescriptions";
|
|
565
|
+
const _EDn = "EndpointDescription";
|
|
566
|
+
const _EG = "EndpointGroup";
|
|
567
|
+
const _EGA = "EndpointGroupArn";
|
|
568
|
+
const _EGAEE = "EndpointGroupAlreadyExistsException";
|
|
569
|
+
const _EGNFE = "EndpointGroupNotFoundException";
|
|
570
|
+
const _EGR = "EndpointGroupRegion";
|
|
571
|
+
const _EGn = "EndpointGroups";
|
|
572
|
+
const _EI = "EndpointId";
|
|
573
|
+
const _EIn = "EndpointIdentifier";
|
|
574
|
+
const _EInd = "EndpointIds";
|
|
575
|
+
const _EIndp = "EndpointIdentifiers";
|
|
576
|
+
const _ENFE = "EndpointNotFoundException";
|
|
577
|
+
const _EP = "EndpointPort";
|
|
578
|
+
const _Ev = "Events";
|
|
579
|
+
const _FLE = "FlowLogsEnabled";
|
|
580
|
+
const _FLSB = "FlowLogsS3Bucket";
|
|
581
|
+
const _FLSP = "FlowLogsS3Prefix";
|
|
582
|
+
const _FP = "FromPort";
|
|
583
|
+
const _HCIS = "HealthCheckIntervalSeconds";
|
|
584
|
+
const _HCP = "HealthCheckPort";
|
|
585
|
+
const _HCPe = "HealthCheckProtocol";
|
|
586
|
+
const _HCPea = "HealthCheckPath";
|
|
587
|
+
const _HR = "HealthReason";
|
|
588
|
+
const _HS = "HealthState";
|
|
589
|
+
const _IA = "IpAddresses";
|
|
590
|
+
const _IAE = "InvalidArgumentException";
|
|
591
|
+
const _IAF = "IpAddressFamily";
|
|
592
|
+
const _IAT = "IpAddressType";
|
|
593
|
+
const _IAp = "IpAddress";
|
|
594
|
+
const _ICSE = "IncorrectCidrStateException";
|
|
595
|
+
const _IF = "IpFamily";
|
|
596
|
+
const _INTE = "InvalidNextTokenException";
|
|
597
|
+
const _IPRE = "InvalidPortRangeException";
|
|
598
|
+
const _IS = "IpSets";
|
|
599
|
+
const _ISEE = "InternalServiceErrorException";
|
|
600
|
+
const _ISp = "IpSet";
|
|
601
|
+
const _IT = "IdempotencyToken";
|
|
602
|
+
const _K = "Key";
|
|
603
|
+
const _L = "Listener";
|
|
604
|
+
const _LA = "ListenerArn";
|
|
605
|
+
const _LAR = "ListAcceleratorsRequest";
|
|
606
|
+
const _LARi = "ListAcceleratorsResponse";
|
|
607
|
+
const _LAi = "ListAccelerators";
|
|
608
|
+
const _LBC = "ListByoipCidrs";
|
|
609
|
+
const _LBCR = "ListByoipCidrsRequest";
|
|
610
|
+
const _LBCRi = "ListByoipCidrsResponse";
|
|
611
|
+
const _LCAA = "ListCrossAccountAttachments";
|
|
612
|
+
const _LCAAR = "ListCrossAccountAttachmentsRequest";
|
|
613
|
+
const _LCAARi = "ListCrossAccountAttachmentsResponse";
|
|
614
|
+
const _LCAR = "ListCrossAccountResources";
|
|
615
|
+
const _LCARA = "ListCrossAccountResourceAccounts";
|
|
616
|
+
const _LCARAR = "ListCrossAccountResourceAccountsRequest";
|
|
617
|
+
const _LCARARi = "ListCrossAccountResourceAccountsResponse";
|
|
618
|
+
const _LCARR = "ListCrossAccountResourcesRequest";
|
|
619
|
+
const _LCARRi = "ListCrossAccountResourcesResponse";
|
|
620
|
+
const _LCRA = "ListCustomRoutingAccelerators";
|
|
621
|
+
const _LCRAR = "ListCustomRoutingAcceleratorsRequest";
|
|
622
|
+
const _LCRARi = "ListCustomRoutingAcceleratorsResponse";
|
|
623
|
+
const _LCREG = "ListCustomRoutingEndpointGroups";
|
|
624
|
+
const _LCREGR = "ListCustomRoutingEndpointGroupsRequest";
|
|
625
|
+
const _LCREGRi = "ListCustomRoutingEndpointGroupsResponse";
|
|
626
|
+
const _LCRL = "ListCustomRoutingListeners";
|
|
627
|
+
const _LCRLR = "ListCustomRoutingListenersRequest";
|
|
628
|
+
const _LCRLRi = "ListCustomRoutingListenersResponse";
|
|
629
|
+
const _LCRPM = "ListCustomRoutingPortMappings";
|
|
630
|
+
const _LCRPMBD = "ListCustomRoutingPortMappingsByDestination";
|
|
631
|
+
const _LCRPMBDR = "ListCustomRoutingPortMappingsByDestinationRequest";
|
|
632
|
+
const _LCRPMBDRi = "ListCustomRoutingPortMappingsByDestinationResponse";
|
|
633
|
+
const _LCRPMR = "ListCustomRoutingPortMappingsRequest";
|
|
634
|
+
const _LCRPMRi = "ListCustomRoutingPortMappingsResponse";
|
|
635
|
+
const _LEE = "LimitExceededException";
|
|
636
|
+
const _LEG = "ListEndpointGroups";
|
|
637
|
+
const _LEGR = "ListEndpointGroupsRequest";
|
|
638
|
+
const _LEGRi = "ListEndpointGroupsResponse";
|
|
639
|
+
const _LL = "ListListeners";
|
|
640
|
+
const _LLR = "ListListenersRequest";
|
|
641
|
+
const _LLRi = "ListListenersResponse";
|
|
642
|
+
const _LMT = "LastModifiedTime";
|
|
643
|
+
const _LNFE = "ListenerNotFoundException";
|
|
644
|
+
const _LP = "ListenerPort";
|
|
645
|
+
const _LTFR = "ListTagsForResource";
|
|
646
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
647
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
648
|
+
const _Li = "Listeners";
|
|
649
|
+
const _M = "Message";
|
|
650
|
+
const _MR = "MaxResults";
|
|
651
|
+
const _N = "Name";
|
|
652
|
+
const _NT = "NextToken";
|
|
653
|
+
const _P = "Principals";
|
|
654
|
+
const _PBC = "ProvisionByoipCidr";
|
|
655
|
+
const _PBCR = "ProvisionByoipCidrRequest";
|
|
656
|
+
const _PBCRr = "ProvisionByoipCidrResponse";
|
|
657
|
+
const _PM = "PortMappings";
|
|
658
|
+
const _PMo = "PortMapping";
|
|
659
|
+
const _PO = "PortOverrides";
|
|
660
|
+
const _POo = "PortOverride";
|
|
661
|
+
const _PR = "PortRanges";
|
|
662
|
+
const _PRo = "PortRange";
|
|
663
|
+
const _Po = "Port";
|
|
664
|
+
const _Pr = "Protocol";
|
|
665
|
+
const _Pro = "Protocols";
|
|
666
|
+
const _R = "Resources";
|
|
667
|
+
const _RA = "ResourceArn";
|
|
668
|
+
const _RCRE = "RemoveCustomRoutingEndpoints";
|
|
669
|
+
const _RCRER = "RemoveCustomRoutingEndpointsRequest";
|
|
670
|
+
const _RE = "RemoveEndpoints";
|
|
671
|
+
const _RER = "RemoveEndpointsRequest";
|
|
672
|
+
const _ROAAI = "ResourceOwnerAwsAccountIds";
|
|
673
|
+
const _ROAAIe = "ResourceOwnerAwsAccountId";
|
|
674
|
+
const _RP = "RemovePrincipals";
|
|
675
|
+
const _RR = "RemoveResources";
|
|
676
|
+
const _Re = "Resource";
|
|
677
|
+
const _Reg = "Region";
|
|
678
|
+
const _S = "Status";
|
|
679
|
+
const _SA = "SocketAddress";
|
|
680
|
+
const _SAo = "SocketAddresses";
|
|
681
|
+
const _Si = "Signature";
|
|
682
|
+
const _St = "State";
|
|
683
|
+
const _T = "Timestamp";
|
|
684
|
+
const _TC = "ThresholdCount";
|
|
685
|
+
const _TDP = "TrafficDialPercentage";
|
|
686
|
+
const _TIPE = "TransactionInProgressException";
|
|
687
|
+
const _TK = "TagKeys";
|
|
688
|
+
const _TP = "ToPort";
|
|
689
|
+
const _TR = "TagResource";
|
|
690
|
+
const _TRR = "TagResourceRequest";
|
|
691
|
+
const _TRRa = "TagResourceResponse";
|
|
692
|
+
const _Ta = "Tags";
|
|
693
|
+
const _Tag = "Tag";
|
|
694
|
+
const _UA = "UpdateAccelerator";
|
|
695
|
+
const _UAA = "UpdateAcceleratorAttributes";
|
|
696
|
+
const _UAAR = "UpdateAcceleratorAttributesRequest";
|
|
697
|
+
const _UAARp = "UpdateAcceleratorAttributesResponse";
|
|
698
|
+
const _UAR = "UpdateAcceleratorRequest";
|
|
699
|
+
const _UARp = "UpdateAcceleratorResponse";
|
|
700
|
+
const _UCAA = "UpdateCrossAccountAttachment";
|
|
701
|
+
const _UCAAR = "UpdateCrossAccountAttachmentRequest";
|
|
702
|
+
const _UCAARp = "UpdateCrossAccountAttachmentResponse";
|
|
703
|
+
const _UCRA = "UpdateCustomRoutingAccelerator";
|
|
704
|
+
const _UCRAA = "UpdateCustomRoutingAcceleratorAttributes";
|
|
705
|
+
const _UCRAAR = "UpdateCustomRoutingAcceleratorAttributesRequest";
|
|
706
|
+
const _UCRAARp = "UpdateCustomRoutingAcceleratorAttributesResponse";
|
|
707
|
+
const _UCRAR = "UpdateCustomRoutingAcceleratorRequest";
|
|
708
|
+
const _UCRARp = "UpdateCustomRoutingAcceleratorResponse";
|
|
709
|
+
const _UCRL = "UpdateCustomRoutingListener";
|
|
710
|
+
const _UCRLR = "UpdateCustomRoutingListenerRequest";
|
|
711
|
+
const _UCRLRp = "UpdateCustomRoutingListenerResponse";
|
|
712
|
+
const _UEG = "UpdateEndpointGroup";
|
|
713
|
+
const _UEGR = "UpdateEndpointGroupRequest";
|
|
714
|
+
const _UEGRp = "UpdateEndpointGroupResponse";
|
|
715
|
+
const _UL = "UpdateListener";
|
|
716
|
+
const _ULR = "UpdateListenerRequest";
|
|
717
|
+
const _ULRp = "UpdateListenerResponse";
|
|
718
|
+
const _UR = "UntagResource";
|
|
719
|
+
const _URR = "UntagResourceRequest";
|
|
720
|
+
const _URRn = "UntagResourceResponse";
|
|
721
|
+
const _V = "Value";
|
|
722
|
+
const _W = "Weight";
|
|
723
|
+
const _WBC = "WithdrawByoipCidr";
|
|
724
|
+
const _WBCR = "WithdrawByoipCidrRequest";
|
|
725
|
+
const _WBCRi = "WithdrawByoipCidrResponse";
|
|
726
|
+
const _c = "client";
|
|
727
|
+
const _e = "error";
|
|
728
|
+
const _hE = "httpError";
|
|
729
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.globalaccelerator";
|
|
730
|
+
const _se = "server";
|
|
731
|
+
const n0 = "com.amazonaws.globalaccelerator";
|
|
732
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
733
|
+
var GlobalAcceleratorServiceException$ = [-3, _s, "GlobalAcceleratorServiceException", 0, [], []];
|
|
734
|
+
_s_registry.registerError(GlobalAcceleratorServiceException$, GlobalAcceleratorServiceException);
|
|
735
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
736
|
+
var AcceleratorNotDisabledException$ = [-3, n0, _ANDE,
|
|
737
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
738
|
+
[_M],
|
|
739
|
+
[0]
|
|
740
|
+
];
|
|
741
|
+
n0_registry.registerError(AcceleratorNotDisabledException$, AcceleratorNotDisabledException);
|
|
742
|
+
var AcceleratorNotFoundException$ = [-3, n0, _ANFE,
|
|
743
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
744
|
+
[_M],
|
|
745
|
+
[0]
|
|
746
|
+
];
|
|
747
|
+
n0_registry.registerError(AcceleratorNotFoundException$, AcceleratorNotFoundException);
|
|
748
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
749
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
750
|
+
[_M],
|
|
751
|
+
[0]
|
|
752
|
+
];
|
|
753
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
754
|
+
var AssociatedEndpointGroupFoundException$ = [-3, n0, _AEGFE,
|
|
755
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
756
|
+
[_M],
|
|
757
|
+
[0]
|
|
758
|
+
];
|
|
759
|
+
n0_registry.registerError(AssociatedEndpointGroupFoundException$, AssociatedEndpointGroupFoundException);
|
|
760
|
+
var AssociatedListenerFoundException$ = [-3, n0, _ALFE,
|
|
761
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
762
|
+
[_M],
|
|
763
|
+
[0]
|
|
764
|
+
];
|
|
765
|
+
n0_registry.registerError(AssociatedListenerFoundException$, AssociatedListenerFoundException);
|
|
766
|
+
var AttachmentNotFoundException$ = [-3, n0, _ANFEt,
|
|
767
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
768
|
+
[_M],
|
|
769
|
+
[0]
|
|
770
|
+
];
|
|
771
|
+
n0_registry.registerError(AttachmentNotFoundException$, AttachmentNotFoundException);
|
|
772
|
+
var ByoipCidrNotFoundException$ = [-3, n0, _BCNFE,
|
|
773
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
774
|
+
[_M],
|
|
775
|
+
[0]
|
|
776
|
+
];
|
|
777
|
+
n0_registry.registerError(ByoipCidrNotFoundException$, ByoipCidrNotFoundException);
|
|
778
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
779
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
780
|
+
[_M],
|
|
781
|
+
[0]
|
|
782
|
+
];
|
|
783
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
784
|
+
var EndpointAlreadyExistsException$ = [-3, n0, _EAEE,
|
|
785
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
786
|
+
[_M],
|
|
787
|
+
[0]
|
|
788
|
+
];
|
|
789
|
+
n0_registry.registerError(EndpointAlreadyExistsException$, EndpointAlreadyExistsException);
|
|
790
|
+
var EndpointGroupAlreadyExistsException$ = [-3, n0, _EGAEE,
|
|
791
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
792
|
+
[_M],
|
|
793
|
+
[0]
|
|
794
|
+
];
|
|
795
|
+
n0_registry.registerError(EndpointGroupAlreadyExistsException$, EndpointGroupAlreadyExistsException);
|
|
796
|
+
var EndpointGroupNotFoundException$ = [-3, n0, _EGNFE,
|
|
797
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
798
|
+
[_M],
|
|
799
|
+
[0]
|
|
800
|
+
];
|
|
801
|
+
n0_registry.registerError(EndpointGroupNotFoundException$, EndpointGroupNotFoundException);
|
|
802
|
+
var EndpointNotFoundException$ = [-3, n0, _ENFE,
|
|
803
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
804
|
+
[_M],
|
|
805
|
+
[0]
|
|
806
|
+
];
|
|
807
|
+
n0_registry.registerError(EndpointNotFoundException$, EndpointNotFoundException);
|
|
808
|
+
var IncorrectCidrStateException$ = [-3, n0, _ICSE,
|
|
809
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
810
|
+
[_M],
|
|
811
|
+
[0]
|
|
812
|
+
];
|
|
813
|
+
n0_registry.registerError(IncorrectCidrStateException$, IncorrectCidrStateException);
|
|
814
|
+
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
815
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
816
|
+
[_M],
|
|
817
|
+
[0]
|
|
818
|
+
];
|
|
819
|
+
n0_registry.registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
820
|
+
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
821
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
822
|
+
[_M],
|
|
823
|
+
[0]
|
|
824
|
+
];
|
|
825
|
+
n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
826
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
827
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
828
|
+
[_M],
|
|
829
|
+
[0]
|
|
830
|
+
];
|
|
831
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
832
|
+
var InvalidPortRangeException$ = [-3, n0, _IPRE,
|
|
833
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
834
|
+
[_M],
|
|
835
|
+
[0]
|
|
836
|
+
];
|
|
837
|
+
n0_registry.registerError(InvalidPortRangeException$, InvalidPortRangeException);
|
|
838
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
839
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
840
|
+
[_M],
|
|
841
|
+
[0]
|
|
842
|
+
];
|
|
843
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
844
|
+
var ListenerNotFoundException$ = [-3, n0, _LNFE,
|
|
845
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
846
|
+
[_M],
|
|
847
|
+
[0]
|
|
848
|
+
];
|
|
849
|
+
n0_registry.registerError(ListenerNotFoundException$, ListenerNotFoundException);
|
|
850
|
+
var TransactionInProgressException$ = [-3, n0, _TIPE,
|
|
851
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
852
|
+
[_M],
|
|
853
|
+
[0]
|
|
854
|
+
];
|
|
855
|
+
n0_registry.registerError(TransactionInProgressException$, TransactionInProgressException);
|
|
856
|
+
const errorTypeRegistries = [
|
|
857
|
+
_s_registry,
|
|
858
|
+
n0_registry,
|
|
859
|
+
];
|
|
860
|
+
var Accelerator$ = [3, n0, _A,
|
|
861
|
+
0,
|
|
862
|
+
[_AA, _N, _IAT, _E, _IS, _DN, _S, _CT, _LMT, _DSDN, _Ev],
|
|
863
|
+
[0, 0, 0, 2, () => IpSets, 0, 0, 4, 4, 0, () => AcceleratorEvents]
|
|
864
|
+
];
|
|
865
|
+
var AcceleratorAttributes$ = [3, n0, _AAc,
|
|
866
|
+
0,
|
|
867
|
+
[_FLE, _FLSB, _FLSP],
|
|
868
|
+
[2, 0, 0]
|
|
869
|
+
];
|
|
870
|
+
var AcceleratorEvent$ = [3, n0, _AE,
|
|
871
|
+
0,
|
|
872
|
+
[_M, _T],
|
|
873
|
+
[0, 4]
|
|
874
|
+
];
|
|
875
|
+
var AddCustomRoutingEndpointsRequest$ = [3, n0, _ACRER,
|
|
876
|
+
0,
|
|
877
|
+
[_EC, _EGA],
|
|
878
|
+
[() => CustomRoutingEndpointConfigurations, 0], 2
|
|
879
|
+
];
|
|
880
|
+
var AddCustomRoutingEndpointsResponse$ = [3, n0, _ACRERd,
|
|
881
|
+
0,
|
|
882
|
+
[_ED, _EGA],
|
|
883
|
+
[() => CustomRoutingEndpointDescriptions, 0]
|
|
884
|
+
];
|
|
885
|
+
var AddEndpointsRequest$ = [3, n0, _AER,
|
|
886
|
+
0,
|
|
887
|
+
[_EC, _EGA],
|
|
888
|
+
[() => EndpointConfigurations, 0], 2
|
|
889
|
+
];
|
|
890
|
+
var AddEndpointsResponse$ = [3, n0, _AERd,
|
|
891
|
+
0,
|
|
892
|
+
[_ED, _EGA],
|
|
893
|
+
[() => EndpointDescriptions, 0]
|
|
894
|
+
];
|
|
895
|
+
var AdvertiseByoipCidrRequest$ = [3, n0, _ABCR,
|
|
896
|
+
0,
|
|
897
|
+
[_C],
|
|
898
|
+
[0], 1
|
|
899
|
+
];
|
|
900
|
+
var AdvertiseByoipCidrResponse$ = [3, n0, _ABCRd,
|
|
901
|
+
0,
|
|
902
|
+
[_BC],
|
|
903
|
+
[() => ByoipCidr$]
|
|
904
|
+
];
|
|
905
|
+
var AllowCustomRoutingTrafficRequest$ = [3, n0, _ACRTR,
|
|
906
|
+
0,
|
|
907
|
+
[_EGA, _EI, _DA, _DP, _AATTE],
|
|
908
|
+
[0, 0, 64 | 0, 64 | 1, 2], 2
|
|
909
|
+
];
|
|
910
|
+
var Attachment$ = [3, n0, _At,
|
|
911
|
+
0,
|
|
912
|
+
[_AAt, _N, _P, _R, _LMT, _CT],
|
|
913
|
+
[0, 0, 64 | 0, () => Resources, 4, 4]
|
|
914
|
+
];
|
|
915
|
+
var ByoipCidr$ = [3, n0, _BC,
|
|
916
|
+
0,
|
|
917
|
+
[_C, _St, _Ev],
|
|
918
|
+
[0, 0, () => ByoipCidrEvents]
|
|
919
|
+
];
|
|
920
|
+
var ByoipCidrEvent$ = [3, n0, _BCE,
|
|
921
|
+
0,
|
|
922
|
+
[_M, _T],
|
|
923
|
+
[0, 4]
|
|
924
|
+
];
|
|
925
|
+
var CidrAuthorizationContext$ = [3, n0, _CAC,
|
|
926
|
+
0,
|
|
927
|
+
[_M, _Si],
|
|
928
|
+
[0, 0], 2
|
|
929
|
+
];
|
|
930
|
+
var CreateAcceleratorRequest$ = [3, n0, _CAR,
|
|
931
|
+
0,
|
|
932
|
+
[_N, _IAT, _IA, _E, _IT, _Ta],
|
|
933
|
+
[0, 0, 64 | 0, 2, [0, 4], () => Tags], 1
|
|
934
|
+
];
|
|
935
|
+
var CreateAcceleratorResponse$ = [3, n0, _CARr,
|
|
936
|
+
0,
|
|
937
|
+
[_A],
|
|
938
|
+
[() => Accelerator$]
|
|
939
|
+
];
|
|
940
|
+
var CreateCrossAccountAttachmentRequest$ = [3, n0, _CCAAR,
|
|
941
|
+
0,
|
|
942
|
+
[_N, _P, _R, _IT, _Ta],
|
|
943
|
+
[0, 64 | 0, () => Resources, [0, 4], () => Tags], 1
|
|
944
|
+
];
|
|
945
|
+
var CreateCrossAccountAttachmentResponse$ = [3, n0, _CCAARr,
|
|
946
|
+
0,
|
|
947
|
+
[_CAA],
|
|
948
|
+
[() => Attachment$]
|
|
949
|
+
];
|
|
950
|
+
var CreateCustomRoutingAcceleratorRequest$ = [3, n0, _CCRAR,
|
|
951
|
+
0,
|
|
952
|
+
[_N, _IAT, _IA, _E, _IT, _Ta],
|
|
953
|
+
[0, 0, 64 | 0, 2, [0, 4], () => Tags], 1
|
|
954
|
+
];
|
|
955
|
+
var CreateCustomRoutingAcceleratorResponse$ = [3, n0, _CCRARr,
|
|
956
|
+
0,
|
|
957
|
+
[_A],
|
|
958
|
+
[() => CustomRoutingAccelerator$]
|
|
959
|
+
];
|
|
960
|
+
var CreateCustomRoutingEndpointGroupRequest$ = [3, n0, _CCREGR,
|
|
961
|
+
0,
|
|
962
|
+
[_LA, _EGR, _DC, _IT],
|
|
963
|
+
[0, 0, () => CustomRoutingDestinationConfigurations, [0, 4]], 3
|
|
964
|
+
];
|
|
965
|
+
var CreateCustomRoutingEndpointGroupResponse$ = [3, n0, _CCREGRr,
|
|
966
|
+
0,
|
|
967
|
+
[_EG],
|
|
968
|
+
[() => CustomRoutingEndpointGroup$]
|
|
969
|
+
];
|
|
970
|
+
var CreateCustomRoutingListenerRequest$ = [3, n0, _CCRLR,
|
|
971
|
+
0,
|
|
972
|
+
[_AA, _PR, _IT],
|
|
973
|
+
[0, () => PortRanges, [0, 4]], 2
|
|
974
|
+
];
|
|
975
|
+
var CreateCustomRoutingListenerResponse$ = [3, n0, _CCRLRr,
|
|
976
|
+
0,
|
|
977
|
+
[_L],
|
|
978
|
+
[() => CustomRoutingListener$]
|
|
979
|
+
];
|
|
980
|
+
var CreateEndpointGroupRequest$ = [3, n0, _CEGR,
|
|
981
|
+
0,
|
|
982
|
+
[_LA, _EGR, _EC, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _IT, _PO],
|
|
983
|
+
[0, 0, () => EndpointConfigurations, 1, 1, 0, 0, 1, 1, [0, 4], () => PortOverrides], 2
|
|
984
|
+
];
|
|
985
|
+
var CreateEndpointGroupResponse$ = [3, n0, _CEGRr,
|
|
986
|
+
0,
|
|
987
|
+
[_EG],
|
|
988
|
+
[() => EndpointGroup$]
|
|
989
|
+
];
|
|
990
|
+
var CreateListenerRequest$ = [3, n0, _CLR,
|
|
991
|
+
0,
|
|
992
|
+
[_AA, _PR, _Pr, _CA, _IT],
|
|
993
|
+
[0, () => PortRanges, 0, 0, [0, 4]], 3
|
|
994
|
+
];
|
|
995
|
+
var CreateListenerResponse$ = [3, n0, _CLRr,
|
|
996
|
+
0,
|
|
997
|
+
[_L],
|
|
998
|
+
[() => Listener$]
|
|
999
|
+
];
|
|
1000
|
+
var CrossAccountResource$ = [3, n0, _CARro,
|
|
1001
|
+
0,
|
|
1002
|
+
[_EI, _C, _AAt],
|
|
1003
|
+
[0, 0, 0]
|
|
1004
|
+
];
|
|
1005
|
+
var CustomRoutingAccelerator$ = [3, n0, _CRA,
|
|
1006
|
+
0,
|
|
1007
|
+
[_AA, _N, _IAT, _E, _IS, _DN, _S, _CT, _LMT],
|
|
1008
|
+
[0, 0, 0, 2, () => IpSets, 0, 0, 4, 4]
|
|
1009
|
+
];
|
|
1010
|
+
var CustomRoutingAcceleratorAttributes$ = [3, n0, _CRAA,
|
|
1011
|
+
0,
|
|
1012
|
+
[_FLE, _FLSB, _FLSP],
|
|
1013
|
+
[2, 0, 0]
|
|
1014
|
+
];
|
|
1015
|
+
var CustomRoutingDestinationConfiguration$ = [3, n0, _CRDC,
|
|
1016
|
+
0,
|
|
1017
|
+
[_FP, _TP, _Pro],
|
|
1018
|
+
[1, 1, 64 | 0], 3
|
|
1019
|
+
];
|
|
1020
|
+
var CustomRoutingDestinationDescription$ = [3, n0, _CRDD,
|
|
1021
|
+
0,
|
|
1022
|
+
[_FP, _TP, _Pro],
|
|
1023
|
+
[1, 1, 64 | 0]
|
|
1024
|
+
];
|
|
1025
|
+
var CustomRoutingEndpointConfiguration$ = [3, n0, _CREC,
|
|
1026
|
+
0,
|
|
1027
|
+
[_EI, _AAt],
|
|
1028
|
+
[0, 0]
|
|
1029
|
+
];
|
|
1030
|
+
var CustomRoutingEndpointDescription$ = [3, n0, _CRED,
|
|
1031
|
+
0,
|
|
1032
|
+
[_EI],
|
|
1033
|
+
[0]
|
|
1034
|
+
];
|
|
1035
|
+
var CustomRoutingEndpointGroup$ = [3, n0, _CREG,
|
|
1036
|
+
0,
|
|
1037
|
+
[_EGA, _EGR, _DD, _ED],
|
|
1038
|
+
[0, 0, () => CustomRoutingDestinationDescriptions, () => CustomRoutingEndpointDescriptions]
|
|
1039
|
+
];
|
|
1040
|
+
var CustomRoutingListener$ = [3, n0, _CRL,
|
|
1041
|
+
0,
|
|
1042
|
+
[_LA, _PR],
|
|
1043
|
+
[0, () => PortRanges]
|
|
1044
|
+
];
|
|
1045
|
+
var DeleteAcceleratorRequest$ = [3, n0, _DAR,
|
|
1046
|
+
0,
|
|
1047
|
+
[_AA],
|
|
1048
|
+
[0], 1
|
|
1049
|
+
];
|
|
1050
|
+
var DeleteCrossAccountAttachmentRequest$ = [3, n0, _DCAAR,
|
|
1051
|
+
0,
|
|
1052
|
+
[_AAt],
|
|
1053
|
+
[0], 1
|
|
1054
|
+
];
|
|
1055
|
+
var DeleteCustomRoutingAcceleratorRequest$ = [3, n0, _DCRAR,
|
|
1056
|
+
0,
|
|
1057
|
+
[_AA],
|
|
1058
|
+
[0], 1
|
|
1059
|
+
];
|
|
1060
|
+
var DeleteCustomRoutingEndpointGroupRequest$ = [3, n0, _DCREGR,
|
|
1061
|
+
0,
|
|
1062
|
+
[_EGA],
|
|
1063
|
+
[0], 1
|
|
1064
|
+
];
|
|
1065
|
+
var DeleteCustomRoutingListenerRequest$ = [3, n0, _DCRLR,
|
|
1066
|
+
0,
|
|
1067
|
+
[_LA],
|
|
1068
|
+
[0], 1
|
|
1069
|
+
];
|
|
1070
|
+
var DeleteEndpointGroupRequest$ = [3, n0, _DEGR,
|
|
1071
|
+
0,
|
|
1072
|
+
[_EGA],
|
|
1073
|
+
[0], 1
|
|
1074
|
+
];
|
|
1075
|
+
var DeleteListenerRequest$ = [3, n0, _DLR,
|
|
1076
|
+
0,
|
|
1077
|
+
[_LA],
|
|
1078
|
+
[0], 1
|
|
1079
|
+
];
|
|
1080
|
+
var DenyCustomRoutingTrafficRequest$ = [3, n0, _DCRTR,
|
|
1081
|
+
0,
|
|
1082
|
+
[_EGA, _EI, _DA, _DP, _DATTE],
|
|
1083
|
+
[0, 0, 64 | 0, 64 | 1, 2], 2
|
|
1084
|
+
];
|
|
1085
|
+
var DeprovisionByoipCidrRequest$ = [3, n0, _DBCR,
|
|
1086
|
+
0,
|
|
1087
|
+
[_C],
|
|
1088
|
+
[0], 1
|
|
1089
|
+
];
|
|
1090
|
+
var DeprovisionByoipCidrResponse$ = [3, n0, _DBCRe,
|
|
1091
|
+
0,
|
|
1092
|
+
[_BC],
|
|
1093
|
+
[() => ByoipCidr$]
|
|
1094
|
+
];
|
|
1095
|
+
var DescribeAcceleratorAttributesRequest$ = [3, n0, _DAAR,
|
|
1096
|
+
0,
|
|
1097
|
+
[_AA],
|
|
1098
|
+
[0], 1
|
|
1099
|
+
];
|
|
1100
|
+
var DescribeAcceleratorAttributesResponse$ = [3, n0, _DAARe,
|
|
1101
|
+
0,
|
|
1102
|
+
[_AAc],
|
|
1103
|
+
[() => AcceleratorAttributes$]
|
|
1104
|
+
];
|
|
1105
|
+
var DescribeAcceleratorRequest$ = [3, n0, _DARe,
|
|
1106
|
+
0,
|
|
1107
|
+
[_AA],
|
|
1108
|
+
[0], 1
|
|
1109
|
+
];
|
|
1110
|
+
var DescribeAcceleratorResponse$ = [3, n0, _DARes,
|
|
1111
|
+
0,
|
|
1112
|
+
[_A],
|
|
1113
|
+
[() => Accelerator$]
|
|
1114
|
+
];
|
|
1115
|
+
var DescribeCrossAccountAttachmentRequest$ = [3, n0, _DCAARe,
|
|
1116
|
+
0,
|
|
1117
|
+
[_AAt],
|
|
1118
|
+
[0], 1
|
|
1119
|
+
];
|
|
1120
|
+
var DescribeCrossAccountAttachmentResponse$ = [3, n0, _DCAARes,
|
|
1121
|
+
0,
|
|
1122
|
+
[_CAA],
|
|
1123
|
+
[() => Attachment$]
|
|
1124
|
+
];
|
|
1125
|
+
var DescribeCustomRoutingAcceleratorAttributesRequest$ = [3, n0, _DCRAAR,
|
|
1126
|
+
0,
|
|
1127
|
+
[_AA],
|
|
1128
|
+
[0], 1
|
|
1129
|
+
];
|
|
1130
|
+
var DescribeCustomRoutingAcceleratorAttributesResponse$ = [3, n0, _DCRAARe,
|
|
1131
|
+
0,
|
|
1132
|
+
[_AAc],
|
|
1133
|
+
[() => CustomRoutingAcceleratorAttributes$]
|
|
1134
|
+
];
|
|
1135
|
+
var DescribeCustomRoutingAcceleratorRequest$ = [3, n0, _DCRARe,
|
|
1136
|
+
0,
|
|
1137
|
+
[_AA],
|
|
1138
|
+
[0], 1
|
|
1139
|
+
];
|
|
1140
|
+
var DescribeCustomRoutingAcceleratorResponse$ = [3, n0, _DCRARes,
|
|
1141
|
+
0,
|
|
1142
|
+
[_A],
|
|
1143
|
+
[() => CustomRoutingAccelerator$]
|
|
1144
|
+
];
|
|
1145
|
+
var DescribeCustomRoutingEndpointGroupRequest$ = [3, n0, _DCREGRe,
|
|
1146
|
+
0,
|
|
1147
|
+
[_EGA],
|
|
1148
|
+
[0], 1
|
|
1149
|
+
];
|
|
1150
|
+
var DescribeCustomRoutingEndpointGroupResponse$ = [3, n0, _DCREGRes,
|
|
1151
|
+
0,
|
|
1152
|
+
[_EG],
|
|
1153
|
+
[() => CustomRoutingEndpointGroup$]
|
|
1154
|
+
];
|
|
1155
|
+
var DescribeCustomRoutingListenerRequest$ = [3, n0, _DCRLRe,
|
|
1156
|
+
0,
|
|
1157
|
+
[_LA],
|
|
1158
|
+
[0], 1
|
|
1159
|
+
];
|
|
1160
|
+
var DescribeCustomRoutingListenerResponse$ = [3, n0, _DCRLRes,
|
|
1161
|
+
0,
|
|
1162
|
+
[_L],
|
|
1163
|
+
[() => CustomRoutingListener$]
|
|
1164
|
+
];
|
|
1165
|
+
var DescribeEndpointGroupRequest$ = [3, n0, _DEGRe,
|
|
1166
|
+
0,
|
|
1167
|
+
[_EGA],
|
|
1168
|
+
[0], 1
|
|
1169
|
+
];
|
|
1170
|
+
var DescribeEndpointGroupResponse$ = [3, n0, _DEGRes,
|
|
1171
|
+
0,
|
|
1172
|
+
[_EG],
|
|
1173
|
+
[() => EndpointGroup$]
|
|
1174
|
+
];
|
|
1175
|
+
var DescribeListenerRequest$ = [3, n0, _DLRe,
|
|
1176
|
+
0,
|
|
1177
|
+
[_LA],
|
|
1178
|
+
[0], 1
|
|
1179
|
+
];
|
|
1180
|
+
var DescribeListenerResponse$ = [3, n0, _DLRes,
|
|
1181
|
+
0,
|
|
1182
|
+
[_L],
|
|
1183
|
+
[() => Listener$]
|
|
1184
|
+
];
|
|
1185
|
+
var DestinationPortMapping$ = [3, n0, _DPM,
|
|
1186
|
+
0,
|
|
1187
|
+
[_AA, _ASA, _EGA, _EI, _EGR, _DSA, _IAT, _DTS],
|
|
1188
|
+
[0, () => SocketAddresses, 0, 0, 0, () => SocketAddress$, 0, 0]
|
|
1189
|
+
];
|
|
1190
|
+
var EndpointConfiguration$ = [3, n0, _ECn,
|
|
1191
|
+
0,
|
|
1192
|
+
[_EI, _W, _CIPPE, _AAt],
|
|
1193
|
+
[0, 1, 2, 0]
|
|
1194
|
+
];
|
|
1195
|
+
var EndpointDescription$ = [3, n0, _EDn,
|
|
1196
|
+
0,
|
|
1197
|
+
[_EI, _W, _HS, _HR, _CIPPE],
|
|
1198
|
+
[0, 1, 0, 0, 2]
|
|
1199
|
+
];
|
|
1200
|
+
var EndpointGroup$ = [3, n0, _EG,
|
|
1201
|
+
0,
|
|
1202
|
+
[_EGA, _EGR, _ED, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _PO],
|
|
1203
|
+
[0, 0, () => EndpointDescriptions, 1, 1, 0, 0, 1, 1, () => PortOverrides]
|
|
1204
|
+
];
|
|
1205
|
+
var EndpointIdentifier$ = [3, n0, _EIn,
|
|
1206
|
+
0,
|
|
1207
|
+
[_EI, _CIPPE],
|
|
1208
|
+
[0, 2], 1
|
|
1209
|
+
];
|
|
1210
|
+
var IpSet$ = [3, n0, _ISp,
|
|
1211
|
+
0,
|
|
1212
|
+
[_IF, _IA, _IAF],
|
|
1213
|
+
[0, 64 | 0, 0]
|
|
1214
|
+
];
|
|
1215
|
+
var ListAcceleratorsRequest$ = [3, n0, _LAR,
|
|
1216
|
+
0,
|
|
1217
|
+
[_MR, _NT],
|
|
1218
|
+
[1, 0]
|
|
1219
|
+
];
|
|
1220
|
+
var ListAcceleratorsResponse$ = [3, n0, _LARi,
|
|
1221
|
+
0,
|
|
1222
|
+
[_Ac, _NT],
|
|
1223
|
+
[() => Accelerators, 0]
|
|
1224
|
+
];
|
|
1225
|
+
var ListByoipCidrsRequest$ = [3, n0, _LBCR,
|
|
1226
|
+
0,
|
|
1227
|
+
[_MR, _NT],
|
|
1228
|
+
[1, 0]
|
|
1229
|
+
];
|
|
1230
|
+
var ListByoipCidrsResponse$ = [3, n0, _LBCRi,
|
|
1231
|
+
0,
|
|
1232
|
+
[_BCy, _NT],
|
|
1233
|
+
[() => ByoipCidrs, 0]
|
|
1234
|
+
];
|
|
1235
|
+
var ListCrossAccountAttachmentsRequest$ = [3, n0, _LCAAR,
|
|
1236
|
+
0,
|
|
1237
|
+
[_MR, _NT],
|
|
1238
|
+
[1, 0]
|
|
1239
|
+
];
|
|
1240
|
+
var ListCrossAccountAttachmentsResponse$ = [3, n0, _LCAARi,
|
|
1241
|
+
0,
|
|
1242
|
+
[_CAAr, _NT],
|
|
1243
|
+
[() => Attachments, 0]
|
|
1244
|
+
];
|
|
1245
|
+
var ListCrossAccountResourceAccountsRequest$ = [3, n0, _LCARAR,
|
|
1246
|
+
0,
|
|
1247
|
+
[],
|
|
1248
|
+
[]
|
|
1249
|
+
];
|
|
1250
|
+
var ListCrossAccountResourceAccountsResponse$ = [3, n0, _LCARARi,
|
|
1251
|
+
0,
|
|
1252
|
+
[_ROAAI],
|
|
1253
|
+
[64 | 0]
|
|
1254
|
+
];
|
|
1255
|
+
var ListCrossAccountResourcesRequest$ = [3, n0, _LCARR,
|
|
1256
|
+
0,
|
|
1257
|
+
[_ROAAIe, _AA, _MR, _NT],
|
|
1258
|
+
[0, 0, 1, 0], 1
|
|
1259
|
+
];
|
|
1260
|
+
var ListCrossAccountResourcesResponse$ = [3, n0, _LCARRi,
|
|
1261
|
+
0,
|
|
1262
|
+
[_CARros, _NT],
|
|
1263
|
+
[() => CrossAccountResources, 0]
|
|
1264
|
+
];
|
|
1265
|
+
var ListCustomRoutingAcceleratorsRequest$ = [3, n0, _LCRAR,
|
|
1266
|
+
0,
|
|
1267
|
+
[_MR, _NT],
|
|
1268
|
+
[1, 0]
|
|
1269
|
+
];
|
|
1270
|
+
var ListCustomRoutingAcceleratorsResponse$ = [3, n0, _LCRARi,
|
|
1271
|
+
0,
|
|
1272
|
+
[_Ac, _NT],
|
|
1273
|
+
[() => CustomRoutingAccelerators, 0]
|
|
1274
|
+
];
|
|
1275
|
+
var ListCustomRoutingEndpointGroupsRequest$ = [3, n0, _LCREGR,
|
|
1276
|
+
0,
|
|
1277
|
+
[_LA, _MR, _NT],
|
|
1278
|
+
[0, 1, 0], 1
|
|
1279
|
+
];
|
|
1280
|
+
var ListCustomRoutingEndpointGroupsResponse$ = [3, n0, _LCREGRi,
|
|
1281
|
+
0,
|
|
1282
|
+
[_EGn, _NT],
|
|
1283
|
+
[() => CustomRoutingEndpointGroups, 0]
|
|
1284
|
+
];
|
|
1285
|
+
var ListCustomRoutingListenersRequest$ = [3, n0, _LCRLR,
|
|
1286
|
+
0,
|
|
1287
|
+
[_AA, _MR, _NT],
|
|
1288
|
+
[0, 1, 0], 1
|
|
1289
|
+
];
|
|
1290
|
+
var ListCustomRoutingListenersResponse$ = [3, n0, _LCRLRi,
|
|
1291
|
+
0,
|
|
1292
|
+
[_Li, _NT],
|
|
1293
|
+
[() => CustomRoutingListeners, 0]
|
|
1294
|
+
];
|
|
1295
|
+
var ListCustomRoutingPortMappingsByDestinationRequest$ = [3, n0, _LCRPMBDR,
|
|
1296
|
+
0,
|
|
1297
|
+
[_EI, _DAe, _MR, _NT],
|
|
1298
|
+
[0, 0, 1, 0], 2
|
|
1299
|
+
];
|
|
1300
|
+
var ListCustomRoutingPortMappingsByDestinationResponse$ = [3, n0, _LCRPMBDRi,
|
|
1301
|
+
0,
|
|
1302
|
+
[_DPMe, _NT],
|
|
1303
|
+
[() => DestinationPortMappings, 0]
|
|
1304
|
+
];
|
|
1305
|
+
var ListCustomRoutingPortMappingsRequest$ = [3, n0, _LCRPMR,
|
|
1306
|
+
0,
|
|
1307
|
+
[_AA, _EGA, _MR, _NT],
|
|
1308
|
+
[0, 0, 1, 0], 1
|
|
1309
|
+
];
|
|
1310
|
+
var ListCustomRoutingPortMappingsResponse$ = [3, n0, _LCRPMRi,
|
|
1311
|
+
0,
|
|
1312
|
+
[_PM, _NT],
|
|
1313
|
+
[() => PortMappings, 0]
|
|
1314
|
+
];
|
|
1315
|
+
var ListEndpointGroupsRequest$ = [3, n0, _LEGR,
|
|
1316
|
+
0,
|
|
1317
|
+
[_LA, _MR, _NT],
|
|
1318
|
+
[0, 1, 0], 1
|
|
1319
|
+
];
|
|
1320
|
+
var ListEndpointGroupsResponse$ = [3, n0, _LEGRi,
|
|
1321
|
+
0,
|
|
1322
|
+
[_EGn, _NT],
|
|
1323
|
+
[() => EndpointGroups, 0]
|
|
1324
|
+
];
|
|
1325
|
+
var Listener$ = [3, n0, _L,
|
|
1326
|
+
0,
|
|
1327
|
+
[_LA, _PR, _Pr, _CA],
|
|
1328
|
+
[0, () => PortRanges, 0, 0]
|
|
1329
|
+
];
|
|
1330
|
+
var ListListenersRequest$ = [3, n0, _LLR,
|
|
1331
|
+
0,
|
|
1332
|
+
[_AA, _MR, _NT],
|
|
1333
|
+
[0, 1, 0], 1
|
|
1334
|
+
];
|
|
1335
|
+
var ListListenersResponse$ = [3, n0, _LLRi,
|
|
1336
|
+
0,
|
|
1337
|
+
[_Li, _NT],
|
|
1338
|
+
[() => Listeners, 0]
|
|
1339
|
+
];
|
|
1340
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1341
|
+
0,
|
|
1342
|
+
[_RA],
|
|
1343
|
+
[0], 1
|
|
1344
|
+
];
|
|
1345
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1346
|
+
0,
|
|
1347
|
+
[_Ta],
|
|
1348
|
+
[() => Tags]
|
|
1349
|
+
];
|
|
1350
|
+
var PortMapping$ = [3, n0, _PMo,
|
|
1351
|
+
0,
|
|
1352
|
+
[_AP, _EGA, _EI, _DSA, _Pro, _DTS],
|
|
1353
|
+
[1, 0, 0, () => SocketAddress$, 64 | 0, 0]
|
|
1354
|
+
];
|
|
1355
|
+
var PortOverride$ = [3, n0, _POo,
|
|
1356
|
+
0,
|
|
1357
|
+
[_LP, _EP],
|
|
1358
|
+
[1, 1]
|
|
1359
|
+
];
|
|
1360
|
+
var PortRange$ = [3, n0, _PRo,
|
|
1361
|
+
0,
|
|
1362
|
+
[_FP, _TP],
|
|
1363
|
+
[1, 1]
|
|
1364
|
+
];
|
|
1365
|
+
var ProvisionByoipCidrRequest$ = [3, n0, _PBCR,
|
|
1366
|
+
0,
|
|
1367
|
+
[_C, _CAC],
|
|
1368
|
+
[0, () => CidrAuthorizationContext$], 2
|
|
1369
|
+
];
|
|
1370
|
+
var ProvisionByoipCidrResponse$ = [3, n0, _PBCRr,
|
|
1371
|
+
0,
|
|
1372
|
+
[_BC],
|
|
1373
|
+
[() => ByoipCidr$]
|
|
1374
|
+
];
|
|
1375
|
+
var RemoveCustomRoutingEndpointsRequest$ = [3, n0, _RCRER,
|
|
1376
|
+
0,
|
|
1377
|
+
[_EInd, _EGA],
|
|
1378
|
+
[64 | 0, 0], 2
|
|
1379
|
+
];
|
|
1380
|
+
var RemoveEndpointsRequest$ = [3, n0, _RER,
|
|
1381
|
+
0,
|
|
1382
|
+
[_EIndp, _EGA],
|
|
1383
|
+
[() => EndpointIdentifiers, 0], 2
|
|
1384
|
+
];
|
|
1385
|
+
var Resource$ = [3, n0, _Re,
|
|
1386
|
+
0,
|
|
1387
|
+
[_EI, _C, _Reg],
|
|
1388
|
+
[0, 0, 0]
|
|
1389
|
+
];
|
|
1390
|
+
var SocketAddress$ = [3, n0, _SA,
|
|
1391
|
+
0,
|
|
1392
|
+
[_IAp, _Po],
|
|
1393
|
+
[0, 1]
|
|
1394
|
+
];
|
|
1395
|
+
var Tag$ = [3, n0, _Tag,
|
|
1396
|
+
0,
|
|
1397
|
+
[_K, _V],
|
|
1398
|
+
[0, 0], 2
|
|
1399
|
+
];
|
|
1400
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1401
|
+
0,
|
|
1402
|
+
[_RA, _Ta],
|
|
1403
|
+
[0, () => Tags], 2
|
|
1404
|
+
];
|
|
1405
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1406
|
+
0,
|
|
1407
|
+
[],
|
|
1408
|
+
[]
|
|
1409
|
+
];
|
|
1410
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1411
|
+
0,
|
|
1412
|
+
[_RA, _TK],
|
|
1413
|
+
[0, 64 | 0], 2
|
|
1414
|
+
];
|
|
1415
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1416
|
+
0,
|
|
1417
|
+
[],
|
|
1418
|
+
[]
|
|
1419
|
+
];
|
|
1420
|
+
var UpdateAcceleratorAttributesRequest$ = [3, n0, _UAAR,
|
|
1421
|
+
0,
|
|
1422
|
+
[_AA, _FLE, _FLSB, _FLSP],
|
|
1423
|
+
[0, 2, 0, 0], 1
|
|
1424
|
+
];
|
|
1425
|
+
var UpdateAcceleratorAttributesResponse$ = [3, n0, _UAARp,
|
|
1426
|
+
0,
|
|
1427
|
+
[_AAc],
|
|
1428
|
+
[() => AcceleratorAttributes$]
|
|
1429
|
+
];
|
|
1430
|
+
var UpdateAcceleratorRequest$ = [3, n0, _UAR,
|
|
1431
|
+
0,
|
|
1432
|
+
[_AA, _N, _IAT, _IA, _E],
|
|
1433
|
+
[0, 0, 0, 64 | 0, 2], 1
|
|
1434
|
+
];
|
|
1435
|
+
var UpdateAcceleratorResponse$ = [3, n0, _UARp,
|
|
1436
|
+
0,
|
|
1437
|
+
[_A],
|
|
1438
|
+
[() => Accelerator$]
|
|
1439
|
+
];
|
|
1440
|
+
var UpdateCrossAccountAttachmentRequest$ = [3, n0, _UCAAR,
|
|
1441
|
+
0,
|
|
1442
|
+
[_AAt, _N, _APd, _RP, _AR, _RR],
|
|
1443
|
+
[0, 0, 64 | 0, 64 | 0, () => Resources, () => Resources], 1
|
|
1444
|
+
];
|
|
1445
|
+
var UpdateCrossAccountAttachmentResponse$ = [3, n0, _UCAARp,
|
|
1446
|
+
0,
|
|
1447
|
+
[_CAA],
|
|
1448
|
+
[() => Attachment$]
|
|
1449
|
+
];
|
|
1450
|
+
var UpdateCustomRoutingAcceleratorAttributesRequest$ = [3, n0, _UCRAAR,
|
|
1451
|
+
0,
|
|
1452
|
+
[_AA, _FLE, _FLSB, _FLSP],
|
|
1453
|
+
[0, 2, 0, 0], 1
|
|
1454
|
+
];
|
|
1455
|
+
var UpdateCustomRoutingAcceleratorAttributesResponse$ = [3, n0, _UCRAARp,
|
|
1456
|
+
0,
|
|
1457
|
+
[_AAc],
|
|
1458
|
+
[() => CustomRoutingAcceleratorAttributes$]
|
|
1459
|
+
];
|
|
1460
|
+
var UpdateCustomRoutingAcceleratorRequest$ = [3, n0, _UCRAR,
|
|
1461
|
+
0,
|
|
1462
|
+
[_AA, _N, _IAT, _IA, _E],
|
|
1463
|
+
[0, 0, 0, 64 | 0, 2], 1
|
|
1464
|
+
];
|
|
1465
|
+
var UpdateCustomRoutingAcceleratorResponse$ = [3, n0, _UCRARp,
|
|
1466
|
+
0,
|
|
1467
|
+
[_A],
|
|
1468
|
+
[() => CustomRoutingAccelerator$]
|
|
1469
|
+
];
|
|
1470
|
+
var UpdateCustomRoutingListenerRequest$ = [3, n0, _UCRLR,
|
|
1471
|
+
0,
|
|
1472
|
+
[_LA, _PR],
|
|
1473
|
+
[0, () => PortRanges], 2
|
|
1474
|
+
];
|
|
1475
|
+
var UpdateCustomRoutingListenerResponse$ = [3, n0, _UCRLRp,
|
|
1476
|
+
0,
|
|
1477
|
+
[_L],
|
|
1478
|
+
[() => CustomRoutingListener$]
|
|
1479
|
+
];
|
|
1480
|
+
var UpdateEndpointGroupRequest$ = [3, n0, _UEGR,
|
|
1481
|
+
0,
|
|
1482
|
+
[_EGA, _EC, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _PO],
|
|
1483
|
+
[0, () => EndpointConfigurations, 1, 1, 0, 0, 1, 1, () => PortOverrides], 1
|
|
1484
|
+
];
|
|
1485
|
+
var UpdateEndpointGroupResponse$ = [3, n0, _UEGRp,
|
|
1486
|
+
0,
|
|
1487
|
+
[_EG],
|
|
1488
|
+
[() => EndpointGroup$]
|
|
1489
|
+
];
|
|
1490
|
+
var UpdateListenerRequest$ = [3, n0, _ULR,
|
|
1491
|
+
0,
|
|
1492
|
+
[_LA, _PR, _Pr, _CA],
|
|
1493
|
+
[0, () => PortRanges, 0, 0], 1
|
|
1494
|
+
];
|
|
1495
|
+
var UpdateListenerResponse$ = [3, n0, _ULRp,
|
|
1496
|
+
0,
|
|
1497
|
+
[_L],
|
|
1498
|
+
[() => Listener$]
|
|
1499
|
+
];
|
|
1500
|
+
var WithdrawByoipCidrRequest$ = [3, n0, _WBCR,
|
|
1501
|
+
0,
|
|
1502
|
+
[_C],
|
|
1503
|
+
[0], 1
|
|
1504
|
+
];
|
|
1505
|
+
var WithdrawByoipCidrResponse$ = [3, n0, _WBCRi,
|
|
1506
|
+
0,
|
|
1507
|
+
[_BC],
|
|
1508
|
+
[() => ByoipCidr$]
|
|
1509
|
+
];
|
|
1510
|
+
var __Unit = "unit";
|
|
1511
|
+
var AcceleratorEvents = [1, n0, _AEc,
|
|
1512
|
+
0, () => AcceleratorEvent$
|
|
1513
|
+
];
|
|
1514
|
+
var Accelerators = [1, n0, _Ac,
|
|
1515
|
+
0, () => Accelerator$
|
|
1516
|
+
];
|
|
1517
|
+
var Attachments = [1, n0, _Att,
|
|
1518
|
+
0, () => Attachment$
|
|
1519
|
+
];
|
|
1520
|
+
var ByoipCidrEvents = [1, n0, _BCEy,
|
|
1521
|
+
0, () => ByoipCidrEvent$
|
|
1522
|
+
];
|
|
1523
|
+
var ByoipCidrs = [1, n0, _BCy,
|
|
1524
|
+
0, () => ByoipCidr$
|
|
1525
|
+
];
|
|
1526
|
+
var CrossAccountResources = [1, n0, _CARros,
|
|
1527
|
+
0, () => CrossAccountResource$
|
|
1528
|
+
];
|
|
1529
|
+
var CustomRoutingAccelerators = [1, n0, _CRAu,
|
|
1530
|
+
0, () => CustomRoutingAccelerator$
|
|
1531
|
+
];
|
|
1532
|
+
var CustomRoutingDestinationConfigurations = [1, n0, _CRDCu,
|
|
1533
|
+
0, () => CustomRoutingDestinationConfiguration$
|
|
1534
|
+
];
|
|
1535
|
+
var CustomRoutingDestinationDescriptions = [1, n0, _CRDDu,
|
|
1536
|
+
0, () => CustomRoutingDestinationDescription$
|
|
1537
|
+
];
|
|
1538
|
+
var CustomRoutingEndpointConfigurations = [1, n0, _CRECu,
|
|
1539
|
+
0, () => CustomRoutingEndpointConfiguration$
|
|
1540
|
+
];
|
|
1541
|
+
var CustomRoutingEndpointDescriptions = [1, n0, _CREDu,
|
|
1542
|
+
0, () => CustomRoutingEndpointDescription$
|
|
1543
|
+
];
|
|
1544
|
+
var CustomRoutingEndpointGroups = [1, n0, _CREGu,
|
|
1545
|
+
0, () => CustomRoutingEndpointGroup$
|
|
1546
|
+
];
|
|
1547
|
+
var CustomRoutingListeners = [1, n0, _CRLu,
|
|
1548
|
+
0, () => CustomRoutingListener$
|
|
1549
|
+
];
|
|
1550
|
+
var DestinationPortMappings = [1, n0, _DPMe,
|
|
1551
|
+
0, () => DestinationPortMapping$
|
|
1552
|
+
];
|
|
1553
|
+
var EndpointConfigurations = [1, n0, _EC,
|
|
1554
|
+
0, () => EndpointConfiguration$
|
|
1555
|
+
];
|
|
1556
|
+
var EndpointDescriptions = [1, n0, _ED,
|
|
1557
|
+
0, () => EndpointDescription$
|
|
1558
|
+
];
|
|
1559
|
+
var EndpointGroups = [1, n0, _EGn,
|
|
1560
|
+
0, () => EndpointGroup$
|
|
1561
|
+
];
|
|
1562
|
+
var EndpointIdentifiers = [1, n0, _EIndp,
|
|
1563
|
+
0, () => EndpointIdentifier$
|
|
1564
|
+
];
|
|
1565
|
+
var IpSets = [1, n0, _IS,
|
|
1566
|
+
0, () => IpSet$
|
|
1567
|
+
];
|
|
1568
|
+
var Listeners = [1, n0, _Li,
|
|
1569
|
+
0, () => Listener$
|
|
1570
|
+
];
|
|
1571
|
+
var PortMappings = [1, n0, _PM,
|
|
1572
|
+
0, () => PortMapping$
|
|
1573
|
+
];
|
|
1574
|
+
var PortOverrides = [1, n0, _PO,
|
|
1575
|
+
0, () => PortOverride$
|
|
1576
|
+
];
|
|
1577
|
+
var PortRanges = [1, n0, _PR,
|
|
1578
|
+
0, () => PortRange$
|
|
1579
|
+
];
|
|
1580
|
+
var Resources = [1, n0, _R,
|
|
1581
|
+
0, () => Resource$
|
|
1582
|
+
];
|
|
1583
|
+
var SocketAddresses = [1, n0, _SAo,
|
|
1584
|
+
0, () => SocketAddress$
|
|
1585
|
+
];
|
|
1586
|
+
var Tags = [1, n0, _Ta,
|
|
1587
|
+
0, () => Tag$
|
|
1588
|
+
];
|
|
1589
|
+
var AddCustomRoutingEndpoints$ = [9, n0, _ACRE,
|
|
1590
|
+
0, () => AddCustomRoutingEndpointsRequest$, () => AddCustomRoutingEndpointsResponse$
|
|
1591
|
+
];
|
|
1592
|
+
var AddEndpoints$ = [9, n0, _AEd,
|
|
1593
|
+
0, () => AddEndpointsRequest$, () => AddEndpointsResponse$
|
|
1594
|
+
];
|
|
1595
|
+
var AdvertiseByoipCidr$ = [9, n0, _ABC,
|
|
1596
|
+
0, () => AdvertiseByoipCidrRequest$, () => AdvertiseByoipCidrResponse$
|
|
1597
|
+
];
|
|
1598
|
+
var AllowCustomRoutingTraffic$ = [9, n0, _ACRT,
|
|
1599
|
+
0, () => AllowCustomRoutingTrafficRequest$, () => __Unit
|
|
1600
|
+
];
|
|
1601
|
+
var CreateAccelerator$ = [9, n0, _CAr,
|
|
1602
|
+
0, () => CreateAcceleratorRequest$, () => CreateAcceleratorResponse$
|
|
1603
|
+
];
|
|
1604
|
+
var CreateCrossAccountAttachment$ = [9, n0, _CCAA,
|
|
1605
|
+
0, () => CreateCrossAccountAttachmentRequest$, () => CreateCrossAccountAttachmentResponse$
|
|
1606
|
+
];
|
|
1607
|
+
var CreateCustomRoutingAccelerator$ = [9, n0, _CCRA,
|
|
1608
|
+
0, () => CreateCustomRoutingAcceleratorRequest$, () => CreateCustomRoutingAcceleratorResponse$
|
|
1609
|
+
];
|
|
1610
|
+
var CreateCustomRoutingEndpointGroup$ = [9, n0, _CCREG,
|
|
1611
|
+
0, () => CreateCustomRoutingEndpointGroupRequest$, () => CreateCustomRoutingEndpointGroupResponse$
|
|
1612
|
+
];
|
|
1613
|
+
var CreateCustomRoutingListener$ = [9, n0, _CCRL,
|
|
1614
|
+
0, () => CreateCustomRoutingListenerRequest$, () => CreateCustomRoutingListenerResponse$
|
|
1615
|
+
];
|
|
1616
|
+
var CreateEndpointGroup$ = [9, n0, _CEG,
|
|
1617
|
+
0, () => CreateEndpointGroupRequest$, () => CreateEndpointGroupResponse$
|
|
1618
|
+
];
|
|
1619
|
+
var CreateListener$ = [9, n0, _CL,
|
|
1620
|
+
0, () => CreateListenerRequest$, () => CreateListenerResponse$
|
|
1621
|
+
];
|
|
1622
|
+
var DeleteAccelerator$ = [9, n0, _DAel,
|
|
1623
|
+
0, () => DeleteAcceleratorRequest$, () => __Unit
|
|
1624
|
+
];
|
|
1625
|
+
var DeleteCrossAccountAttachment$ = [9, n0, _DCAA,
|
|
1626
|
+
0, () => DeleteCrossAccountAttachmentRequest$, () => __Unit
|
|
1627
|
+
];
|
|
1628
|
+
var DeleteCustomRoutingAccelerator$ = [9, n0, _DCRA,
|
|
1629
|
+
0, () => DeleteCustomRoutingAcceleratorRequest$, () => __Unit
|
|
1630
|
+
];
|
|
1631
|
+
var DeleteCustomRoutingEndpointGroup$ = [9, n0, _DCREG,
|
|
1632
|
+
0, () => DeleteCustomRoutingEndpointGroupRequest$, () => __Unit
|
|
1633
|
+
];
|
|
1634
|
+
var DeleteCustomRoutingListener$ = [9, n0, _DCRL,
|
|
1635
|
+
0, () => DeleteCustomRoutingListenerRequest$, () => __Unit
|
|
1636
|
+
];
|
|
1637
|
+
var DeleteEndpointGroup$ = [9, n0, _DEG,
|
|
1638
|
+
0, () => DeleteEndpointGroupRequest$, () => __Unit
|
|
1639
|
+
];
|
|
1640
|
+
var DeleteListener$ = [9, n0, _DL,
|
|
1641
|
+
0, () => DeleteListenerRequest$, () => __Unit
|
|
1642
|
+
];
|
|
1643
|
+
var DenyCustomRoutingTraffic$ = [9, n0, _DCRT,
|
|
1644
|
+
0, () => DenyCustomRoutingTrafficRequest$, () => __Unit
|
|
1645
|
+
];
|
|
1646
|
+
var DeprovisionByoipCidr$ = [9, n0, _DBC,
|
|
1647
|
+
0, () => DeprovisionByoipCidrRequest$, () => DeprovisionByoipCidrResponse$
|
|
1648
|
+
];
|
|
1649
|
+
var DescribeAccelerator$ = [9, n0, _DAes,
|
|
1650
|
+
0, () => DescribeAcceleratorRequest$, () => DescribeAcceleratorResponse$
|
|
1651
|
+
];
|
|
1652
|
+
var DescribeAcceleratorAttributes$ = [9, n0, _DAA,
|
|
1653
|
+
0, () => DescribeAcceleratorAttributesRequest$, () => DescribeAcceleratorAttributesResponse$
|
|
1654
|
+
];
|
|
1655
|
+
var DescribeCrossAccountAttachment$ = [9, n0, _DCAAe,
|
|
1656
|
+
0, () => DescribeCrossAccountAttachmentRequest$, () => DescribeCrossAccountAttachmentResponse$
|
|
1657
|
+
];
|
|
1658
|
+
var DescribeCustomRoutingAccelerator$ = [9, n0, _DCRAe,
|
|
1659
|
+
0, () => DescribeCustomRoutingAcceleratorRequest$, () => DescribeCustomRoutingAcceleratorResponse$
|
|
1660
|
+
];
|
|
1661
|
+
var DescribeCustomRoutingAcceleratorAttributes$ = [9, n0, _DCRAA,
|
|
1662
|
+
0, () => DescribeCustomRoutingAcceleratorAttributesRequest$, () => DescribeCustomRoutingAcceleratorAttributesResponse$
|
|
1663
|
+
];
|
|
1664
|
+
var DescribeCustomRoutingEndpointGroup$ = [9, n0, _DCREGe,
|
|
1665
|
+
0, () => DescribeCustomRoutingEndpointGroupRequest$, () => DescribeCustomRoutingEndpointGroupResponse$
|
|
1666
|
+
];
|
|
1667
|
+
var DescribeCustomRoutingListener$ = [9, n0, _DCRLe,
|
|
1668
|
+
0, () => DescribeCustomRoutingListenerRequest$, () => DescribeCustomRoutingListenerResponse$
|
|
1669
|
+
];
|
|
1670
|
+
var DescribeEndpointGroup$ = [9, n0, _DEGe,
|
|
1671
|
+
0, () => DescribeEndpointGroupRequest$, () => DescribeEndpointGroupResponse$
|
|
1672
|
+
];
|
|
1673
|
+
var DescribeListener$ = [9, n0, _DLe,
|
|
1674
|
+
0, () => DescribeListenerRequest$, () => DescribeListenerResponse$
|
|
1675
|
+
];
|
|
1676
|
+
var ListAccelerators$ = [9, n0, _LAi,
|
|
1677
|
+
0, () => ListAcceleratorsRequest$, () => ListAcceleratorsResponse$
|
|
1678
|
+
];
|
|
1679
|
+
var ListByoipCidrs$ = [9, n0, _LBC,
|
|
1680
|
+
0, () => ListByoipCidrsRequest$, () => ListByoipCidrsResponse$
|
|
1681
|
+
];
|
|
1682
|
+
var ListCrossAccountAttachments$ = [9, n0, _LCAA,
|
|
1683
|
+
0, () => ListCrossAccountAttachmentsRequest$, () => ListCrossAccountAttachmentsResponse$
|
|
1684
|
+
];
|
|
1685
|
+
var ListCrossAccountResourceAccounts$ = [9, n0, _LCARA,
|
|
1686
|
+
0, () => ListCrossAccountResourceAccountsRequest$, () => ListCrossAccountResourceAccountsResponse$
|
|
1687
|
+
];
|
|
1688
|
+
var ListCrossAccountResources$ = [9, n0, _LCAR,
|
|
1689
|
+
0, () => ListCrossAccountResourcesRequest$, () => ListCrossAccountResourcesResponse$
|
|
1690
|
+
];
|
|
1691
|
+
var ListCustomRoutingAccelerators$ = [9, n0, _LCRA,
|
|
1692
|
+
0, () => ListCustomRoutingAcceleratorsRequest$, () => ListCustomRoutingAcceleratorsResponse$
|
|
1693
|
+
];
|
|
1694
|
+
var ListCustomRoutingEndpointGroups$ = [9, n0, _LCREG,
|
|
1695
|
+
0, () => ListCustomRoutingEndpointGroupsRequest$, () => ListCustomRoutingEndpointGroupsResponse$
|
|
1696
|
+
];
|
|
1697
|
+
var ListCustomRoutingListeners$ = [9, n0, _LCRL,
|
|
1698
|
+
0, () => ListCustomRoutingListenersRequest$, () => ListCustomRoutingListenersResponse$
|
|
1699
|
+
];
|
|
1700
|
+
var ListCustomRoutingPortMappings$ = [9, n0, _LCRPM,
|
|
1701
|
+
0, () => ListCustomRoutingPortMappingsRequest$, () => ListCustomRoutingPortMappingsResponse$
|
|
1702
|
+
];
|
|
1703
|
+
var ListCustomRoutingPortMappingsByDestination$ = [9, n0, _LCRPMBD,
|
|
1704
|
+
0, () => ListCustomRoutingPortMappingsByDestinationRequest$, () => ListCustomRoutingPortMappingsByDestinationResponse$
|
|
1705
|
+
];
|
|
1706
|
+
var ListEndpointGroups$ = [9, n0, _LEG,
|
|
1707
|
+
0, () => ListEndpointGroupsRequest$, () => ListEndpointGroupsResponse$
|
|
1708
|
+
];
|
|
1709
|
+
var ListListeners$ = [9, n0, _LL,
|
|
1710
|
+
0, () => ListListenersRequest$, () => ListListenersResponse$
|
|
1711
|
+
];
|
|
1712
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1713
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1714
|
+
];
|
|
1715
|
+
var ProvisionByoipCidr$ = [9, n0, _PBC,
|
|
1716
|
+
0, () => ProvisionByoipCidrRequest$, () => ProvisionByoipCidrResponse$
|
|
1717
|
+
];
|
|
1718
|
+
var RemoveCustomRoutingEndpoints$ = [9, n0, _RCRE,
|
|
1719
|
+
0, () => RemoveCustomRoutingEndpointsRequest$, () => __Unit
|
|
1720
|
+
];
|
|
1721
|
+
var RemoveEndpoints$ = [9, n0, _RE,
|
|
1722
|
+
0, () => RemoveEndpointsRequest$, () => __Unit
|
|
1723
|
+
];
|
|
1724
|
+
var TagResource$ = [9, n0, _TR,
|
|
1725
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1726
|
+
];
|
|
1727
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1728
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1729
|
+
];
|
|
1730
|
+
var UpdateAccelerator$ = [9, n0, _UA,
|
|
1731
|
+
0, () => UpdateAcceleratorRequest$, () => UpdateAcceleratorResponse$
|
|
1732
|
+
];
|
|
1733
|
+
var UpdateAcceleratorAttributes$ = [9, n0, _UAA,
|
|
1734
|
+
0, () => UpdateAcceleratorAttributesRequest$, () => UpdateAcceleratorAttributesResponse$
|
|
1735
|
+
];
|
|
1736
|
+
var UpdateCrossAccountAttachment$ = [9, n0, _UCAA,
|
|
1737
|
+
0, () => UpdateCrossAccountAttachmentRequest$, () => UpdateCrossAccountAttachmentResponse$
|
|
1738
|
+
];
|
|
1739
|
+
var UpdateCustomRoutingAccelerator$ = [9, n0, _UCRA,
|
|
1740
|
+
0, () => UpdateCustomRoutingAcceleratorRequest$, () => UpdateCustomRoutingAcceleratorResponse$
|
|
1741
|
+
];
|
|
1742
|
+
var UpdateCustomRoutingAcceleratorAttributes$ = [9, n0, _UCRAA,
|
|
1743
|
+
0, () => UpdateCustomRoutingAcceleratorAttributesRequest$, () => UpdateCustomRoutingAcceleratorAttributesResponse$
|
|
1744
|
+
];
|
|
1745
|
+
var UpdateCustomRoutingListener$ = [9, n0, _UCRL,
|
|
1746
|
+
0, () => UpdateCustomRoutingListenerRequest$, () => UpdateCustomRoutingListenerResponse$
|
|
1747
|
+
];
|
|
1748
|
+
var UpdateEndpointGroup$ = [9, n0, _UEG,
|
|
1749
|
+
0, () => UpdateEndpointGroupRequest$, () => UpdateEndpointGroupResponse$
|
|
1750
|
+
];
|
|
1751
|
+
var UpdateListener$ = [9, n0, _UL,
|
|
1752
|
+
0, () => UpdateListenerRequest$, () => UpdateListenerResponse$
|
|
1753
|
+
];
|
|
1754
|
+
var WithdrawByoipCidr$ = [9, n0, _WBC,
|
|
1755
|
+
0, () => WithdrawByoipCidrRequest$, () => WithdrawByoipCidrResponse$
|
|
1756
|
+
];
|
|
1757
|
+
|
|
1758
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1759
|
+
return {
|
|
1760
|
+
apiVersion: "2018-08-08",
|
|
1761
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1762
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1763
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1764
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1765
|
+
extensions: config?.extensions ?? [],
|
|
1766
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultGlobalAcceleratorHttpAuthSchemeProvider,
|
|
1767
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1768
|
+
{
|
|
1769
|
+
schemeId: "aws.auth#sigv4",
|
|
1770
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1771
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1772
|
+
},
|
|
1773
|
+
],
|
|
1774
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1775
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1776
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1777
|
+
defaultNamespace: "com.amazonaws.globalaccelerator",
|
|
1778
|
+
errorTypeRegistries,
|
|
1779
|
+
version: "2018-08-08",
|
|
1780
|
+
serviceTarget: "GlobalAccelerator_V20180706",
|
|
1781
|
+
},
|
|
1782
|
+
serviceId: config?.serviceId ?? "Global Accelerator",
|
|
1783
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1784
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1785
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
|
|
1789
|
+
const getRuntimeConfig = (config) => {
|
|
1790
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1791
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1792
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1793
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1794
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1795
|
+
const loaderConfig = {
|
|
1796
|
+
profile: config?.profile,
|
|
1797
|
+
logger: clientSharedValues.logger,
|
|
1798
|
+
};
|
|
1799
|
+
return {
|
|
1800
|
+
...clientSharedValues,
|
|
1801
|
+
...config,
|
|
1802
|
+
runtime: "node",
|
|
1803
|
+
defaultsMode,
|
|
1804
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1805
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1806
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1807
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1808
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1809
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1810
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1811
|
+
retryMode: config?.retryMode ??
|
|
1812
|
+
loadConfig({
|
|
1813
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1814
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1815
|
+
}, config),
|
|
1816
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1817
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1818
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1819
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1820
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
|
|
34
1824
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1825
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1826
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -936,75 +2726,304 @@ const CustomRoutingDestinationTrafficState = {
|
|
|
936
2726
|
DENY: "DENY",
|
|
937
2727
|
};
|
|
938
2728
|
|
|
2729
|
+
exports.Accelerator$ = Accelerator$;
|
|
2730
|
+
exports.AcceleratorAttributes$ = AcceleratorAttributes$;
|
|
2731
|
+
exports.AcceleratorEvent$ = AcceleratorEvent$;
|
|
2732
|
+
exports.AcceleratorNotDisabledException = AcceleratorNotDisabledException;
|
|
2733
|
+
exports.AcceleratorNotDisabledException$ = AcceleratorNotDisabledException$;
|
|
2734
|
+
exports.AcceleratorNotFoundException = AcceleratorNotFoundException;
|
|
2735
|
+
exports.AcceleratorNotFoundException$ = AcceleratorNotFoundException$;
|
|
939
2736
|
exports.AcceleratorStatus = AcceleratorStatus;
|
|
2737
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2738
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2739
|
+
exports.AddCustomRoutingEndpoints$ = AddCustomRoutingEndpoints$;
|
|
940
2740
|
exports.AddCustomRoutingEndpointsCommand = AddCustomRoutingEndpointsCommand;
|
|
2741
|
+
exports.AddCustomRoutingEndpointsRequest$ = AddCustomRoutingEndpointsRequest$;
|
|
2742
|
+
exports.AddCustomRoutingEndpointsResponse$ = AddCustomRoutingEndpointsResponse$;
|
|
2743
|
+
exports.AddEndpoints$ = AddEndpoints$;
|
|
941
2744
|
exports.AddEndpointsCommand = AddEndpointsCommand;
|
|
2745
|
+
exports.AddEndpointsRequest$ = AddEndpointsRequest$;
|
|
2746
|
+
exports.AddEndpointsResponse$ = AddEndpointsResponse$;
|
|
2747
|
+
exports.AdvertiseByoipCidr$ = AdvertiseByoipCidr$;
|
|
942
2748
|
exports.AdvertiseByoipCidrCommand = AdvertiseByoipCidrCommand;
|
|
2749
|
+
exports.AdvertiseByoipCidrRequest$ = AdvertiseByoipCidrRequest$;
|
|
2750
|
+
exports.AdvertiseByoipCidrResponse$ = AdvertiseByoipCidrResponse$;
|
|
2751
|
+
exports.AllowCustomRoutingTraffic$ = AllowCustomRoutingTraffic$;
|
|
943
2752
|
exports.AllowCustomRoutingTrafficCommand = AllowCustomRoutingTrafficCommand;
|
|
2753
|
+
exports.AllowCustomRoutingTrafficRequest$ = AllowCustomRoutingTrafficRequest$;
|
|
2754
|
+
exports.AssociatedEndpointGroupFoundException = AssociatedEndpointGroupFoundException;
|
|
2755
|
+
exports.AssociatedEndpointGroupFoundException$ = AssociatedEndpointGroupFoundException$;
|
|
2756
|
+
exports.AssociatedListenerFoundException = AssociatedListenerFoundException;
|
|
2757
|
+
exports.AssociatedListenerFoundException$ = AssociatedListenerFoundException$;
|
|
2758
|
+
exports.Attachment$ = Attachment$;
|
|
2759
|
+
exports.AttachmentNotFoundException = AttachmentNotFoundException;
|
|
2760
|
+
exports.AttachmentNotFoundException$ = AttachmentNotFoundException$;
|
|
2761
|
+
exports.ByoipCidr$ = ByoipCidr$;
|
|
2762
|
+
exports.ByoipCidrEvent$ = ByoipCidrEvent$;
|
|
2763
|
+
exports.ByoipCidrNotFoundException = ByoipCidrNotFoundException;
|
|
2764
|
+
exports.ByoipCidrNotFoundException$ = ByoipCidrNotFoundException$;
|
|
944
2765
|
exports.ByoipCidrState = ByoipCidrState;
|
|
2766
|
+
exports.CidrAuthorizationContext$ = CidrAuthorizationContext$;
|
|
945
2767
|
exports.ClientAffinity = ClientAffinity;
|
|
2768
|
+
exports.ConflictException = ConflictException;
|
|
2769
|
+
exports.ConflictException$ = ConflictException$;
|
|
2770
|
+
exports.CreateAccelerator$ = CreateAccelerator$;
|
|
946
2771
|
exports.CreateAcceleratorCommand = CreateAcceleratorCommand;
|
|
2772
|
+
exports.CreateAcceleratorRequest$ = CreateAcceleratorRequest$;
|
|
2773
|
+
exports.CreateAcceleratorResponse$ = CreateAcceleratorResponse$;
|
|
2774
|
+
exports.CreateCrossAccountAttachment$ = CreateCrossAccountAttachment$;
|
|
947
2775
|
exports.CreateCrossAccountAttachmentCommand = CreateCrossAccountAttachmentCommand;
|
|
2776
|
+
exports.CreateCrossAccountAttachmentRequest$ = CreateCrossAccountAttachmentRequest$;
|
|
2777
|
+
exports.CreateCrossAccountAttachmentResponse$ = CreateCrossAccountAttachmentResponse$;
|
|
2778
|
+
exports.CreateCustomRoutingAccelerator$ = CreateCustomRoutingAccelerator$;
|
|
948
2779
|
exports.CreateCustomRoutingAcceleratorCommand = CreateCustomRoutingAcceleratorCommand;
|
|
2780
|
+
exports.CreateCustomRoutingAcceleratorRequest$ = CreateCustomRoutingAcceleratorRequest$;
|
|
2781
|
+
exports.CreateCustomRoutingAcceleratorResponse$ = CreateCustomRoutingAcceleratorResponse$;
|
|
2782
|
+
exports.CreateCustomRoutingEndpointGroup$ = CreateCustomRoutingEndpointGroup$;
|
|
949
2783
|
exports.CreateCustomRoutingEndpointGroupCommand = CreateCustomRoutingEndpointGroupCommand;
|
|
2784
|
+
exports.CreateCustomRoutingEndpointGroupRequest$ = CreateCustomRoutingEndpointGroupRequest$;
|
|
2785
|
+
exports.CreateCustomRoutingEndpointGroupResponse$ = CreateCustomRoutingEndpointGroupResponse$;
|
|
2786
|
+
exports.CreateCustomRoutingListener$ = CreateCustomRoutingListener$;
|
|
950
2787
|
exports.CreateCustomRoutingListenerCommand = CreateCustomRoutingListenerCommand;
|
|
2788
|
+
exports.CreateCustomRoutingListenerRequest$ = CreateCustomRoutingListenerRequest$;
|
|
2789
|
+
exports.CreateCustomRoutingListenerResponse$ = CreateCustomRoutingListenerResponse$;
|
|
2790
|
+
exports.CreateEndpointGroup$ = CreateEndpointGroup$;
|
|
951
2791
|
exports.CreateEndpointGroupCommand = CreateEndpointGroupCommand;
|
|
2792
|
+
exports.CreateEndpointGroupRequest$ = CreateEndpointGroupRequest$;
|
|
2793
|
+
exports.CreateEndpointGroupResponse$ = CreateEndpointGroupResponse$;
|
|
2794
|
+
exports.CreateListener$ = CreateListener$;
|
|
952
2795
|
exports.CreateListenerCommand = CreateListenerCommand;
|
|
2796
|
+
exports.CreateListenerRequest$ = CreateListenerRequest$;
|
|
2797
|
+
exports.CreateListenerResponse$ = CreateListenerResponse$;
|
|
2798
|
+
exports.CrossAccountResource$ = CrossAccountResource$;
|
|
2799
|
+
exports.CustomRoutingAccelerator$ = CustomRoutingAccelerator$;
|
|
2800
|
+
exports.CustomRoutingAcceleratorAttributes$ = CustomRoutingAcceleratorAttributes$;
|
|
953
2801
|
exports.CustomRoutingAcceleratorStatus = CustomRoutingAcceleratorStatus;
|
|
2802
|
+
exports.CustomRoutingDestinationConfiguration$ = CustomRoutingDestinationConfiguration$;
|
|
2803
|
+
exports.CustomRoutingDestinationDescription$ = CustomRoutingDestinationDescription$;
|
|
954
2804
|
exports.CustomRoutingDestinationTrafficState = CustomRoutingDestinationTrafficState;
|
|
2805
|
+
exports.CustomRoutingEndpointConfiguration$ = CustomRoutingEndpointConfiguration$;
|
|
2806
|
+
exports.CustomRoutingEndpointDescription$ = CustomRoutingEndpointDescription$;
|
|
2807
|
+
exports.CustomRoutingEndpointGroup$ = CustomRoutingEndpointGroup$;
|
|
2808
|
+
exports.CustomRoutingListener$ = CustomRoutingListener$;
|
|
955
2809
|
exports.CustomRoutingProtocol = CustomRoutingProtocol;
|
|
2810
|
+
exports.DeleteAccelerator$ = DeleteAccelerator$;
|
|
956
2811
|
exports.DeleteAcceleratorCommand = DeleteAcceleratorCommand;
|
|
2812
|
+
exports.DeleteAcceleratorRequest$ = DeleteAcceleratorRequest$;
|
|
2813
|
+
exports.DeleteCrossAccountAttachment$ = DeleteCrossAccountAttachment$;
|
|
957
2814
|
exports.DeleteCrossAccountAttachmentCommand = DeleteCrossAccountAttachmentCommand;
|
|
2815
|
+
exports.DeleteCrossAccountAttachmentRequest$ = DeleteCrossAccountAttachmentRequest$;
|
|
2816
|
+
exports.DeleteCustomRoutingAccelerator$ = DeleteCustomRoutingAccelerator$;
|
|
958
2817
|
exports.DeleteCustomRoutingAcceleratorCommand = DeleteCustomRoutingAcceleratorCommand;
|
|
2818
|
+
exports.DeleteCustomRoutingAcceleratorRequest$ = DeleteCustomRoutingAcceleratorRequest$;
|
|
2819
|
+
exports.DeleteCustomRoutingEndpointGroup$ = DeleteCustomRoutingEndpointGroup$;
|
|
959
2820
|
exports.DeleteCustomRoutingEndpointGroupCommand = DeleteCustomRoutingEndpointGroupCommand;
|
|
2821
|
+
exports.DeleteCustomRoutingEndpointGroupRequest$ = DeleteCustomRoutingEndpointGroupRequest$;
|
|
2822
|
+
exports.DeleteCustomRoutingListener$ = DeleteCustomRoutingListener$;
|
|
960
2823
|
exports.DeleteCustomRoutingListenerCommand = DeleteCustomRoutingListenerCommand;
|
|
2824
|
+
exports.DeleteCustomRoutingListenerRequest$ = DeleteCustomRoutingListenerRequest$;
|
|
2825
|
+
exports.DeleteEndpointGroup$ = DeleteEndpointGroup$;
|
|
961
2826
|
exports.DeleteEndpointGroupCommand = DeleteEndpointGroupCommand;
|
|
2827
|
+
exports.DeleteEndpointGroupRequest$ = DeleteEndpointGroupRequest$;
|
|
2828
|
+
exports.DeleteListener$ = DeleteListener$;
|
|
962
2829
|
exports.DeleteListenerCommand = DeleteListenerCommand;
|
|
2830
|
+
exports.DeleteListenerRequest$ = DeleteListenerRequest$;
|
|
2831
|
+
exports.DenyCustomRoutingTraffic$ = DenyCustomRoutingTraffic$;
|
|
963
2832
|
exports.DenyCustomRoutingTrafficCommand = DenyCustomRoutingTrafficCommand;
|
|
2833
|
+
exports.DenyCustomRoutingTrafficRequest$ = DenyCustomRoutingTrafficRequest$;
|
|
2834
|
+
exports.DeprovisionByoipCidr$ = DeprovisionByoipCidr$;
|
|
964
2835
|
exports.DeprovisionByoipCidrCommand = DeprovisionByoipCidrCommand;
|
|
2836
|
+
exports.DeprovisionByoipCidrRequest$ = DeprovisionByoipCidrRequest$;
|
|
2837
|
+
exports.DeprovisionByoipCidrResponse$ = DeprovisionByoipCidrResponse$;
|
|
2838
|
+
exports.DescribeAccelerator$ = DescribeAccelerator$;
|
|
2839
|
+
exports.DescribeAcceleratorAttributes$ = DescribeAcceleratorAttributes$;
|
|
965
2840
|
exports.DescribeAcceleratorAttributesCommand = DescribeAcceleratorAttributesCommand;
|
|
2841
|
+
exports.DescribeAcceleratorAttributesRequest$ = DescribeAcceleratorAttributesRequest$;
|
|
2842
|
+
exports.DescribeAcceleratorAttributesResponse$ = DescribeAcceleratorAttributesResponse$;
|
|
966
2843
|
exports.DescribeAcceleratorCommand = DescribeAcceleratorCommand;
|
|
2844
|
+
exports.DescribeAcceleratorRequest$ = DescribeAcceleratorRequest$;
|
|
2845
|
+
exports.DescribeAcceleratorResponse$ = DescribeAcceleratorResponse$;
|
|
2846
|
+
exports.DescribeCrossAccountAttachment$ = DescribeCrossAccountAttachment$;
|
|
967
2847
|
exports.DescribeCrossAccountAttachmentCommand = DescribeCrossAccountAttachmentCommand;
|
|
2848
|
+
exports.DescribeCrossAccountAttachmentRequest$ = DescribeCrossAccountAttachmentRequest$;
|
|
2849
|
+
exports.DescribeCrossAccountAttachmentResponse$ = DescribeCrossAccountAttachmentResponse$;
|
|
2850
|
+
exports.DescribeCustomRoutingAccelerator$ = DescribeCustomRoutingAccelerator$;
|
|
2851
|
+
exports.DescribeCustomRoutingAcceleratorAttributes$ = DescribeCustomRoutingAcceleratorAttributes$;
|
|
968
2852
|
exports.DescribeCustomRoutingAcceleratorAttributesCommand = DescribeCustomRoutingAcceleratorAttributesCommand;
|
|
2853
|
+
exports.DescribeCustomRoutingAcceleratorAttributesRequest$ = DescribeCustomRoutingAcceleratorAttributesRequest$;
|
|
2854
|
+
exports.DescribeCustomRoutingAcceleratorAttributesResponse$ = DescribeCustomRoutingAcceleratorAttributesResponse$;
|
|
969
2855
|
exports.DescribeCustomRoutingAcceleratorCommand = DescribeCustomRoutingAcceleratorCommand;
|
|
2856
|
+
exports.DescribeCustomRoutingAcceleratorRequest$ = DescribeCustomRoutingAcceleratorRequest$;
|
|
2857
|
+
exports.DescribeCustomRoutingAcceleratorResponse$ = DescribeCustomRoutingAcceleratorResponse$;
|
|
2858
|
+
exports.DescribeCustomRoutingEndpointGroup$ = DescribeCustomRoutingEndpointGroup$;
|
|
970
2859
|
exports.DescribeCustomRoutingEndpointGroupCommand = DescribeCustomRoutingEndpointGroupCommand;
|
|
2860
|
+
exports.DescribeCustomRoutingEndpointGroupRequest$ = DescribeCustomRoutingEndpointGroupRequest$;
|
|
2861
|
+
exports.DescribeCustomRoutingEndpointGroupResponse$ = DescribeCustomRoutingEndpointGroupResponse$;
|
|
2862
|
+
exports.DescribeCustomRoutingListener$ = DescribeCustomRoutingListener$;
|
|
971
2863
|
exports.DescribeCustomRoutingListenerCommand = DescribeCustomRoutingListenerCommand;
|
|
2864
|
+
exports.DescribeCustomRoutingListenerRequest$ = DescribeCustomRoutingListenerRequest$;
|
|
2865
|
+
exports.DescribeCustomRoutingListenerResponse$ = DescribeCustomRoutingListenerResponse$;
|
|
2866
|
+
exports.DescribeEndpointGroup$ = DescribeEndpointGroup$;
|
|
972
2867
|
exports.DescribeEndpointGroupCommand = DescribeEndpointGroupCommand;
|
|
2868
|
+
exports.DescribeEndpointGroupRequest$ = DescribeEndpointGroupRequest$;
|
|
2869
|
+
exports.DescribeEndpointGroupResponse$ = DescribeEndpointGroupResponse$;
|
|
2870
|
+
exports.DescribeListener$ = DescribeListener$;
|
|
973
2871
|
exports.DescribeListenerCommand = DescribeListenerCommand;
|
|
2872
|
+
exports.DescribeListenerRequest$ = DescribeListenerRequest$;
|
|
2873
|
+
exports.DescribeListenerResponse$ = DescribeListenerResponse$;
|
|
2874
|
+
exports.DestinationPortMapping$ = DestinationPortMapping$;
|
|
2875
|
+
exports.EndpointAlreadyExistsException = EndpointAlreadyExistsException;
|
|
2876
|
+
exports.EndpointAlreadyExistsException$ = EndpointAlreadyExistsException$;
|
|
2877
|
+
exports.EndpointConfiguration$ = EndpointConfiguration$;
|
|
2878
|
+
exports.EndpointDescription$ = EndpointDescription$;
|
|
2879
|
+
exports.EndpointGroup$ = EndpointGroup$;
|
|
2880
|
+
exports.EndpointGroupAlreadyExistsException = EndpointGroupAlreadyExistsException;
|
|
2881
|
+
exports.EndpointGroupAlreadyExistsException$ = EndpointGroupAlreadyExistsException$;
|
|
2882
|
+
exports.EndpointGroupNotFoundException = EndpointGroupNotFoundException;
|
|
2883
|
+
exports.EndpointGroupNotFoundException$ = EndpointGroupNotFoundException$;
|
|
2884
|
+
exports.EndpointIdentifier$ = EndpointIdentifier$;
|
|
2885
|
+
exports.EndpointNotFoundException = EndpointNotFoundException;
|
|
2886
|
+
exports.EndpointNotFoundException$ = EndpointNotFoundException$;
|
|
974
2887
|
exports.GlobalAccelerator = GlobalAccelerator;
|
|
975
2888
|
exports.GlobalAcceleratorClient = GlobalAcceleratorClient;
|
|
2889
|
+
exports.GlobalAcceleratorServiceException = GlobalAcceleratorServiceException;
|
|
2890
|
+
exports.GlobalAcceleratorServiceException$ = GlobalAcceleratorServiceException$;
|
|
976
2891
|
exports.HealthCheckProtocol = HealthCheckProtocol;
|
|
977
2892
|
exports.HealthState = HealthState;
|
|
2893
|
+
exports.IncorrectCidrStateException = IncorrectCidrStateException;
|
|
2894
|
+
exports.IncorrectCidrStateException$ = IncorrectCidrStateException$;
|
|
2895
|
+
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
2896
|
+
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
2897
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2898
|
+
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2899
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
2900
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
2901
|
+
exports.InvalidPortRangeException = InvalidPortRangeException;
|
|
2902
|
+
exports.InvalidPortRangeException$ = InvalidPortRangeException$;
|
|
978
2903
|
exports.IpAddressFamily = IpAddressFamily;
|
|
979
2904
|
exports.IpAddressType = IpAddressType;
|
|
2905
|
+
exports.IpSet$ = IpSet$;
|
|
2906
|
+
exports.LimitExceededException = LimitExceededException;
|
|
2907
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2908
|
+
exports.ListAccelerators$ = ListAccelerators$;
|
|
980
2909
|
exports.ListAcceleratorsCommand = ListAcceleratorsCommand;
|
|
2910
|
+
exports.ListAcceleratorsRequest$ = ListAcceleratorsRequest$;
|
|
2911
|
+
exports.ListAcceleratorsResponse$ = ListAcceleratorsResponse$;
|
|
2912
|
+
exports.ListByoipCidrs$ = ListByoipCidrs$;
|
|
981
2913
|
exports.ListByoipCidrsCommand = ListByoipCidrsCommand;
|
|
2914
|
+
exports.ListByoipCidrsRequest$ = ListByoipCidrsRequest$;
|
|
2915
|
+
exports.ListByoipCidrsResponse$ = ListByoipCidrsResponse$;
|
|
2916
|
+
exports.ListCrossAccountAttachments$ = ListCrossAccountAttachments$;
|
|
982
2917
|
exports.ListCrossAccountAttachmentsCommand = ListCrossAccountAttachmentsCommand;
|
|
2918
|
+
exports.ListCrossAccountAttachmentsRequest$ = ListCrossAccountAttachmentsRequest$;
|
|
2919
|
+
exports.ListCrossAccountAttachmentsResponse$ = ListCrossAccountAttachmentsResponse$;
|
|
2920
|
+
exports.ListCrossAccountResourceAccounts$ = ListCrossAccountResourceAccounts$;
|
|
983
2921
|
exports.ListCrossAccountResourceAccountsCommand = ListCrossAccountResourceAccountsCommand;
|
|
2922
|
+
exports.ListCrossAccountResourceAccountsRequest$ = ListCrossAccountResourceAccountsRequest$;
|
|
2923
|
+
exports.ListCrossAccountResourceAccountsResponse$ = ListCrossAccountResourceAccountsResponse$;
|
|
2924
|
+
exports.ListCrossAccountResources$ = ListCrossAccountResources$;
|
|
984
2925
|
exports.ListCrossAccountResourcesCommand = ListCrossAccountResourcesCommand;
|
|
2926
|
+
exports.ListCrossAccountResourcesRequest$ = ListCrossAccountResourcesRequest$;
|
|
2927
|
+
exports.ListCrossAccountResourcesResponse$ = ListCrossAccountResourcesResponse$;
|
|
2928
|
+
exports.ListCustomRoutingAccelerators$ = ListCustomRoutingAccelerators$;
|
|
985
2929
|
exports.ListCustomRoutingAcceleratorsCommand = ListCustomRoutingAcceleratorsCommand;
|
|
2930
|
+
exports.ListCustomRoutingAcceleratorsRequest$ = ListCustomRoutingAcceleratorsRequest$;
|
|
2931
|
+
exports.ListCustomRoutingAcceleratorsResponse$ = ListCustomRoutingAcceleratorsResponse$;
|
|
2932
|
+
exports.ListCustomRoutingEndpointGroups$ = ListCustomRoutingEndpointGroups$;
|
|
986
2933
|
exports.ListCustomRoutingEndpointGroupsCommand = ListCustomRoutingEndpointGroupsCommand;
|
|
2934
|
+
exports.ListCustomRoutingEndpointGroupsRequest$ = ListCustomRoutingEndpointGroupsRequest$;
|
|
2935
|
+
exports.ListCustomRoutingEndpointGroupsResponse$ = ListCustomRoutingEndpointGroupsResponse$;
|
|
2936
|
+
exports.ListCustomRoutingListeners$ = ListCustomRoutingListeners$;
|
|
987
2937
|
exports.ListCustomRoutingListenersCommand = ListCustomRoutingListenersCommand;
|
|
2938
|
+
exports.ListCustomRoutingListenersRequest$ = ListCustomRoutingListenersRequest$;
|
|
2939
|
+
exports.ListCustomRoutingListenersResponse$ = ListCustomRoutingListenersResponse$;
|
|
2940
|
+
exports.ListCustomRoutingPortMappings$ = ListCustomRoutingPortMappings$;
|
|
2941
|
+
exports.ListCustomRoutingPortMappingsByDestination$ = ListCustomRoutingPortMappingsByDestination$;
|
|
988
2942
|
exports.ListCustomRoutingPortMappingsByDestinationCommand = ListCustomRoutingPortMappingsByDestinationCommand;
|
|
2943
|
+
exports.ListCustomRoutingPortMappingsByDestinationRequest$ = ListCustomRoutingPortMappingsByDestinationRequest$;
|
|
2944
|
+
exports.ListCustomRoutingPortMappingsByDestinationResponse$ = ListCustomRoutingPortMappingsByDestinationResponse$;
|
|
989
2945
|
exports.ListCustomRoutingPortMappingsCommand = ListCustomRoutingPortMappingsCommand;
|
|
2946
|
+
exports.ListCustomRoutingPortMappingsRequest$ = ListCustomRoutingPortMappingsRequest$;
|
|
2947
|
+
exports.ListCustomRoutingPortMappingsResponse$ = ListCustomRoutingPortMappingsResponse$;
|
|
2948
|
+
exports.ListEndpointGroups$ = ListEndpointGroups$;
|
|
990
2949
|
exports.ListEndpointGroupsCommand = ListEndpointGroupsCommand;
|
|
2950
|
+
exports.ListEndpointGroupsRequest$ = ListEndpointGroupsRequest$;
|
|
2951
|
+
exports.ListEndpointGroupsResponse$ = ListEndpointGroupsResponse$;
|
|
2952
|
+
exports.ListListeners$ = ListListeners$;
|
|
991
2953
|
exports.ListListenersCommand = ListListenersCommand;
|
|
2954
|
+
exports.ListListenersRequest$ = ListListenersRequest$;
|
|
2955
|
+
exports.ListListenersResponse$ = ListListenersResponse$;
|
|
2956
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
992
2957
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2958
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2959
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2960
|
+
exports.Listener$ = Listener$;
|
|
2961
|
+
exports.ListenerNotFoundException = ListenerNotFoundException;
|
|
2962
|
+
exports.ListenerNotFoundException$ = ListenerNotFoundException$;
|
|
2963
|
+
exports.PortMapping$ = PortMapping$;
|
|
2964
|
+
exports.PortOverride$ = PortOverride$;
|
|
2965
|
+
exports.PortRange$ = PortRange$;
|
|
993
2966
|
exports.Protocol = Protocol;
|
|
2967
|
+
exports.ProvisionByoipCidr$ = ProvisionByoipCidr$;
|
|
994
2968
|
exports.ProvisionByoipCidrCommand = ProvisionByoipCidrCommand;
|
|
2969
|
+
exports.ProvisionByoipCidrRequest$ = ProvisionByoipCidrRequest$;
|
|
2970
|
+
exports.ProvisionByoipCidrResponse$ = ProvisionByoipCidrResponse$;
|
|
2971
|
+
exports.RemoveCustomRoutingEndpoints$ = RemoveCustomRoutingEndpoints$;
|
|
995
2972
|
exports.RemoveCustomRoutingEndpointsCommand = RemoveCustomRoutingEndpointsCommand;
|
|
2973
|
+
exports.RemoveCustomRoutingEndpointsRequest$ = RemoveCustomRoutingEndpointsRequest$;
|
|
2974
|
+
exports.RemoveEndpoints$ = RemoveEndpoints$;
|
|
996
2975
|
exports.RemoveEndpointsCommand = RemoveEndpointsCommand;
|
|
2976
|
+
exports.RemoveEndpointsRequest$ = RemoveEndpointsRequest$;
|
|
2977
|
+
exports.Resource$ = Resource$;
|
|
2978
|
+
exports.SocketAddress$ = SocketAddress$;
|
|
2979
|
+
exports.Tag$ = Tag$;
|
|
2980
|
+
exports.TagResource$ = TagResource$;
|
|
997
2981
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2982
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2983
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2984
|
+
exports.TransactionInProgressException = TransactionInProgressException;
|
|
2985
|
+
exports.TransactionInProgressException$ = TransactionInProgressException$;
|
|
2986
|
+
exports.UntagResource$ = UntagResource$;
|
|
998
2987
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2988
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2989
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2990
|
+
exports.UpdateAccelerator$ = UpdateAccelerator$;
|
|
2991
|
+
exports.UpdateAcceleratorAttributes$ = UpdateAcceleratorAttributes$;
|
|
999
2992
|
exports.UpdateAcceleratorAttributesCommand = UpdateAcceleratorAttributesCommand;
|
|
2993
|
+
exports.UpdateAcceleratorAttributesRequest$ = UpdateAcceleratorAttributesRequest$;
|
|
2994
|
+
exports.UpdateAcceleratorAttributesResponse$ = UpdateAcceleratorAttributesResponse$;
|
|
1000
2995
|
exports.UpdateAcceleratorCommand = UpdateAcceleratorCommand;
|
|
2996
|
+
exports.UpdateAcceleratorRequest$ = UpdateAcceleratorRequest$;
|
|
2997
|
+
exports.UpdateAcceleratorResponse$ = UpdateAcceleratorResponse$;
|
|
2998
|
+
exports.UpdateCrossAccountAttachment$ = UpdateCrossAccountAttachment$;
|
|
1001
2999
|
exports.UpdateCrossAccountAttachmentCommand = UpdateCrossAccountAttachmentCommand;
|
|
3000
|
+
exports.UpdateCrossAccountAttachmentRequest$ = UpdateCrossAccountAttachmentRequest$;
|
|
3001
|
+
exports.UpdateCrossAccountAttachmentResponse$ = UpdateCrossAccountAttachmentResponse$;
|
|
3002
|
+
exports.UpdateCustomRoutingAccelerator$ = UpdateCustomRoutingAccelerator$;
|
|
3003
|
+
exports.UpdateCustomRoutingAcceleratorAttributes$ = UpdateCustomRoutingAcceleratorAttributes$;
|
|
1002
3004
|
exports.UpdateCustomRoutingAcceleratorAttributesCommand = UpdateCustomRoutingAcceleratorAttributesCommand;
|
|
3005
|
+
exports.UpdateCustomRoutingAcceleratorAttributesRequest$ = UpdateCustomRoutingAcceleratorAttributesRequest$;
|
|
3006
|
+
exports.UpdateCustomRoutingAcceleratorAttributesResponse$ = UpdateCustomRoutingAcceleratorAttributesResponse$;
|
|
1003
3007
|
exports.UpdateCustomRoutingAcceleratorCommand = UpdateCustomRoutingAcceleratorCommand;
|
|
3008
|
+
exports.UpdateCustomRoutingAcceleratorRequest$ = UpdateCustomRoutingAcceleratorRequest$;
|
|
3009
|
+
exports.UpdateCustomRoutingAcceleratorResponse$ = UpdateCustomRoutingAcceleratorResponse$;
|
|
3010
|
+
exports.UpdateCustomRoutingListener$ = UpdateCustomRoutingListener$;
|
|
1004
3011
|
exports.UpdateCustomRoutingListenerCommand = UpdateCustomRoutingListenerCommand;
|
|
3012
|
+
exports.UpdateCustomRoutingListenerRequest$ = UpdateCustomRoutingListenerRequest$;
|
|
3013
|
+
exports.UpdateCustomRoutingListenerResponse$ = UpdateCustomRoutingListenerResponse$;
|
|
3014
|
+
exports.UpdateEndpointGroup$ = UpdateEndpointGroup$;
|
|
1005
3015
|
exports.UpdateEndpointGroupCommand = UpdateEndpointGroupCommand;
|
|
3016
|
+
exports.UpdateEndpointGroupRequest$ = UpdateEndpointGroupRequest$;
|
|
3017
|
+
exports.UpdateEndpointGroupResponse$ = UpdateEndpointGroupResponse$;
|
|
3018
|
+
exports.UpdateListener$ = UpdateListener$;
|
|
1006
3019
|
exports.UpdateListenerCommand = UpdateListenerCommand;
|
|
3020
|
+
exports.UpdateListenerRequest$ = UpdateListenerRequest$;
|
|
3021
|
+
exports.UpdateListenerResponse$ = UpdateListenerResponse$;
|
|
3022
|
+
exports.WithdrawByoipCidr$ = WithdrawByoipCidr$;
|
|
1007
3023
|
exports.WithdrawByoipCidrCommand = WithdrawByoipCidrCommand;
|
|
3024
|
+
exports.WithdrawByoipCidrRequest$ = WithdrawByoipCidrRequest$;
|
|
3025
|
+
exports.WithdrawByoipCidrResponse$ = WithdrawByoipCidrResponse$;
|
|
3026
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1008
3027
|
exports.paginateListAccelerators = paginateListAccelerators;
|
|
1009
3028
|
exports.paginateListByoipCidrs = paginateListByoipCidrs;
|
|
1010
3029
|
exports.paginateListCrossAccountAttachments = paginateListCrossAccountAttachments;
|