@aws-sdk/client-global-accelerator 3.986.0 → 3.988.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 +75 -1904
- package/dist-cjs/models/GlobalAcceleratorServiceException.js +12 -0
- package/dist-cjs/models/errors.js +304 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1356 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +130 -124
- package/dist-types/schemas/schemas_0.d.ts +28 -21
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -21
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var GlobalAcceleratorServiceException = require('./models/GlobalAcceleratorServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1626 +113,6 @@ class GlobalAcceleratorClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class GlobalAcceleratorServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, GlobalAcceleratorServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AcceleratorNotDisabledException extends GlobalAcceleratorServiceException {
|
|
121
|
-
name = "AcceleratorNotDisabledException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AcceleratorNotDisabledException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AcceleratorNotDisabledException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class AcceleratorNotFoundException extends GlobalAcceleratorServiceException {
|
|
135
|
-
name = "AcceleratorNotFoundException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "AcceleratorNotFoundException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, AcceleratorNotFoundException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class AccessDeniedException extends GlobalAcceleratorServiceException {
|
|
149
|
-
name = "AccessDeniedException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "AccessDeniedException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ConflictException extends GlobalAcceleratorServiceException {
|
|
163
|
-
name = "ConflictException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ConflictException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class EndpointAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
177
|
-
name = "EndpointAlreadyExistsException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "EndpointAlreadyExistsException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, EndpointAlreadyExistsException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class EndpointGroupNotFoundException extends GlobalAcceleratorServiceException {
|
|
191
|
-
name = "EndpointGroupNotFoundException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "EndpointGroupNotFoundException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, EndpointGroupNotFoundException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class InternalServiceErrorException extends GlobalAcceleratorServiceException {
|
|
205
|
-
name = "InternalServiceErrorException";
|
|
206
|
-
$fault = "server";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "InternalServiceErrorException",
|
|
211
|
-
$fault: "server",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class InvalidArgumentException extends GlobalAcceleratorServiceException {
|
|
219
|
-
name = "InvalidArgumentException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "InvalidArgumentException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class LimitExceededException extends GlobalAcceleratorServiceException {
|
|
233
|
-
name = "LimitExceededException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
Message;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "LimitExceededException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
243
|
-
this.Message = opts.Message;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class TransactionInProgressException extends GlobalAcceleratorServiceException {
|
|
247
|
-
name = "TransactionInProgressException";
|
|
248
|
-
$fault = "client";
|
|
249
|
-
Message;
|
|
250
|
-
constructor(opts) {
|
|
251
|
-
super({
|
|
252
|
-
name: "TransactionInProgressException",
|
|
253
|
-
$fault: "client",
|
|
254
|
-
...opts,
|
|
255
|
-
});
|
|
256
|
-
Object.setPrototypeOf(this, TransactionInProgressException.prototype);
|
|
257
|
-
this.Message = opts.Message;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
class ByoipCidrNotFoundException extends GlobalAcceleratorServiceException {
|
|
261
|
-
name = "ByoipCidrNotFoundException";
|
|
262
|
-
$fault = "client";
|
|
263
|
-
Message;
|
|
264
|
-
constructor(opts) {
|
|
265
|
-
super({
|
|
266
|
-
name: "ByoipCidrNotFoundException",
|
|
267
|
-
$fault: "client",
|
|
268
|
-
...opts,
|
|
269
|
-
});
|
|
270
|
-
Object.setPrototypeOf(this, ByoipCidrNotFoundException.prototype);
|
|
271
|
-
this.Message = opts.Message;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
class IncorrectCidrStateException extends GlobalAcceleratorServiceException {
|
|
275
|
-
name = "IncorrectCidrStateException";
|
|
276
|
-
$fault = "client";
|
|
277
|
-
Message;
|
|
278
|
-
constructor(opts) {
|
|
279
|
-
super({
|
|
280
|
-
name: "IncorrectCidrStateException",
|
|
281
|
-
$fault: "client",
|
|
282
|
-
...opts,
|
|
283
|
-
});
|
|
284
|
-
Object.setPrototypeOf(this, IncorrectCidrStateException.prototype);
|
|
285
|
-
this.Message = opts.Message;
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
class AssociatedEndpointGroupFoundException extends GlobalAcceleratorServiceException {
|
|
289
|
-
name = "AssociatedEndpointGroupFoundException";
|
|
290
|
-
$fault = "client";
|
|
291
|
-
Message;
|
|
292
|
-
constructor(opts) {
|
|
293
|
-
super({
|
|
294
|
-
name: "AssociatedEndpointGroupFoundException",
|
|
295
|
-
$fault: "client",
|
|
296
|
-
...opts,
|
|
297
|
-
});
|
|
298
|
-
Object.setPrototypeOf(this, AssociatedEndpointGroupFoundException.prototype);
|
|
299
|
-
this.Message = opts.Message;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
class AssociatedListenerFoundException extends GlobalAcceleratorServiceException {
|
|
303
|
-
name = "AssociatedListenerFoundException";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
Message;
|
|
306
|
-
constructor(opts) {
|
|
307
|
-
super({
|
|
308
|
-
name: "AssociatedListenerFoundException",
|
|
309
|
-
$fault: "client",
|
|
310
|
-
...opts,
|
|
311
|
-
});
|
|
312
|
-
Object.setPrototypeOf(this, AssociatedListenerFoundException.prototype);
|
|
313
|
-
this.Message = opts.Message;
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
class AttachmentNotFoundException extends GlobalAcceleratorServiceException {
|
|
317
|
-
name = "AttachmentNotFoundException";
|
|
318
|
-
$fault = "client";
|
|
319
|
-
Message;
|
|
320
|
-
constructor(opts) {
|
|
321
|
-
super({
|
|
322
|
-
name: "AttachmentNotFoundException",
|
|
323
|
-
$fault: "client",
|
|
324
|
-
...opts,
|
|
325
|
-
});
|
|
326
|
-
Object.setPrototypeOf(this, AttachmentNotFoundException.prototype);
|
|
327
|
-
this.Message = opts.Message;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
class EndpointGroupAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
331
|
-
name = "EndpointGroupAlreadyExistsException";
|
|
332
|
-
$fault = "client";
|
|
333
|
-
Message;
|
|
334
|
-
constructor(opts) {
|
|
335
|
-
super({
|
|
336
|
-
name: "EndpointGroupAlreadyExistsException",
|
|
337
|
-
$fault: "client",
|
|
338
|
-
...opts,
|
|
339
|
-
});
|
|
340
|
-
Object.setPrototypeOf(this, EndpointGroupAlreadyExistsException.prototype);
|
|
341
|
-
this.Message = opts.Message;
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
class InvalidPortRangeException extends GlobalAcceleratorServiceException {
|
|
345
|
-
name = "InvalidPortRangeException";
|
|
346
|
-
$fault = "client";
|
|
347
|
-
Message;
|
|
348
|
-
constructor(opts) {
|
|
349
|
-
super({
|
|
350
|
-
name: "InvalidPortRangeException",
|
|
351
|
-
$fault: "client",
|
|
352
|
-
...opts,
|
|
353
|
-
});
|
|
354
|
-
Object.setPrototypeOf(this, InvalidPortRangeException.prototype);
|
|
355
|
-
this.Message = opts.Message;
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
class ListenerNotFoundException extends GlobalAcceleratorServiceException {
|
|
359
|
-
name = "ListenerNotFoundException";
|
|
360
|
-
$fault = "client";
|
|
361
|
-
Message;
|
|
362
|
-
constructor(opts) {
|
|
363
|
-
super({
|
|
364
|
-
name: "ListenerNotFoundException",
|
|
365
|
-
$fault: "client",
|
|
366
|
-
...opts,
|
|
367
|
-
});
|
|
368
|
-
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
369
|
-
this.Message = opts.Message;
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
class EndpointNotFoundException extends GlobalAcceleratorServiceException {
|
|
373
|
-
name = "EndpointNotFoundException";
|
|
374
|
-
$fault = "client";
|
|
375
|
-
Message;
|
|
376
|
-
constructor(opts) {
|
|
377
|
-
super({
|
|
378
|
-
name: "EndpointNotFoundException",
|
|
379
|
-
$fault: "client",
|
|
380
|
-
...opts,
|
|
381
|
-
});
|
|
382
|
-
Object.setPrototypeOf(this, EndpointNotFoundException.prototype);
|
|
383
|
-
this.Message = opts.Message;
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
class InvalidNextTokenException extends GlobalAcceleratorServiceException {
|
|
387
|
-
name = "InvalidNextTokenException";
|
|
388
|
-
$fault = "client";
|
|
389
|
-
Message;
|
|
390
|
-
constructor(opts) {
|
|
391
|
-
super({
|
|
392
|
-
name: "InvalidNextTokenException",
|
|
393
|
-
$fault: "client",
|
|
394
|
-
...opts,
|
|
395
|
-
});
|
|
396
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
397
|
-
this.Message = opts.Message;
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
const _A = "Accelerator";
|
|
402
|
-
const _AA = "AcceleratorArn";
|
|
403
|
-
const _AATTE = "AllowAllTrafficToEndpoint";
|
|
404
|
-
const _AAc = "AcceleratorAttributes";
|
|
405
|
-
const _AAt = "AttachmentArn";
|
|
406
|
-
const _ABC = "AdvertiseByoipCidr";
|
|
407
|
-
const _ABCR = "AdvertiseByoipCidrRequest";
|
|
408
|
-
const _ABCRd = "AdvertiseByoipCidrResponse";
|
|
409
|
-
const _ACRE = "AddCustomRoutingEndpoints";
|
|
410
|
-
const _ACRER = "AddCustomRoutingEndpointsRequest";
|
|
411
|
-
const _ACRERd = "AddCustomRoutingEndpointsResponse";
|
|
412
|
-
const _ACRT = "AllowCustomRoutingTraffic";
|
|
413
|
-
const _ACRTR = "AllowCustomRoutingTrafficRequest";
|
|
414
|
-
const _ADE = "AccessDeniedException";
|
|
415
|
-
const _AE = "AcceleratorEvent";
|
|
416
|
-
const _AEGFE = "AssociatedEndpointGroupFoundException";
|
|
417
|
-
const _AER = "AddEndpointsRequest";
|
|
418
|
-
const _AERd = "AddEndpointsResponse";
|
|
419
|
-
const _AEc = "AcceleratorEvents";
|
|
420
|
-
const _AEd = "AddEndpoints";
|
|
421
|
-
const _ALFE = "AssociatedListenerFoundException";
|
|
422
|
-
const _ANDE = "AcceleratorNotDisabledException";
|
|
423
|
-
const _ANFE = "AcceleratorNotFoundException";
|
|
424
|
-
const _ANFEt = "AttachmentNotFoundException";
|
|
425
|
-
const _AP = "AcceleratorPort";
|
|
426
|
-
const _APd = "AddPrincipals";
|
|
427
|
-
const _AR = "AddResources";
|
|
428
|
-
const _ASA = "AcceleratorSocketAddresses";
|
|
429
|
-
const _Ac = "Accelerators";
|
|
430
|
-
const _At = "Attachment";
|
|
431
|
-
const _Att = "Attachments";
|
|
432
|
-
const _BC = "ByoipCidr";
|
|
433
|
-
const _BCE = "ByoipCidrEvent";
|
|
434
|
-
const _BCEy = "ByoipCidrEvents";
|
|
435
|
-
const _BCNFE = "ByoipCidrNotFoundException";
|
|
436
|
-
const _BCy = "ByoipCidrs";
|
|
437
|
-
const _C = "Cidr";
|
|
438
|
-
const _CA = "ClientAffinity";
|
|
439
|
-
const _CAA = "CrossAccountAttachment";
|
|
440
|
-
const _CAAr = "CrossAccountAttachments";
|
|
441
|
-
const _CAC = "CidrAuthorizationContext";
|
|
442
|
-
const _CAR = "CreateAcceleratorRequest";
|
|
443
|
-
const _CARr = "CreateAcceleratorResponse";
|
|
444
|
-
const _CARro = "CrossAccountResource";
|
|
445
|
-
const _CARros = "CrossAccountResources";
|
|
446
|
-
const _CAr = "CreateAccelerator";
|
|
447
|
-
const _CCAA = "CreateCrossAccountAttachment";
|
|
448
|
-
const _CCAAR = "CreateCrossAccountAttachmentRequest";
|
|
449
|
-
const _CCAARr = "CreateCrossAccountAttachmentResponse";
|
|
450
|
-
const _CCRA = "CreateCustomRoutingAccelerator";
|
|
451
|
-
const _CCRAR = "CreateCustomRoutingAcceleratorRequest";
|
|
452
|
-
const _CCRARr = "CreateCustomRoutingAcceleratorResponse";
|
|
453
|
-
const _CCREG = "CreateCustomRoutingEndpointGroup";
|
|
454
|
-
const _CCREGR = "CreateCustomRoutingEndpointGroupRequest";
|
|
455
|
-
const _CCREGRr = "CreateCustomRoutingEndpointGroupResponse";
|
|
456
|
-
const _CCRL = "CreateCustomRoutingListener";
|
|
457
|
-
const _CCRLR = "CreateCustomRoutingListenerRequest";
|
|
458
|
-
const _CCRLRr = "CreateCustomRoutingListenerResponse";
|
|
459
|
-
const _CE = "ConflictException";
|
|
460
|
-
const _CEG = "CreateEndpointGroup";
|
|
461
|
-
const _CEGR = "CreateEndpointGroupRequest";
|
|
462
|
-
const _CEGRr = "CreateEndpointGroupResponse";
|
|
463
|
-
const _CIPPE = "ClientIPPreservationEnabled";
|
|
464
|
-
const _CL = "CreateListener";
|
|
465
|
-
const _CLR = "CreateListenerRequest";
|
|
466
|
-
const _CLRr = "CreateListenerResponse";
|
|
467
|
-
const _CRA = "CustomRoutingAccelerator";
|
|
468
|
-
const _CRAA = "CustomRoutingAcceleratorAttributes";
|
|
469
|
-
const _CRAu = "CustomRoutingAccelerators";
|
|
470
|
-
const _CRDC = "CustomRoutingDestinationConfiguration";
|
|
471
|
-
const _CRDCu = "CustomRoutingDestinationConfigurations";
|
|
472
|
-
const _CRDD = "CustomRoutingDestinationDescription";
|
|
473
|
-
const _CRDDu = "CustomRoutingDestinationDescriptions";
|
|
474
|
-
const _CREC = "CustomRoutingEndpointConfiguration";
|
|
475
|
-
const _CRECu = "CustomRoutingEndpointConfigurations";
|
|
476
|
-
const _CRED = "CustomRoutingEndpointDescription";
|
|
477
|
-
const _CREDu = "CustomRoutingEndpointDescriptions";
|
|
478
|
-
const _CREG = "CustomRoutingEndpointGroup";
|
|
479
|
-
const _CREGu = "CustomRoutingEndpointGroups";
|
|
480
|
-
const _CRL = "CustomRoutingListener";
|
|
481
|
-
const _CRLu = "CustomRoutingListeners";
|
|
482
|
-
const _CT = "CreatedTime";
|
|
483
|
-
const _DA = "DestinationAddresses";
|
|
484
|
-
const _DAA = "DescribeAcceleratorAttributes";
|
|
485
|
-
const _DAAR = "DescribeAcceleratorAttributesRequest";
|
|
486
|
-
const _DAARe = "DescribeAcceleratorAttributesResponse";
|
|
487
|
-
const _DAR = "DeleteAcceleratorRequest";
|
|
488
|
-
const _DARe = "DescribeAcceleratorRequest";
|
|
489
|
-
const _DARes = "DescribeAcceleratorResponse";
|
|
490
|
-
const _DATTE = "DenyAllTrafficToEndpoint";
|
|
491
|
-
const _DAe = "DestinationAddress";
|
|
492
|
-
const _DAel = "DeleteAccelerator";
|
|
493
|
-
const _DAes = "DescribeAccelerator";
|
|
494
|
-
const _DBC = "DeprovisionByoipCidr";
|
|
495
|
-
const _DBCR = "DeprovisionByoipCidrRequest";
|
|
496
|
-
const _DBCRe = "DeprovisionByoipCidrResponse";
|
|
497
|
-
const _DC = "DestinationConfigurations";
|
|
498
|
-
const _DCAA = "DeleteCrossAccountAttachment";
|
|
499
|
-
const _DCAAR = "DeleteCrossAccountAttachmentRequest";
|
|
500
|
-
const _DCAARe = "DescribeCrossAccountAttachmentRequest";
|
|
501
|
-
const _DCAARes = "DescribeCrossAccountAttachmentResponse";
|
|
502
|
-
const _DCAAe = "DescribeCrossAccountAttachment";
|
|
503
|
-
const _DCRA = "DeleteCustomRoutingAccelerator";
|
|
504
|
-
const _DCRAA = "DescribeCustomRoutingAcceleratorAttributes";
|
|
505
|
-
const _DCRAAR = "DescribeCustomRoutingAcceleratorAttributesRequest";
|
|
506
|
-
const _DCRAARe = "DescribeCustomRoutingAcceleratorAttributesResponse";
|
|
507
|
-
const _DCRAR = "DeleteCustomRoutingAcceleratorRequest";
|
|
508
|
-
const _DCRARe = "DescribeCustomRoutingAcceleratorRequest";
|
|
509
|
-
const _DCRARes = "DescribeCustomRoutingAcceleratorResponse";
|
|
510
|
-
const _DCRAe = "DescribeCustomRoutingAccelerator";
|
|
511
|
-
const _DCREG = "DeleteCustomRoutingEndpointGroup";
|
|
512
|
-
const _DCREGR = "DeleteCustomRoutingEndpointGroupRequest";
|
|
513
|
-
const _DCREGRe = "DescribeCustomRoutingEndpointGroupRequest";
|
|
514
|
-
const _DCREGRes = "DescribeCustomRoutingEndpointGroupResponse";
|
|
515
|
-
const _DCREGe = "DescribeCustomRoutingEndpointGroup";
|
|
516
|
-
const _DCRL = "DeleteCustomRoutingListener";
|
|
517
|
-
const _DCRLR = "DeleteCustomRoutingListenerRequest";
|
|
518
|
-
const _DCRLRe = "DescribeCustomRoutingListenerRequest";
|
|
519
|
-
const _DCRLRes = "DescribeCustomRoutingListenerResponse";
|
|
520
|
-
const _DCRLe = "DescribeCustomRoutingListener";
|
|
521
|
-
const _DCRT = "DenyCustomRoutingTraffic";
|
|
522
|
-
const _DCRTR = "DenyCustomRoutingTrafficRequest";
|
|
523
|
-
const _DD = "DestinationDescriptions";
|
|
524
|
-
const _DEG = "DeleteEndpointGroup";
|
|
525
|
-
const _DEGR = "DeleteEndpointGroupRequest";
|
|
526
|
-
const _DEGRe = "DescribeEndpointGroupRequest";
|
|
527
|
-
const _DEGRes = "DescribeEndpointGroupResponse";
|
|
528
|
-
const _DEGe = "DescribeEndpointGroup";
|
|
529
|
-
const _DL = "DeleteListener";
|
|
530
|
-
const _DLR = "DeleteListenerRequest";
|
|
531
|
-
const _DLRe = "DescribeListenerRequest";
|
|
532
|
-
const _DLRes = "DescribeListenerResponse";
|
|
533
|
-
const _DLe = "DescribeListener";
|
|
534
|
-
const _DN = "DnsName";
|
|
535
|
-
const _DP = "DestinationPorts";
|
|
536
|
-
const _DPM = "DestinationPortMapping";
|
|
537
|
-
const _DPMe = "DestinationPortMappings";
|
|
538
|
-
const _DSA = "DestinationSocketAddress";
|
|
539
|
-
const _DSDN = "DualStackDnsName";
|
|
540
|
-
const _DTS = "DestinationTrafficState";
|
|
541
|
-
const _E = "Enabled";
|
|
542
|
-
const _EAEE = "EndpointAlreadyExistsException";
|
|
543
|
-
const _EC = "EndpointConfigurations";
|
|
544
|
-
const _ECn = "EndpointConfiguration";
|
|
545
|
-
const _ED = "EndpointDescriptions";
|
|
546
|
-
const _EDn = "EndpointDescription";
|
|
547
|
-
const _EG = "EndpointGroup";
|
|
548
|
-
const _EGA = "EndpointGroupArn";
|
|
549
|
-
const _EGAEE = "EndpointGroupAlreadyExistsException";
|
|
550
|
-
const _EGNFE = "EndpointGroupNotFoundException";
|
|
551
|
-
const _EGR = "EndpointGroupRegion";
|
|
552
|
-
const _EGn = "EndpointGroups";
|
|
553
|
-
const _EI = "EndpointId";
|
|
554
|
-
const _EIn = "EndpointIdentifier";
|
|
555
|
-
const _EInd = "EndpointIds";
|
|
556
|
-
const _EIndp = "EndpointIdentifiers";
|
|
557
|
-
const _ENFE = "EndpointNotFoundException";
|
|
558
|
-
const _EP = "EndpointPort";
|
|
559
|
-
const _Ev = "Events";
|
|
560
|
-
const _FLE = "FlowLogsEnabled";
|
|
561
|
-
const _FLSB = "FlowLogsS3Bucket";
|
|
562
|
-
const _FLSP = "FlowLogsS3Prefix";
|
|
563
|
-
const _FP = "FromPort";
|
|
564
|
-
const _HCIS = "HealthCheckIntervalSeconds";
|
|
565
|
-
const _HCP = "HealthCheckPort";
|
|
566
|
-
const _HCPe = "HealthCheckProtocol";
|
|
567
|
-
const _HCPea = "HealthCheckPath";
|
|
568
|
-
const _HR = "HealthReason";
|
|
569
|
-
const _HS = "HealthState";
|
|
570
|
-
const _IA = "IpAddresses";
|
|
571
|
-
const _IAE = "InvalidArgumentException";
|
|
572
|
-
const _IAF = "IpAddressFamily";
|
|
573
|
-
const _IAT = "IpAddressType";
|
|
574
|
-
const _IAp = "IpAddress";
|
|
575
|
-
const _ICSE = "IncorrectCidrStateException";
|
|
576
|
-
const _IF = "IpFamily";
|
|
577
|
-
const _INTE = "InvalidNextTokenException";
|
|
578
|
-
const _IPRE = "InvalidPortRangeException";
|
|
579
|
-
const _IS = "IpSets";
|
|
580
|
-
const _ISEE = "InternalServiceErrorException";
|
|
581
|
-
const _ISp = "IpSet";
|
|
582
|
-
const _IT = "IdempotencyToken";
|
|
583
|
-
const _K = "Key";
|
|
584
|
-
const _L = "Listener";
|
|
585
|
-
const _LA = "ListenerArn";
|
|
586
|
-
const _LAR = "ListAcceleratorsRequest";
|
|
587
|
-
const _LARi = "ListAcceleratorsResponse";
|
|
588
|
-
const _LAi = "ListAccelerators";
|
|
589
|
-
const _LBC = "ListByoipCidrs";
|
|
590
|
-
const _LBCR = "ListByoipCidrsRequest";
|
|
591
|
-
const _LBCRi = "ListByoipCidrsResponse";
|
|
592
|
-
const _LCAA = "ListCrossAccountAttachments";
|
|
593
|
-
const _LCAAR = "ListCrossAccountAttachmentsRequest";
|
|
594
|
-
const _LCAARi = "ListCrossAccountAttachmentsResponse";
|
|
595
|
-
const _LCAR = "ListCrossAccountResources";
|
|
596
|
-
const _LCARA = "ListCrossAccountResourceAccounts";
|
|
597
|
-
const _LCARAR = "ListCrossAccountResourceAccountsRequest";
|
|
598
|
-
const _LCARARi = "ListCrossAccountResourceAccountsResponse";
|
|
599
|
-
const _LCARR = "ListCrossAccountResourcesRequest";
|
|
600
|
-
const _LCARRi = "ListCrossAccountResourcesResponse";
|
|
601
|
-
const _LCRA = "ListCustomRoutingAccelerators";
|
|
602
|
-
const _LCRAR = "ListCustomRoutingAcceleratorsRequest";
|
|
603
|
-
const _LCRARi = "ListCustomRoutingAcceleratorsResponse";
|
|
604
|
-
const _LCREG = "ListCustomRoutingEndpointGroups";
|
|
605
|
-
const _LCREGR = "ListCustomRoutingEndpointGroupsRequest";
|
|
606
|
-
const _LCREGRi = "ListCustomRoutingEndpointGroupsResponse";
|
|
607
|
-
const _LCRL = "ListCustomRoutingListeners";
|
|
608
|
-
const _LCRLR = "ListCustomRoutingListenersRequest";
|
|
609
|
-
const _LCRLRi = "ListCustomRoutingListenersResponse";
|
|
610
|
-
const _LCRPM = "ListCustomRoutingPortMappings";
|
|
611
|
-
const _LCRPMBD = "ListCustomRoutingPortMappingsByDestination";
|
|
612
|
-
const _LCRPMBDR = "ListCustomRoutingPortMappingsByDestinationRequest";
|
|
613
|
-
const _LCRPMBDRi = "ListCustomRoutingPortMappingsByDestinationResponse";
|
|
614
|
-
const _LCRPMR = "ListCustomRoutingPortMappingsRequest";
|
|
615
|
-
const _LCRPMRi = "ListCustomRoutingPortMappingsResponse";
|
|
616
|
-
const _LEE = "LimitExceededException";
|
|
617
|
-
const _LEG = "ListEndpointGroups";
|
|
618
|
-
const _LEGR = "ListEndpointGroupsRequest";
|
|
619
|
-
const _LEGRi = "ListEndpointGroupsResponse";
|
|
620
|
-
const _LL = "ListListeners";
|
|
621
|
-
const _LLR = "ListListenersRequest";
|
|
622
|
-
const _LLRi = "ListListenersResponse";
|
|
623
|
-
const _LMT = "LastModifiedTime";
|
|
624
|
-
const _LNFE = "ListenerNotFoundException";
|
|
625
|
-
const _LP = "ListenerPort";
|
|
626
|
-
const _LTFR = "ListTagsForResource";
|
|
627
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
628
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
629
|
-
const _Li = "Listeners";
|
|
630
|
-
const _M = "Message";
|
|
631
|
-
const _MR = "MaxResults";
|
|
632
|
-
const _N = "Name";
|
|
633
|
-
const _NT = "NextToken";
|
|
634
|
-
const _P = "Principals";
|
|
635
|
-
const _PBC = "ProvisionByoipCidr";
|
|
636
|
-
const _PBCR = "ProvisionByoipCidrRequest";
|
|
637
|
-
const _PBCRr = "ProvisionByoipCidrResponse";
|
|
638
|
-
const _PM = "PortMappings";
|
|
639
|
-
const _PMo = "PortMapping";
|
|
640
|
-
const _PO = "PortOverrides";
|
|
641
|
-
const _POo = "PortOverride";
|
|
642
|
-
const _PR = "PortRanges";
|
|
643
|
-
const _PRo = "PortRange";
|
|
644
|
-
const _Po = "Port";
|
|
645
|
-
const _Pr = "Protocol";
|
|
646
|
-
const _Pro = "Protocols";
|
|
647
|
-
const _R = "Resources";
|
|
648
|
-
const _RA = "ResourceArn";
|
|
649
|
-
const _RCRE = "RemoveCustomRoutingEndpoints";
|
|
650
|
-
const _RCRER = "RemoveCustomRoutingEndpointsRequest";
|
|
651
|
-
const _RE = "RemoveEndpoints";
|
|
652
|
-
const _RER = "RemoveEndpointsRequest";
|
|
653
|
-
const _ROAAI = "ResourceOwnerAwsAccountIds";
|
|
654
|
-
const _ROAAIe = "ResourceOwnerAwsAccountId";
|
|
655
|
-
const _RP = "RemovePrincipals";
|
|
656
|
-
const _RR = "RemoveResources";
|
|
657
|
-
const _Re = "Resource";
|
|
658
|
-
const _Reg = "Region";
|
|
659
|
-
const _S = "Status";
|
|
660
|
-
const _SA = "SocketAddress";
|
|
661
|
-
const _SAo = "SocketAddresses";
|
|
662
|
-
const _Si = "Signature";
|
|
663
|
-
const _St = "State";
|
|
664
|
-
const _T = "Timestamp";
|
|
665
|
-
const _TC = "ThresholdCount";
|
|
666
|
-
const _TDP = "TrafficDialPercentage";
|
|
667
|
-
const _TIPE = "TransactionInProgressException";
|
|
668
|
-
const _TK = "TagKeys";
|
|
669
|
-
const _TP = "ToPort";
|
|
670
|
-
const _TR = "TagResource";
|
|
671
|
-
const _TRR = "TagResourceRequest";
|
|
672
|
-
const _TRRa = "TagResourceResponse";
|
|
673
|
-
const _Ta = "Tags";
|
|
674
|
-
const _Tag = "Tag";
|
|
675
|
-
const _UA = "UpdateAccelerator";
|
|
676
|
-
const _UAA = "UpdateAcceleratorAttributes";
|
|
677
|
-
const _UAAR = "UpdateAcceleratorAttributesRequest";
|
|
678
|
-
const _UAARp = "UpdateAcceleratorAttributesResponse";
|
|
679
|
-
const _UAR = "UpdateAcceleratorRequest";
|
|
680
|
-
const _UARp = "UpdateAcceleratorResponse";
|
|
681
|
-
const _UCAA = "UpdateCrossAccountAttachment";
|
|
682
|
-
const _UCAAR = "UpdateCrossAccountAttachmentRequest";
|
|
683
|
-
const _UCAARp = "UpdateCrossAccountAttachmentResponse";
|
|
684
|
-
const _UCRA = "UpdateCustomRoutingAccelerator";
|
|
685
|
-
const _UCRAA = "UpdateCustomRoutingAcceleratorAttributes";
|
|
686
|
-
const _UCRAAR = "UpdateCustomRoutingAcceleratorAttributesRequest";
|
|
687
|
-
const _UCRAARp = "UpdateCustomRoutingAcceleratorAttributesResponse";
|
|
688
|
-
const _UCRAR = "UpdateCustomRoutingAcceleratorRequest";
|
|
689
|
-
const _UCRARp = "UpdateCustomRoutingAcceleratorResponse";
|
|
690
|
-
const _UCRL = "UpdateCustomRoutingListener";
|
|
691
|
-
const _UCRLR = "UpdateCustomRoutingListenerRequest";
|
|
692
|
-
const _UCRLRp = "UpdateCustomRoutingListenerResponse";
|
|
693
|
-
const _UEG = "UpdateEndpointGroup";
|
|
694
|
-
const _UEGR = "UpdateEndpointGroupRequest";
|
|
695
|
-
const _UEGRp = "UpdateEndpointGroupResponse";
|
|
696
|
-
const _UL = "UpdateListener";
|
|
697
|
-
const _ULR = "UpdateListenerRequest";
|
|
698
|
-
const _ULRp = "UpdateListenerResponse";
|
|
699
|
-
const _UR = "UntagResource";
|
|
700
|
-
const _URR = "UntagResourceRequest";
|
|
701
|
-
const _URRn = "UntagResourceResponse";
|
|
702
|
-
const _V = "Value";
|
|
703
|
-
const _W = "Weight";
|
|
704
|
-
const _WBC = "WithdrawByoipCidr";
|
|
705
|
-
const _WBCR = "WithdrawByoipCidrRequest";
|
|
706
|
-
const _WBCRi = "WithdrawByoipCidrResponse";
|
|
707
|
-
const _c = "client";
|
|
708
|
-
const _e = "error";
|
|
709
|
-
const _hE = "httpError";
|
|
710
|
-
const _s = "server";
|
|
711
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.globalaccelerator";
|
|
712
|
-
const n0 = "com.amazonaws.globalaccelerator";
|
|
713
|
-
var Accelerator$ = [3, n0, _A,
|
|
714
|
-
0,
|
|
715
|
-
[_AA, _N, _IAT, _E, _IS, _DN, _S, _CT, _LMT, _DSDN, _Ev],
|
|
716
|
-
[0, 0, 0, 2, () => IpSets, 0, 0, 4, 4, 0, () => AcceleratorEvents]
|
|
717
|
-
];
|
|
718
|
-
var AcceleratorAttributes$ = [3, n0, _AAc,
|
|
719
|
-
0,
|
|
720
|
-
[_FLE, _FLSB, _FLSP],
|
|
721
|
-
[2, 0, 0]
|
|
722
|
-
];
|
|
723
|
-
var AcceleratorEvent$ = [3, n0, _AE,
|
|
724
|
-
0,
|
|
725
|
-
[_M, _T],
|
|
726
|
-
[0, 4]
|
|
727
|
-
];
|
|
728
|
-
var AcceleratorNotDisabledException$ = [-3, n0, _ANDE,
|
|
729
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
730
|
-
[_M],
|
|
731
|
-
[0]
|
|
732
|
-
];
|
|
733
|
-
schema.TypeRegistry.for(n0).registerError(AcceleratorNotDisabledException$, AcceleratorNotDisabledException);
|
|
734
|
-
var AcceleratorNotFoundException$ = [-3, n0, _ANFE,
|
|
735
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
736
|
-
[_M],
|
|
737
|
-
[0]
|
|
738
|
-
];
|
|
739
|
-
schema.TypeRegistry.for(n0).registerError(AcceleratorNotFoundException$, AcceleratorNotFoundException);
|
|
740
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
741
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
742
|
-
[_M],
|
|
743
|
-
[0]
|
|
744
|
-
];
|
|
745
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
746
|
-
var AddCustomRoutingEndpointsRequest$ = [3, n0, _ACRER,
|
|
747
|
-
0,
|
|
748
|
-
[_EC, _EGA],
|
|
749
|
-
[() => CustomRoutingEndpointConfigurations, 0], 2
|
|
750
|
-
];
|
|
751
|
-
var AddCustomRoutingEndpointsResponse$ = [3, n0, _ACRERd,
|
|
752
|
-
0,
|
|
753
|
-
[_ED, _EGA],
|
|
754
|
-
[() => CustomRoutingEndpointDescriptions, 0]
|
|
755
|
-
];
|
|
756
|
-
var AddEndpointsRequest$ = [3, n0, _AER,
|
|
757
|
-
0,
|
|
758
|
-
[_EC, _EGA],
|
|
759
|
-
[() => EndpointConfigurations, 0], 2
|
|
760
|
-
];
|
|
761
|
-
var AddEndpointsResponse$ = [3, n0, _AERd,
|
|
762
|
-
0,
|
|
763
|
-
[_ED, _EGA],
|
|
764
|
-
[() => EndpointDescriptions, 0]
|
|
765
|
-
];
|
|
766
|
-
var AdvertiseByoipCidrRequest$ = [3, n0, _ABCR,
|
|
767
|
-
0,
|
|
768
|
-
[_C],
|
|
769
|
-
[0], 1
|
|
770
|
-
];
|
|
771
|
-
var AdvertiseByoipCidrResponse$ = [3, n0, _ABCRd,
|
|
772
|
-
0,
|
|
773
|
-
[_BC],
|
|
774
|
-
[() => ByoipCidr$]
|
|
775
|
-
];
|
|
776
|
-
var AllowCustomRoutingTrafficRequest$ = [3, n0, _ACRTR,
|
|
777
|
-
0,
|
|
778
|
-
[_EGA, _EI, _DA, _DP, _AATTE],
|
|
779
|
-
[0, 0, 64 | 0, 64 | 1, 2], 2
|
|
780
|
-
];
|
|
781
|
-
var AssociatedEndpointGroupFoundException$ = [-3, n0, _AEGFE,
|
|
782
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
783
|
-
[_M],
|
|
784
|
-
[0]
|
|
785
|
-
];
|
|
786
|
-
schema.TypeRegistry.for(n0).registerError(AssociatedEndpointGroupFoundException$, AssociatedEndpointGroupFoundException);
|
|
787
|
-
var AssociatedListenerFoundException$ = [-3, n0, _ALFE,
|
|
788
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
789
|
-
[_M],
|
|
790
|
-
[0]
|
|
791
|
-
];
|
|
792
|
-
schema.TypeRegistry.for(n0).registerError(AssociatedListenerFoundException$, AssociatedListenerFoundException);
|
|
793
|
-
var Attachment$ = [3, n0, _At,
|
|
794
|
-
0,
|
|
795
|
-
[_AAt, _N, _P, _R, _LMT, _CT],
|
|
796
|
-
[0, 0, 64 | 0, () => Resources, 4, 4]
|
|
797
|
-
];
|
|
798
|
-
var AttachmentNotFoundException$ = [-3, n0, _ANFEt,
|
|
799
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
800
|
-
[_M],
|
|
801
|
-
[0]
|
|
802
|
-
];
|
|
803
|
-
schema.TypeRegistry.for(n0).registerError(AttachmentNotFoundException$, AttachmentNotFoundException);
|
|
804
|
-
var ByoipCidr$ = [3, n0, _BC,
|
|
805
|
-
0,
|
|
806
|
-
[_C, _St, _Ev],
|
|
807
|
-
[0, 0, () => ByoipCidrEvents]
|
|
808
|
-
];
|
|
809
|
-
var ByoipCidrEvent$ = [3, n0, _BCE,
|
|
810
|
-
0,
|
|
811
|
-
[_M, _T],
|
|
812
|
-
[0, 4]
|
|
813
|
-
];
|
|
814
|
-
var ByoipCidrNotFoundException$ = [-3, n0, _BCNFE,
|
|
815
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
816
|
-
[_M],
|
|
817
|
-
[0]
|
|
818
|
-
];
|
|
819
|
-
schema.TypeRegistry.for(n0).registerError(ByoipCidrNotFoundException$, ByoipCidrNotFoundException);
|
|
820
|
-
var CidrAuthorizationContext$ = [3, n0, _CAC,
|
|
821
|
-
0,
|
|
822
|
-
[_M, _Si],
|
|
823
|
-
[0, 0], 2
|
|
824
|
-
];
|
|
825
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
826
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
827
|
-
[_M],
|
|
828
|
-
[0]
|
|
829
|
-
];
|
|
830
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
831
|
-
var CreateAcceleratorRequest$ = [3, n0, _CAR,
|
|
832
|
-
0,
|
|
833
|
-
[_N, _IAT, _IA, _E, _IT, _Ta],
|
|
834
|
-
[0, 0, 64 | 0, 2, [0, 4], () => Tags], 1
|
|
835
|
-
];
|
|
836
|
-
var CreateAcceleratorResponse$ = [3, n0, _CARr,
|
|
837
|
-
0,
|
|
838
|
-
[_A],
|
|
839
|
-
[() => Accelerator$]
|
|
840
|
-
];
|
|
841
|
-
var CreateCrossAccountAttachmentRequest$ = [3, n0, _CCAAR,
|
|
842
|
-
0,
|
|
843
|
-
[_N, _P, _R, _IT, _Ta],
|
|
844
|
-
[0, 64 | 0, () => Resources, [0, 4], () => Tags], 1
|
|
845
|
-
];
|
|
846
|
-
var CreateCrossAccountAttachmentResponse$ = [3, n0, _CCAARr,
|
|
847
|
-
0,
|
|
848
|
-
[_CAA],
|
|
849
|
-
[() => Attachment$]
|
|
850
|
-
];
|
|
851
|
-
var CreateCustomRoutingAcceleratorRequest$ = [3, n0, _CCRAR,
|
|
852
|
-
0,
|
|
853
|
-
[_N, _IAT, _IA, _E, _IT, _Ta],
|
|
854
|
-
[0, 0, 64 | 0, 2, [0, 4], () => Tags], 1
|
|
855
|
-
];
|
|
856
|
-
var CreateCustomRoutingAcceleratorResponse$ = [3, n0, _CCRARr,
|
|
857
|
-
0,
|
|
858
|
-
[_A],
|
|
859
|
-
[() => CustomRoutingAccelerator$]
|
|
860
|
-
];
|
|
861
|
-
var CreateCustomRoutingEndpointGroupRequest$ = [3, n0, _CCREGR,
|
|
862
|
-
0,
|
|
863
|
-
[_LA, _EGR, _DC, _IT],
|
|
864
|
-
[0, 0, () => CustomRoutingDestinationConfigurations, [0, 4]], 3
|
|
865
|
-
];
|
|
866
|
-
var CreateCustomRoutingEndpointGroupResponse$ = [3, n0, _CCREGRr,
|
|
867
|
-
0,
|
|
868
|
-
[_EG],
|
|
869
|
-
[() => CustomRoutingEndpointGroup$]
|
|
870
|
-
];
|
|
871
|
-
var CreateCustomRoutingListenerRequest$ = [3, n0, _CCRLR,
|
|
872
|
-
0,
|
|
873
|
-
[_AA, _PR, _IT],
|
|
874
|
-
[0, () => PortRanges, [0, 4]], 2
|
|
875
|
-
];
|
|
876
|
-
var CreateCustomRoutingListenerResponse$ = [3, n0, _CCRLRr,
|
|
877
|
-
0,
|
|
878
|
-
[_L],
|
|
879
|
-
[() => CustomRoutingListener$]
|
|
880
|
-
];
|
|
881
|
-
var CreateEndpointGroupRequest$ = [3, n0, _CEGR,
|
|
882
|
-
0,
|
|
883
|
-
[_LA, _EGR, _EC, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _IT, _PO],
|
|
884
|
-
[0, 0, () => EndpointConfigurations, 1, 1, 0, 0, 1, 1, [0, 4], () => PortOverrides], 2
|
|
885
|
-
];
|
|
886
|
-
var CreateEndpointGroupResponse$ = [3, n0, _CEGRr,
|
|
887
|
-
0,
|
|
888
|
-
[_EG],
|
|
889
|
-
[() => EndpointGroup$]
|
|
890
|
-
];
|
|
891
|
-
var CreateListenerRequest$ = [3, n0, _CLR,
|
|
892
|
-
0,
|
|
893
|
-
[_AA, _PR, _Pr, _CA, _IT],
|
|
894
|
-
[0, () => PortRanges, 0, 0, [0, 4]], 3
|
|
895
|
-
];
|
|
896
|
-
var CreateListenerResponse$ = [3, n0, _CLRr,
|
|
897
|
-
0,
|
|
898
|
-
[_L],
|
|
899
|
-
[() => Listener$]
|
|
900
|
-
];
|
|
901
|
-
var CrossAccountResource$ = [3, n0, _CARro,
|
|
902
|
-
0,
|
|
903
|
-
[_EI, _C, _AAt],
|
|
904
|
-
[0, 0, 0]
|
|
905
|
-
];
|
|
906
|
-
var CustomRoutingAccelerator$ = [3, n0, _CRA,
|
|
907
|
-
0,
|
|
908
|
-
[_AA, _N, _IAT, _E, _IS, _DN, _S, _CT, _LMT],
|
|
909
|
-
[0, 0, 0, 2, () => IpSets, 0, 0, 4, 4]
|
|
910
|
-
];
|
|
911
|
-
var CustomRoutingAcceleratorAttributes$ = [3, n0, _CRAA,
|
|
912
|
-
0,
|
|
913
|
-
[_FLE, _FLSB, _FLSP],
|
|
914
|
-
[2, 0, 0]
|
|
915
|
-
];
|
|
916
|
-
var CustomRoutingDestinationConfiguration$ = [3, n0, _CRDC,
|
|
917
|
-
0,
|
|
918
|
-
[_FP, _TP, _Pro],
|
|
919
|
-
[1, 1, 64 | 0], 3
|
|
920
|
-
];
|
|
921
|
-
var CustomRoutingDestinationDescription$ = [3, n0, _CRDD,
|
|
922
|
-
0,
|
|
923
|
-
[_FP, _TP, _Pro],
|
|
924
|
-
[1, 1, 64 | 0]
|
|
925
|
-
];
|
|
926
|
-
var CustomRoutingEndpointConfiguration$ = [3, n0, _CREC,
|
|
927
|
-
0,
|
|
928
|
-
[_EI, _AAt],
|
|
929
|
-
[0, 0]
|
|
930
|
-
];
|
|
931
|
-
var CustomRoutingEndpointDescription$ = [3, n0, _CRED,
|
|
932
|
-
0,
|
|
933
|
-
[_EI],
|
|
934
|
-
[0]
|
|
935
|
-
];
|
|
936
|
-
var CustomRoutingEndpointGroup$ = [3, n0, _CREG,
|
|
937
|
-
0,
|
|
938
|
-
[_EGA, _EGR, _DD, _ED],
|
|
939
|
-
[0, 0, () => CustomRoutingDestinationDescriptions, () => CustomRoutingEndpointDescriptions]
|
|
940
|
-
];
|
|
941
|
-
var CustomRoutingListener$ = [3, n0, _CRL,
|
|
942
|
-
0,
|
|
943
|
-
[_LA, _PR],
|
|
944
|
-
[0, () => PortRanges]
|
|
945
|
-
];
|
|
946
|
-
var DeleteAcceleratorRequest$ = [3, n0, _DAR,
|
|
947
|
-
0,
|
|
948
|
-
[_AA],
|
|
949
|
-
[0], 1
|
|
950
|
-
];
|
|
951
|
-
var DeleteCrossAccountAttachmentRequest$ = [3, n0, _DCAAR,
|
|
952
|
-
0,
|
|
953
|
-
[_AAt],
|
|
954
|
-
[0], 1
|
|
955
|
-
];
|
|
956
|
-
var DeleteCustomRoutingAcceleratorRequest$ = [3, n0, _DCRAR,
|
|
957
|
-
0,
|
|
958
|
-
[_AA],
|
|
959
|
-
[0], 1
|
|
960
|
-
];
|
|
961
|
-
var DeleteCustomRoutingEndpointGroupRequest$ = [3, n0, _DCREGR,
|
|
962
|
-
0,
|
|
963
|
-
[_EGA],
|
|
964
|
-
[0], 1
|
|
965
|
-
];
|
|
966
|
-
var DeleteCustomRoutingListenerRequest$ = [3, n0, _DCRLR,
|
|
967
|
-
0,
|
|
968
|
-
[_LA],
|
|
969
|
-
[0], 1
|
|
970
|
-
];
|
|
971
|
-
var DeleteEndpointGroupRequest$ = [3, n0, _DEGR,
|
|
972
|
-
0,
|
|
973
|
-
[_EGA],
|
|
974
|
-
[0], 1
|
|
975
|
-
];
|
|
976
|
-
var DeleteListenerRequest$ = [3, n0, _DLR,
|
|
977
|
-
0,
|
|
978
|
-
[_LA],
|
|
979
|
-
[0], 1
|
|
980
|
-
];
|
|
981
|
-
var DenyCustomRoutingTrafficRequest$ = [3, n0, _DCRTR,
|
|
982
|
-
0,
|
|
983
|
-
[_EGA, _EI, _DA, _DP, _DATTE],
|
|
984
|
-
[0, 0, 64 | 0, 64 | 1, 2], 2
|
|
985
|
-
];
|
|
986
|
-
var DeprovisionByoipCidrRequest$ = [3, n0, _DBCR,
|
|
987
|
-
0,
|
|
988
|
-
[_C],
|
|
989
|
-
[0], 1
|
|
990
|
-
];
|
|
991
|
-
var DeprovisionByoipCidrResponse$ = [3, n0, _DBCRe,
|
|
992
|
-
0,
|
|
993
|
-
[_BC],
|
|
994
|
-
[() => ByoipCidr$]
|
|
995
|
-
];
|
|
996
|
-
var DescribeAcceleratorAttributesRequest$ = [3, n0, _DAAR,
|
|
997
|
-
0,
|
|
998
|
-
[_AA],
|
|
999
|
-
[0], 1
|
|
1000
|
-
];
|
|
1001
|
-
var DescribeAcceleratorAttributesResponse$ = [3, n0, _DAARe,
|
|
1002
|
-
0,
|
|
1003
|
-
[_AAc],
|
|
1004
|
-
[() => AcceleratorAttributes$]
|
|
1005
|
-
];
|
|
1006
|
-
var DescribeAcceleratorRequest$ = [3, n0, _DARe,
|
|
1007
|
-
0,
|
|
1008
|
-
[_AA],
|
|
1009
|
-
[0], 1
|
|
1010
|
-
];
|
|
1011
|
-
var DescribeAcceleratorResponse$ = [3, n0, _DARes,
|
|
1012
|
-
0,
|
|
1013
|
-
[_A],
|
|
1014
|
-
[() => Accelerator$]
|
|
1015
|
-
];
|
|
1016
|
-
var DescribeCrossAccountAttachmentRequest$ = [3, n0, _DCAARe,
|
|
1017
|
-
0,
|
|
1018
|
-
[_AAt],
|
|
1019
|
-
[0], 1
|
|
1020
|
-
];
|
|
1021
|
-
var DescribeCrossAccountAttachmentResponse$ = [3, n0, _DCAARes,
|
|
1022
|
-
0,
|
|
1023
|
-
[_CAA],
|
|
1024
|
-
[() => Attachment$]
|
|
1025
|
-
];
|
|
1026
|
-
var DescribeCustomRoutingAcceleratorAttributesRequest$ = [3, n0, _DCRAAR,
|
|
1027
|
-
0,
|
|
1028
|
-
[_AA],
|
|
1029
|
-
[0], 1
|
|
1030
|
-
];
|
|
1031
|
-
var DescribeCustomRoutingAcceleratorAttributesResponse$ = [3, n0, _DCRAARe,
|
|
1032
|
-
0,
|
|
1033
|
-
[_AAc],
|
|
1034
|
-
[() => CustomRoutingAcceleratorAttributes$]
|
|
1035
|
-
];
|
|
1036
|
-
var DescribeCustomRoutingAcceleratorRequest$ = [3, n0, _DCRARe,
|
|
1037
|
-
0,
|
|
1038
|
-
[_AA],
|
|
1039
|
-
[0], 1
|
|
1040
|
-
];
|
|
1041
|
-
var DescribeCustomRoutingAcceleratorResponse$ = [3, n0, _DCRARes,
|
|
1042
|
-
0,
|
|
1043
|
-
[_A],
|
|
1044
|
-
[() => CustomRoutingAccelerator$]
|
|
1045
|
-
];
|
|
1046
|
-
var DescribeCustomRoutingEndpointGroupRequest$ = [3, n0, _DCREGRe,
|
|
1047
|
-
0,
|
|
1048
|
-
[_EGA],
|
|
1049
|
-
[0], 1
|
|
1050
|
-
];
|
|
1051
|
-
var DescribeCustomRoutingEndpointGroupResponse$ = [3, n0, _DCREGRes,
|
|
1052
|
-
0,
|
|
1053
|
-
[_EG],
|
|
1054
|
-
[() => CustomRoutingEndpointGroup$]
|
|
1055
|
-
];
|
|
1056
|
-
var DescribeCustomRoutingListenerRequest$ = [3, n0, _DCRLRe,
|
|
1057
|
-
0,
|
|
1058
|
-
[_LA],
|
|
1059
|
-
[0], 1
|
|
1060
|
-
];
|
|
1061
|
-
var DescribeCustomRoutingListenerResponse$ = [3, n0, _DCRLRes,
|
|
1062
|
-
0,
|
|
1063
|
-
[_L],
|
|
1064
|
-
[() => CustomRoutingListener$]
|
|
1065
|
-
];
|
|
1066
|
-
var DescribeEndpointGroupRequest$ = [3, n0, _DEGRe,
|
|
1067
|
-
0,
|
|
1068
|
-
[_EGA],
|
|
1069
|
-
[0], 1
|
|
1070
|
-
];
|
|
1071
|
-
var DescribeEndpointGroupResponse$ = [3, n0, _DEGRes,
|
|
1072
|
-
0,
|
|
1073
|
-
[_EG],
|
|
1074
|
-
[() => EndpointGroup$]
|
|
1075
|
-
];
|
|
1076
|
-
var DescribeListenerRequest$ = [3, n0, _DLRe,
|
|
1077
|
-
0,
|
|
1078
|
-
[_LA],
|
|
1079
|
-
[0], 1
|
|
1080
|
-
];
|
|
1081
|
-
var DescribeListenerResponse$ = [3, n0, _DLRes,
|
|
1082
|
-
0,
|
|
1083
|
-
[_L],
|
|
1084
|
-
[() => Listener$]
|
|
1085
|
-
];
|
|
1086
|
-
var DestinationPortMapping$ = [3, n0, _DPM,
|
|
1087
|
-
0,
|
|
1088
|
-
[_AA, _ASA, _EGA, _EI, _EGR, _DSA, _IAT, _DTS],
|
|
1089
|
-
[0, () => SocketAddresses, 0, 0, 0, () => SocketAddress$, 0, 0]
|
|
1090
|
-
];
|
|
1091
|
-
var EndpointAlreadyExistsException$ = [-3, n0, _EAEE,
|
|
1092
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1093
|
-
[_M],
|
|
1094
|
-
[0]
|
|
1095
|
-
];
|
|
1096
|
-
schema.TypeRegistry.for(n0).registerError(EndpointAlreadyExistsException$, EndpointAlreadyExistsException);
|
|
1097
|
-
var EndpointConfiguration$ = [3, n0, _ECn,
|
|
1098
|
-
0,
|
|
1099
|
-
[_EI, _W, _CIPPE, _AAt],
|
|
1100
|
-
[0, 1, 2, 0]
|
|
1101
|
-
];
|
|
1102
|
-
var EndpointDescription$ = [3, n0, _EDn,
|
|
1103
|
-
0,
|
|
1104
|
-
[_EI, _W, _HS, _HR, _CIPPE],
|
|
1105
|
-
[0, 1, 0, 0, 2]
|
|
1106
|
-
];
|
|
1107
|
-
var EndpointGroup$ = [3, n0, _EG,
|
|
1108
|
-
0,
|
|
1109
|
-
[_EGA, _EGR, _ED, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _PO],
|
|
1110
|
-
[0, 0, () => EndpointDescriptions, 1, 1, 0, 0, 1, 1, () => PortOverrides]
|
|
1111
|
-
];
|
|
1112
|
-
var EndpointGroupAlreadyExistsException$ = [-3, n0, _EGAEE,
|
|
1113
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1114
|
-
[_M],
|
|
1115
|
-
[0]
|
|
1116
|
-
];
|
|
1117
|
-
schema.TypeRegistry.for(n0).registerError(EndpointGroupAlreadyExistsException$, EndpointGroupAlreadyExistsException);
|
|
1118
|
-
var EndpointGroupNotFoundException$ = [-3, n0, _EGNFE,
|
|
1119
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1120
|
-
[_M],
|
|
1121
|
-
[0]
|
|
1122
|
-
];
|
|
1123
|
-
schema.TypeRegistry.for(n0).registerError(EndpointGroupNotFoundException$, EndpointGroupNotFoundException);
|
|
1124
|
-
var EndpointIdentifier$ = [3, n0, _EIn,
|
|
1125
|
-
0,
|
|
1126
|
-
[_EI, _CIPPE],
|
|
1127
|
-
[0, 2], 1
|
|
1128
|
-
];
|
|
1129
|
-
var EndpointNotFoundException$ = [-3, n0, _ENFE,
|
|
1130
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1131
|
-
[_M],
|
|
1132
|
-
[0]
|
|
1133
|
-
];
|
|
1134
|
-
schema.TypeRegistry.for(n0).registerError(EndpointNotFoundException$, EndpointNotFoundException);
|
|
1135
|
-
var IncorrectCidrStateException$ = [-3, n0, _ICSE,
|
|
1136
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1137
|
-
[_M],
|
|
1138
|
-
[0]
|
|
1139
|
-
];
|
|
1140
|
-
schema.TypeRegistry.for(n0).registerError(IncorrectCidrStateException$, IncorrectCidrStateException);
|
|
1141
|
-
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
1142
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1143
|
-
[_M],
|
|
1144
|
-
[0]
|
|
1145
|
-
];
|
|
1146
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
1147
|
-
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
1148
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1149
|
-
[_M],
|
|
1150
|
-
[0]
|
|
1151
|
-
];
|
|
1152
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
1153
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1154
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1155
|
-
[_M],
|
|
1156
|
-
[0]
|
|
1157
|
-
];
|
|
1158
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1159
|
-
var InvalidPortRangeException$ = [-3, n0, _IPRE,
|
|
1160
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1161
|
-
[_M],
|
|
1162
|
-
[0]
|
|
1163
|
-
];
|
|
1164
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPortRangeException$, InvalidPortRangeException);
|
|
1165
|
-
var IpSet$ = [3, n0, _ISp,
|
|
1166
|
-
0,
|
|
1167
|
-
[_IF, _IA, _IAF],
|
|
1168
|
-
[0, 64 | 0, 0]
|
|
1169
|
-
];
|
|
1170
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1171
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1172
|
-
[_M],
|
|
1173
|
-
[0]
|
|
1174
|
-
];
|
|
1175
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1176
|
-
var ListAcceleratorsRequest$ = [3, n0, _LAR,
|
|
1177
|
-
0,
|
|
1178
|
-
[_MR, _NT],
|
|
1179
|
-
[1, 0]
|
|
1180
|
-
];
|
|
1181
|
-
var ListAcceleratorsResponse$ = [3, n0, _LARi,
|
|
1182
|
-
0,
|
|
1183
|
-
[_Ac, _NT],
|
|
1184
|
-
[() => Accelerators, 0]
|
|
1185
|
-
];
|
|
1186
|
-
var ListByoipCidrsRequest$ = [3, n0, _LBCR,
|
|
1187
|
-
0,
|
|
1188
|
-
[_MR, _NT],
|
|
1189
|
-
[1, 0]
|
|
1190
|
-
];
|
|
1191
|
-
var ListByoipCidrsResponse$ = [3, n0, _LBCRi,
|
|
1192
|
-
0,
|
|
1193
|
-
[_BCy, _NT],
|
|
1194
|
-
[() => ByoipCidrs, 0]
|
|
1195
|
-
];
|
|
1196
|
-
var ListCrossAccountAttachmentsRequest$ = [3, n0, _LCAAR,
|
|
1197
|
-
0,
|
|
1198
|
-
[_MR, _NT],
|
|
1199
|
-
[1, 0]
|
|
1200
|
-
];
|
|
1201
|
-
var ListCrossAccountAttachmentsResponse$ = [3, n0, _LCAARi,
|
|
1202
|
-
0,
|
|
1203
|
-
[_CAAr, _NT],
|
|
1204
|
-
[() => Attachments, 0]
|
|
1205
|
-
];
|
|
1206
|
-
var ListCrossAccountResourceAccountsRequest$ = [3, n0, _LCARAR,
|
|
1207
|
-
0,
|
|
1208
|
-
[],
|
|
1209
|
-
[]
|
|
1210
|
-
];
|
|
1211
|
-
var ListCrossAccountResourceAccountsResponse$ = [3, n0, _LCARARi,
|
|
1212
|
-
0,
|
|
1213
|
-
[_ROAAI],
|
|
1214
|
-
[64 | 0]
|
|
1215
|
-
];
|
|
1216
|
-
var ListCrossAccountResourcesRequest$ = [3, n0, _LCARR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_ROAAIe, _AA, _MR, _NT],
|
|
1219
|
-
[0, 0, 1, 0], 1
|
|
1220
|
-
];
|
|
1221
|
-
var ListCrossAccountResourcesResponse$ = [3, n0, _LCARRi,
|
|
1222
|
-
0,
|
|
1223
|
-
[_CARros, _NT],
|
|
1224
|
-
[() => CrossAccountResources, 0]
|
|
1225
|
-
];
|
|
1226
|
-
var ListCustomRoutingAcceleratorsRequest$ = [3, n0, _LCRAR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_MR, _NT],
|
|
1229
|
-
[1, 0]
|
|
1230
|
-
];
|
|
1231
|
-
var ListCustomRoutingAcceleratorsResponse$ = [3, n0, _LCRARi,
|
|
1232
|
-
0,
|
|
1233
|
-
[_Ac, _NT],
|
|
1234
|
-
[() => CustomRoutingAccelerators, 0]
|
|
1235
|
-
];
|
|
1236
|
-
var ListCustomRoutingEndpointGroupsRequest$ = [3, n0, _LCREGR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_LA, _MR, _NT],
|
|
1239
|
-
[0, 1, 0], 1
|
|
1240
|
-
];
|
|
1241
|
-
var ListCustomRoutingEndpointGroupsResponse$ = [3, n0, _LCREGRi,
|
|
1242
|
-
0,
|
|
1243
|
-
[_EGn, _NT],
|
|
1244
|
-
[() => CustomRoutingEndpointGroups, 0]
|
|
1245
|
-
];
|
|
1246
|
-
var ListCustomRoutingListenersRequest$ = [3, n0, _LCRLR,
|
|
1247
|
-
0,
|
|
1248
|
-
[_AA, _MR, _NT],
|
|
1249
|
-
[0, 1, 0], 1
|
|
1250
|
-
];
|
|
1251
|
-
var ListCustomRoutingListenersResponse$ = [3, n0, _LCRLRi,
|
|
1252
|
-
0,
|
|
1253
|
-
[_Li, _NT],
|
|
1254
|
-
[() => CustomRoutingListeners, 0]
|
|
1255
|
-
];
|
|
1256
|
-
var ListCustomRoutingPortMappingsByDestinationRequest$ = [3, n0, _LCRPMBDR,
|
|
1257
|
-
0,
|
|
1258
|
-
[_EI, _DAe, _MR, _NT],
|
|
1259
|
-
[0, 0, 1, 0], 2
|
|
1260
|
-
];
|
|
1261
|
-
var ListCustomRoutingPortMappingsByDestinationResponse$ = [3, n0, _LCRPMBDRi,
|
|
1262
|
-
0,
|
|
1263
|
-
[_DPMe, _NT],
|
|
1264
|
-
[() => DestinationPortMappings, 0]
|
|
1265
|
-
];
|
|
1266
|
-
var ListCustomRoutingPortMappingsRequest$ = [3, n0, _LCRPMR,
|
|
1267
|
-
0,
|
|
1268
|
-
[_AA, _EGA, _MR, _NT],
|
|
1269
|
-
[0, 0, 1, 0], 1
|
|
1270
|
-
];
|
|
1271
|
-
var ListCustomRoutingPortMappingsResponse$ = [3, n0, _LCRPMRi,
|
|
1272
|
-
0,
|
|
1273
|
-
[_PM, _NT],
|
|
1274
|
-
[() => PortMappings, 0]
|
|
1275
|
-
];
|
|
1276
|
-
var ListEndpointGroupsRequest$ = [3, n0, _LEGR,
|
|
1277
|
-
0,
|
|
1278
|
-
[_LA, _MR, _NT],
|
|
1279
|
-
[0, 1, 0], 1
|
|
1280
|
-
];
|
|
1281
|
-
var ListEndpointGroupsResponse$ = [3, n0, _LEGRi,
|
|
1282
|
-
0,
|
|
1283
|
-
[_EGn, _NT],
|
|
1284
|
-
[() => EndpointGroups, 0]
|
|
1285
|
-
];
|
|
1286
|
-
var Listener$ = [3, n0, _L,
|
|
1287
|
-
0,
|
|
1288
|
-
[_LA, _PR, _Pr, _CA],
|
|
1289
|
-
[0, () => PortRanges, 0, 0]
|
|
1290
|
-
];
|
|
1291
|
-
var ListenerNotFoundException$ = [-3, n0, _LNFE,
|
|
1292
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1293
|
-
[_M],
|
|
1294
|
-
[0]
|
|
1295
|
-
];
|
|
1296
|
-
schema.TypeRegistry.for(n0).registerError(ListenerNotFoundException$, ListenerNotFoundException);
|
|
1297
|
-
var ListListenersRequest$ = [3, n0, _LLR,
|
|
1298
|
-
0,
|
|
1299
|
-
[_AA, _MR, _NT],
|
|
1300
|
-
[0, 1, 0], 1
|
|
1301
|
-
];
|
|
1302
|
-
var ListListenersResponse$ = [3, n0, _LLRi,
|
|
1303
|
-
0,
|
|
1304
|
-
[_Li, _NT],
|
|
1305
|
-
[() => Listeners, 0]
|
|
1306
|
-
];
|
|
1307
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1308
|
-
0,
|
|
1309
|
-
[_RA],
|
|
1310
|
-
[0], 1
|
|
1311
|
-
];
|
|
1312
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1313
|
-
0,
|
|
1314
|
-
[_Ta],
|
|
1315
|
-
[() => Tags]
|
|
1316
|
-
];
|
|
1317
|
-
var PortMapping$ = [3, n0, _PMo,
|
|
1318
|
-
0,
|
|
1319
|
-
[_AP, _EGA, _EI, _DSA, _Pro, _DTS],
|
|
1320
|
-
[1, 0, 0, () => SocketAddress$, 64 | 0, 0]
|
|
1321
|
-
];
|
|
1322
|
-
var PortOverride$ = [3, n0, _POo,
|
|
1323
|
-
0,
|
|
1324
|
-
[_LP, _EP],
|
|
1325
|
-
[1, 1]
|
|
1326
|
-
];
|
|
1327
|
-
var PortRange$ = [3, n0, _PRo,
|
|
1328
|
-
0,
|
|
1329
|
-
[_FP, _TP],
|
|
1330
|
-
[1, 1]
|
|
1331
|
-
];
|
|
1332
|
-
var ProvisionByoipCidrRequest$ = [3, n0, _PBCR,
|
|
1333
|
-
0,
|
|
1334
|
-
[_C, _CAC],
|
|
1335
|
-
[0, () => CidrAuthorizationContext$], 2
|
|
1336
|
-
];
|
|
1337
|
-
var ProvisionByoipCidrResponse$ = [3, n0, _PBCRr,
|
|
1338
|
-
0,
|
|
1339
|
-
[_BC],
|
|
1340
|
-
[() => ByoipCidr$]
|
|
1341
|
-
];
|
|
1342
|
-
var RemoveCustomRoutingEndpointsRequest$ = [3, n0, _RCRER,
|
|
1343
|
-
0,
|
|
1344
|
-
[_EInd, _EGA],
|
|
1345
|
-
[64 | 0, 0], 2
|
|
1346
|
-
];
|
|
1347
|
-
var RemoveEndpointsRequest$ = [3, n0, _RER,
|
|
1348
|
-
0,
|
|
1349
|
-
[_EIndp, _EGA],
|
|
1350
|
-
[() => EndpointIdentifiers, 0], 2
|
|
1351
|
-
];
|
|
1352
|
-
var Resource$ = [3, n0, _Re,
|
|
1353
|
-
0,
|
|
1354
|
-
[_EI, _C, _Reg],
|
|
1355
|
-
[0, 0, 0]
|
|
1356
|
-
];
|
|
1357
|
-
var SocketAddress$ = [3, n0, _SA,
|
|
1358
|
-
0,
|
|
1359
|
-
[_IAp, _Po],
|
|
1360
|
-
[0, 1]
|
|
1361
|
-
];
|
|
1362
|
-
var Tag$ = [3, n0, _Tag,
|
|
1363
|
-
0,
|
|
1364
|
-
[_K, _V],
|
|
1365
|
-
[0, 0], 2
|
|
1366
|
-
];
|
|
1367
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1368
|
-
0,
|
|
1369
|
-
[_RA, _Ta],
|
|
1370
|
-
[0, () => Tags], 2
|
|
1371
|
-
];
|
|
1372
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1373
|
-
0,
|
|
1374
|
-
[],
|
|
1375
|
-
[]
|
|
1376
|
-
];
|
|
1377
|
-
var TransactionInProgressException$ = [-3, n0, _TIPE,
|
|
1378
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1379
|
-
[_M],
|
|
1380
|
-
[0]
|
|
1381
|
-
];
|
|
1382
|
-
schema.TypeRegistry.for(n0).registerError(TransactionInProgressException$, TransactionInProgressException);
|
|
1383
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1384
|
-
0,
|
|
1385
|
-
[_RA, _TK],
|
|
1386
|
-
[0, 64 | 0], 2
|
|
1387
|
-
];
|
|
1388
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1389
|
-
0,
|
|
1390
|
-
[],
|
|
1391
|
-
[]
|
|
1392
|
-
];
|
|
1393
|
-
var UpdateAcceleratorAttributesRequest$ = [3, n0, _UAAR,
|
|
1394
|
-
0,
|
|
1395
|
-
[_AA, _FLE, _FLSB, _FLSP],
|
|
1396
|
-
[0, 2, 0, 0], 1
|
|
1397
|
-
];
|
|
1398
|
-
var UpdateAcceleratorAttributesResponse$ = [3, n0, _UAARp,
|
|
1399
|
-
0,
|
|
1400
|
-
[_AAc],
|
|
1401
|
-
[() => AcceleratorAttributes$]
|
|
1402
|
-
];
|
|
1403
|
-
var UpdateAcceleratorRequest$ = [3, n0, _UAR,
|
|
1404
|
-
0,
|
|
1405
|
-
[_AA, _N, _IAT, _IA, _E],
|
|
1406
|
-
[0, 0, 0, 64 | 0, 2], 1
|
|
1407
|
-
];
|
|
1408
|
-
var UpdateAcceleratorResponse$ = [3, n0, _UARp,
|
|
1409
|
-
0,
|
|
1410
|
-
[_A],
|
|
1411
|
-
[() => Accelerator$]
|
|
1412
|
-
];
|
|
1413
|
-
var UpdateCrossAccountAttachmentRequest$ = [3, n0, _UCAAR,
|
|
1414
|
-
0,
|
|
1415
|
-
[_AAt, _N, _APd, _RP, _AR, _RR],
|
|
1416
|
-
[0, 0, 64 | 0, 64 | 0, () => Resources, () => Resources], 1
|
|
1417
|
-
];
|
|
1418
|
-
var UpdateCrossAccountAttachmentResponse$ = [3, n0, _UCAARp,
|
|
1419
|
-
0,
|
|
1420
|
-
[_CAA],
|
|
1421
|
-
[() => Attachment$]
|
|
1422
|
-
];
|
|
1423
|
-
var UpdateCustomRoutingAcceleratorAttributesRequest$ = [3, n0, _UCRAAR,
|
|
1424
|
-
0,
|
|
1425
|
-
[_AA, _FLE, _FLSB, _FLSP],
|
|
1426
|
-
[0, 2, 0, 0], 1
|
|
1427
|
-
];
|
|
1428
|
-
var UpdateCustomRoutingAcceleratorAttributesResponse$ = [3, n0, _UCRAARp,
|
|
1429
|
-
0,
|
|
1430
|
-
[_AAc],
|
|
1431
|
-
[() => CustomRoutingAcceleratorAttributes$]
|
|
1432
|
-
];
|
|
1433
|
-
var UpdateCustomRoutingAcceleratorRequest$ = [3, n0, _UCRAR,
|
|
1434
|
-
0,
|
|
1435
|
-
[_AA, _N, _IAT, _IA, _E],
|
|
1436
|
-
[0, 0, 0, 64 | 0, 2], 1
|
|
1437
|
-
];
|
|
1438
|
-
var UpdateCustomRoutingAcceleratorResponse$ = [3, n0, _UCRARp,
|
|
1439
|
-
0,
|
|
1440
|
-
[_A],
|
|
1441
|
-
[() => CustomRoutingAccelerator$]
|
|
1442
|
-
];
|
|
1443
|
-
var UpdateCustomRoutingListenerRequest$ = [3, n0, _UCRLR,
|
|
1444
|
-
0,
|
|
1445
|
-
[_LA, _PR],
|
|
1446
|
-
[0, () => PortRanges], 2
|
|
1447
|
-
];
|
|
1448
|
-
var UpdateCustomRoutingListenerResponse$ = [3, n0, _UCRLRp,
|
|
1449
|
-
0,
|
|
1450
|
-
[_L],
|
|
1451
|
-
[() => CustomRoutingListener$]
|
|
1452
|
-
];
|
|
1453
|
-
var UpdateEndpointGroupRequest$ = [3, n0, _UEGR,
|
|
1454
|
-
0,
|
|
1455
|
-
[_EGA, _EC, _TDP, _HCP, _HCPe, _HCPea, _HCIS, _TC, _PO],
|
|
1456
|
-
[0, () => EndpointConfigurations, 1, 1, 0, 0, 1, 1, () => PortOverrides], 1
|
|
1457
|
-
];
|
|
1458
|
-
var UpdateEndpointGroupResponse$ = [3, n0, _UEGRp,
|
|
1459
|
-
0,
|
|
1460
|
-
[_EG],
|
|
1461
|
-
[() => EndpointGroup$]
|
|
1462
|
-
];
|
|
1463
|
-
var UpdateListenerRequest$ = [3, n0, _ULR,
|
|
1464
|
-
0,
|
|
1465
|
-
[_LA, _PR, _Pr, _CA],
|
|
1466
|
-
[0, () => PortRanges, 0, 0], 1
|
|
1467
|
-
];
|
|
1468
|
-
var UpdateListenerResponse$ = [3, n0, _ULRp,
|
|
1469
|
-
0,
|
|
1470
|
-
[_L],
|
|
1471
|
-
[() => Listener$]
|
|
1472
|
-
];
|
|
1473
|
-
var WithdrawByoipCidrRequest$ = [3, n0, _WBCR,
|
|
1474
|
-
0,
|
|
1475
|
-
[_C],
|
|
1476
|
-
[0], 1
|
|
1477
|
-
];
|
|
1478
|
-
var WithdrawByoipCidrResponse$ = [3, n0, _WBCRi,
|
|
1479
|
-
0,
|
|
1480
|
-
[_BC],
|
|
1481
|
-
[() => ByoipCidr$]
|
|
1482
|
-
];
|
|
1483
|
-
var __Unit = "unit";
|
|
1484
|
-
var GlobalAcceleratorServiceException$ = [-3, _sm, "GlobalAcceleratorServiceException", 0, [], []];
|
|
1485
|
-
schema.TypeRegistry.for(_sm).registerError(GlobalAcceleratorServiceException$, GlobalAcceleratorServiceException);
|
|
1486
|
-
var AcceleratorEvents = [1, n0, _AEc,
|
|
1487
|
-
0, () => AcceleratorEvent$
|
|
1488
|
-
];
|
|
1489
|
-
var Accelerators = [1, n0, _Ac,
|
|
1490
|
-
0, () => Accelerator$
|
|
1491
|
-
];
|
|
1492
|
-
var Attachments = [1, n0, _Att,
|
|
1493
|
-
0, () => Attachment$
|
|
1494
|
-
];
|
|
1495
|
-
var ByoipCidrEvents = [1, n0, _BCEy,
|
|
1496
|
-
0, () => ByoipCidrEvent$
|
|
1497
|
-
];
|
|
1498
|
-
var ByoipCidrs = [1, n0, _BCy,
|
|
1499
|
-
0, () => ByoipCidr$
|
|
1500
|
-
];
|
|
1501
|
-
var CrossAccountResources = [1, n0, _CARros,
|
|
1502
|
-
0, () => CrossAccountResource$
|
|
1503
|
-
];
|
|
1504
|
-
var CustomRoutingAccelerators = [1, n0, _CRAu,
|
|
1505
|
-
0, () => CustomRoutingAccelerator$
|
|
1506
|
-
];
|
|
1507
|
-
var CustomRoutingDestinationConfigurations = [1, n0, _CRDCu,
|
|
1508
|
-
0, () => CustomRoutingDestinationConfiguration$
|
|
1509
|
-
];
|
|
1510
|
-
var CustomRoutingDestinationDescriptions = [1, n0, _CRDDu,
|
|
1511
|
-
0, () => CustomRoutingDestinationDescription$
|
|
1512
|
-
];
|
|
1513
|
-
var CustomRoutingEndpointConfigurations = [1, n0, _CRECu,
|
|
1514
|
-
0, () => CustomRoutingEndpointConfiguration$
|
|
1515
|
-
];
|
|
1516
|
-
var CustomRoutingEndpointDescriptions = [1, n0, _CREDu,
|
|
1517
|
-
0, () => CustomRoutingEndpointDescription$
|
|
1518
|
-
];
|
|
1519
|
-
var CustomRoutingEndpointGroups = [1, n0, _CREGu,
|
|
1520
|
-
0, () => CustomRoutingEndpointGroup$
|
|
1521
|
-
];
|
|
1522
|
-
var CustomRoutingListeners = [1, n0, _CRLu,
|
|
1523
|
-
0, () => CustomRoutingListener$
|
|
1524
|
-
];
|
|
1525
|
-
var DestinationPortMappings = [1, n0, _DPMe,
|
|
1526
|
-
0, () => DestinationPortMapping$
|
|
1527
|
-
];
|
|
1528
|
-
var EndpointConfigurations = [1, n0, _EC,
|
|
1529
|
-
0, () => EndpointConfiguration$
|
|
1530
|
-
];
|
|
1531
|
-
var EndpointDescriptions = [1, n0, _ED,
|
|
1532
|
-
0, () => EndpointDescription$
|
|
1533
|
-
];
|
|
1534
|
-
var EndpointGroups = [1, n0, _EGn,
|
|
1535
|
-
0, () => EndpointGroup$
|
|
1536
|
-
];
|
|
1537
|
-
var EndpointIdentifiers = [1, n0, _EIndp,
|
|
1538
|
-
0, () => EndpointIdentifier$
|
|
1539
|
-
];
|
|
1540
|
-
var IpSets = [1, n0, _IS,
|
|
1541
|
-
0, () => IpSet$
|
|
1542
|
-
];
|
|
1543
|
-
var Listeners = [1, n0, _Li,
|
|
1544
|
-
0, () => Listener$
|
|
1545
|
-
];
|
|
1546
|
-
var PortMappings = [1, n0, _PM,
|
|
1547
|
-
0, () => PortMapping$
|
|
1548
|
-
];
|
|
1549
|
-
var PortOverrides = [1, n0, _PO,
|
|
1550
|
-
0, () => PortOverride$
|
|
1551
|
-
];
|
|
1552
|
-
var PortRanges = [1, n0, _PR,
|
|
1553
|
-
0, () => PortRange$
|
|
1554
|
-
];
|
|
1555
|
-
var Resources = [1, n0, _R,
|
|
1556
|
-
0, () => Resource$
|
|
1557
|
-
];
|
|
1558
|
-
var SocketAddresses = [1, n0, _SAo,
|
|
1559
|
-
0, () => SocketAddress$
|
|
1560
|
-
];
|
|
1561
|
-
var Tags = [1, n0, _Ta,
|
|
1562
|
-
0, () => Tag$
|
|
1563
|
-
];
|
|
1564
|
-
var AddCustomRoutingEndpoints$ = [9, n0, _ACRE,
|
|
1565
|
-
0, () => AddCustomRoutingEndpointsRequest$, () => AddCustomRoutingEndpointsResponse$
|
|
1566
|
-
];
|
|
1567
|
-
var AddEndpoints$ = [9, n0, _AEd,
|
|
1568
|
-
0, () => AddEndpointsRequest$, () => AddEndpointsResponse$
|
|
1569
|
-
];
|
|
1570
|
-
var AdvertiseByoipCidr$ = [9, n0, _ABC,
|
|
1571
|
-
0, () => AdvertiseByoipCidrRequest$, () => AdvertiseByoipCidrResponse$
|
|
1572
|
-
];
|
|
1573
|
-
var AllowCustomRoutingTraffic$ = [9, n0, _ACRT,
|
|
1574
|
-
0, () => AllowCustomRoutingTrafficRequest$, () => __Unit
|
|
1575
|
-
];
|
|
1576
|
-
var CreateAccelerator$ = [9, n0, _CAr,
|
|
1577
|
-
0, () => CreateAcceleratorRequest$, () => CreateAcceleratorResponse$
|
|
1578
|
-
];
|
|
1579
|
-
var CreateCrossAccountAttachment$ = [9, n0, _CCAA,
|
|
1580
|
-
0, () => CreateCrossAccountAttachmentRequest$, () => CreateCrossAccountAttachmentResponse$
|
|
1581
|
-
];
|
|
1582
|
-
var CreateCustomRoutingAccelerator$ = [9, n0, _CCRA,
|
|
1583
|
-
0, () => CreateCustomRoutingAcceleratorRequest$, () => CreateCustomRoutingAcceleratorResponse$
|
|
1584
|
-
];
|
|
1585
|
-
var CreateCustomRoutingEndpointGroup$ = [9, n0, _CCREG,
|
|
1586
|
-
0, () => CreateCustomRoutingEndpointGroupRequest$, () => CreateCustomRoutingEndpointGroupResponse$
|
|
1587
|
-
];
|
|
1588
|
-
var CreateCustomRoutingListener$ = [9, n0, _CCRL,
|
|
1589
|
-
0, () => CreateCustomRoutingListenerRequest$, () => CreateCustomRoutingListenerResponse$
|
|
1590
|
-
];
|
|
1591
|
-
var CreateEndpointGroup$ = [9, n0, _CEG,
|
|
1592
|
-
0, () => CreateEndpointGroupRequest$, () => CreateEndpointGroupResponse$
|
|
1593
|
-
];
|
|
1594
|
-
var CreateListener$ = [9, n0, _CL,
|
|
1595
|
-
0, () => CreateListenerRequest$, () => CreateListenerResponse$
|
|
1596
|
-
];
|
|
1597
|
-
var DeleteAccelerator$ = [9, n0, _DAel,
|
|
1598
|
-
0, () => DeleteAcceleratorRequest$, () => __Unit
|
|
1599
|
-
];
|
|
1600
|
-
var DeleteCrossAccountAttachment$ = [9, n0, _DCAA,
|
|
1601
|
-
0, () => DeleteCrossAccountAttachmentRequest$, () => __Unit
|
|
1602
|
-
];
|
|
1603
|
-
var DeleteCustomRoutingAccelerator$ = [9, n0, _DCRA,
|
|
1604
|
-
0, () => DeleteCustomRoutingAcceleratorRequest$, () => __Unit
|
|
1605
|
-
];
|
|
1606
|
-
var DeleteCustomRoutingEndpointGroup$ = [9, n0, _DCREG,
|
|
1607
|
-
0, () => DeleteCustomRoutingEndpointGroupRequest$, () => __Unit
|
|
1608
|
-
];
|
|
1609
|
-
var DeleteCustomRoutingListener$ = [9, n0, _DCRL,
|
|
1610
|
-
0, () => DeleteCustomRoutingListenerRequest$, () => __Unit
|
|
1611
|
-
];
|
|
1612
|
-
var DeleteEndpointGroup$ = [9, n0, _DEG,
|
|
1613
|
-
0, () => DeleteEndpointGroupRequest$, () => __Unit
|
|
1614
|
-
];
|
|
1615
|
-
var DeleteListener$ = [9, n0, _DL,
|
|
1616
|
-
0, () => DeleteListenerRequest$, () => __Unit
|
|
1617
|
-
];
|
|
1618
|
-
var DenyCustomRoutingTraffic$ = [9, n0, _DCRT,
|
|
1619
|
-
0, () => DenyCustomRoutingTrafficRequest$, () => __Unit
|
|
1620
|
-
];
|
|
1621
|
-
var DeprovisionByoipCidr$ = [9, n0, _DBC,
|
|
1622
|
-
0, () => DeprovisionByoipCidrRequest$, () => DeprovisionByoipCidrResponse$
|
|
1623
|
-
];
|
|
1624
|
-
var DescribeAccelerator$ = [9, n0, _DAes,
|
|
1625
|
-
0, () => DescribeAcceleratorRequest$, () => DescribeAcceleratorResponse$
|
|
1626
|
-
];
|
|
1627
|
-
var DescribeAcceleratorAttributes$ = [9, n0, _DAA,
|
|
1628
|
-
0, () => DescribeAcceleratorAttributesRequest$, () => DescribeAcceleratorAttributesResponse$
|
|
1629
|
-
];
|
|
1630
|
-
var DescribeCrossAccountAttachment$ = [9, n0, _DCAAe,
|
|
1631
|
-
0, () => DescribeCrossAccountAttachmentRequest$, () => DescribeCrossAccountAttachmentResponse$
|
|
1632
|
-
];
|
|
1633
|
-
var DescribeCustomRoutingAccelerator$ = [9, n0, _DCRAe,
|
|
1634
|
-
0, () => DescribeCustomRoutingAcceleratorRequest$, () => DescribeCustomRoutingAcceleratorResponse$
|
|
1635
|
-
];
|
|
1636
|
-
var DescribeCustomRoutingAcceleratorAttributes$ = [9, n0, _DCRAA,
|
|
1637
|
-
0, () => DescribeCustomRoutingAcceleratorAttributesRequest$, () => DescribeCustomRoutingAcceleratorAttributesResponse$
|
|
1638
|
-
];
|
|
1639
|
-
var DescribeCustomRoutingEndpointGroup$ = [9, n0, _DCREGe,
|
|
1640
|
-
0, () => DescribeCustomRoutingEndpointGroupRequest$, () => DescribeCustomRoutingEndpointGroupResponse$
|
|
1641
|
-
];
|
|
1642
|
-
var DescribeCustomRoutingListener$ = [9, n0, _DCRLe,
|
|
1643
|
-
0, () => DescribeCustomRoutingListenerRequest$, () => DescribeCustomRoutingListenerResponse$
|
|
1644
|
-
];
|
|
1645
|
-
var DescribeEndpointGroup$ = [9, n0, _DEGe,
|
|
1646
|
-
0, () => DescribeEndpointGroupRequest$, () => DescribeEndpointGroupResponse$
|
|
1647
|
-
];
|
|
1648
|
-
var DescribeListener$ = [9, n0, _DLe,
|
|
1649
|
-
0, () => DescribeListenerRequest$, () => DescribeListenerResponse$
|
|
1650
|
-
];
|
|
1651
|
-
var ListAccelerators$ = [9, n0, _LAi,
|
|
1652
|
-
0, () => ListAcceleratorsRequest$, () => ListAcceleratorsResponse$
|
|
1653
|
-
];
|
|
1654
|
-
var ListByoipCidrs$ = [9, n0, _LBC,
|
|
1655
|
-
0, () => ListByoipCidrsRequest$, () => ListByoipCidrsResponse$
|
|
1656
|
-
];
|
|
1657
|
-
var ListCrossAccountAttachments$ = [9, n0, _LCAA,
|
|
1658
|
-
0, () => ListCrossAccountAttachmentsRequest$, () => ListCrossAccountAttachmentsResponse$
|
|
1659
|
-
];
|
|
1660
|
-
var ListCrossAccountResourceAccounts$ = [9, n0, _LCARA,
|
|
1661
|
-
0, () => ListCrossAccountResourceAccountsRequest$, () => ListCrossAccountResourceAccountsResponse$
|
|
1662
|
-
];
|
|
1663
|
-
var ListCrossAccountResources$ = [9, n0, _LCAR,
|
|
1664
|
-
0, () => ListCrossAccountResourcesRequest$, () => ListCrossAccountResourcesResponse$
|
|
1665
|
-
];
|
|
1666
|
-
var ListCustomRoutingAccelerators$ = [9, n0, _LCRA,
|
|
1667
|
-
0, () => ListCustomRoutingAcceleratorsRequest$, () => ListCustomRoutingAcceleratorsResponse$
|
|
1668
|
-
];
|
|
1669
|
-
var ListCustomRoutingEndpointGroups$ = [9, n0, _LCREG,
|
|
1670
|
-
0, () => ListCustomRoutingEndpointGroupsRequest$, () => ListCustomRoutingEndpointGroupsResponse$
|
|
1671
|
-
];
|
|
1672
|
-
var ListCustomRoutingListeners$ = [9, n0, _LCRL,
|
|
1673
|
-
0, () => ListCustomRoutingListenersRequest$, () => ListCustomRoutingListenersResponse$
|
|
1674
|
-
];
|
|
1675
|
-
var ListCustomRoutingPortMappings$ = [9, n0, _LCRPM,
|
|
1676
|
-
0, () => ListCustomRoutingPortMappingsRequest$, () => ListCustomRoutingPortMappingsResponse$
|
|
1677
|
-
];
|
|
1678
|
-
var ListCustomRoutingPortMappingsByDestination$ = [9, n0, _LCRPMBD,
|
|
1679
|
-
0, () => ListCustomRoutingPortMappingsByDestinationRequest$, () => ListCustomRoutingPortMappingsByDestinationResponse$
|
|
1680
|
-
];
|
|
1681
|
-
var ListEndpointGroups$ = [9, n0, _LEG,
|
|
1682
|
-
0, () => ListEndpointGroupsRequest$, () => ListEndpointGroupsResponse$
|
|
1683
|
-
];
|
|
1684
|
-
var ListListeners$ = [9, n0, _LL,
|
|
1685
|
-
0, () => ListListenersRequest$, () => ListListenersResponse$
|
|
1686
|
-
];
|
|
1687
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1688
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1689
|
-
];
|
|
1690
|
-
var ProvisionByoipCidr$ = [9, n0, _PBC,
|
|
1691
|
-
0, () => ProvisionByoipCidrRequest$, () => ProvisionByoipCidrResponse$
|
|
1692
|
-
];
|
|
1693
|
-
var RemoveCustomRoutingEndpoints$ = [9, n0, _RCRE,
|
|
1694
|
-
0, () => RemoveCustomRoutingEndpointsRequest$, () => __Unit
|
|
1695
|
-
];
|
|
1696
|
-
var RemoveEndpoints$ = [9, n0, _RE,
|
|
1697
|
-
0, () => RemoveEndpointsRequest$, () => __Unit
|
|
1698
|
-
];
|
|
1699
|
-
var TagResource$ = [9, n0, _TR,
|
|
1700
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1701
|
-
];
|
|
1702
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1703
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1704
|
-
];
|
|
1705
|
-
var UpdateAccelerator$ = [9, n0, _UA,
|
|
1706
|
-
0, () => UpdateAcceleratorRequest$, () => UpdateAcceleratorResponse$
|
|
1707
|
-
];
|
|
1708
|
-
var UpdateAcceleratorAttributes$ = [9, n0, _UAA,
|
|
1709
|
-
0, () => UpdateAcceleratorAttributesRequest$, () => UpdateAcceleratorAttributesResponse$
|
|
1710
|
-
];
|
|
1711
|
-
var UpdateCrossAccountAttachment$ = [9, n0, _UCAA,
|
|
1712
|
-
0, () => UpdateCrossAccountAttachmentRequest$, () => UpdateCrossAccountAttachmentResponse$
|
|
1713
|
-
];
|
|
1714
|
-
var UpdateCustomRoutingAccelerator$ = [9, n0, _UCRA,
|
|
1715
|
-
0, () => UpdateCustomRoutingAcceleratorRequest$, () => UpdateCustomRoutingAcceleratorResponse$
|
|
1716
|
-
];
|
|
1717
|
-
var UpdateCustomRoutingAcceleratorAttributes$ = [9, n0, _UCRAA,
|
|
1718
|
-
0, () => UpdateCustomRoutingAcceleratorAttributesRequest$, () => UpdateCustomRoutingAcceleratorAttributesResponse$
|
|
1719
|
-
];
|
|
1720
|
-
var UpdateCustomRoutingListener$ = [9, n0, _UCRL,
|
|
1721
|
-
0, () => UpdateCustomRoutingListenerRequest$, () => UpdateCustomRoutingListenerResponse$
|
|
1722
|
-
];
|
|
1723
|
-
var UpdateEndpointGroup$ = [9, n0, _UEG,
|
|
1724
|
-
0, () => UpdateEndpointGroupRequest$, () => UpdateEndpointGroupResponse$
|
|
1725
|
-
];
|
|
1726
|
-
var UpdateListener$ = [9, n0, _UL,
|
|
1727
|
-
0, () => UpdateListenerRequest$, () => UpdateListenerResponse$
|
|
1728
|
-
];
|
|
1729
|
-
var WithdrawByoipCidr$ = [9, n0, _WBC,
|
|
1730
|
-
0, () => WithdrawByoipCidrRequest$, () => WithdrawByoipCidrResponse$
|
|
1731
|
-
];
|
|
1732
|
-
|
|
1733
116
|
class AddCustomRoutingEndpointsCommand extends smithyClient.Command
|
|
1734
117
|
.classBuilder()
|
|
1735
118
|
.ep(commonParams)
|
|
@@ -1738,7 +121,7 @@ class AddCustomRoutingEndpointsCommand extends smithyClient.Command
|
|
|
1738
121
|
})
|
|
1739
122
|
.s("GlobalAccelerator_V20180706", "AddCustomRoutingEndpoints", {})
|
|
1740
123
|
.n("GlobalAcceleratorClient", "AddCustomRoutingEndpointsCommand")
|
|
1741
|
-
.sc(AddCustomRoutingEndpoints$)
|
|
124
|
+
.sc(schemas_0.AddCustomRoutingEndpoints$)
|
|
1742
125
|
.build() {
|
|
1743
126
|
}
|
|
1744
127
|
|
|
@@ -1750,7 +133,7 @@ class AddEndpointsCommand extends smithyClient.Command
|
|
|
1750
133
|
})
|
|
1751
134
|
.s("GlobalAccelerator_V20180706", "AddEndpoints", {})
|
|
1752
135
|
.n("GlobalAcceleratorClient", "AddEndpointsCommand")
|
|
1753
|
-
.sc(AddEndpoints$)
|
|
136
|
+
.sc(schemas_0.AddEndpoints$)
|
|
1754
137
|
.build() {
|
|
1755
138
|
}
|
|
1756
139
|
|
|
@@ -1762,7 +145,7 @@ class AdvertiseByoipCidrCommand extends smithyClient.Command
|
|
|
1762
145
|
})
|
|
1763
146
|
.s("GlobalAccelerator_V20180706", "AdvertiseByoipCidr", {})
|
|
1764
147
|
.n("GlobalAcceleratorClient", "AdvertiseByoipCidrCommand")
|
|
1765
|
-
.sc(AdvertiseByoipCidr$)
|
|
148
|
+
.sc(schemas_0.AdvertiseByoipCidr$)
|
|
1766
149
|
.build() {
|
|
1767
150
|
}
|
|
1768
151
|
|
|
@@ -1774,7 +157,7 @@ class AllowCustomRoutingTrafficCommand extends smithyClient.Command
|
|
|
1774
157
|
})
|
|
1775
158
|
.s("GlobalAccelerator_V20180706", "AllowCustomRoutingTraffic", {})
|
|
1776
159
|
.n("GlobalAcceleratorClient", "AllowCustomRoutingTrafficCommand")
|
|
1777
|
-
.sc(AllowCustomRoutingTraffic$)
|
|
160
|
+
.sc(schemas_0.AllowCustomRoutingTraffic$)
|
|
1778
161
|
.build() {
|
|
1779
162
|
}
|
|
1780
163
|
|
|
@@ -1786,7 +169,7 @@ class CreateAcceleratorCommand extends smithyClient.Command
|
|
|
1786
169
|
})
|
|
1787
170
|
.s("GlobalAccelerator_V20180706", "CreateAccelerator", {})
|
|
1788
171
|
.n("GlobalAcceleratorClient", "CreateAcceleratorCommand")
|
|
1789
|
-
.sc(CreateAccelerator$)
|
|
172
|
+
.sc(schemas_0.CreateAccelerator$)
|
|
1790
173
|
.build() {
|
|
1791
174
|
}
|
|
1792
175
|
|
|
@@ -1798,7 +181,7 @@ class CreateCrossAccountAttachmentCommand extends smithyClient.Command
|
|
|
1798
181
|
})
|
|
1799
182
|
.s("GlobalAccelerator_V20180706", "CreateCrossAccountAttachment", {})
|
|
1800
183
|
.n("GlobalAcceleratorClient", "CreateCrossAccountAttachmentCommand")
|
|
1801
|
-
.sc(CreateCrossAccountAttachment$)
|
|
184
|
+
.sc(schemas_0.CreateCrossAccountAttachment$)
|
|
1802
185
|
.build() {
|
|
1803
186
|
}
|
|
1804
187
|
|
|
@@ -1810,7 +193,7 @@ class CreateCustomRoutingAcceleratorCommand extends smithyClient.Command
|
|
|
1810
193
|
})
|
|
1811
194
|
.s("GlobalAccelerator_V20180706", "CreateCustomRoutingAccelerator", {})
|
|
1812
195
|
.n("GlobalAcceleratorClient", "CreateCustomRoutingAcceleratorCommand")
|
|
1813
|
-
.sc(CreateCustomRoutingAccelerator$)
|
|
196
|
+
.sc(schemas_0.CreateCustomRoutingAccelerator$)
|
|
1814
197
|
.build() {
|
|
1815
198
|
}
|
|
1816
199
|
|
|
@@ -1822,7 +205,7 @@ class CreateCustomRoutingEndpointGroupCommand extends smithyClient.Command
|
|
|
1822
205
|
})
|
|
1823
206
|
.s("GlobalAccelerator_V20180706", "CreateCustomRoutingEndpointGroup", {})
|
|
1824
207
|
.n("GlobalAcceleratorClient", "CreateCustomRoutingEndpointGroupCommand")
|
|
1825
|
-
.sc(CreateCustomRoutingEndpointGroup$)
|
|
208
|
+
.sc(schemas_0.CreateCustomRoutingEndpointGroup$)
|
|
1826
209
|
.build() {
|
|
1827
210
|
}
|
|
1828
211
|
|
|
@@ -1834,7 +217,7 @@ class CreateCustomRoutingListenerCommand extends smithyClient.Command
|
|
|
1834
217
|
})
|
|
1835
218
|
.s("GlobalAccelerator_V20180706", "CreateCustomRoutingListener", {})
|
|
1836
219
|
.n("GlobalAcceleratorClient", "CreateCustomRoutingListenerCommand")
|
|
1837
|
-
.sc(CreateCustomRoutingListener$)
|
|
220
|
+
.sc(schemas_0.CreateCustomRoutingListener$)
|
|
1838
221
|
.build() {
|
|
1839
222
|
}
|
|
1840
223
|
|
|
@@ -1846,7 +229,7 @@ class CreateEndpointGroupCommand extends smithyClient.Command
|
|
|
1846
229
|
})
|
|
1847
230
|
.s("GlobalAccelerator_V20180706", "CreateEndpointGroup", {})
|
|
1848
231
|
.n("GlobalAcceleratorClient", "CreateEndpointGroupCommand")
|
|
1849
|
-
.sc(CreateEndpointGroup$)
|
|
232
|
+
.sc(schemas_0.CreateEndpointGroup$)
|
|
1850
233
|
.build() {
|
|
1851
234
|
}
|
|
1852
235
|
|
|
@@ -1858,7 +241,7 @@ class CreateListenerCommand extends smithyClient.Command
|
|
|
1858
241
|
})
|
|
1859
242
|
.s("GlobalAccelerator_V20180706", "CreateListener", {})
|
|
1860
243
|
.n("GlobalAcceleratorClient", "CreateListenerCommand")
|
|
1861
|
-
.sc(CreateListener$)
|
|
244
|
+
.sc(schemas_0.CreateListener$)
|
|
1862
245
|
.build() {
|
|
1863
246
|
}
|
|
1864
247
|
|
|
@@ -1870,7 +253,7 @@ class DeleteAcceleratorCommand extends smithyClient.Command
|
|
|
1870
253
|
})
|
|
1871
254
|
.s("GlobalAccelerator_V20180706", "DeleteAccelerator", {})
|
|
1872
255
|
.n("GlobalAcceleratorClient", "DeleteAcceleratorCommand")
|
|
1873
|
-
.sc(DeleteAccelerator$)
|
|
256
|
+
.sc(schemas_0.DeleteAccelerator$)
|
|
1874
257
|
.build() {
|
|
1875
258
|
}
|
|
1876
259
|
|
|
@@ -1882,7 +265,7 @@ class DeleteCrossAccountAttachmentCommand extends smithyClient.Command
|
|
|
1882
265
|
})
|
|
1883
266
|
.s("GlobalAccelerator_V20180706", "DeleteCrossAccountAttachment", {})
|
|
1884
267
|
.n("GlobalAcceleratorClient", "DeleteCrossAccountAttachmentCommand")
|
|
1885
|
-
.sc(DeleteCrossAccountAttachment$)
|
|
268
|
+
.sc(schemas_0.DeleteCrossAccountAttachment$)
|
|
1886
269
|
.build() {
|
|
1887
270
|
}
|
|
1888
271
|
|
|
@@ -1894,7 +277,7 @@ class DeleteCustomRoutingAcceleratorCommand extends smithyClient.Command
|
|
|
1894
277
|
})
|
|
1895
278
|
.s("GlobalAccelerator_V20180706", "DeleteCustomRoutingAccelerator", {})
|
|
1896
279
|
.n("GlobalAcceleratorClient", "DeleteCustomRoutingAcceleratorCommand")
|
|
1897
|
-
.sc(DeleteCustomRoutingAccelerator$)
|
|
280
|
+
.sc(schemas_0.DeleteCustomRoutingAccelerator$)
|
|
1898
281
|
.build() {
|
|
1899
282
|
}
|
|
1900
283
|
|
|
@@ -1906,7 +289,7 @@ class DeleteCustomRoutingEndpointGroupCommand extends smithyClient.Command
|
|
|
1906
289
|
})
|
|
1907
290
|
.s("GlobalAccelerator_V20180706", "DeleteCustomRoutingEndpointGroup", {})
|
|
1908
291
|
.n("GlobalAcceleratorClient", "DeleteCustomRoutingEndpointGroupCommand")
|
|
1909
|
-
.sc(DeleteCustomRoutingEndpointGroup$)
|
|
292
|
+
.sc(schemas_0.DeleteCustomRoutingEndpointGroup$)
|
|
1910
293
|
.build() {
|
|
1911
294
|
}
|
|
1912
295
|
|
|
@@ -1918,7 +301,7 @@ class DeleteCustomRoutingListenerCommand extends smithyClient.Command
|
|
|
1918
301
|
})
|
|
1919
302
|
.s("GlobalAccelerator_V20180706", "DeleteCustomRoutingListener", {})
|
|
1920
303
|
.n("GlobalAcceleratorClient", "DeleteCustomRoutingListenerCommand")
|
|
1921
|
-
.sc(DeleteCustomRoutingListener$)
|
|
304
|
+
.sc(schemas_0.DeleteCustomRoutingListener$)
|
|
1922
305
|
.build() {
|
|
1923
306
|
}
|
|
1924
307
|
|
|
@@ -1930,7 +313,7 @@ class DeleteEndpointGroupCommand extends smithyClient.Command
|
|
|
1930
313
|
})
|
|
1931
314
|
.s("GlobalAccelerator_V20180706", "DeleteEndpointGroup", {})
|
|
1932
315
|
.n("GlobalAcceleratorClient", "DeleteEndpointGroupCommand")
|
|
1933
|
-
.sc(DeleteEndpointGroup$)
|
|
316
|
+
.sc(schemas_0.DeleteEndpointGroup$)
|
|
1934
317
|
.build() {
|
|
1935
318
|
}
|
|
1936
319
|
|
|
@@ -1942,7 +325,7 @@ class DeleteListenerCommand extends smithyClient.Command
|
|
|
1942
325
|
})
|
|
1943
326
|
.s("GlobalAccelerator_V20180706", "DeleteListener", {})
|
|
1944
327
|
.n("GlobalAcceleratorClient", "DeleteListenerCommand")
|
|
1945
|
-
.sc(DeleteListener$)
|
|
328
|
+
.sc(schemas_0.DeleteListener$)
|
|
1946
329
|
.build() {
|
|
1947
330
|
}
|
|
1948
331
|
|
|
@@ -1954,7 +337,7 @@ class DenyCustomRoutingTrafficCommand extends smithyClient.Command
|
|
|
1954
337
|
})
|
|
1955
338
|
.s("GlobalAccelerator_V20180706", "DenyCustomRoutingTraffic", {})
|
|
1956
339
|
.n("GlobalAcceleratorClient", "DenyCustomRoutingTrafficCommand")
|
|
1957
|
-
.sc(DenyCustomRoutingTraffic$)
|
|
340
|
+
.sc(schemas_0.DenyCustomRoutingTraffic$)
|
|
1958
341
|
.build() {
|
|
1959
342
|
}
|
|
1960
343
|
|
|
@@ -1966,7 +349,7 @@ class DeprovisionByoipCidrCommand extends smithyClient.Command
|
|
|
1966
349
|
})
|
|
1967
350
|
.s("GlobalAccelerator_V20180706", "DeprovisionByoipCidr", {})
|
|
1968
351
|
.n("GlobalAcceleratorClient", "DeprovisionByoipCidrCommand")
|
|
1969
|
-
.sc(DeprovisionByoipCidr$)
|
|
352
|
+
.sc(schemas_0.DeprovisionByoipCidr$)
|
|
1970
353
|
.build() {
|
|
1971
354
|
}
|
|
1972
355
|
|
|
@@ -1978,7 +361,7 @@ class DescribeAcceleratorAttributesCommand extends smithyClient.Command
|
|
|
1978
361
|
})
|
|
1979
362
|
.s("GlobalAccelerator_V20180706", "DescribeAcceleratorAttributes", {})
|
|
1980
363
|
.n("GlobalAcceleratorClient", "DescribeAcceleratorAttributesCommand")
|
|
1981
|
-
.sc(DescribeAcceleratorAttributes$)
|
|
364
|
+
.sc(schemas_0.DescribeAcceleratorAttributes$)
|
|
1982
365
|
.build() {
|
|
1983
366
|
}
|
|
1984
367
|
|
|
@@ -1990,7 +373,7 @@ class DescribeAcceleratorCommand extends smithyClient.Command
|
|
|
1990
373
|
})
|
|
1991
374
|
.s("GlobalAccelerator_V20180706", "DescribeAccelerator", {})
|
|
1992
375
|
.n("GlobalAcceleratorClient", "DescribeAcceleratorCommand")
|
|
1993
|
-
.sc(DescribeAccelerator$)
|
|
376
|
+
.sc(schemas_0.DescribeAccelerator$)
|
|
1994
377
|
.build() {
|
|
1995
378
|
}
|
|
1996
379
|
|
|
@@ -2002,7 +385,7 @@ class DescribeCrossAccountAttachmentCommand extends smithyClient.Command
|
|
|
2002
385
|
})
|
|
2003
386
|
.s("GlobalAccelerator_V20180706", "DescribeCrossAccountAttachment", {})
|
|
2004
387
|
.n("GlobalAcceleratorClient", "DescribeCrossAccountAttachmentCommand")
|
|
2005
|
-
.sc(DescribeCrossAccountAttachment$)
|
|
388
|
+
.sc(schemas_0.DescribeCrossAccountAttachment$)
|
|
2006
389
|
.build() {
|
|
2007
390
|
}
|
|
2008
391
|
|
|
@@ -2014,7 +397,7 @@ class DescribeCustomRoutingAcceleratorAttributesCommand extends smithyClient.Com
|
|
|
2014
397
|
})
|
|
2015
398
|
.s("GlobalAccelerator_V20180706", "DescribeCustomRoutingAcceleratorAttributes", {})
|
|
2016
399
|
.n("GlobalAcceleratorClient", "DescribeCustomRoutingAcceleratorAttributesCommand")
|
|
2017
|
-
.sc(DescribeCustomRoutingAcceleratorAttributes$)
|
|
400
|
+
.sc(schemas_0.DescribeCustomRoutingAcceleratorAttributes$)
|
|
2018
401
|
.build() {
|
|
2019
402
|
}
|
|
2020
403
|
|
|
@@ -2026,7 +409,7 @@ class DescribeCustomRoutingAcceleratorCommand extends smithyClient.Command
|
|
|
2026
409
|
})
|
|
2027
410
|
.s("GlobalAccelerator_V20180706", "DescribeCustomRoutingAccelerator", {})
|
|
2028
411
|
.n("GlobalAcceleratorClient", "DescribeCustomRoutingAcceleratorCommand")
|
|
2029
|
-
.sc(DescribeCustomRoutingAccelerator$)
|
|
412
|
+
.sc(schemas_0.DescribeCustomRoutingAccelerator$)
|
|
2030
413
|
.build() {
|
|
2031
414
|
}
|
|
2032
415
|
|
|
@@ -2038,7 +421,7 @@ class DescribeCustomRoutingEndpointGroupCommand extends smithyClient.Command
|
|
|
2038
421
|
})
|
|
2039
422
|
.s("GlobalAccelerator_V20180706", "DescribeCustomRoutingEndpointGroup", {})
|
|
2040
423
|
.n("GlobalAcceleratorClient", "DescribeCustomRoutingEndpointGroupCommand")
|
|
2041
|
-
.sc(DescribeCustomRoutingEndpointGroup$)
|
|
424
|
+
.sc(schemas_0.DescribeCustomRoutingEndpointGroup$)
|
|
2042
425
|
.build() {
|
|
2043
426
|
}
|
|
2044
427
|
|
|
@@ -2050,7 +433,7 @@ class DescribeCustomRoutingListenerCommand extends smithyClient.Command
|
|
|
2050
433
|
})
|
|
2051
434
|
.s("GlobalAccelerator_V20180706", "DescribeCustomRoutingListener", {})
|
|
2052
435
|
.n("GlobalAcceleratorClient", "DescribeCustomRoutingListenerCommand")
|
|
2053
|
-
.sc(DescribeCustomRoutingListener$)
|
|
436
|
+
.sc(schemas_0.DescribeCustomRoutingListener$)
|
|
2054
437
|
.build() {
|
|
2055
438
|
}
|
|
2056
439
|
|
|
@@ -2062,7 +445,7 @@ class DescribeEndpointGroupCommand extends smithyClient.Command
|
|
|
2062
445
|
})
|
|
2063
446
|
.s("GlobalAccelerator_V20180706", "DescribeEndpointGroup", {})
|
|
2064
447
|
.n("GlobalAcceleratorClient", "DescribeEndpointGroupCommand")
|
|
2065
|
-
.sc(DescribeEndpointGroup$)
|
|
448
|
+
.sc(schemas_0.DescribeEndpointGroup$)
|
|
2066
449
|
.build() {
|
|
2067
450
|
}
|
|
2068
451
|
|
|
@@ -2074,7 +457,7 @@ class DescribeListenerCommand extends smithyClient.Command
|
|
|
2074
457
|
})
|
|
2075
458
|
.s("GlobalAccelerator_V20180706", "DescribeListener", {})
|
|
2076
459
|
.n("GlobalAcceleratorClient", "DescribeListenerCommand")
|
|
2077
|
-
.sc(DescribeListener$)
|
|
460
|
+
.sc(schemas_0.DescribeListener$)
|
|
2078
461
|
.build() {
|
|
2079
462
|
}
|
|
2080
463
|
|
|
@@ -2086,7 +469,7 @@ class ListAcceleratorsCommand extends smithyClient.Command
|
|
|
2086
469
|
})
|
|
2087
470
|
.s("GlobalAccelerator_V20180706", "ListAccelerators", {})
|
|
2088
471
|
.n("GlobalAcceleratorClient", "ListAcceleratorsCommand")
|
|
2089
|
-
.sc(ListAccelerators$)
|
|
472
|
+
.sc(schemas_0.ListAccelerators$)
|
|
2090
473
|
.build() {
|
|
2091
474
|
}
|
|
2092
475
|
|
|
@@ -2098,7 +481,7 @@ class ListByoipCidrsCommand extends smithyClient.Command
|
|
|
2098
481
|
})
|
|
2099
482
|
.s("GlobalAccelerator_V20180706", "ListByoipCidrs", {})
|
|
2100
483
|
.n("GlobalAcceleratorClient", "ListByoipCidrsCommand")
|
|
2101
|
-
.sc(ListByoipCidrs$)
|
|
484
|
+
.sc(schemas_0.ListByoipCidrs$)
|
|
2102
485
|
.build() {
|
|
2103
486
|
}
|
|
2104
487
|
|
|
@@ -2110,7 +493,7 @@ class ListCrossAccountAttachmentsCommand extends smithyClient.Command
|
|
|
2110
493
|
})
|
|
2111
494
|
.s("GlobalAccelerator_V20180706", "ListCrossAccountAttachments", {})
|
|
2112
495
|
.n("GlobalAcceleratorClient", "ListCrossAccountAttachmentsCommand")
|
|
2113
|
-
.sc(ListCrossAccountAttachments$)
|
|
496
|
+
.sc(schemas_0.ListCrossAccountAttachments$)
|
|
2114
497
|
.build() {
|
|
2115
498
|
}
|
|
2116
499
|
|
|
@@ -2122,7 +505,7 @@ class ListCrossAccountResourceAccountsCommand extends smithyClient.Command
|
|
|
2122
505
|
})
|
|
2123
506
|
.s("GlobalAccelerator_V20180706", "ListCrossAccountResourceAccounts", {})
|
|
2124
507
|
.n("GlobalAcceleratorClient", "ListCrossAccountResourceAccountsCommand")
|
|
2125
|
-
.sc(ListCrossAccountResourceAccounts$)
|
|
508
|
+
.sc(schemas_0.ListCrossAccountResourceAccounts$)
|
|
2126
509
|
.build() {
|
|
2127
510
|
}
|
|
2128
511
|
|
|
@@ -2134,7 +517,7 @@ class ListCrossAccountResourcesCommand extends smithyClient.Command
|
|
|
2134
517
|
})
|
|
2135
518
|
.s("GlobalAccelerator_V20180706", "ListCrossAccountResources", {})
|
|
2136
519
|
.n("GlobalAcceleratorClient", "ListCrossAccountResourcesCommand")
|
|
2137
|
-
.sc(ListCrossAccountResources$)
|
|
520
|
+
.sc(schemas_0.ListCrossAccountResources$)
|
|
2138
521
|
.build() {
|
|
2139
522
|
}
|
|
2140
523
|
|
|
@@ -2146,7 +529,7 @@ class ListCustomRoutingAcceleratorsCommand extends smithyClient.Command
|
|
|
2146
529
|
})
|
|
2147
530
|
.s("GlobalAccelerator_V20180706", "ListCustomRoutingAccelerators", {})
|
|
2148
531
|
.n("GlobalAcceleratorClient", "ListCustomRoutingAcceleratorsCommand")
|
|
2149
|
-
.sc(ListCustomRoutingAccelerators$)
|
|
532
|
+
.sc(schemas_0.ListCustomRoutingAccelerators$)
|
|
2150
533
|
.build() {
|
|
2151
534
|
}
|
|
2152
535
|
|
|
@@ -2158,7 +541,7 @@ class ListCustomRoutingEndpointGroupsCommand extends smithyClient.Command
|
|
|
2158
541
|
})
|
|
2159
542
|
.s("GlobalAccelerator_V20180706", "ListCustomRoutingEndpointGroups", {})
|
|
2160
543
|
.n("GlobalAcceleratorClient", "ListCustomRoutingEndpointGroupsCommand")
|
|
2161
|
-
.sc(ListCustomRoutingEndpointGroups$)
|
|
544
|
+
.sc(schemas_0.ListCustomRoutingEndpointGroups$)
|
|
2162
545
|
.build() {
|
|
2163
546
|
}
|
|
2164
547
|
|
|
@@ -2170,7 +553,7 @@ class ListCustomRoutingListenersCommand extends smithyClient.Command
|
|
|
2170
553
|
})
|
|
2171
554
|
.s("GlobalAccelerator_V20180706", "ListCustomRoutingListeners", {})
|
|
2172
555
|
.n("GlobalAcceleratorClient", "ListCustomRoutingListenersCommand")
|
|
2173
|
-
.sc(ListCustomRoutingListeners$)
|
|
556
|
+
.sc(schemas_0.ListCustomRoutingListeners$)
|
|
2174
557
|
.build() {
|
|
2175
558
|
}
|
|
2176
559
|
|
|
@@ -2182,7 +565,7 @@ class ListCustomRoutingPortMappingsByDestinationCommand extends smithyClient.Com
|
|
|
2182
565
|
})
|
|
2183
566
|
.s("GlobalAccelerator_V20180706", "ListCustomRoutingPortMappingsByDestination", {})
|
|
2184
567
|
.n("GlobalAcceleratorClient", "ListCustomRoutingPortMappingsByDestinationCommand")
|
|
2185
|
-
.sc(ListCustomRoutingPortMappingsByDestination$)
|
|
568
|
+
.sc(schemas_0.ListCustomRoutingPortMappingsByDestination$)
|
|
2186
569
|
.build() {
|
|
2187
570
|
}
|
|
2188
571
|
|
|
@@ -2194,7 +577,7 @@ class ListCustomRoutingPortMappingsCommand extends smithyClient.Command
|
|
|
2194
577
|
})
|
|
2195
578
|
.s("GlobalAccelerator_V20180706", "ListCustomRoutingPortMappings", {})
|
|
2196
579
|
.n("GlobalAcceleratorClient", "ListCustomRoutingPortMappingsCommand")
|
|
2197
|
-
.sc(ListCustomRoutingPortMappings$)
|
|
580
|
+
.sc(schemas_0.ListCustomRoutingPortMappings$)
|
|
2198
581
|
.build() {
|
|
2199
582
|
}
|
|
2200
583
|
|
|
@@ -2206,7 +589,7 @@ class ListEndpointGroupsCommand extends smithyClient.Command
|
|
|
2206
589
|
})
|
|
2207
590
|
.s("GlobalAccelerator_V20180706", "ListEndpointGroups", {})
|
|
2208
591
|
.n("GlobalAcceleratorClient", "ListEndpointGroupsCommand")
|
|
2209
|
-
.sc(ListEndpointGroups$)
|
|
592
|
+
.sc(schemas_0.ListEndpointGroups$)
|
|
2210
593
|
.build() {
|
|
2211
594
|
}
|
|
2212
595
|
|
|
@@ -2218,7 +601,7 @@ class ListListenersCommand extends smithyClient.Command
|
|
|
2218
601
|
})
|
|
2219
602
|
.s("GlobalAccelerator_V20180706", "ListListeners", {})
|
|
2220
603
|
.n("GlobalAcceleratorClient", "ListListenersCommand")
|
|
2221
|
-
.sc(ListListeners$)
|
|
604
|
+
.sc(schemas_0.ListListeners$)
|
|
2222
605
|
.build() {
|
|
2223
606
|
}
|
|
2224
607
|
|
|
@@ -2230,7 +613,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2230
613
|
})
|
|
2231
614
|
.s("GlobalAccelerator_V20180706", "ListTagsForResource", {})
|
|
2232
615
|
.n("GlobalAcceleratorClient", "ListTagsForResourceCommand")
|
|
2233
|
-
.sc(ListTagsForResource$)
|
|
616
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2234
617
|
.build() {
|
|
2235
618
|
}
|
|
2236
619
|
|
|
@@ -2242,7 +625,7 @@ class ProvisionByoipCidrCommand extends smithyClient.Command
|
|
|
2242
625
|
})
|
|
2243
626
|
.s("GlobalAccelerator_V20180706", "ProvisionByoipCidr", {})
|
|
2244
627
|
.n("GlobalAcceleratorClient", "ProvisionByoipCidrCommand")
|
|
2245
|
-
.sc(ProvisionByoipCidr$)
|
|
628
|
+
.sc(schemas_0.ProvisionByoipCidr$)
|
|
2246
629
|
.build() {
|
|
2247
630
|
}
|
|
2248
631
|
|
|
@@ -2254,7 +637,7 @@ class RemoveCustomRoutingEndpointsCommand extends smithyClient.Command
|
|
|
2254
637
|
})
|
|
2255
638
|
.s("GlobalAccelerator_V20180706", "RemoveCustomRoutingEndpoints", {})
|
|
2256
639
|
.n("GlobalAcceleratorClient", "RemoveCustomRoutingEndpointsCommand")
|
|
2257
|
-
.sc(RemoveCustomRoutingEndpoints$)
|
|
640
|
+
.sc(schemas_0.RemoveCustomRoutingEndpoints$)
|
|
2258
641
|
.build() {
|
|
2259
642
|
}
|
|
2260
643
|
|
|
@@ -2266,7 +649,7 @@ class RemoveEndpointsCommand extends smithyClient.Command
|
|
|
2266
649
|
})
|
|
2267
650
|
.s("GlobalAccelerator_V20180706", "RemoveEndpoints", {})
|
|
2268
651
|
.n("GlobalAcceleratorClient", "RemoveEndpointsCommand")
|
|
2269
|
-
.sc(RemoveEndpoints$)
|
|
652
|
+
.sc(schemas_0.RemoveEndpoints$)
|
|
2270
653
|
.build() {
|
|
2271
654
|
}
|
|
2272
655
|
|
|
@@ -2278,7 +661,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2278
661
|
})
|
|
2279
662
|
.s("GlobalAccelerator_V20180706", "TagResource", {})
|
|
2280
663
|
.n("GlobalAcceleratorClient", "TagResourceCommand")
|
|
2281
|
-
.sc(TagResource$)
|
|
664
|
+
.sc(schemas_0.TagResource$)
|
|
2282
665
|
.build() {
|
|
2283
666
|
}
|
|
2284
667
|
|
|
@@ -2290,7 +673,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2290
673
|
})
|
|
2291
674
|
.s("GlobalAccelerator_V20180706", "UntagResource", {})
|
|
2292
675
|
.n("GlobalAcceleratorClient", "UntagResourceCommand")
|
|
2293
|
-
.sc(UntagResource$)
|
|
676
|
+
.sc(schemas_0.UntagResource$)
|
|
2294
677
|
.build() {
|
|
2295
678
|
}
|
|
2296
679
|
|
|
@@ -2302,7 +685,7 @@ class UpdateAcceleratorAttributesCommand extends smithyClient.Command
|
|
|
2302
685
|
})
|
|
2303
686
|
.s("GlobalAccelerator_V20180706", "UpdateAcceleratorAttributes", {})
|
|
2304
687
|
.n("GlobalAcceleratorClient", "UpdateAcceleratorAttributesCommand")
|
|
2305
|
-
.sc(UpdateAcceleratorAttributes$)
|
|
688
|
+
.sc(schemas_0.UpdateAcceleratorAttributes$)
|
|
2306
689
|
.build() {
|
|
2307
690
|
}
|
|
2308
691
|
|
|
@@ -2314,7 +697,7 @@ class UpdateAcceleratorCommand extends smithyClient.Command
|
|
|
2314
697
|
})
|
|
2315
698
|
.s("GlobalAccelerator_V20180706", "UpdateAccelerator", {})
|
|
2316
699
|
.n("GlobalAcceleratorClient", "UpdateAcceleratorCommand")
|
|
2317
|
-
.sc(UpdateAccelerator$)
|
|
700
|
+
.sc(schemas_0.UpdateAccelerator$)
|
|
2318
701
|
.build() {
|
|
2319
702
|
}
|
|
2320
703
|
|
|
@@ -2326,7 +709,7 @@ class UpdateCrossAccountAttachmentCommand extends smithyClient.Command
|
|
|
2326
709
|
})
|
|
2327
710
|
.s("GlobalAccelerator_V20180706", "UpdateCrossAccountAttachment", {})
|
|
2328
711
|
.n("GlobalAcceleratorClient", "UpdateCrossAccountAttachmentCommand")
|
|
2329
|
-
.sc(UpdateCrossAccountAttachment$)
|
|
712
|
+
.sc(schemas_0.UpdateCrossAccountAttachment$)
|
|
2330
713
|
.build() {
|
|
2331
714
|
}
|
|
2332
715
|
|
|
@@ -2338,7 +721,7 @@ class UpdateCustomRoutingAcceleratorAttributesCommand extends smithyClient.Comma
|
|
|
2338
721
|
})
|
|
2339
722
|
.s("GlobalAccelerator_V20180706", "UpdateCustomRoutingAcceleratorAttributes", {})
|
|
2340
723
|
.n("GlobalAcceleratorClient", "UpdateCustomRoutingAcceleratorAttributesCommand")
|
|
2341
|
-
.sc(UpdateCustomRoutingAcceleratorAttributes$)
|
|
724
|
+
.sc(schemas_0.UpdateCustomRoutingAcceleratorAttributes$)
|
|
2342
725
|
.build() {
|
|
2343
726
|
}
|
|
2344
727
|
|
|
@@ -2350,7 +733,7 @@ class UpdateCustomRoutingAcceleratorCommand extends smithyClient.Command
|
|
|
2350
733
|
})
|
|
2351
734
|
.s("GlobalAccelerator_V20180706", "UpdateCustomRoutingAccelerator", {})
|
|
2352
735
|
.n("GlobalAcceleratorClient", "UpdateCustomRoutingAcceleratorCommand")
|
|
2353
|
-
.sc(UpdateCustomRoutingAccelerator$)
|
|
736
|
+
.sc(schemas_0.UpdateCustomRoutingAccelerator$)
|
|
2354
737
|
.build() {
|
|
2355
738
|
}
|
|
2356
739
|
|
|
@@ -2362,7 +745,7 @@ class UpdateCustomRoutingListenerCommand extends smithyClient.Command
|
|
|
2362
745
|
})
|
|
2363
746
|
.s("GlobalAccelerator_V20180706", "UpdateCustomRoutingListener", {})
|
|
2364
747
|
.n("GlobalAcceleratorClient", "UpdateCustomRoutingListenerCommand")
|
|
2365
|
-
.sc(UpdateCustomRoutingListener$)
|
|
748
|
+
.sc(schemas_0.UpdateCustomRoutingListener$)
|
|
2366
749
|
.build() {
|
|
2367
750
|
}
|
|
2368
751
|
|
|
@@ -2374,7 +757,7 @@ class UpdateEndpointGroupCommand extends smithyClient.Command
|
|
|
2374
757
|
})
|
|
2375
758
|
.s("GlobalAccelerator_V20180706", "UpdateEndpointGroup", {})
|
|
2376
759
|
.n("GlobalAcceleratorClient", "UpdateEndpointGroupCommand")
|
|
2377
|
-
.sc(UpdateEndpointGroup$)
|
|
760
|
+
.sc(schemas_0.UpdateEndpointGroup$)
|
|
2378
761
|
.build() {
|
|
2379
762
|
}
|
|
2380
763
|
|
|
@@ -2386,7 +769,7 @@ class UpdateListenerCommand extends smithyClient.Command
|
|
|
2386
769
|
})
|
|
2387
770
|
.s("GlobalAccelerator_V20180706", "UpdateListener", {})
|
|
2388
771
|
.n("GlobalAcceleratorClient", "UpdateListenerCommand")
|
|
2389
|
-
.sc(UpdateListener$)
|
|
772
|
+
.sc(schemas_0.UpdateListener$)
|
|
2390
773
|
.build() {
|
|
2391
774
|
}
|
|
2392
775
|
|
|
@@ -2398,7 +781,7 @@ class WithdrawByoipCidrCommand extends smithyClient.Command
|
|
|
2398
781
|
})
|
|
2399
782
|
.s("GlobalAccelerator_V20180706", "WithdrawByoipCidr", {})
|
|
2400
783
|
.n("GlobalAcceleratorClient", "WithdrawByoipCidrCommand")
|
|
2401
|
-
.sc(WithdrawByoipCidr$)
|
|
784
|
+
.sc(schemas_0.WithdrawByoipCidr$)
|
|
2402
785
|
.build() {
|
|
2403
786
|
}
|
|
2404
787
|
|
|
@@ -2563,303 +946,79 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2563
946
|
enumerable: true,
|
|
2564
947
|
get: function () { return smithyClient.Client; }
|
|
2565
948
|
});
|
|
2566
|
-
exports
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
exports.AcceleratorNotDisabledException$ = AcceleratorNotDisabledException$;
|
|
2571
|
-
exports.AcceleratorNotFoundException = AcceleratorNotFoundException;
|
|
2572
|
-
exports.AcceleratorNotFoundException$ = AcceleratorNotFoundException$;
|
|
949
|
+
Object.defineProperty(exports, "GlobalAcceleratorServiceException", {
|
|
950
|
+
enumerable: true,
|
|
951
|
+
get: function () { return GlobalAcceleratorServiceException.GlobalAcceleratorServiceException; }
|
|
952
|
+
});
|
|
2573
953
|
exports.AcceleratorStatus = AcceleratorStatus;
|
|
2574
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2575
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2576
|
-
exports.AddCustomRoutingEndpoints$ = AddCustomRoutingEndpoints$;
|
|
2577
954
|
exports.AddCustomRoutingEndpointsCommand = AddCustomRoutingEndpointsCommand;
|
|
2578
|
-
exports.AddCustomRoutingEndpointsRequest$ = AddCustomRoutingEndpointsRequest$;
|
|
2579
|
-
exports.AddCustomRoutingEndpointsResponse$ = AddCustomRoutingEndpointsResponse$;
|
|
2580
|
-
exports.AddEndpoints$ = AddEndpoints$;
|
|
2581
955
|
exports.AddEndpointsCommand = AddEndpointsCommand;
|
|
2582
|
-
exports.AddEndpointsRequest$ = AddEndpointsRequest$;
|
|
2583
|
-
exports.AddEndpointsResponse$ = AddEndpointsResponse$;
|
|
2584
|
-
exports.AdvertiseByoipCidr$ = AdvertiseByoipCidr$;
|
|
2585
956
|
exports.AdvertiseByoipCidrCommand = AdvertiseByoipCidrCommand;
|
|
2586
|
-
exports.AdvertiseByoipCidrRequest$ = AdvertiseByoipCidrRequest$;
|
|
2587
|
-
exports.AdvertiseByoipCidrResponse$ = AdvertiseByoipCidrResponse$;
|
|
2588
|
-
exports.AllowCustomRoutingTraffic$ = AllowCustomRoutingTraffic$;
|
|
2589
957
|
exports.AllowCustomRoutingTrafficCommand = AllowCustomRoutingTrafficCommand;
|
|
2590
|
-
exports.AllowCustomRoutingTrafficRequest$ = AllowCustomRoutingTrafficRequest$;
|
|
2591
|
-
exports.AssociatedEndpointGroupFoundException = AssociatedEndpointGroupFoundException;
|
|
2592
|
-
exports.AssociatedEndpointGroupFoundException$ = AssociatedEndpointGroupFoundException$;
|
|
2593
|
-
exports.AssociatedListenerFoundException = AssociatedListenerFoundException;
|
|
2594
|
-
exports.AssociatedListenerFoundException$ = AssociatedListenerFoundException$;
|
|
2595
|
-
exports.Attachment$ = Attachment$;
|
|
2596
|
-
exports.AttachmentNotFoundException = AttachmentNotFoundException;
|
|
2597
|
-
exports.AttachmentNotFoundException$ = AttachmentNotFoundException$;
|
|
2598
|
-
exports.ByoipCidr$ = ByoipCidr$;
|
|
2599
|
-
exports.ByoipCidrEvent$ = ByoipCidrEvent$;
|
|
2600
|
-
exports.ByoipCidrNotFoundException = ByoipCidrNotFoundException;
|
|
2601
|
-
exports.ByoipCidrNotFoundException$ = ByoipCidrNotFoundException$;
|
|
2602
958
|
exports.ByoipCidrState = ByoipCidrState;
|
|
2603
|
-
exports.CidrAuthorizationContext$ = CidrAuthorizationContext$;
|
|
2604
959
|
exports.ClientAffinity = ClientAffinity;
|
|
2605
|
-
exports.ConflictException = ConflictException;
|
|
2606
|
-
exports.ConflictException$ = ConflictException$;
|
|
2607
|
-
exports.CreateAccelerator$ = CreateAccelerator$;
|
|
2608
960
|
exports.CreateAcceleratorCommand = CreateAcceleratorCommand;
|
|
2609
|
-
exports.CreateAcceleratorRequest$ = CreateAcceleratorRequest$;
|
|
2610
|
-
exports.CreateAcceleratorResponse$ = CreateAcceleratorResponse$;
|
|
2611
|
-
exports.CreateCrossAccountAttachment$ = CreateCrossAccountAttachment$;
|
|
2612
961
|
exports.CreateCrossAccountAttachmentCommand = CreateCrossAccountAttachmentCommand;
|
|
2613
|
-
exports.CreateCrossAccountAttachmentRequest$ = CreateCrossAccountAttachmentRequest$;
|
|
2614
|
-
exports.CreateCrossAccountAttachmentResponse$ = CreateCrossAccountAttachmentResponse$;
|
|
2615
|
-
exports.CreateCustomRoutingAccelerator$ = CreateCustomRoutingAccelerator$;
|
|
2616
962
|
exports.CreateCustomRoutingAcceleratorCommand = CreateCustomRoutingAcceleratorCommand;
|
|
2617
|
-
exports.CreateCustomRoutingAcceleratorRequest$ = CreateCustomRoutingAcceleratorRequest$;
|
|
2618
|
-
exports.CreateCustomRoutingAcceleratorResponse$ = CreateCustomRoutingAcceleratorResponse$;
|
|
2619
|
-
exports.CreateCustomRoutingEndpointGroup$ = CreateCustomRoutingEndpointGroup$;
|
|
2620
963
|
exports.CreateCustomRoutingEndpointGroupCommand = CreateCustomRoutingEndpointGroupCommand;
|
|
2621
|
-
exports.CreateCustomRoutingEndpointGroupRequest$ = CreateCustomRoutingEndpointGroupRequest$;
|
|
2622
|
-
exports.CreateCustomRoutingEndpointGroupResponse$ = CreateCustomRoutingEndpointGroupResponse$;
|
|
2623
|
-
exports.CreateCustomRoutingListener$ = CreateCustomRoutingListener$;
|
|
2624
964
|
exports.CreateCustomRoutingListenerCommand = CreateCustomRoutingListenerCommand;
|
|
2625
|
-
exports.CreateCustomRoutingListenerRequest$ = CreateCustomRoutingListenerRequest$;
|
|
2626
|
-
exports.CreateCustomRoutingListenerResponse$ = CreateCustomRoutingListenerResponse$;
|
|
2627
|
-
exports.CreateEndpointGroup$ = CreateEndpointGroup$;
|
|
2628
965
|
exports.CreateEndpointGroupCommand = CreateEndpointGroupCommand;
|
|
2629
|
-
exports.CreateEndpointGroupRequest$ = CreateEndpointGroupRequest$;
|
|
2630
|
-
exports.CreateEndpointGroupResponse$ = CreateEndpointGroupResponse$;
|
|
2631
|
-
exports.CreateListener$ = CreateListener$;
|
|
2632
966
|
exports.CreateListenerCommand = CreateListenerCommand;
|
|
2633
|
-
exports.CreateListenerRequest$ = CreateListenerRequest$;
|
|
2634
|
-
exports.CreateListenerResponse$ = CreateListenerResponse$;
|
|
2635
|
-
exports.CrossAccountResource$ = CrossAccountResource$;
|
|
2636
|
-
exports.CustomRoutingAccelerator$ = CustomRoutingAccelerator$;
|
|
2637
|
-
exports.CustomRoutingAcceleratorAttributes$ = CustomRoutingAcceleratorAttributes$;
|
|
2638
967
|
exports.CustomRoutingAcceleratorStatus = CustomRoutingAcceleratorStatus;
|
|
2639
|
-
exports.CustomRoutingDestinationConfiguration$ = CustomRoutingDestinationConfiguration$;
|
|
2640
|
-
exports.CustomRoutingDestinationDescription$ = CustomRoutingDestinationDescription$;
|
|
2641
968
|
exports.CustomRoutingDestinationTrafficState = CustomRoutingDestinationTrafficState;
|
|
2642
|
-
exports.CustomRoutingEndpointConfiguration$ = CustomRoutingEndpointConfiguration$;
|
|
2643
|
-
exports.CustomRoutingEndpointDescription$ = CustomRoutingEndpointDescription$;
|
|
2644
|
-
exports.CustomRoutingEndpointGroup$ = CustomRoutingEndpointGroup$;
|
|
2645
|
-
exports.CustomRoutingListener$ = CustomRoutingListener$;
|
|
2646
969
|
exports.CustomRoutingProtocol = CustomRoutingProtocol;
|
|
2647
|
-
exports.DeleteAccelerator$ = DeleteAccelerator$;
|
|
2648
970
|
exports.DeleteAcceleratorCommand = DeleteAcceleratorCommand;
|
|
2649
|
-
exports.DeleteAcceleratorRequest$ = DeleteAcceleratorRequest$;
|
|
2650
|
-
exports.DeleteCrossAccountAttachment$ = DeleteCrossAccountAttachment$;
|
|
2651
971
|
exports.DeleteCrossAccountAttachmentCommand = DeleteCrossAccountAttachmentCommand;
|
|
2652
|
-
exports.DeleteCrossAccountAttachmentRequest$ = DeleteCrossAccountAttachmentRequest$;
|
|
2653
|
-
exports.DeleteCustomRoutingAccelerator$ = DeleteCustomRoutingAccelerator$;
|
|
2654
972
|
exports.DeleteCustomRoutingAcceleratorCommand = DeleteCustomRoutingAcceleratorCommand;
|
|
2655
|
-
exports.DeleteCustomRoutingAcceleratorRequest$ = DeleteCustomRoutingAcceleratorRequest$;
|
|
2656
|
-
exports.DeleteCustomRoutingEndpointGroup$ = DeleteCustomRoutingEndpointGroup$;
|
|
2657
973
|
exports.DeleteCustomRoutingEndpointGroupCommand = DeleteCustomRoutingEndpointGroupCommand;
|
|
2658
|
-
exports.DeleteCustomRoutingEndpointGroupRequest$ = DeleteCustomRoutingEndpointGroupRequest$;
|
|
2659
|
-
exports.DeleteCustomRoutingListener$ = DeleteCustomRoutingListener$;
|
|
2660
974
|
exports.DeleteCustomRoutingListenerCommand = DeleteCustomRoutingListenerCommand;
|
|
2661
|
-
exports.DeleteCustomRoutingListenerRequest$ = DeleteCustomRoutingListenerRequest$;
|
|
2662
|
-
exports.DeleteEndpointGroup$ = DeleteEndpointGroup$;
|
|
2663
975
|
exports.DeleteEndpointGroupCommand = DeleteEndpointGroupCommand;
|
|
2664
|
-
exports.DeleteEndpointGroupRequest$ = DeleteEndpointGroupRequest$;
|
|
2665
|
-
exports.DeleteListener$ = DeleteListener$;
|
|
2666
976
|
exports.DeleteListenerCommand = DeleteListenerCommand;
|
|
2667
|
-
exports.DeleteListenerRequest$ = DeleteListenerRequest$;
|
|
2668
|
-
exports.DenyCustomRoutingTraffic$ = DenyCustomRoutingTraffic$;
|
|
2669
977
|
exports.DenyCustomRoutingTrafficCommand = DenyCustomRoutingTrafficCommand;
|
|
2670
|
-
exports.DenyCustomRoutingTrafficRequest$ = DenyCustomRoutingTrafficRequest$;
|
|
2671
|
-
exports.DeprovisionByoipCidr$ = DeprovisionByoipCidr$;
|
|
2672
978
|
exports.DeprovisionByoipCidrCommand = DeprovisionByoipCidrCommand;
|
|
2673
|
-
exports.DeprovisionByoipCidrRequest$ = DeprovisionByoipCidrRequest$;
|
|
2674
|
-
exports.DeprovisionByoipCidrResponse$ = DeprovisionByoipCidrResponse$;
|
|
2675
|
-
exports.DescribeAccelerator$ = DescribeAccelerator$;
|
|
2676
|
-
exports.DescribeAcceleratorAttributes$ = DescribeAcceleratorAttributes$;
|
|
2677
979
|
exports.DescribeAcceleratorAttributesCommand = DescribeAcceleratorAttributesCommand;
|
|
2678
|
-
exports.DescribeAcceleratorAttributesRequest$ = DescribeAcceleratorAttributesRequest$;
|
|
2679
|
-
exports.DescribeAcceleratorAttributesResponse$ = DescribeAcceleratorAttributesResponse$;
|
|
2680
980
|
exports.DescribeAcceleratorCommand = DescribeAcceleratorCommand;
|
|
2681
|
-
exports.DescribeAcceleratorRequest$ = DescribeAcceleratorRequest$;
|
|
2682
|
-
exports.DescribeAcceleratorResponse$ = DescribeAcceleratorResponse$;
|
|
2683
|
-
exports.DescribeCrossAccountAttachment$ = DescribeCrossAccountAttachment$;
|
|
2684
981
|
exports.DescribeCrossAccountAttachmentCommand = DescribeCrossAccountAttachmentCommand;
|
|
2685
|
-
exports.DescribeCrossAccountAttachmentRequest$ = DescribeCrossAccountAttachmentRequest$;
|
|
2686
|
-
exports.DescribeCrossAccountAttachmentResponse$ = DescribeCrossAccountAttachmentResponse$;
|
|
2687
|
-
exports.DescribeCustomRoutingAccelerator$ = DescribeCustomRoutingAccelerator$;
|
|
2688
|
-
exports.DescribeCustomRoutingAcceleratorAttributes$ = DescribeCustomRoutingAcceleratorAttributes$;
|
|
2689
982
|
exports.DescribeCustomRoutingAcceleratorAttributesCommand = DescribeCustomRoutingAcceleratorAttributesCommand;
|
|
2690
|
-
exports.DescribeCustomRoutingAcceleratorAttributesRequest$ = DescribeCustomRoutingAcceleratorAttributesRequest$;
|
|
2691
|
-
exports.DescribeCustomRoutingAcceleratorAttributesResponse$ = DescribeCustomRoutingAcceleratorAttributesResponse$;
|
|
2692
983
|
exports.DescribeCustomRoutingAcceleratorCommand = DescribeCustomRoutingAcceleratorCommand;
|
|
2693
|
-
exports.DescribeCustomRoutingAcceleratorRequest$ = DescribeCustomRoutingAcceleratorRequest$;
|
|
2694
|
-
exports.DescribeCustomRoutingAcceleratorResponse$ = DescribeCustomRoutingAcceleratorResponse$;
|
|
2695
|
-
exports.DescribeCustomRoutingEndpointGroup$ = DescribeCustomRoutingEndpointGroup$;
|
|
2696
984
|
exports.DescribeCustomRoutingEndpointGroupCommand = DescribeCustomRoutingEndpointGroupCommand;
|
|
2697
|
-
exports.DescribeCustomRoutingEndpointGroupRequest$ = DescribeCustomRoutingEndpointGroupRequest$;
|
|
2698
|
-
exports.DescribeCustomRoutingEndpointGroupResponse$ = DescribeCustomRoutingEndpointGroupResponse$;
|
|
2699
|
-
exports.DescribeCustomRoutingListener$ = DescribeCustomRoutingListener$;
|
|
2700
985
|
exports.DescribeCustomRoutingListenerCommand = DescribeCustomRoutingListenerCommand;
|
|
2701
|
-
exports.DescribeCustomRoutingListenerRequest$ = DescribeCustomRoutingListenerRequest$;
|
|
2702
|
-
exports.DescribeCustomRoutingListenerResponse$ = DescribeCustomRoutingListenerResponse$;
|
|
2703
|
-
exports.DescribeEndpointGroup$ = DescribeEndpointGroup$;
|
|
2704
986
|
exports.DescribeEndpointGroupCommand = DescribeEndpointGroupCommand;
|
|
2705
|
-
exports.DescribeEndpointGroupRequest$ = DescribeEndpointGroupRequest$;
|
|
2706
|
-
exports.DescribeEndpointGroupResponse$ = DescribeEndpointGroupResponse$;
|
|
2707
|
-
exports.DescribeListener$ = DescribeListener$;
|
|
2708
987
|
exports.DescribeListenerCommand = DescribeListenerCommand;
|
|
2709
|
-
exports.DescribeListenerRequest$ = DescribeListenerRequest$;
|
|
2710
|
-
exports.DescribeListenerResponse$ = DescribeListenerResponse$;
|
|
2711
|
-
exports.DestinationPortMapping$ = DestinationPortMapping$;
|
|
2712
|
-
exports.EndpointAlreadyExistsException = EndpointAlreadyExistsException;
|
|
2713
|
-
exports.EndpointAlreadyExistsException$ = EndpointAlreadyExistsException$;
|
|
2714
|
-
exports.EndpointConfiguration$ = EndpointConfiguration$;
|
|
2715
|
-
exports.EndpointDescription$ = EndpointDescription$;
|
|
2716
|
-
exports.EndpointGroup$ = EndpointGroup$;
|
|
2717
|
-
exports.EndpointGroupAlreadyExistsException = EndpointGroupAlreadyExistsException;
|
|
2718
|
-
exports.EndpointGroupAlreadyExistsException$ = EndpointGroupAlreadyExistsException$;
|
|
2719
|
-
exports.EndpointGroupNotFoundException = EndpointGroupNotFoundException;
|
|
2720
|
-
exports.EndpointGroupNotFoundException$ = EndpointGroupNotFoundException$;
|
|
2721
|
-
exports.EndpointIdentifier$ = EndpointIdentifier$;
|
|
2722
|
-
exports.EndpointNotFoundException = EndpointNotFoundException;
|
|
2723
|
-
exports.EndpointNotFoundException$ = EndpointNotFoundException$;
|
|
2724
988
|
exports.GlobalAccelerator = GlobalAccelerator;
|
|
2725
989
|
exports.GlobalAcceleratorClient = GlobalAcceleratorClient;
|
|
2726
|
-
exports.GlobalAcceleratorServiceException = GlobalAcceleratorServiceException;
|
|
2727
|
-
exports.GlobalAcceleratorServiceException$ = GlobalAcceleratorServiceException$;
|
|
2728
990
|
exports.HealthCheckProtocol = HealthCheckProtocol;
|
|
2729
991
|
exports.HealthState = HealthState;
|
|
2730
|
-
exports.IncorrectCidrStateException = IncorrectCidrStateException;
|
|
2731
|
-
exports.IncorrectCidrStateException$ = IncorrectCidrStateException$;
|
|
2732
|
-
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
2733
|
-
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
2734
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2735
|
-
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2736
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
2737
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
2738
|
-
exports.InvalidPortRangeException = InvalidPortRangeException;
|
|
2739
|
-
exports.InvalidPortRangeException$ = InvalidPortRangeException$;
|
|
2740
992
|
exports.IpAddressFamily = IpAddressFamily;
|
|
2741
993
|
exports.IpAddressType = IpAddressType;
|
|
2742
|
-
exports.IpSet$ = IpSet$;
|
|
2743
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2744
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2745
|
-
exports.ListAccelerators$ = ListAccelerators$;
|
|
2746
994
|
exports.ListAcceleratorsCommand = ListAcceleratorsCommand;
|
|
2747
|
-
exports.ListAcceleratorsRequest$ = ListAcceleratorsRequest$;
|
|
2748
|
-
exports.ListAcceleratorsResponse$ = ListAcceleratorsResponse$;
|
|
2749
|
-
exports.ListByoipCidrs$ = ListByoipCidrs$;
|
|
2750
995
|
exports.ListByoipCidrsCommand = ListByoipCidrsCommand;
|
|
2751
|
-
exports.ListByoipCidrsRequest$ = ListByoipCidrsRequest$;
|
|
2752
|
-
exports.ListByoipCidrsResponse$ = ListByoipCidrsResponse$;
|
|
2753
|
-
exports.ListCrossAccountAttachments$ = ListCrossAccountAttachments$;
|
|
2754
996
|
exports.ListCrossAccountAttachmentsCommand = ListCrossAccountAttachmentsCommand;
|
|
2755
|
-
exports.ListCrossAccountAttachmentsRequest$ = ListCrossAccountAttachmentsRequest$;
|
|
2756
|
-
exports.ListCrossAccountAttachmentsResponse$ = ListCrossAccountAttachmentsResponse$;
|
|
2757
|
-
exports.ListCrossAccountResourceAccounts$ = ListCrossAccountResourceAccounts$;
|
|
2758
997
|
exports.ListCrossAccountResourceAccountsCommand = ListCrossAccountResourceAccountsCommand;
|
|
2759
|
-
exports.ListCrossAccountResourceAccountsRequest$ = ListCrossAccountResourceAccountsRequest$;
|
|
2760
|
-
exports.ListCrossAccountResourceAccountsResponse$ = ListCrossAccountResourceAccountsResponse$;
|
|
2761
|
-
exports.ListCrossAccountResources$ = ListCrossAccountResources$;
|
|
2762
998
|
exports.ListCrossAccountResourcesCommand = ListCrossAccountResourcesCommand;
|
|
2763
|
-
exports.ListCrossAccountResourcesRequest$ = ListCrossAccountResourcesRequest$;
|
|
2764
|
-
exports.ListCrossAccountResourcesResponse$ = ListCrossAccountResourcesResponse$;
|
|
2765
|
-
exports.ListCustomRoutingAccelerators$ = ListCustomRoutingAccelerators$;
|
|
2766
999
|
exports.ListCustomRoutingAcceleratorsCommand = ListCustomRoutingAcceleratorsCommand;
|
|
2767
|
-
exports.ListCustomRoutingAcceleratorsRequest$ = ListCustomRoutingAcceleratorsRequest$;
|
|
2768
|
-
exports.ListCustomRoutingAcceleratorsResponse$ = ListCustomRoutingAcceleratorsResponse$;
|
|
2769
|
-
exports.ListCustomRoutingEndpointGroups$ = ListCustomRoutingEndpointGroups$;
|
|
2770
1000
|
exports.ListCustomRoutingEndpointGroupsCommand = ListCustomRoutingEndpointGroupsCommand;
|
|
2771
|
-
exports.ListCustomRoutingEndpointGroupsRequest$ = ListCustomRoutingEndpointGroupsRequest$;
|
|
2772
|
-
exports.ListCustomRoutingEndpointGroupsResponse$ = ListCustomRoutingEndpointGroupsResponse$;
|
|
2773
|
-
exports.ListCustomRoutingListeners$ = ListCustomRoutingListeners$;
|
|
2774
1001
|
exports.ListCustomRoutingListenersCommand = ListCustomRoutingListenersCommand;
|
|
2775
|
-
exports.ListCustomRoutingListenersRequest$ = ListCustomRoutingListenersRequest$;
|
|
2776
|
-
exports.ListCustomRoutingListenersResponse$ = ListCustomRoutingListenersResponse$;
|
|
2777
|
-
exports.ListCustomRoutingPortMappings$ = ListCustomRoutingPortMappings$;
|
|
2778
|
-
exports.ListCustomRoutingPortMappingsByDestination$ = ListCustomRoutingPortMappingsByDestination$;
|
|
2779
1002
|
exports.ListCustomRoutingPortMappingsByDestinationCommand = ListCustomRoutingPortMappingsByDestinationCommand;
|
|
2780
|
-
exports.ListCustomRoutingPortMappingsByDestinationRequest$ = ListCustomRoutingPortMappingsByDestinationRequest$;
|
|
2781
|
-
exports.ListCustomRoutingPortMappingsByDestinationResponse$ = ListCustomRoutingPortMappingsByDestinationResponse$;
|
|
2782
1003
|
exports.ListCustomRoutingPortMappingsCommand = ListCustomRoutingPortMappingsCommand;
|
|
2783
|
-
exports.ListCustomRoutingPortMappingsRequest$ = ListCustomRoutingPortMappingsRequest$;
|
|
2784
|
-
exports.ListCustomRoutingPortMappingsResponse$ = ListCustomRoutingPortMappingsResponse$;
|
|
2785
|
-
exports.ListEndpointGroups$ = ListEndpointGroups$;
|
|
2786
1004
|
exports.ListEndpointGroupsCommand = ListEndpointGroupsCommand;
|
|
2787
|
-
exports.ListEndpointGroupsRequest$ = ListEndpointGroupsRequest$;
|
|
2788
|
-
exports.ListEndpointGroupsResponse$ = ListEndpointGroupsResponse$;
|
|
2789
|
-
exports.ListListeners$ = ListListeners$;
|
|
2790
1005
|
exports.ListListenersCommand = ListListenersCommand;
|
|
2791
|
-
exports.ListListenersRequest$ = ListListenersRequest$;
|
|
2792
|
-
exports.ListListenersResponse$ = ListListenersResponse$;
|
|
2793
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2794
1006
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2795
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2796
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2797
|
-
exports.Listener$ = Listener$;
|
|
2798
|
-
exports.ListenerNotFoundException = ListenerNotFoundException;
|
|
2799
|
-
exports.ListenerNotFoundException$ = ListenerNotFoundException$;
|
|
2800
|
-
exports.PortMapping$ = PortMapping$;
|
|
2801
|
-
exports.PortOverride$ = PortOverride$;
|
|
2802
|
-
exports.PortRange$ = PortRange$;
|
|
2803
1007
|
exports.Protocol = Protocol;
|
|
2804
|
-
exports.ProvisionByoipCidr$ = ProvisionByoipCidr$;
|
|
2805
1008
|
exports.ProvisionByoipCidrCommand = ProvisionByoipCidrCommand;
|
|
2806
|
-
exports.ProvisionByoipCidrRequest$ = ProvisionByoipCidrRequest$;
|
|
2807
|
-
exports.ProvisionByoipCidrResponse$ = ProvisionByoipCidrResponse$;
|
|
2808
|
-
exports.RemoveCustomRoutingEndpoints$ = RemoveCustomRoutingEndpoints$;
|
|
2809
1009
|
exports.RemoveCustomRoutingEndpointsCommand = RemoveCustomRoutingEndpointsCommand;
|
|
2810
|
-
exports.RemoveCustomRoutingEndpointsRequest$ = RemoveCustomRoutingEndpointsRequest$;
|
|
2811
|
-
exports.RemoveEndpoints$ = RemoveEndpoints$;
|
|
2812
1010
|
exports.RemoveEndpointsCommand = RemoveEndpointsCommand;
|
|
2813
|
-
exports.RemoveEndpointsRequest$ = RemoveEndpointsRequest$;
|
|
2814
|
-
exports.Resource$ = Resource$;
|
|
2815
|
-
exports.SocketAddress$ = SocketAddress$;
|
|
2816
|
-
exports.Tag$ = Tag$;
|
|
2817
|
-
exports.TagResource$ = TagResource$;
|
|
2818
1011
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2819
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2820
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2821
|
-
exports.TransactionInProgressException = TransactionInProgressException;
|
|
2822
|
-
exports.TransactionInProgressException$ = TransactionInProgressException$;
|
|
2823
|
-
exports.UntagResource$ = UntagResource$;
|
|
2824
1012
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2825
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2826
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2827
|
-
exports.UpdateAccelerator$ = UpdateAccelerator$;
|
|
2828
|
-
exports.UpdateAcceleratorAttributes$ = UpdateAcceleratorAttributes$;
|
|
2829
1013
|
exports.UpdateAcceleratorAttributesCommand = UpdateAcceleratorAttributesCommand;
|
|
2830
|
-
exports.UpdateAcceleratorAttributesRequest$ = UpdateAcceleratorAttributesRequest$;
|
|
2831
|
-
exports.UpdateAcceleratorAttributesResponse$ = UpdateAcceleratorAttributesResponse$;
|
|
2832
1014
|
exports.UpdateAcceleratorCommand = UpdateAcceleratorCommand;
|
|
2833
|
-
exports.UpdateAcceleratorRequest$ = UpdateAcceleratorRequest$;
|
|
2834
|
-
exports.UpdateAcceleratorResponse$ = UpdateAcceleratorResponse$;
|
|
2835
|
-
exports.UpdateCrossAccountAttachment$ = UpdateCrossAccountAttachment$;
|
|
2836
1015
|
exports.UpdateCrossAccountAttachmentCommand = UpdateCrossAccountAttachmentCommand;
|
|
2837
|
-
exports.UpdateCrossAccountAttachmentRequest$ = UpdateCrossAccountAttachmentRequest$;
|
|
2838
|
-
exports.UpdateCrossAccountAttachmentResponse$ = UpdateCrossAccountAttachmentResponse$;
|
|
2839
|
-
exports.UpdateCustomRoutingAccelerator$ = UpdateCustomRoutingAccelerator$;
|
|
2840
|
-
exports.UpdateCustomRoutingAcceleratorAttributes$ = UpdateCustomRoutingAcceleratorAttributes$;
|
|
2841
1016
|
exports.UpdateCustomRoutingAcceleratorAttributesCommand = UpdateCustomRoutingAcceleratorAttributesCommand;
|
|
2842
|
-
exports.UpdateCustomRoutingAcceleratorAttributesRequest$ = UpdateCustomRoutingAcceleratorAttributesRequest$;
|
|
2843
|
-
exports.UpdateCustomRoutingAcceleratorAttributesResponse$ = UpdateCustomRoutingAcceleratorAttributesResponse$;
|
|
2844
1017
|
exports.UpdateCustomRoutingAcceleratorCommand = UpdateCustomRoutingAcceleratorCommand;
|
|
2845
|
-
exports.UpdateCustomRoutingAcceleratorRequest$ = UpdateCustomRoutingAcceleratorRequest$;
|
|
2846
|
-
exports.UpdateCustomRoutingAcceleratorResponse$ = UpdateCustomRoutingAcceleratorResponse$;
|
|
2847
|
-
exports.UpdateCustomRoutingListener$ = UpdateCustomRoutingListener$;
|
|
2848
1018
|
exports.UpdateCustomRoutingListenerCommand = UpdateCustomRoutingListenerCommand;
|
|
2849
|
-
exports.UpdateCustomRoutingListenerRequest$ = UpdateCustomRoutingListenerRequest$;
|
|
2850
|
-
exports.UpdateCustomRoutingListenerResponse$ = UpdateCustomRoutingListenerResponse$;
|
|
2851
|
-
exports.UpdateEndpointGroup$ = UpdateEndpointGroup$;
|
|
2852
1019
|
exports.UpdateEndpointGroupCommand = UpdateEndpointGroupCommand;
|
|
2853
|
-
exports.UpdateEndpointGroupRequest$ = UpdateEndpointGroupRequest$;
|
|
2854
|
-
exports.UpdateEndpointGroupResponse$ = UpdateEndpointGroupResponse$;
|
|
2855
|
-
exports.UpdateListener$ = UpdateListener$;
|
|
2856
1020
|
exports.UpdateListenerCommand = UpdateListenerCommand;
|
|
2857
|
-
exports.UpdateListenerRequest$ = UpdateListenerRequest$;
|
|
2858
|
-
exports.UpdateListenerResponse$ = UpdateListenerResponse$;
|
|
2859
|
-
exports.WithdrawByoipCidr$ = WithdrawByoipCidr$;
|
|
2860
1021
|
exports.WithdrawByoipCidrCommand = WithdrawByoipCidrCommand;
|
|
2861
|
-
exports.WithdrawByoipCidrRequest$ = WithdrawByoipCidrRequest$;
|
|
2862
|
-
exports.WithdrawByoipCidrResponse$ = WithdrawByoipCidrResponse$;
|
|
2863
1022
|
exports.paginateListAccelerators = paginateListAccelerators;
|
|
2864
1023
|
exports.paginateListByoipCidrs = paginateListByoipCidrs;
|
|
2865
1024
|
exports.paginateListCrossAccountAttachments = paginateListCrossAccountAttachments;
|
|
@@ -2871,3 +1030,15 @@ exports.paginateListCustomRoutingPortMappings = paginateListCustomRoutingPortMap
|
|
|
2871
1030
|
exports.paginateListCustomRoutingPortMappingsByDestination = paginateListCustomRoutingPortMappingsByDestination;
|
|
2872
1031
|
exports.paginateListEndpointGroups = paginateListEndpointGroups;
|
|
2873
1032
|
exports.paginateListListeners = paginateListListeners;
|
|
1033
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1034
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1035
|
+
enumerable: true,
|
|
1036
|
+
get: function () { return schemas_0[k]; }
|
|
1037
|
+
});
|
|
1038
|
+
});
|
|
1039
|
+
Object.keys(errors).forEach(function (k) {
|
|
1040
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1041
|
+
enumerable: true,
|
|
1042
|
+
get: function () { return errors[k]; }
|
|
1043
|
+
});
|
|
1044
|
+
});
|