@aws-sdk/client-global-accelerator 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +56 -168
- package/dist-es/commands/AddCustomRoutingEndpointsCommand.js +1 -3
- package/dist-es/commands/AddEndpointsCommand.js +1 -3
- package/dist-es/commands/AdvertiseByoipCidrCommand.js +1 -3
- package/dist-es/commands/AllowCustomRoutingTrafficCommand.js +1 -3
- package/dist-es/commands/CreateAcceleratorCommand.js +1 -3
- package/dist-es/commands/CreateCrossAccountAttachmentCommand.js +1 -3
- package/dist-es/commands/CreateCustomRoutingAcceleratorCommand.js +1 -3
- package/dist-es/commands/CreateCustomRoutingEndpointGroupCommand.js +1 -3
- package/dist-es/commands/CreateCustomRoutingListenerCommand.js +1 -3
- package/dist-es/commands/CreateEndpointGroupCommand.js +1 -3
- package/dist-es/commands/CreateListenerCommand.js +1 -3
- package/dist-es/commands/DeleteAcceleratorCommand.js +1 -3
- package/dist-es/commands/DeleteCrossAccountAttachmentCommand.js +1 -3
- package/dist-es/commands/DeleteCustomRoutingAcceleratorCommand.js +1 -3
- package/dist-es/commands/DeleteCustomRoutingEndpointGroupCommand.js +1 -3
- package/dist-es/commands/DeleteCustomRoutingListenerCommand.js +1 -3
- package/dist-es/commands/DeleteEndpointGroupCommand.js +1 -3
- package/dist-es/commands/DeleteListenerCommand.js +1 -3
- package/dist-es/commands/DenyCustomRoutingTrafficCommand.js +1 -3
- package/dist-es/commands/DeprovisionByoipCidrCommand.js +1 -3
- package/dist-es/commands/DescribeAcceleratorAttributesCommand.js +1 -3
- package/dist-es/commands/DescribeAcceleratorCommand.js +1 -3
- package/dist-es/commands/DescribeCrossAccountAttachmentCommand.js +1 -3
- package/dist-es/commands/DescribeCustomRoutingAcceleratorAttributesCommand.js +1 -3
- package/dist-es/commands/DescribeCustomRoutingAcceleratorCommand.js +1 -3
- package/dist-es/commands/DescribeCustomRoutingEndpointGroupCommand.js +1 -3
- package/dist-es/commands/DescribeCustomRoutingListenerCommand.js +1 -3
- package/dist-es/commands/DescribeEndpointGroupCommand.js +1 -3
- package/dist-es/commands/DescribeListenerCommand.js +1 -3
- package/dist-es/commands/ListAcceleratorsCommand.js +1 -3
- package/dist-es/commands/ListByoipCidrsCommand.js +1 -3
- package/dist-es/commands/ListCrossAccountAttachmentsCommand.js +1 -3
- package/dist-es/commands/ListCrossAccountResourceAccountsCommand.js +1 -3
- package/dist-es/commands/ListCrossAccountResourcesCommand.js +1 -3
- package/dist-es/commands/ListCustomRoutingAcceleratorsCommand.js +1 -3
- package/dist-es/commands/ListCustomRoutingEndpointGroupsCommand.js +1 -3
- package/dist-es/commands/ListCustomRoutingListenersCommand.js +1 -3
- package/dist-es/commands/ListCustomRoutingPortMappingsByDestinationCommand.js +1 -3
- package/dist-es/commands/ListCustomRoutingPortMappingsCommand.js +1 -3
- package/dist-es/commands/ListEndpointGroupsCommand.js +1 -3
- package/dist-es/commands/ListListenersCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ProvisionByoipCidrCommand.js +1 -3
- package/dist-es/commands/RemoveCustomRoutingEndpointsCommand.js +1 -3
- package/dist-es/commands/RemoveEndpointsCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateAcceleratorAttributesCommand.js +1 -3
- package/dist-es/commands/UpdateAcceleratorCommand.js +1 -3
- package/dist-es/commands/UpdateCrossAccountAttachmentCommand.js +1 -3
- package/dist-es/commands/UpdateCustomRoutingAcceleratorAttributesCommand.js +1 -3
- package/dist-es/commands/UpdateCustomRoutingAcceleratorCommand.js +1 -3
- package/dist-es/commands/UpdateCustomRoutingListenerCommand.js +1 -3
- package/dist-es/commands/UpdateEndpointGroupCommand.js +1 -3
- package/dist-es/commands/UpdateListenerCommand.js +1 -3
- package/dist-es/commands/WithdrawByoipCidrCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2334,9 +2334,7 @@ function sharedHeaders(operation) {
|
|
|
2334
2334
|
__name(sharedHeaders, "sharedHeaders");
|
|
2335
2335
|
|
|
2336
2336
|
// src/commands/AddCustomRoutingEndpointsCommand.ts
|
|
2337
|
-
var _AddCustomRoutingEndpointsCommand = class _AddCustomRoutingEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2338
|
-
...commonParams
|
|
2339
|
-
}).m(function(Command, cs, config, o) {
|
|
2337
|
+
var _AddCustomRoutingEndpointsCommand = class _AddCustomRoutingEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2340
2338
|
return [
|
|
2341
2339
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2342
2340
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2350,9 +2348,7 @@ var AddCustomRoutingEndpointsCommand = _AddCustomRoutingEndpointsCommand;
|
|
|
2350
2348
|
|
|
2351
2349
|
|
|
2352
2350
|
|
|
2353
|
-
var _AddEndpointsCommand = class _AddEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2354
|
-
...commonParams
|
|
2355
|
-
}).m(function(Command, cs, config, o) {
|
|
2351
|
+
var _AddEndpointsCommand = class _AddEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2356
2352
|
return [
|
|
2357
2353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2358
2354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2366,9 +2362,7 @@ var AddEndpointsCommand = _AddEndpointsCommand;
|
|
|
2366
2362
|
|
|
2367
2363
|
|
|
2368
2364
|
|
|
2369
|
-
var _AdvertiseByoipCidrCommand = class _AdvertiseByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2370
|
-
...commonParams
|
|
2371
|
-
}).m(function(Command, cs, config, o) {
|
|
2365
|
+
var _AdvertiseByoipCidrCommand = class _AdvertiseByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2372
2366
|
return [
|
|
2373
2367
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2374
2368
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2382,9 +2376,7 @@ var AdvertiseByoipCidrCommand = _AdvertiseByoipCidrCommand;
|
|
|
2382
2376
|
|
|
2383
2377
|
|
|
2384
2378
|
|
|
2385
|
-
var _AllowCustomRoutingTrafficCommand = class _AllowCustomRoutingTrafficCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2386
|
-
...commonParams
|
|
2387
|
-
}).m(function(Command, cs, config, o) {
|
|
2379
|
+
var _AllowCustomRoutingTrafficCommand = class _AllowCustomRoutingTrafficCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2388
2380
|
return [
|
|
2389
2381
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2390
2382
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2398,9 +2390,7 @@ var AllowCustomRoutingTrafficCommand = _AllowCustomRoutingTrafficCommand;
|
|
|
2398
2390
|
|
|
2399
2391
|
|
|
2400
2392
|
|
|
2401
|
-
var _CreateAcceleratorCommand = class _CreateAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2402
|
-
...commonParams
|
|
2403
|
-
}).m(function(Command, cs, config, o) {
|
|
2393
|
+
var _CreateAcceleratorCommand = class _CreateAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2404
2394
|
return [
|
|
2405
2395
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2406
2396
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2414,9 +2404,7 @@ var CreateAcceleratorCommand = _CreateAcceleratorCommand;
|
|
|
2414
2404
|
|
|
2415
2405
|
|
|
2416
2406
|
|
|
2417
|
-
var _CreateCrossAccountAttachmentCommand = class _CreateCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2418
|
-
...commonParams
|
|
2419
|
-
}).m(function(Command, cs, config, o) {
|
|
2407
|
+
var _CreateCrossAccountAttachmentCommand = class _CreateCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2420
2408
|
return [
|
|
2421
2409
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2422
2410
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2430,9 +2418,7 @@ var CreateCrossAccountAttachmentCommand = _CreateCrossAccountAttachmentCommand;
|
|
|
2430
2418
|
|
|
2431
2419
|
|
|
2432
2420
|
|
|
2433
|
-
var _CreateCustomRoutingAcceleratorCommand = class _CreateCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2434
|
-
...commonParams
|
|
2435
|
-
}).m(function(Command, cs, config, o) {
|
|
2421
|
+
var _CreateCustomRoutingAcceleratorCommand = class _CreateCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2436
2422
|
return [
|
|
2437
2423
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2438
2424
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2446,9 +2432,7 @@ var CreateCustomRoutingAcceleratorCommand = _CreateCustomRoutingAcceleratorComma
|
|
|
2446
2432
|
|
|
2447
2433
|
|
|
2448
2434
|
|
|
2449
|
-
var _CreateCustomRoutingEndpointGroupCommand = class _CreateCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2450
|
-
...commonParams
|
|
2451
|
-
}).m(function(Command, cs, config, o) {
|
|
2435
|
+
var _CreateCustomRoutingEndpointGroupCommand = class _CreateCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2452
2436
|
return [
|
|
2453
2437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2454
2438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2462,9 +2446,7 @@ var CreateCustomRoutingEndpointGroupCommand = _CreateCustomRoutingEndpointGroupC
|
|
|
2462
2446
|
|
|
2463
2447
|
|
|
2464
2448
|
|
|
2465
|
-
var _CreateCustomRoutingListenerCommand = class _CreateCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2466
|
-
...commonParams
|
|
2467
|
-
}).m(function(Command, cs, config, o) {
|
|
2449
|
+
var _CreateCustomRoutingListenerCommand = class _CreateCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2468
2450
|
return [
|
|
2469
2451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2470
2452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2478,9 +2460,7 @@ var CreateCustomRoutingListenerCommand = _CreateCustomRoutingListenerCommand;
|
|
|
2478
2460
|
|
|
2479
2461
|
|
|
2480
2462
|
|
|
2481
|
-
var _CreateEndpointGroupCommand = class _CreateEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2482
|
-
...commonParams
|
|
2483
|
-
}).m(function(Command, cs, config, o) {
|
|
2463
|
+
var _CreateEndpointGroupCommand = class _CreateEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2484
2464
|
return [
|
|
2485
2465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2486
2466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2494,9 +2474,7 @@ var CreateEndpointGroupCommand = _CreateEndpointGroupCommand;
|
|
|
2494
2474
|
|
|
2495
2475
|
|
|
2496
2476
|
|
|
2497
|
-
var _CreateListenerCommand = class _CreateListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2498
|
-
...commonParams
|
|
2499
|
-
}).m(function(Command, cs, config, o) {
|
|
2477
|
+
var _CreateListenerCommand = class _CreateListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2500
2478
|
return [
|
|
2501
2479
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2502
2480
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2510,9 +2488,7 @@ var CreateListenerCommand = _CreateListenerCommand;
|
|
|
2510
2488
|
|
|
2511
2489
|
|
|
2512
2490
|
|
|
2513
|
-
var _DeleteAcceleratorCommand = class _DeleteAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2514
|
-
...commonParams
|
|
2515
|
-
}).m(function(Command, cs, config, o) {
|
|
2491
|
+
var _DeleteAcceleratorCommand = class _DeleteAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2516
2492
|
return [
|
|
2517
2493
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2518
2494
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2526,9 +2502,7 @@ var DeleteAcceleratorCommand = _DeleteAcceleratorCommand;
|
|
|
2526
2502
|
|
|
2527
2503
|
|
|
2528
2504
|
|
|
2529
|
-
var _DeleteCrossAccountAttachmentCommand = class _DeleteCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2530
|
-
...commonParams
|
|
2531
|
-
}).m(function(Command, cs, config, o) {
|
|
2505
|
+
var _DeleteCrossAccountAttachmentCommand = class _DeleteCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2532
2506
|
return [
|
|
2533
2507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2534
2508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2542,9 +2516,7 @@ var DeleteCrossAccountAttachmentCommand = _DeleteCrossAccountAttachmentCommand;
|
|
|
2542
2516
|
|
|
2543
2517
|
|
|
2544
2518
|
|
|
2545
|
-
var _DeleteCustomRoutingAcceleratorCommand = class _DeleteCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2546
|
-
...commonParams
|
|
2547
|
-
}).m(function(Command, cs, config, o) {
|
|
2519
|
+
var _DeleteCustomRoutingAcceleratorCommand = class _DeleteCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2548
2520
|
return [
|
|
2549
2521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2550
2522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2558,9 +2530,7 @@ var DeleteCustomRoutingAcceleratorCommand = _DeleteCustomRoutingAcceleratorComma
|
|
|
2558
2530
|
|
|
2559
2531
|
|
|
2560
2532
|
|
|
2561
|
-
var _DeleteCustomRoutingEndpointGroupCommand = class _DeleteCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2562
|
-
...commonParams
|
|
2563
|
-
}).m(function(Command, cs, config, o) {
|
|
2533
|
+
var _DeleteCustomRoutingEndpointGroupCommand = class _DeleteCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2564
2534
|
return [
|
|
2565
2535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2566
2536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2574,9 +2544,7 @@ var DeleteCustomRoutingEndpointGroupCommand = _DeleteCustomRoutingEndpointGroupC
|
|
|
2574
2544
|
|
|
2575
2545
|
|
|
2576
2546
|
|
|
2577
|
-
var _DeleteCustomRoutingListenerCommand = class _DeleteCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2578
|
-
...commonParams
|
|
2579
|
-
}).m(function(Command, cs, config, o) {
|
|
2547
|
+
var _DeleteCustomRoutingListenerCommand = class _DeleteCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2580
2548
|
return [
|
|
2581
2549
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2582
2550
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2590,9 +2558,7 @@ var DeleteCustomRoutingListenerCommand = _DeleteCustomRoutingListenerCommand;
|
|
|
2590
2558
|
|
|
2591
2559
|
|
|
2592
2560
|
|
|
2593
|
-
var _DeleteEndpointGroupCommand = class _DeleteEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2594
|
-
...commonParams
|
|
2595
|
-
}).m(function(Command, cs, config, o) {
|
|
2561
|
+
var _DeleteEndpointGroupCommand = class _DeleteEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2596
2562
|
return [
|
|
2597
2563
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2598
2564
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2606,9 +2572,7 @@ var DeleteEndpointGroupCommand = _DeleteEndpointGroupCommand;
|
|
|
2606
2572
|
|
|
2607
2573
|
|
|
2608
2574
|
|
|
2609
|
-
var _DeleteListenerCommand = class _DeleteListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2610
|
-
...commonParams
|
|
2611
|
-
}).m(function(Command, cs, config, o) {
|
|
2575
|
+
var _DeleteListenerCommand = class _DeleteListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2612
2576
|
return [
|
|
2613
2577
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2614
2578
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2622,9 +2586,7 @@ var DeleteListenerCommand = _DeleteListenerCommand;
|
|
|
2622
2586
|
|
|
2623
2587
|
|
|
2624
2588
|
|
|
2625
|
-
var _DenyCustomRoutingTrafficCommand = class _DenyCustomRoutingTrafficCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2626
|
-
...commonParams
|
|
2627
|
-
}).m(function(Command, cs, config, o) {
|
|
2589
|
+
var _DenyCustomRoutingTrafficCommand = class _DenyCustomRoutingTrafficCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2628
2590
|
return [
|
|
2629
2591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2630
2592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2638,9 +2600,7 @@ var DenyCustomRoutingTrafficCommand = _DenyCustomRoutingTrafficCommand;
|
|
|
2638
2600
|
|
|
2639
2601
|
|
|
2640
2602
|
|
|
2641
|
-
var _DeprovisionByoipCidrCommand = class _DeprovisionByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2642
|
-
...commonParams
|
|
2643
|
-
}).m(function(Command, cs, config, o) {
|
|
2603
|
+
var _DeprovisionByoipCidrCommand = class _DeprovisionByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2644
2604
|
return [
|
|
2645
2605
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2646
2606
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2654,9 +2614,7 @@ var DeprovisionByoipCidrCommand = _DeprovisionByoipCidrCommand;
|
|
|
2654
2614
|
|
|
2655
2615
|
|
|
2656
2616
|
|
|
2657
|
-
var _DescribeAcceleratorAttributesCommand = class _DescribeAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2658
|
-
...commonParams
|
|
2659
|
-
}).m(function(Command, cs, config, o) {
|
|
2617
|
+
var _DescribeAcceleratorAttributesCommand = class _DescribeAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2660
2618
|
return [
|
|
2661
2619
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2662
2620
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2670,9 +2628,7 @@ var DescribeAcceleratorAttributesCommand = _DescribeAcceleratorAttributesCommand
|
|
|
2670
2628
|
|
|
2671
2629
|
|
|
2672
2630
|
|
|
2673
|
-
var _DescribeAcceleratorCommand = class _DescribeAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2674
|
-
...commonParams
|
|
2675
|
-
}).m(function(Command, cs, config, o) {
|
|
2631
|
+
var _DescribeAcceleratorCommand = class _DescribeAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2676
2632
|
return [
|
|
2677
2633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2678
2634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2686,9 +2642,7 @@ var DescribeAcceleratorCommand = _DescribeAcceleratorCommand;
|
|
|
2686
2642
|
|
|
2687
2643
|
|
|
2688
2644
|
|
|
2689
|
-
var _DescribeCrossAccountAttachmentCommand = class _DescribeCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2690
|
-
...commonParams
|
|
2691
|
-
}).m(function(Command, cs, config, o) {
|
|
2645
|
+
var _DescribeCrossAccountAttachmentCommand = class _DescribeCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2692
2646
|
return [
|
|
2693
2647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2694
2648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2702,9 +2656,7 @@ var DescribeCrossAccountAttachmentCommand = _DescribeCrossAccountAttachmentComma
|
|
|
2702
2656
|
|
|
2703
2657
|
|
|
2704
2658
|
|
|
2705
|
-
var _DescribeCustomRoutingAcceleratorAttributesCommand = class _DescribeCustomRoutingAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2706
|
-
...commonParams
|
|
2707
|
-
}).m(function(Command, cs, config, o) {
|
|
2659
|
+
var _DescribeCustomRoutingAcceleratorAttributesCommand = class _DescribeCustomRoutingAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2708
2660
|
return [
|
|
2709
2661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2710
2662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2718,9 +2670,7 @@ var DescribeCustomRoutingAcceleratorAttributesCommand = _DescribeCustomRoutingAc
|
|
|
2718
2670
|
|
|
2719
2671
|
|
|
2720
2672
|
|
|
2721
|
-
var _DescribeCustomRoutingAcceleratorCommand = class _DescribeCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2722
|
-
...commonParams
|
|
2723
|
-
}).m(function(Command, cs, config, o) {
|
|
2673
|
+
var _DescribeCustomRoutingAcceleratorCommand = class _DescribeCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2724
2674
|
return [
|
|
2725
2675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2726
2676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2734,9 +2684,7 @@ var DescribeCustomRoutingAcceleratorCommand = _DescribeCustomRoutingAcceleratorC
|
|
|
2734
2684
|
|
|
2735
2685
|
|
|
2736
2686
|
|
|
2737
|
-
var _DescribeCustomRoutingEndpointGroupCommand = class _DescribeCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2738
|
-
...commonParams
|
|
2739
|
-
}).m(function(Command, cs, config, o) {
|
|
2687
|
+
var _DescribeCustomRoutingEndpointGroupCommand = class _DescribeCustomRoutingEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2740
2688
|
return [
|
|
2741
2689
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2742
2690
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2750,9 +2698,7 @@ var DescribeCustomRoutingEndpointGroupCommand = _DescribeCustomRoutingEndpointGr
|
|
|
2750
2698
|
|
|
2751
2699
|
|
|
2752
2700
|
|
|
2753
|
-
var _DescribeCustomRoutingListenerCommand = class _DescribeCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2754
|
-
...commonParams
|
|
2755
|
-
}).m(function(Command, cs, config, o) {
|
|
2701
|
+
var _DescribeCustomRoutingListenerCommand = class _DescribeCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2756
2702
|
return [
|
|
2757
2703
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2758
2704
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2766,9 +2712,7 @@ var DescribeCustomRoutingListenerCommand = _DescribeCustomRoutingListenerCommand
|
|
|
2766
2712
|
|
|
2767
2713
|
|
|
2768
2714
|
|
|
2769
|
-
var _DescribeEndpointGroupCommand = class _DescribeEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2770
|
-
...commonParams
|
|
2771
|
-
}).m(function(Command, cs, config, o) {
|
|
2715
|
+
var _DescribeEndpointGroupCommand = class _DescribeEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2772
2716
|
return [
|
|
2773
2717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2774
2718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2782,9 +2726,7 @@ var DescribeEndpointGroupCommand = _DescribeEndpointGroupCommand;
|
|
|
2782
2726
|
|
|
2783
2727
|
|
|
2784
2728
|
|
|
2785
|
-
var _DescribeListenerCommand = class _DescribeListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2786
|
-
...commonParams
|
|
2787
|
-
}).m(function(Command, cs, config, o) {
|
|
2729
|
+
var _DescribeListenerCommand = class _DescribeListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2788
2730
|
return [
|
|
2789
2731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2790
2732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2798,9 +2740,7 @@ var DescribeListenerCommand = _DescribeListenerCommand;
|
|
|
2798
2740
|
|
|
2799
2741
|
|
|
2800
2742
|
|
|
2801
|
-
var _ListAcceleratorsCommand = class _ListAcceleratorsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2802
|
-
...commonParams
|
|
2803
|
-
}).m(function(Command, cs, config, o) {
|
|
2743
|
+
var _ListAcceleratorsCommand = class _ListAcceleratorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2804
2744
|
return [
|
|
2805
2745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2806
2746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2814,9 +2754,7 @@ var ListAcceleratorsCommand = _ListAcceleratorsCommand;
|
|
|
2814
2754
|
|
|
2815
2755
|
|
|
2816
2756
|
|
|
2817
|
-
var _ListByoipCidrsCommand = class _ListByoipCidrsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2818
|
-
...commonParams
|
|
2819
|
-
}).m(function(Command, cs, config, o) {
|
|
2757
|
+
var _ListByoipCidrsCommand = class _ListByoipCidrsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2820
2758
|
return [
|
|
2821
2759
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2822
2760
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2830,9 +2768,7 @@ var ListByoipCidrsCommand = _ListByoipCidrsCommand;
|
|
|
2830
2768
|
|
|
2831
2769
|
|
|
2832
2770
|
|
|
2833
|
-
var _ListCrossAccountAttachmentsCommand = class _ListCrossAccountAttachmentsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2834
|
-
...commonParams
|
|
2835
|
-
}).m(function(Command, cs, config, o) {
|
|
2771
|
+
var _ListCrossAccountAttachmentsCommand = class _ListCrossAccountAttachmentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2836
2772
|
return [
|
|
2837
2773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2838
2774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2846,9 +2782,7 @@ var ListCrossAccountAttachmentsCommand = _ListCrossAccountAttachmentsCommand;
|
|
|
2846
2782
|
|
|
2847
2783
|
|
|
2848
2784
|
|
|
2849
|
-
var _ListCrossAccountResourceAccountsCommand = class _ListCrossAccountResourceAccountsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2850
|
-
...commonParams
|
|
2851
|
-
}).m(function(Command, cs, config, o) {
|
|
2785
|
+
var _ListCrossAccountResourceAccountsCommand = class _ListCrossAccountResourceAccountsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2852
2786
|
return [
|
|
2853
2787
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2854
2788
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2862,9 +2796,7 @@ var ListCrossAccountResourceAccountsCommand = _ListCrossAccountResourceAccountsC
|
|
|
2862
2796
|
|
|
2863
2797
|
|
|
2864
2798
|
|
|
2865
|
-
var _ListCrossAccountResourcesCommand = class _ListCrossAccountResourcesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2866
|
-
...commonParams
|
|
2867
|
-
}).m(function(Command, cs, config, o) {
|
|
2799
|
+
var _ListCrossAccountResourcesCommand = class _ListCrossAccountResourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2868
2800
|
return [
|
|
2869
2801
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2870
2802
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2878,9 +2810,7 @@ var ListCrossAccountResourcesCommand = _ListCrossAccountResourcesCommand;
|
|
|
2878
2810
|
|
|
2879
2811
|
|
|
2880
2812
|
|
|
2881
|
-
var _ListCustomRoutingAcceleratorsCommand = class _ListCustomRoutingAcceleratorsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2882
|
-
...commonParams
|
|
2883
|
-
}).m(function(Command, cs, config, o) {
|
|
2813
|
+
var _ListCustomRoutingAcceleratorsCommand = class _ListCustomRoutingAcceleratorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2884
2814
|
return [
|
|
2885
2815
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2886
2816
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2894,9 +2824,7 @@ var ListCustomRoutingAcceleratorsCommand = _ListCustomRoutingAcceleratorsCommand
|
|
|
2894
2824
|
|
|
2895
2825
|
|
|
2896
2826
|
|
|
2897
|
-
var _ListCustomRoutingEndpointGroupsCommand = class _ListCustomRoutingEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2898
|
-
...commonParams
|
|
2899
|
-
}).m(function(Command, cs, config, o) {
|
|
2827
|
+
var _ListCustomRoutingEndpointGroupsCommand = class _ListCustomRoutingEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2900
2828
|
return [
|
|
2901
2829
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2902
2830
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2910,9 +2838,7 @@ var ListCustomRoutingEndpointGroupsCommand = _ListCustomRoutingEndpointGroupsCom
|
|
|
2910
2838
|
|
|
2911
2839
|
|
|
2912
2840
|
|
|
2913
|
-
var _ListCustomRoutingListenersCommand = class _ListCustomRoutingListenersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2914
|
-
...commonParams
|
|
2915
|
-
}).m(function(Command, cs, config, o) {
|
|
2841
|
+
var _ListCustomRoutingListenersCommand = class _ListCustomRoutingListenersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2916
2842
|
return [
|
|
2917
2843
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2918
2844
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2926,9 +2852,7 @@ var ListCustomRoutingListenersCommand = _ListCustomRoutingListenersCommand;
|
|
|
2926
2852
|
|
|
2927
2853
|
|
|
2928
2854
|
|
|
2929
|
-
var _ListCustomRoutingPortMappingsByDestinationCommand = class _ListCustomRoutingPortMappingsByDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2930
|
-
...commonParams
|
|
2931
|
-
}).m(function(Command, cs, config, o) {
|
|
2855
|
+
var _ListCustomRoutingPortMappingsByDestinationCommand = class _ListCustomRoutingPortMappingsByDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2932
2856
|
return [
|
|
2933
2857
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2934
2858
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2942,9 +2866,7 @@ var ListCustomRoutingPortMappingsByDestinationCommand = _ListCustomRoutingPortMa
|
|
|
2942
2866
|
|
|
2943
2867
|
|
|
2944
2868
|
|
|
2945
|
-
var _ListCustomRoutingPortMappingsCommand = class _ListCustomRoutingPortMappingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2946
|
-
...commonParams
|
|
2947
|
-
}).m(function(Command, cs, config, o) {
|
|
2869
|
+
var _ListCustomRoutingPortMappingsCommand = class _ListCustomRoutingPortMappingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2948
2870
|
return [
|
|
2949
2871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2950
2872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2958,9 +2880,7 @@ var ListCustomRoutingPortMappingsCommand = _ListCustomRoutingPortMappingsCommand
|
|
|
2958
2880
|
|
|
2959
2881
|
|
|
2960
2882
|
|
|
2961
|
-
var _ListEndpointGroupsCommand = class _ListEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2962
|
-
...commonParams
|
|
2963
|
-
}).m(function(Command, cs, config, o) {
|
|
2883
|
+
var _ListEndpointGroupsCommand = class _ListEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2964
2884
|
return [
|
|
2965
2885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2966
2886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2974,9 +2894,7 @@ var ListEndpointGroupsCommand = _ListEndpointGroupsCommand;
|
|
|
2974
2894
|
|
|
2975
2895
|
|
|
2976
2896
|
|
|
2977
|
-
var _ListListenersCommand = class _ListListenersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2978
|
-
...commonParams
|
|
2979
|
-
}).m(function(Command, cs, config, o) {
|
|
2897
|
+
var _ListListenersCommand = class _ListListenersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2980
2898
|
return [
|
|
2981
2899
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2982
2900
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2990,9 +2908,7 @@ var ListListenersCommand = _ListListenersCommand;
|
|
|
2990
2908
|
|
|
2991
2909
|
|
|
2992
2910
|
|
|
2993
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2994
|
-
...commonParams
|
|
2995
|
-
}).m(function(Command, cs, config, o) {
|
|
2911
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2996
2912
|
return [
|
|
2997
2913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2998
2914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3006,9 +2922,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
3006
2922
|
|
|
3007
2923
|
|
|
3008
2924
|
|
|
3009
|
-
var _ProvisionByoipCidrCommand = class _ProvisionByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3010
|
-
...commonParams
|
|
3011
|
-
}).m(function(Command, cs, config, o) {
|
|
2925
|
+
var _ProvisionByoipCidrCommand = class _ProvisionByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3012
2926
|
return [
|
|
3013
2927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3014
2928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3022,9 +2936,7 @@ var ProvisionByoipCidrCommand = _ProvisionByoipCidrCommand;
|
|
|
3022
2936
|
|
|
3023
2937
|
|
|
3024
2938
|
|
|
3025
|
-
var _RemoveCustomRoutingEndpointsCommand = class _RemoveCustomRoutingEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3026
|
-
...commonParams
|
|
3027
|
-
}).m(function(Command, cs, config, o) {
|
|
2939
|
+
var _RemoveCustomRoutingEndpointsCommand = class _RemoveCustomRoutingEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3028
2940
|
return [
|
|
3029
2941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3030
2942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3038,9 +2950,7 @@ var RemoveCustomRoutingEndpointsCommand = _RemoveCustomRoutingEndpointsCommand;
|
|
|
3038
2950
|
|
|
3039
2951
|
|
|
3040
2952
|
|
|
3041
|
-
var _RemoveEndpointsCommand = class _RemoveEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3042
|
-
...commonParams
|
|
3043
|
-
}).m(function(Command, cs, config, o) {
|
|
2953
|
+
var _RemoveEndpointsCommand = class _RemoveEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3044
2954
|
return [
|
|
3045
2955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3046
2956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3054,9 +2964,7 @@ var RemoveEndpointsCommand = _RemoveEndpointsCommand;
|
|
|
3054
2964
|
|
|
3055
2965
|
|
|
3056
2966
|
|
|
3057
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3058
|
-
...commonParams
|
|
3059
|
-
}).m(function(Command, cs, config, o) {
|
|
2967
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3060
2968
|
return [
|
|
3061
2969
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3062
2970
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3070,9 +2978,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
3070
2978
|
|
|
3071
2979
|
|
|
3072
2980
|
|
|
3073
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3074
|
-
...commonParams
|
|
3075
|
-
}).m(function(Command, cs, config, o) {
|
|
2981
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3076
2982
|
return [
|
|
3077
2983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3078
2984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3086,9 +2992,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
3086
2992
|
|
|
3087
2993
|
|
|
3088
2994
|
|
|
3089
|
-
var _UpdateAcceleratorAttributesCommand = class _UpdateAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3090
|
-
...commonParams
|
|
3091
|
-
}).m(function(Command, cs, config, o) {
|
|
2995
|
+
var _UpdateAcceleratorAttributesCommand = class _UpdateAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3092
2996
|
return [
|
|
3093
2997
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3094
2998
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3102,9 +3006,7 @@ var UpdateAcceleratorAttributesCommand = _UpdateAcceleratorAttributesCommand;
|
|
|
3102
3006
|
|
|
3103
3007
|
|
|
3104
3008
|
|
|
3105
|
-
var _UpdateAcceleratorCommand = class _UpdateAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3106
|
-
...commonParams
|
|
3107
|
-
}).m(function(Command, cs, config, o) {
|
|
3009
|
+
var _UpdateAcceleratorCommand = class _UpdateAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3108
3010
|
return [
|
|
3109
3011
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3110
3012
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3118,9 +3020,7 @@ var UpdateAcceleratorCommand = _UpdateAcceleratorCommand;
|
|
|
3118
3020
|
|
|
3119
3021
|
|
|
3120
3022
|
|
|
3121
|
-
var _UpdateCrossAccountAttachmentCommand = class _UpdateCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3122
|
-
...commonParams
|
|
3123
|
-
}).m(function(Command, cs, config, o) {
|
|
3023
|
+
var _UpdateCrossAccountAttachmentCommand = class _UpdateCrossAccountAttachmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3124
3024
|
return [
|
|
3125
3025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3126
3026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3134,9 +3034,7 @@ var UpdateCrossAccountAttachmentCommand = _UpdateCrossAccountAttachmentCommand;
|
|
|
3134
3034
|
|
|
3135
3035
|
|
|
3136
3036
|
|
|
3137
|
-
var _UpdateCustomRoutingAcceleratorAttributesCommand = class _UpdateCustomRoutingAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3138
|
-
...commonParams
|
|
3139
|
-
}).m(function(Command, cs, config, o) {
|
|
3037
|
+
var _UpdateCustomRoutingAcceleratorAttributesCommand = class _UpdateCustomRoutingAcceleratorAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3140
3038
|
return [
|
|
3141
3039
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3142
3040
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3150,9 +3048,7 @@ var UpdateCustomRoutingAcceleratorAttributesCommand = _UpdateCustomRoutingAccele
|
|
|
3150
3048
|
|
|
3151
3049
|
|
|
3152
3050
|
|
|
3153
|
-
var _UpdateCustomRoutingAcceleratorCommand = class _UpdateCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3154
|
-
...commonParams
|
|
3155
|
-
}).m(function(Command, cs, config, o) {
|
|
3051
|
+
var _UpdateCustomRoutingAcceleratorCommand = class _UpdateCustomRoutingAcceleratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3156
3052
|
return [
|
|
3157
3053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3158
3054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3166,9 +3062,7 @@ var UpdateCustomRoutingAcceleratorCommand = _UpdateCustomRoutingAcceleratorComma
|
|
|
3166
3062
|
|
|
3167
3063
|
|
|
3168
3064
|
|
|
3169
|
-
var _UpdateCustomRoutingListenerCommand = class _UpdateCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3170
|
-
...commonParams
|
|
3171
|
-
}).m(function(Command, cs, config, o) {
|
|
3065
|
+
var _UpdateCustomRoutingListenerCommand = class _UpdateCustomRoutingListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3172
3066
|
return [
|
|
3173
3067
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3174
3068
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3182,9 +3076,7 @@ var UpdateCustomRoutingListenerCommand = _UpdateCustomRoutingListenerCommand;
|
|
|
3182
3076
|
|
|
3183
3077
|
|
|
3184
3078
|
|
|
3185
|
-
var _UpdateEndpointGroupCommand = class _UpdateEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3186
|
-
...commonParams
|
|
3187
|
-
}).m(function(Command, cs, config, o) {
|
|
3079
|
+
var _UpdateEndpointGroupCommand = class _UpdateEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3188
3080
|
return [
|
|
3189
3081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3190
3082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3198,9 +3090,7 @@ var UpdateEndpointGroupCommand = _UpdateEndpointGroupCommand;
|
|
|
3198
3090
|
|
|
3199
3091
|
|
|
3200
3092
|
|
|
3201
|
-
var _UpdateListenerCommand = class _UpdateListenerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3202
|
-
...commonParams
|
|
3203
|
-
}).m(function(Command, cs, config, o) {
|
|
3093
|
+
var _UpdateListenerCommand = class _UpdateListenerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3204
3094
|
return [
|
|
3205
3095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3206
3096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3214,9 +3104,7 @@ var UpdateListenerCommand = _UpdateListenerCommand;
|
|
|
3214
3104
|
|
|
3215
3105
|
|
|
3216
3106
|
|
|
3217
|
-
var _WithdrawByoipCidrCommand = class _WithdrawByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3218
|
-
...commonParams
|
|
3219
|
-
}).m(function(Command, cs, config, o) {
|
|
3107
|
+
var _WithdrawByoipCidrCommand = class _WithdrawByoipCidrCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3220
3108
|
return [
|
|
3221
3109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3222
3110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AddCustomRoutingEndpointsCommand, se_AddCustomRoutingEndpointsComman
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AddCustomRoutingEndpointsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_AddEndpointsCommand, se_AddEndpointsCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AddEndpointsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_AdvertiseByoipCidrCommand, se_AdvertiseByoipCidrCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AdvertiseByoipCidrCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|