@aws-sdk/client-ecs 3.645.0 → 3.650.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +56 -168
  3. package/dist-es/commands/CreateCapacityProviderCommand.js +1 -3
  4. package/dist-es/commands/CreateClusterCommand.js +1 -3
  5. package/dist-es/commands/CreateServiceCommand.js +1 -3
  6. package/dist-es/commands/CreateTaskSetCommand.js +1 -3
  7. package/dist-es/commands/DeleteAccountSettingCommand.js +1 -3
  8. package/dist-es/commands/DeleteAttributesCommand.js +1 -3
  9. package/dist-es/commands/DeleteCapacityProviderCommand.js +1 -3
  10. package/dist-es/commands/DeleteClusterCommand.js +1 -3
  11. package/dist-es/commands/DeleteServiceCommand.js +1 -3
  12. package/dist-es/commands/DeleteTaskDefinitionsCommand.js +1 -3
  13. package/dist-es/commands/DeleteTaskSetCommand.js +1 -3
  14. package/dist-es/commands/DeregisterContainerInstanceCommand.js +1 -3
  15. package/dist-es/commands/DeregisterTaskDefinitionCommand.js +1 -3
  16. package/dist-es/commands/DescribeCapacityProvidersCommand.js +1 -3
  17. package/dist-es/commands/DescribeClustersCommand.js +1 -3
  18. package/dist-es/commands/DescribeContainerInstancesCommand.js +1 -3
  19. package/dist-es/commands/DescribeServicesCommand.js +1 -3
  20. package/dist-es/commands/DescribeTaskDefinitionCommand.js +1 -3
  21. package/dist-es/commands/DescribeTaskSetsCommand.js +1 -3
  22. package/dist-es/commands/DescribeTasksCommand.js +1 -3
  23. package/dist-es/commands/DiscoverPollEndpointCommand.js +1 -3
  24. package/dist-es/commands/ExecuteCommandCommand.js +1 -3
  25. package/dist-es/commands/GetTaskProtectionCommand.js +1 -3
  26. package/dist-es/commands/ListAccountSettingsCommand.js +1 -3
  27. package/dist-es/commands/ListAttributesCommand.js +1 -3
  28. package/dist-es/commands/ListClustersCommand.js +1 -3
  29. package/dist-es/commands/ListContainerInstancesCommand.js +1 -3
  30. package/dist-es/commands/ListServicesByNamespaceCommand.js +1 -3
  31. package/dist-es/commands/ListServicesCommand.js +1 -3
  32. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  33. package/dist-es/commands/ListTaskDefinitionFamiliesCommand.js +1 -3
  34. package/dist-es/commands/ListTaskDefinitionsCommand.js +1 -3
  35. package/dist-es/commands/ListTasksCommand.js +1 -3
  36. package/dist-es/commands/PutAccountSettingCommand.js +1 -3
  37. package/dist-es/commands/PutAccountSettingDefaultCommand.js +1 -3
  38. package/dist-es/commands/PutAttributesCommand.js +1 -3
  39. package/dist-es/commands/PutClusterCapacityProvidersCommand.js +1 -3
  40. package/dist-es/commands/RegisterContainerInstanceCommand.js +1 -3
  41. package/dist-es/commands/RegisterTaskDefinitionCommand.js +1 -3
  42. package/dist-es/commands/RunTaskCommand.js +1 -3
  43. package/dist-es/commands/StartTaskCommand.js +1 -3
  44. package/dist-es/commands/StopTaskCommand.js +1 -3
  45. package/dist-es/commands/SubmitAttachmentStateChangesCommand.js +1 -3
  46. package/dist-es/commands/SubmitContainerStateChangeCommand.js +1 -3
  47. package/dist-es/commands/SubmitTaskStateChangeCommand.js +1 -3
  48. package/dist-es/commands/TagResourceCommand.js +1 -3
  49. package/dist-es/commands/UntagResourceCommand.js +1 -3
  50. package/dist-es/commands/UpdateCapacityProviderCommand.js +1 -3
  51. package/dist-es/commands/UpdateClusterCommand.js +1 -3
  52. package/dist-es/commands/UpdateClusterSettingsCommand.js +1 -3
  53. package/dist-es/commands/UpdateContainerAgentCommand.js +1 -3
  54. package/dist-es/commands/UpdateContainerInstancesStateCommand.js +1 -3
  55. package/dist-es/commands/UpdateServiceCommand.js +1 -3
  56. package/dist-es/commands/UpdateServicePrimaryTaskSetCommand.js +1 -3
  57. package/dist-es/commands/UpdateTaskProtectionCommand.js +1 -3
  58. package/dist-es/commands/UpdateTaskSetCommand.js +1 -3
  59. package/dist-es/endpoint/endpointResolver.js +7 -3
  60. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  61. package/dist-types/runtimeConfig.d.ts +2 -0
  62. package/dist-types/runtimeConfig.native.d.ts +2 -0
  63. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  64. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  65. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  66. package/package.json +36 -36
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
4
4
  const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
