@aws-sdk/client-fsx 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 (55) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +45 -135
  3. package/dist-es/commands/AssociateFileSystemAliasesCommand.js +1 -3
  4. package/dist-es/commands/CancelDataRepositoryTaskCommand.js +1 -3
  5. package/dist-es/commands/CopyBackupCommand.js +1 -3
  6. package/dist-es/commands/CopySnapshotAndUpdateVolumeCommand.js +1 -3
  7. package/dist-es/commands/CreateBackupCommand.js +1 -3
  8. package/dist-es/commands/CreateDataRepositoryAssociationCommand.js +1 -3
  9. package/dist-es/commands/CreateDataRepositoryTaskCommand.js +1 -3
  10. package/dist-es/commands/CreateFileCacheCommand.js +1 -3
  11. package/dist-es/commands/CreateFileSystemCommand.js +1 -3
  12. package/dist-es/commands/CreateFileSystemFromBackupCommand.js +1 -3
  13. package/dist-es/commands/CreateSnapshotCommand.js +1 -3
  14. package/dist-es/commands/CreateStorageVirtualMachineCommand.js +1 -3
  15. package/dist-es/commands/CreateVolumeCommand.js +1 -3
  16. package/dist-es/commands/CreateVolumeFromBackupCommand.js +1 -3
  17. package/dist-es/commands/DeleteBackupCommand.js +1 -3
  18. package/dist-es/commands/DeleteDataRepositoryAssociationCommand.js +1 -3
  19. package/dist-es/commands/DeleteFileCacheCommand.js +1 -3
  20. package/dist-es/commands/DeleteFileSystemCommand.js +1 -3
  21. package/dist-es/commands/DeleteSnapshotCommand.js +1 -3
  22. package/dist-es/commands/DeleteStorageVirtualMachineCommand.js +1 -3
  23. package/dist-es/commands/DeleteVolumeCommand.js +1 -3
  24. package/dist-es/commands/DescribeBackupsCommand.js +1 -3
  25. package/dist-es/commands/DescribeDataRepositoryAssociationsCommand.js +1 -3
  26. package/dist-es/commands/DescribeDataRepositoryTasksCommand.js +1 -3
  27. package/dist-es/commands/DescribeFileCachesCommand.js +1 -3
  28. package/dist-es/commands/DescribeFileSystemAliasesCommand.js +1 -3
  29. package/dist-es/commands/DescribeFileSystemsCommand.js +1 -3
  30. package/dist-es/commands/DescribeSharedVpcConfigurationCommand.js +1 -3
  31. package/dist-es/commands/DescribeSnapshotsCommand.js +1 -3
  32. package/dist-es/commands/DescribeStorageVirtualMachinesCommand.js +1 -3
  33. package/dist-es/commands/DescribeVolumesCommand.js +1 -3
  34. package/dist-es/commands/DisassociateFileSystemAliasesCommand.js +1 -3
  35. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  36. package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +1 -3
  37. package/dist-es/commands/RestoreVolumeFromSnapshotCommand.js +1 -3
  38. package/dist-es/commands/StartMisconfiguredStateRecoveryCommand.js +1 -3
  39. package/dist-es/commands/TagResourceCommand.js +1 -3
  40. package/dist-es/commands/UntagResourceCommand.js +1 -3
  41. package/dist-es/commands/UpdateDataRepositoryAssociationCommand.js +1 -3
  42. package/dist-es/commands/UpdateFileCacheCommand.js +1 -3
  43. package/dist-es/commands/UpdateFileSystemCommand.js +1 -3
  44. package/dist-es/commands/UpdateSharedVpcConfigurationCommand.js +1 -3
  45. package/dist-es/commands/UpdateSnapshotCommand.js +1 -3
  46. package/dist-es/commands/UpdateStorageVirtualMachineCommand.js +1 -3
  47. package/dist-es/commands/UpdateVolumeCommand.js +1 -3
  48. package/dist-es/endpoint/endpointResolver.js +7 -3
  49. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  50. package/dist-types/runtimeConfig.d.ts +2 -0
  51. package/dist-types/runtimeConfig.native.d.ts +2 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  55. 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
