@aws-sdk/client-m2 3.716.0 → 3.723.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -196,7 +196,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
196
196
  }, "resolveRuntimeExtensions");
197
197
 
198
198
  // src/M2Client.ts
199
- var _M2Client = class _M2Client extends import_smithy_client.Client {
199
+ var M2Client = class extends import_smithy_client.Client {
200
+ static {
201
+ __name(this, "M2Client");
202
+ }
203
+ /**
204
+ * The resolved configuration of M2Client class. This is resolved and normalized from the {@link M2ClientConfig | constructor configuration interface}.
205
+ */
206
+ config;
200
207
  constructor(...[configuration]) {
201
208
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
202
209
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -206,7 +213,7 @@ var _M2Client = class _M2Client extends import_smithy_client.Client {
206
213
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
207
214
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
208
215
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
209
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
216
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
210
217
  super(_config_8);
211
218
  this.config = _config_8;
212
219
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -234,8 +241,6 @@ var _M2Client = class _M2Client extends import_smithy_client.Client {
234
241
  super.destroy();
235
242
  }
236
243
  };
237
- __name(_M2Client, "M2Client");
238
- var M2Client = _M2Client;
239
244
 
240
245
  // src/M2.ts
241
246
 
@@ -253,7 +258,10 @@ var import_uuid = require("uuid");
253
258
 
254
259
  // src/models/M2ServiceException.ts
255
260
 
256
- var _M2ServiceException = class _M2ServiceException extends import_smithy_client.ServiceException {
261
+ var M2ServiceException = class _M2ServiceException extends import_smithy_client.ServiceException {
262
+ static {
263
+ __name(this, "M2ServiceException");
264
+ }
257
265
  /**
258
266
  * @internal
259
267
  */
@@ -262,11 +270,14 @@ var _M2ServiceException = class _M2ServiceException extends import_smithy_client
262
270
  Object.setPrototypeOf(this, _M2ServiceException.prototype);
263
271
  }
264
272
  };
265
- __name(_M2ServiceException, "M2ServiceException");
266
- var M2ServiceException = _M2ServiceException;
267
273
 
268
274
  // src/models/models_0.ts
269
- var _AccessDeniedException = class _AccessDeniedException extends M2ServiceException {
275
+ var AccessDeniedException = class _AccessDeniedException extends M2ServiceException {
276
+ static {
277
+ __name(this, "AccessDeniedException");
278
+ }
279
+ name = "AccessDeniedException";
280
+ $fault = "client";
270
281
  /**
271
282
  * @internal
272
283
  */
@@ -276,14 +287,25 @@ var _AccessDeniedException = class _AccessDeniedException extends M2ServiceExcep
276
287
  $fault: "client",
277
288
  ...opts
278
289
  });
279
- this.name = "AccessDeniedException";
280
- this.$fault = "client";
281
290
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
282
291
  }
283
292
  };
284
- __name(_AccessDeniedException, "AccessDeniedException");
285
- var AccessDeniedException = _AccessDeniedException;
286
- var _ConflictException = class _ConflictException extends M2ServiceException {
293
+ var ConflictException = class _ConflictException extends M2ServiceException {
294
+ static {
295
+ __name(this, "ConflictException");
296
+ }
297
+ name = "ConflictException";
298
+ $fault = "client";
299
+ /**
300
+ * <p>The ID of the conflicting resource.</p>
301
+ * @public
302
+ */
303
+ resourceId;
304
+ /**
305
+ * <p>The type of the conflicting resource.</p>
306
+ * @public
307
+ */
308
+ resourceType;
287
309
  /**
288
310
  * @internal
289
311
  */
@@ -293,16 +315,23 @@ var _ConflictException = class _ConflictException extends M2ServiceException {
293
315
  $fault: "client",
294
316
  ...opts
295
317
  });
296
- this.name = "ConflictException";
297
- this.$fault = "client";
298
318
  Object.setPrototypeOf(this, _ConflictException.prototype);
299
319
  this.resourceId = opts.resourceId;
300
320
  this.resourceType = opts.resourceType;
301
321
  }
302
322
  };
303
- __name(_ConflictException, "ConflictException");
304
- var ConflictException = _ConflictException;
305
- var _InternalServerException = class _InternalServerException extends M2ServiceException {
323
+ var InternalServerException = class _InternalServerException extends M2ServiceException {
324
+ static {
325
+ __name(this, "InternalServerException");
326
+ }
327
+ name = "InternalServerException";
328
+ $fault = "server";
329
+ $retryable = {};
330
+ /**
331
+ * <p>The number of seconds to wait before retrying the request.</p>
332
+ * @public
333
+ */
334
+ retryAfterSeconds;
306
335
  /**
307
336
  * @internal
308
337
  */
@@ -312,16 +341,26 @@ var _InternalServerException = class _InternalServerException extends M2ServiceE
312
341
  $fault: "server",
313
342
  ...opts
314
343
  });
315
- this.name = "InternalServerException";
316
- this.$fault = "server";
317
- this.$retryable = {};
318
344
  Object.setPrototypeOf(this, _InternalServerException.prototype);
319
345
  this.retryAfterSeconds = opts.retryAfterSeconds;
320
346
  }
321
347
  };