5
  const util_endpoints_2 = require("@smithy/util-endpoints");
6
6
  const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
10
+ });
7
11
  const defaultEndpointResolver = (endpointParams, context = {}) => {
8
- return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
9
13
  endpointParams: endpointParams,
10
14
  logger: context.logger,
11
- });
15
+ }));
12
16
  };
13
17
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
18
  util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -3093,9 +3093,7 @@ function sharedHeaders(operation) {
3093
3093
  __name(sharedHeaders, "sharedHeaders");
3094
3094
 
3095
3095
  // src/commands/CreateCapacityProviderCommand.ts
3096
- var _CreateCapacityProviderCommand = class _CreateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep({
3097
- ...commonParams
3098
- }).m(function(Command, cs, config, o) {
3096
+ var _CreateCapacityProviderCommand = class _CreateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3099
3097
  return [
3100
3098
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3101
3099
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3109,9 +3107,7 @@ var CreateCapacityProviderCommand = _CreateCapacityProviderCommand;
3109
3107
 
3110
3108
 
3111
3109
 
3112
- var _CreateClusterCommand = class _CreateClusterCommand extends import_smithy_client.Command.classBuilder().ep({
3113
- ...commonParams
3114
- }).m(function(Command, cs, config, o) {
3110
+ var _CreateClusterCommand = class _CreateClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3115
3111
  return [
3116
3112
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3117
3113
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3125,9 +3121,7 @@ var CreateClusterCommand = _CreateClusterCommand;
3125
3121
 
3126
3122
 
3127
3123
 
3128
- var _CreateServiceCommand = class _CreateServiceCommand extends import_smithy_client.Command.classBuilder().ep({
3129
- ...commonParams
3130
- }).m(function(Command, cs, config, o) {
3124
+ var _CreateServiceCommand = class _CreateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3131
3125
  return [
3132
3126
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3133
3127
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3141,9 +3135,7 @@ var CreateServiceCommand = _CreateServiceCommand;
3141
3135
 
3142
3136
 
3143
3137
 
3144
- var _CreateTaskSetCommand = class _CreateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep({
3145
- ...commonParams
3146
- }).m(function(Command, cs, config, o) {
3138
+ var _CreateTaskSetCommand = class _CreateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3147
3139
  return [
3148
3140
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3149
3141
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3157,9 +3149,7 @@ var CreateTaskSetCommand = _CreateTaskSetCommand;
3157
3149
 
3158
3150
 
3159
3151
 
3160
- var _DeleteAccountSettingCommand = class _DeleteAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep({
3161
- ...commonParams
3162
- }).m(function(Command, cs, config, o) {
3152
+ var _DeleteAccountSettingCommand = class _DeleteAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3163
3153
  return [
3164
3154
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3165
3155
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3173,9 +3163,7 @@ var DeleteAccountSettingCommand = _DeleteAccountSettingCommand;
3173
3163
 
3174
3164
 
3175
3165
 
3176
- var _DeleteAttributesCommand = class _DeleteAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
3177
- ...commonParams
3178
- }).m(function(Command, cs, config, o) {
3166
+ var _DeleteAttributesCommand = class _DeleteAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3179
3167
  return [
3180
3168
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3181
3169
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3189,9 +3177,7 @@ var DeleteAttributesCommand = _DeleteAttributesCommand;
3189
3177
 
3190
3178
 
3191
3179
 
3192
- var _DeleteCapacityProviderCommand = class _DeleteCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep({
3193
- ...commonParams
3194
- }).m(function(Command, cs, config, o) {
3180
+ var _DeleteCapacityProviderCommand = class _DeleteCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3195
3181
  return [
3196
3182
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3197
3183
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3205,9 +3191,7 @@ var DeleteCapacityProviderCommand = _DeleteCapacityProviderCommand;
3205
3191
 
3206
3192
 
3207
3193
 
3208
- var _DeleteClusterCommand = class _DeleteClusterCommand extends import_smithy_client.Command.classBuilder().ep({
3209
- ...commonParams
3210
- }).m(function(Command, cs, config, o) {
3194
+ var _DeleteClusterCommand = class _DeleteClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3211
3195
  return [
3212
3196
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3213
3197
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3221,9 +3205,7 @@ var DeleteClusterCommand = _DeleteClusterCommand;
3221
3205
 
3222
3206
 
3223
3207
 
3224
- var _DeleteServiceCommand = class _DeleteServiceCommand extends import_smithy_client.Command.classBuilder().ep({
3225
- ...commonParams
3226
- }).m(function(Command, cs, config, o) {
3208
+ var _DeleteServiceCommand = class _DeleteServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3227
3209
  return [
3228
3210
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3229
3211
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3237,9 +3219,7 @@ var DeleteServiceCommand = _DeleteServiceCommand;
3237
3219
 
3238
3220
 
3239
3221
 
3240
- var _DeleteTaskDefinitionsCommand = class _DeleteTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep({
3241
- ...commonParams
3242
- }).m(function(Command, cs, config, o) {
3222
+ var _DeleteTaskDefinitionsCommand = class _DeleteTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3243
3223
  return [
3244
3224
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3245
3225
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3253,9 +3233,7 @@ var DeleteTaskDefinitionsCommand = _DeleteTaskDefinitionsCommand;
3253
3233
 
3254
3234
 
3255
3235
 
3256
- var _DeleteTaskSetCommand = class _DeleteTaskSetCommand extends import_smithy_client.Command.classBuilder().ep({
3257
- ...commonParams
3258
- }).m(function(Command, cs, config, o) {
3236
+ var _DeleteTaskSetCommand = class _DeleteTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3259
3237
  return [
3260
3238
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3261
3239
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3269,9 +3247,7 @@ var DeleteTaskSetCommand = _DeleteTaskSetCommand;
3269
3247
 
3270
3248
 
3271
3249
 
3272
- var _DeregisterContainerInstanceCommand = class _DeregisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
3273
- ...commonParams
3274
- }).m(function(Command, cs, config, o) {
3250
+ var _DeregisterContainerInstanceCommand = class _DeregisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3275
3251
  return [
3276
3252
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3277
3253
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3285,9 +3261,7 @@ var DeregisterContainerInstanceCommand = _DeregisterContainerInstanceCommand;
3285
3261
 
3286
3262
 
3287
3263
 
3288
- var _DeregisterTaskDefinitionCommand = class _DeregisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep({
3289
- ...commonParams
3290
- }).m(function(Command, cs, config, o) {
3264
+ var _DeregisterTaskDefinitionCommand = class _DeregisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3291
3265
  return [
3292
3266
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3293
3267
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3301,9 +3275,7 @@ var DeregisterTaskDefinitionCommand = _DeregisterTaskDefinitionCommand;
3301
3275
 
3302
3276
 
3303
3277
 
3304
- var _DescribeCapacityProvidersCommand = class _DescribeCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep({
3305
- ...commonParams
3306
- }).m(function(Command, cs, config, o) {
3278
+ var _DescribeCapacityProvidersCommand = class _DescribeCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3307
3279
  return [
3308
3280
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3309
3281
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3317,9 +3289,7 @@ var DescribeCapacityProvidersCommand = _DescribeCapacityProvidersCommand;
3317
3289
 
3318
3290
 
3319
3291
 
3320
- var _DescribeClustersCommand = class _DescribeClustersCommand extends import_smithy_client.Command.classBuilder().ep({
3321
- ...commonParams
3322
- }).m(function(Command, cs, config, o) {
3292
+ var _DescribeClustersCommand = class _DescribeClustersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3323
3293
  return [
3324
3294
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3325
3295
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3333,9 +3303,7 @@ var DescribeClustersCommand = _DescribeClustersCommand;
3333
3303
 
3334
3304
 
3335
3305
 
3336
- var _DescribeContainerInstancesCommand = class _DescribeContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep({
3337
- ...commonParams
3338
- }).m(function(Command, cs, config, o) {
3306
+ var _DescribeContainerInstancesCommand = class _DescribeContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3339
3307
  return [
3340
3308
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3341
3309
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3349,9 +3317,7 @@ var DescribeContainerInstancesCommand = _DescribeContainerInstancesCommand;
3349
3317
 
3350
3318
 
3351
3319
 
3352
- var _DescribeServicesCommand = class _DescribeServicesCommand extends import_smithy_client.Command.classBuilder().ep({
3353
- ...commonParams
3354
- }).m(function(Command, cs, config, o) {
3320
+ var _DescribeServicesCommand = class _DescribeServicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3355
3321
  return [
3356
3322
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3357
3323
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3365,9 +3331,7 @@ var DescribeServicesCommand = _DescribeServicesCommand;
3365
3331
 
3366
3332
 
3367
3333
 
3368
- var _DescribeTaskDefinitionCommand = class _DescribeTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep({
3369
- ...commonParams
3370
- }).m(function(Command, cs, config, o) {
3334
+ var _DescribeTaskDefinitionCommand = class _DescribeTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3371
3335
  return [
3372
3336
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3373
3337
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3381,9 +3345,7 @@ var DescribeTaskDefinitionCommand = _DescribeTaskDefinitionCommand;
3381
3345
 
3382
3346
 
3383
3347
 
3384
- var _DescribeTasksCommand = class _DescribeTasksCommand extends import_smithy_client.Command.classBuilder().ep({
3385
- ...commonParams
3386
- }).m(function(Command, cs, config, o) {
3348
+ var _DescribeTasksCommand = class _DescribeTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3387
3349
  return [
3388
3350
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3389
3351
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3397,9 +3359,7 @@ var DescribeTasksCommand = _DescribeTasksCommand;
3397
3359
 
3398
3360
 
3399
3361
 
3400
- var _DescribeTaskSetsCommand = class _DescribeTaskSetsCommand extends import_smithy_client.Command.classBuilder().ep({
3401
- ...commonParams
3402
- }).m(function(Command, cs, config, o) {
3362
+ var _DescribeTaskSetsCommand = class _DescribeTaskSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3403
3363
  return [
3404
3364
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3405
3365
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3413,9 +3373,7 @@ var DescribeTaskSetsCommand = _DescribeTaskSetsCommand;
3413
3373
 
3414
3374
 
3415
3375
 
3416
- var _DiscoverPollEndpointCommand = class _DiscoverPollEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
3417
- ...commonParams
3418
- }).m(function(Command, cs, config, o) {
3376
+ var _DiscoverPollEndpointCommand = class _DiscoverPollEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3419
3377
  return [
3420
3378
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3421
3379
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3429,9 +3387,7 @@ var DiscoverPollEndpointCommand = _DiscoverPollEndpointCommand;
3429
3387
 
3430
3388
 
3431
3389
 
3432
- var _ExecuteCommandCommand = class _ExecuteCommandCommand extends import_smithy_client.Command.classBuilder().ep({
3433
- ...commonParams
3434
- }).m(function(Command, cs, config, o) {
3390
+ var _ExecuteCommandCommand = class _ExecuteCommandCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3435
3391
  return [
3436
3392
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3437
3393
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3445,9 +3401,7 @@ var ExecuteCommandCommand = _ExecuteCommandCommand;
3445
3401
 
3446
3402
 
3447
3403
 
3448
- var _GetTaskProtectionCommand = class _GetTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep({
3449
- ...commonParams
3450
- }).m(function(Command, cs, config, o) {
3404
+ var _GetTaskProtectionCommand = class _GetTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3451
3405
  return [
3452
3406
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3453
3407
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3461,9 +3415,7 @@ var GetTaskProtectionCommand = _GetTaskProtectionCommand;
3461
3415
 
3462
3416
 
3463
3417
 
3464
- var _ListAccountSettingsCommand = class _ListAccountSettingsCommand extends import_smithy_client.Command.classBuilder().ep({
3465
- ...commonParams
3466
- }).m(function(Command, cs, config, o) {
3418
+ var _ListAccountSettingsCommand = class _ListAccountSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3467
3419
  return [
3468
3420
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3469
3421
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3477,9 +3429,7 @@ var ListAccountSettingsCommand = _ListAccountSettingsCommand;
3477
3429
 
3478
3430
 
3479
3431
 
3480
- var _ListAttributesCommand = class _ListAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
3481
- ...commonParams
3482
- }).m(function(Command, cs, config, o) {
3432
+ var _ListAttributesCommand = class _ListAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3483
3433
  return [
3484
3434
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3485
3435
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3493,9 +3443,7 @@ var ListAttributesCommand = _ListAttributesCommand;
3493
3443
 
3494
3444
 
3495
3445
 
3496
- var _ListClustersCommand = class _ListClustersCommand extends import_smithy_client.Command.classBuilder().ep({
3497
- ...commonParams
3498
- }).m(function(Command, cs, config, o) {
3446
+ var _ListClustersCommand = class _ListClustersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3499
3447
  return [
3500
3448
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3501
3449
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3509,9 +3457,7 @@ var ListClustersCommand = _ListClustersCommand;
3509
3457
 
3510
3458
 
3511
3459
 
3512
- var _ListContainerInstancesCommand = class _ListContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep({
3513
- ...commonParams
3514
- }).m(function(Command, cs, config, o) {
3460
+ var _ListContainerInstancesCommand = class _ListContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3515
3461
  return [
3516
3462
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3517
3463
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3525,9 +3471,7 @@ var ListContainerInstancesCommand = _ListContainerInstancesCommand;
3525
3471
 
3526
3472
 
3527
3473
 
3528
- var _ListServicesByNamespaceCommand = class _ListServicesByNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
3529
- ...commonParams
3530
- }).m(function(Command, cs, config, o) {
3474
+ var _ListServicesByNamespaceCommand = class _ListServicesByNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3531
3475
  return [
3532
3476
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3533
3477
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3541,9 +3485,7 @@ var ListServicesByNamespaceCommand = _ListServicesByNamespaceCommand;
3541
3485
 
3542
3486
 
3543
3487
 
3544
- var _ListServicesCommand = class _ListServicesCommand extends import_smithy_client.Command.classBuilder().ep({
3545
- ...commonParams
3546
- }).m(function(Command, cs, config, o) {
3488
+ var _ListServicesCommand = class _ListServicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3547
3489
  return [
3548
3490
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3549
3491
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3557,9 +3499,7 @@ var ListServicesCommand = _ListServicesCommand;
3557
3499
 
3558
3500
 
3559
3501
 
3560
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3561
- ...commonParams
3562
- }).m(function(Command, cs, config, o) {
3502
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3563
3503
  return [
3564
3504
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3565
3505
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3573,9 +3513,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3573
3513
 
3574
3514
 
3575
3515
 
3576
- var _ListTaskDefinitionFamiliesCommand = class _ListTaskDefinitionFamiliesCommand extends import_smithy_client.Command.classBuilder().ep({
3577
- ...commonParams
3578
- }).m(function(Command, cs, config, o) {
3516
+ var _ListTaskDefinitionFamiliesCommand = class _ListTaskDefinitionFamiliesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3579
3517
  return [
3580
3518
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3581
3519
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3589,9 +3527,7 @@ var ListTaskDefinitionFamiliesCommand = _ListTaskDefinitionFamiliesCommand;
3589
3527
 
3590
3528
 
3591
3529
 
3592
- var _ListTaskDefinitionsCommand = class _ListTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep({
3593
- ...commonParams
3594
- }).m(function(Command, cs, config, o) {
3530
+ var _ListTaskDefinitionsCommand = class _ListTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3595
3531
  return [
3596
3532
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3597
3533
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3605,9 +3541,7 @@ var ListTaskDefinitionsCommand = _ListTaskDefinitionsCommand;
3605
3541
 
3606
3542
 
3607
3543
 
3608
- var _ListTasksCommand = class _ListTasksCommand extends import_smithy_client.Command.classBuilder().ep({
3609
- ...commonParams
3610
- }).m(function(Command, cs, config, o) {
3544
+ var _ListTasksCommand = class _ListTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3611
3545
  return [
3612
3546
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3613
3547
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3621,9 +3555,7 @@ var ListTasksCommand = _ListTasksCommand;
3621
3555
 
3622
3556
 
3623
3557
 
3624
- var _PutAccountSettingCommand = class _PutAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep({
3625
- ...commonParams
3626
- }).m(function(Command, cs, config, o) {
3558
+ var _PutAccountSettingCommand = class _PutAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3627
3559
  return [
3628
3560
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3629
3561
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3637,9 +3569,7 @@ var PutAccountSettingCommand = _PutAccountSettingCommand;
3637
3569
 
3638
3570
 
3639
3571
 
3640
- var _PutAccountSettingDefaultCommand = class _PutAccountSettingDefaultCommand extends import_smithy_client.Command.classBuilder().ep({
3641
- ...commonParams
3642
- }).m(function(Command, cs, config, o) {
3572
+ var _PutAccountSettingDefaultCommand = class _PutAccountSettingDefaultCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3643
3573
  return [
3644
3574
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3645
3575
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3653,9 +3583,7 @@ var PutAccountSettingDefaultCommand = _PutAccountSettingDefaultCommand;
3653
3583
 
3654
3584
 
3655
3585
 
3656
- var _PutAttributesCommand = class _PutAttributesCommand extends import_smithy_client.Command.classBuilder().ep({
3657
- ...commonParams
3658
- }).m(function(Command, cs, config, o) {
3586
+ var _PutAttributesCommand = class _PutAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3659
3587
  return [
3660
3588
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3661
3589
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3669,9 +3597,7 @@ var PutAttributesCommand = _PutAttributesCommand;
3669
3597
 
3670
3598
 
3671
3599
 
3672
- var _PutClusterCapacityProvidersCommand = class _PutClusterCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep({
3673
- ...commonParams
3674
- }).m(function(Command, cs, config, o) {
3600
+ var _PutClusterCapacityProvidersCommand = class _PutClusterCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3675
3601
  return [
3676
3602
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3677
3603
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3685,9 +3611,7 @@ var PutClusterCapacityProvidersCommand = _PutClusterCapacityProvidersCommand;
3685
3611
 
3686
3612
 
3687
3613
 
3688
- var _RegisterContainerInstanceCommand = class _RegisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
3689
- ...commonParams
3690
- }).m(function(Command, cs, config, o) {
3614
+ var _RegisterContainerInstanceCommand = class _RegisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3691
3615
  return [
3692
3616
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3693
3617
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3701,9 +3625,7 @@ var RegisterContainerInstanceCommand = _RegisterContainerInstanceCommand;
3701
3625
 
3702
3626
 
3703
3627
 
3704
- var _RegisterTaskDefinitionCommand = class _RegisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep({
3705
- ...commonParams
3706
- }).m(function(Command, cs, config, o) {
3628
+ var _RegisterTaskDefinitionCommand = class _RegisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3707
3629
  return [
3708
3630
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3709
3631
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3717,9 +3639,7 @@ var RegisterTaskDefinitionCommand = _RegisterTaskDefinitionCommand;
3717
3639
 
3718
3640
 
3719
3641
 
3720
- var _RunTaskCommand = class _RunTaskCommand extends import_smithy_client.Command.classBuilder().ep({
3721
- ...commonParams
3722
- }).m(function(Command, cs, config, o) {
3642
+ var _RunTaskCommand = class _RunTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3723
3643
  return [
3724
3644
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3725
3645
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3733,9 +3653,7 @@ var RunTaskCommand = _RunTaskCommand;
3733
3653
 
3734
3654
 
3735
3655
 
3736
- var _StartTaskCommand = class _StartTaskCommand extends import_smithy_client.Command.classBuilder().ep({
3737
- ...commonParams
3738
- }).m(function(Command, cs, config, o) {
3656
+ var _StartTaskCommand = class _StartTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3739
3657
  return [
3740
3658
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3741
3659
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3749,9 +3667,7 @@ var StartTaskCommand = _StartTaskCommand;
3749
3667
 
3750
3668
 
3751
3669
 
3752
- var _StopTaskCommand = class _StopTaskCommand extends import_smithy_client.Command.classBuilder().ep({
3753
- ...commonParams
3754
- }).m(function(Command, cs, config, o) {
3670
+ var _StopTaskCommand = class _StopTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3755
3671
  return [
3756
3672
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3757
3673
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3765,9 +3681,7 @@ var StopTaskCommand = _StopTaskCommand;
3765
3681
 
3766
3682
 
3767
3683
 
3768
- var _SubmitAttachmentStateChangesCommand = class _SubmitAttachmentStateChangesCommand extends import_smithy_client.Command.classBuilder().ep({
3769
- ...commonParams
3770
- }).m(function(Command, cs, config, o) {
3684
+ var _SubmitAttachmentStateChangesCommand = class _SubmitAttachmentStateChangesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3771
3685
  return [
3772
3686
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3773
3687
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3781,9 +3695,7 @@ var SubmitAttachmentStateChangesCommand = _SubmitAttachmentStateChangesCommand;
3781
3695
 
3782
3696
 
3783
3697
 
3784
- var _SubmitContainerStateChangeCommand = class _SubmitContainerStateChangeCommand extends import_smithy_client.Command.classBuilder().ep({
3785
- ...commonParams
3786
- }).m(function(Command, cs, config, o) {
3698
+ var _SubmitContainerStateChangeCommand = class _SubmitContainerStateChangeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3787
3699
  return [
3788
3700
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3789
3701
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3797,9 +3709,7 @@ var SubmitContainerStateChangeCommand = _SubmitContainerStateChangeCommand;
3797
3709
 
3798
3710
 
3799
3711
 
3800
- var _SubmitTaskStateChangeCommand = class _SubmitTaskStateChangeCommand extends import_smithy_client.Command.classBuilder().ep({
3801
- ...commonParams
3802
- }).m(function(Command, cs, config, o) {
3712
+ var _SubmitTaskStateChangeCommand = class _SubmitTaskStateChangeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3803
3713
  return [
3804
3714
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3805
3715
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3813,9 +3723,7 @@ var SubmitTaskStateChangeCommand = _SubmitTaskStateChangeCommand;
3813
3723
 
3814
3724
 
3815
3725
 
3816
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3817
- ...commonParams
3818
- }).m(function(Command, cs, config, o) {
3726
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3819
3727
  return [
3820
3728
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3821
3729
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3829,9 +3737,7 @@ var TagResourceCommand = _TagResourceCommand;
3829
3737
 
3830
3738
 
3831
3739
 
3832
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
3833
- ...commonParams
3834
- }).m(function(Command, cs, config, o) {
3740
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3835
3741
  return [
3836
3742
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3837
3743
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3845,9 +3751,7 @@ var UntagResourceCommand = _UntagResourceCommand;
3845
3751
 
3846
3752
 
3847
3753
 
3848
- var _UpdateCapacityProviderCommand = class _UpdateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep({
3849
- ...commonParams
3850
- }).m(function(Command, cs, config, o) {
3754
+ var _UpdateCapacityProviderCommand = class _UpdateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3851
3755
  return [
3852
3756
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3853
3757
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3861,9 +3765,7 @@ var UpdateCapacityProviderCommand = _UpdateCapacityProviderCommand;
3861
3765
 
3862
3766
 
3863
3767
 
3864
- var _UpdateClusterCommand = class _UpdateClusterCommand extends import_smithy_client.Command.classBuilder().ep({
3865
- ...commonParams
3866
- }).m(function(Command, cs, config, o) {
3768
+ var _UpdateClusterCommand = class _UpdateClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3867
3769
  return [
3868
3770
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3869
3771
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3877,9 +3779,7 @@ var UpdateClusterCommand = _UpdateClusterCommand;
3877
3779
 
3878
3780
 
3879
3781
 
3880
- var _UpdateClusterSettingsCommand = class _UpdateClusterSettingsCommand extends import_smithy_client.Command.classBuilder().ep({
3881
- ...commonParams
3882
- }).m(function(Command, cs, config, o) {
3782
+ var _UpdateClusterSettingsCommand = class _UpdateClusterSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3883
3783
  return [
3884
3784
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3885
3785
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3893,9 +3793,7 @@ var UpdateClusterSettingsCommand = _UpdateClusterSettingsCommand;
3893
3793
 
3894
3794
 
3895
3795
 
3896
- var _UpdateContainerAgentCommand = class _UpdateContainerAgentCommand extends import_smithy_client.Command.classBuilder().ep({
3897
- ...commonParams
3898
- }).m(function(Command, cs, config, o) {
3796
+ var _UpdateContainerAgentCommand = class _UpdateContainerAgentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3899
3797
  return [
3900
3798
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3901
3799
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3909,9 +3807,7 @@ var UpdateContainerAgentCommand = _UpdateContainerAgentCommand;
3909
3807
 
3910
3808
 
3911
3809
 
3912
- var _UpdateContainerInstancesStateCommand = class _UpdateContainerInstancesStateCommand extends import_smithy_client.Command.classBuilder().ep({
3913
- ...commonParams
3914
- }).m(function(Command, cs, config, o) {
3810
+ var _UpdateContainerInstancesStateCommand = class _UpdateContainerInstancesStateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3915
3811
  return [
3916
3812
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3917
3813
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3925,9 +3821,7 @@ var UpdateContainerInstancesStateCommand = _UpdateContainerInstancesStateCommand
3925
3821
 
3926
3822
 
3927
3823
 
3928
- var _UpdateServiceCommand = class _UpdateServiceCommand extends import_smithy_client.Command.classBuilder().ep({
3929
- ...commonParams
3930
- }).m(function(Command, cs, config, o) {
3824
+ var _UpdateServiceCommand = class _UpdateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3931
3825
  return [
3932
3826
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3933
3827
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3941,9 +3835,7 @@ var UpdateServiceCommand = _UpdateServiceCommand;
3941
3835
 
3942
3836
 
3943
3837
 
3944
- var _UpdateServicePrimaryTaskSetCommand = class _UpdateServicePrimaryTaskSetCommand extends import_smithy_client.Command.classBuilder().ep({
3945
- ...commonParams
3946
- }).m(function(Command, cs, config, o) {
3838
+ var _UpdateServicePrimaryTaskSetCommand = class _UpdateServicePrimaryTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3947
3839
  return [
3948
3840
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3949
3841
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3957,9 +3849,7 @@ var UpdateServicePrimaryTaskSetCommand = _UpdateServicePrimaryTaskSetCommand;
3957
3849
 
3958
3850
 
3959
3851
 
3960
- var _UpdateTaskProtectionCommand = class _UpdateTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep({
3961
- ...commonParams
3962
- }).m(function(Command, cs, config, o) {
3852
+ var _UpdateTaskProtectionCommand = class _UpdateTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3963
3853
  return [
3964
3854
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3965
3855
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -3973,9 +3863,7 @@ var UpdateTaskProtectionCommand = _UpdateTaskProtectionCommand;
3973
3863
 
3974
3864
 
3975
3865
 
3976
- var _UpdateTaskSetCommand = class _UpdateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep({
3977
- ...commonParams
3978
- }).m(function(Command, cs, config, o) {
3866
+ var _UpdateTaskSetCommand = class _UpdateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3979
3867
  return [
3980
3868
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3981
3869
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_CreateCapacityProviderCommand, se_CreateCapacityProviderCommand } fr
6
6
  export { $Command };
7
7
  export class CreateCapacityProviderCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreateClusterCommand, se_CreateClusterCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateClusterCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreateServiceCommand, se_CreateServiceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateServiceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),