@@ -3589,9 +3589,7 @@ function sharedHeaders(operation) {
3589
3589
  __name(sharedHeaders, "sharedHeaders");
3590
3590
 
3591
3591
  // src/commands/AssociateFileSystemAliasesCommand.ts
3592
- var _AssociateFileSystemAliasesCommand = class _AssociateFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep({
3593
- ...commonParams
3594
- }).m(function(Command, cs, config, o) {
3592
+ var _AssociateFileSystemAliasesCommand = class _AssociateFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3595
3593
  return [
3596
3594
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3597
3595
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3605,9 +3603,7 @@ var AssociateFileSystemAliasesCommand = _AssociateFileSystemAliasesCommand;
3605
3603
 
3606
3604
 
3607
3605
 
3608
- var _CancelDataRepositoryTaskCommand = class _CancelDataRepositoryTaskCommand extends import_smithy_client.Command.classBuilder().ep({
3609
- ...commonParams
3610
- }).m(function(Command, cs, config, o) {
3606
+ var _CancelDataRepositoryTaskCommand = class _CancelDataRepositoryTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3611
3607
  return [
3612
3608
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3613
3609
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3621,9 +3617,7 @@ var CancelDataRepositoryTaskCommand = _CancelDataRepositoryTaskCommand;
3621
3617
 
3622
3618
 
3623
3619
 
3624
- var _CopyBackupCommand = class _CopyBackupCommand extends import_smithy_client.Command.classBuilder().ep({
3625
- ...commonParams
3626
- }).m(function(Command, cs, config, o) {
3620
+ var _CopyBackupCommand = class _CopyBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3627
3621
  return [
3628
3622
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3629
3623
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3637,9 +3631,7 @@ var CopyBackupCommand = _CopyBackupCommand;
3637
3631
 
3638
3632
 
3639
3633
 
3640
- var _CopySnapshotAndUpdateVolumeCommand = class _CopySnapshotAndUpdateVolumeCommand extends import_smithy_client.Command.classBuilder().ep({
3641
- ...commonParams
3642
- }).m(function(Command, cs, config, o) {
3634
+ var _CopySnapshotAndUpdateVolumeCommand = class _CopySnapshotAndUpdateVolumeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3643
3635
  return [
3644
3636
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3645
3637
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3653,9 +3645,7 @@ var CopySnapshotAndUpdateVolumeCommand = _CopySnapshotAndUpdateVolumeCommand;
3653
3645
 
3654
3646
 
3655
3647
 
3656
- var _CreateBackupCommand = class _CreateBackupCommand extends import_smithy_client.Command.classBuilder().ep({
3657
- ...commonParams
3658
- }).m(function(Command, cs, config, o) {
3648
+ var _CreateBackupCommand = class _CreateBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3659
3649
  return [
3660
3650
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3661
3651
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3669,9 +3659,7 @@ var CreateBackupCommand = _CreateBackupCommand;
3669
3659
 
3670
3660
 
3671
3661
 
3672
- var _CreateDataRepositoryAssociationCommand = class _CreateDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
3673
- ...commonParams
3674
- }).m(function(Command, cs, config, o) {
3662
+ var _CreateDataRepositoryAssociationCommand = class _CreateDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3675
3663
  return [
3676
3664
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3677
3665
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3685,9 +3673,7 @@ var CreateDataRepositoryAssociationCommand = _CreateDataRepositoryAssociationCom
3685
3673
 
3686
3674
 
3687
3675
 
3688
- var _CreateDataRepositoryTaskCommand = class _CreateDataRepositoryTaskCommand extends import_smithy_client.Command.classBuilder().ep({
3689
- ...commonParams
3690
- }).m(function(Command, cs, config, o) {
3676
+ var _CreateDataRepositoryTaskCommand = class _CreateDataRepositoryTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3691
3677
  return [
3692
3678
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3693
3679
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3701,9 +3687,7 @@ var CreateDataRepositoryTaskCommand = _CreateDataRepositoryTaskCommand;
3701
3687
 
3702
3688
 
3703
3689
 
3704
- var _CreateFileCacheCommand = class _CreateFileCacheCommand extends import_smithy_client.Command.classBuilder().ep({
3705
- ...commonParams
3706
- }).m(function(Command, cs, config, o) {
3690
+ var _CreateFileCacheCommand = class _CreateFileCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3707
3691
  return [
3708
3692
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3709
3693
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3717,9 +3701,7 @@ var CreateFileCacheCommand = _CreateFileCacheCommand;
3717
3701
 
3718
3702
 
3719
3703
 
3720
- var _CreateFileSystemCommand = class _CreateFileSystemCommand extends import_smithy_client.Command.classBuilder().ep({
3721
- ...commonParams
3722
- }).m(function(Command, cs, config, o) {
3704
+ var _CreateFileSystemCommand = class _CreateFileSystemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3723
3705
  return [
3724
3706
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3725
3707
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3733,9 +3715,7 @@ var CreateFileSystemCommand = _CreateFileSystemCommand;
3733
3715
 
3734
3716
 
3735
3717
 
3736
- var _CreateFileSystemFromBackupCommand = class _CreateFileSystemFromBackupCommand extends import_smithy_client.Command.classBuilder().ep({
3737
- ...commonParams
3738
- }).m(function(Command, cs, config, o) {
3718
+ var _CreateFileSystemFromBackupCommand = class _CreateFileSystemFromBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3739
3719
  return [
3740
3720
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3741
3721
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3749,9 +3729,7 @@ var CreateFileSystemFromBackupCommand = _CreateFileSystemFromBackupCommand;
3749
3729
 
3750
3730
 
3751
3731
 
3752
- var _CreateSnapshotCommand = class _CreateSnapshotCommand extends import_smithy_client.Command.classBuilder().ep({
3753
- ...commonParams
3754
- }).m(function(Command, cs, config, o) {
3732
+ var _CreateSnapshotCommand = class _CreateSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3755
3733
  return [
3756
3734
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3757
3735
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3765,9 +3743,7 @@ var CreateSnapshotCommand = _CreateSnapshotCommand;
3765
3743
 
3766
3744
 
3767
3745
 
3768
- var _CreateStorageVirtualMachineCommand = class _CreateStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep({
3769
- ...commonParams
3770
- }).m(function(Command, cs, config, o) {
3746
+ var _CreateStorageVirtualMachineCommand = class _CreateStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3771
3747
  return [
3772
3748
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3773
3749
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3781,9 +3757,7 @@ var CreateStorageVirtualMachineCommand = _CreateStorageVirtualMachineCommand;
3781
3757
 
3782
3758
 
3783
3759
 
3784
- var _CreateVolumeCommand = class _CreateVolumeCommand extends import_smithy_client.Command.classBuilder().ep({
3785
- ...commonParams
3786
- }).m(function(Command, cs, config, o) {
3760
+ var _CreateVolumeCommand = class _CreateVolumeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3787
3761
  return [
3788
3762
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3789
3763
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3797,9 +3771,7 @@ var CreateVolumeCommand = _CreateVolumeCommand;
3797
3771
 
3798
3772
 
3799
3773
 
3800
- var _CreateVolumeFromBackupCommand = class _CreateVolumeFromBackupCommand extends import_smithy_client.Command.classBuilder().ep({
3801
- ...commonParams
3802
- }).m(function(Command, cs, config, o) {
3774
+ var _CreateVolumeFromBackupCommand = class _CreateVolumeFromBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3803
3775
  return [
3804
3776
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3805
3777
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3813,9 +3785,7 @@ var CreateVolumeFromBackupCommand = _CreateVolumeFromBackupCommand;
3813
3785
 
3814
3786
 
3815
3787
 
3816
- var _DeleteBackupCommand = class _DeleteBackupCommand extends import_smithy_client.Command.classBuilder().ep({
3817
- ...commonParams
3818
- }).m(function(Command, cs, config, o) {
3788
+ var _DeleteBackupCommand = class _DeleteBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3819
3789
  return [
3820
3790
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3821
3791
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3829,9 +3799,7 @@ var DeleteBackupCommand = _DeleteBackupCommand;
3829
3799
 
3830
3800
 
3831
3801
 
3832
- var _DeleteDataRepositoryAssociationCommand = class _DeleteDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
3833
- ...commonParams
3834
- }).m(function(Command, cs, config, o) {
3802
+ var _DeleteDataRepositoryAssociationCommand = class _DeleteDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3835
3803
  return [
3836
3804
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3837
3805
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3845,9 +3813,7 @@ var DeleteDataRepositoryAssociationCommand = _DeleteDataRepositoryAssociationCom
3845
3813
 
3846
3814
 
3847
3815
 
3848
- var _DeleteFileCacheCommand = class _DeleteFileCacheCommand extends import_smithy_client.Command.classBuilder().ep({
3849
- ...commonParams
3850
- }).m(function(Command, cs, config, o) {
3816
+ var _DeleteFileCacheCommand = class _DeleteFileCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3851
3817
  return [
3852
3818
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3853
3819
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3861,9 +3827,7 @@ var DeleteFileCacheCommand = _DeleteFileCacheCommand;
3861
3827
 
3862
3828
 
3863
3829
 
3864
- var _DeleteFileSystemCommand = class _DeleteFileSystemCommand extends import_smithy_client.Command.classBuilder().ep({
3865
- ...commonParams
3866
- }).m(function(Command, cs, config, o) {
3830
+ var _DeleteFileSystemCommand = class _DeleteFileSystemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3867
3831
  return [
3868
3832
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3869
3833
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3877,9 +3841,7 @@ var DeleteFileSystemCommand = _DeleteFileSystemCommand;
3877
3841
 
3878
3842
 
3879
3843
 
3880
- var _DeleteSnapshotCommand = class _DeleteSnapshotCommand extends import_smithy_client.Command.classBuilder().ep({
3881
- ...commonParams
3882
- }).m(function(Command, cs, config, o) {
3844
+ var _DeleteSnapshotCommand = class _DeleteSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3883
3845
  return [
3884
3846
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3885
3847
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3893,9 +3855,7 @@ var DeleteSnapshotCommand = _DeleteSnapshotCommand;
3893
3855
 
3894
3856
 
3895
3857
 
3896
- var _DeleteStorageVirtualMachineCommand = class _DeleteStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep({
3897
- ...commonParams
3898
- }).m(function(Command, cs, config, o) {
3858
+ var _DeleteStorageVirtualMachineCommand = class _DeleteStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3899
3859
  return [
3900
3860
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3901
3861
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3909,9 +3869,7 @@ var DeleteStorageVirtualMachineCommand = _DeleteStorageVirtualMachineCommand;
3909
3869
 
3910
3870
 
3911
3871
 
3912
- var _DeleteVolumeCommand = class _DeleteVolumeCommand extends import_smithy_client.Command.classBuilder().ep({
3913
- ...commonParams
3914
- }).m(function(Command, cs, config, o) {
3872
+ var _DeleteVolumeCommand = class _DeleteVolumeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3915
3873
  return [
3916
3874
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3917
3875
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3925,9 +3883,7 @@ var DeleteVolumeCommand = _DeleteVolumeCommand;
3925
3883
 
3926
3884
 
3927
3885
 
3928
- var _DescribeBackupsCommand = class _DescribeBackupsCommand extends import_smithy_client.Command.classBuilder().ep({
3929
- ...commonParams
3930
- }).m(function(Command, cs, config, o) {
3886
+ var _DescribeBackupsCommand = class _DescribeBackupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3931
3887
  return [
3932
3888
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3933
3889
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3941,9 +3897,7 @@ var DescribeBackupsCommand = _DescribeBackupsCommand;
3941
3897
 
3942
3898
 
3943
3899
 
3944
- var _DescribeDataRepositoryAssociationsCommand = class _DescribeDataRepositoryAssociationsCommand extends import_smithy_client.Command.classBuilder().ep({
3945
- ...commonParams
3946
- }).m(function(Command, cs, config, o) {
3900
+ var _DescribeDataRepositoryAssociationsCommand = class _DescribeDataRepositoryAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3947
3901
  return [
3948
3902
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3949
3903
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3957,9 +3911,7 @@ var DescribeDataRepositoryAssociationsCommand = _DescribeDataRepositoryAssociati
3957
3911
 
3958
3912
 
3959
3913
 
3960
- var _DescribeDataRepositoryTasksCommand = class _DescribeDataRepositoryTasksCommand extends import_smithy_client.Command.classBuilder().ep({
3961
- ...commonParams
3962
- }).m(function(Command, cs, config, o) {
3914
+ var _DescribeDataRepositoryTasksCommand = class _DescribeDataRepositoryTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3963
3915
  return [
3964
3916
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3965
3917
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3973,9 +3925,7 @@ var DescribeDataRepositoryTasksCommand = _DescribeDataRepositoryTasksCommand;
3973
3925
 
3974
3926
 
3975
3927
 
3976
- var _DescribeFileCachesCommand = class _DescribeFileCachesCommand extends import_smithy_client.Command.classBuilder().ep({
3977
- ...commonParams
3978
- }).m(function(Command, cs, config, o) {
3928
+ var _DescribeFileCachesCommand = class _DescribeFileCachesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3979
3929
  return [
3980
3930
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3981
3931
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3989,9 +3939,7 @@ var DescribeFileCachesCommand = _DescribeFileCachesCommand;
3989
3939
 
3990
3940
 
3991
3941
 
3992
- var _DescribeFileSystemAliasesCommand = class _DescribeFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep({
3993
- ...commonParams
3994
- }).m(function(Command, cs, config, o) {
3942
+ var _DescribeFileSystemAliasesCommand = class _DescribeFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3995
3943
  return [
3996
3944
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3997
3945
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4005,9 +3953,7 @@ var DescribeFileSystemAliasesCommand = _DescribeFileSystemAliasesCommand;
4005
3953
 
4006
3954
 
4007
3955
 
4008
- var _DescribeFileSystemsCommand = class _DescribeFileSystemsCommand extends import_smithy_client.Command.classBuilder().ep({
4009
- ...commonParams
4010
- }).m(function(Command, cs, config, o) {
3956
+ var _DescribeFileSystemsCommand = class _DescribeFileSystemsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4011
3957
  return [
4012
3958
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4013
3959
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4021,9 +3967,7 @@ var DescribeFileSystemsCommand = _DescribeFileSystemsCommand;
4021
3967
 
4022
3968
 
4023
3969
 
4024
- var _DescribeSharedVpcConfigurationCommand = class _DescribeSharedVpcConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
4025
- ...commonParams
4026
- }).m(function(Command, cs, config, o) {
3970
+ var _DescribeSharedVpcConfigurationCommand = class _DescribeSharedVpcConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4027
3971
  return [
4028
3972
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4029
3973
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4037,9 +3981,7 @@ var DescribeSharedVpcConfigurationCommand = _DescribeSharedVpcConfigurationComma
4037
3981
 
4038
3982
 
4039
3983
 
4040
- var _DescribeSnapshotsCommand = class _DescribeSnapshotsCommand extends import_smithy_client.Command.classBuilder().ep({
4041
- ...commonParams
4042
- }).m(function(Command, cs, config, o) {
3984
+ var _DescribeSnapshotsCommand = class _DescribeSnapshotsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4043
3985
  return [
4044
3986
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4045
3987
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4053,9 +3995,7 @@ var DescribeSnapshotsCommand = _DescribeSnapshotsCommand;
4053
3995
 
4054
3996
 
4055
3997
 
4056
- var _DescribeStorageVirtualMachinesCommand = class _DescribeStorageVirtualMachinesCommand extends import_smithy_client.Command.classBuilder().ep({
4057
- ...commonParams
4058
- }).m(function(Command, cs, config, o) {
3998
+ var _DescribeStorageVirtualMachinesCommand = class _DescribeStorageVirtualMachinesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4059
3999
  return [
4060
4000
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4061
4001
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4069,9 +4009,7 @@ var DescribeStorageVirtualMachinesCommand = _DescribeStorageVirtualMachinesComma
4069
4009
 
4070
4010
 
4071
4011
 
4072
- var _DescribeVolumesCommand = class _DescribeVolumesCommand extends import_smithy_client.Command.classBuilder().ep({
4073
- ...commonParams
4074
- }).m(function(Command, cs, config, o) {
4012
+ var _DescribeVolumesCommand = class _DescribeVolumesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4075
4013
  return [
4076
4014
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4077
4015
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4085,9 +4023,7 @@ var DescribeVolumesCommand = _DescribeVolumesCommand;
4085
4023
 
4086
4024
 
4087
4025
 
4088
- var _DisassociateFileSystemAliasesCommand = class _DisassociateFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep({
4089
- ...commonParams
4090
- }).m(function(Command, cs, config, o) {
4026
+ var _DisassociateFileSystemAliasesCommand = class _DisassociateFileSystemAliasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4091
4027
  return [
4092
4028
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4093
4029
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4101,9 +4037,7 @@ var DisassociateFileSystemAliasesCommand = _DisassociateFileSystemAliasesCommand
4101
4037
 
4102
4038
 
4103
4039
 
4104
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
4105
- ...commonParams
4106
- }).m(function(Command, cs, config, o) {
4040
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4107
4041
  return [
4108
4042
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4109
4043
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4117,9 +4051,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
4117
4051
 
4118
4052
 
4119
4053
 
4120
- var _ReleaseFileSystemNfsV3LocksCommand = class _ReleaseFileSystemNfsV3LocksCommand extends import_smithy_client.Command.classBuilder().ep({
4121
- ...commonParams
4122
- }).m(function(Command, cs, config, o) {
4054
+ var _ReleaseFileSystemNfsV3LocksCommand = class _ReleaseFileSystemNfsV3LocksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4123
4055
  return [
4124
4056
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4125
4057
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4133,9 +4065,7 @@ var ReleaseFileSystemNfsV3LocksCommand = _ReleaseFileSystemNfsV3LocksCommand;
4133
4065
 
4134
4066
 
4135
4067
 
4136
- var _RestoreVolumeFromSnapshotCommand = class _RestoreVolumeFromSnapshotCommand extends import_smithy_client.Command.classBuilder().ep({
4137
- ...commonParams
4138
- }).m(function(Command, cs, config, o) {
4068
+ var _RestoreVolumeFromSnapshotCommand = class _RestoreVolumeFromSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4139
4069
  return [
4140
4070
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4141
4071
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4149,9 +4079,7 @@ var RestoreVolumeFromSnapshotCommand = _RestoreVolumeFromSnapshotCommand;
4149
4079
 
4150
4080
 
4151
4081
 
4152
- var _StartMisconfiguredStateRecoveryCommand = class _StartMisconfiguredStateRecoveryCommand extends import_smithy_client.Command.classBuilder().ep({
4153
- ...commonParams
4154
- }).m(function(Command, cs, config, o) {
4082
+ var _StartMisconfiguredStateRecoveryCommand = class _StartMisconfiguredStateRecoveryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4155
4083
  return [
4156
4084
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4157
4085
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4165,9 +4093,7 @@ var StartMisconfiguredStateRecoveryCommand = _StartMisconfiguredStateRecoveryCom
4165
4093
 
4166
4094
 
4167
4095
 
4168
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
4169
- ...commonParams
4170
- }).m(function(Command, cs, config, o) {
4096
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4171
4097
  return [
4172
4098
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4173
4099
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4181,9 +4107,7 @@ var TagResourceCommand = _TagResourceCommand;
4181
4107
 
4182
4108
 
4183
4109
 
4184
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
4185
- ...commonParams
4186
- }).m(function(Command, cs, config, o) {
4110
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4187
4111
  return [
4188
4112
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4189
4113
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4197,9 +4121,7 @@ var UntagResourceCommand = _UntagResourceCommand;
4197
4121
 
4198
4122
 
4199
4123
 
4200
- var _UpdateDataRepositoryAssociationCommand = class _UpdateDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep({
4201
- ...commonParams
4202
- }).m(function(Command, cs, config, o) {
4124
+ var _UpdateDataRepositoryAssociationCommand = class _UpdateDataRepositoryAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4203
4125
  return [
4204
4126
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4205
4127
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4213,9 +4135,7 @@ var UpdateDataRepositoryAssociationCommand = _UpdateDataRepositoryAssociationCom
4213
4135
 
4214
4136
 
4215
4137
 
4216
- var _UpdateFileCacheCommand = class _UpdateFileCacheCommand extends import_smithy_client.Command.classBuilder().ep({
4217
- ...commonParams
4218
- }).m(function(Command, cs, config, o) {
4138
+ var _UpdateFileCacheCommand = class _UpdateFileCacheCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4219
4139
  return [
4220
4140
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4221
4141
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4229,9 +4149,7 @@ var UpdateFileCacheCommand = _UpdateFileCacheCommand;
4229
4149
 
4230
4150
 
4231
4151
 
4232
- var _UpdateFileSystemCommand = class _UpdateFileSystemCommand extends import_smithy_client.Command.classBuilder().ep({
4233
- ...commonParams
4234
- }).m(function(Command, cs, config, o) {
4152
+ var _UpdateFileSystemCommand = class _UpdateFileSystemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4235
4153
  return [
4236
4154
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4237
4155
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4245,9 +4163,7 @@ var UpdateFileSystemCommand = _UpdateFileSystemCommand;
4245
4163
 
4246
4164
 
4247
4165
 
4248
- var _UpdateSharedVpcConfigurationCommand = class _UpdateSharedVpcConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
4249
- ...commonParams
4250
- }).m(function(Command, cs, config, o) {
4166
+ var _UpdateSharedVpcConfigurationCommand = class _UpdateSharedVpcConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4251
4167
  return [
4252
4168
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4253
4169
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4261,9 +4177,7 @@ var UpdateSharedVpcConfigurationCommand = _UpdateSharedVpcConfigurationCommand;
4261
4177
 
4262
4178
 
4263
4179
 
4264
- var _UpdateSnapshotCommand = class _UpdateSnapshotCommand extends import_smithy_client.Command.classBuilder().ep({
4265
- ...commonParams
4266
- }).m(function(Command, cs, config, o) {
4180
+ var _UpdateSnapshotCommand = class _UpdateSnapshotCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4267
4181
  return [
4268
4182
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4269
4183
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4277,9 +4191,7 @@ var UpdateSnapshotCommand = _UpdateSnapshotCommand;
4277
4191
 
4278
4192
 
4279
4193
 
4280
- var _UpdateStorageVirtualMachineCommand = class _UpdateStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep({
4281
- ...commonParams
4282
- }).m(function(Command, cs, config, o) {
4194
+ var _UpdateStorageVirtualMachineCommand = class _UpdateStorageVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4283
4195
  return [
4284
4196
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4285
4197
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4293,9 +4205,7 @@ var UpdateStorageVirtualMachineCommand = _UpdateStorageVirtualMachineCommand;
4293
4205
 
4294
4206
 
4295
4207
 
4296
- var _UpdateVolumeCommand = class _UpdateVolumeCommand extends import_smithy_client.Command.classBuilder().ep({
4297
- ...commonParams
4298
- }).m(function(Command, cs, config, o) {
4208
+ var _UpdateVolumeCommand = class _UpdateVolumeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4299
4209
  return [
4300
4210
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4301
4211
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_AssociateFileSystemAliasesCommand, se_AssociateFileSystemAliasesComm
6
6
  export { $Command };
7
7
  export class AssociateFileSystemAliasesCommand 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_CancelDataRepositoryTaskCommand, se_CancelDataRepositoryTaskCommand
6
6
  export { $Command };
7
7
  export class CancelDataRepositoryTaskCommand 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),
@@ -7,9 +7,7 @@ import { de_CopyBackupCommand, se_CopyBackupCommand } from "../protocols/Aws_jso
7
7
  export { $Command };
8
8
  export class CopyBackupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CopySnapshotAndUpdateVolumeCommand, se_CopySnapshotAndUpdateVolumeCo
7
7
  export { $Command };
8
8
  export class CopySnapshotAndUpdateVolumeCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateBackupCommand, se_CreateBackupCommand } from "../protocols/Aws
7
7
  export { $Command };
8
8
  export class CreateBackupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreateDataRepositoryAssociationCommand, se_CreateDataRepositoryAssoc
6
6
  export { $Command };
7
7
  export class CreateDataRepositoryAssociationCommand 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_CreateDataRepositoryTaskCommand, se_CreateDataRepositoryTaskCommand
6
6
  export { $Command };
7
7
  export class CreateDataRepositoryTaskCommand 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_CreateFileCacheCommand, se_CreateFileCacheCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class CreateFileCacheCommand 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),
@@ -7,9 +7,7 @@ import { de_CreateFileSystemCommand, se_CreateFileSystemCommand } from "../proto
7
7
  export { $Command };
8
8
  export class CreateFileSystemCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateFileSystemFromBackupCommand, se_CreateFileSystemFromBackupComm
7
7
  export { $Command };
8
8
  export class CreateFileSystemFromBackupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateSnapshotCommand, se_CreateSnapshotCommand } from "../protocols
7
7
  export { $Command };
8
8
  export class CreateSnapshotCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateStorageVirtualMachineCommand, se_CreateStorageVirtualMachineCo
7
7
  export { $Command };
8
8
  export class CreateStorageVirtualMachineCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),