diff --git a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts index bab2c52c00489..0e3fffe692d7c 100644 --- a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts @@ -84,9 +84,7 @@ export class AcceptAddressTransferCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts index 743f9e6e72965..cc8ffb03771ea 100644 --- a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts @@ -82,9 +82,7 @@ export class AcceptReservedInstancesExchangeQuoteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts index 34a33b4cabfe9..b4ede34db3141 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts @@ -91,9 +91,7 @@ export class AcceptTransitGatewayMulticastDomainAssociationsCommand extends $Com ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts index 1359d265253c0..afb8ad068e107 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts @@ -106,9 +106,7 @@ export class AcceptTransitGatewayPeeringAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts index 8fdcaaf9505cb..236815a3f3f44 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts @@ -96,9 +96,7 @@ export class AcceptTransitGatewayVpcAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts index ac897f13ee99a..9374ddd46f242 100644 --- a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts @@ -79,9 +79,7 @@ export class AcceptVpcEndpointConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts index b3979a0b3ee5a..b43ffc84dc046 100644 --- a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts @@ -126,9 +126,7 @@ export class AcceptVpcPeeringConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts index 1b4f861cef077..39ad36b6cdea8 100644 --- a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts @@ -92,9 +92,7 @@ export class AdvertiseByoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AllocateAddressCommand.ts b/clients/client-ec2/src/commands/AllocateAddressCommand.ts index bcb5858a1ceeb..9177193c4461f 100644 --- a/clients/client-ec2/src/commands/AllocateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AllocateAddressCommand.ts @@ -118,9 +118,7 @@ export class AllocateAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AllocateHostsCommand.ts b/clients/client-ec2/src/commands/AllocateHostsCommand.ts index e1adf964bd18a..14233e728e034 100644 --- a/clients/client-ec2/src/commands/AllocateHostsCommand.ts +++ b/clients/client-ec2/src/commands/AllocateHostsCommand.ts @@ -91,9 +91,7 @@ export class AllocateHostsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts index 43aa4b881df83..b3207b186befb 100644 --- a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts @@ -89,9 +89,7 @@ export class AllocateIpamPoolCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts index b186a5566746e..92ca319e35325 100644 --- a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts @@ -82,9 +82,7 @@ export class ApplySecurityGroupsToClientVpnTargetNetworkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts index 5aa6b78babc1c..c41189ab80348 100644 --- a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts @@ -88,9 +88,7 @@ export class AssignIpv6AddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts index cfd145b548d57..ae2fedbc82ed8 100644 --- a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts @@ -124,9 +124,7 @@ export class AssignPrivateIpAddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts index 5445373c1b327..705bf255ae081 100644 --- a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts @@ -88,9 +88,7 @@ export class AssignPrivateNatGatewayAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateAddressCommand.ts b/clients/client-ec2/src/commands/AssociateAddressCommand.ts index 6987ecd2a4abc..f1f27f9270f43 100644 --- a/clients/client-ec2/src/commands/AssociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateAddressCommand.ts @@ -122,9 +122,7 @@ export class AssociateAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts index a20cd19793dc7..a1a76a379181c 100644 --- a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts @@ -78,9 +78,7 @@ export class AssociateClientVpnTargetNetworkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts index b281b0413ee05..0bd51c3270e99 100644 --- a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts @@ -92,9 +92,7 @@ export class AssociateDhcpOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts index 0c2d85cf49d69..e9d202eb5bb02 100644 --- a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts @@ -89,9 +89,7 @@ export class AssociateEnclaveCertificateIamRoleCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts index 208ccadc9f3ff..dc438bcff3b6b 100644 --- a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts @@ -106,9 +106,7 @@ export class AssociateIamInstanceProfileCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts index 29281cae7795e..fb990721b0ab3 100644 --- a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts @@ -118,9 +118,7 @@ export class AssociateInstanceEventWindowCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts index eddc1781a1848..4e6784bdac651 100644 --- a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts @@ -75,9 +75,7 @@ export class AssociateIpamByoasnCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts index 805cf77808983..d0fa530888fa7 100644 --- a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts @@ -101,9 +101,7 @@ export class AssociateIpamResourceDiscoveryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts index 8c958619cf7a4..7993442331805 100644 --- a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts @@ -91,9 +91,7 @@ export class AssociateNatGatewayAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts index 0a777f00decee..bfb342eadffad 100644 --- a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts @@ -95,9 +95,7 @@ export class AssociateRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts index 008f7f3a4958c..c7fe5d6a45fa4 100644 --- a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts @@ -79,9 +79,7 @@ export class AssociateSubnetCidrBlockCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts index 1fa74c2568c4a..a59c9fa35bf6b 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts @@ -93,9 +93,7 @@ export class AssociateTransitGatewayMulticastDomainCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts index 46bb65a839543..dbd7b9ebd777f 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts @@ -81,9 +81,7 @@ export class AssociateTransitGatewayPolicyTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts index f6d1dfb642564..35246dd269c7c 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts @@ -79,9 +79,7 @@ export class AssociateTransitGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts index 366f47a84f5c0..c32e370b060db 100644 --- a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts @@ -88,9 +88,7 @@ export class AssociateTrunkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts index f368687aede4e..e7075742391a5 100644 --- a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts @@ -101,9 +101,7 @@ export class AssociateVpcCidrBlockCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts index e669085b37e5e..04df9503f6255 100644 --- a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts @@ -79,9 +79,7 @@ export class AttachClassicLinkVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts index fd568846db585..6ddf10bc205f3 100644 --- a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts @@ -79,9 +79,7 @@ export class AttachInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts index 93821d088656a..913b68b2a028d 100644 --- a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts @@ -94,9 +94,7 @@ export class AttachNetworkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts index 34bcfcd75ce80..722650b341440 100644 --- a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts @@ -131,9 +131,7 @@ export class AttachVerifiedAccessTrustProviderCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachVolumeCommand.ts b/clients/client-ec2/src/commands/AttachVolumeCommand.ts index 8c2ab0edebc42..11167b63ce0c7 100644 --- a/clients/client-ec2/src/commands/AttachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/AttachVolumeCommand.ts @@ -121,9 +121,7 @@ export class AttachVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts index f8e6ae870ea4d..eb688a345b1f9 100644 --- a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts @@ -73,9 +73,7 @@ export class AttachVpnGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts index 10633c45e9635..65e72af779dfd 100644 --- a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts @@ -76,9 +76,7 @@ export class AuthorizeClientVpnIngressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts index 38adde49732ae..0667715c9ca37 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts @@ -207,9 +207,7 @@ export class AuthorizeSecurityGroupEgressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts index 0c16bb3c36bf3..903771dabc4e1 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts @@ -234,9 +234,7 @@ export class AuthorizeSecurityGroupIngressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/BundleInstanceCommand.ts b/clients/client-ec2/src/commands/BundleInstanceCommand.ts index 258923789aa74..b9bcbd68cb532 100644 --- a/clients/client-ec2/src/commands/BundleInstanceCommand.ts +++ b/clients/client-ec2/src/commands/BundleInstanceCommand.ts @@ -104,9 +104,7 @@ export class BundleInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts index c4a3492844348..39d290bf0ed0d 100644 --- a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts @@ -90,9 +90,7 @@ export class CancelBundleTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts index 746ff2f1626a2..61fdf8217a980 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts @@ -71,9 +71,7 @@ export class CancelCapacityReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts index 3dd396c553943..d8cbd3a7e306b 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts @@ -102,9 +102,7 @@ export class CancelCapacityReservationFleetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts index a2a5891a5e4c1..f8b1d4c1be71f 100644 --- a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts @@ -69,9 +69,7 @@ export class CancelConversionTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts index 0506d529f4099..502b3202d9c08 100644 --- a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts @@ -65,9 +65,7 @@ export class CancelExportTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts index 1e8b186ff5465..e8dc06c96387b 100644 --- a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts +++ b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts @@ -69,9 +69,7 @@ export class CancelImageLaunchPermissionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts index 929930ca42c78..23e131ef4cb78 100644 --- a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts @@ -69,9 +69,7 @@ export class CancelImportTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts index d288315f4061e..a49ae0abccb55 100644 --- a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts @@ -102,9 +102,7 @@ export class CancelReservedInstancesListingCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts index 2f466ad10e77a..834db727d25aa 100644 --- a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts @@ -149,9 +149,7 @@ export class CancelSpotFleetRequestsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts index 8d06f7af38bb0..a7257a24559ad 100644 --- a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts @@ -100,9 +100,7 @@ export class CancelSpotInstanceRequestsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts index 72b09c8b34beb..30ea6be15b159 100644 --- a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts @@ -87,9 +87,7 @@ export class ConfirmProductInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts index dca86089ea753..49a3885dadf2e 100644 --- a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts @@ -70,9 +70,7 @@ export class CopyFpgaImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CopyImageCommand.ts b/clients/client-ec2/src/commands/CopyImageCommand.ts index f08d89bc60281..0e1246f68b7ed 100644 --- a/clients/client-ec2/src/commands/CopyImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyImageCommand.ts @@ -113,9 +113,7 @@ export class CopyImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CopySnapshotCommand.ts b/clients/client-ec2/src/commands/CopySnapshotCommand.ts index 6ea84149a8f66..8331934b000d6 100644 --- a/clients/client-ec2/src/commands/CopySnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CopySnapshotCommand.ts @@ -129,9 +129,7 @@ export class CopySnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts index f5aeb0772b306..320b3ec6e49ed 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts @@ -161,9 +161,7 @@ export class CreateCapacityReservationBySplittingCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts index ce2697cf74760..15aaf3a0b7579 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts @@ -139,9 +139,7 @@ export class CreateCapacityReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts index 36f5d2d8672f5..8a25260a68994 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts @@ -129,9 +129,7 @@ export class CreateCapacityReservationFleetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts index c6ff1c40e108b..efe7d96b66a87 100644 --- a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts @@ -89,9 +89,7 @@ export class CreateCarrierGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts index 985e376c3e67e..cc99bf7cf18ff 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts @@ -127,9 +127,7 @@ export class CreateClientVpnEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts index d773a1282d015..6db9267688c42 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts @@ -74,9 +74,7 @@ export class CreateClientVpnRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts index 4f8673f2bb5d0..dbb66b7adbfb1 100644 --- a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts @@ -73,9 +73,7 @@ export class CreateCoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts index 092ed92c1b336..7e4fe974cb4e7 100644 --- a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts @@ -90,9 +90,7 @@ export class CreateCoipPoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts index 705e3530db10a..c2f7b9d88dd8c 100644 --- a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts @@ -135,9 +135,7 @@ export class CreateCustomerGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts index 9bb2e628d537a..ce0625642c3fe 100644 --- a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts @@ -112,9 +112,7 @@ export class CreateDefaultSubnetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts index 5d092578088f1..f04340d789ef6 100644 --- a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts @@ -109,9 +109,7 @@ export class CreateDefaultVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts index 977893dab2239..7608879e9d53d 100644 --- a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts @@ -191,9 +191,7 @@ export class CreateDhcpOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts index 873956a163c5e..0ed710bda0d13 100644 --- a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts @@ -101,9 +101,7 @@ export class CreateEgressOnlyInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateFleetCommand.ts b/clients/client-ec2/src/commands/CreateFleetCommand.ts index 442264c6027cf..b9325051d9aeb 100644 --- a/clients/client-ec2/src/commands/CreateFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateFleetCommand.ts @@ -413,9 +413,7 @@ export class CreateFleetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts index a34e17928a961..f92479dfd3ae3 100644 --- a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts @@ -117,9 +117,7 @@ export class CreateFlowLogsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts index 628f6fafeff85..5d102ea8f0118 100644 --- a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts @@ -93,9 +93,7 @@ export class CreateFpgaImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateImageCommand.ts b/clients/client-ec2/src/commands/CreateImageCommand.ts index e8423122e9720..874a72b18fe8e 100644 --- a/clients/client-ec2/src/commands/CreateImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateImageCommand.ts @@ -135,9 +135,7 @@ export class CreateImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts index b4c60215e53d5..2bad27de7283a 100644 --- a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts @@ -113,9 +113,7 @@ export class CreateInstanceConnectEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts index 57a114b8b3813..cfc71386c5e18 100644 --- a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts @@ -141,9 +141,7 @@ export class CreateInstanceEventWindowCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts index 8921be42ed9ae..d518814daf611 100644 --- a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts @@ -108,9 +108,7 @@ export class CreateInstanceExportTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts index 7b44b6a8203d2..e147579fd5e38 100644 --- a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts @@ -112,9 +112,7 @@ export class CreateInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateIpamCommand.ts b/clients/client-ec2/src/commands/CreateIpamCommand.ts index aa8bde1192b88..4abc8f962dbe0 100644 --- a/clients/client-ec2/src/commands/CreateIpamCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamCommand.ts @@ -117,9 +117,7 @@ export class CreateIpamCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts index f0a4fc7f04c70..1550325187f64 100644 --- a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts @@ -105,9 +105,7 @@ export class CreateIpamExternalResourceVerificationTokenCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts index 59f82f95be902..1fac89c0f3d62 100644 --- a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts @@ -143,9 +143,7 @@ export class CreateIpamPoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts index 4c2ef997a5223..e1b52c9b5313f 100644 --- a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts @@ -102,9 +102,7 @@ export class CreateIpamResourceDiscoveryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts index 16f4ca643a5f1..f39ec40188aaf 100644 --- a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts @@ -97,9 +97,7 @@ export class CreateIpamScopeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts index 46860f6fbf152..51e7f2099e556 100644 --- a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts @@ -109,9 +109,7 @@ export class CreateKeyPairCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts index 4c93aa96168ae..7da944a9466db 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts @@ -409,9 +409,7 @@ export class CreateLaunchTemplateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts index 14a4b8773cb0f..c5940852a7fdd 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts @@ -646,9 +646,7 @@ export class CreateLaunchTemplateVersionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts index ffa45af459ec9..cff1fedaf937e 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts @@ -95,9 +95,7 @@ export class CreateLocalGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts index 7d4be0304fbab..8ad9ba9353504 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts @@ -100,9 +100,7 @@ export class CreateLocalGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index 56e6fa127c4cd..4891c59b5f695 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -103,9 +103,7 @@ export class CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts index 32ee2a195c47e..a5fcfad660d7c 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts @@ -101,9 +101,7 @@ export class CreateLocalGatewayRouteTableVpcAssociationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts index 9367aa58f6f6f..ad75241dab78d 100644 --- a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts @@ -103,9 +103,7 @@ export class CreateManagedPrefixListCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts index 83d820c97f128..6780e3c65d8bd 100644 --- a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts @@ -165,9 +165,7 @@ export class CreateNatGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts index ccfb217162307..584734ab0d2df 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts @@ -155,9 +155,7 @@ export class CreateNetworkAclCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts index bf9a3680d0524..6ecfd1ef9133e 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts @@ -106,9 +106,7 @@ export class CreateNetworkAclEntryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts index ac3063eb6aeba..dd1e1075a9872 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts @@ -297,9 +297,7 @@ export class CreateNetworkInsightsAccessScopeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts index a4db4e6d6a8db..262e5941b3805 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts @@ -152,9 +152,7 @@ export class CreateNetworkInsightsPathCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts index effc9c1b67d18..41ee79ab5522d 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts @@ -260,9 +260,7 @@ export class CreateNetworkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts index 91c906076c45c..80e973680c173 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts @@ -86,9 +86,7 @@ export class CreateNetworkInterfacePermissionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts index d65431f4afed4..7d83e354f9c98 100644 --- a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts @@ -115,9 +115,7 @@ export class CreatePlacementGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts index 42a3cb77ff7e7..c9885e010d682 100644 --- a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts @@ -77,9 +77,7 @@ export class CreatePublicIpv4PoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts index d12223ee9582d..3201631d99347 100644 --- a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts @@ -100,9 +100,7 @@ export class CreateReplaceRootVolumeTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts index 6c574acc02606..44565d1b3c402 100644 --- a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts @@ -124,9 +124,7 @@ export class CreateReservedInstancesListingCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts index 39f3908adfb1e..9a8860f449677 100644 --- a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts @@ -84,9 +84,7 @@ export class CreateRestoreImageTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateRouteCommand.ts b/clients/client-ec2/src/commands/CreateRouteCommand.ts index 10699200478d3..68f820aab0446 100644 --- a/clients/client-ec2/src/commands/CreateRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteCommand.ts @@ -113,9 +113,7 @@ export class CreateRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts index 5f5eee434904b..e90aa86c14555 100644 --- a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts @@ -158,9 +158,7 @@ export class CreateRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts index b6ee7f1a4f81d..ff9f3dc9e6893 100644 --- a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts @@ -121,9 +121,7 @@ export class CreateSecurityGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts index 83402f09b8da4..1463192932f0d 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts @@ -149,9 +149,7 @@ export class CreateSnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts index fff7f8b1d7946..c15c665a8355a 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts @@ -115,9 +115,7 @@ export class CreateSnapshotsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts index aa3a59a61c67d..5a35da8d85770 100644 --- a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts @@ -106,9 +106,7 @@ export class CreateSpotDatafeedSubscriptionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts index beaaba829a0ce..9f72c1e7b2b36 100644 --- a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts @@ -77,9 +77,7 @@ export class CreateStoreImageTaskCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts index fb981e0c62d44..39e51f0b01c06 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts @@ -95,9 +95,7 @@ export class CreateSubnetCidrReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateSubnetCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCommand.ts index 4841971143753..43f3913c24e7c 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCommand.ts @@ -169,9 +169,7 @@ export class CreateSubnetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTagsCommand.ts b/clients/client-ec2/src/commands/CreateTagsCommand.ts index 9924685746b1f..96bd14f4386d4 100644 --- a/clients/client-ec2/src/commands/CreateTagsCommand.ts +++ b/clients/client-ec2/src/commands/CreateTagsCommand.ts @@ -99,9 +99,7 @@ export class CreateTagsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts index e86eacf5e872b..3bcda6674cf47 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts @@ -149,9 +149,7 @@ export class CreateTrafficMirrorFilterCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts index e835a2dcfaa50..bee8b6ed58a76 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts @@ -122,9 +122,7 @@ export class CreateTrafficMirrorFilterRuleCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts index d6632f2f48763..3807559abcaf5 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts @@ -107,9 +107,7 @@ export class CreateTrafficMirrorSessionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts index 7dc5277f207e4..c6b2551bd446d 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts @@ -101,9 +101,7 @@ export class CreateTrafficMirrorTargetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts index 5af3cc934f25b..374181202f9ac 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts @@ -130,9 +130,7 @@ export class CreateTransitGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts index e38d13bf35a4c..f9002a9a85c4c 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts @@ -96,9 +96,7 @@ export class CreateTransitGatewayConnectCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts index af93051981070..95dd61e118626 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts @@ -122,9 +122,7 @@ export class CreateTransitGatewayConnectPeerCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts index 5c21e4ba8e530..bf04907a7f5a5 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts @@ -109,9 +109,7 @@ export class CreateTransitGatewayMulticastDomainCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts index 04586f56ae5f6..224d064e825f7 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts @@ -126,9 +126,7 @@ export class CreateTransitGatewayPeeringAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts index d8ff0d29f7152..ce1363b145489 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts @@ -93,9 +93,7 @@ export class CreateTransitGatewayPolicyTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts index 7c1be16d739d4..ad5f3a77e4baf 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts @@ -89,9 +89,7 @@ export class CreateTransitGatewayPrefixListReferenceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts index 9a512baa57c01..a30fc1e300aa2 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts @@ -82,9 +82,7 @@ export class CreateTransitGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts index 029dd1d63b49c..b243a55280526 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts @@ -104,9 +104,7 @@ export class CreateTransitGatewayRouteTableAnnouncementCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts index 22751e4b996cf..2418802c24d1a 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts @@ -95,9 +95,7 @@ export class CreateTransitGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts index 72ac4ba87ca37..c005d4c3d8ad4 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts @@ -117,9 +117,7 @@ export class CreateTransitGatewayVpcAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts index d4f4d3bc39a96..832b893573684 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts @@ -151,9 +151,7 @@ export class CreateVerifiedAccessEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts index 499a9d4fd2f3a..117b23bbd3325 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts @@ -106,9 +106,7 @@ export class CreateVerifiedAccessGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts index 0922753afef1c..3077c0694e38d 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts @@ -103,9 +103,7 @@ export class CreateVerifiedAccessInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts index ce5aa9c806d8f..1f90eae3569dc 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts @@ -144,9 +144,7 @@ export class CreateVerifiedAccessTrustProviderCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVolumeCommand.ts b/clients/client-ec2/src/commands/CreateVolumeCommand.ts index 3d9c234c67684..19627cf39c641 100644 --- a/clients/client-ec2/src/commands/CreateVolumeCommand.ts +++ b/clients/client-ec2/src/commands/CreateVolumeCommand.ts @@ -183,9 +183,7 @@ export class CreateVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpcCommand.ts b/clients/client-ec2/src/commands/CreateVpcCommand.ts index d2d208ed1a925..7432300f20b7d 100644 --- a/clients/client-ec2/src/commands/CreateVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcCommand.ts @@ -157,9 +157,7 @@ export class CreateVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts index 4f3893b745550..4367efb565912 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts @@ -154,9 +154,7 @@ export class CreateVpcEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts index 124e930d100d8..6e7bf7959cd6c 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts @@ -96,9 +96,7 @@ export class CreateVpcEndpointConnectionNotificationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts index 4d3b42fbe4f15..f2e24aedc2dea 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts @@ -154,9 +154,7 @@ export class CreateVpcEndpointServiceConfigurationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts index 761dbac3df9b7..d7cbe006fe5d5 100644 --- a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts @@ -147,9 +147,7 @@ export class CreateVpcPeeringConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts index ac698b46ea9fd..a0313e2c2a9ec 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts @@ -275,9 +275,7 @@ export class CreateVpnConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts index 82b1837759e39..e8da6c2c42780 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts @@ -68,9 +68,7 @@ export class CreateVpnConnectionRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts index 9ea92513bfdc5..f560619ae1252 100644 --- a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts @@ -101,9 +101,7 @@ export class CreateVpnGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts index 9683fec2c6863..b160d32ff7507 100644 --- a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts @@ -82,9 +82,7 @@ export class DeleteCarrierGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts index 499c0c10d13b0..313fce322860d 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts @@ -70,9 +70,7 @@ export class DeleteClientVpnEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts index f72845dc44150..339f84d215b4e 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts @@ -74,9 +74,7 @@ export class DeleteClientVpnRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts index c8ab1bd773524..1a63b00c637bd 100644 --- a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts @@ -73,9 +73,7 @@ export class DeleteCoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts index a1362210134d3..ef20968d64363 100644 --- a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts @@ -79,9 +79,7 @@ export class DeleteCoipPoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts index b9a35991c67ef..3eb25e982f939 100644 --- a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts @@ -76,9 +76,7 @@ export class DeleteCustomerGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts index 7eab61af0d50c..9fc57143a162b 100644 --- a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts @@ -75,9 +75,7 @@ export class DeleteDhcpOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts index e090434bdb9fb..6b5b03c4c0d1b 100644 --- a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts @@ -71,9 +71,7 @@ export class DeleteEgressOnlyInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts index 061b07a6afd4d..ec280257bdfa9 100644 --- a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts @@ -116,9 +116,7 @@ export class DeleteFleetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts index 934b1637607f5..2c0c399543633 100644 --- a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts @@ -76,9 +76,7 @@ export class DeleteFlowLogsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts index 182a1663d8909..06f0a71553b2e 100644 --- a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts @@ -66,9 +66,7 @@ export class DeleteFpgaImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts index ad62cf1c647cd..e954fb7399f38 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts @@ -93,9 +93,7 @@ export class DeleteInstanceConnectEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts index 732b621c0e118..4d3c0330235af 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts @@ -72,9 +72,7 @@ export class DeleteInstanceEventWindowCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts index 370c5324a4e4e..0bc3a0e0eaf43 100644 --- a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts @@ -76,9 +76,7 @@ export class DeleteInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteIpamCommand.ts b/clients/client-ec2/src/commands/DeleteIpamCommand.ts index abbe805c9cdbd..7923377321caf 100644 --- a/clients/client-ec2/src/commands/DeleteIpamCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamCommand.ts @@ -96,9 +96,7 @@ export class DeleteIpamCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts index 714962db2e6c4..7579794e20ec3 100644 --- a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts @@ -93,9 +93,7 @@ export class DeleteIpamExternalResourceVerificationTokenCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts index 802fdf1f66fcc..4e9dbd33cc31f 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts @@ -114,9 +114,7 @@ export class DeleteIpamPoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts index f15d3d8b86f74..04b9e8c2985b1 100644 --- a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts @@ -85,9 +85,7 @@ export class DeleteIpamResourceDiscoveryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts index 9a162b2afa47e..2edef6c640193 100644 --- a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts @@ -85,9 +85,7 @@ export class DeleteIpamScopeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts index d1db12fc7baec..bad5c7336cd05 100644 --- a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts @@ -79,9 +79,7 @@ export class DeleteKeyPairCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts index 0814992e76660..7416b620a79e2 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts @@ -104,9 +104,7 @@ export class DeleteLaunchTemplateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts index f5e3065827bfb..8927cc3044724 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts @@ -124,9 +124,7 @@ export class DeleteLaunchTemplateVersionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts index ed531271bf80a..992f8d60fcc47 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts @@ -80,9 +80,7 @@ export class DeleteLocalGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts index b8d634407a86d..77f53aa992e59 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts @@ -88,9 +88,7 @@ export class DeleteLocalGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index c4f60106b91bc..89ff410aa5e9c 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -91,9 +91,7 @@ export class DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts index 8e4ffab343f02..86a57be2d8e73 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts @@ -89,9 +89,7 @@ export class DeleteLocalGatewayRouteTableVpcAssociationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts index eee135b946d3c..7891dae0eb321 100644 --- a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts @@ -82,9 +82,7 @@ export class DeleteManagedPrefixListCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts index 43642834b8b79..c008f56bf7371 100644 --- a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts @@ -84,9 +84,7 @@ export class DeleteNatGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts index 2250473ae442f..d2a7cea175e87 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts @@ -75,9 +75,7 @@ export class DeleteNetworkAclCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts index 658ac031beaab..e6f791d892b5b 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts @@ -79,9 +79,7 @@ export class DeleteNetworkAclEntryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts index dc08c67162863..d05ac3c8f62d5 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts @@ -75,9 +75,7 @@ export class DeleteNetworkInsightsAccessScopeAnalysisCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts index c107082edd3c8..502e46bbe208b 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts @@ -71,9 +71,7 @@ export class DeleteNetworkInsightsAccessScopeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts index 6c7673936d794..c3c741f543e41 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts @@ -68,9 +68,7 @@ export class DeleteNetworkInsightsAnalysisCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts index 6569441a1b136..1b69ae1e6d226 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts @@ -66,9 +66,7 @@ export class DeleteNetworkInsightsPathCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts index 446bd6b3ea46d..cd1fa4247e502 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts @@ -75,9 +75,7 @@ export class DeleteNetworkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts index 2ead255152dfc..2416551a29b3d 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts @@ -75,9 +75,7 @@ export class DeleteNetworkInterfacePermissionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts index 18ee6604206e5..98bf9b94ed9bb 100644 --- a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts @@ -78,9 +78,7 @@ export class DeletePlacementGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts index e88015b483a9d..30d75f365e1b0 100644 --- a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts @@ -67,9 +67,7 @@ export class DeletePublicIpv4PoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts index 0469f1c15e8b1..1efdc163faad7 100644 --- a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts @@ -83,9 +83,7 @@ export class DeleteQueuedReservedInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteRouteCommand.ts b/clients/client-ec2/src/commands/DeleteRouteCommand.ts index ac922146b3620..16d404b01790f 100644 --- a/clients/client-ec2/src/commands/DeleteRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteCommand.ts @@ -79,9 +79,7 @@ export class DeleteRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts index 4a801a5924942..26f371e786af7 100644 --- a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts @@ -75,9 +75,7 @@ export class DeleteRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts index 3882dfc54f6b6..d795ca804471f 100644 --- a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts @@ -79,9 +79,7 @@ export class DeleteSecurityGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts index 0b9c2c8e530a7..d1cc742debc5c 100644 --- a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts @@ -84,9 +84,7 @@ export class DeleteSnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts index c5da84a61d825..b4815ff06060a 100644 --- a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts @@ -75,9 +75,7 @@ export class DeleteSpotDatafeedSubscriptionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts index a94c579f75d08..96609cc013f78 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts @@ -79,9 +79,7 @@ export class DeleteSubnetCidrReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts index 2c33818210d27..1f0bf74310541 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts @@ -75,9 +75,7 @@ export class DeleteSubnetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTagsCommand.ts b/clients/client-ec2/src/commands/DeleteTagsCommand.ts index f6c3e7e9de4e8..6961818276ee1 100644 --- a/clients/client-ec2/src/commands/DeleteTagsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTagsCommand.ts @@ -95,9 +95,7 @@ export class DeleteTagsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts index fd84a1b365368..768bf91174361 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts @@ -67,9 +67,7 @@ export class DeleteTrafficMirrorFilterCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts index fbb280c6ebe29..d18eaa42bda24 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts @@ -68,9 +68,7 @@ export class DeleteTrafficMirrorFilterRuleCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts index 5a6d36f206013..d769c09c33e1b 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts @@ -66,9 +66,7 @@ export class DeleteTrafficMirrorSessionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts index aac905cd1f777..c7ea480429e5d 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts @@ -67,9 +67,7 @@ export class DeleteTrafficMirrorTargetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts index 51c50278b4c1e..c0accabcf9524 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts @@ -94,9 +94,7 @@ export class DeleteTransitGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts index d82c9c3f2a691..082538a052a56 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts @@ -82,9 +82,7 @@ export class DeleteTransitGatewayConnectCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts index 966993a2fbf30..b54d2a2e0e495 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts @@ -99,9 +99,7 @@ export class DeleteTransitGatewayConnectPeerCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts index e467ace885b80..8b38ca01c07ca 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts @@ -92,9 +92,7 @@ export class DeleteTransitGatewayMulticastDomainCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts index aad128594ec9e..62a31c0a52d53 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts @@ -105,9 +105,7 @@ export class DeleteTransitGatewayPeeringAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts index 70caecf322890..33889ee9284ff 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts @@ -82,9 +82,7 @@ export class DeleteTransitGatewayPolicyTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts index 71a08d447aa50..7787c481e91b6 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts @@ -87,9 +87,7 @@ export class DeleteTransitGatewayPrefixListReferenceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts index a649efc351c82..9825b9ed51df2 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts @@ -80,9 +80,7 @@ export class DeleteTransitGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts index 51efc5b44ab46..81eaeb7097a57 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts @@ -92,9 +92,7 @@ export class DeleteTransitGatewayRouteTableAnnouncementCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts index 94d04137ad427..ca46ebc5e98b6 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts @@ -85,9 +85,7 @@ export class DeleteTransitGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts index a69f8dbbbd5af..da4839c4c71ed 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts @@ -93,9 +93,7 @@ export class DeleteTransitGatewayVpcAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts index 9ab3eb4e9d911..8f2500f414109 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts @@ -113,9 +113,7 @@ export class DeleteVerifiedAccessEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts index 52f2ed5e55d41..d6c5cf3b80a52 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts @@ -86,9 +86,7 @@ export class DeleteVerifiedAccessGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts index a8b58237a1b2a..9cf63013213dc 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts @@ -90,9 +90,7 @@ export class DeleteVerifiedAccessInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts index 1602b2030365c..89fc7d2b5fbb6 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts @@ -108,9 +108,7 @@ export class DeleteVerifiedAccessTrustProviderCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts index 51ffadd05ce34..14c3b18b8741b 100644 --- a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts @@ -79,9 +79,7 @@ export class DeleteVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpcCommand.ts b/clients/client-ec2/src/commands/DeleteVpcCommand.ts index 4f32ad1b4cf3d..f151ba3d344d7 100644 --- a/clients/client-ec2/src/commands/DeleteVpcCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcCommand.ts @@ -75,9 +75,7 @@ export class DeleteVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts index e04225a5df013..4361d7d94ae4e 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts @@ -85,9 +85,7 @@ export class DeleteVpcEndpointConnectionNotificationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts index 845195baebe49..d97d513898812 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts @@ -88,9 +88,7 @@ export class DeleteVpcEndpointServiceConfigurationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts index e0be984b18202..7b0c946a12f74 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts @@ -80,9 +80,7 @@ export class DeleteVpcEndpointsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts index 4dca7e59c1630..cd40f0b293691 100644 --- a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts @@ -70,9 +70,7 @@ export class DeleteVpcPeeringConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts index ec132743fc487..c6d68280de8b1 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts @@ -74,9 +74,7 @@ export class DeleteVpnConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts index f0d633d7cfd47..d351adf317e3c 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts @@ -67,9 +67,7 @@ export class DeleteVpnConnectionRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts index 02f5a018216c2..e1cd3507bbf93 100644 --- a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts @@ -67,9 +67,7 @@ export class DeleteVpnGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts index 223463f413446..92ccc7a9c7d82 100644 --- a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts @@ -83,9 +83,7 @@ export class DeprovisionByoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts index a5325db918681..b456ca5b58ddc 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts @@ -73,9 +73,7 @@ export class DeprovisionIpamByoasnCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts index 38539c43f4e6d..05465ae276991 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts @@ -76,9 +76,7 @@ export class DeprovisionIpamPoolCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts index 59ec7567ed633..83edcb5cb5db6 100644 --- a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts @@ -72,9 +72,7 @@ export class DeprovisionPublicIpv4PoolCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeregisterImageCommand.ts b/clients/client-ec2/src/commands/DeregisterImageCommand.ts index b4b4853230892..e52fde429f608 100644 --- a/clients/client-ec2/src/commands/DeregisterImageCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterImageCommand.ts @@ -75,9 +75,7 @@ export class DeregisterImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts index dc7eae3ee3580..7b937e53597e7 100644 --- a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts @@ -86,9 +86,7 @@ export class DeregisterInstanceEventNotificationAttributesCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts index 1e713eb3dce61..eb9210f2608ef 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts @@ -85,9 +85,7 @@ export class DeregisterTransitGatewayMulticastGroupMembersCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts index 7eb4b6a7e29b2..cb9c76c8f9d9f 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -85,9 +85,7 @@ export class DeregisterTransitGatewayMulticastGroupSourcesCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts index d88fb3b1b4fed..6cea31be15a7b 100644 --- a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts @@ -208,9 +208,7 @@ export class DescribeAccountAttributesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts index 90ffe0bd14426..59ae865b9eba3 100644 --- a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts @@ -89,9 +89,7 @@ export class DescribeAddressTransfersCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts index 29bcc46ec7bc5..575cd0287a749 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts @@ -83,9 +83,7 @@ export class DescribeAddressesAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts index 30114fb9749f9..db0f81a66b441 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts @@ -131,9 +131,7 @@ export class DescribeAddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts index 994404eb8030f..5e8fe0b8ac392 100644 --- a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts @@ -88,9 +88,7 @@ export class DescribeAggregateIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts index 9845b9e6dc835..9770c9b2c1a66 100644 --- a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts @@ -147,9 +147,7 @@ export class DescribeAvailabilityZonesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts index 7a1f8d1d4b1e6..5d6b09e971d16 100644 --- a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts @@ -93,9 +93,7 @@ export class DescribeAwsNetworkPerformanceMetricSubscriptionsCommand extends $Co ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts index c4d49c7e7632e..929261d43b6fc 100644 --- a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts @@ -110,9 +110,7 @@ export class DescribeBundleTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts index 449cc40314b37..5c05e5ae47e87 100644 --- a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts @@ -86,9 +86,7 @@ export class DescribeByoipCidrsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts index 516eada97eb1d..ce9e970624250 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts @@ -91,9 +91,7 @@ export class DescribeCapacityBlockOfferingsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts index 87357562d8dda..c439b9499c81c 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts @@ -118,9 +118,7 @@ export class DescribeCapacityReservationFleetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts index fd3c6c35eea96..6c02f2afa6fca 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts @@ -119,9 +119,7 @@ export class DescribeCapacityReservationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts index 711767a4b9854..dbd85990c0f77 100644 --- a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts @@ -92,9 +92,7 @@ export class DescribeCarrierGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts index 5241a60b9dfb2..88fd53bd74bb5 100644 --- a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts @@ -103,9 +103,7 @@ export class DescribeClassicLinkInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts index 39226a31c7f53..71e23b401c232 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts @@ -97,9 +97,7 @@ export class DescribeClientVpnAuthorizationRulesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts index 43d360ab86986..fe3c6b0322055 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts @@ -102,9 +102,7 @@ export class DescribeClientVpnConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts index d1be0ee762f3a..ce31c352d7abc 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts @@ -150,9 +150,7 @@ export class DescribeClientVpnEndpointsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts index 27a3d6e803025..f78276854dfd1 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts @@ -90,9 +90,7 @@ export class DescribeClientVpnRoutesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts index 506240d256153..4cbec8b407d65 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts @@ -99,9 +99,7 @@ export class DescribeClientVpnTargetNetworksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts index 61d2a61bfd8e3..64e3172c7365b 100644 --- a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts @@ -94,9 +94,7 @@ export class DescribeCoipPoolsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts index 40e3581715798..79db3dd3e9a71 100644 --- a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts @@ -126,9 +126,7 @@ export class DescribeConversionTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts index e2ab869538558..1012fc797464d 100644 --- a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts @@ -121,9 +121,7 @@ export class DescribeCustomerGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts index 10eda669cb948..c5d503980f1b4 100644 --- a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts @@ -139,9 +139,7 @@ export class DescribeDhcpOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts index 80295ac5e6191..95ee06ccfb413 100644 --- a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts @@ -105,9 +105,7 @@ export class DescribeEgressOnlyInternetGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts index 15dd6d11d3d4e..71d85f1abd6d4 100644 --- a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts @@ -101,9 +101,7 @@ export class DescribeElasticGpusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts index f2c7fd1ebba2f..403599b24c5ac 100644 --- a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts @@ -98,9 +98,7 @@ export class DescribeExportImageTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts index 913d1df121090..8610f2b8cefcc 100644 --- a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts @@ -98,9 +98,7 @@ export class DescribeExportTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts index dd7cac3367e94..969fcd15a63b1 100644 --- a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts @@ -97,9 +97,7 @@ export class DescribeFastLaunchImagesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts index 7a539d66681ae..7ac67817b9831 100644 --- a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts @@ -92,9 +92,7 @@ export class DescribeFastSnapshotRestoresCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts index 5baa48f8d99a6..1bb9483cbd79c 100644 --- a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts @@ -89,9 +89,7 @@ export class DescribeFleetHistoryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts index aab958565f4fa..129fc23207485 100644 --- a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts @@ -92,9 +92,7 @@ export class DescribeFleetInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts index efecdf3c2b6c4..5738eb35212cf 100644 --- a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts @@ -425,9 +425,7 @@ export class DescribeFleetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts index 862bec7762211..21f1d012316d4 100644 --- a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts @@ -109,9 +109,7 @@ export class DescribeFlowLogsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts index 14a42e57afb00..3b69c31f9f518 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts @@ -83,9 +83,7 @@ export class DescribeFpgaImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts index 3a1a99583a8d4..b547a77ace8d8 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts @@ -123,9 +123,7 @@ export class DescribeFpgaImagesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts index ce75fc10b9c41..4d7c345efbd42 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts @@ -99,9 +99,7 @@ export class DescribeHostReservationOfferingsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts index cc8add9494f39..8f4dc31552cbe 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts @@ -103,9 +103,7 @@ export class DescribeHostReservationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeHostsCommand.ts b/clients/client-ec2/src/commands/DescribeHostsCommand.ts index 17ec770c6e50c..e9ba8e53200b4 100644 --- a/clients/client-ec2/src/commands/DescribeHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostsCommand.ts @@ -130,9 +130,7 @@ export class DescribeHostsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts index 4579cdb1d9ff6..bef5543ff5016 100644 --- a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts @@ -126,9 +126,7 @@ export class DescribeIamInstanceProfileAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts index 6f58c298d8191..c7e0fbfec377f 100644 --- a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts @@ -90,9 +90,7 @@ export class DescribeIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts index 25c8ed43b5c70..c4340f2e53f01 100644 --- a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts @@ -90,9 +90,7 @@ export class DescribeIdentityIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts index f15ecd38d5990..01254a5112284 100644 --- a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts @@ -146,9 +146,7 @@ export class DescribeImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeImagesCommand.ts b/clients/client-ec2/src/commands/DescribeImagesCommand.ts index c6ef8205fb62d..f70dec3174a63 100644 --- a/clients/client-ec2/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImagesCommand.ts @@ -215,9 +215,7 @@ export class DescribeImagesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts index 21a75730bd207..a737061a227d0 100644 --- a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts @@ -128,9 +128,7 @@ export class DescribeImportImageTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts index ef4690e95a95b..c7620cc84bb3b 100644 --- a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts @@ -110,9 +110,7 @@ export class DescribeImportSnapshotTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts index 022ee9e2efaf5..2441906be3464 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts @@ -214,9 +214,7 @@ export class DescribeInstanceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts index 12658f512bef6..4335e37447279 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts @@ -111,9 +111,7 @@ export class DescribeInstanceConnectEndpointsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts index 7744a81e18a74..291344aa10dd7 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts @@ -111,9 +111,7 @@ export class DescribeInstanceCreditSpecificationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts index 428a246a3d95c..f332171ca3e02 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts @@ -80,9 +80,7 @@ export class DescribeInstanceEventNotificationAttributesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts index 067ec3ecfa68e..6e600dcb5abbb 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts @@ -124,9 +124,7 @@ export class DescribeInstanceEventWindowsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts index 4e143cb21bb05..0dddead6eec27 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts @@ -208,9 +208,7 @@ export class DescribeInstanceStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts index a40a77ed3385f..fcacee5c16176 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts @@ -140,9 +140,7 @@ export class DescribeInstanceTopologyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts index f7b271b6b771d..2fb9b0c311840 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts @@ -87,9 +87,7 @@ export class DescribeInstanceTypeOfferingsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts index 33140ba1b168a..f964a6df0aa92 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts @@ -260,9 +260,7 @@ export class DescribeInstanceTypesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts index b29eeb71f695b..9b3bd268c81d6 100644 --- a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts @@ -389,9 +389,7 @@ export class DescribeInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts index 5a26ddbaf6589..636a4c9a741e3 100644 --- a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts @@ -132,9 +132,7 @@ export class DescribeInternetGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts index a265a1934c710..0be18d9e20256 100644 --- a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts @@ -75,9 +75,7 @@ export class DescribeIpamByoasnCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts index 79743f223783e..aefeb14ab436c 100644 --- a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts @@ -108,9 +108,7 @@ export class DescribeIpamExternalResourceVerificationTokensCommand extends $Comm ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts index f2447ea01a959..25fa6d1a697ff 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts @@ -121,9 +121,7 @@ export class DescribeIpamPoolsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts index 60fe102304637..8157a6b32f30d 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts @@ -105,9 +105,7 @@ export class DescribeIpamResourceDiscoveriesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts index 6f98b8fc558cc..8fd32610c0512 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts @@ -107,9 +107,7 @@ export class DescribeIpamResourceDiscoveryAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts index 8f7168329f299..a9ad29392971c 100644 --- a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts @@ -98,9 +98,7 @@ export class DescribeIpamScopesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts index cd9ee63c3bc3a..f0f5537207420 100644 --- a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts @@ -110,9 +110,7 @@ export class DescribeIpamsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts index b5b5fc5444c29..617d3b5636dbe 100644 --- a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts @@ -95,9 +95,7 @@ export class DescribeIpv6PoolsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts index 5c2c608dc7495..812306c91b71b 100644 --- a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts @@ -120,9 +120,7 @@ export class DescribeKeyPairsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts index 9fb51df959ec4..0061f754e5d99 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts @@ -421,9 +421,7 @@ export class DescribeLaunchTemplateVersionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts index 05b8ad414507e..949d1250047ae 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts @@ -124,9 +124,7 @@ export class DescribeLaunchTemplatesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts index d167eeaae544b..dcbc42eb8e396 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts @@ -104,9 +104,7 @@ export class DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsComm ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts index 73faa4cde2b26..4ac13ede7db72 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts @@ -104,9 +104,7 @@ export class DescribeLocalGatewayRouteTableVpcAssociationsCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts index 0cdc8a81447ec..89bbff71596a7 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts @@ -105,9 +105,7 @@ export class DescribeLocalGatewayRouteTablesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts index a4c22a1aa4e80..ef20489001b87 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts @@ -103,9 +103,7 @@ export class DescribeLocalGatewayVirtualInterfaceGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts index 312c2414e3c4e..fafaaf9e6d038 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts @@ -105,9 +105,7 @@ export class DescribeLocalGatewayVirtualInterfacesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts index 10b462556386d..47fb61963989e 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts @@ -93,9 +93,7 @@ export class DescribeLocalGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts index 4086fbc58b2ef..1b3a6dde63c04 100644 --- a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts @@ -91,9 +91,7 @@ export class DescribeLockedSnapshotsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts index 2b4a7fd20d498..aaef3ffa47680 100644 --- a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts @@ -85,9 +85,7 @@ export class DescribeMacHostsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts index 4516f61d20756..9fa70edd3892e 100644 --- a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts @@ -98,9 +98,7 @@ export class DescribeManagedPrefixListsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts index 4e6219e1f9a97..2e2258b6d2ecc 100644 --- a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts @@ -107,9 +107,7 @@ export class DescribeMovingAddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts index 01052eaa0d2f6..5d2d4ce66ec39 100644 --- a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts @@ -157,9 +157,7 @@ export class DescribeNatGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts index 65d7e7e75b14e..75cd30596ea21 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts @@ -169,9 +169,7 @@ export class DescribeNetworkAclsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts index 24a022c89ff4c..d42ca0b43b225 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts @@ -110,9 +110,7 @@ export class DescribeNetworkInsightsAccessScopeAnalysesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts index 421edc6fdaf9a..b6e07596b03d2 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts @@ -100,9 +100,7 @@ export class DescribeNetworkInsightsAccessScopesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts index f863795933690..c22558591defc 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts @@ -802,9 +802,7 @@ export class DescribeNetworkInsightsAnalysesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts index e59741db3f9e1..7689a681be5f3 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts @@ -125,9 +125,7 @@ export class DescribeNetworkInsightsPathsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts index b90148b41b1c9..fded7a65153d9 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts @@ -190,9 +190,7 @@ export class DescribeNetworkInterfaceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts index baba14859bc88..5e6027eb506f7 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts @@ -98,9 +98,7 @@ export class DescribeNetworkInterfacePermissionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts index c053d34f3d696..15a4262220931 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts @@ -250,9 +250,7 @@ export class DescribeNetworkInterfacesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts index c36409c37a427..7721b23b5aca4 100644 --- a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts @@ -104,9 +104,7 @@ export class DescribePlacementGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts index 8923433c7f422..678339697c815 100644 --- a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts @@ -89,9 +89,7 @@ export class DescribePrefixListsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts index 3b7a120905652..03b40649a551b 100644 --- a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts @@ -99,9 +99,7 @@ export class DescribePrincipalIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts index e04da6d81c3e7..e651891ff9101 100644 --- a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts @@ -100,9 +100,7 @@ export class DescribePublicIpv4PoolsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts index bfe1aba92f534..37fb4eaddcf90 100644 --- a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts @@ -149,9 +149,7 @@ export class DescribeRegionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts index 3882757d6bebe..728ccd2090462 100644 --- a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts @@ -102,9 +102,7 @@ export class DescribeReplaceRootVolumeTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts index 8221a045cae43..f08cae3ccd68b 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts @@ -116,9 +116,7 @@ export class DescribeReservedInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts index e02efbf204798..0a7d5284de4fc 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts @@ -119,9 +119,7 @@ export class DescribeReservedInstancesListingsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts index cd1564bcf547e..15fc2f18d2ae5 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts @@ -120,9 +120,7 @@ export class DescribeReservedInstancesModificationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts index 63fb26c2f5c1e..419c40276f2f0 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts @@ -133,9 +133,7 @@ export class DescribeReservedInstancesOfferingsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts index 803b715abd53c..5240f2d59fe10 100644 --- a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts @@ -173,9 +173,7 @@ export class DescribeRouteTablesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts index 4b215943c05cd..5c31718b1934d 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts @@ -127,9 +127,7 @@ export class DescribeScheduledInstanceAvailabilityCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts index d2146b3a1ecdf..7075b1f694730 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts @@ -109,9 +109,7 @@ export class DescribeScheduledInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts index 561c9e1ae823f..ce9ff86566a65 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts @@ -104,9 +104,7 @@ export class DescribeSecurityGroupReferencesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts index 6ba06e865b2f0..666e88d26edd5 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts @@ -106,9 +106,7 @@ export class DescribeSecurityGroupRulesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts index 610e89325e14d..e3aa3f51a8530 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts @@ -199,9 +199,7 @@ export class DescribeSecurityGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts index f9121b16e58d5..982d7af95bea4 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts @@ -99,9 +99,7 @@ export class DescribeSnapshotAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts index 1a90ccee126b4..954b06a0a4d0f 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts @@ -96,9 +96,7 @@ export class DescribeSnapshotTierStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts index bfecd80113a1f..5a25e010fec7a 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts @@ -225,9 +225,7 @@ export class DescribeSnapshotsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts index b6b4ad66d0b04..0d749ae4ee2e2 100644 --- a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts @@ -99,9 +99,7 @@ export class DescribeSpotDatafeedSubscriptionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts index 467f4c0259d25..f0a8604de401c 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts @@ -100,9 +100,7 @@ export class DescribeSpotFleetInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts index 8a2dc0675fbdf..3c344c5829b04 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts @@ -146,9 +146,7 @@ export class DescribeSpotFleetRequestHistoryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts index 17541f6fb3981..7f5a832de114b 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts @@ -473,9 +473,7 @@ export class DescribeSpotFleetRequestsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts index 60ed7983b2f2a..1ba486d9e2e6e 100644 --- a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts @@ -291,9 +291,7 @@ export class DescribeSpotInstanceRequestsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts index bb483abcb8175..4c0a571a16002 100644 --- a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts @@ -135,9 +135,7 @@ export class DescribeSpotPriceHistoryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts index 93ee4a74bc199..18217202dc4e7 100644 --- a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts @@ -126,9 +126,7 @@ export class DescribeStaleSecurityGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts index fdb8464d9a1e1..0ed2ba93bd48e 100644 --- a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts @@ -100,9 +100,7 @@ export class DescribeStoreImageTasksCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts index db1cd57f69235..ad690a4c217b1 100644 --- a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts @@ -161,9 +161,7 @@ export class DescribeSubnetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTagsCommand.ts b/clients/client-ec2/src/commands/DescribeTagsCommand.ts index 4bb98d0867cb7..be5c31698a762 100644 --- a/clients/client-ec2/src/commands/DescribeTagsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTagsCommand.ts @@ -130,9 +130,7 @@ export class DescribeTagsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts index 16d656bb91437..8da6c1f915628 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts @@ -111,9 +111,7 @@ export class DescribeTrafficMirrorFilterRulesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts index 9d91bb1874090..fbb8e1a88afcc 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts @@ -149,9 +149,7 @@ export class DescribeTrafficMirrorFiltersCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts index 97f58bcbd7612..94378a1215c34 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts @@ -99,9 +99,7 @@ export class DescribeTrafficMirrorSessionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts index 223436234abec..1f3f6c397c5bc 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts @@ -97,9 +97,7 @@ export class DescribeTrafficMirrorTargetsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts index 5e9b65aba0bcc..9e75b1a10f4ea 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts @@ -106,9 +106,7 @@ export class DescribeTransitGatewayAttachmentsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts index 55e4a54066794..4b5d2c7dcc5d5 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts @@ -117,9 +117,7 @@ export class DescribeTransitGatewayConnectPeersCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts index c89b2c21e5c28..54df0695987bd 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts @@ -101,9 +101,7 @@ export class DescribeTransitGatewayConnectsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts index 3a3a0d619f991..47635da80ccf4 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts @@ -108,9 +108,7 @@ export class DescribeTransitGatewayMulticastDomainsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts index 665e18502e587..0bd48fe5294f8 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts @@ -120,9 +120,7 @@ export class DescribeTransitGatewayPeeringAttachmentsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts index 035754e3f96e2..514dfd3a276a7 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts @@ -100,9 +100,7 @@ export class DescribeTransitGatewayPolicyTablesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts index 41b7b1ef106dc..cdfc46a56feb4 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts @@ -107,9 +107,7 @@ export class DescribeTransitGatewayRouteTableAnnouncementsCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts index efd156536a8e6..2c8f854c8bd3c 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts @@ -100,9 +100,7 @@ export class DescribeTransitGatewayRouteTablesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts index ae214d836c23a..bf582944a1a86 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts @@ -112,9 +112,7 @@ export class DescribeTransitGatewayVpcAttachmentsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts index 2ff47d13d76f8..f84ca7554e183 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts @@ -110,9 +110,7 @@ export class DescribeTransitGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts index 071ef8a2f3308..257a810c88a06 100644 --- a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts @@ -102,9 +102,7 @@ export class DescribeTrunkInterfaceAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts index 2b85c3907083b..b92a6ed261e64 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts @@ -132,9 +132,7 @@ export class DescribeVerifiedAccessEndpointsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts index 3eec5bfff8fcf..39d54add2c470 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts @@ -103,9 +103,7 @@ export class DescribeVerifiedAccessGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts index 9da4c4b57f0da..13c58c35921a9 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts @@ -122,9 +122,7 @@ export class DescribeVerifiedAccessInstanceLoggingConfigurationsCommand extends ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts index 4c43ff752486a..ab71336f4724b 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts @@ -107,9 +107,7 @@ export class DescribeVerifiedAccessInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts index 94cc1d11c6fb0..5835ea2c54a73 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts @@ -122,9 +122,7 @@ export class DescribeVerifiedAccessTrustProvidersCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts index f8fc2b3e26496..e29e9b69acf81 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts @@ -98,9 +98,7 @@ export class DescribeVolumeAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts index fd612558d3172..20d906030f9b3 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts @@ -216,9 +216,7 @@ export class DescribeVolumeStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts index 6c7dbef5a8d7b..58e91cec29a40 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts @@ -211,9 +211,7 @@ export class DescribeVolumesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts index 79675ab84b8eb..bfa9137ce9d19 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts @@ -102,9 +102,7 @@ export class DescribeVolumesModificationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts index 0a73606de3ce8..ee73511971d0e 100644 --- a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts @@ -116,9 +116,7 @@ export class DescribeVpcAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts index acfe7c698508e..741207509e5e9 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts @@ -90,9 +90,7 @@ export class DescribeVpcClassicLinkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts index ba12226c4f0df..5450f1267b7d6 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts @@ -87,9 +87,7 @@ export class DescribeVpcClassicLinkDnsSupportCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts index 7dae6feb75a77..c32d043b2bd6f 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts @@ -99,9 +99,7 @@ export class DescribeVpcEndpointConnectionNotificationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts index 071597c20e013..e310a954a8483 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts @@ -110,9 +110,7 @@ export class DescribeVpcEndpointConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts index 23404098c7baa..89a1e077e3c2e 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts @@ -130,9 +130,7 @@ export class DescribeVpcEndpointServiceConfigurationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts index d6355ab6a29d7..6016fce2e1419 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts @@ -100,9 +100,7 @@ export class DescribeVpcEndpointServicePermissionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts index 0773fdb812d31..79952745684f2 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts @@ -126,9 +126,7 @@ export class DescribeVpcEndpointServicesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts index 248b6f048182e..36b8154cf6cd0 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts @@ -130,9 +130,7 @@ export class DescribeVpcEndpointsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts index c9664aee175f7..a07f2d692aeef 100644 --- a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts @@ -140,9 +140,7 @@ export class DescribeVpcPeeringConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts index afeb5f06002ad..dd46483a98375 100644 --- a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts @@ -154,9 +154,7 @@ export class DescribeVpcsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts index 161cb37ca779f..6c281c4e2cded 100644 --- a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts @@ -189,9 +189,7 @@ export class DescribeVpnConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts index e1eb532856ccc..d20c8aa2c5a5a 100644 --- a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts @@ -98,9 +98,7 @@ export class DescribeVpnGatewaysCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts index 3193fe7392fc0..c2410990ee046 100644 --- a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts @@ -72,9 +72,7 @@ export class DetachClassicLinkVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts index 6554a5d18304b..c532e0e8487ca 100644 --- a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts @@ -79,9 +79,7 @@ export class DetachInternetGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts index 6aaa7a342d5bb..77343d6bb0355 100644 --- a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts @@ -76,9 +76,7 @@ export class DetachNetworkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts index f5df16872374f..c39878970b0be 100644 --- a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts @@ -131,9 +131,7 @@ export class DetachVerifiedAccessTrustProviderCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachVolumeCommand.ts b/clients/client-ec2/src/commands/DetachVolumeCommand.ts index 91f037ea38074..a1d244637b234 100644 --- a/clients/client-ec2/src/commands/DetachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DetachVolumeCommand.ts @@ -110,9 +110,7 @@ export class DetachVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts index d17dc01dc326e..5ac8c5bfcce76 100644 --- a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts @@ -70,9 +70,7 @@ export class DetachVpnGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts index b7926cb0dc30e..bf2c13fd29492 100644 --- a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts @@ -73,9 +73,7 @@ export class DisableAddressTransferCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts index af8e46a16edc8..bca9bb2379498 100644 --- a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -78,9 +78,7 @@ export class DisableAwsNetworkPerformanceMetricSubscriptionCommand extends $Comm ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts index e1300810ec914..52a6115edb055 100644 --- a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts @@ -73,9 +73,7 @@ export class DisableEbsEncryptionByDefaultCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts index 25c00830fc4a0..9933de6b92025 100644 --- a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts @@ -86,9 +86,7 @@ export class DisableFastLaunchCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts index ed5e177581b8b..960b3a3b25355 100644 --- a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts @@ -99,9 +99,7 @@ export class DisableFastSnapshotRestoresCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts index 424e37388e0de..5586767564603 100644 --- a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts @@ -76,9 +76,7 @@ export class DisableImageBlockPublicAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableImageCommand.ts b/clients/client-ec2/src/commands/DisableImageCommand.ts index 1936c859a6767..0696ed82d0429 100644 --- a/clients/client-ec2/src/commands/DisableImageCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageCommand.ts @@ -76,9 +76,7 @@ export class DisableImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts index 16621c4d9daac..6c35180ff308c 100644 --- a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts @@ -68,9 +68,7 @@ export class DisableImageDeprecationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts index 6c48eb3fcc97a..583725375be8c 100644 --- a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts @@ -80,9 +80,7 @@ export class DisableImageDeregistrationProtectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts index c8e63d8112403..3ad33bc859e76 100644 --- a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts @@ -75,9 +75,7 @@ export class DisableIpamOrganizationAdminAccountCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts index ccc0319a45985..6f552ca520f71 100644 --- a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts @@ -68,9 +68,7 @@ export class DisableSerialConsoleAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts index 2e4d2f0536e4d..715e4359ba5c4 100644 --- a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts @@ -84,9 +84,7 @@ export class DisableSnapshotBlockPublicAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts index 675cf4a03131b..c27127efbbf7e 100644 --- a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts @@ -85,9 +85,7 @@ export class DisableTransitGatewayRouteTablePropagationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts index b5311d6c3f3b7..2df90a01570fb 100644 --- a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts @@ -78,9 +78,7 @@ export class DisableVgwRoutePropagationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts index 5ca158a3009c1..f35d1c8038fc0 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts @@ -70,9 +70,7 @@ export class DisableVpcClassicLinkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts index e7878b5f41dfb..435a322719a5e 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts @@ -76,9 +76,7 @@ export class DisableVpcClassicLinkDnsSupportCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts index 9379f7f7a0ab0..5b93935c1cef6 100644 --- a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts @@ -77,9 +77,7 @@ export class DisassociateAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts index d4951fcb14520..742abf0508179 100644 --- a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts @@ -95,9 +95,7 @@ export class DisassociateClientVpnTargetNetworkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts index 3432917445134..608ea7e1945f3 100644 --- a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts @@ -80,9 +80,7 @@ export class DisassociateEnclaveCertificateIamRoleCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts index 430713de0afc3..848223bac7835 100644 --- a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts @@ -105,9 +105,7 @@ export class DisassociateIamInstanceProfileCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts index 2d72f5fe1d482..817ce82dafce1 100644 --- a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts @@ -120,9 +120,7 @@ export class DisassociateInstanceEventWindowCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts index cdbb2c6051665..b41e7b6c0f82e 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts @@ -73,9 +73,7 @@ export class DisassociateIpamByoasnCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts index f2ac410e64742..3a6980abf0fb7 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts @@ -88,9 +88,7 @@ export class DisassociateIpamResourceDiscoveryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts index ddbff027a2210..72432bf50ac09 100644 --- a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts @@ -91,9 +91,7 @@ export class DisassociateNatGatewayAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts index 800f81d03089e..7fc63135c5464 100644 --- a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts @@ -79,9 +79,7 @@ export class DisassociateRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts index 2a3d72695feba..e58af5ea209de 100644 --- a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts @@ -75,9 +75,7 @@ export class DisassociateSubnetCidrBlockCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts index 5907739ee99f5..5aee9ecb0fb79 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts @@ -91,9 +91,7 @@ export class DisassociateTransitGatewayMulticastDomainCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts index 3f44ac0adf225..afebc4caf354a 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts @@ -82,9 +82,7 @@ export class DisassociateTransitGatewayPolicyTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts index b8fdcbee834d1..c9b226bb7604b 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts @@ -81,9 +81,7 @@ export class DisassociateTransitGatewayRouteTableCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts index 13cd73c776dca..0188181f1fe17 100644 --- a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts @@ -68,9 +68,7 @@ export class DisassociateTrunkInterfaceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts index c900e5a84df2d..b0f59917e0322 100644 --- a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts @@ -90,9 +90,7 @@ export class DisassociateVpcCidrBlockCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts index 57afc0e90d445..2ba75695c5e9b 100644 --- a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts @@ -74,9 +74,7 @@ export class EnableAddressTransferCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts index e13f6ebda4191..6a9c3d5990f1d 100644 --- a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -78,9 +78,7 @@ export class EnableAwsNetworkPerformanceMetricSubscriptionCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts index c3f7335384fe5..7b24041f8fc9a 100644 --- a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts @@ -78,9 +78,7 @@ export class EnableEbsEncryptionByDefaultCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts index 7f3bfea49be58..a8fc9fac2d1bb 100644 --- a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts @@ -98,9 +98,7 @@ export class EnableFastLaunchCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts index b80df10de47c6..4eb0ebc1f9069 100644 --- a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts @@ -104,9 +104,7 @@ export class EnableFastSnapshotRestoresCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts index df15dbdc8131e..db1f3b72ccdd7 100644 --- a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts @@ -76,9 +76,7 @@ export class EnableImageBlockPublicAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableImageCommand.ts b/clients/client-ec2/src/commands/EnableImageCommand.ts index 83481d01eaf5e..6ee680a322a46 100644 --- a/clients/client-ec2/src/commands/EnableImageCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageCommand.ts @@ -73,9 +73,7 @@ export class EnableImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts index a63b5394c900d..6f13e55bb415e 100644 --- a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts @@ -68,9 +68,7 @@ export class EnableImageDeprecationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts index ee053bd0c6330..480ffb16b4c95 100644 --- a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts @@ -80,9 +80,7 @@ export class EnableImageDeregistrationProtectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts index e3c9187caf842..be4fb0b1fd9d7 100644 --- a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts @@ -75,9 +75,7 @@ export class EnableIpamOrganizationAdminAccountCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts index 5997971fb8773..7ba9af9ceb9da 100644 --- a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts +++ b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts @@ -78,9 +78,7 @@ export class EnableReachabilityAnalyzerOrganizationSharingCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts index 9a3724775f8f4..a94a197609228 100644 --- a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts @@ -67,9 +67,7 @@ export class EnableSerialConsoleAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts index 31ac3781b74e7..3b49ed1bd0535 100644 --- a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts @@ -87,9 +87,7 @@ export class EnableSnapshotBlockPublicAccessCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts index ae31a4e0edf4c..33b5d8cbe852b 100644 --- a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts @@ -85,9 +85,7 @@ export class EnableTransitGatewayRouteTablePropagationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts index 97f674258d5d3..339bcfbaa2528 100644 --- a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts @@ -78,9 +78,7 @@ export class EnableVgwRoutePropagationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts index b8382ecfcbaa4..0831aae45c076 100644 --- a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts +++ b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts @@ -76,9 +76,7 @@ export class EnableVolumeIOCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts index 0f49c6ea8c52c..372a567cb32eb 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts @@ -74,9 +74,7 @@ export class EnableVpcClassicLinkCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts index 8a752b8d0d07d..934c83493ae86 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts @@ -78,9 +78,7 @@ export class EnableVpcClassicLinkDnsSupportCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts index 3ffb2d53db20b..07d7d9e295281 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts @@ -79,9 +79,7 @@ export class ExportClientVpnClientCertificateRevocationListCommand extends $Comm ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts index dac560aea17db..ba3282e6ca96c 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts @@ -76,9 +76,7 @@ export class ExportClientVpnClientConfigurationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ExportImageCommand.ts b/clients/client-ec2/src/commands/ExportImageCommand.ts index a1c0e77a1ce59..856c1fe8dac60 100644 --- a/clients/client-ec2/src/commands/ExportImageCommand.ts +++ b/clients/client-ec2/src/commands/ExportImageCommand.ts @@ -104,9 +104,7 @@ export class ExportImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts index 5f2a482fd960a..ec3176ec9b333 100644 --- a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts @@ -79,9 +79,7 @@ export class ExportTransitGatewayRoutesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts index 64203eb8f6e07..59d363932868d 100644 --- a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts @@ -85,9 +85,7 @@ export class GetAssociatedEnclaveCertificateIamRolesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts index a8b41d0c08751..d51e3c1e03991 100644 --- a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts @@ -74,9 +74,7 @@ export class GetAssociatedIpv6PoolCidrsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts index bdca2f280898c..9ca62dd3a239d 100644 --- a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts +++ b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts @@ -99,9 +99,7 @@ export class GetAwsNetworkPerformanceDataCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts index c766b9cfb5b32..1cf4d161ef89c 100644 --- a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts @@ -81,9 +81,7 @@ export class GetCapacityReservationUsageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts index 0fd7f49869fcb..924716c4f1c4b 100644 --- a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts @@ -86,9 +86,7 @@ export class GetCoipPoolUsageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts index f574224027aad..6c7c01571ed61 100644 --- a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts @@ -92,9 +92,7 @@ export class GetConsoleOutputCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts index 1b7d9dbe6cec3..af59af5d6aaae 100644 --- a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts @@ -71,9 +71,7 @@ export class GetConsoleScreenshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts index 30d0b50fe876c..eeca6333cd625 100644 --- a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts @@ -74,9 +74,7 @@ export class GetDefaultCreditSpecificationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts index db538f40b3423..6d0c83784f5c7 100644 --- a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts @@ -69,9 +69,7 @@ export class GetEbsDefaultKmsKeyIdCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts index a215ac09e4fee..9cd0a7d25e70c 100644 --- a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts @@ -69,9 +69,7 @@ export class GetEbsEncryptionByDefaultCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts index 49cd93794d730..1204dae5acd91 100644 --- a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts +++ b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts @@ -104,9 +104,7 @@ export class GetFlowLogsIntegrationTemplateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts index 74a5c80a7fe08..9f315a786aa58 100644 --- a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts @@ -79,9 +79,7 @@ export class GetGroupsForCapacityReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts index bbd1cceb87d33..6407869911ba4 100644 --- a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts +++ b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts @@ -93,9 +93,7 @@ export class GetHostReservationPurchasePreviewCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts index a5c9b75b44a4a..c5155145b6e68 100644 --- a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts @@ -73,9 +73,7 @@ export class GetImageBlockPublicAccessStateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts index 29bee5f6d1fa8..594aace58ee97 100644 --- a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts @@ -73,9 +73,7 @@ export class GetInstanceMetadataDefaultsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts index 5db5a25ffb55d..6815721c860fe 100644 --- a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts @@ -76,9 +76,7 @@ export class GetInstanceTpmEkPubCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts index 49edb9d9f985b..fb5771d83cf12 100644 --- a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts @@ -165,9 +165,7 @@ export class GetInstanceTypesFromInstanceRequirementsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts index bc5945a2ba87b..341424f734640 100644 --- a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts @@ -77,9 +77,7 @@ export class GetInstanceUefiDataCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts index 23ac4904b73f4..36251e93ae7e3 100644 --- a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts @@ -87,9 +87,7 @@ export class GetIpamAddressHistoryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts index 1f5091420cf9a..813168a745118 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts @@ -89,9 +89,7 @@ export class GetIpamDiscoveredAccountsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts index 8be34d5bf8c22..d00b6add54475 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts @@ -118,9 +118,7 @@ export class GetIpamDiscoveredPublicAddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts index 02736b4450b6a..5e00b7fbd1dc9 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts @@ -104,9 +104,7 @@ export class GetIpamDiscoveredResourceCidrsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts index 0df5fe6de333a..43e93d7b3d760 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts @@ -91,9 +91,7 @@ export class GetIpamPoolAllocationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts index f43e0200d05c5..a8210318347f9 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts @@ -88,9 +88,7 @@ export class GetIpamPoolCidrsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts index f8680e5fb11d5..9fcdef84c6f4f 100644 --- a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts @@ -109,9 +109,7 @@ export class GetIpamResourceCidrsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts index 77d63c23530f4..6720512a2ae66 100644 --- a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts +++ b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts @@ -389,9 +389,7 @@ export class GetLaunchTemplateDataCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts index 3f5a7c1614882..fc1a766c711ec 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts @@ -79,9 +79,7 @@ export class GetManagedPrefixListAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts index f8379d7c61253..616e460335453 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts @@ -75,9 +75,7 @@ export class GetManagedPrefixListEntriesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts index 9fefb05afe905..316fe9ae8cd23 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts @@ -406,9 +406,7 @@ export class GetNetworkInsightsAccessScopeAnalysisFindingsCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts index e0c2c32b6ad85..00fcfe596d8dd 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts @@ -175,9 +175,7 @@ export class GetNetworkInsightsAccessScopeContentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts index bed459cd41d8b..2c1c057f7eece 100644 --- a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts +++ b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts @@ -84,9 +84,7 @@ export class GetPasswordDataCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts index bb568a1d572a1..9e14133b1fd48 100644 --- a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts @@ -118,9 +118,7 @@ export class GetReservedInstancesExchangeQuoteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts index 84a6f8bc72ec1..fd22c287e0d87 100644 --- a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts +++ b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts @@ -91,9 +91,7 @@ export class GetSecurityGroupsForVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts index 50c8d24a50fbe..78601541763b0 100644 --- a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts @@ -70,9 +70,7 @@ export class GetSerialConsoleAccessStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts index b12128865455c..94be1bc2ce1cb 100644 --- a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts @@ -73,9 +73,7 @@ export class GetSnapshotBlockPublicAccessStateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts index a787cdc28088a..2a8198c3b6236 100644 --- a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts +++ b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts @@ -167,9 +167,7 @@ export class GetSpotPlacementScoresCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts index b52d14c3d9e8c..49e78820d17e3 100644 --- a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts +++ b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts @@ -108,9 +108,7 @@ export class GetSubnetCidrReservationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts index a29c333ef5d94..88c360c23049a 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts @@ -91,9 +91,7 @@ export class GetTransitGatewayAttachmentPropagationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts index 0a32248459554..46647dbf58921 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts @@ -97,9 +97,7 @@ export class GetTransitGatewayMulticastDomainAssociationsCommand extends $Comman ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts index d86ed18765432..e9dbe3c01ce61 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts @@ -94,9 +94,7 @@ export class GetTransitGatewayPolicyTableAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts index 748d9c2244879..212e9680c7865 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts @@ -100,9 +100,7 @@ export class GetTransitGatewayPolicyTableEntriesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts index 6a2d8edf8533c..dbf846914b9de 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts @@ -99,9 +99,7 @@ export class GetTransitGatewayPrefixListReferencesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts index 65e7e3d498107..f4ef60290c118 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts @@ -93,9 +93,7 @@ export class GetTransitGatewayRouteTableAssociationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts index 947be6450949d..1ed96838d601b 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts @@ -94,9 +94,7 @@ export class GetTransitGatewayRouteTablePropagationsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts index 3380268ef43a3..83f6c789656db 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts @@ -72,9 +72,7 @@ export class GetVerifiedAccessEndpointPolicyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts index fb6cbb1b7729b..4cbf7133fefc9 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts @@ -69,9 +69,7 @@ export class GetVerifiedAccessGroupPolicyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts index cf06b974681cf..674fcd7428999 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts @@ -79,9 +79,7 @@ export class GetVpnConnectionDeviceSampleConfigurationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts index 43bdb3da17406..6a80dedfa02da 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts @@ -78,9 +78,7 @@ export class GetVpnConnectionDeviceTypesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts index 1e9a479e80e9c..e4469ea1ef5f7 100644 --- a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts @@ -78,9 +78,7 @@ export class GetVpnTunnelReplacementStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts index 2a814324c4314..a389c85492dfa 100644 --- a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts @@ -77,9 +77,7 @@ export class ImportClientVpnClientCertificateRevocationListCommand extends $Comm ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportImageCommand.ts b/clients/client-ec2/src/commands/ImportImageCommand.ts index 64c8c97f84555..4e30e7b1605ac 100644 --- a/clients/client-ec2/src/commands/ImportImageCommand.ts +++ b/clients/client-ec2/src/commands/ImportImageCommand.ts @@ -171,9 +171,7 @@ export class ImportImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportInstanceCommand.ts b/clients/client-ec2/src/commands/ImportInstanceCommand.ts index a72ef647ef91d..7d8391f48e36b 100644 --- a/clients/client-ec2/src/commands/ImportInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ImportInstanceCommand.ts @@ -177,9 +177,7 @@ export class ImportInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts index bd55689e9ff62..88d1d5905c358 100644 --- a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts @@ -91,9 +91,7 @@ export class ImportKeyPairCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts index c054b30c4c649..b82472f0e6628 100644 --- a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts @@ -126,9 +126,7 @@ export class ImportSnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ImportVolumeCommand.ts b/clients/client-ec2/src/commands/ImportVolumeCommand.ts index 397417bb6a0af..63caa5472f781 100644 --- a/clients/client-ec2/src/commands/ImportVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ImportVolumeCommand.ts @@ -136,9 +136,7 @@ export class ImportVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts index 0f7c98eed6b7b..feb1a5057f08e 100644 --- a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts @@ -81,9 +81,7 @@ export class ListImagesInRecycleBinCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts index e912a694a4a21..83a582f6275ff 100644 --- a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts @@ -79,9 +79,7 @@ export class ListSnapshotsInRecycleBinCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/LockSnapshotCommand.ts b/clients/client-ec2/src/commands/LockSnapshotCommand.ts index 3fbc47d0da9e4..a9e54d582a760 100644 --- a/clients/client-ec2/src/commands/LockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/LockSnapshotCommand.ts @@ -95,9 +95,7 @@ export class LockSnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts index ce81f3481b0f6..a1278abae8b39 100644 --- a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts @@ -76,9 +76,7 @@ export class ModifyAddressAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts index bb3bfbd3a4893..abe201fe56e21 100644 --- a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts @@ -67,9 +67,7 @@ export class ModifyAvailabilityZoneGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts index f61e75a2ef8bd..36f744d77e329 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts @@ -75,9 +75,7 @@ export class ModifyCapacityReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts index 45dce8414715d..cef84ddeff8c8 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts @@ -78,9 +78,7 @@ export class ModifyCapacityReservationFleetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts index b03e4f8a8f9b8..967a572b50162 100644 --- a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts @@ -95,9 +95,7 @@ export class ModifyClientVpnEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts index c431c6d69f5fb..b2b71ed54087b 100644 --- a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts @@ -88,9 +88,7 @@ export class ModifyDefaultCreditSpecificationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts index b7f592d42969b..61d4d2eff3ebc 100644 --- a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts @@ -73,9 +73,7 @@ export class ModifyEbsDefaultKmsKeyIdCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyFleetCommand.ts b/clients/client-ec2/src/commands/ModifyFleetCommand.ts index 109bbca25401c..8c3f658cec8ba 100644 --- a/clients/client-ec2/src/commands/ModifyFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFleetCommand.ts @@ -196,9 +196,7 @@ export class ModifyFleetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts index 30a170592622f..c4e5dee1264ba 100644 --- a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts @@ -109,9 +109,7 @@ export class ModifyFpgaImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyHostsCommand.ts b/clients/client-ec2/src/commands/ModifyHostsCommand.ts index 1d8c7adcf2f17..d467a2bf9e86d 100644 --- a/clients/client-ec2/src/commands/ModifyHostsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyHostsCommand.ts @@ -91,9 +91,7 @@ export class ModifyHostsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts index 02467041fd0a2..71c69483ec563 100644 --- a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts @@ -87,9 +87,7 @@ export class ModifyIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts index 1dc391d4d5d64..4a4d551905222 100644 --- a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts @@ -86,9 +86,7 @@ export class ModifyIdentityIdFormatCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts index f20e52a5e973b..c1b975279e3a6 100644 --- a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts @@ -147,9 +147,7 @@ export class ModifyImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts index 3bb4a5386e25d..6358a310a3302 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts @@ -151,9 +151,7 @@ export class ModifyInstanceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts index e58523e31acd9..f379c9f32eb5c 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts @@ -84,9 +84,7 @@ export class ModifyInstanceCapacityReservationAttributesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts index 0bb46de185e60..2b7f90a95d8ba 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts @@ -94,9 +94,7 @@ export class ModifyInstanceCreditSpecificationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts index 54a8df210d960..238292c1ac25d 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts @@ -77,9 +77,7 @@ export class ModifyInstanceEventStartTimeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts index d20940664328e..afa88ef545b79 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts @@ -116,9 +116,7 @@ export class ModifyInstanceEventWindowCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts index 2d6bb7317b171..210a7bbc12ed1 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts @@ -76,9 +76,7 @@ export class ModifyInstanceMaintenanceOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts index 0fdc38f5fc629..d304da85bb99f 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts @@ -82,9 +82,7 @@ export class ModifyInstanceMetadataDefaultsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts index 0b0cab8e647b5..10f217f11431e 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts @@ -87,9 +87,7 @@ export class ModifyInstanceMetadataOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts index 45a464bdffeff..c95ca112b9c71 100644 --- a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts @@ -97,9 +97,7 @@ export class ModifyInstancePlacementCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIpamCommand.ts b/clients/client-ec2/src/commands/ModifyIpamCommand.ts index da814c10e6c9f..3c8c35df8cdab 100644 --- a/clients/client-ec2/src/commands/ModifyIpamCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamCommand.ts @@ -107,9 +107,7 @@ export class ModifyIpamCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts index 059b002283545..1006bda09d5cf 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts @@ -126,9 +126,7 @@ export class ModifyIpamPoolCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts index 27e13a4f03ed4..151bfcf47a3eb 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts @@ -94,9 +94,7 @@ export class ModifyIpamResourceCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts index f71a4ad1f527a..a45322af46a1b 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts @@ -96,9 +96,7 @@ export class ModifyIpamResourceDiscoveryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts index bf4ac3777c505..e75db803c4e2c 100644 --- a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts @@ -84,9 +84,7 @@ export class ModifyIpamScopeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts index e6a0527377e9d..ddbc5e13f3df7 100644 --- a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts @@ -108,9 +108,7 @@ export class ModifyLaunchTemplateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts index efbc341a21f7f..ccfd497b20fe2 100644 --- a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts @@ -82,9 +82,7 @@ export class ModifyLocalGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts index 808d4716683b0..1ad4a989a86eb 100644 --- a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts @@ -100,9 +100,7 @@ export class ModifyManagedPrefixListCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts index 9d9166b8ccea6..0ef0e9621fa5e 100644 --- a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts @@ -153,9 +153,7 @@ export class ModifyNetworkInterfaceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts index ba9b87747cbea..d9fcbbefd64fe 100644 --- a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts @@ -69,9 +69,7 @@ export class ModifyPrivateDnsNameOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts index 353fb960ccf52..81539fb8d6bea 100644 --- a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts @@ -81,9 +81,7 @@ export class ModifyReservedInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts index 0e65afb221e35..7a20416f80dd1 100644 --- a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts @@ -81,9 +81,7 @@ export class ModifySecurityGroupRulesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts index a929c7fc07995..46bb5b2c5f38d 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts @@ -125,9 +125,7 @@ export class ModifySnapshotAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts index 920ad46cb6bc2..2aa1cb9326e98 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts @@ -72,9 +72,7 @@ export class ModifySnapshotTierCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts index 3b3129c40d92d..8916bfe33356b 100644 --- a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts +++ b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts @@ -216,9 +216,7 @@ export class ModifySpotFleetRequestCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts index 942ee292818d5..9f40865450245 100644 --- a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts @@ -124,9 +124,7 @@ export class ModifySubnetAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts index 1e6c34a07fc2e..dcee6cf3749a0 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts @@ -150,9 +150,7 @@ export class ModifyTrafficMirrorFilterNetworkServicesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts index e38c1396b82e1..db36381cd85ac 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts @@ -113,9 +113,7 @@ export class ModifyTrafficMirrorFilterRuleCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts index f177df4833408..0158951ad7c79 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts @@ -91,9 +91,7 @@ export class ModifyTrafficMirrorSessionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts index 0a569bdecef62..29b663f5db727 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts @@ -112,9 +112,7 @@ export class ModifyTransitGatewayCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts index 52fa4860ac423..a427023a6c663 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts @@ -89,9 +89,7 @@ export class ModifyTransitGatewayPrefixListReferenceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts index 6e04a2c814dea..c2813243fcc21 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts @@ -105,9 +105,7 @@ export class ModifyTransitGatewayVpcAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts index 42aef73f6abfd..742080195c970 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts @@ -126,9 +126,7 @@ export class ModifyVerifiedAccessEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts index 01c11e1e71b3b..7761ffb77f756 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts @@ -86,9 +86,7 @@ export class ModifyVerifiedAccessEndpointPolicyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts index d181b703b24c2..0e10db966fe42 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts @@ -88,9 +88,7 @@ export class ModifyVerifiedAccessGroupCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts index 46b45fbccbc8b..b3bfb009a36d2 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts @@ -83,9 +83,7 @@ export class ModifyVerifiedAccessGroupPolicyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts index f7a17a33e646c..f969efcbaafbe 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts @@ -91,9 +91,7 @@ export class ModifyVerifiedAccessInstanceCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts index 0aa025ed36eec..982101839431d 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts @@ -126,9 +126,7 @@ export class ModifyVerifiedAccessInstanceLoggingConfigurationCommand extends $Co ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts index 9e4f88daf1db9..9c3b2a1848285 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts @@ -126,9 +126,7 @@ export class ModifyVerifiedAccessTrustProviderCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts index 5cbef86687c84..1bd452a372807 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts @@ -88,9 +88,7 @@ export class ModifyVolumeAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts index a8d29530f1c27..e2f2823bdea38 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts @@ -100,9 +100,7 @@ export class ModifyVolumeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts index 8e99f5af11683..ed4b5f455b0da 100644 --- a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts @@ -100,9 +100,7 @@ export class ModifyVpcAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts index 5efbdb9bd99c3..78279ac0e1774 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts @@ -102,9 +102,7 @@ export class ModifyVpcEndpointCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts index 3c2e695ea816f..451fcce7ba7bd 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts @@ -80,9 +80,7 @@ export class ModifyVpcEndpointConnectionNotificationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts index 5fb346633a5e2..d3820395512a8 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts @@ -99,9 +99,7 @@ export class ModifyVpcEndpointServiceConfigurationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts index 00e64dd55a7ff..97d0fae896926 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts @@ -76,9 +76,7 @@ export class ModifyVpcEndpointServicePayerResponsibilityCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts index e712ef4dd9ffa..5876f4afe6b5f 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts @@ -93,9 +93,7 @@ export class ModifyVpcEndpointServicePermissionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts index 2042eb35b824b..69dfb2a6cfe04 100644 --- a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts @@ -100,9 +100,7 @@ export class ModifyVpcPeeringConnectionOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts index 772a2d88d8481..eab27ada62ae2 100644 --- a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts @@ -74,9 +74,7 @@ export class ModifyVpcTenancyCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts index 390908a8fd12e..94c34f12a63ef 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts @@ -213,9 +213,7 @@ export class ModifyVpnConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts index 446349ffa1a17..0b791403522d9 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts @@ -183,9 +183,7 @@ export class ModifyVpnConnectionOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts index 14ac14b3d7874..325cf3f63f35b 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts @@ -176,9 +176,7 @@ export class ModifyVpnTunnelCertificateCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts index 2d71f5f91d052..c0edc96f4c9f9 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts @@ -237,9 +237,7 @@ export class ModifyVpnTunnelOptionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts index c31cdf2fca07b..a5119d9ec4fd9 100644 --- a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts @@ -78,9 +78,7 @@ export class MonitorInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts index 5c057400a86b4..f2233f3b1ee75 100644 --- a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts +++ b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts @@ -91,9 +91,7 @@ export class MoveAddressToVpcCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts index b4758067be278..d72d3e14b7f33 100644 --- a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts +++ b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts @@ -83,9 +83,7 @@ export class MoveByoipCidrToIpamCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts index 0384403843f91..272d4173bbfe3 100644 --- a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts @@ -167,9 +167,7 @@ export class MoveCapacityReservationInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts index 97491d216ab25..559b58ef0412b 100644 --- a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts @@ -110,9 +110,7 @@ export class ProvisionByoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts index 19540c793bb3c..6bbcafeb2845e 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts @@ -76,9 +76,7 @@ export class ProvisionIpamByoasnCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts index cc42f76346bf9..8a15ad17e7e52 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts @@ -86,9 +86,7 @@ export class ProvisionIpamPoolCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts index 1f7b008b35455..7d9b3b5cb28aa 100644 --- a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts @@ -76,9 +76,7 @@ export class ProvisionPublicIpv4PoolCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts index c07a14ed00373..e1923cefb8dfe 100644 --- a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts @@ -114,9 +114,7 @@ export class PurchaseCapacityBlockCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts index 5e1bce8bc86f1..02d3688ef86da 100644 --- a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts @@ -102,9 +102,7 @@ export class PurchaseHostReservationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts index 06646fee10021..01bc50ffc8751 100644 --- a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts @@ -86,9 +86,7 @@ export class PurchaseReservedInstancesOfferingCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts index 98d1070738c2c..a0ff8a68479c3 100644 --- a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts @@ -106,9 +106,7 @@ export class PurchaseScheduledInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RebootInstancesCommand.ts b/clients/client-ec2/src/commands/RebootInstancesCommand.ts index 34fe07ecbf8e2..5cc724074fb59 100644 --- a/clients/client-ec2/src/commands/RebootInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RebootInstancesCommand.ts @@ -86,9 +86,7 @@ export class RebootInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RegisterImageCommand.ts b/clients/client-ec2/src/commands/RegisterImageCommand.ts index c3e695cbf29c6..1677b43588df6 100644 --- a/clients/client-ec2/src/commands/RegisterImageCommand.ts +++ b/clients/client-ec2/src/commands/RegisterImageCommand.ts @@ -154,9 +154,7 @@ export class RegisterImageCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts index 6e644bed36ed3..eef65f87f36cb 100644 --- a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts @@ -87,9 +87,7 @@ export class RegisterInstanceEventNotificationAttributesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts index 8cab7cfed223c..1633d776c7424 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts @@ -90,9 +90,7 @@ export class RegisterTransitGatewayMulticastGroupMembersCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts index 632a1944427f6..163030477ccc7 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -90,9 +90,7 @@ export class RegisterTransitGatewayMulticastGroupSourcesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts index 6dc6ebd65a62a..917114dbd401c 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts @@ -91,9 +91,7 @@ export class RejectTransitGatewayMulticastDomainAssociationsCommand extends $Com ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts index f14cd448d4ab6..e91642bc115f1 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts @@ -105,9 +105,7 @@ export class RejectTransitGatewayPeeringAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts index e51a45592b312..2548fe3eb4290 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts @@ -96,9 +96,7 @@ export class RejectTransitGatewayVpcAttachmentCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts index 739ba9a4c1e41..ebaf72540b825 100644 --- a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts @@ -79,9 +79,7 @@ export class RejectVpcEndpointConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts index 04d85c43b241a..0902f2a732c6d 100644 --- a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts @@ -69,9 +69,7 @@ export class RejectVpcPeeringConnectionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts index e33ec8b63141b..e479e99dec746 100644 --- a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts @@ -88,9 +88,7 @@ export class ReleaseAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts index 595600017f3cc..64505a4488214 100644 --- a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts @@ -86,9 +86,7 @@ export class ReleaseHostsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts index 0c1e04e1d02d9..c401c1779235b 100644 --- a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts @@ -72,9 +72,7 @@ export class ReleaseIpamPoolAllocationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts index 60e92a94dddb3..db20ed5d706bf 100644 --- a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts @@ -90,9 +90,7 @@ export class ReplaceIamInstanceProfileAssociationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts index 9811dcc739b0b..9c54ce08c7985 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts @@ -89,9 +89,7 @@ export class ReplaceNetworkAclAssociationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts index c24305d5bb5d1..08e465b2aa488 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts @@ -99,9 +99,7 @@ export class ReplaceNetworkAclEntryCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts index ed397a1f745ea..a450e7306667c 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts @@ -97,9 +97,7 @@ export class ReplaceRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts index 8e8ccf4650cd9..8449f7bba818c 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts @@ -94,9 +94,7 @@ export class ReplaceRouteTableAssociationCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts index 2798b8df50eda..662b36f171b21 100644 --- a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts @@ -82,9 +82,7 @@ export class ReplaceTransitGatewayRouteCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts index 0bd8f25e4a6a7..c1febb10a41c7 100644 --- a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts @@ -68,9 +68,7 @@ export class ReplaceVpnTunnelCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts index 54e8655f123ba..b341eae7f34ef 100644 --- a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts @@ -77,9 +77,7 @@ export class ReportInstanceStatusCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts index d2e07fd9c97a1..e4571421c0718 100644 --- a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts @@ -577,9 +577,7 @@ export class RequestSpotFleetCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts index 469cd44f72ac7..3676d279e85b1 100644 --- a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts @@ -388,9 +388,7 @@ export class RequestSpotInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts index 6a5f0edbf2750..5de7bc7f4d48b 100644 --- a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts @@ -76,9 +76,7 @@ export class ResetAddressAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts index 1dc0790108dac..96ceb7b7d5112 100644 --- a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts @@ -70,9 +70,7 @@ export class ResetEbsDefaultKmsKeyIdCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts index e58a72b64c6e6..e6c1e8a8aab65 100644 --- a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts @@ -68,9 +68,7 @@ export class ResetFpgaImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts index dcbd43c883f95..18e38132479b0 100644 --- a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts @@ -77,9 +77,7 @@ export class ResetImageAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts index 20246c520b768..98d361f6997cf 100644 --- a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts @@ -85,9 +85,7 @@ export class ResetInstanceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts index f01c95c708c17..fceb878b2d78d 100644 --- a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts @@ -68,9 +68,7 @@ export class ResetNetworkInterfaceAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts index 8fed460fd92fc..07aa4e981aa87 100644 --- a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts @@ -79,9 +79,7 @@ export class ResetSnapshotAttributeCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts index 6d338124b4bdf..ef897f712e91f 100644 --- a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts +++ b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts @@ -70,9 +70,7 @@ export class RestoreAddressToClassicCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts index 2d844053399e2..cb08903a7e43a 100644 --- a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts @@ -66,9 +66,7 @@ export class RestoreImageFromRecycleBinCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts index 8d9f2b0d41562..ef07049bf4eb3 100644 --- a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts +++ b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts @@ -89,9 +89,7 @@ export class RestoreManagedPrefixListVersionCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts index a07e4fb5af178..ea96428767efe 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts @@ -79,9 +79,7 @@ export class RestoreSnapshotFromRecycleBinCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts index 0f2895a726aab..25ef73d0940c0 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts @@ -75,9 +75,7 @@ export class RestoreSnapshotTierCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts index c220f0e212530..6013a472ff27b 100644 --- a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts @@ -72,9 +72,7 @@ export class RevokeClientVpnIngressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts index 967799e25b593..9650bd7aa98b2 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts @@ -159,9 +159,7 @@ export class RevokeSecurityGroupEgressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts index 6e0a485f0ecaf..6cbab99162872 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts @@ -164,9 +164,7 @@ export class RevokeSecurityGroupIngressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RunInstancesCommand.ts b/clients/client-ec2/src/commands/RunInstancesCommand.ts index 0bd20dcb901e6..02a200187ed11 100644 --- a/clients/client-ec2/src/commands/RunInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunInstancesCommand.ts @@ -586,9 +586,7 @@ export class RunInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts index a6cbd4d5a9bfa..c03e813366ddb 100644 --- a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts @@ -145,9 +145,7 @@ export class RunScheduledInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts index 37315fbab4dfb..d7afcbeacb6d7 100644 --- a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts @@ -91,9 +91,7 @@ export class SearchLocalGatewayRoutesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts index c75fc7118cb2e..80023d7be94b7 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts @@ -99,9 +99,7 @@ export class SearchTransitGatewayMulticastGroupsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts index 941f41bd650c8..4c643d0652338 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts @@ -91,9 +91,7 @@ export class SearchTransitGatewayRoutesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts index bdc21b58e7219..70ea02317af18 100644 --- a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts +++ b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts @@ -77,9 +77,7 @@ export class SendDiagnosticInterruptCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/StartInstancesCommand.ts b/clients/client-ec2/src/commands/StartInstancesCommand.ts index 43d1f56fae89d..1c6cb84c4e080 100644 --- a/clients/client-ec2/src/commands/StartInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StartInstancesCommand.ts @@ -129,9 +129,7 @@ export class StartInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts index 9e99118675e9a..d7f95409a39bf 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts @@ -104,9 +104,7 @@ export class StartNetworkInsightsAccessScopeAnalysisCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts index a6ac0e5c0a0c6..33d298af37f20 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts @@ -800,9 +800,7 @@ export class StartNetworkInsightsAnalysisCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts index fe3d3fcab33d2..bcb2ec3411831 100644 --- a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts +++ b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts @@ -78,9 +78,7 @@ export class StartVpcEndpointServicePrivateDnsVerificationCommand extends $Comma ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/StopInstancesCommand.ts b/clients/client-ec2/src/commands/StopInstancesCommand.ts index c620edab4bbbb..e71229cf0f07d 100644 --- a/clients/client-ec2/src/commands/StopInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StopInstancesCommand.ts @@ -143,9 +143,7 @@ export class StopInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts index fec81c91a898f..4ad476a39c19f 100644 --- a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts @@ -84,9 +84,7 @@ export class TerminateClientVpnConnectionsCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts index 9bcd48c2da2a9..8f2e23eade14f 100644 --- a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts +++ b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts @@ -169,9 +169,7 @@ export class TerminateInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts index 1f5c6bb009b8c..a0c0787a4f0b6 100644 --- a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts @@ -77,9 +77,7 @@ export class UnassignIpv6AddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts index f2a3b93e46a95..cd15ec6735944 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts @@ -84,9 +84,7 @@ export class UnassignPrivateIpAddressesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts index 69f9268bc49c1..d9970437a7386 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts @@ -95,9 +95,7 @@ export class UnassignPrivateNatGatewayAddressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts index ac8391be54d6b..ec86698f5dc16 100644 --- a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts @@ -68,9 +68,7 @@ export class UnlockSnapshotCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts index 52b2bc803711f..e60cf1aab5da3 100644 --- a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts @@ -77,9 +77,7 @@ export class UnmonitorInstancesCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts index df7a262aafe43..af6a2444a6c85 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts @@ -145,9 +145,7 @@ export class UpdateSecurityGroupRuleDescriptionsEgressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts index 0ee14c53465cd..b5d2d578e1796 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts @@ -145,9 +145,7 @@ export class UpdateSecurityGroupRuleDescriptionsIngressCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize), diff --git a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts index 2469770e095ce..0cfd53bf8a5f2 100644 --- a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts @@ -84,9 +84,7 @@ export class WithdrawByoipCidrCommand extends $Command ServiceInputTypes, ServiceOutputTypes >() - .ep({ - ...commonParams, - }) + .ep(commonParams) .m(function (this: any, Command: any, cs: any, config: EC2ClientResolvedConfig, o: any) { return [ getSerdePlugin(config, this.serialize, this.deserialize),