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