322
- __name(_InternalServerException, "InternalServerException");
323
- var InternalServerException = _InternalServerException;
324
- var _ResourceNotFoundException = class _ResourceNotFoundException extends M2ServiceException {
348
+ var ResourceNotFoundException = class _ResourceNotFoundException extends M2ServiceException {
349
+ static {
350
+ __name(this, "ResourceNotFoundException");
351
+ }
352
+ name = "ResourceNotFoundException";
353
+ $fault = "client";
354
+ /**
355
+ * <p>The ID of the missing resource.</p>
356
+ * @public
357
+ */
358
+ resourceId;
359
+ /**
360
+ * <p>The type of the missing resource.</p>
361
+ * @public
362
+ */
363
+ resourceType;
325
364
  /**
326
365
  * @internal
327
366
  */
@@ -331,16 +370,35 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends M2Serv
331
370
  $fault: "client",
332
371
  ...opts
333
372
  });
334
- this.name = "ResourceNotFoundException";
335
- this.$fault = "client";
336
373
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
337
374
  this.resourceId = opts.resourceId;
338
375
  this.resourceType = opts.resourceType;
339
376
  }
340
377
  };
341
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
342
- var ResourceNotFoundException = _ResourceNotFoundException;
343
- var _ThrottlingException = class _ThrottlingException extends M2ServiceException {
378
+ var ThrottlingException = class _ThrottlingException extends M2ServiceException {
379
+ static {
380
+ __name(this, "ThrottlingException");
381
+ }
382
+ name = "ThrottlingException";
383
+ $fault = "client";
384
+ $retryable = {
385
+ throttling: true
386
+ };
387
+ /**
388
+ * <p>The identifier of the service that the throttled request was made to.</p>
389
+ * @public
390
+ */
391
+ serviceCode;
392
+ /**
393
+ * <p>The identifier of the throttled request.</p>
394
+ * @public
395
+ */
396
+ quotaCode;
397
+ /**
398
+ * <p>The number of seconds to wait before retrying the request.</p>
399
+ * @public
400
+ */
401
+ retryAfterSeconds;
344
402
  /**
345
403
  * @internal
346
404
  */
@@ -350,19 +408,12 @@ var _ThrottlingException = class _ThrottlingException extends M2ServiceException
350
408
  $fault: "client",
351
409
  ...opts
352
410
  });
353
- this.name = "ThrottlingException";
354
- this.$fault = "client";
355
- this.$retryable = {
356
- throttling: true
357
- };
358
411
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
359
412
  this.serviceCode = opts.serviceCode;
360
413
  this.quotaCode = opts.quotaCode;
361
414
  this.retryAfterSeconds = opts.retryAfterSeconds;
362
415
  }
363
416
  };
364
- __name(_ThrottlingException, "ThrottlingException");
365
- var ThrottlingException = _ThrottlingException;
366
417
  var ValidationExceptionReason = {
367
418
  CANNOT_PARSE: "cannotParse",
368
419
  FEATURE_NOT_AVAILABLE: "featureNotAvailable",
@@ -371,7 +422,22 @@ var ValidationExceptionReason = {
371
422
  UNKNOWN_OPERATION: "unknownOperation",
372
423
  UNSUPPORTED_ENGINE_VERSION: "unsupportedEngineVersion"
373
424
  };
374
- var _ValidationException = class _ValidationException extends M2ServiceException {
425
+ var ValidationException = class _ValidationException extends M2ServiceException {
426
+ static {
427
+ __name(this, "ValidationException");
428
+ }
429
+ name = "ValidationException";
430
+ $fault = "client";
431
+ /**
432
+ * <p>The reason why it failed service validation.</p>
433
+ * @public
434
+ */
435
+ reason;
436
+ /**
437
+ * <p>The list of fields that failed service validation.</p>
438
+ * @public
439
+ */
440
+ fieldList;
375
441
  /**
376
442
  * @internal
377
443
  */
@@ -381,15 +447,11 @@ var _ValidationException = class _ValidationException extends M2ServiceException
381
447
  $fault: "client",
382
448
  ...opts
383
449
  });
384
- this.name = "ValidationException";
385
- this.$fault = "client";
386
450
  Object.setPrototypeOf(this, _ValidationException.prototype);
387
451
  this.reason = opts.reason;
388
452
  this.fieldList = opts.fieldList;
389
453
  }
390
454
  };
391
- __name(_ValidationException, "ValidationException");
392
- var ValidationException = _ValidationException;
393
455
  var Definition;
394
456
  ((Definition3) => {
395
457
  Definition3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -404,7 +466,32 @@ var EngineType = {
404
466
  BLUAGE: "bluage",
405
467
  MICROFOCUS: "microfocus"
406
468
  };
407
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends M2ServiceException {
469
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends M2ServiceException {
470
+ static {
471
+ __name(this, "ServiceQuotaExceededException");
472
+ }
473
+ name = "ServiceQuotaExceededException";
474
+ $fault = "client";
475
+ /**
476
+ * <p>The ID of the resource that is exceeding the quota limit.</p>
477
+ * @public
478
+ */
479
+ resourceId;
480
+ /**
481
+ * <p>The type of resource that is exceeding the quota limit for Amazon Web Services Mainframe Modernization.</p>
482
+ * @public
483
+ */
484
+ resourceType;
485
+ /**
486
+ * <p>A code that identifies the service that the exceeded quota belongs to.</p>
487
+ * @public
488
+ */
489
+ serviceCode;
490
+ /**
491
+ * <p>The identifier of the exceeded quota.</p>
492
+ * @public
493
+ */
494
+ quotaCode;
408
495
  /**
409
496
  * @internal
410
497
  */
@@ -414,8 +501,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
414
501
  $fault: "client",
415
502
  ...opts
416
503
  });
417
- this.name = "ServiceQuotaExceededException";
418
- this.$fault = "client";
419
504
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
420
505
  this.resourceId = opts.resourceId;
421
506
  this.resourceType = opts.resourceType;
@@ -423,8 +508,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
423
508
  this.quotaCode = opts.quotaCode;
424
509
  }
425
510
  };
