@aws-sdk/client-mediaconnect 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.
Files changed (62) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +52 -156
  3. package/dist-es/commands/AddBridgeOutputsCommand.js +1 -3
  4. package/dist-es/commands/AddBridgeSourcesCommand.js +1 -3
  5. package/dist-es/commands/AddFlowMediaStreamsCommand.js +1 -3
  6. package/dist-es/commands/AddFlowOutputsCommand.js +1 -3
  7. package/dist-es/commands/AddFlowSourcesCommand.js +1 -3
  8. package/dist-es/commands/AddFlowVpcInterfacesCommand.js +1 -3
  9. package/dist-es/commands/CreateBridgeCommand.js +1 -3
  10. package/dist-es/commands/CreateFlowCommand.js +1 -3
  11. package/dist-es/commands/CreateGatewayCommand.js +1 -3
  12. package/dist-es/commands/DeleteBridgeCommand.js +1 -3
  13. package/dist-es/commands/DeleteFlowCommand.js +1 -3
  14. package/dist-es/commands/DeleteGatewayCommand.js +1 -3
  15. package/dist-es/commands/DeregisterGatewayInstanceCommand.js +1 -3
  16. package/dist-es/commands/DescribeBridgeCommand.js +1 -3
  17. package/dist-es/commands/DescribeFlowCommand.js +1 -3
  18. package/dist-es/commands/DescribeFlowSourceMetadataCommand.js +1 -3
  19. package/dist-es/commands/DescribeFlowSourceThumbnailCommand.js +1 -3
  20. package/dist-es/commands/DescribeGatewayCommand.js +1 -3
  21. package/dist-es/commands/DescribeGatewayInstanceCommand.js +1 -3
  22. package/dist-es/commands/DescribeOfferingCommand.js +1 -3
  23. package/dist-es/commands/DescribeReservationCommand.js +1 -3
  24. package/dist-es/commands/GrantFlowEntitlementsCommand.js +1 -3
  25. package/dist-es/commands/ListBridgesCommand.js +1 -3
  26. package/dist-es/commands/ListEntitlementsCommand.js +1 -3
  27. package/dist-es/commands/ListFlowsCommand.js +1 -3
  28. package/dist-es/commands/ListGatewayInstancesCommand.js +1 -3
  29. package/dist-es/commands/ListGatewaysCommand.js +1 -3
  30. package/dist-es/commands/ListOfferingsCommand.js +1 -3
  31. package/dist-es/commands/ListReservationsCommand.js +1 -3
  32. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  33. package/dist-es/commands/PurchaseOfferingCommand.js +1 -3
  34. package/dist-es/commands/RemoveBridgeOutputCommand.js +1 -3
  35. package/dist-es/commands/RemoveBridgeSourceCommand.js +1 -3
  36. package/dist-es/commands/RemoveFlowMediaStreamCommand.js +1 -3
  37. package/dist-es/commands/RemoveFlowOutputCommand.js +1 -3
  38. package/dist-es/commands/RemoveFlowSourceCommand.js +1 -3
  39. package/dist-es/commands/RemoveFlowVpcInterfaceCommand.js +1 -3
  40. package/dist-es/commands/RevokeFlowEntitlementCommand.js +1 -3
  41. package/dist-es/commands/StartFlowCommand.js +1 -3
  42. package/dist-es/commands/StopFlowCommand.js +1 -3
  43. package/dist-es/commands/TagResourceCommand.js +1 -3
  44. package/dist-es/commands/UntagResourceCommand.js +1 -3
  45. package/dist-es/commands/UpdateBridgeCommand.js +1 -3
  46. package/dist-es/commands/UpdateBridgeOutputCommand.js +1 -3
  47. package/dist-es/commands/UpdateBridgeSourceCommand.js +1 -3
  48. package/dist-es/commands/UpdateBridgeStateCommand.js +1 -3
  49. package/dist-es/commands/UpdateFlowCommand.js +1 -3
  50. package/dist-es/commands/UpdateFlowEntitlementCommand.js +1 -3
  51. package/dist-es/commands/UpdateFlowMediaStreamCommand.js +1 -3
  52. package/dist-es/commands/UpdateFlowOutputCommand.js +1 -3
  53. package/dist-es/commands/UpdateFlowSourceCommand.js +1 -3
  54. package/dist-es/commands/UpdateGatewayInstanceCommand.js +1 -3
  55. package/dist-es/endpoint/endpointResolver.js +7 -3
  56. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  57. package/dist-types/runtimeConfig.d.ts +2 -0
  58. package/dist-types/runtimeConfig.native.d.ts +2 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  62. package/package.json +36 -36
