@aws-sdk/client-global-accelerator 3.721.0 → 3.726.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 +381 -278
- package/dist-es/GlobalAcceleratorClient.js +1 -0
- package/dist-es/models/models_0.js +60 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -222,7 +222,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
222
222
|
}, "resolveRuntimeExtensions");
|
|
223
223
|
|
|
224
224
|
// src/GlobalAcceleratorClient.ts
|
|
225
|
-
var
|
|
225
|
+
var GlobalAcceleratorClient = class extends import_smithy_client.Client {
|
|
226
|
+
static {
|
|
227
|
+
__name(this, "GlobalAcceleratorClient");
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* The resolved configuration of GlobalAcceleratorClient class. This is resolved and normalized from the {@link GlobalAcceleratorClientConfig | constructor configuration interface}.
|
|
231
|
+
*/
|
|
232
|
+
config;
|
|
226
233
|
constructor(...[configuration]) {
|
|
227
234
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
228
235
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -232,7 +239,7 @@ var _GlobalAcceleratorClient = class _GlobalAcceleratorClient extends import_smi
|
|
|
232
239
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
233
240
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
234
241
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
235
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
242
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
236
243
|
super(_config_8);
|
|
237
244
|
this.config = _config_8;
|
|
238
245
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -260,8 +267,6 @@ var _GlobalAcceleratorClient = class _GlobalAcceleratorClient extends import_smi
|
|
|
260
267
|
super.destroy();
|
|
261
268
|
}
|
|
262
269
|
};
|
|
263
|
-
__name(_GlobalAcceleratorClient, "GlobalAcceleratorClient");
|
|
264
|
-
var GlobalAcceleratorClient = _GlobalAcceleratorClient;
|
|
265
270
|
|
|
266
271
|
// src/GlobalAccelerator.ts
|
|
267
272
|
|
|
@@ -279,7 +284,10 @@ var import_uuid = require("uuid");
|
|
|
279
284
|
|
|
280
285
|
// src/models/GlobalAcceleratorServiceException.ts
|
|
281
286
|
|
|
282
|
-
var
|
|
287
|
+
var GlobalAcceleratorServiceException = class _GlobalAcceleratorServiceException extends import_smithy_client.ServiceException {
|
|
288
|
+
static {
|
|
289
|
+
__name(this, "GlobalAcceleratorServiceException");
|
|
290
|
+
}
|
|
283
291
|
/**
|
|
284
292
|
* @internal
|
|
285
293
|
*/
|
|
@@ -288,8 +296,6 @@ var _GlobalAcceleratorServiceException = class _GlobalAcceleratorServiceExceptio
|
|
|
288
296
|
Object.setPrototypeOf(this, _GlobalAcceleratorServiceException.prototype);
|
|
289
297
|
}
|
|
290
298
|
};
|
|
291
|
-
__name(_GlobalAcceleratorServiceException, "GlobalAcceleratorServiceException");
|
|
292
|
-
var GlobalAcceleratorServiceException = _GlobalAcceleratorServiceException;
|
|
293
299
|
|
|
294
300
|
// src/models/models_0.ts
|
|
295
301
|
var IpAddressType = {
|
|
@@ -304,7 +310,13 @@ var AcceleratorStatus = {
|
|
|
304
310
|
DEPLOYED: "DEPLOYED",
|
|
305
311
|
IN_PROGRESS: "IN_PROGRESS"
|
|
306
312
|
};
|
|
307
|
-
var
|
|
313
|
+
var AcceleratorNotDisabledException = class _AcceleratorNotDisabledException extends GlobalAcceleratorServiceException {
|
|
314
|
+
static {
|
|
315
|
+
__name(this, "AcceleratorNotDisabledException");
|
|
316
|
+
}
|
|
317
|
+
name = "AcceleratorNotDisabledException";
|
|
318
|
+
$fault = "client";
|
|
319
|
+
Message;
|
|
308
320
|
/**
|
|
309
321
|
* @internal
|
|
310
322
|
*/
|
|
@@ -314,15 +326,17 @@ var _AcceleratorNotDisabledException = class _AcceleratorNotDisabledException ex
|
|
|
314
326
|
$fault: "client",
|
|
315
327
|
...opts
|
|
316
328
|
});
|
|
317
|
-
this.name = "AcceleratorNotDisabledException";
|
|
318
|
-
this.$fault = "client";
|
|
319
329
|
Object.setPrototypeOf(this, _AcceleratorNotDisabledException.prototype);
|
|
320
330
|
this.Message = opts.Message;
|
|
321
331
|
}
|
|
322
332
|
};
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
333
|
+
var AcceleratorNotFoundException = class _AcceleratorNotFoundException extends GlobalAcceleratorServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "AcceleratorNotFoundException");
|
|
336
|
+
}
|
|
337
|
+
name = "AcceleratorNotFoundException";
|
|
338
|
+
$fault = "client";
|
|
339
|
+
Message;
|
|
326
340
|
/**
|
|
327
341
|
* @internal
|
|
328
342
|
*/
|
|
@@ -332,15 +346,17 @@ var _AcceleratorNotFoundException = class _AcceleratorNotFoundException extends
|
|
|
332
346
|
$fault: "client",
|
|
333
347
|
...opts
|
|
334
348
|
});
|
|
335
|
-
this.name = "AcceleratorNotFoundException";
|
|
336
|
-
this.$fault = "client";
|
|
337
349
|
Object.setPrototypeOf(this, _AcceleratorNotFoundException.prototype);
|
|
338
350
|
this.Message = opts.Message;
|
|
339
351
|
}
|
|
340
352
|
};
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
353
|
+
var AccessDeniedException = class _AccessDeniedException extends GlobalAcceleratorServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "AccessDeniedException");
|
|
356
|
+
}
|
|
357
|
+
name = "AccessDeniedException";
|
|
358
|
+
$fault = "client";
|
|
359
|
+
Message;
|
|
344
360
|
/**
|
|
345
361
|
* @internal
|
|
346
362
|
*/
|
|
@@ -350,15 +366,17 @@ var _AccessDeniedException = class _AccessDeniedException extends GlobalAccelera
|
|
|
350
366
|
$fault: "client",
|
|
351
367
|
...opts
|
|
352
368
|
});
|
|
353
|
-
this.name = "AccessDeniedException";
|
|
354
|
-
this.$fault = "client";
|
|
355
369
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
356
370
|
this.Message = opts.Message;
|
|
357
371
|
}
|
|
358
372
|
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
373
|
+
var ConflictException = class _ConflictException extends GlobalAcceleratorServiceException {
|
|
374
|
+
static {
|
|
375
|
+
__name(this, "ConflictException");
|
|
376
|
+
}
|
|
377
|
+
name = "ConflictException";
|
|
378
|
+
$fault = "client";
|
|
379
|
+
Message;
|
|
362
380
|
/**
|
|
363
381
|
* @internal
|
|
364
382
|
*/
|
|
@@ -368,15 +386,17 @@ var _ConflictException = class _ConflictException extends GlobalAcceleratorServi
|
|
|
368
386
|
$fault: "client",
|
|
369
387
|
...opts
|
|
370
388
|
});
|
|
371
|
-
this.name = "ConflictException";
|
|
372
|
-
this.$fault = "client";
|
|
373
389
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
374
390
|
this.Message = opts.Message;
|
|
375
391
|
}
|
|
376
392
|
};
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
393
|
+
var EndpointAlreadyExistsException = class _EndpointAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
394
|
+
static {
|
|
395
|
+
__name(this, "EndpointAlreadyExistsException");
|
|
396
|
+
}
|
|
397
|
+
name = "EndpointAlreadyExistsException";
|
|
398
|
+
$fault = "client";
|
|
399
|
+
Message;
|
|
380
400
|
/**
|
|
381
401
|
* @internal
|
|
382
402
|
*/
|
|
@@ -386,15 +406,17 @@ var _EndpointAlreadyExistsException = class _EndpointAlreadyExistsException exte
|
|
|
386
406
|
$fault: "client",
|
|
387
407
|
...opts
|
|
388
408
|
});
|
|
389
|
-
this.name = "EndpointAlreadyExistsException";
|
|
390
|
-
this.$fault = "client";
|
|
391
409
|
Object.setPrototypeOf(this, _EndpointAlreadyExistsException.prototype);
|
|
392
410
|
this.Message = opts.Message;
|
|
393
411
|
}
|
|
394
412
|
};
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
413
|
+
var EndpointGroupNotFoundException = class _EndpointGroupNotFoundException extends GlobalAcceleratorServiceException {
|
|
414
|
+
static {
|
|
415
|
+
__name(this, "EndpointGroupNotFoundException");
|
|
416
|
+
}
|
|
417
|
+
name = "EndpointGroupNotFoundException";
|
|
418
|
+
$fault = "client";
|
|
419
|
+
Message;
|
|
398
420
|
/**
|
|
399
421
|
* @internal
|
|
400
422
|
*/
|
|
@@ -404,15 +426,17 @@ var _EndpointGroupNotFoundException = class _EndpointGroupNotFoundException exte
|
|
|
404
426
|
$fault: "client",
|
|
405
427
|
...opts
|
|
406
428
|
});
|
|
407
|
-
this.name = "EndpointGroupNotFoundException";
|
|
408
|
-
this.$fault = "client";
|
|
409
429
|
Object.setPrototypeOf(this, _EndpointGroupNotFoundException.prototype);
|
|
410
430
|
this.Message = opts.Message;
|
|
411
431
|
}
|
|
412
432
|
};
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
433
|
+
var InternalServiceErrorException = class _InternalServiceErrorException extends GlobalAcceleratorServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "InternalServiceErrorException");
|
|
436
|
+
}
|
|
437
|
+
name = "InternalServiceErrorException";
|
|
438
|
+
$fault = "server";
|
|
439
|
+
Message;
|
|
416
440
|
/**
|
|
417
441
|
* @internal
|
|
418
442
|
*/
|
|
@@ -422,15 +446,17 @@ var _InternalServiceErrorException = class _InternalServiceErrorException extend
|
|
|
422
446
|
$fault: "server",
|
|
423
447
|
...opts
|
|
424
448
|
});
|
|
425
|
-
this.name = "InternalServiceErrorException";
|
|
426
|
-
this.$fault = "server";
|
|
427
449
|
Object.setPrototypeOf(this, _InternalServiceErrorException.prototype);
|
|
428
450
|
this.Message = opts.Message;
|
|
429
451
|
}
|
|
430
452
|
};
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
453
|
+
var InvalidArgumentException = class _InvalidArgumentException extends GlobalAcceleratorServiceException {
|
|
454
|
+
static {
|
|
455
|
+
__name(this, "InvalidArgumentException");
|
|
456
|
+
}
|
|
457
|
+
name = "InvalidArgumentException";
|
|
458
|
+
$fault = "client";
|
|
459
|
+
Message;
|
|
434
460
|
/**
|
|
435
461
|
* @internal
|
|
436
462
|
*/
|
|
@@ -440,15 +466,17 @@ var _InvalidArgumentException = class _InvalidArgumentException extends GlobalAc
|
|
|
440
466
|
$fault: "client",
|
|
441
467
|
...opts
|
|
442
468
|
});
|
|
443
|
-
this.name = "InvalidArgumentException";
|
|
444
|
-
this.$fault = "client";
|
|
445
469
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
446
470
|
this.Message = opts.Message;
|
|
447
471
|
}
|
|
448
472
|
};
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
473
|
+
var LimitExceededException = class _LimitExceededException extends GlobalAcceleratorServiceException {
|
|
474
|
+
static {
|
|
475
|
+
__name(this, "LimitExceededException");
|
|
476
|
+
}
|
|
477
|
+
name = "LimitExceededException";
|
|
478
|
+
$fault = "client";
|
|
479
|
+
Message;
|
|
452
480
|
/**
|
|
453
481
|
* @internal
|
|
454
482
|
*/
|
|
@@ -458,20 +486,22 @@ var _LimitExceededException = class _LimitExceededException extends GlobalAccele
|
|
|
458
486
|
$fault: "client",
|
|
459
487
|
...opts
|
|
460
488
|
});
|
|
461
|
-
this.name = "LimitExceededException";
|
|
462
|
-
this.$fault = "client";
|
|
463
489
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
464
490
|
this.Message = opts.Message;
|
|
465
491
|
}
|
|
466
492
|
};
|
|
467
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
468
|
-
var LimitExceededException = _LimitExceededException;
|
|
469
493
|
var HealthState = {
|
|
470
494
|
HEALTHY: "HEALTHY",
|
|
471
495
|
INITIAL: "INITIAL",
|
|
472
496
|
UNHEALTHY: "UNHEALTHY"
|
|
473
497
|
};
|
|
474
|
-
var
|
|
498
|
+
var TransactionInProgressException = class _TransactionInProgressException extends GlobalAcceleratorServiceException {
|
|
499
|
+
static {
|
|
500
|
+
__name(this, "TransactionInProgressException");
|
|
501
|
+
}
|
|
502
|
+
name = "TransactionInProgressException";
|
|
503
|
+
$fault = "client";
|
|
504
|
+
Message;
|
|
475
505
|
/**
|
|
476
506
|
* @internal
|
|
477
507
|
*/
|
|
@@ -481,14 +511,10 @@ var _TransactionInProgressException = class _TransactionInProgressException exte
|
|
|
481
511
|
$fault: "client",
|
|
482
512
|
...opts
|
|
483
513
|
});
|
|
484
|
-
this.name = "TransactionInProgressException";
|
|
485
|
-
this.$fault = "client";
|
|
486
514
|
Object.setPrototypeOf(this, _TransactionInProgressException.prototype);
|
|
487
515
|
this.Message = opts.Message;
|
|
488
516
|
}
|
|
489
517
|
};
|
|
490
|
-
__name(_TransactionInProgressException, "TransactionInProgressException");
|
|
491
|
-
var TransactionInProgressException = _TransactionInProgressException;
|
|
492
518
|
var ByoipCidrState = {
|
|
493
519
|
ADVERTISING: "ADVERTISING",
|
|
494
520
|
DEPROVISIONED: "DEPROVISIONED",
|
|
@@ -502,7 +528,13 @@ var ByoipCidrState = {
|
|
|
502
528
|
PENDING_WITHDRAWING: "PENDING_WITHDRAWING",
|
|
503
529
|
READY: "READY"
|
|
504
530
|
};
|
|
505
|
-
var
|
|
531
|
+
var ByoipCidrNotFoundException = class _ByoipCidrNotFoundException extends GlobalAcceleratorServiceException {
|
|
532
|
+
static {
|
|
533
|
+
__name(this, "ByoipCidrNotFoundException");
|
|
534
|
+
}
|
|
535
|
+
name = "ByoipCidrNotFoundException";
|
|
536
|
+
$fault = "client";
|
|
537
|
+
Message;
|
|
506
538
|
/**
|
|
507
539
|
* @internal
|
|
508
540
|
*/
|
|
@@ -512,15 +544,17 @@ var _ByoipCidrNotFoundException = class _ByoipCidrNotFoundException extends Glob
|
|
|
512
544
|
$fault: "client",
|
|
513
545
|
...opts
|
|
514
546
|
});
|
|
515
|
-
this.name = "ByoipCidrNotFoundException";
|
|
516
|
-
this.$fault = "client";
|
|
517
547
|
Object.setPrototypeOf(this, _ByoipCidrNotFoundException.prototype);
|
|
518
548
|
this.Message = opts.Message;
|
|
519
549
|
}
|
|
520
550
|
};
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
551
|
+
var IncorrectCidrStateException = class _IncorrectCidrStateException extends GlobalAcceleratorServiceException {
|
|
552
|
+
static {
|
|
553
|
+
__name(this, "IncorrectCidrStateException");
|
|
554
|
+
}
|
|
555
|
+
name = "IncorrectCidrStateException";
|
|
556
|
+
$fault = "client";
|
|
557
|
+
Message;
|
|
524
558
|
/**
|
|
525
559
|
* @internal
|
|
526
560
|
*/
|
|
@@ -530,15 +564,17 @@ var _IncorrectCidrStateException = class _IncorrectCidrStateException extends Gl
|
|
|
530
564
|
$fault: "client",
|
|
531
565
|
...opts
|
|
532
566
|
});
|
|
533
|
-
this.name = "IncorrectCidrStateException";
|
|
534
|
-
this.$fault = "client";
|
|
535
567
|
Object.setPrototypeOf(this, _IncorrectCidrStateException.prototype);
|
|
536
568
|
this.Message = opts.Message;
|
|
537
569
|
}
|
|
538
570
|
};
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
571
|
+
var AssociatedEndpointGroupFoundException = class _AssociatedEndpointGroupFoundException extends GlobalAcceleratorServiceException {
|
|
572
|
+
static {
|
|
573
|
+
__name(this, "AssociatedEndpointGroupFoundException");
|
|
574
|
+
}
|
|
575
|
+
name = "AssociatedEndpointGroupFoundException";
|
|
576
|
+
$fault = "client";
|
|
577
|
+
Message;
|
|
542
578
|
/**
|
|
543
579
|
* @internal
|
|
544
580
|
*/
|
|
@@ -548,15 +584,17 @@ var _AssociatedEndpointGroupFoundException = class _AssociatedEndpointGroupFound
|
|
|
548
584
|
$fault: "client",
|
|
549
585
|
...opts
|
|
550
586
|
});
|
|
551
|
-
this.name = "AssociatedEndpointGroupFoundException";
|
|
552
|
-
this.$fault = "client";
|
|
553
587
|
Object.setPrototypeOf(this, _AssociatedEndpointGroupFoundException.prototype);
|
|
554
588
|
this.Message = opts.Message;
|
|
555
589
|
}
|
|
556
590
|
};
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
591
|
+
var AssociatedListenerFoundException = class _AssociatedListenerFoundException extends GlobalAcceleratorServiceException {
|
|
592
|
+
static {
|
|
593
|
+
__name(this, "AssociatedListenerFoundException");
|
|
594
|
+
}
|
|
595
|
+
name = "AssociatedListenerFoundException";
|
|
596
|
+
$fault = "client";
|
|
597
|
+
Message;
|
|
560
598
|
/**
|
|
561
599
|
* @internal
|
|
562
600
|
*/
|
|
@@ -566,15 +604,17 @@ var _AssociatedListenerFoundException = class _AssociatedListenerFoundException
|
|
|
566
604
|
$fault: "client",
|
|
567
605
|
...opts
|
|
568
606
|
});
|
|
569
|
-
this.name = "AssociatedListenerFoundException";
|
|
570
|
-
this.$fault = "client";
|
|
571
607
|
Object.setPrototypeOf(this, _AssociatedListenerFoundException.prototype);
|
|
572
608
|
this.Message = opts.Message;
|
|
573
609
|
}
|
|
574
610
|
};
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
611
|
+
var AttachmentNotFoundException = class _AttachmentNotFoundException extends GlobalAcceleratorServiceException {
|
|
612
|
+
static {
|
|
613
|
+
__name(this, "AttachmentNotFoundException");
|
|
614
|
+
}
|
|
615
|
+
name = "AttachmentNotFoundException";
|
|
616
|
+
$fault = "client";
|
|
617
|
+
Message;
|
|
578
618
|
/**
|
|
579
619
|
* @internal
|
|
580
620
|
*/
|
|
@@ -584,14 +624,10 @@ var _AttachmentNotFoundException = class _AttachmentNotFoundException extends Gl
|
|
|
584
624
|
$fault: "client",
|
|
585
625
|
...opts
|
|
586
626
|
});
|
|
587
|
-
this.name = "AttachmentNotFoundException";
|
|
588
|
-
this.$fault = "client";
|
|
589
627
|
Object.setPrototypeOf(this, _AttachmentNotFoundException.prototype);
|
|
590
628
|
this.Message = opts.Message;
|
|
591
629
|
}
|
|
592
630
|
};
|
|
593
|
-
__name(_AttachmentNotFoundException, "AttachmentNotFoundException");
|
|
594
|
-
var AttachmentNotFoundException = _AttachmentNotFoundException;
|
|
595
631
|
var ClientAffinity = {
|
|
596
632
|
NONE: "NONE",
|
|
597
633
|
SOURCE_IP: "SOURCE_IP"
|
|
@@ -608,7 +644,13 @@ var Protocol = {
|
|
|
608
644
|
TCP: "TCP",
|
|
609
645
|
UDP: "UDP"
|
|
610
646
|
};
|
|
611
|
-
var
|
|
647
|
+
var EndpointGroupAlreadyExistsException = class _EndpointGroupAlreadyExistsException extends GlobalAcceleratorServiceException {
|
|
648
|
+
static {
|
|
649
|
+
__name(this, "EndpointGroupAlreadyExistsException");
|
|
650
|
+
}
|
|
651
|
+
name = "EndpointGroupAlreadyExistsException";
|
|
652
|
+
$fault = "client";
|
|
653
|
+
Message;
|
|
612
654
|
/**
|
|
613
655
|
* @internal
|
|
614
656
|
*/
|
|
@@ -618,15 +660,17 @@ var _EndpointGroupAlreadyExistsException = class _EndpointGroupAlreadyExistsExce
|
|
|
618
660
|
$fault: "client",
|
|
619
661
|
...opts
|
|
620
662
|
});
|
|
621
|
-
this.name = "EndpointGroupAlreadyExistsException";
|
|
622
|
-
this.$fault = "client";
|
|
623
663
|
Object.setPrototypeOf(this, _EndpointGroupAlreadyExistsException.prototype);
|
|
624
664
|
this.Message = opts.Message;
|
|
625
665
|
}
|
|
626
666
|
};
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
667
|
+
var InvalidPortRangeException = class _InvalidPortRangeException extends GlobalAcceleratorServiceException {
|
|
668
|
+
static {
|
|
669
|
+
__name(this, "InvalidPortRangeException");
|
|
670
|
+
}
|
|
671
|
+
name = "InvalidPortRangeException";
|
|
672
|
+
$fault = "client";
|
|
673
|
+
Message;
|
|
630
674
|
/**
|
|
631
675
|
* @internal
|
|
632
676
|
*/
|
|
@@ -636,15 +680,17 @@ var _InvalidPortRangeException = class _InvalidPortRangeException extends Global
|
|
|
636
680
|
$fault: "client",
|
|
637
681
|
...opts
|
|
638
682
|
});
|
|
639
|
-
this.name = "InvalidPortRangeException";
|
|
640
|
-
this.$fault = "client";
|
|
641
683
|
Object.setPrototypeOf(this, _InvalidPortRangeException.prototype);
|
|
642
684
|
this.Message = opts.Message;
|
|
643
685
|
}
|
|
644
686
|
};
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
687
|
+
var ListenerNotFoundException = class _ListenerNotFoundException extends GlobalAcceleratorServiceException {
|
|
688
|
+
static {
|
|
689
|
+
__name(this, "ListenerNotFoundException");
|
|
690
|
+
}
|
|
691
|
+
name = "ListenerNotFoundException";
|
|
692
|
+
$fault = "client";
|
|
693
|
+
Message;
|
|
648
694
|
/**
|
|
649
695
|
* @internal
|
|
650
696
|
*/
|
|
@@ -654,14 +700,10 @@ var _ListenerNotFoundException = class _ListenerNotFoundException extends Global
|
|
|
654
700
|
$fault: "client",
|
|
655
701
|
...opts
|
|
656
702
|
});
|
|
657
|
-
this.name = "ListenerNotFoundException";
|
|
658
|
-
this.$fault = "client";
|
|
659
703
|
Object.setPrototypeOf(this, _ListenerNotFoundException.prototype);
|
|
660
704
|
this.Message = opts.Message;
|
|
661
705
|
}
|
|
662
706
|
};
|
|
663
|
-
__name(_ListenerNotFoundException, "ListenerNotFoundException");
|
|
664
|
-
var ListenerNotFoundException = _ListenerNotFoundException;
|
|
665
707
|
var HealthCheckProtocol = {
|
|
666
708
|
HTTP: "HTTP",
|
|
667
709
|
HTTPS: "HTTPS",
|
|
@@ -671,7 +713,13 @@ var CustomRoutingDestinationTrafficState = {
|
|
|
671
713
|
ALLOW: "ALLOW",
|
|
672
714
|
DENY: "DENY"
|
|
673
715
|
};
|
|
674
|
-
var
|
|
716
|
+
var EndpointNotFoundException = class _EndpointNotFoundException extends GlobalAcceleratorServiceException {
|
|
717
|
+
static {
|
|
718
|
+
__name(this, "EndpointNotFoundException");
|
|
719
|
+
}
|
|
720
|
+
name = "EndpointNotFoundException";
|
|
721
|
+
$fault = "client";
|
|
722
|
+
Message;
|
|
675
723
|
/**
|
|
676
724
|
* @internal
|
|
677
725
|
*/
|
|
@@ -681,15 +729,17 @@ var _EndpointNotFoundException = class _EndpointNotFoundException extends Global
|
|
|
681
729
|
$fault: "client",
|
|
682
730
|
...opts
|
|
683
731
|
});
|
|
684
|
-
this.name = "EndpointNotFoundException";
|
|
685
|
-
this.$fault = "client";
|
|
686
732
|
Object.setPrototypeOf(this, _EndpointNotFoundException.prototype);
|
|
687
733
|
this.Message = opts.Message;
|
|
688
734
|
}
|
|
689
735
|
};
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
736
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends GlobalAcceleratorServiceException {
|
|
737
|
+
static {
|
|
738
|
+
__name(this, "InvalidNextTokenException");
|
|
739
|
+
}
|
|
740
|
+
name = "InvalidNextTokenException";
|
|
741
|
+
$fault = "client";
|
|
742
|
+
Message;
|
|
693
743
|
/**
|
|
694
744
|
* @internal
|
|
695
745
|
*/
|
|
@@ -699,14 +749,10 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends Global
|
|
|
699
749
|
$fault: "client",
|
|
700
750
|
...opts
|
|
701
751
|
});
|
|
702
|
-
this.name = "InvalidNextTokenException";
|
|
703
|
-
this.$fault = "client";
|
|
704
752
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
705
753
|
this.Message = opts.Message;
|
|
706
754
|
}
|
|
707
755
|
};
|
|
708
|
-
__name(_InvalidNextTokenException, "InvalidNextTokenException");
|
|
709
|
-
var InvalidNextTokenException = _InvalidNextTokenException;
|
|
710
756
|
|
|
711
757
|
// src/protocols/Aws_json1_1.ts
|
|
712
758
|
var se_AddCustomRoutingEndpointsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2334,785 +2380,841 @@ function sharedHeaders(operation) {
|
|
|
2334
2380
|
__name(sharedHeaders, "sharedHeaders");
|
|
2335
2381
|
|
|
2336
2382
|
// src/commands/AddCustomRoutingEndpointsCommand.ts
|
|
2337
|
-
var
|
|
2383
|
+
var AddCustomRoutingEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2338
2384
|
return [
|
|
2339
2385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2340
2386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2341
2387
|
];
|
|
2342
2388
|
}).s("GlobalAccelerator_V20180706", "AddCustomRoutingEndpoints", {}).n("GlobalAcceleratorClient", "AddCustomRoutingEndpointsCommand").f(void 0, void 0).ser(se_AddCustomRoutingEndpointsCommand).de(de_AddCustomRoutingEndpointsCommand).build() {
|
|
2389
|
+
static {
|
|
2390
|
+
__name(this, "AddCustomRoutingEndpointsCommand");
|
|
2391
|
+
}
|
|
2343
2392
|
};
|
|
2344
|
-
__name(_AddCustomRoutingEndpointsCommand, "AddCustomRoutingEndpointsCommand");
|
|
2345
|
-
var AddCustomRoutingEndpointsCommand = _AddCustomRoutingEndpointsCommand;
|
|
2346
2393
|
|
|
2347
2394
|
// src/commands/AddEndpointsCommand.ts
|
|
2348
2395
|
|
|
2349
2396
|
|
|
2350
2397
|
|
|
2351
|
-
var
|
|
2398
|
+
var AddEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2352
2399
|
return [
|
|
2353
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2354
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2355
2402
|
];
|
|
2356
2403
|
}).s("GlobalAccelerator_V20180706", "AddEndpoints", {}).n("GlobalAcceleratorClient", "AddEndpointsCommand").f(void 0, void 0).ser(se_AddEndpointsCommand).de(de_AddEndpointsCommand).build() {
|
|
2404
|
+
static {
|
|
2405
|
+
__name(this, "AddEndpointsCommand");
|
|
2406
|
+
}
|
|
2357
2407
|
};
|
|
2358
|
-
__name(_AddEndpointsCommand, "AddEndpointsCommand");
|
|
2359
|
-
var AddEndpointsCommand = _AddEndpointsCommand;
|
|
2360
2408
|
|
|
2361
2409
|
// src/commands/AdvertiseByoipCidrCommand.ts
|
|
2362
2410
|
|
|
2363
2411
|
|
|
2364
2412
|
|
|
2365
|
-
var
|
|
2413
|
+
var AdvertiseByoipCidrCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2366
2414
|
return [
|
|
2367
2415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2368
2416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2369
2417
|
];
|
|
2370
2418
|
}).s("GlobalAccelerator_V20180706", "AdvertiseByoipCidr", {}).n("GlobalAcceleratorClient", "AdvertiseByoipCidrCommand").f(void 0, void 0).ser(se_AdvertiseByoipCidrCommand).de(de_AdvertiseByoipCidrCommand).build() {
|
|
2419
|
+
static {
|
|
2420
|
+
__name(this, "AdvertiseByoipCidrCommand");
|
|
2421
|
+
}
|
|
2371
2422
|
};
|
|
2372
|
-
__name(_AdvertiseByoipCidrCommand, "AdvertiseByoipCidrCommand");
|
|
2373
|
-
var AdvertiseByoipCidrCommand = _AdvertiseByoipCidrCommand;
|
|
2374
2423
|
|
|
2375
2424
|
// src/commands/AllowCustomRoutingTrafficCommand.ts
|
|
2376
2425
|
|
|
2377
2426
|
|
|
2378
2427
|
|
|
2379
|
-
var
|
|
2428
|
+
var AllowCustomRoutingTrafficCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2380
2429
|
return [
|
|
2381
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2382
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2383
2432
|
];
|
|
2384
2433
|
}).s("GlobalAccelerator_V20180706", "AllowCustomRoutingTraffic", {}).n("GlobalAcceleratorClient", "AllowCustomRoutingTrafficCommand").f(void 0, void 0).ser(se_AllowCustomRoutingTrafficCommand).de(de_AllowCustomRoutingTrafficCommand).build() {
|
|
2434
|
+
static {
|
|
2435
|
+
__name(this, "AllowCustomRoutingTrafficCommand");
|
|
2436
|
+
}
|
|
2385
2437
|
};
|
|
2386
|
-
__name(_AllowCustomRoutingTrafficCommand, "AllowCustomRoutingTrafficCommand");
|
|
2387
|
-
var AllowCustomRoutingTrafficCommand = _AllowCustomRoutingTrafficCommand;
|
|
2388
2438
|
|
|
2389
2439
|
// src/commands/CreateAcceleratorCommand.ts
|
|
2390
2440
|
|
|
2391
2441
|
|
|
2392
2442
|
|
|
2393
|
-
var
|
|
2443
|
+
var CreateAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2394
2444
|
return [
|
|
2395
2445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2396
2446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2397
2447
|
];
|
|
2398
2448
|
}).s("GlobalAccelerator_V20180706", "CreateAccelerator", {}).n("GlobalAcceleratorClient", "CreateAcceleratorCommand").f(void 0, void 0).ser(se_CreateAcceleratorCommand).de(de_CreateAcceleratorCommand).build() {
|
|
2449
|
+
static {
|
|
2450
|
+
__name(this, "CreateAcceleratorCommand");
|
|
2451
|
+
}
|
|
2399
2452
|
};
|
|
2400
|
-
__name(_CreateAcceleratorCommand, "CreateAcceleratorCommand");
|
|
2401
|
-
var CreateAcceleratorCommand = _CreateAcceleratorCommand;
|
|
2402
2453
|
|
|
2403
2454
|
// src/commands/CreateCrossAccountAttachmentCommand.ts
|
|
2404
2455
|
|
|
2405
2456
|
|
|
2406
2457
|
|
|
2407
|
-
var
|
|
2458
|
+
var CreateCrossAccountAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2408
2459
|
return [
|
|
2409
2460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2410
2461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2411
2462
|
];
|
|
2412
2463
|
}).s("GlobalAccelerator_V20180706", "CreateCrossAccountAttachment", {}).n("GlobalAcceleratorClient", "CreateCrossAccountAttachmentCommand").f(void 0, void 0).ser(se_CreateCrossAccountAttachmentCommand).de(de_CreateCrossAccountAttachmentCommand).build() {
|
|
2464
|
+
static {
|
|
2465
|
+
__name(this, "CreateCrossAccountAttachmentCommand");
|
|
2466
|
+
}
|
|
2413
2467
|
};
|
|
2414
|
-
__name(_CreateCrossAccountAttachmentCommand, "CreateCrossAccountAttachmentCommand");
|
|
2415
|
-
var CreateCrossAccountAttachmentCommand = _CreateCrossAccountAttachmentCommand;
|
|
2416
2468
|
|
|
2417
2469
|
// src/commands/CreateCustomRoutingAcceleratorCommand.ts
|
|
2418
2470
|
|
|
2419
2471
|
|
|
2420
2472
|
|
|
2421
|
-
var
|
|
2473
|
+
var CreateCustomRoutingAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2422
2474
|
return [
|
|
2423
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2424
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2425
2477
|
];
|
|
2426
2478
|
}).s("GlobalAccelerator_V20180706", "CreateCustomRoutingAccelerator", {}).n("GlobalAcceleratorClient", "CreateCustomRoutingAcceleratorCommand").f(void 0, void 0).ser(se_CreateCustomRoutingAcceleratorCommand).de(de_CreateCustomRoutingAcceleratorCommand).build() {
|
|
2479
|
+
static {
|
|
2480
|
+
__name(this, "CreateCustomRoutingAcceleratorCommand");
|
|
2481
|
+
}
|
|
2427
2482
|
};
|
|
2428
|
-
__name(_CreateCustomRoutingAcceleratorCommand, "CreateCustomRoutingAcceleratorCommand");
|
|
2429
|
-
var CreateCustomRoutingAcceleratorCommand = _CreateCustomRoutingAcceleratorCommand;
|
|
2430
2483
|
|
|
2431
2484
|
// src/commands/CreateCustomRoutingEndpointGroupCommand.ts
|
|
2432
2485
|
|
|
2433
2486
|
|
|
2434
2487
|
|
|
2435
|
-
var
|
|
2488
|
+
var CreateCustomRoutingEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2436
2489
|
return [
|
|
2437
2490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2438
2491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2439
2492
|
];
|
|
2440
2493
|
}).s("GlobalAccelerator_V20180706", "CreateCustomRoutingEndpointGroup", {}).n("GlobalAcceleratorClient", "CreateCustomRoutingEndpointGroupCommand").f(void 0, void 0).ser(se_CreateCustomRoutingEndpointGroupCommand).de(de_CreateCustomRoutingEndpointGroupCommand).build() {
|
|
2494
|
+
static {
|
|
2495
|
+
__name(this, "CreateCustomRoutingEndpointGroupCommand");
|
|
2496
|
+
}
|
|
2441
2497
|
};
|
|
2442
|
-
__name(_CreateCustomRoutingEndpointGroupCommand, "CreateCustomRoutingEndpointGroupCommand");
|
|
2443
|
-
var CreateCustomRoutingEndpointGroupCommand = _CreateCustomRoutingEndpointGroupCommand;
|
|
2444
2498
|
|
|
2445
2499
|
// src/commands/CreateCustomRoutingListenerCommand.ts
|
|
2446
2500
|
|
|
2447
2501
|
|
|
2448
2502
|
|
|
2449
|
-
var
|
|
2503
|
+
var CreateCustomRoutingListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2450
2504
|
return [
|
|
2451
2505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2452
2506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2453
2507
|
];
|
|
2454
2508
|
}).s("GlobalAccelerator_V20180706", "CreateCustomRoutingListener", {}).n("GlobalAcceleratorClient", "CreateCustomRoutingListenerCommand").f(void 0, void 0).ser(se_CreateCustomRoutingListenerCommand).de(de_CreateCustomRoutingListenerCommand).build() {
|
|
2509
|
+
static {
|
|
2510
|
+
__name(this, "CreateCustomRoutingListenerCommand");
|
|
2511
|
+
}
|
|
2455
2512
|
};
|
|
2456
|
-
__name(_CreateCustomRoutingListenerCommand, "CreateCustomRoutingListenerCommand");
|
|
2457
|
-
var CreateCustomRoutingListenerCommand = _CreateCustomRoutingListenerCommand;
|
|
2458
2513
|
|
|
2459
2514
|
// src/commands/CreateEndpointGroupCommand.ts
|
|
2460
2515
|
|
|
2461
2516
|
|
|
2462
2517
|
|
|
2463
|
-
var
|
|
2518
|
+
var CreateEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2464
2519
|
return [
|
|
2465
2520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2466
2521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2467
2522
|
];
|
|
2468
2523
|
}).s("GlobalAccelerator_V20180706", "CreateEndpointGroup", {}).n("GlobalAcceleratorClient", "CreateEndpointGroupCommand").f(void 0, void 0).ser(se_CreateEndpointGroupCommand).de(de_CreateEndpointGroupCommand).build() {
|
|
2524
|
+
static {
|
|
2525
|
+
__name(this, "CreateEndpointGroupCommand");
|
|
2526
|
+
}
|
|
2469
2527
|
};
|
|
2470
|
-
__name(_CreateEndpointGroupCommand, "CreateEndpointGroupCommand");
|
|
2471
|
-
var CreateEndpointGroupCommand = _CreateEndpointGroupCommand;
|
|
2472
2528
|
|
|
2473
2529
|
// src/commands/CreateListenerCommand.ts
|
|
2474
2530
|
|
|
2475
2531
|
|
|
2476
2532
|
|
|
2477
|
-
var
|
|
2533
|
+
var CreateListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2478
2534
|
return [
|
|
2479
2535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2480
2536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2481
2537
|
];
|
|
2482
2538
|
}).s("GlobalAccelerator_V20180706", "CreateListener", {}).n("GlobalAcceleratorClient", "CreateListenerCommand").f(void 0, void 0).ser(se_CreateListenerCommand).de(de_CreateListenerCommand).build() {
|
|
2539
|
+
static {
|
|
2540
|
+
__name(this, "CreateListenerCommand");
|
|
2541
|
+
}
|
|
2483
2542
|
};
|
|
2484
|
-
__name(_CreateListenerCommand, "CreateListenerCommand");
|
|
2485
|
-
var CreateListenerCommand = _CreateListenerCommand;
|
|
2486
2543
|
|
|
2487
2544
|
// src/commands/DeleteAcceleratorCommand.ts
|
|
2488
2545
|
|
|
2489
2546
|
|
|
2490
2547
|
|
|
2491
|
-
var
|
|
2548
|
+
var DeleteAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2492
2549
|
return [
|
|
2493
2550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2494
2551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2495
2552
|
];
|
|
2496
2553
|
}).s("GlobalAccelerator_V20180706", "DeleteAccelerator", {}).n("GlobalAcceleratorClient", "DeleteAcceleratorCommand").f(void 0, void 0).ser(se_DeleteAcceleratorCommand).de(de_DeleteAcceleratorCommand).build() {
|
|
2554
|
+
static {
|
|
2555
|
+
__name(this, "DeleteAcceleratorCommand");
|
|
2556
|
+
}
|
|
2497
2557
|
};
|
|
2498
|
-
__name(_DeleteAcceleratorCommand, "DeleteAcceleratorCommand");
|
|
2499
|
-
var DeleteAcceleratorCommand = _DeleteAcceleratorCommand;
|
|
2500
2558
|
|
|
2501
2559
|
// src/commands/DeleteCrossAccountAttachmentCommand.ts
|
|
2502
2560
|
|
|
2503
2561
|
|
|
2504
2562
|
|
|
2505
|
-
var
|
|
2563
|
+
var DeleteCrossAccountAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2506
2564
|
return [
|
|
2507
2565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2508
2566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2509
2567
|
];
|
|
2510
2568
|
}).s("GlobalAccelerator_V20180706", "DeleteCrossAccountAttachment", {}).n("GlobalAcceleratorClient", "DeleteCrossAccountAttachmentCommand").f(void 0, void 0).ser(se_DeleteCrossAccountAttachmentCommand).de(de_DeleteCrossAccountAttachmentCommand).build() {
|
|
2569
|
+
static {
|
|
2570
|
+
__name(this, "DeleteCrossAccountAttachmentCommand");
|
|
2571
|
+
}
|
|
2511
2572
|
};
|
|
2512
|
-
__name(_DeleteCrossAccountAttachmentCommand, "DeleteCrossAccountAttachmentCommand");
|
|
2513
|
-
var DeleteCrossAccountAttachmentCommand = _DeleteCrossAccountAttachmentCommand;
|
|
2514
2573
|
|
|
2515
2574
|
// src/commands/DeleteCustomRoutingAcceleratorCommand.ts
|
|
2516
2575
|
|
|
2517
2576
|
|
|
2518
2577
|
|
|
2519
|
-
var
|
|
2578
|
+
var DeleteCustomRoutingAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2520
2579
|
return [
|
|
2521
2580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2522
2581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2523
2582
|
];
|
|
2524
2583
|
}).s("GlobalAccelerator_V20180706", "DeleteCustomRoutingAccelerator", {}).n("GlobalAcceleratorClient", "DeleteCustomRoutingAcceleratorCommand").f(void 0, void 0).ser(se_DeleteCustomRoutingAcceleratorCommand).de(de_DeleteCustomRoutingAcceleratorCommand).build() {
|
|
2584
|
+
static {
|
|
2585
|
+
__name(this, "DeleteCustomRoutingAcceleratorCommand");
|
|
2586
|
+
}
|
|
2525
2587
|
};
|
|
2526
|
-
__name(_DeleteCustomRoutingAcceleratorCommand, "DeleteCustomRoutingAcceleratorCommand");
|
|
2527
|
-
var DeleteCustomRoutingAcceleratorCommand = _DeleteCustomRoutingAcceleratorCommand;
|
|
2528
2588
|
|
|
2529
2589
|
// src/commands/DeleteCustomRoutingEndpointGroupCommand.ts
|
|
2530
2590
|
|
|
2531
2591
|
|
|
2532
2592
|
|
|
2533
|
-
var
|
|
2593
|
+
var DeleteCustomRoutingEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2534
2594
|
return [
|
|
2535
2595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2536
2596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2537
2597
|
];
|
|
2538
2598
|
}).s("GlobalAccelerator_V20180706", "DeleteCustomRoutingEndpointGroup", {}).n("GlobalAcceleratorClient", "DeleteCustomRoutingEndpointGroupCommand").f(void 0, void 0).ser(se_DeleteCustomRoutingEndpointGroupCommand).de(de_DeleteCustomRoutingEndpointGroupCommand).build() {
|
|
2599
|
+
static {
|
|
2600
|
+
__name(this, "DeleteCustomRoutingEndpointGroupCommand");
|
|
2601
|
+
}
|
|
2539
2602
|
};
|
|
2540
|
-
__name(_DeleteCustomRoutingEndpointGroupCommand, "DeleteCustomRoutingEndpointGroupCommand");
|
|
2541
|
-
var DeleteCustomRoutingEndpointGroupCommand = _DeleteCustomRoutingEndpointGroupCommand;
|
|
2542
2603
|
|
|
2543
2604
|
// src/commands/DeleteCustomRoutingListenerCommand.ts
|
|
2544
2605
|
|
|
2545
2606
|
|
|
2546
2607
|
|
|
2547
|
-
var
|
|
2608
|
+
var DeleteCustomRoutingListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2548
2609
|
return [
|
|
2549
2610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2550
2611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2551
2612
|
];
|
|
2552
2613
|
}).s("GlobalAccelerator_V20180706", "DeleteCustomRoutingListener", {}).n("GlobalAcceleratorClient", "DeleteCustomRoutingListenerCommand").f(void 0, void 0).ser(se_DeleteCustomRoutingListenerCommand).de(de_DeleteCustomRoutingListenerCommand).build() {
|
|
2614
|
+
static {
|
|
2615
|
+
__name(this, "DeleteCustomRoutingListenerCommand");
|
|
2616
|
+
}
|
|
2553
2617
|
};
|
|
2554
|
-
__name(_DeleteCustomRoutingListenerCommand, "DeleteCustomRoutingListenerCommand");
|
|
2555
|
-
var DeleteCustomRoutingListenerCommand = _DeleteCustomRoutingListenerCommand;
|
|
2556
2618
|
|
|
2557
2619
|
// src/commands/DeleteEndpointGroupCommand.ts
|
|
2558
2620
|
|
|
2559
2621
|
|
|
2560
2622
|
|
|
2561
|
-
var
|
|
2623
|
+
var DeleteEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2562
2624
|
return [
|
|
2563
2625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2564
2626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2565
2627
|
];
|
|
2566
2628
|
}).s("GlobalAccelerator_V20180706", "DeleteEndpointGroup", {}).n("GlobalAcceleratorClient", "DeleteEndpointGroupCommand").f(void 0, void 0).ser(se_DeleteEndpointGroupCommand).de(de_DeleteEndpointGroupCommand).build() {
|
|
2629
|
+
static {
|
|
2630
|
+
__name(this, "DeleteEndpointGroupCommand");
|
|
2631
|
+
}
|
|
2567
2632
|
};
|
|
2568
|
-
__name(_DeleteEndpointGroupCommand, "DeleteEndpointGroupCommand");
|
|
2569
|
-
var DeleteEndpointGroupCommand = _DeleteEndpointGroupCommand;
|
|
2570
2633
|
|
|
2571
2634
|
// src/commands/DeleteListenerCommand.ts
|
|
2572
2635
|
|
|
2573
2636
|
|
|
2574
2637
|
|
|
2575
|
-
var
|
|
2638
|
+
var DeleteListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2576
2639
|
return [
|
|
2577
2640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2578
2641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2579
2642
|
];
|
|
2580
2643
|
}).s("GlobalAccelerator_V20180706", "DeleteListener", {}).n("GlobalAcceleratorClient", "DeleteListenerCommand").f(void 0, void 0).ser(se_DeleteListenerCommand).de(de_DeleteListenerCommand).build() {
|
|
2644
|
+
static {
|
|
2645
|
+
__name(this, "DeleteListenerCommand");
|
|
2646
|
+
}
|
|
2581
2647
|
};
|
|
2582
|
-
__name(_DeleteListenerCommand, "DeleteListenerCommand");
|
|
2583
|
-
var DeleteListenerCommand = _DeleteListenerCommand;
|
|
2584
2648
|
|
|
2585
2649
|
// src/commands/DenyCustomRoutingTrafficCommand.ts
|
|
2586
2650
|
|
|
2587
2651
|
|
|
2588
2652
|
|
|
2589
|
-
var
|
|
2653
|
+
var DenyCustomRoutingTrafficCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2590
2654
|
return [
|
|
2591
2655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2592
2656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2593
2657
|
];
|
|
2594
2658
|
}).s("GlobalAccelerator_V20180706", "DenyCustomRoutingTraffic", {}).n("GlobalAcceleratorClient", "DenyCustomRoutingTrafficCommand").f(void 0, void 0).ser(se_DenyCustomRoutingTrafficCommand).de(de_DenyCustomRoutingTrafficCommand).build() {
|
|
2659
|
+
static {
|
|
2660
|
+
__name(this, "DenyCustomRoutingTrafficCommand");
|
|
2661
|
+
}
|
|
2595
2662
|
};
|
|
2596
|
-
__name(_DenyCustomRoutingTrafficCommand, "DenyCustomRoutingTrafficCommand");
|
|
2597
|
-
var DenyCustomRoutingTrafficCommand = _DenyCustomRoutingTrafficCommand;
|
|
2598
2663
|
|
|
2599
2664
|
// src/commands/DeprovisionByoipCidrCommand.ts
|
|
2600
2665
|
|
|
2601
2666
|
|
|
2602
2667
|
|
|
2603
|
-
var
|
|
2668
|
+
var DeprovisionByoipCidrCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2604
2669
|
return [
|
|
2605
2670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2606
2671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2607
2672
|
];
|
|
2608
2673
|
}).s("GlobalAccelerator_V20180706", "DeprovisionByoipCidr", {}).n("GlobalAcceleratorClient", "DeprovisionByoipCidrCommand").f(void 0, void 0).ser(se_DeprovisionByoipCidrCommand).de(de_DeprovisionByoipCidrCommand).build() {
|
|
2674
|
+
static {
|
|
2675
|
+
__name(this, "DeprovisionByoipCidrCommand");
|
|
2676
|
+
}
|
|
2609
2677
|
};
|
|
2610
|
-
__name(_DeprovisionByoipCidrCommand, "DeprovisionByoipCidrCommand");
|
|
2611
|
-
var DeprovisionByoipCidrCommand = _DeprovisionByoipCidrCommand;
|
|
2612
2678
|
|
|
2613
2679
|
// src/commands/DescribeAcceleratorAttributesCommand.ts
|
|
2614
2680
|
|
|
2615
2681
|
|
|
2616
2682
|
|
|
2617
|
-
var
|
|
2683
|
+
var DescribeAcceleratorAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2618
2684
|
return [
|
|
2619
2685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2620
2686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2621
2687
|
];
|
|
2622
2688
|
}).s("GlobalAccelerator_V20180706", "DescribeAcceleratorAttributes", {}).n("GlobalAcceleratorClient", "DescribeAcceleratorAttributesCommand").f(void 0, void 0).ser(se_DescribeAcceleratorAttributesCommand).de(de_DescribeAcceleratorAttributesCommand).build() {
|
|
2689
|
+
static {
|
|
2690
|
+
__name(this, "DescribeAcceleratorAttributesCommand");
|
|
2691
|
+
}
|
|
2623
2692
|
};
|
|
2624
|
-
__name(_DescribeAcceleratorAttributesCommand, "DescribeAcceleratorAttributesCommand");
|
|
2625
|
-
var DescribeAcceleratorAttributesCommand = _DescribeAcceleratorAttributesCommand;
|
|
2626
2693
|
|
|
2627
2694
|
// src/commands/DescribeAcceleratorCommand.ts
|
|
2628
2695
|
|
|
2629
2696
|
|
|
2630
2697
|
|
|
2631
|
-
var
|
|
2698
|
+
var DescribeAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2632
2699
|
return [
|
|
2633
2700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2634
2701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2635
2702
|
];
|
|
2636
2703
|
}).s("GlobalAccelerator_V20180706", "DescribeAccelerator", {}).n("GlobalAcceleratorClient", "DescribeAcceleratorCommand").f(void 0, void 0).ser(se_DescribeAcceleratorCommand).de(de_DescribeAcceleratorCommand).build() {
|
|
2704
|
+
static {
|
|
2705
|
+
__name(this, "DescribeAcceleratorCommand");
|
|
2706
|
+
}
|
|
2637
2707
|
};
|
|
2638
|
-
__name(_DescribeAcceleratorCommand, "DescribeAcceleratorCommand");
|
|
2639
|
-
var DescribeAcceleratorCommand = _DescribeAcceleratorCommand;
|
|
2640
2708
|
|
|
2641
2709
|
// src/commands/DescribeCrossAccountAttachmentCommand.ts
|
|
2642
2710
|
|
|
2643
2711
|
|
|
2644
2712
|
|
|
2645
|
-
var
|
|
2713
|
+
var DescribeCrossAccountAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2646
2714
|
return [
|
|
2647
2715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2648
2716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2649
2717
|
];
|
|
2650
2718
|
}).s("GlobalAccelerator_V20180706", "DescribeCrossAccountAttachment", {}).n("GlobalAcceleratorClient", "DescribeCrossAccountAttachmentCommand").f(void 0, void 0).ser(se_DescribeCrossAccountAttachmentCommand).de(de_DescribeCrossAccountAttachmentCommand).build() {
|
|
2719
|
+
static {
|
|
2720
|
+
__name(this, "DescribeCrossAccountAttachmentCommand");
|
|
2721
|
+
}
|
|
2651
2722
|
};
|
|
2652
|
-
__name(_DescribeCrossAccountAttachmentCommand, "DescribeCrossAccountAttachmentCommand");
|
|
2653
|
-
var DescribeCrossAccountAttachmentCommand = _DescribeCrossAccountAttachmentCommand;
|
|
2654
2723
|
|
|
2655
2724
|
// src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts
|
|
2656
2725
|
|
|
2657
2726
|
|
|
2658
2727
|
|
|
2659
|
-
var
|
|
2728
|
+
var DescribeCustomRoutingAcceleratorAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2660
2729
|
return [
|
|
2661
2730
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2662
2731
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2663
2732
|
];
|
|
2664
2733
|
}).s("GlobalAccelerator_V20180706", "DescribeCustomRoutingAcceleratorAttributes", {}).n("GlobalAcceleratorClient", "DescribeCustomRoutingAcceleratorAttributesCommand").f(void 0, void 0).ser(se_DescribeCustomRoutingAcceleratorAttributesCommand).de(de_DescribeCustomRoutingAcceleratorAttributesCommand).build() {
|
|
2734
|
+
static {
|
|
2735
|
+
__name(this, "DescribeCustomRoutingAcceleratorAttributesCommand");
|
|
2736
|
+
}
|
|
2665
2737
|
};
|
|
2666
|
-
__name(_DescribeCustomRoutingAcceleratorAttributesCommand, "DescribeCustomRoutingAcceleratorAttributesCommand");
|
|
2667
|
-
var DescribeCustomRoutingAcceleratorAttributesCommand = _DescribeCustomRoutingAcceleratorAttributesCommand;
|
|
2668
2738
|
|
|
2669
2739
|
// src/commands/DescribeCustomRoutingAcceleratorCommand.ts
|
|
2670
2740
|
|
|
2671
2741
|
|
|
2672
2742
|
|
|
2673
|
-
var
|
|
2743
|
+
var DescribeCustomRoutingAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2674
2744
|
return [
|
|
2675
2745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2676
2746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2677
2747
|
];
|
|
2678
2748
|
}).s("GlobalAccelerator_V20180706", "DescribeCustomRoutingAccelerator", {}).n("GlobalAcceleratorClient", "DescribeCustomRoutingAcceleratorCommand").f(void 0, void 0).ser(se_DescribeCustomRoutingAcceleratorCommand).de(de_DescribeCustomRoutingAcceleratorCommand).build() {
|
|
2749
|
+
static {
|
|
2750
|
+
__name(this, "DescribeCustomRoutingAcceleratorCommand");
|
|
2751
|
+
}
|
|
2679
2752
|
};
|
|
2680
|
-
__name(_DescribeCustomRoutingAcceleratorCommand, "DescribeCustomRoutingAcceleratorCommand");
|
|
2681
|
-
var DescribeCustomRoutingAcceleratorCommand = _DescribeCustomRoutingAcceleratorCommand;
|
|
2682
2753
|
|
|
2683
2754
|
// src/commands/DescribeCustomRoutingEndpointGroupCommand.ts
|
|
2684
2755
|
|
|
2685
2756
|
|
|
2686
2757
|
|
|
2687
|
-
var
|
|
2758
|
+
var DescribeCustomRoutingEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2688
2759
|
return [
|
|
2689
2760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2690
2761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2691
2762
|
];
|
|
2692
2763
|
}).s("GlobalAccelerator_V20180706", "DescribeCustomRoutingEndpointGroup", {}).n("GlobalAcceleratorClient", "DescribeCustomRoutingEndpointGroupCommand").f(void 0, void 0).ser(se_DescribeCustomRoutingEndpointGroupCommand).de(de_DescribeCustomRoutingEndpointGroupCommand).build() {
|
|
2764
|
+
static {
|
|
2765
|
+
__name(this, "DescribeCustomRoutingEndpointGroupCommand");
|
|
2766
|
+
}
|
|
2693
2767
|
};
|
|
2694
|
-
__name(_DescribeCustomRoutingEndpointGroupCommand, "DescribeCustomRoutingEndpointGroupCommand");
|
|
2695
|
-
var DescribeCustomRoutingEndpointGroupCommand = _DescribeCustomRoutingEndpointGroupCommand;
|
|
2696
2768
|
|
|
2697
2769
|
// src/commands/DescribeCustomRoutingListenerCommand.ts
|
|
2698
2770
|
|
|
2699
2771
|
|
|
2700
2772
|
|
|
2701
|
-
var
|
|
2773
|
+
var DescribeCustomRoutingListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2702
2774
|
return [
|
|
2703
2775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2704
2776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2705
2777
|
];
|
|
2706
2778
|
}).s("GlobalAccelerator_V20180706", "DescribeCustomRoutingListener", {}).n("GlobalAcceleratorClient", "DescribeCustomRoutingListenerCommand").f(void 0, void 0).ser(se_DescribeCustomRoutingListenerCommand).de(de_DescribeCustomRoutingListenerCommand).build() {
|
|
2779
|
+
static {
|
|
2780
|
+
__name(this, "DescribeCustomRoutingListenerCommand");
|
|
2781
|
+
}
|
|
2707
2782
|
};
|
|
2708
|
-
__name(_DescribeCustomRoutingListenerCommand, "DescribeCustomRoutingListenerCommand");
|
|
2709
|
-
var DescribeCustomRoutingListenerCommand = _DescribeCustomRoutingListenerCommand;
|
|
2710
2783
|
|
|
2711
2784
|
// src/commands/DescribeEndpointGroupCommand.ts
|
|
2712
2785
|
|
|
2713
2786
|
|
|
2714
2787
|
|
|
2715
|
-
var
|
|
2788
|
+
var DescribeEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2716
2789
|
return [
|
|
2717
2790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2718
2791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2719
2792
|
];
|
|
2720
2793
|
}).s("GlobalAccelerator_V20180706", "DescribeEndpointGroup", {}).n("GlobalAcceleratorClient", "DescribeEndpointGroupCommand").f(void 0, void 0).ser(se_DescribeEndpointGroupCommand).de(de_DescribeEndpointGroupCommand).build() {
|
|
2794
|
+
static {
|
|
2795
|
+
__name(this, "DescribeEndpointGroupCommand");
|
|
2796
|
+
}
|
|
2721
2797
|
};
|
|
2722
|
-
__name(_DescribeEndpointGroupCommand, "DescribeEndpointGroupCommand");
|
|
2723
|
-
var DescribeEndpointGroupCommand = _DescribeEndpointGroupCommand;
|
|
2724
2798
|
|
|
2725
2799
|
// src/commands/DescribeListenerCommand.ts
|
|
2726
2800
|
|
|
2727
2801
|
|
|
2728
2802
|
|
|
2729
|
-
var
|
|
2803
|
+
var DescribeListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2730
2804
|
return [
|
|
2731
2805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2732
2806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2733
2807
|
];
|
|
2734
2808
|
}).s("GlobalAccelerator_V20180706", "DescribeListener", {}).n("GlobalAcceleratorClient", "DescribeListenerCommand").f(void 0, void 0).ser(se_DescribeListenerCommand).de(de_DescribeListenerCommand).build() {
|
|
2809
|
+
static {
|
|
2810
|
+
__name(this, "DescribeListenerCommand");
|
|
2811
|
+
}
|
|
2735
2812
|
};
|
|
2736
|
-
__name(_DescribeListenerCommand, "DescribeListenerCommand");
|
|
2737
|
-
var DescribeListenerCommand = _DescribeListenerCommand;
|
|
2738
2813
|
|
|
2739
2814
|
// src/commands/ListAcceleratorsCommand.ts
|
|
2740
2815
|
|
|
2741
2816
|
|
|
2742
2817
|
|
|
2743
|
-
var
|
|
2818
|
+
var ListAcceleratorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2744
2819
|
return [
|
|
2745
2820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2746
2821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2747
2822
|
];
|
|
2748
2823
|
}).s("GlobalAccelerator_V20180706", "ListAccelerators", {}).n("GlobalAcceleratorClient", "ListAcceleratorsCommand").f(void 0, void 0).ser(se_ListAcceleratorsCommand).de(de_ListAcceleratorsCommand).build() {
|
|
2824
|
+
static {
|
|
2825
|
+
__name(this, "ListAcceleratorsCommand");
|
|
2826
|
+
}
|
|
2749
2827
|
};
|
|
2750
|
-
__name(_ListAcceleratorsCommand, "ListAcceleratorsCommand");
|
|
2751
|
-
var ListAcceleratorsCommand = _ListAcceleratorsCommand;
|
|
2752
2828
|
|
|
2753
2829
|
// src/commands/ListByoipCidrsCommand.ts
|
|
2754
2830
|
|
|
2755
2831
|
|
|
2756
2832
|
|
|
2757
|
-
var
|
|
2833
|
+
var ListByoipCidrsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2758
2834
|
return [
|
|
2759
2835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2760
2836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2761
2837
|
];
|
|
2762
2838
|
}).s("GlobalAccelerator_V20180706", "ListByoipCidrs", {}).n("GlobalAcceleratorClient", "ListByoipCidrsCommand").f(void 0, void 0).ser(se_ListByoipCidrsCommand).de(de_ListByoipCidrsCommand).build() {
|
|
2839
|
+
static {
|
|
2840
|
+
__name(this, "ListByoipCidrsCommand");
|
|
2841
|
+
}
|
|
2763
2842
|
};
|
|
2764
|
-
__name(_ListByoipCidrsCommand, "ListByoipCidrsCommand");
|
|
2765
|
-
var ListByoipCidrsCommand = _ListByoipCidrsCommand;
|
|
2766
2843
|
|
|
2767
2844
|
// src/commands/ListCrossAccountAttachmentsCommand.ts
|
|
2768
2845
|
|
|
2769
2846
|
|
|
2770
2847
|
|
|
2771
|
-
var
|
|
2848
|
+
var ListCrossAccountAttachmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2772
2849
|
return [
|
|
2773
2850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2774
2851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2775
2852
|
];
|
|
2776
2853
|
}).s("GlobalAccelerator_V20180706", "ListCrossAccountAttachments", {}).n("GlobalAcceleratorClient", "ListCrossAccountAttachmentsCommand").f(void 0, void 0).ser(se_ListCrossAccountAttachmentsCommand).de(de_ListCrossAccountAttachmentsCommand).build() {
|
|
2854
|
+
static {
|
|
2855
|
+
__name(this, "ListCrossAccountAttachmentsCommand");
|
|
2856
|
+
}
|
|
2777
2857
|
};
|
|
2778
|
-
__name(_ListCrossAccountAttachmentsCommand, "ListCrossAccountAttachmentsCommand");
|
|
2779
|
-
var ListCrossAccountAttachmentsCommand = _ListCrossAccountAttachmentsCommand;
|
|
2780
2858
|
|
|
2781
2859
|
// src/commands/ListCrossAccountResourceAccountsCommand.ts
|
|
2782
2860
|
|
|
2783
2861
|
|
|
2784
2862
|
|
|
2785
|
-
var
|
|
2863
|
+
var ListCrossAccountResourceAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2786
2864
|
return [
|
|
2787
2865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2788
2866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2789
2867
|
];
|
|
2790
2868
|
}).s("GlobalAccelerator_V20180706", "ListCrossAccountResourceAccounts", {}).n("GlobalAcceleratorClient", "ListCrossAccountResourceAccountsCommand").f(void 0, void 0).ser(se_ListCrossAccountResourceAccountsCommand).de(de_ListCrossAccountResourceAccountsCommand).build() {
|
|
2869
|
+
static {
|
|
2870
|
+
__name(this, "ListCrossAccountResourceAccountsCommand");
|
|
2871
|
+
}
|
|
2791
2872
|
};
|
|
2792
|
-
__name(_ListCrossAccountResourceAccountsCommand, "ListCrossAccountResourceAccountsCommand");
|
|
2793
|
-
var ListCrossAccountResourceAccountsCommand = _ListCrossAccountResourceAccountsCommand;
|
|
2794
2873
|
|
|
2795
2874
|
// src/commands/ListCrossAccountResourcesCommand.ts
|
|
2796
2875
|
|
|
2797
2876
|
|
|
2798
2877
|
|
|
2799
|
-
var
|
|
2878
|
+
var ListCrossAccountResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2800
2879
|
return [
|
|
2801
2880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2802
2881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2803
2882
|
];
|
|
2804
2883
|
}).s("GlobalAccelerator_V20180706", "ListCrossAccountResources", {}).n("GlobalAcceleratorClient", "ListCrossAccountResourcesCommand").f(void 0, void 0).ser(se_ListCrossAccountResourcesCommand).de(de_ListCrossAccountResourcesCommand).build() {
|
|
2884
|
+
static {
|
|
2885
|
+
__name(this, "ListCrossAccountResourcesCommand");
|
|
2886
|
+
}
|
|
2805
2887
|
};
|
|
2806
|
-
__name(_ListCrossAccountResourcesCommand, "ListCrossAccountResourcesCommand");
|
|
2807
|
-
var ListCrossAccountResourcesCommand = _ListCrossAccountResourcesCommand;
|
|
2808
2888
|
|
|
2809
2889
|
// src/commands/ListCustomRoutingAcceleratorsCommand.ts
|
|
2810
2890
|
|
|
2811
2891
|
|
|
2812
2892
|
|
|
2813
|
-
var
|
|
2893
|
+
var ListCustomRoutingAcceleratorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2814
2894
|
return [
|
|
2815
2895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2816
2896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2817
2897
|
];
|
|
2818
2898
|
}).s("GlobalAccelerator_V20180706", "ListCustomRoutingAccelerators", {}).n("GlobalAcceleratorClient", "ListCustomRoutingAcceleratorsCommand").f(void 0, void 0).ser(se_ListCustomRoutingAcceleratorsCommand).de(de_ListCustomRoutingAcceleratorsCommand).build() {
|
|
2899
|
+
static {
|
|
2900
|
+
__name(this, "ListCustomRoutingAcceleratorsCommand");
|
|
2901
|
+
}
|
|
2819
2902
|
};
|
|
2820
|
-
__name(_ListCustomRoutingAcceleratorsCommand, "ListCustomRoutingAcceleratorsCommand");
|
|
2821
|
-
var ListCustomRoutingAcceleratorsCommand = _ListCustomRoutingAcceleratorsCommand;
|
|
2822
2903
|
|
|
2823
2904
|
// src/commands/ListCustomRoutingEndpointGroupsCommand.ts
|
|
2824
2905
|
|
|
2825
2906
|
|
|
2826
2907
|
|
|
2827
|
-
var
|
|
2908
|
+
var ListCustomRoutingEndpointGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2828
2909
|
return [
|
|
2829
2910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2830
2911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2831
2912
|
];
|
|
2832
2913
|
}).s("GlobalAccelerator_V20180706", "ListCustomRoutingEndpointGroups", {}).n("GlobalAcceleratorClient", "ListCustomRoutingEndpointGroupsCommand").f(void 0, void 0).ser(se_ListCustomRoutingEndpointGroupsCommand).de(de_ListCustomRoutingEndpointGroupsCommand).build() {
|
|
2914
|
+
static {
|
|
2915
|
+
__name(this, "ListCustomRoutingEndpointGroupsCommand");
|
|
2916
|
+
}
|
|
2833
2917
|
};
|
|
2834
|
-
__name(_ListCustomRoutingEndpointGroupsCommand, "ListCustomRoutingEndpointGroupsCommand");
|
|
2835
|
-
var ListCustomRoutingEndpointGroupsCommand = _ListCustomRoutingEndpointGroupsCommand;
|
|
2836
2918
|
|
|
2837
2919
|
// src/commands/ListCustomRoutingListenersCommand.ts
|
|
2838
2920
|
|
|
2839
2921
|
|
|
2840
2922
|
|
|
2841
|
-
var
|
|
2923
|
+
var ListCustomRoutingListenersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2842
2924
|
return [
|
|
2843
2925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2844
2926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2845
2927
|
];
|
|
2846
2928
|
}).s("GlobalAccelerator_V20180706", "ListCustomRoutingListeners", {}).n("GlobalAcceleratorClient", "ListCustomRoutingListenersCommand").f(void 0, void 0).ser(se_ListCustomRoutingListenersCommand).de(de_ListCustomRoutingListenersCommand).build() {
|
|
2929
|
+
static {
|
|
2930
|
+
__name(this, "ListCustomRoutingListenersCommand");
|
|
2931
|
+
}
|
|
2847
2932
|
};
|
|
2848
|
-
__name(_ListCustomRoutingListenersCommand, "ListCustomRoutingListenersCommand");
|
|
2849
|
-
var ListCustomRoutingListenersCommand = _ListCustomRoutingListenersCommand;
|
|
2850
2933
|
|
|
2851
2934
|
// src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts
|
|
2852
2935
|
|
|
2853
2936
|
|
|
2854
2937
|
|
|
2855
|
-
var
|
|
2938
|
+
var ListCustomRoutingPortMappingsByDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2856
2939
|
return [
|
|
2857
2940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2858
2941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2859
2942
|
];
|
|
2860
2943
|
}).s("GlobalAccelerator_V20180706", "ListCustomRoutingPortMappingsByDestination", {}).n("GlobalAcceleratorClient", "ListCustomRoutingPortMappingsByDestinationCommand").f(void 0, void 0).ser(se_ListCustomRoutingPortMappingsByDestinationCommand).de(de_ListCustomRoutingPortMappingsByDestinationCommand).build() {
|
|
2944
|
+
static {
|
|
2945
|
+
__name(this, "ListCustomRoutingPortMappingsByDestinationCommand");
|
|
2946
|
+
}
|
|
2861
2947
|
};
|
|
2862
|
-
__name(_ListCustomRoutingPortMappingsByDestinationCommand, "ListCustomRoutingPortMappingsByDestinationCommand");
|
|
2863
|
-
var ListCustomRoutingPortMappingsByDestinationCommand = _ListCustomRoutingPortMappingsByDestinationCommand;
|
|
2864
2948
|
|
|
2865
2949
|
// src/commands/ListCustomRoutingPortMappingsCommand.ts
|
|
2866
2950
|
|
|
2867
2951
|
|
|
2868
2952
|
|
|
2869
|
-
var
|
|
2953
|
+
var ListCustomRoutingPortMappingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2870
2954
|
return [
|
|
2871
2955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2872
2956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2873
2957
|
];
|
|
2874
2958
|
}).s("GlobalAccelerator_V20180706", "ListCustomRoutingPortMappings", {}).n("GlobalAcceleratorClient", "ListCustomRoutingPortMappingsCommand").f(void 0, void 0).ser(se_ListCustomRoutingPortMappingsCommand).de(de_ListCustomRoutingPortMappingsCommand).build() {
|
|
2959
|
+
static {
|
|
2960
|
+
__name(this, "ListCustomRoutingPortMappingsCommand");
|
|
2961
|
+
}
|
|
2875
2962
|
};
|
|
2876
|
-
__name(_ListCustomRoutingPortMappingsCommand, "ListCustomRoutingPortMappingsCommand");
|
|
2877
|
-
var ListCustomRoutingPortMappingsCommand = _ListCustomRoutingPortMappingsCommand;
|
|
2878
2963
|
|
|
2879
2964
|
// src/commands/ListEndpointGroupsCommand.ts
|
|
2880
2965
|
|
|
2881
2966
|
|
|
2882
2967
|
|
|
2883
|
-
var
|
|
2968
|
+
var ListEndpointGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2884
2969
|
return [
|
|
2885
2970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2886
2971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2887
2972
|
];
|
|
2888
2973
|
}).s("GlobalAccelerator_V20180706", "ListEndpointGroups", {}).n("GlobalAcceleratorClient", "ListEndpointGroupsCommand").f(void 0, void 0).ser(se_ListEndpointGroupsCommand).de(de_ListEndpointGroupsCommand).build() {
|
|
2974
|
+
static {
|
|
2975
|
+
__name(this, "ListEndpointGroupsCommand");
|
|
2976
|
+
}
|
|
2889
2977
|
};
|
|
2890
|
-
__name(_ListEndpointGroupsCommand, "ListEndpointGroupsCommand");
|
|
2891
|
-
var ListEndpointGroupsCommand = _ListEndpointGroupsCommand;
|
|
2892
2978
|
|
|
2893
2979
|
// src/commands/ListListenersCommand.ts
|
|
2894
2980
|
|
|
2895
2981
|
|
|
2896
2982
|
|
|
2897
|
-
var
|
|
2983
|
+
var ListListenersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2898
2984
|
return [
|
|
2899
2985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2900
2986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2901
2987
|
];
|
|
2902
2988
|
}).s("GlobalAccelerator_V20180706", "ListListeners", {}).n("GlobalAcceleratorClient", "ListListenersCommand").f(void 0, void 0).ser(se_ListListenersCommand).de(de_ListListenersCommand).build() {
|
|
2989
|
+
static {
|
|
2990
|
+
__name(this, "ListListenersCommand");
|
|
2991
|
+
}
|
|
2903
2992
|
};
|
|
2904
|
-
__name(_ListListenersCommand, "ListListenersCommand");
|
|
2905
|
-
var ListListenersCommand = _ListListenersCommand;
|
|
2906
2993
|
|
|
2907
2994
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2908
2995
|
|
|
2909
2996
|
|
|
2910
2997
|
|
|
2911
|
-
var
|
|
2998
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2912
2999
|
return [
|
|
2913
3000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2914
3001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2915
3002
|
];
|
|
2916
3003
|
}).s("GlobalAccelerator_V20180706", "ListTagsForResource", {}).n("GlobalAcceleratorClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3004
|
+
static {
|
|
3005
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3006
|
+
}
|
|
2917
3007
|
};
|
|
2918
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2919
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2920
3008
|
|
|
2921
3009
|
// src/commands/ProvisionByoipCidrCommand.ts
|
|
2922
3010
|
|
|
2923
3011
|
|
|
2924
3012
|
|
|
2925
|
-
var
|
|
3013
|
+
var ProvisionByoipCidrCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2926
3014
|
return [
|
|
2927
3015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2928
3016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2929
3017
|
];
|
|
2930
3018
|
}).s("GlobalAccelerator_V20180706", "ProvisionByoipCidr", {}).n("GlobalAcceleratorClient", "ProvisionByoipCidrCommand").f(void 0, void 0).ser(se_ProvisionByoipCidrCommand).de(de_ProvisionByoipCidrCommand).build() {
|
|
3019
|
+
static {
|
|
3020
|
+
__name(this, "ProvisionByoipCidrCommand");
|
|
3021
|
+
}
|
|
2931
3022
|
};
|
|
2932
|
-
__name(_ProvisionByoipCidrCommand, "ProvisionByoipCidrCommand");
|
|
2933
|
-
var ProvisionByoipCidrCommand = _ProvisionByoipCidrCommand;
|
|
2934
3023
|
|
|
2935
3024
|
// src/commands/RemoveCustomRoutingEndpointsCommand.ts
|
|
2936
3025
|
|
|
2937
3026
|
|
|
2938
3027
|
|
|
2939
|
-
var
|
|
3028
|
+
var RemoveCustomRoutingEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2940
3029
|
return [
|
|
2941
3030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2942
3031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2943
3032
|
];
|
|
2944
3033
|
}).s("GlobalAccelerator_V20180706", "RemoveCustomRoutingEndpoints", {}).n("GlobalAcceleratorClient", "RemoveCustomRoutingEndpointsCommand").f(void 0, void 0).ser(se_RemoveCustomRoutingEndpointsCommand).de(de_RemoveCustomRoutingEndpointsCommand).build() {
|
|
3034
|
+
static {
|
|
3035
|
+
__name(this, "RemoveCustomRoutingEndpointsCommand");
|
|
3036
|
+
}
|
|
2945
3037
|
};
|
|
2946
|
-
__name(_RemoveCustomRoutingEndpointsCommand, "RemoveCustomRoutingEndpointsCommand");
|
|
2947
|
-
var RemoveCustomRoutingEndpointsCommand = _RemoveCustomRoutingEndpointsCommand;
|
|
2948
3038
|
|
|
2949
3039
|
// src/commands/RemoveEndpointsCommand.ts
|
|
2950
3040
|
|
|
2951
3041
|
|
|
2952
3042
|
|
|
2953
|
-
var
|
|
3043
|
+
var RemoveEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2954
3044
|
return [
|
|
2955
3045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2956
3046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2957
3047
|
];
|
|
2958
3048
|
}).s("GlobalAccelerator_V20180706", "RemoveEndpoints", {}).n("GlobalAcceleratorClient", "RemoveEndpointsCommand").f(void 0, void 0).ser(se_RemoveEndpointsCommand).de(de_RemoveEndpointsCommand).build() {
|
|
3049
|
+
static {
|
|
3050
|
+
__name(this, "RemoveEndpointsCommand");
|
|
3051
|
+
}
|
|
2959
3052
|
};
|
|
2960
|
-
__name(_RemoveEndpointsCommand, "RemoveEndpointsCommand");
|
|
2961
|
-
var RemoveEndpointsCommand = _RemoveEndpointsCommand;
|
|
2962
3053
|
|
|
2963
3054
|
// src/commands/TagResourceCommand.ts
|
|
2964
3055
|
|
|
2965
3056
|
|
|
2966
3057
|
|
|
2967
|
-
var
|
|
3058
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2968
3059
|
return [
|
|
2969
3060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2970
3061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2971
3062
|
];
|
|
2972
3063
|
}).s("GlobalAccelerator_V20180706", "TagResource", {}).n("GlobalAcceleratorClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3064
|
+
static {
|
|
3065
|
+
__name(this, "TagResourceCommand");
|
|
3066
|
+
}
|
|
2973
3067
|
};
|
|
2974
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2975
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2976
3068
|
|
|
2977
3069
|
// src/commands/UntagResourceCommand.ts
|
|
2978
3070
|
|
|
2979
3071
|
|
|
2980
3072
|
|
|
2981
|
-
var
|
|
3073
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2982
3074
|
return [
|
|
2983
3075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2984
3076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2985
3077
|
];
|
|
2986
3078
|
}).s("GlobalAccelerator_V20180706", "UntagResource", {}).n("GlobalAcceleratorClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3079
|
+
static {
|
|
3080
|
+
__name(this, "UntagResourceCommand");
|
|
3081
|
+
}
|
|
2987
3082
|
};
|
|
2988
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2989
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2990
3083
|
|
|
2991
3084
|
// src/commands/UpdateAcceleratorAttributesCommand.ts
|
|
2992
3085
|
|
|
2993
3086
|
|
|
2994
3087
|
|
|
2995
|
-
var
|
|
3088
|
+
var UpdateAcceleratorAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2996
3089
|
return [
|
|
2997
3090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2998
3091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2999
3092
|
];
|
|
3000
3093
|
}).s("GlobalAccelerator_V20180706", "UpdateAcceleratorAttributes", {}).n("GlobalAcceleratorClient", "UpdateAcceleratorAttributesCommand").f(void 0, void 0).ser(se_UpdateAcceleratorAttributesCommand).de(de_UpdateAcceleratorAttributesCommand).build() {
|
|
3094
|
+
static {
|
|
3095
|
+
__name(this, "UpdateAcceleratorAttributesCommand");
|
|
3096
|
+
}
|
|
3001
3097
|
};
|
|
3002
|
-
__name(_UpdateAcceleratorAttributesCommand, "UpdateAcceleratorAttributesCommand");
|
|
3003
|
-
var UpdateAcceleratorAttributesCommand = _UpdateAcceleratorAttributesCommand;
|
|
3004
3098
|
|
|
3005
3099
|
// src/commands/UpdateAcceleratorCommand.ts
|
|
3006
3100
|
|
|
3007
3101
|
|
|
3008
3102
|
|
|
3009
|
-
var
|
|
3103
|
+
var UpdateAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3010
3104
|
return [
|
|
3011
3105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3012
3106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3013
3107
|
];
|
|
3014
3108
|
}).s("GlobalAccelerator_V20180706", "UpdateAccelerator", {}).n("GlobalAcceleratorClient", "UpdateAcceleratorCommand").f(void 0, void 0).ser(se_UpdateAcceleratorCommand).de(de_UpdateAcceleratorCommand).build() {
|
|
3109
|
+
static {
|
|
3110
|
+
__name(this, "UpdateAcceleratorCommand");
|
|
3111
|
+
}
|
|
3015
3112
|
};
|
|
3016
|
-
__name(_UpdateAcceleratorCommand, "UpdateAcceleratorCommand");
|
|
3017
|
-
var UpdateAcceleratorCommand = _UpdateAcceleratorCommand;
|
|
3018
3113
|
|
|
3019
3114
|
// src/commands/UpdateCrossAccountAttachmentCommand.ts
|
|
3020
3115
|
|
|
3021
3116
|
|
|
3022
3117
|
|
|
3023
|
-
var
|
|
3118
|
+
var UpdateCrossAccountAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3024
3119
|
return [
|
|
3025
3120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3026
3121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3027
3122
|
];
|
|
3028
3123
|
}).s("GlobalAccelerator_V20180706", "UpdateCrossAccountAttachment", {}).n("GlobalAcceleratorClient", "UpdateCrossAccountAttachmentCommand").f(void 0, void 0).ser(se_UpdateCrossAccountAttachmentCommand).de(de_UpdateCrossAccountAttachmentCommand).build() {
|
|
3124
|
+
static {
|
|
3125
|
+
__name(this, "UpdateCrossAccountAttachmentCommand");
|
|
3126
|
+
}
|
|
3029
3127
|
};
|
|
3030
|
-
__name(_UpdateCrossAccountAttachmentCommand, "UpdateCrossAccountAttachmentCommand");
|
|
3031
|
-
var UpdateCrossAccountAttachmentCommand = _UpdateCrossAccountAttachmentCommand;
|
|
3032
3128
|
|
|
3033
3129
|
// src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts
|
|
3034
3130
|
|
|
3035
3131
|
|
|
3036
3132
|
|
|
3037
|
-
var
|
|
3133
|
+
var UpdateCustomRoutingAcceleratorAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3038
3134
|
return [
|
|
3039
3135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3040
3136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3041
3137
|
];
|
|
3042
3138
|
}).s("GlobalAccelerator_V20180706", "UpdateCustomRoutingAcceleratorAttributes", {}).n("GlobalAcceleratorClient", "UpdateCustomRoutingAcceleratorAttributesCommand").f(void 0, void 0).ser(se_UpdateCustomRoutingAcceleratorAttributesCommand).de(de_UpdateCustomRoutingAcceleratorAttributesCommand).build() {
|
|
3139
|
+
static {
|
|
3140
|
+
__name(this, "UpdateCustomRoutingAcceleratorAttributesCommand");
|
|
3141
|
+
}
|
|
3043
3142
|
};
|
|
3044
|
-
__name(_UpdateCustomRoutingAcceleratorAttributesCommand, "UpdateCustomRoutingAcceleratorAttributesCommand");
|
|
3045
|
-
var UpdateCustomRoutingAcceleratorAttributesCommand = _UpdateCustomRoutingAcceleratorAttributesCommand;
|
|
3046
3143
|
|
|
3047
3144
|
// src/commands/UpdateCustomRoutingAcceleratorCommand.ts
|
|
3048
3145
|
|
|
3049
3146
|
|
|
3050
3147
|
|
|
3051
|
-
var
|
|
3148
|
+
var UpdateCustomRoutingAcceleratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3052
3149
|
return [
|
|
3053
3150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3054
3151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3055
3152
|
];
|
|
3056
3153
|
}).s("GlobalAccelerator_V20180706", "UpdateCustomRoutingAccelerator", {}).n("GlobalAcceleratorClient", "UpdateCustomRoutingAcceleratorCommand").f(void 0, void 0).ser(se_UpdateCustomRoutingAcceleratorCommand).de(de_UpdateCustomRoutingAcceleratorCommand).build() {
|
|
3154
|
+
static {
|
|
3155
|
+
__name(this, "UpdateCustomRoutingAcceleratorCommand");
|
|
3156
|
+
}
|
|
3057
3157
|
};
|
|
3058
|
-
__name(_UpdateCustomRoutingAcceleratorCommand, "UpdateCustomRoutingAcceleratorCommand");
|
|
3059
|
-
var UpdateCustomRoutingAcceleratorCommand = _UpdateCustomRoutingAcceleratorCommand;
|
|
3060
3158
|
|
|
3061
3159
|
// src/commands/UpdateCustomRoutingListenerCommand.ts
|
|
3062
3160
|
|
|
3063
3161
|
|
|
3064
3162
|
|
|
3065
|
-
var
|
|
3163
|
+
var UpdateCustomRoutingListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3066
3164
|
return [
|
|
3067
3165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3068
3166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3069
3167
|
];
|
|
3070
3168
|
}).s("GlobalAccelerator_V20180706", "UpdateCustomRoutingListener", {}).n("GlobalAcceleratorClient", "UpdateCustomRoutingListenerCommand").f(void 0, void 0).ser(se_UpdateCustomRoutingListenerCommand).de(de_UpdateCustomRoutingListenerCommand).build() {
|
|
3169
|
+
static {
|
|
3170
|
+
__name(this, "UpdateCustomRoutingListenerCommand");
|
|
3171
|
+
}
|
|
3071
3172
|
};
|
|
3072
|
-
__name(_UpdateCustomRoutingListenerCommand, "UpdateCustomRoutingListenerCommand");
|
|
3073
|
-
var UpdateCustomRoutingListenerCommand = _UpdateCustomRoutingListenerCommand;
|
|
3074
3173
|
|
|
3075
3174
|
// src/commands/UpdateEndpointGroupCommand.ts
|
|
3076
3175
|
|
|
3077
3176
|
|
|
3078
3177
|
|
|
3079
|
-
var
|
|
3178
|
+
var UpdateEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3080
3179
|
return [
|
|
3081
3180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3082
3181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3083
3182
|
];
|
|
3084
3183
|
}).s("GlobalAccelerator_V20180706", "UpdateEndpointGroup", {}).n("GlobalAcceleratorClient", "UpdateEndpointGroupCommand").f(void 0, void 0).ser(se_UpdateEndpointGroupCommand).de(de_UpdateEndpointGroupCommand).build() {
|
|
3184
|
+
static {
|
|
3185
|
+
__name(this, "UpdateEndpointGroupCommand");
|
|
3186
|
+
}
|
|
3085
3187
|
};
|
|
3086
|
-
__name(_UpdateEndpointGroupCommand, "UpdateEndpointGroupCommand");
|
|
3087
|
-
var UpdateEndpointGroupCommand = _UpdateEndpointGroupCommand;
|
|
3088
3188
|
|
|
3089
3189
|
// src/commands/UpdateListenerCommand.ts
|
|
3090
3190
|
|
|
3091
3191
|
|
|
3092
3192
|
|
|
3093
|
-
var
|
|
3193
|
+
var UpdateListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3094
3194
|
return [
|
|
3095
3195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3096
3196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3097
3197
|
];
|
|
3098
3198
|
}).s("GlobalAccelerator_V20180706", "UpdateListener", {}).n("GlobalAcceleratorClient", "UpdateListenerCommand").f(void 0, void 0).ser(se_UpdateListenerCommand).de(de_UpdateListenerCommand).build() {
|
|
3199
|
+
static {
|
|
3200
|
+
__name(this, "UpdateListenerCommand");
|
|
3201
|
+
}
|
|
3099
3202
|
};
|
|
3100
|
-
__name(_UpdateListenerCommand, "UpdateListenerCommand");
|
|
3101
|
-
var UpdateListenerCommand = _UpdateListenerCommand;
|
|
3102
3203
|
|
|
3103
3204
|
// src/commands/WithdrawByoipCidrCommand.ts
|
|
3104
3205
|
|
|
3105
3206
|
|
|
3106
3207
|
|
|
3107
|
-
var
|
|
3208
|
+
var WithdrawByoipCidrCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3108
3209
|
return [
|
|
3109
3210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3110
3211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3111
3212
|
];
|
|
3112
3213
|
}).s("GlobalAccelerator_V20180706", "WithdrawByoipCidr", {}).n("GlobalAcceleratorClient", "WithdrawByoipCidrCommand").f(void 0, void 0).ser(se_WithdrawByoipCidrCommand).de(de_WithdrawByoipCidrCommand).build() {
|
|
3214
|
+
static {
|
|
3215
|
+
__name(this, "WithdrawByoipCidrCommand");
|
|
3216
|
+
}
|
|
3113
3217
|
};
|
|
3114
|
-
__name(_WithdrawByoipCidrCommand, "WithdrawByoipCidrCommand");
|
|
3115
|
-
var WithdrawByoipCidrCommand = _WithdrawByoipCidrCommand;
|
|
3116
3218
|
|
|
3117
3219
|
// src/GlobalAccelerator.ts
|
|
3118
3220
|
var commands = {
|
|
@@ -3173,10 +3275,11 @@ var commands = {
|
|
|
3173
3275
|
UpdateListenerCommand,
|
|
3174
3276
|
WithdrawByoipCidrCommand
|
|
3175
3277
|
};
|
|
3176
|
-
var
|
|
3278
|
+
var GlobalAccelerator = class extends GlobalAcceleratorClient {
|
|
3279
|
+
static {
|
|
3280
|
+
__name(this, "GlobalAccelerator");
|
|
3281
|
+
}
|
|
3177
3282
|
};
|
|
3178
|
-
__name(_GlobalAccelerator, "GlobalAccelerator");
|
|
3179
|
-
var GlobalAccelerator = _GlobalAccelerator;
|
|
3180
3283
|
(0, import_smithy_client.createAggregatedClient)(commands, GlobalAccelerator);
|
|
3181
3284
|
|
|
3182
3285
|
// src/pagination/ListAcceleratorsPaginator.ts
|