426
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
427
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
428
511
  var DatasetOrgAttributes;
429
512
  ((DatasetOrgAttributes3) => {
430
513
  DatasetOrgAttributes3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -522,7 +605,13 @@ var BatchJobExecutionStatus = {
522
605
  SUCCEEDED: "Succeeded",
523
606
  SUCCEEDED_WITH_WARNING: "Succeeded With Warning"
524
607
  };
525
- var _ExecutionTimeoutException = class _ExecutionTimeoutException extends M2ServiceException {
608
+ var ExecutionTimeoutException = class _ExecutionTimeoutException extends M2ServiceException {
609
+ static {
610
+ __name(this, "ExecutionTimeoutException");
611
+ }
612
+ name = "ExecutionTimeoutException";
613
+ $fault = "server";
614
+ $retryable = {};
526
615
  /**
527
616
  * @internal
528
617
  */
@@ -532,14 +621,9 @@ var _ExecutionTimeoutException = class _ExecutionTimeoutException extends M2Serv
532
621
  $fault: "server",
533
622
  ...opts
534
623
  });
535
- this.name = "ExecutionTimeoutException";
536
- this.$fault = "server";
537
- this.$retryable = {};
538
624
  Object.setPrototypeOf(this, _ExecutionTimeoutException.prototype);
539
625
  }
540
626
  };
541
- __name(_ExecutionTimeoutException, "ExecutionTimeoutException");
542
- var ExecutionTimeoutException = _ExecutionTimeoutException;
543
627
  var DatasetDetailOrgAttributes;
544
628
  ((DatasetDetailOrgAttributes2) => {
545
629
  DatasetDetailOrgAttributes2.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -554,7 +638,13 @@ var DatasetDetailOrgAttributes;
554
638
  return visitor._(value.$unknown[0], value.$unknown[1]);
555
639
  }, "visit");
556
640
  })(DatasetDetailOrgAttributes || (DatasetDetailOrgAttributes = {}));
557
- var _ServiceUnavailableException = class _ServiceUnavailableException extends M2ServiceException {
641
+ var ServiceUnavailableException = class _ServiceUnavailableException extends M2ServiceException {
642
+ static {
643
+ __name(this, "ServiceUnavailableException");
644
+ }
645
+ name = "ServiceUnavailableException";
646
+ $fault = "server";
647
+ $retryable = {};
558
648
  /**
559
649
  * @internal
560
650
  */
@@ -564,14 +654,9 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends M2
564
654
  $fault: "server",
565
655
  ...opts
566
656
  });
567
- this.name = "ServiceUnavailableException";
568
- this.$fault = "server";
569
- this.$retryable = {};
570
657
  Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
571
658
  }
572
659
  };
573
- __name(_ServiceUnavailableException, "ServiceUnavailableException");
574
- var ServiceUnavailableException = _ServiceUnavailableException;
575
660
  var DataSetTaskLifecycle = {
576
661
  COMPLETED: "Completed",
577
662
  CREATING: "Creating",
@@ -1989,477 +2074,511 @@ var _sB = "startedBefore";
1989
2074
  var _tK = "tagKeys";
1990
2075
 
1991
2076
  // src/commands/CancelBatchJobExecutionCommand.ts
1992
- var _CancelBatchJobExecutionCommand = class _CancelBatchJobExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2077
+ var CancelBatchJobExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1993
2078
  return [
1994
2079
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1995
2080
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1996
2081
  ];
1997
2082
  }).s("AwsSupernovaControlPlaneService", "CancelBatchJobExecution", {}).n("M2Client", "CancelBatchJobExecutionCommand").f(void 0, void 0).ser(se_CancelBatchJobExecutionCommand).de(de_CancelBatchJobExecutionCommand).build() {
2083
+ static {
2084
+ __name(this, "CancelBatchJobExecutionCommand");
2085
+ }
1998
2086
  };
1999
- __name(_CancelBatchJobExecutionCommand, "CancelBatchJobExecutionCommand");
2000
- var CancelBatchJobExecutionCommand = _CancelBatchJobExecutionCommand;
2001
2087
 
2002
2088
  // src/commands/CreateApplicationCommand.ts
2003
2089
 
2004
2090
 
2005
2091
 
2006
- var _CreateApplicationCommand = class _CreateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2092
+ var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2007
2093
  return [
2008
2094
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2009
2095
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2010
2096
  ];
2011
2097
  }).s("AwsSupernovaControlPlaneService", "CreateApplication", {}).n("M2Client", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
2098
+ static {
2099
+ __name(this, "CreateApplicationCommand");
2100
+ }
2012
2101
  };
2013
- __name(_CreateApplicationCommand, "CreateApplicationCommand");
2014
- var CreateApplicationCommand = _CreateApplicationCommand;
2015
2102
 
2016
2103
  // src/commands/CreateDataSetImportTaskCommand.ts
2017
2104
 
2018
2105
 
2019
2106
 
2020
- var _CreateDataSetImportTaskCommand = class _CreateDataSetImportTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2107
+ var CreateDataSetImportTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2021
2108
  return [
2022
2109
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2023
2110
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2024
2111
  ];
2025
2112
  }).s("AwsSupernovaControlPlaneService", "CreateDataSetImportTask", {}).n("M2Client", "CreateDataSetImportTaskCommand").f(void 0, void 0).ser(se_CreateDataSetImportTaskCommand).de(de_CreateDataSetImportTaskCommand).build() {
2113
+ static {
2114
+ __name(this, "CreateDataSetImportTaskCommand");
2115
+ }
2026
2116
  };