@@ -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
@@ -3371,9 +3371,7 @@ var _nT = "nextToken";
3371
3371
  var _tK = "tagKeys";
3372
3372
 
3373
3373
  // src/commands/AddBridgeOutputsCommand.ts
3374
- var _AddBridgeOutputsCommand = class _AddBridgeOutputsCommand extends import_smithy_client.Command.classBuilder().ep({
3375
- ...commonParams
3376
- }).m(function(Command, cs, config, o) {
3374
+ var _AddBridgeOutputsCommand = class _AddBridgeOutputsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3377
3375
  return [
3378
3376
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3379
3377
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3387,9 +3385,7 @@ var AddBridgeOutputsCommand = _AddBridgeOutputsCommand;
3387
3385
 
3388
3386
 
3389
3387
 
3390
- var _AddBridgeSourcesCommand = class _AddBridgeSourcesCommand extends import_smithy_client.Command.classBuilder().ep({
3391
- ...commonParams
3392
- }).m(function(Command, cs, config, o) {
3388
+ var _AddBridgeSourcesCommand = class _AddBridgeSourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3393
3389
  return [
3394
3390
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3395
3391
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3403,9 +3399,7 @@ var AddBridgeSourcesCommand = _AddBridgeSourcesCommand;
3403
3399
 
3404
3400
 
3405
3401
 
3406
- var _AddFlowMediaStreamsCommand = class _AddFlowMediaStreamsCommand extends import_smithy_client.Command.classBuilder().ep({
3407
- ...commonParams
3408
- }).m(function(Command, cs, config, o) {
3402
+ var _AddFlowMediaStreamsCommand = class _AddFlowMediaStreamsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3409
3403
  return [
3410
3404
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3411
3405
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3419,9 +3413,7 @@ var AddFlowMediaStreamsCommand = _AddFlowMediaStreamsCommand;
3419
3413
 
3420
3414
 
3421
3415
 
3422
- var _AddFlowOutputsCommand = class _AddFlowOutputsCommand extends import_smithy_client.Command.classBuilder().ep({
3423
- ...commonParams
3424
- }).m(function(Command, cs, config, o) {
3416
+ var _AddFlowOutputsCommand = class _AddFlowOutputsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3425
3417
  return [
3426
3418
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3427
3419
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3435,9 +3427,7 @@ var AddFlowOutputsCommand = _AddFlowOutputsCommand;
3435
3427
 
3436
3428
 
3437
3429
 
3438
- var _AddFlowSourcesCommand = class _AddFlowSourcesCommand extends import_smithy_client.Command.classBuilder().ep({
3439
- ...commonParams
3440
- }).m(function(Command, cs, config, o) {
3430
+ var _AddFlowSourcesCommand = class _AddFlowSourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3441
3431
  return [
3442
3432
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3443
3433
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3451,9 +3441,7 @@ var AddFlowSourcesCommand = _AddFlowSourcesCommand;
3451
3441
 
3452
3442
 
3453
3443
 
3454
- var _AddFlowVpcInterfacesCommand = class _AddFlowVpcInterfacesCommand extends import_smithy_client.Command.classBuilder().ep({
3455
- ...commonParams
3456
- }).m(function(Command, cs, config, o) {
3444
+ var _AddFlowVpcInterfacesCommand = class _AddFlowVpcInterfacesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3457
3445
  return [
3458
3446
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3459
3447
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3467,9 +3455,7 @@ var AddFlowVpcInterfacesCommand = _AddFlowVpcInterfacesCommand;
3467
3455
 
3468
3456
 
3469
3457
 
3470
- var _CreateBridgeCommand = class _CreateBridgeCommand extends import_smithy_client.Command.classBuilder().ep({
3471
- ...commonParams
3472
- }).m(function(Command, cs, config, o) {
3458
+ var _CreateBridgeCommand = class _CreateBridgeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3473
3459
  return [
3474
3460
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3475
3461
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3483,9 +3469,7 @@ var CreateBridgeCommand = _CreateBridgeCommand;
3483
3469
 
3484
3470
 
3485
3471
 
3486
- var _CreateFlowCommand = class _CreateFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3487
- ...commonParams
3488
- }).m(function(Command, cs, config, o) {
3472
+ var _CreateFlowCommand = class _CreateFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3489
3473
  return [
3490
3474
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3491
3475
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3499,9 +3483,7 @@ var CreateFlowCommand = _CreateFlowCommand;
3499
3483
 
3500
3484
 
3501
3485
 
3502
- var _CreateGatewayCommand = class _CreateGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
3503
- ...commonParams
3504
- }).m(function(Command, cs, config, o) {
3486
+ var _CreateGatewayCommand = class _CreateGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3505
3487
  return [
3506
3488
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3507
3489
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3515,9 +3497,7 @@ var CreateGatewayCommand = _CreateGatewayCommand;
3515
3497
 
3516
3498
 
3517
3499
 
3518
- var _DeleteBridgeCommand = class _DeleteBridgeCommand extends import_smithy_client.Command.classBuilder().ep({
3519
- ...commonParams
3520
- }).m(function(Command, cs, config, o) {
3500
+ var _DeleteBridgeCommand = class _DeleteBridgeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3521
3501
  return [
3522
3502
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3523
3503
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3531,9 +3511,7 @@ var DeleteBridgeCommand = _DeleteBridgeCommand;
3531
3511
 
3532
3512
 
3533
3513
 
3534
- var _DeleteFlowCommand = class _DeleteFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3535
- ...commonParams
3536
- }).m(function(Command, cs, config, o) {
3514
+ var _DeleteFlowCommand = class _DeleteFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3537
3515
  return [
3538
3516
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3539
3517
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3547,9 +3525,7 @@ var DeleteFlowCommand = _DeleteFlowCommand;
3547
3525
 
3548
3526
 
3549
3527
 
3550
- var _DeleteGatewayCommand = class _DeleteGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
3551
- ...commonParams
3552
- }).m(function(Command, cs, config, o) {
3528
+ var _DeleteGatewayCommand = class _DeleteGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3553
3529
  return [
3554
3530
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3555
3531
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3563,9 +3539,7 @@ var DeleteGatewayCommand = _DeleteGatewayCommand;
3563
3539
 
3564
3540
 
3565
3541
 
3566
- var _DeregisterGatewayInstanceCommand = class _DeregisterGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
3567
- ...commonParams
3568
- }).m(function(Command, cs, config, o) {
3542
+ var _DeregisterGatewayInstanceCommand = class _DeregisterGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3569
3543
  return [
3570
3544
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3571
3545
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3579,9 +3553,7 @@ var DeregisterGatewayInstanceCommand = _DeregisterGatewayInstanceCommand;
3579
3553
 
3580
3554
 
3581
3555
 
3582
- var _DescribeBridgeCommand = class _DescribeBridgeCommand extends import_smithy_client.Command.classBuilder().ep({
3583
- ...commonParams
3584
- }).m(function(Command, cs, config, o) {
3556
+ var _DescribeBridgeCommand = class _DescribeBridgeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3585
3557
  return [
3586
3558
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3587
3559
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3595,9 +3567,7 @@ var DescribeBridgeCommand = _DescribeBridgeCommand;
3595
3567
 
3596
3568
 
3597
3569
 
3598
- var _DescribeFlowCommand = class _DescribeFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3599
- ...commonParams
3600
- }).m(function(Command, cs, config, o) {
3570
+ var _DescribeFlowCommand = class _DescribeFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3601
3571
  return [
3602
3572
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3603
3573
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3611,9 +3581,7 @@ var DescribeFlowCommand = _DescribeFlowCommand;
3611
3581
 
3612
3582
 
3613
3583
 
3614
- var _DescribeFlowSourceMetadataCommand = class _DescribeFlowSourceMetadataCommand extends import_smithy_client.Command.classBuilder().ep({
3615
- ...commonParams
3616
- }).m(function(Command, cs, config, o) {
3584
+ var _DescribeFlowSourceMetadataCommand = class _DescribeFlowSourceMetadataCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3617
3585
  return [
3618
3586
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3619
3587
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3627,9 +3595,7 @@ var DescribeFlowSourceMetadataCommand = _DescribeFlowSourceMetadataCommand;
3627
3595
 
3628
3596
 
3629
3597
 
3630
- var _DescribeFlowSourceThumbnailCommand = class _DescribeFlowSourceThumbnailCommand extends import_smithy_client.Command.classBuilder().ep({
3631
- ...commonParams
3632
- }).m(function(Command, cs, config, o) {
3598
+ var _DescribeFlowSourceThumbnailCommand = class _DescribeFlowSourceThumbnailCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3633
3599
  return [
3634
3600
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3635
3601
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3643,9 +3609,7 @@ var DescribeFlowSourceThumbnailCommand = _DescribeFlowSourceThumbnailCommand;
3643
3609
 
3644
3610
 
3645
3611
 
3646
- var _DescribeGatewayCommand = class _DescribeGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
3647
- ...commonParams
3648
- }).m(function(Command, cs, config, o) {
3612
+ var _DescribeGatewayCommand = class _DescribeGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3649
3613
  return [
3650
3614
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3651
3615
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3659,9 +3623,7 @@ var DescribeGatewayCommand = _DescribeGatewayCommand;
3659
3623
 
3660
3624
 
3661
3625
 
3662
- var _DescribeGatewayInstanceCommand = class _DescribeGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
3663
- ...commonParams
3664
- }).m(function(Command, cs, config, o) {
3626
+ var _DescribeGatewayInstanceCommand = class _DescribeGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3665
3627
  return [
3666
3628
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3667
3629
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3675,9 +3637,7 @@ var DescribeGatewayInstanceCommand = _DescribeGatewayInstanceCommand;
3675
3637
 
3676
3638
 
3677
3639
 
3678
- var _DescribeOfferingCommand = class _DescribeOfferingCommand extends import_smithy_client.Command.classBuilder().ep({
3679
- ...commonParams
3680
- }).m(function(Command, cs, config, o) {
3640
+ var _DescribeOfferingCommand = class _DescribeOfferingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3681
3641
  return [
3682
3642
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3683
3643
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3691,9 +3651,7 @@ var DescribeOfferingCommand = _DescribeOfferingCommand;
3691
3651
 
3692
3652
 
3693
3653
 
3694
- var _DescribeReservationCommand = class _DescribeReservationCommand extends import_smithy_client.Command.classBuilder().ep({
3695
- ...commonParams
3696
- }).m(function(Command, cs, config, o) {
3654
+ var _DescribeReservationCommand = class _DescribeReservationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3697
3655
  return [
3698
3656
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3699
3657
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3707,9 +3665,7 @@ var DescribeReservationCommand = _DescribeReservationCommand;
3707
3665
 
3708
3666
 
3709
3667
 
3710
- var _GrantFlowEntitlementsCommand = class _GrantFlowEntitlementsCommand extends import_smithy_client.Command.classBuilder().ep({
3711
- ...commonParams
3712
- }).m(function(Command, cs, config, o) {
3668
+ var _GrantFlowEntitlementsCommand = class _GrantFlowEntitlementsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3713
3669
  return [
3714
3670
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3715
3671
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3723,9 +3679,7 @@ var GrantFlowEntitlementsCommand = _GrantFlowEntitlementsCommand;
3723
3679
 
3724
3680
 
3725
3681
 
3726
- var _ListBridgesCommand = class _ListBridgesCommand extends import_smithy_client.Command.classBuilder().ep({
3727
- ...commonParams
3728
- }).m(function(Command, cs, config, o) {
3682
+ var _ListBridgesCommand = class _ListBridgesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3729
3683
  return [
3730
3684
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3731
3685
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3739,9 +3693,7 @@ var ListBridgesCommand = _ListBridgesCommand;
3739
3693
 
3740
3694
 
3741
3695
 
3742
- var _ListEntitlementsCommand = class _ListEntitlementsCommand extends import_smithy_client.Command.classBuilder().ep({
3743
- ...commonParams
3744
- }).m(function(Command, cs, config, o) {
3696
+ var _ListEntitlementsCommand = class _ListEntitlementsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3745
3697
  return [
3746
3698
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3747
3699
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3755,9 +3707,7 @@ var ListEntitlementsCommand = _ListEntitlementsCommand;
3755
3707
 
3756
3708
 
3757
3709
 
3758
- var _ListFlowsCommand = class _ListFlowsCommand extends import_smithy_client.Command.classBuilder().ep({
3759
- ...commonParams
3760
- }).m(function(Command, cs, config, o) {
3710
+ var _ListFlowsCommand = class _ListFlowsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3761
3711
  return [
3762
3712
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3763
3713
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3771,9 +3721,7 @@ var ListFlowsCommand = _ListFlowsCommand;
3771
3721
 
3772
3722
 
3773
3723
 
3774
- var _ListGatewayInstancesCommand = class _ListGatewayInstancesCommand extends import_smithy_client.Command.classBuilder().ep({
3775
- ...commonParams
3776
- }).m(function(Command, cs, config, o) {
3724
+ var _ListGatewayInstancesCommand = class _ListGatewayInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3777
3725
  return [
3778
3726
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3779
3727
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3787,9 +3735,7 @@ var ListGatewayInstancesCommand = _ListGatewayInstancesCommand;
3787
3735
 
3788
3736
 
3789
3737
 
3790
- var _ListGatewaysCommand = class _ListGatewaysCommand extends import_smithy_client.Command.classBuilder().ep({
3791
- ...commonParams
3792
- }).m(function(Command, cs, config, o) {
3738
+ var _ListGatewaysCommand = class _ListGatewaysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3793
3739
  return [
3794
3740
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3795
3741
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3803,9 +3749,7 @@ var ListGatewaysCommand = _ListGatewaysCommand;
3803
3749
 
3804
3750
 
3805
3751
 
3806
- var _ListOfferingsCommand = class _ListOfferingsCommand extends import_smithy_client.Command.classBuilder().ep({
3807
- ...commonParams
3808
- }).m(function(Command, cs, config, o) {
3752
+ var _ListOfferingsCommand = class _ListOfferingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3809
3753
  return [
3810
3754
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3811
3755
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3819,9 +3763,7 @@ var ListOfferingsCommand = _ListOfferingsCommand;
3819
3763
 
3820
3764
 
3821
3765
 
3822
- var _ListReservationsCommand = class _ListReservationsCommand extends import_smithy_client.Command.classBuilder().ep({
3823
- ...commonParams
3824
- }).m(function(Command, cs, config, o) {
3766
+ var _ListReservationsCommand = class _ListReservationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3825
3767
  return [
3826
3768
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3827
3769
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3835,9 +3777,7 @@ var ListReservationsCommand = _ListReservationsCommand;
3835
3777
 
3836
3778
 
3837
3779
 
3838
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3839
- ...commonParams
3840
- }).m(function(Command, cs, config, o) {
3780
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3841
3781
  return [
3842
3782
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3843
3783
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3851,9 +3791,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3851
3791
 
3852
3792
 
3853
3793
 
3854
- var _PurchaseOfferingCommand = class _PurchaseOfferingCommand extends import_smithy_client.Command.classBuilder().ep({
3855
- ...commonParams
3856
- }).m(function(Command, cs, config, o) {
3794
+ var _PurchaseOfferingCommand = class _PurchaseOfferingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3857
3795
  return [
3858
3796
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3859
3797
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3867,9 +3805,7 @@ var PurchaseOfferingCommand = _PurchaseOfferingCommand;
3867
3805
 
3868
3806
 
3869
3807
 
3870
- var _RemoveBridgeOutputCommand = class _RemoveBridgeOutputCommand extends import_smithy_client.Command.classBuilder().ep({
3871
- ...commonParams
3872
- }).m(function(Command, cs, config, o) {
3808
+ var _RemoveBridgeOutputCommand = class _RemoveBridgeOutputCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3873
3809
  return [
3874
3810
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3875
3811
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3883,9 +3819,7 @@ var RemoveBridgeOutputCommand = _RemoveBridgeOutputCommand;
3883
3819
 
3884
3820
 
3885
3821
 
3886
- var _RemoveBridgeSourceCommand = class _RemoveBridgeSourceCommand extends import_smithy_client.Command.classBuilder().ep({
3887
- ...commonParams
3888
- }).m(function(Command, cs, config, o) {
3822
+ var _RemoveBridgeSourceCommand = class _RemoveBridgeSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3889
3823
  return [
3890
3824
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3891
3825
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3899,9 +3833,7 @@ var RemoveBridgeSourceCommand = _RemoveBridgeSourceCommand;
3899
3833
 
3900
3834
 
3901
3835
 
3902
- var _RemoveFlowMediaStreamCommand = class _RemoveFlowMediaStreamCommand extends import_smithy_client.Command.classBuilder().ep({
3903
- ...commonParams
3904
- }).m(function(Command, cs, config, o) {
3836
+ var _RemoveFlowMediaStreamCommand = class _RemoveFlowMediaStreamCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3905
3837
  return [
3906
3838
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3907
3839
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3915,9 +3847,7 @@ var RemoveFlowMediaStreamCommand = _RemoveFlowMediaStreamCommand;
3915
3847
 
3916
3848
 
3917
3849
 
3918
- var _RemoveFlowOutputCommand = class _RemoveFlowOutputCommand extends import_smithy_client.Command.classBuilder().ep({
3919
- ...commonParams
3920
- }).m(function(Command, cs, config, o) {
3850
+ var _RemoveFlowOutputCommand = class _RemoveFlowOutputCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3921
3851
  return [
3922
3852
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3923
3853
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3931,9 +3861,7 @@ var RemoveFlowOutputCommand = _RemoveFlowOutputCommand;
3931
3861
 
3932
3862
 
3933
3863
 
3934
- var _RemoveFlowSourceCommand = class _RemoveFlowSourceCommand extends import_smithy_client.Command.classBuilder().ep({
3935
- ...commonParams
3936
- }).m(function(Command, cs, config, o) {
3864
+ var _RemoveFlowSourceCommand = class _RemoveFlowSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3937
3865
  return [
3938
3866
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3939
3867
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3947,9 +3875,7 @@ var RemoveFlowSourceCommand = _RemoveFlowSourceCommand;
3947
3875
 
3948
3876
 
3949
3877
 
3950
- var _RemoveFlowVpcInterfaceCommand = class _RemoveFlowVpcInterfaceCommand extends import_smithy_client.Command.classBuilder().ep({
3951
- ...commonParams
3952
- }).m(function(Command, cs, config, o) {
3878
+ var _RemoveFlowVpcInterfaceCommand = class _RemoveFlowVpcInterfaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3953
3879
  return [
3954
3880
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3955
3881
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3963,9 +3889,7 @@ var RemoveFlowVpcInterfaceCommand = _RemoveFlowVpcInterfaceCommand;
3963
3889
 
3964
3890
 
3965
3891
 
3966
- var _RevokeFlowEntitlementCommand = class _RevokeFlowEntitlementCommand extends import_smithy_client.Command.classBuilder().ep({
3967
- ...commonParams
3968
- }).m(function(Command, cs, config, o) {
3892
+ var _RevokeFlowEntitlementCommand = class _RevokeFlowEntitlementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3969
3893
  return [
3970
3894
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3971
3895
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3979,9 +3903,7 @@ var RevokeFlowEntitlementCommand = _RevokeFlowEntitlementCommand;
3979
3903
 
3980
3904
 
3981
3905
 
3982
- var _StartFlowCommand = class _StartFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3983
- ...commonParams
3984
- }).m(function(Command, cs, config, o) {
3906
+ var _StartFlowCommand = class _StartFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3985
3907
  return [
3986
3908
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3987
3909
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3995,9 +3917,7 @@ var StartFlowCommand = _StartFlowCommand;
3995
3917
 
3996
3918
 
3997
3919
 
3998
- var _StopFlowCommand = class _StopFlowCommand extends import_smithy_client.Command.classBuilder().ep({
3999
- ...commonParams
4000
- }).m(function(Command, cs, config, o) {
3920
+ var _StopFlowCommand = class _StopFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4001
3921
  return [
4002
3922
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4003
3923
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4011,9 +3931,7 @@ var StopFlowCommand = _StopFlowCommand;
4011
3931
 
4012
3932
 
4013
3933
 
4014
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
4015
- ...commonParams
4016
- }).m(function(Command, cs, config, o) {
3934
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4017
3935
  return [
4018
3936
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4019
3937
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4027,9 +3945,7 @@ var TagResourceCommand = _TagResourceCommand;
4027
3945
 
4028
3946
 
4029
3947
 
4030
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
4031
- ...commonParams
4032
- }).m(function(Command, cs, config, o) {
3948
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4033
3949
  return [
4034
3950
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4035
3951
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4043,9 +3959,7 @@ var UntagResourceCommand = _UntagResourceCommand;
4043
3959
 
4044
3960
 
4045
3961
 
4046
- var _UpdateBridgeCommand = class _UpdateBridgeCommand extends import_smithy_client.Command.classBuilder().ep({
4047
- ...commonParams
4048
- }).m(function(Command, cs, config, o) {
3962
+ var _UpdateBridgeCommand = class _UpdateBridgeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4049
3963
  return [
4050
3964
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4051
3965
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4059,9 +3973,7 @@ var UpdateBridgeCommand = _UpdateBridgeCommand;
4059
3973
 
4060
3974
 
4061
3975
 
4062
- var _UpdateBridgeOutputCommand = class _UpdateBridgeOutputCommand extends import_smithy_client.Command.classBuilder().ep({
4063
- ...commonParams
4064
- }).m(function(Command, cs, config, o) {
3976
+ var _UpdateBridgeOutputCommand = class _UpdateBridgeOutputCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4065
3977
  return [
4066
3978
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4067
3979
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4075,9 +3987,7 @@ var UpdateBridgeOutputCommand = _UpdateBridgeOutputCommand;
4075
3987
 
4076
3988
 
4077
3989
 
4078
- var _UpdateBridgeSourceCommand = class _UpdateBridgeSourceCommand extends import_smithy_client.Command.classBuilder().ep({
4079
- ...commonParams
4080
- }).m(function(Command, cs, config, o) {
3990
+ var _UpdateBridgeSourceCommand = class _UpdateBridgeSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4081
3991
  return [
4082
3992
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4083
3993
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4091,9 +4001,7 @@ var UpdateBridgeSourceCommand = _UpdateBridgeSourceCommand;
4091
4001
 
4092
4002
 
4093
4003
 
4094
- var _UpdateBridgeStateCommand = class _UpdateBridgeStateCommand extends import_smithy_client.Command.classBuilder().ep({
4095
- ...commonParams
4096
- }).m(function(Command, cs, config, o) {
4004
+ var _UpdateBridgeStateCommand = class _UpdateBridgeStateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4097
4005
  return [
4098
4006
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4099
4007
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4107,9 +4015,7 @@ var UpdateBridgeStateCommand = _UpdateBridgeStateCommand;
4107
4015
 
4108
4016
 
4109
4017
 
4110
- var _UpdateFlowCommand = class _UpdateFlowCommand extends import_smithy_client.Command.classBuilder().ep({
4111
- ...commonParams
4112
- }).m(function(Command, cs, config, o) {
4018
+ var _UpdateFlowCommand = class _UpdateFlowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4113
4019
  return [
4114
4020
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4115
4021
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4123,9 +4029,7 @@ var UpdateFlowCommand = _UpdateFlowCommand;
4123
4029
 
4124
4030
 
4125
4031
 
4126
- var _UpdateFlowEntitlementCommand = class _UpdateFlowEntitlementCommand extends import_smithy_client.Command.classBuilder().ep({
4127
- ...commonParams
4128
- }).m(function(Command, cs, config, o) {
4032
+ var _UpdateFlowEntitlementCommand = class _UpdateFlowEntitlementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4129
4033
  return [
4130
4034
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4131
4035
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4139,9 +4043,7 @@ var UpdateFlowEntitlementCommand = _UpdateFlowEntitlementCommand;
4139
4043
 
4140
4044
 
4141
4045
 
4142
- var _UpdateFlowMediaStreamCommand = class _UpdateFlowMediaStreamCommand extends import_smithy_client.Command.classBuilder().ep({
4143
- ...commonParams
4144
- }).m(function(Command, cs, config, o) {
4046
+ var _UpdateFlowMediaStreamCommand = class _UpdateFlowMediaStreamCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4145
4047
  return [
4146
4048
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4147
4049
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4155,9 +4057,7 @@ var UpdateFlowMediaStreamCommand = _UpdateFlowMediaStreamCommand;
4155
4057
 
4156
4058
 
4157
4059
 
4158
- var _UpdateFlowOutputCommand = class _UpdateFlowOutputCommand extends import_smithy_client.Command.classBuilder().ep({
4159
- ...commonParams
4160
- }).m(function(Command, cs, config, o) {
4060
+ var _UpdateFlowOutputCommand = class _UpdateFlowOutputCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4161
4061
  return [
4162
4062
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4163
4063
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4171,9 +4071,7 @@ var UpdateFlowOutputCommand = _UpdateFlowOutputCommand;
4171
4071
 
4172
4072
 
4173
4073
 
4174
- var _UpdateFlowSourceCommand = class _UpdateFlowSourceCommand extends import_smithy_client.Command.classBuilder().ep({
4175
- ...commonParams
4176
- }).m(function(Command, cs, config, o) {
4074
+ var _UpdateFlowSourceCommand = class _UpdateFlowSourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4177
4075
  return [
4178
4076
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4179
4077
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4187,9 +4085,7 @@ var UpdateFlowSourceCommand = _UpdateFlowSourceCommand;
4187
4085
 
4188
4086
 
4189
4087
 
4190
- var _UpdateGatewayInstanceCommand = class _UpdateGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
4191
- ...commonParams
4192
- }).m(function(Command, cs, config, o) {
4088
+ var _UpdateGatewayInstanceCommand = class _UpdateGatewayInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4193
4089
  return [
4194
4090
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4195
4091
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_AddBridgeOutputsCommand, se_AddBridgeOutputsCommand } from "../proto
6
6
  export { $Command };
7
7
  export class AddBridgeOutputsCommand 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_AddBridgeSourcesCommand, se_AddBridgeSourcesCommand } from "../proto
6
6
  export { $Command };
7
7
  export class AddBridgeSourcesCommand 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_AddFlowMediaStreamsCommand, se_AddFlowMediaStreamsCommand } from "..
6
6
  export { $Command };
7
7
  export class AddFlowMediaStreamsCommand 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_AddFlowOutputsCommand, se_AddFlowOutputsCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class AddFlowOutputsCommand 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_AddFlowSourcesCommand, se_AddFlowSourcesCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class AddFlowSourcesCommand 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_AddFlowVpcInterfacesCommand, se_AddFlowVpcInterfacesCommand } from "
6
6
  export { $Command };
7
7
  export class AddFlowVpcInterfacesCommand 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_CreateBridgeCommand, se_CreateBridgeCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class CreateBridgeCommand 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),