2027
- __name(_CreateDataSetImportTaskCommand, "CreateDataSetImportTaskCommand");
2028
- var CreateDataSetImportTaskCommand = _CreateDataSetImportTaskCommand;
2029
2117
 
2030
2118
  // src/commands/CreateDeploymentCommand.ts
2031
2119
 
2032
2120
 
2033
2121
 
2034
- var _CreateDeploymentCommand = class _CreateDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2122
+ var CreateDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2035
2123
  return [
2036
2124
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2037
2125
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2038
2126
  ];
2039
2127
  }).s("AwsSupernovaControlPlaneService", "CreateDeployment", {}).n("M2Client", "CreateDeploymentCommand").f(void 0, void 0).ser(se_CreateDeploymentCommand).de(de_CreateDeploymentCommand).build() {
2128
+ static {
2129
+ __name(this, "CreateDeploymentCommand");
2130
+ }
2040
2131
  };
2041
- __name(_CreateDeploymentCommand, "CreateDeploymentCommand");
2042
- var CreateDeploymentCommand = _CreateDeploymentCommand;
2043
2132
 
2044
2133
  // src/commands/CreateEnvironmentCommand.ts
2045
2134
 
2046
2135
 
2047
2136
 
2048
- var _CreateEnvironmentCommand = class _CreateEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2137
+ var CreateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2049
2138
  return [
2050
2139
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2051
2140
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2052
2141
  ];
2053
2142
  }).s("AwsSupernovaControlPlaneService", "CreateEnvironment", {}).n("M2Client", "CreateEnvironmentCommand").f(void 0, void 0).ser(se_CreateEnvironmentCommand).de(de_CreateEnvironmentCommand).build() {
2143
+ static {
2144
+ __name(this, "CreateEnvironmentCommand");
2145
+ }
2054
2146
  };
2055
- __name(_CreateEnvironmentCommand, "CreateEnvironmentCommand");
2056
- var CreateEnvironmentCommand = _CreateEnvironmentCommand;
2057
2147
 
2058
2148
  // src/commands/DeleteApplicationCommand.ts
2059
2149
 
2060
2150
 
2061
2151
 
2062
- var _DeleteApplicationCommand = class _DeleteApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2152
+ var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2063
2153
  return [
2064
2154
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2065
2155
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2066
2156
  ];
2067
2157
  }).s("AwsSupernovaControlPlaneService", "DeleteApplication", {}).n("M2Client", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
2158
+ static {
2159
+ __name(this, "DeleteApplicationCommand");
2160
+ }
2068
2161
  };
2069
- __name(_DeleteApplicationCommand, "DeleteApplicationCommand");
2070
- var DeleteApplicationCommand = _DeleteApplicationCommand;
2071
2162
 
2072
2163
  // src/commands/DeleteApplicationFromEnvironmentCommand.ts
2073
2164
 
2074
2165
 
2075
2166
 
2076
- var _DeleteApplicationFromEnvironmentCommand = class _DeleteApplicationFromEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2167
+ var DeleteApplicationFromEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2077
2168
  return [
2078
2169
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2079
2170
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2080
2171
  ];
2081
2172
  }).s("AwsSupernovaControlPlaneService", "DeleteApplicationFromEnvironment", {}).n("M2Client", "DeleteApplicationFromEnvironmentCommand").f(void 0, void 0).ser(se_DeleteApplicationFromEnvironmentCommand).de(de_DeleteApplicationFromEnvironmentCommand).build() {
2173
+ static {
2174
+ __name(this, "DeleteApplicationFromEnvironmentCommand");
2175
+ }
2082
2176
  };
2083
- __name(_DeleteApplicationFromEnvironmentCommand, "DeleteApplicationFromEnvironmentCommand");
2084
- var DeleteApplicationFromEnvironmentCommand = _DeleteApplicationFromEnvironmentCommand;
2085
2177
 
2086
2178
  // src/commands/DeleteEnvironmentCommand.ts
2087
2179
 
2088
2180
 
2089
2181
 
2090
- var _DeleteEnvironmentCommand = class _DeleteEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2182
+ var DeleteEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2091
2183
  return [
2092
2184
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2093
2185
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2094
2186
  ];
2095
2187
  }).s("AwsSupernovaControlPlaneService", "DeleteEnvironment", {}).n("M2Client", "DeleteEnvironmentCommand").f(void 0, void 0).ser(se_DeleteEnvironmentCommand).de(de_DeleteEnvironmentCommand).build() {
2188
+ static {
2189
+ __name(this, "DeleteEnvironmentCommand");
2190
+ }
2096
2191
  };
2097
- __name(_DeleteEnvironmentCommand, "DeleteEnvironmentCommand");
2098
- var DeleteEnvironmentCommand = _DeleteEnvironmentCommand;
2099
2192
 
2100
2193
  // src/commands/GetApplicationCommand.ts
2101
2194
 
2102
2195
 
2103
2196
 
2104
- var _GetApplicationCommand = class _GetApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2197
+ var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2105
2198
  return [
2106
2199
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2107
2200
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2108
2201
  ];
2109
2202
  }).s("AwsSupernovaControlPlaneService", "GetApplication", {}).n("M2Client", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
2203
+ static {
2204
+ __name(this, "GetApplicationCommand");
2205
+ }
2110
2206
  };
2111
- __name(_GetApplicationCommand, "GetApplicationCommand");
2112
- var GetApplicationCommand = _GetApplicationCommand;
2113
2207
 
2114
2208
  // src/commands/GetApplicationVersionCommand.ts
2115
2209
 
2116
2210
 
2117
2211
 
2118
- var _GetApplicationVersionCommand = class _GetApplicationVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2212
+ var GetApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2119
2213
  return [
2120
2214
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2121
2215
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2122
2216
  ];
2123
2217
  }).s("AwsSupernovaControlPlaneService", "GetApplicationVersion", {}).n("M2Client", "GetApplicationVersionCommand").f(void 0, void 0).ser(se_GetApplicationVersionCommand).de(de_GetApplicationVersionCommand).build() {
2218
+ static {
2219
+ __name(this, "GetApplicationVersionCommand");
2220
+ }
2124
2221
  };
2125
- __name(_GetApplicationVersionCommand, "GetApplicationVersionCommand");
2126
- var GetApplicationVersionCommand = _GetApplicationVersionCommand;
2127
2222
 
2128
2223
  // src/commands/GetBatchJobExecutionCommand.ts
2129
2224
 
2130
2225
 
2131
2226
 
2132
- var _GetBatchJobExecutionCommand = class _GetBatchJobExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2227
+ var GetBatchJobExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2133
2228
  return [
2134
2229
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2135
2230
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2136
2231
  ];
2137
2232
  }).s("AwsSupernovaControlPlaneService", "GetBatchJobExecution", {}).n("M2Client", "GetBatchJobExecutionCommand").f(void 0, void 0).ser(se_GetBatchJobExecutionCommand).de(de_GetBatchJobExecutionCommand).build() {
2233
+ static {
2234
+ __name(this, "GetBatchJobExecutionCommand");
2235
+ }
2138
2236
  };
2139
- __name(_GetBatchJobExecutionCommand, "GetBatchJobExecutionCommand");
2140
- var GetBatchJobExecutionCommand = _GetBatchJobExecutionCommand;
2141
2237
 
2142
2238
  // src/commands/GetDataSetDetailsCommand.ts
2143
2239
 
2144
2240
 
2145
2241
 
2146
- var _GetDataSetDetailsCommand = class _GetDataSetDetailsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2242
+ var GetDataSetDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2147
2243
  return [
2148
2244
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2149
2245
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2150
2246
  ];
2151
2247
  }).s("AwsSupernovaControlPlaneService", "GetDataSetDetails", {}).n("M2Client", "GetDataSetDetailsCommand").f(void 0, void 0).ser(se_GetDataSetDetailsCommand).de(de_GetDataSetDetailsCommand).build() {
2248
+ static {
2249
+ __name(this, "GetDataSetDetailsCommand");
2250
+ }
2152
2251
  };
2153
- __name(_GetDataSetDetailsCommand, "GetDataSetDetailsCommand");
2154
- var GetDataSetDetailsCommand = _GetDataSetDetailsCommand;
2155
2252
 
2156
2253
  // src/commands/GetDataSetImportTaskCommand.ts
2157
2254
 
2158
2255
 
2159
2256
 
2160
- var _GetDataSetImportTaskCommand = class _GetDataSetImportTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2257
+ var GetDataSetImportTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2161
2258
  return [
2162
2259
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2163
2260
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2164
2261
  ];
2165
2262
  }).s("AwsSupernovaControlPlaneService", "GetDataSetImportTask", {}).n("M2Client", "GetDataSetImportTaskCommand").f(void 0, void 0).ser(se_GetDataSetImportTaskCommand).de(de_GetDataSetImportTaskCommand).build() {
2263
+ static {
2264
+ __name(this, "GetDataSetImportTaskCommand");
2265
+ }
2166
2266
  };
2167
- __name(_GetDataSetImportTaskCommand, "GetDataSetImportTaskCommand");
2168
- var GetDataSetImportTaskCommand = _GetDataSetImportTaskCommand;
2169
2267
 
2170
2268
  // src/commands/GetDeploymentCommand.ts
2171
2269
 
2172
2270
 
2173
2271
 
2174
- var _GetDeploymentCommand = class _GetDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2272
+ var GetDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2175
2273
  return [
2176
2274
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2177
2275
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2178
2276
  ];
2179
2277
  }).s("AwsSupernovaControlPlaneService", "GetDeployment", {}).n("M2Client", "GetDeploymentCommand").f(void 0, void 0).ser(se_GetDeploymentCommand).de(de_GetDeploymentCommand).build() {
2278
+ static {
2279
+ __name(this, "GetDeploymentCommand");
2280
+ }
2180
2281
  };
2181
- __name(_GetDeploymentCommand, "GetDeploymentCommand");
2182
- var GetDeploymentCommand = _GetDeploymentCommand;
2183
2282
 
2184
2283
  // src/commands/GetEnvironmentCommand.ts
2185
2284
 
2186
2285
 
2187
2286
 
2188
- var _GetEnvironmentCommand = class _GetEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2287
+ var GetEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2189
2288
  return [
2190
2289
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2191
2290
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2192
2291
  ];
2193
2292
  }).s("AwsSupernovaControlPlaneService", "GetEnvironment", {}).n("M2Client", "GetEnvironmentCommand").f(void 0, void 0).ser(se_GetEnvironmentCommand).de(de_GetEnvironmentCommand).build() {
2293
+ static {
2294
+ __name(this, "GetEnvironmentCommand");
2295
+ }
2194
2296
  };
2195
- __name(_GetEnvironmentCommand, "GetEnvironmentCommand");
2196
- var GetEnvironmentCommand = _GetEnvironmentCommand;
2197
2297
 
2198
2298
  // src/commands/GetSignedBluinsightsUrlCommand.ts
2199
2299
 
2200
2300
 
2201
2301
 
2202
- var _GetSignedBluinsightsUrlCommand = class _GetSignedBluinsightsUrlCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2302
+ var GetSignedBluinsightsUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2203
2303
  return [
2204
2304
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2205
2305
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2206
2306
  ];
2207
2307
  }).s("AwsSupernovaControlPlaneService", "GetSignedBluinsightsUrl", {}).n("M2Client", "GetSignedBluinsightsUrlCommand").f(void 0, void 0).ser(se_GetSignedBluinsightsUrlCommand).de(de_GetSignedBluinsightsUrlCommand).build() {
2308
+ static {
2309
+ __name(this, "GetSignedBluinsightsUrlCommand");
2310
+ }
2208
2311
  };
2209
- __name(_GetSignedBluinsightsUrlCommand, "GetSignedBluinsightsUrlCommand");
2210
- var GetSignedBluinsightsUrlCommand = _GetSignedBluinsightsUrlCommand;
2211
2312
 
2212
2313
  // src/commands/ListApplicationsCommand.ts
2213
2314
 
2214
2315
 
2215
2316
 
2216
- var _ListApplicationsCommand = class _ListApplicationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2317
+ var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2217
2318
  return [
2218
2319
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2219
2320
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2220
2321
  ];
2221
2322
  }).s("AwsSupernovaControlPlaneService", "ListApplications", {}).n("M2Client", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
2323
+ static {
2324
+ __name(this, "ListApplicationsCommand");
2325
+ }
2222
2326
  };
2223
- __name(_ListApplicationsCommand, "ListApplicationsCommand");
2224
- var ListApplicationsCommand = _ListApplicationsCommand;
2225
2327
 
2226
2328
  // src/commands/ListApplicationVersionsCommand.ts
2227
2329
 
2228
2330
 
2229
2331
 
2230
- var _ListApplicationVersionsCommand = class _ListApplicationVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2332
+ var ListApplicationVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2231
2333
  return [
2232
2334
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2233
2335
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2234
2336
  ];
2235
2337
  }).s("AwsSupernovaControlPlaneService", "ListApplicationVersions", {}).n("M2Client", "ListApplicationVersionsCommand").f(void 0, void 0).ser(se_ListApplicationVersionsCommand).de(de_ListApplicationVersionsCommand).build() {
2338
+ static {
2339
+ __name(this, "ListApplicationVersionsCommand");
2340
+ }
2236
2341
  };
2237
- __name(_ListApplicationVersionsCommand, "ListApplicationVersionsCommand");
2238
- var ListApplicationVersionsCommand = _ListApplicationVersionsCommand;
2239
2342
 
2240
2343
  // src/commands/ListBatchJobDefinitionsCommand.ts
2241
2344
 
2242
2345
 
2243
2346
 
2244
- var _ListBatchJobDefinitionsCommand = class _ListBatchJobDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2347
+ var ListBatchJobDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2245
2348
  return [
2246
2349
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2247
2350
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2248
2351
  ];
2249
2352
  }).s("AwsSupernovaControlPlaneService", "ListBatchJobDefinitions", {}).n("M2Client", "ListBatchJobDefinitionsCommand").f(void 0, void 0).ser(se_ListBatchJobDefinitionsCommand).de(de_ListBatchJobDefinitionsCommand).build() {
2353
+ static {
2354
+ __name(this, "ListBatchJobDefinitionsCommand");
2355
+ }
2250
2356
  };
2251
- __name(_ListBatchJobDefinitionsCommand, "ListBatchJobDefinitionsCommand");
2252
- var ListBatchJobDefinitionsCommand = _ListBatchJobDefinitionsCommand;
2253
2357
 
2254
2358
  // src/commands/ListBatchJobExecutionsCommand.ts
2255
2359
 
2256
2360
 
2257
2361
 
2258
- var _ListBatchJobExecutionsCommand = class _ListBatchJobExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2362
+ var ListBatchJobExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2259
2363
  return [
2260
2364
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2261
2365
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2262
2366
  ];
2263
2367
  }).s("AwsSupernovaControlPlaneService", "ListBatchJobExecutions", {}).n("M2Client", "ListBatchJobExecutionsCommand").f(void 0, void 0).ser(se_ListBatchJobExecutionsCommand).de(de_ListBatchJobExecutionsCommand).build() {
2368
+ static {
2369
+ __name(this, "ListBatchJobExecutionsCommand");
2370
+ }
2264
2371
  };
2265
- __name(_ListBatchJobExecutionsCommand, "ListBatchJobExecutionsCommand");
2266
- var ListBatchJobExecutionsCommand = _ListBatchJobExecutionsCommand;
2267
2372
 
2268
2373
  // src/commands/ListBatchJobRestartPointsCommand.ts
2269
2374
 
2270
2375
 
2271
2376
 
2272
- var _ListBatchJobRestartPointsCommand = class _ListBatchJobRestartPointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2377
+ var ListBatchJobRestartPointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2273
2378
  return [
2274
2379
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2275
2380
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2276
2381
  ];
2277
2382
  }).s("AwsSupernovaControlPlaneService", "ListBatchJobRestartPoints", {}).n("M2Client", "ListBatchJobRestartPointsCommand").f(void 0, void 0).ser(se_ListBatchJobRestartPointsCommand).de(de_ListBatchJobRestartPointsCommand).build() {
2383
+ static {
2384
+ __name(this, "ListBatchJobRestartPointsCommand");
2385
+ }
2278
2386
  };
2279
- __name(_ListBatchJobRestartPointsCommand, "ListBatchJobRestartPointsCommand");
2280
- var ListBatchJobRestartPointsCommand = _ListBatchJobRestartPointsCommand;
2281
2387
 
2282
2388
  // src/commands/ListDataSetImportHistoryCommand.ts
2283
2389
 
2284
2390
 
2285
2391
 
2286
- var _ListDataSetImportHistoryCommand = class _ListDataSetImportHistoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2392
+ var ListDataSetImportHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2287
2393
  return [
2288
2394
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2289
2395
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2290
2396
  ];
2291
2397
  }).s("AwsSupernovaControlPlaneService", "ListDataSetImportHistory", {}).n("M2Client", "ListDataSetImportHistoryCommand").f(void 0, void 0).ser(se_ListDataSetImportHistoryCommand).de(de_ListDataSetImportHistoryCommand).build() {
2398
+ static {
2399
+ __name(this, "ListDataSetImportHistoryCommand");
2400
+ }
2292
2401
  };
2293
- __name(_ListDataSetImportHistoryCommand, "ListDataSetImportHistoryCommand");
2294
- var ListDataSetImportHistoryCommand = _ListDataSetImportHistoryCommand;
2295
2402
 
2296
2403
  // src/commands/ListDataSetsCommand.ts
2297
2404
 
2298
2405
 
2299
2406
 
2300
- var _ListDataSetsCommand = class _ListDataSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2407
+ var ListDataSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2301
2408
  return [
2302
2409
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2303
2410
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2304
2411
  ];
2305
2412
  }).s("AwsSupernovaControlPlaneService", "ListDataSets", {}).n("M2Client", "ListDataSetsCommand").f(void 0, void 0).ser(se_ListDataSetsCommand).de(de_ListDataSetsCommand).build() {
2413
+ static {
2414
+ __name(this, "ListDataSetsCommand");
2415
+ }
2306
2416
  };
2307
- __name(_ListDataSetsCommand, "ListDataSetsCommand");
2308
- var ListDataSetsCommand = _ListDataSetsCommand;
2309
2417
 
2310
2418
  // src/commands/ListDeploymentsCommand.ts
2311
2419
 
2312
2420
 
2313
2421
 
2314
- var _ListDeploymentsCommand = class _ListDeploymentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2422
+ var ListDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2315
2423
  return [
2316
2424
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2317
2425
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2318
2426
  ];
2319
2427
  }).s("AwsSupernovaControlPlaneService", "ListDeployments", {}).n("M2Client", "ListDeploymentsCommand").f(void 0, void 0).ser(se_ListDeploymentsCommand).de(de_ListDeploymentsCommand).build() {
2428
+ static {
2429
+ __name(this, "ListDeploymentsCommand");
2430
+ }
2320
2431
  };
2321
- __name(_ListDeploymentsCommand, "ListDeploymentsCommand");
2322
- var ListDeploymentsCommand = _ListDeploymentsCommand;
2323
2432
 
2324
2433
  // src/commands/ListEngineVersionsCommand.ts
2325
2434
 
2326
2435
 
2327
2436
 
2328
- var _ListEngineVersionsCommand = class _ListEngineVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2437
+ var ListEngineVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2329
2438
  return [
2330
2439
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2331
2440
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2332
2441
  ];
2333
2442
  }).s("AwsSupernovaControlPlaneService", "ListEngineVersions", {}).n("M2Client", "ListEngineVersionsCommand").f(void 0, void 0).ser(se_ListEngineVersionsCommand).de(de_ListEngineVersionsCommand).build() {
2443
+ static {
2444
+ __name(this, "ListEngineVersionsCommand");
2445
+ }
2334
2446
  };
2335
- __name(_ListEngineVersionsCommand, "ListEngineVersionsCommand");
2336
- var ListEngineVersionsCommand = _ListEngineVersionsCommand;
2337
2447
 
2338
2448
  // src/commands/ListEnvironmentsCommand.ts
2339
2449
 
2340
2450
 
2341
2451
 
2342
- var _ListEnvironmentsCommand = class _ListEnvironmentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2452
+ var ListEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2343
2453
  return [
2344
2454
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2345
2455
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2346
2456
  ];
2347
2457
  }).s("AwsSupernovaControlPlaneService", "ListEnvironments", {}).n("M2Client", "ListEnvironmentsCommand").f(void 0, void 0).ser(se_ListEnvironmentsCommand).de(de_ListEnvironmentsCommand).build() {
2458
+ static {
2459
+ __name(this, "ListEnvironmentsCommand");
2460
+ }
2348
2461
  };
2349
- __name(_ListEnvironmentsCommand, "ListEnvironmentsCommand");
2350
- var ListEnvironmentsCommand = _ListEnvironmentsCommand;
2351
2462
 
2352
2463
  // src/commands/ListTagsForResourceCommand.ts
2353
2464
 
2354
2465
 
2355
2466
 
2356
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2467
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2357
2468
  return [
2358
2469
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2359
2470
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2360
2471
  ];
2361
2472
  }).s("AwsSupernovaControlPlaneService", "ListTagsForResource", {}).n("M2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2473
+ static {
2474
+ __name(this, "ListTagsForResourceCommand");
2475
+ }
2362
2476
  };
2363
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2364
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2365
2477
 
2366
2478
  // src/commands/StartApplicationCommand.ts
2367
2479
 
2368
2480
 
2369
2481
 
2370
- var _StartApplicationCommand = class _StartApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2482
+ var StartApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2371
2483
  return [
2372
2484
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2373
2485
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2374
2486
  ];
2375
2487
  }).s("AwsSupernovaControlPlaneService", "StartApplication", {}).n("M2Client", "StartApplicationCommand").f(void 0, void 0).ser(se_StartApplicationCommand).de(de_StartApplicationCommand).build() {
2488
+ static {
2489
+ __name(this, "StartApplicationCommand");
2490
+ }
2376
2491
  };
2377
- __name(_StartApplicationCommand, "StartApplicationCommand");
2378
- var StartApplicationCommand = _StartApplicationCommand;
2379
2492
 
2380
2493
  // src/commands/StartBatchJobCommand.ts
2381
2494
 
2382
2495
 
2383
2496
 
2384
- var _StartBatchJobCommand = class _StartBatchJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2497
+ var StartBatchJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2385
2498
  return [
2386
2499
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2387
2500
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2388
2501
  ];
2389
2502
  }).s("AwsSupernovaControlPlaneService", "StartBatchJob", {}).n("M2Client", "StartBatchJobCommand").f(void 0, void 0).ser(se_StartBatchJobCommand).de(de_StartBatchJobCommand).build() {
2503
+ static {
2504
+ __name(this, "StartBatchJobCommand");
2505
+ }
2390
2506
  };
2391
- __name(_StartBatchJobCommand, "StartBatchJobCommand");
2392
- var StartBatchJobCommand = _StartBatchJobCommand;
2393
2507
 
2394
2508
  // src/commands/StopApplicationCommand.ts
2395
2509
 
2396
2510
 
2397
2511
 
2398
- var _StopApplicationCommand = class _StopApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2512
+ var StopApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2399
2513
  return [
2400
2514
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2401
2515
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2402
2516
  ];
2403
2517
  }).s("AwsSupernovaControlPlaneService", "StopApplication", {}).n("M2Client", "StopApplicationCommand").f(void 0, void 0).ser(se_StopApplicationCommand).de(de_StopApplicationCommand).build() {
2518
+ static {
2519
+ __name(this, "StopApplicationCommand");
2520
+ }
2404
2521
  };
2405
- __name(_StopApplicationCommand, "StopApplicationCommand");
2406
- var StopApplicationCommand = _StopApplicationCommand;
2407
2522
 
2408
2523
  // src/commands/TagResourceCommand.ts
2409
2524
 
2410
2525
 
2411
2526
 
2412
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2527
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2413
2528
  return [
2414
2529
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2415
2530
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2416
2531
  ];
2417
2532
  }).s("AwsSupernovaControlPlaneService", "TagResource", {}).n("M2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
2533
+ static {
2534
+ __name(this, "TagResourceCommand");
2535
+ }
2418
2536
  };
2419
- __name(_TagResourceCommand, "TagResourceCommand");
2420
- var TagResourceCommand = _TagResourceCommand;
2421
2537
 
2422
2538
  // src/commands/UntagResourceCommand.ts
2423
2539
 
2424
2540
 
2425
2541
 
2426
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2542
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2427
2543
  return [
2428
2544
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2429
2545
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2430
2546
  ];
2431
2547
  }).s("AwsSupernovaControlPlaneService", "UntagResource", {}).n("M2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
2548
+ static {
2549
+ __name(this, "UntagResourceCommand");
2550
+ }
2432
2551
  };
2433
- __name(_UntagResourceCommand, "UntagResourceCommand");
2434
- var UntagResourceCommand = _UntagResourceCommand;
2435
2552
 
2436
2553
  // src/commands/UpdateApplicationCommand.ts
2437
2554
 
2438
2555
 
2439
2556
 
2440
- var _UpdateApplicationCommand = class _UpdateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2557
+ var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2441
2558
  return [
2442
2559
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2443
2560
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2444
2561
  ];
2445
2562
  }).s("AwsSupernovaControlPlaneService", "UpdateApplication", {}).n("M2Client", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
2563
+ static {
2564
+ __name(this, "UpdateApplicationCommand");
2565
+ }
2446
2566
  };
2447
- __name(_UpdateApplicationCommand, "UpdateApplicationCommand");
2448
- var UpdateApplicationCommand = _UpdateApplicationCommand;
2449
2567
 
2450
2568
  // src/commands/UpdateEnvironmentCommand.ts
2451
2569
 
2452
2570
 
2453
2571
 
2454
- var _UpdateEnvironmentCommand = class _UpdateEnvironmentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2572
+ var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2455
2573
  return [
2456
2574
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2457
2575
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2458
2576
  ];
2459
2577
  }).s("AwsSupernovaControlPlaneService", "UpdateEnvironment", {}).n("M2Client", "UpdateEnvironmentCommand").f(void 0, void 0).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
2578
+ static {
2579
+ __name(this, "UpdateEnvironmentCommand");
2580
+ }
2460
2581
  };
2461
- __name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
2462
- var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
2463
2582
 
2464
2583
  // src/M2.ts
2465
2584
  var commands = {
@@ -2498,10 +2617,11 @@ var commands = {
2498
2617
  UpdateApplicationCommand,
2499
2618
  UpdateEnvironmentCommand
2500
2619
  };
2501
- var _M2 = class _M2 extends M2Client {
2620
+ var M2 = class extends M2Client {
2621
+ static {
2622
+ __name(this, "M2");
2623
+ }
2502
2624
  };
2503
- __name(_M2, "M2");
2504
- var M2 = _M2;
2505
2625
  (0, import_smithy_client.createAggregatedClient)(commands, M2);
2506
2626
 
2507
2627
  // src/pagination/ListApplicationVersionsPaginator.ts