@aws-sdk/client-license-manager 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
@@ -210,7 +210,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
210
210
  }, "resolveRuntimeExtensions");
211
211
 
212
212
  // src/LicenseManagerClient.ts
213
- var _LicenseManagerClient = class _LicenseManagerClient extends import_smithy_client.Client {
213
+ var LicenseManagerClient = class extends import_smithy_client.Client {
214
+ static {
215
+ __name(this, "LicenseManagerClient");
216
+ }
217
+ /**
218
+ * The resolved configuration of LicenseManagerClient class. This is resolved and normalized from the {@link LicenseManagerClientConfig | constructor configuration interface}.
219
+ */
220
+ config;
214
221
  constructor(...[configuration]) {
215
222
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
216
223
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -220,7 +227,7 @@ var _LicenseManagerClient = class _LicenseManagerClient extends import_smithy_cl
220
227
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
221
228
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
222
229
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
223
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
230
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
224
231
  super(_config_8);
225
232
  this.config = _config_8;
226
233
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -248,8 +255,6 @@ var _LicenseManagerClient = class _LicenseManagerClient extends import_smithy_cl
248
255
  super.destroy();
249
256
  }
250
257
  };
251
- __name(_LicenseManagerClient, "LicenseManagerClient");
252
- var LicenseManagerClient = _LicenseManagerClient;
253
258
 
254
259
  // src/LicenseManager.ts
255
260
 
@@ -266,7 +271,10 @@ var import_core2 = require("@aws-sdk/core");
266
271
 
267
272
  // src/models/LicenseManagerServiceException.ts
268
273
 
269
- var _LicenseManagerServiceException = class _LicenseManagerServiceException extends import_smithy_client.ServiceException {
274
+ var LicenseManagerServiceException = class _LicenseManagerServiceException extends import_smithy_client.ServiceException {
275
+ static {
276
+ __name(this, "LicenseManagerServiceException");
277
+ }
270
278
  /**
271
279
  * @internal
272
280
  */
@@ -275,8 +283,6 @@ var _LicenseManagerServiceException = class _LicenseManagerServiceException exte
275
283
  Object.setPrototypeOf(this, _LicenseManagerServiceException.prototype);
276
284
  }
277
285
  };
278
- __name(_LicenseManagerServiceException, "LicenseManagerServiceException");
279
- var LicenseManagerServiceException = _LicenseManagerServiceException;
280
286
 
281
287
  // src/models/models_0.ts
282
288
  var GrantStatus = {
@@ -290,7 +296,13 @@ var GrantStatus = {
290
296
  REJECTED: "REJECTED",
291
297
  WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED"
292
298
  };
293
- var _AccessDeniedException = class _AccessDeniedException extends LicenseManagerServiceException {
299
+ var AccessDeniedException = class _AccessDeniedException extends LicenseManagerServiceException {
300
+ static {
301
+ __name(this, "AccessDeniedException");
302
+ }
303
+ name = "AccessDeniedException";
304
+ $fault = "client";
305
+ Message;
294
306
  /**
295
307
  * @internal
296
308
  */
@@ -300,15 +312,17 @@ var _AccessDeniedException = class _AccessDeniedException extends LicenseManager
300
312
  $fault: "client",
301
313
  ...opts
302
314
  });
303
- this.name = "AccessDeniedException";
304
- this.$fault = "client";
305
315
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
306
316
  this.Message = opts.Message;
307
317
  }
308
318
  };
309
- __name(_AccessDeniedException, "AccessDeniedException");
310
- var AccessDeniedException = _AccessDeniedException;
311
- var _AuthorizationException = class _AuthorizationException extends LicenseManagerServiceException {
319
+ var AuthorizationException = class _AuthorizationException extends LicenseManagerServiceException {
320
+ static {
321
+ __name(this, "AuthorizationException");
322
+ }
323
+ name = "AuthorizationException";
324
+ $fault = "client";
325
+ Message;
312
326
  /**
313
327
  * @internal
314
328
  */
@@ -318,15 +332,17 @@ var _AuthorizationException = class _AuthorizationException extends LicenseManag
318
332
  $fault: "client",
319
333
  ...opts
320
334
  });
321
- this.name = "AuthorizationException";
322
- this.$fault = "client";
323
335
  Object.setPrototypeOf(this, _AuthorizationException.prototype);
324
336
  this.Message = opts.Message;
325
337
  }
326
338
  };
327
- __name(_AuthorizationException, "AuthorizationException");
328
- var AuthorizationException = _AuthorizationException;
329
- var _InvalidParameterValueException = class _InvalidParameterValueException extends LicenseManagerServiceException {
339
+ var InvalidParameterValueException = class _InvalidParameterValueException extends LicenseManagerServiceException {
340
+ static {
341
+ __name(this, "InvalidParameterValueException");
342
+ }
343
+ name = "InvalidParameterValueException";
344
+ $fault = "client";
345
+ Message;
330
346
  /**
331
347
  * @internal
332
348
  */
@@ -336,15 +352,17 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
336
352
  $fault: "client",
337
353
  ...opts
338
354
  });
339
- this.name = "InvalidParameterValueException";
340
- this.$fault = "client";
341
355
  Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
342
356
  this.Message = opts.Message;
343
357
  }
344
358
  };
345
- __name(_InvalidParameterValueException, "InvalidParameterValueException");
346
- var InvalidParameterValueException = _InvalidParameterValueException;
347
- var _RateLimitExceededException = class _RateLimitExceededException extends LicenseManagerServiceException {
359
+ var RateLimitExceededException = class _RateLimitExceededException extends LicenseManagerServiceException {
360
+ static {
361
+ __name(this, "RateLimitExceededException");
362
+ }
363
+ name = "RateLimitExceededException";
364
+ $fault = "client";
365
+ Message;
348
366
  /**
349
367
  * @internal
350
368
  */
@@ -354,15 +372,17 @@ var _RateLimitExceededException = class _RateLimitExceededException extends Lice
354
372
  $fault: "client",
355
373
  ...opts
356
374
  });
357
- this.name = "RateLimitExceededException";
358
- this.$fault = "client";
359
375
  Object.setPrototypeOf(this, _RateLimitExceededException.prototype);
360
376
  this.Message = opts.Message;
361
377
  }
362
378
  };
363
- __name(_RateLimitExceededException, "RateLimitExceededException");
364
- var RateLimitExceededException = _RateLimitExceededException;
365
- var _ResourceLimitExceededException = class _ResourceLimitExceededException extends LicenseManagerServiceException {
379
+ var ResourceLimitExceededException = class _ResourceLimitExceededException extends LicenseManagerServiceException {
380
+ static {
381
+ __name(this, "ResourceLimitExceededException");
382
+ }
383
+ name = "ResourceLimitExceededException";
384
+ $fault = "client";
385
+ Message;
366
386
  /**
367
387
  * @internal
368
388
  */
@@ -372,15 +392,17 @@ var _ResourceLimitExceededException = class _ResourceLimitExceededException exte
372
392
  $fault: "client",
373
393
  ...opts
374
394
  });
375
- this.name = "ResourceLimitExceededException";
376
- this.$fault = "client";
377
395
  Object.setPrototypeOf(this, _ResourceLimitExceededException.prototype);
378
396
  this.Message = opts.Message;
379
397
  }
380
398
  };
381
- __name(_ResourceLimitExceededException, "ResourceLimitExceededException");
382
- var ResourceLimitExceededException = _ResourceLimitExceededException;
383
- var _ServerInternalException = class _ServerInternalException extends LicenseManagerServiceException {
399
+ var ServerInternalException = class _ServerInternalException extends LicenseManagerServiceException {
400
+ static {
401
+ __name(this, "ServerInternalException");
402
+ }
403
+ name = "ServerInternalException";
404
+ $fault = "server";
405
+ Message;
384
406
  /**
385
407
  * @internal
386
408
  */
@@ -390,15 +412,17 @@ var _ServerInternalException = class _ServerInternalException extends LicenseMan
390
412
  $fault: "server",
391
413
  ...opts
392
414
  });
393
- this.name = "ServerInternalException";
394
- this.$fault = "server";
395
415
  Object.setPrototypeOf(this, _ServerInternalException.prototype);
396
416
  this.Message = opts.Message;
397
417
  }
398
418
  };
399
- __name(_ServerInternalException, "ServerInternalException");
400
- var ServerInternalException = _ServerInternalException;
401
- var _ValidationException = class _ValidationException extends LicenseManagerServiceException {
419
+ var ValidationException = class _ValidationException extends LicenseManagerServiceException {
420
+ static {
421
+ __name(this, "ValidationException");
422
+ }
423
+ name = "ValidationException";
424
+ $fault = "client";
425
+ Message;
402
426
  /**
403
427
  * @internal
404
428
  */
@@ -408,14 +432,10 @@ var _ValidationException = class _ValidationException extends LicenseManagerServ
408
432
  $fault: "client",
409
433
  ...opts
410
434
  });
411
- this.name = "ValidationException";
412
- this.$fault = "client";
413
435
  Object.setPrototypeOf(this, _ValidationException.prototype);
414
436
  this.Message = opts.Message;
415
437
  }
416
438
  };
417
- __name(_ValidationException, "ValidationException");
418
- var ValidationException = _ValidationException;
419
439
  var ActivationOverrideBehavior = {
420
440
  ALL_GRANTS_PERMITTED_BY_ISSUER: "ALL_GRANTS_PERMITTED_BY_ISSUER",
421
441
  DISTRIBUTED_GRANTS_ONLY: "DISTRIBUTED_GRANTS_ONLY"
@@ -429,7 +449,13 @@ var AllowedOperation = {
429
449
  EXTEND_CONSUMPTION_LICENSE: "ExtendConsumptionLicense",
430
450
  LIST_PURCHASED_LICENSES: "ListPurchasedLicenses"
431
451
  };
432
- var _ConflictException = class _ConflictException extends LicenseManagerServiceException {
452
+ var ConflictException = class _ConflictException extends LicenseManagerServiceException {
453
+ static {
454
+ __name(this, "ConflictException");
455
+ }
456
+ name = "ConflictException";
457
+ $fault = "client";
458
+ Message;
433
459
  /**
434
460
  * @internal
435
461
  */
@@ -439,15 +465,17 @@ var _ConflictException = class _ConflictException extends LicenseManagerServiceE
439
465
  $fault: "client",
440
466
  ...opts
441
467
  });
442
- this.name = "ConflictException";
443
- this.$fault = "client";
444
468
  Object.setPrototypeOf(this, _ConflictException.prototype);
445
469
  this.Message = opts.Message;
446
470
  }
447
471
  };
448
- __name(_ConflictException, "ConflictException");
449
- var ConflictException = _ConflictException;
450
- var _ResourceNotFoundException = class _ResourceNotFoundException extends LicenseManagerServiceException {
472
+ var ResourceNotFoundException = class _ResourceNotFoundException extends LicenseManagerServiceException {
473
+ static {
474
+ __name(this, "ResourceNotFoundException");
475
+ }
476
+ name = "ResourceNotFoundException";
477
+ $fault = "client";
478
+ Message;
451
479
  /**
452
480
  * @internal
453
481
  */
@@ -457,14 +485,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Licens
457
485
  $fault: "client",
458
486
  ...opts
459
487
  });
460
- this.name = "ResourceNotFoundException";
461
- this.$fault = "client";
462
488
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
463
489
  this.Message = opts.Message;
464
490
  }
465
491
  };
466
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
467
- var ResourceNotFoundException = _ResourceNotFoundException;
468
492
  var DigitalSignatureMethod = {
469
493
  JWT_PS384: "JWT_PS384"
470
494
  };
@@ -497,7 +521,13 @@ var EntitlementDataUnit = {
497
521
  TERABYTES: "Terabytes",
498
522
  TERABYTES_PER_SECOND: "Terabytes/Second"
499
523
  };
500
- var _EntitlementNotAllowedException = class _EntitlementNotAllowedException extends LicenseManagerServiceException {
524
+ var EntitlementNotAllowedException = class _EntitlementNotAllowedException extends LicenseManagerServiceException {
525
+ static {
526
+ __name(this, "EntitlementNotAllowedException");
527
+ }
528
+ name = "EntitlementNotAllowedException";
529
+ $fault = "client";
530
+ Message;
501
531
  /**
502
532
  * @internal
503
533
  */
@@ -507,15 +537,17 @@ var _EntitlementNotAllowedException = class _EntitlementNotAllowedException exte
507
537
  $fault: "client",
508
538
  ...opts
509
539
  });
510
- this.name = "EntitlementNotAllowedException";
511
- this.$fault = "client";
512
540
  Object.setPrototypeOf(this, _EntitlementNotAllowedException.prototype);
513
541
  this.Message = opts.Message;
514
542
  }
515
543
  };
516
- __name(_EntitlementNotAllowedException, "EntitlementNotAllowedException");
517
- var EntitlementNotAllowedException = _EntitlementNotAllowedException;
518
- var _NoEntitlementsAllowedException = class _NoEntitlementsAllowedException extends LicenseManagerServiceException {
544
+ var NoEntitlementsAllowedException = class _NoEntitlementsAllowedException extends LicenseManagerServiceException {
545
+ static {
546
+ __name(this, "NoEntitlementsAllowedException");
547
+ }
548
+ name = "NoEntitlementsAllowedException";
549
+ $fault = "client";
550
+ Message;
519
551
  /**
520
552
  * @internal
521
553
  */
@@ -525,15 +557,18 @@ var _NoEntitlementsAllowedException = class _NoEntitlementsAllowedException exte
525
557
  $fault: "client",
526
558
  ...opts
527
559
  });
528
- this.name = "NoEntitlementsAllowedException";
529
- this.$fault = "client";
530
560
  Object.setPrototypeOf(this, _NoEntitlementsAllowedException.prototype);
531
561
  this.Message = opts.Message;
532
562
  }
533
563
  };
534
- __name(_NoEntitlementsAllowedException, "NoEntitlementsAllowedException");
535
- var NoEntitlementsAllowedException = _NoEntitlementsAllowedException;
536
- var _RedirectException = class _RedirectException extends LicenseManagerServiceException {
564
+ var RedirectException = class _RedirectException extends LicenseManagerServiceException {
565
+ static {
566
+ __name(this, "RedirectException");
567
+ }
568
+ name = "RedirectException";
569
+ $fault = "client";
570
+ Location;
571
+ Message;
537
572
  /**
538
573
  * @internal
539
574
  */
@@ -543,16 +578,18 @@ var _RedirectException = class _RedirectException extends LicenseManagerServiceE
543
578
  $fault: "client",
544
579
  ...opts
545
580
  });
546
- this.name = "RedirectException";
547
- this.$fault = "client";
548
581
  Object.setPrototypeOf(this, _RedirectException.prototype);
549
582
  this.Location = opts.Location;
550
583
  this.Message = opts.Message;
551
584
  }
552
585
  };
553
- __name(_RedirectException, "RedirectException");
554
- var RedirectException = _RedirectException;
555
- var _UnsupportedDigitalSignatureMethodException = class _UnsupportedDigitalSignatureMethodException extends LicenseManagerServiceException {
586
+ var UnsupportedDigitalSignatureMethodException = class _UnsupportedDigitalSignatureMethodException extends LicenseManagerServiceException {
587
+ static {
588
+ __name(this, "UnsupportedDigitalSignatureMethodException");
589
+ }
590
+ name = "UnsupportedDigitalSignatureMethodException";
591
+ $fault = "client";
592
+ Message;
556
593
  /**
557
594
  * @internal
558
595
  */
@@ -562,14 +599,10 @@ var _UnsupportedDigitalSignatureMethodException = class _UnsupportedDigitalSigna
562
599
  $fault: "client",
563
600
  ...opts
564
601
  });
565
- this.name = "UnsupportedDigitalSignatureMethodException";
566
- this.$fault = "client";
567
602
  Object.setPrototypeOf(this, _UnsupportedDigitalSignatureMethodException.prototype);
568
603
  this.Message = opts.Message;
569
604
  }
570
605
  };
571
- __name(_UnsupportedDigitalSignatureMethodException, "UnsupportedDigitalSignatureMethodException");
572
- var UnsupportedDigitalSignatureMethodException = _UnsupportedDigitalSignatureMethodException;
573
606
  var CheckoutType = {
574
607
  PERPETUAL: "PERPETUAL",
575
608
  PROVISIONAL: "PROVISIONAL"
@@ -651,7 +684,13 @@ var LicenseConversionTaskStatus = {
651
684
  IN_PROGRESS: "IN_PROGRESS",
652
685
  SUCCEEDED: "SUCCEEDED"
653
686
  };
654
- var _FilterLimitExceededException = class _FilterLimitExceededException extends LicenseManagerServiceException {
687
+ var FilterLimitExceededException = class _FilterLimitExceededException extends LicenseManagerServiceException {
688
+ static {
689
+ __name(this, "FilterLimitExceededException");
690
+ }
691
+ name = "FilterLimitExceededException";
692
+ $fault = "client";
693
+ Message;
655
694
  /**
656
695
  * @internal
657
696
  */
@@ -661,14 +700,10 @@ var _FilterLimitExceededException = class _FilterLimitExceededException extends
661
700
  $fault: "client",
662
701
  ...opts
663
702
  });
664
- this.name = "FilterLimitExceededException";
665
- this.$fault = "client";
666
703
  Object.setPrototypeOf(this, _FilterLimitExceededException.prototype);
667
704
  this.Message = opts.Message;
668
705
  }
669
706
  };
670
- __name(_FilterLimitExceededException, "FilterLimitExceededException");
671
- var FilterLimitExceededException = _FilterLimitExceededException;
672
707
  var ReceivedStatus = {
673
708
  ACTIVE: "ACTIVE",
674
709
  DELETED: "DELETED",
@@ -679,7 +714,14 @@ var ReceivedStatus = {
679
714
  REJECTED: "REJECTED",
680
715
  WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED"
681
716
  };
682
- var _FailedDependencyException = class _FailedDependencyException extends LicenseManagerServiceException {
717
+ var FailedDependencyException = class _FailedDependencyException extends LicenseManagerServiceException {
718
+ static {
719
+ __name(this, "FailedDependencyException");
720
+ }
721
+ name = "FailedDependencyException";
722
+ $fault = "client";
723
+ Message;
724
+ ErrorCode;
683
725
  /**
684
726
  * @internal
685
727
  */
@@ -689,15 +731,11 @@ var _FailedDependencyException = class _FailedDependencyException extends Licens
689
731
  $fault: "client",
690
732
  ...opts
691
733
  });
692
- this.name = "FailedDependencyException";
693
- this.$fault = "client";
694
734
  Object.setPrototypeOf(this, _FailedDependencyException.prototype);
695
735
  this.Message = opts.Message;
696
736
  this.ErrorCode = opts.ErrorCode;
697
737
  }
698
738
  };
699
- __name(_FailedDependencyException, "FailedDependencyException");
700
- var FailedDependencyException = _FailedDependencyException;
701
739
  var InventoryFilterCondition = {
702
740
  BEGINS_WITH: "BEGINS_WITH",
703
741
  CONTAINS: "CONTAINS",
@@ -708,7 +746,13 @@ var LicenseConfigurationStatus = {
708
746
  AVAILABLE: "AVAILABLE",
709
747
  DISABLED: "DISABLED"
710
748
  };
711
- var _InvalidResourceStateException = class _InvalidResourceStateException extends LicenseManagerServiceException {
749
+ var InvalidResourceStateException = class _InvalidResourceStateException extends LicenseManagerServiceException {
750
+ static {
751
+ __name(this, "InvalidResourceStateException");
752
+ }
753
+ name = "InvalidResourceStateException";
754
+ $fault = "client";
755
+ Message;
712
756
  /**
713
757
  * @internal
714
758
  */
@@ -718,15 +762,17 @@ var _InvalidResourceStateException = class _InvalidResourceStateException extend
718
762
  $fault: "client",
719
763
  ...opts
720
764
  });
721
- this.name = "InvalidResourceStateException";
722
- this.$fault = "client";
723
765
  Object.setPrototypeOf(this, _InvalidResourceStateException.prototype);
724
766
  this.Message = opts.Message;
725
767
  }
726
768
  };
727
- __name(_InvalidResourceStateException, "InvalidResourceStateException");
728
- var InvalidResourceStateException = _InvalidResourceStateException;
729
- var _LicenseUsageException = class _LicenseUsageException extends LicenseManagerServiceException {
769
+ var LicenseUsageException = class _LicenseUsageException extends LicenseManagerServiceException {
770
+ static {
771
+ __name(this, "LicenseUsageException");
772
+ }
773
+ name = "LicenseUsageException";
774
+ $fault = "client";
775
+ Message;
730
776
  /**
731
777
  * @internal
732
778
  */
@@ -736,14 +782,10 @@ var _LicenseUsageException = class _LicenseUsageException extends LicenseManager
736
782
  $fault: "client",
737
783
  ...opts
738
784
  });
739
- this.name = "LicenseUsageException";
740
- this.$fault = "client";
741
785
  Object.setPrototypeOf(this, _LicenseUsageException.prototype);
742
786
  this.Message = opts.Message;
743
787
  }
744
788
  };
745
- __name(_LicenseUsageException, "LicenseUsageException");
746
- var LicenseUsageException = _LicenseUsageException;
747
789
 
748
790
  // src/protocols/Aws_json1_1.ts
749
791
  var se_AcceptGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
@@ -2113,701 +2155,751 @@ function sharedHeaders(operation) {
2113
2155
  __name(sharedHeaders, "sharedHeaders");
2114
2156
 
2115
2157
  // src/commands/AcceptGrantCommand.ts
2116
- var _AcceptGrantCommand = class _AcceptGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2158
+ var AcceptGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2117
2159
  return [
2118
2160
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2119
2161
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2120
2162
  ];
2121
2163
  }).s("AWSLicenseManager", "AcceptGrant", {}).n("LicenseManagerClient", "AcceptGrantCommand").f(void 0, void 0).ser(se_AcceptGrantCommand).de(de_AcceptGrantCommand).build() {
2164
+ static {
2165
+ __name(this, "AcceptGrantCommand");
2166
+ }
2122
2167
  };
2123
- __name(_AcceptGrantCommand, "AcceptGrantCommand");
2124
- var AcceptGrantCommand = _AcceptGrantCommand;
2125
2168
 
2126
2169
  // src/commands/CheckInLicenseCommand.ts
2127
2170
 
2128
2171
 
2129
2172
 
2130
- var _CheckInLicenseCommand = class _CheckInLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2173
+ var CheckInLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2131
2174
  return [
2132
2175
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2133
2176
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2134
2177
  ];
2135
2178
  }).s("AWSLicenseManager", "CheckInLicense", {}).n("LicenseManagerClient", "CheckInLicenseCommand").f(void 0, void 0).ser(se_CheckInLicenseCommand).de(de_CheckInLicenseCommand).build() {
2179
+ static {
2180
+ __name(this, "CheckInLicenseCommand");
2181
+ }
2136
2182
  };
2137
- __name(_CheckInLicenseCommand, "CheckInLicenseCommand");
2138
- var CheckInLicenseCommand = _CheckInLicenseCommand;
2139
2183
 
2140
2184
  // src/commands/CheckoutBorrowLicenseCommand.ts
2141
2185
 
2142
2186
 
2143
2187
 
2144
- var _CheckoutBorrowLicenseCommand = class _CheckoutBorrowLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2188
+ var CheckoutBorrowLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2145
2189
  return [
2146
2190
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2147
2191
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2148
2192
  ];
2149
2193
  }).s("AWSLicenseManager", "CheckoutBorrowLicense", {}).n("LicenseManagerClient", "CheckoutBorrowLicenseCommand").f(void 0, void 0).ser(se_CheckoutBorrowLicenseCommand).de(de_CheckoutBorrowLicenseCommand).build() {
2194
+ static {
2195
+ __name(this, "CheckoutBorrowLicenseCommand");
2196
+ }
2150
2197
  };
2151
- __name(_CheckoutBorrowLicenseCommand, "CheckoutBorrowLicenseCommand");
2152
- var CheckoutBorrowLicenseCommand = _CheckoutBorrowLicenseCommand;
2153
2198
 
2154
2199
  // src/commands/CheckoutLicenseCommand.ts
2155
2200
 
2156
2201
 
2157
2202
 
2158
- var _CheckoutLicenseCommand = class _CheckoutLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2203
+ var CheckoutLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2159
2204
  return [
2160
2205
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2161
2206
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2162
2207
  ];
2163
2208
  }).s("AWSLicenseManager", "CheckoutLicense", {}).n("LicenseManagerClient", "CheckoutLicenseCommand").f(void 0, void 0).ser(se_CheckoutLicenseCommand).de(de_CheckoutLicenseCommand).build() {
2209
+ static {
2210
+ __name(this, "CheckoutLicenseCommand");
2211
+ }
2164
2212
  };
2165
- __name(_CheckoutLicenseCommand, "CheckoutLicenseCommand");
2166
- var CheckoutLicenseCommand = _CheckoutLicenseCommand;
2167
2213
 
2168
2214
  // src/commands/CreateGrantCommand.ts
2169
2215
 
2170
2216
 
2171
2217
 
2172
- var _CreateGrantCommand = class _CreateGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2218
+ var CreateGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2173
2219
  return [
2174
2220
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2175
2221
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2176
2222
  ];
2177
2223
  }).s("AWSLicenseManager", "CreateGrant", {}).n("LicenseManagerClient", "CreateGrantCommand").f(void 0, void 0).ser(se_CreateGrantCommand).de(de_CreateGrantCommand).build() {
2224
+ static {
2225
+ __name(this, "CreateGrantCommand");
2226
+ }
2178
2227
  };
2179
- __name(_CreateGrantCommand, "CreateGrantCommand");
2180
- var CreateGrantCommand = _CreateGrantCommand;
2181
2228
 
2182
2229
  // src/commands/CreateGrantVersionCommand.ts
2183
2230
 
2184
2231
 
2185
2232
 
2186
- var _CreateGrantVersionCommand = class _CreateGrantVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2233
+ var CreateGrantVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2187
2234
  return [
2188
2235
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2189
2236
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2190
2237
  ];
2191
2238
  }).s("AWSLicenseManager", "CreateGrantVersion", {}).n("LicenseManagerClient", "CreateGrantVersionCommand").f(void 0, void 0).ser(se_CreateGrantVersionCommand).de(de_CreateGrantVersionCommand).build() {
2239
+ static {
2240
+ __name(this, "CreateGrantVersionCommand");
2241
+ }
2192
2242
  };
2193
- __name(_CreateGrantVersionCommand, "CreateGrantVersionCommand");
2194
- var CreateGrantVersionCommand = _CreateGrantVersionCommand;
2195
2243
 
2196
2244
  // src/commands/CreateLicenseCommand.ts
2197
2245
 
2198
2246
 
2199
2247
 
2200
- var _CreateLicenseCommand = class _CreateLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2248
+ var CreateLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2201
2249
  return [
2202
2250
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2203
2251
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2204
2252
  ];
2205
2253
  }).s("AWSLicenseManager", "CreateLicense", {}).n("LicenseManagerClient", "CreateLicenseCommand").f(void 0, void 0).ser(se_CreateLicenseCommand).de(de_CreateLicenseCommand).build() {
2254
+ static {
2255
+ __name(this, "CreateLicenseCommand");
2256
+ }
2206
2257
  };
2207
- __name(_CreateLicenseCommand, "CreateLicenseCommand");
2208
- var CreateLicenseCommand = _CreateLicenseCommand;
2209
2258
 
2210
2259
  // src/commands/CreateLicenseConfigurationCommand.ts
2211
2260
 
2212
2261
 
2213
2262
 
2214
- var _CreateLicenseConfigurationCommand = class _CreateLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2263
+ var CreateLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2215
2264
  return [
2216
2265
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2217
2266
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2218
2267
  ];
2219
2268
  }).s("AWSLicenseManager", "CreateLicenseConfiguration", {}).n("LicenseManagerClient", "CreateLicenseConfigurationCommand").f(void 0, void 0).ser(se_CreateLicenseConfigurationCommand).de(de_CreateLicenseConfigurationCommand).build() {
2269
+ static {
2270
+ __name(this, "CreateLicenseConfigurationCommand");
2271
+ }
2220
2272
  };
2221
- __name(_CreateLicenseConfigurationCommand, "CreateLicenseConfigurationCommand");
2222
- var CreateLicenseConfigurationCommand = _CreateLicenseConfigurationCommand;
2223
2273
 
2224
2274
  // src/commands/CreateLicenseConversionTaskForResourceCommand.ts
2225
2275
 
2226
2276
 
2227
2277
 
2228
- var _CreateLicenseConversionTaskForResourceCommand = class _CreateLicenseConversionTaskForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2278
+ var CreateLicenseConversionTaskForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2229
2279
  return [
2230
2280
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2231
2281
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2232
2282
  ];
2233
2283
  }).s("AWSLicenseManager", "CreateLicenseConversionTaskForResource", {}).n("LicenseManagerClient", "CreateLicenseConversionTaskForResourceCommand").f(void 0, void 0).ser(se_CreateLicenseConversionTaskForResourceCommand).de(de_CreateLicenseConversionTaskForResourceCommand).build() {
2284
+ static {
2285
+ __name(this, "CreateLicenseConversionTaskForResourceCommand");
2286
+ }
2234
2287
  };
2235
- __name(_CreateLicenseConversionTaskForResourceCommand, "CreateLicenseConversionTaskForResourceCommand");
2236
- var CreateLicenseConversionTaskForResourceCommand = _CreateLicenseConversionTaskForResourceCommand;
2237
2288
 
2238
2289
  // src/commands/CreateLicenseManagerReportGeneratorCommand.ts
2239
2290
 
2240
2291
 
2241
2292
 
2242
- var _CreateLicenseManagerReportGeneratorCommand = class _CreateLicenseManagerReportGeneratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2293
+ var CreateLicenseManagerReportGeneratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2243
2294
  return [
2244
2295
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2245
2296
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2246
2297
  ];
2247
2298
  }).s("AWSLicenseManager", "CreateLicenseManagerReportGenerator", {}).n("LicenseManagerClient", "CreateLicenseManagerReportGeneratorCommand").f(void 0, void 0).ser(se_CreateLicenseManagerReportGeneratorCommand).de(de_CreateLicenseManagerReportGeneratorCommand).build() {
2299
+ static {
2300
+ __name(this, "CreateLicenseManagerReportGeneratorCommand");
2301
+ }
2248
2302
  };
2249
- __name(_CreateLicenseManagerReportGeneratorCommand, "CreateLicenseManagerReportGeneratorCommand");
2250
- var CreateLicenseManagerReportGeneratorCommand = _CreateLicenseManagerReportGeneratorCommand;
2251
2303
 
2252
2304
  // src/commands/CreateLicenseVersionCommand.ts
2253
2305
 
2254
2306
 
2255
2307
 
2256
- var _CreateLicenseVersionCommand = class _CreateLicenseVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2308
+ var CreateLicenseVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2257
2309
  return [
2258
2310
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2259
2311
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2260
2312
  ];
2261
2313
  }).s("AWSLicenseManager", "CreateLicenseVersion", {}).n("LicenseManagerClient", "CreateLicenseVersionCommand").f(void 0, void 0).ser(se_CreateLicenseVersionCommand).de(de_CreateLicenseVersionCommand).build() {
2314
+ static {
2315
+ __name(this, "CreateLicenseVersionCommand");
2316
+ }
2262
2317
  };
2263
- __name(_CreateLicenseVersionCommand, "CreateLicenseVersionCommand");
2264
- var CreateLicenseVersionCommand = _CreateLicenseVersionCommand;
2265
2318
 
2266
2319
  // src/commands/CreateTokenCommand.ts
2267
2320
 
2268
2321
 
2269
2322
 
2270
- var _CreateTokenCommand = class _CreateTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2323
+ var CreateTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2271
2324
  return [
2272
2325
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2273
2326
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2274
2327
  ];
2275
2328
  }).s("AWSLicenseManager", "CreateToken", {}).n("LicenseManagerClient", "CreateTokenCommand").f(void 0, void 0).ser(se_CreateTokenCommand).de(de_CreateTokenCommand).build() {
2329
+ static {
2330
+ __name(this, "CreateTokenCommand");
2331
+ }
2276
2332
  };
2277
- __name(_CreateTokenCommand, "CreateTokenCommand");
2278
- var CreateTokenCommand = _CreateTokenCommand;
2279
2333
 
2280
2334
  // src/commands/DeleteGrantCommand.ts
2281
2335
 
2282
2336
 
2283
2337
 
2284
- var _DeleteGrantCommand = class _DeleteGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2338
+ var DeleteGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2285
2339
  return [
2286
2340
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2287
2341
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2288
2342
  ];
2289
2343
  }).s("AWSLicenseManager", "DeleteGrant", {}).n("LicenseManagerClient", "DeleteGrantCommand").f(void 0, void 0).ser(se_DeleteGrantCommand).de(de_DeleteGrantCommand).build() {
2344
+ static {
2345
+ __name(this, "DeleteGrantCommand");
2346
+ }
2290
2347
  };
2291
- __name(_DeleteGrantCommand, "DeleteGrantCommand");
2292
- var DeleteGrantCommand = _DeleteGrantCommand;
2293
2348
 
2294
2349
  // src/commands/DeleteLicenseCommand.ts
2295
2350
 
2296
2351
 
2297
2352
 
2298
- var _DeleteLicenseCommand = class _DeleteLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2353
+ var DeleteLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2299
2354
  return [
2300
2355
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2301
2356
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2302
2357
  ];
2303
2358
  }).s("AWSLicenseManager", "DeleteLicense", {}).n("LicenseManagerClient", "DeleteLicenseCommand").f(void 0, void 0).ser(se_DeleteLicenseCommand).de(de_DeleteLicenseCommand).build() {
2359
+ static {
2360
+ __name(this, "DeleteLicenseCommand");
2361
+ }
2304
2362
  };
2305
- __name(_DeleteLicenseCommand, "DeleteLicenseCommand");
2306
- var DeleteLicenseCommand = _DeleteLicenseCommand;
2307
2363
 
2308
2364
  // src/commands/DeleteLicenseConfigurationCommand.ts
2309
2365
 
2310
2366
 
2311
2367
 
2312
- var _DeleteLicenseConfigurationCommand = class _DeleteLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2368
+ var DeleteLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2313
2369
  return [
2314
2370
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2315
2371
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2316
2372
  ];
2317
2373
  }).s("AWSLicenseManager", "DeleteLicenseConfiguration", {}).n("LicenseManagerClient", "DeleteLicenseConfigurationCommand").f(void 0, void 0).ser(se_DeleteLicenseConfigurationCommand).de(de_DeleteLicenseConfigurationCommand).build() {
2374
+ static {
2375
+ __name(this, "DeleteLicenseConfigurationCommand");
2376
+ }
2318
2377
  };
2319
- __name(_DeleteLicenseConfigurationCommand, "DeleteLicenseConfigurationCommand");
2320
- var DeleteLicenseConfigurationCommand = _DeleteLicenseConfigurationCommand;
2321
2378
 
2322
2379
  // src/commands/DeleteLicenseManagerReportGeneratorCommand.ts
2323
2380
 
2324
2381
 
2325
2382
 
2326
- var _DeleteLicenseManagerReportGeneratorCommand = class _DeleteLicenseManagerReportGeneratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2383
+ var DeleteLicenseManagerReportGeneratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2327
2384
  return [
2328
2385
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2329
2386
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2330
2387
  ];
2331
2388
  }).s("AWSLicenseManager", "DeleteLicenseManagerReportGenerator", {}).n("LicenseManagerClient", "DeleteLicenseManagerReportGeneratorCommand").f(void 0, void 0).ser(se_DeleteLicenseManagerReportGeneratorCommand).de(de_DeleteLicenseManagerReportGeneratorCommand).build() {
2389
+ static {
2390
+ __name(this, "DeleteLicenseManagerReportGeneratorCommand");
2391
+ }
2332
2392
  };
2333
- __name(_DeleteLicenseManagerReportGeneratorCommand, "DeleteLicenseManagerReportGeneratorCommand");
2334
- var DeleteLicenseManagerReportGeneratorCommand = _DeleteLicenseManagerReportGeneratorCommand;
2335
2393
 
2336
2394
  // src/commands/DeleteTokenCommand.ts
2337
2395
 
2338
2396
 
2339
2397
 
2340
- var _DeleteTokenCommand = class _DeleteTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2398
+ var DeleteTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2341
2399
  return [
2342
2400
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2343
2401
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2344
2402
  ];
2345
2403
  }).s("AWSLicenseManager", "DeleteToken", {}).n("LicenseManagerClient", "DeleteTokenCommand").f(void 0, void 0).ser(se_DeleteTokenCommand).de(de_DeleteTokenCommand).build() {
2404
+ static {
2405
+ __name(this, "DeleteTokenCommand");
2406
+ }
2346
2407
  };
2347
- __name(_DeleteTokenCommand, "DeleteTokenCommand");
2348
- var DeleteTokenCommand = _DeleteTokenCommand;
2349
2408
 
2350
2409
  // src/commands/ExtendLicenseConsumptionCommand.ts
2351
2410
 
2352
2411
 
2353
2412
 
2354
- var _ExtendLicenseConsumptionCommand = class _ExtendLicenseConsumptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2413
+ var ExtendLicenseConsumptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2355
2414
  return [
2356
2415
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2357
2416
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2358
2417
  ];
2359
2418
  }).s("AWSLicenseManager", "ExtendLicenseConsumption", {}).n("LicenseManagerClient", "ExtendLicenseConsumptionCommand").f(void 0, void 0).ser(se_ExtendLicenseConsumptionCommand).de(de_ExtendLicenseConsumptionCommand).build() {
2419
+ static {
2420
+ __name(this, "ExtendLicenseConsumptionCommand");
2421
+ }
2360
2422
  };
2361
- __name(_ExtendLicenseConsumptionCommand, "ExtendLicenseConsumptionCommand");
2362
- var ExtendLicenseConsumptionCommand = _ExtendLicenseConsumptionCommand;
2363
2423
 
2364
2424
  // src/commands/GetAccessTokenCommand.ts
2365
2425
 
2366
2426
 
2367
2427
 
2368
- var _GetAccessTokenCommand = class _GetAccessTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2428
+ var GetAccessTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2369
2429
  return [
2370
2430
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2371
2431
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2372
2432
  ];
2373
2433
  }).s("AWSLicenseManager", "GetAccessToken", {}).n("LicenseManagerClient", "GetAccessTokenCommand").f(void 0, void 0).ser(se_GetAccessTokenCommand).de(de_GetAccessTokenCommand).build() {
2434
+ static {
2435
+ __name(this, "GetAccessTokenCommand");
2436
+ }
2374
2437
  };
2375
- __name(_GetAccessTokenCommand, "GetAccessTokenCommand");
2376
- var GetAccessTokenCommand = _GetAccessTokenCommand;
2377
2438
 
2378
2439
  // src/commands/GetGrantCommand.ts
2379
2440
 
2380
2441
 
2381
2442
 
2382
- var _GetGrantCommand = class _GetGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2443
+ var GetGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2383
2444
  return [
2384
2445
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2385
2446
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2386
2447
  ];
2387
2448
  }).s("AWSLicenseManager", "GetGrant", {}).n("LicenseManagerClient", "GetGrantCommand").f(void 0, void 0).ser(se_GetGrantCommand).de(de_GetGrantCommand).build() {
2449
+ static {
2450
+ __name(this, "GetGrantCommand");
2451
+ }
2388
2452
  };
2389
- __name(_GetGrantCommand, "GetGrantCommand");
2390
- var GetGrantCommand = _GetGrantCommand;
2391
2453
 
2392
2454
  // src/commands/GetLicenseCommand.ts
2393
2455
 
2394
2456
 
2395
2457
 
2396
- var _GetLicenseCommand = class _GetLicenseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2458
+ var GetLicenseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2397
2459
  return [
2398
2460
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2399
2461
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2400
2462
  ];
2401
2463
  }).s("AWSLicenseManager", "GetLicense", {}).n("LicenseManagerClient", "GetLicenseCommand").f(void 0, void 0).ser(se_GetLicenseCommand).de(de_GetLicenseCommand).build() {
2464
+ static {
2465
+ __name(this, "GetLicenseCommand");
2466
+ }
2402
2467
  };
2403
- __name(_GetLicenseCommand, "GetLicenseCommand");
2404
- var GetLicenseCommand = _GetLicenseCommand;
2405
2468
 
2406
2469
  // src/commands/GetLicenseConfigurationCommand.ts
2407
2470
 
2408
2471
 
2409
2472
 
2410
- var _GetLicenseConfigurationCommand = class _GetLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2473
+ var GetLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2411
2474
  return [
2412
2475
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2413
2476
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2414
2477
  ];
2415
2478
  }).s("AWSLicenseManager", "GetLicenseConfiguration", {}).n("LicenseManagerClient", "GetLicenseConfigurationCommand").f(void 0, void 0).ser(se_GetLicenseConfigurationCommand).de(de_GetLicenseConfigurationCommand).build() {
2479
+ static {
2480
+ __name(this, "GetLicenseConfigurationCommand");
2481
+ }
2416
2482
  };
2417
- __name(_GetLicenseConfigurationCommand, "GetLicenseConfigurationCommand");
2418
- var GetLicenseConfigurationCommand = _GetLicenseConfigurationCommand;
2419
2483
 
2420
2484
  // src/commands/GetLicenseConversionTaskCommand.ts
2421
2485
 
2422
2486
 
2423
2487
 
2424
- var _GetLicenseConversionTaskCommand = class _GetLicenseConversionTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2488
+ var GetLicenseConversionTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2425
2489
  return [
2426
2490
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2427
2491
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2428
2492
  ];
2429
2493
  }).s("AWSLicenseManager", "GetLicenseConversionTask", {}).n("LicenseManagerClient", "GetLicenseConversionTaskCommand").f(void 0, void 0).ser(se_GetLicenseConversionTaskCommand).de(de_GetLicenseConversionTaskCommand).build() {
2494
+ static {
2495
+ __name(this, "GetLicenseConversionTaskCommand");
2496
+ }
2430
2497
  };
2431
- __name(_GetLicenseConversionTaskCommand, "GetLicenseConversionTaskCommand");
2432
- var GetLicenseConversionTaskCommand = _GetLicenseConversionTaskCommand;
2433
2498
 
2434
2499
  // src/commands/GetLicenseManagerReportGeneratorCommand.ts
2435
2500
 
2436
2501
 
2437
2502
 
2438
- var _GetLicenseManagerReportGeneratorCommand = class _GetLicenseManagerReportGeneratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2503
+ var GetLicenseManagerReportGeneratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2439
2504
  return [
2440
2505
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2441
2506
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2442
2507
  ];
2443
2508
  }).s("AWSLicenseManager", "GetLicenseManagerReportGenerator", {}).n("LicenseManagerClient", "GetLicenseManagerReportGeneratorCommand").f(void 0, void 0).ser(se_GetLicenseManagerReportGeneratorCommand).de(de_GetLicenseManagerReportGeneratorCommand).build() {
2509
+ static {
2510
+ __name(this, "GetLicenseManagerReportGeneratorCommand");
2511
+ }
2444
2512
  };
2445
- __name(_GetLicenseManagerReportGeneratorCommand, "GetLicenseManagerReportGeneratorCommand");
2446
- var GetLicenseManagerReportGeneratorCommand = _GetLicenseManagerReportGeneratorCommand;
2447
2513
 
2448
2514
  // src/commands/GetLicenseUsageCommand.ts
2449
2515
 
2450
2516
 
2451
2517
 
2452
- var _GetLicenseUsageCommand = class _GetLicenseUsageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2518
+ var GetLicenseUsageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2453
2519
  return [
2454
2520
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2455
2521
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2456
2522
  ];
2457
2523
  }).s("AWSLicenseManager", "GetLicenseUsage", {}).n("LicenseManagerClient", "GetLicenseUsageCommand").f(void 0, void 0).ser(se_GetLicenseUsageCommand).de(de_GetLicenseUsageCommand).build() {
2524
+ static {
2525
+ __name(this, "GetLicenseUsageCommand");
2526
+ }
2458
2527
  };
2459
- __name(_GetLicenseUsageCommand, "GetLicenseUsageCommand");
2460
- var GetLicenseUsageCommand = _GetLicenseUsageCommand;
2461
2528
 
2462
2529
  // src/commands/GetServiceSettingsCommand.ts
2463
2530
 
2464
2531
 
2465
2532
 
2466
- var _GetServiceSettingsCommand = class _GetServiceSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2533
+ var GetServiceSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2467
2534
  return [
2468
2535
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2469
2536
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2470
2537
  ];
2471
2538
  }).s("AWSLicenseManager", "GetServiceSettings", {}).n("LicenseManagerClient", "GetServiceSettingsCommand").f(void 0, void 0).ser(se_GetServiceSettingsCommand).de(de_GetServiceSettingsCommand).build() {
2539
+ static {
2540
+ __name(this, "GetServiceSettingsCommand");
2541
+ }
2472
2542
  };
2473
- __name(_GetServiceSettingsCommand, "GetServiceSettingsCommand");
2474
- var GetServiceSettingsCommand = _GetServiceSettingsCommand;
2475
2543
 
2476
2544
  // src/commands/ListAssociationsForLicenseConfigurationCommand.ts
2477
2545
 
2478
2546
 
2479
2547
 
2480
- var _ListAssociationsForLicenseConfigurationCommand = class _ListAssociationsForLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2548
+ var ListAssociationsForLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2481
2549
  return [
2482
2550
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2483
2551
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2484
2552
  ];
2485
2553
  }).s("AWSLicenseManager", "ListAssociationsForLicenseConfiguration", {}).n("LicenseManagerClient", "ListAssociationsForLicenseConfigurationCommand").f(void 0, void 0).ser(se_ListAssociationsForLicenseConfigurationCommand).de(de_ListAssociationsForLicenseConfigurationCommand).build() {
2554
+ static {
2555
+ __name(this, "ListAssociationsForLicenseConfigurationCommand");
2556
+ }
2486
2557
  };
2487
- __name(_ListAssociationsForLicenseConfigurationCommand, "ListAssociationsForLicenseConfigurationCommand");
2488
- var ListAssociationsForLicenseConfigurationCommand = _ListAssociationsForLicenseConfigurationCommand;
2489
2558
 
2490
2559
  // src/commands/ListDistributedGrantsCommand.ts
2491
2560
 
2492
2561
 
2493
2562
 
2494
- var _ListDistributedGrantsCommand = class _ListDistributedGrantsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2563
+ var ListDistributedGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2495
2564
  return [
2496
2565
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2497
2566
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2498
2567
  ];
2499
2568
  }).s("AWSLicenseManager", "ListDistributedGrants", {}).n("LicenseManagerClient", "ListDistributedGrantsCommand").f(void 0, void 0).ser(se_ListDistributedGrantsCommand).de(de_ListDistributedGrantsCommand).build() {
2569
+ static {
2570
+ __name(this, "ListDistributedGrantsCommand");
2571
+ }
2500
2572
  };
2501
- __name(_ListDistributedGrantsCommand, "ListDistributedGrantsCommand");
2502
- var ListDistributedGrantsCommand = _ListDistributedGrantsCommand;
2503
2573
 
2504
2574
  // src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts
2505
2575
 
2506
2576
 
2507
2577
 
2508
- var _ListFailuresForLicenseConfigurationOperationsCommand = class _ListFailuresForLicenseConfigurationOperationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2578
+ var ListFailuresForLicenseConfigurationOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2509
2579
  return [
2510
2580
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2511
2581
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2512
2582
  ];
2513
2583
  }).s("AWSLicenseManager", "ListFailuresForLicenseConfigurationOperations", {}).n("LicenseManagerClient", "ListFailuresForLicenseConfigurationOperationsCommand").f(void 0, void 0).ser(se_ListFailuresForLicenseConfigurationOperationsCommand).de(de_ListFailuresForLicenseConfigurationOperationsCommand).build() {
2584
+ static {
2585
+ __name(this, "ListFailuresForLicenseConfigurationOperationsCommand");
2586
+ }
2514
2587
  };
2515
- __name(_ListFailuresForLicenseConfigurationOperationsCommand, "ListFailuresForLicenseConfigurationOperationsCommand");
2516
- var ListFailuresForLicenseConfigurationOperationsCommand = _ListFailuresForLicenseConfigurationOperationsCommand;
2517
2588
 
2518
2589
  // src/commands/ListLicenseConfigurationsCommand.ts
2519
2590
 
2520
2591
 
2521
2592
 
2522
- var _ListLicenseConfigurationsCommand = class _ListLicenseConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2593
+ var ListLicenseConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2523
2594
  return [
2524
2595
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2525
2596
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2526
2597
  ];
2527
2598
  }).s("AWSLicenseManager", "ListLicenseConfigurations", {}).n("LicenseManagerClient", "ListLicenseConfigurationsCommand").f(void 0, void 0).ser(se_ListLicenseConfigurationsCommand).de(de_ListLicenseConfigurationsCommand).build() {
2599
+ static {
2600
+ __name(this, "ListLicenseConfigurationsCommand");
2601
+ }
2528
2602
  };
2529
- __name(_ListLicenseConfigurationsCommand, "ListLicenseConfigurationsCommand");
2530
- var ListLicenseConfigurationsCommand = _ListLicenseConfigurationsCommand;
2531
2603
 
2532
2604
  // src/commands/ListLicenseConversionTasksCommand.ts
2533
2605
 
2534
2606
 
2535
2607
 
2536
- var _ListLicenseConversionTasksCommand = class _ListLicenseConversionTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2608
+ var ListLicenseConversionTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2537
2609
  return [
2538
2610
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2539
2611
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2540
2612
  ];
2541
2613
  }).s("AWSLicenseManager", "ListLicenseConversionTasks", {}).n("LicenseManagerClient", "ListLicenseConversionTasksCommand").f(void 0, void 0).ser(se_ListLicenseConversionTasksCommand).de(de_ListLicenseConversionTasksCommand).build() {
2614
+ static {
2615
+ __name(this, "ListLicenseConversionTasksCommand");
2616
+ }
2542
2617
  };
2543
- __name(_ListLicenseConversionTasksCommand, "ListLicenseConversionTasksCommand");
2544
- var ListLicenseConversionTasksCommand = _ListLicenseConversionTasksCommand;
2545
2618
 
2546
2619
  // src/commands/ListLicenseManagerReportGeneratorsCommand.ts
2547
2620
 
2548
2621
 
2549
2622
 
2550
- var _ListLicenseManagerReportGeneratorsCommand = class _ListLicenseManagerReportGeneratorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2623
+ var ListLicenseManagerReportGeneratorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2551
2624
  return [
2552
2625
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2553
2626
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2554
2627
  ];
2555
2628
  }).s("AWSLicenseManager", "ListLicenseManagerReportGenerators", {}).n("LicenseManagerClient", "ListLicenseManagerReportGeneratorsCommand").f(void 0, void 0).ser(se_ListLicenseManagerReportGeneratorsCommand).de(de_ListLicenseManagerReportGeneratorsCommand).build() {
2629
+ static {
2630
+ __name(this, "ListLicenseManagerReportGeneratorsCommand");
2631
+ }
2556
2632
  };
2557
- __name(_ListLicenseManagerReportGeneratorsCommand, "ListLicenseManagerReportGeneratorsCommand");
2558
- var ListLicenseManagerReportGeneratorsCommand = _ListLicenseManagerReportGeneratorsCommand;
2559
2633
 
2560
2634
  // src/commands/ListLicensesCommand.ts
2561
2635
 
2562
2636
 
2563
2637
 
2564
- var _ListLicensesCommand = class _ListLicensesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2638
+ var ListLicensesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2565
2639
  return [
2566
2640
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2567
2641
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2568
2642
  ];
2569
2643
  }).s("AWSLicenseManager", "ListLicenses", {}).n("LicenseManagerClient", "ListLicensesCommand").f(void 0, void 0).ser(se_ListLicensesCommand).de(de_ListLicensesCommand).build() {
2644
+ static {
2645
+ __name(this, "ListLicensesCommand");
2646
+ }
2570
2647
  };
2571
- __name(_ListLicensesCommand, "ListLicensesCommand");
2572
- var ListLicensesCommand = _ListLicensesCommand;
2573
2648
 
2574
2649
  // src/commands/ListLicenseSpecificationsForResourceCommand.ts
2575
2650
 
2576
2651
 
2577
2652
 
2578
- var _ListLicenseSpecificationsForResourceCommand = class _ListLicenseSpecificationsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2653
+ var ListLicenseSpecificationsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2579
2654
  return [
2580
2655
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2581
2656
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2582
2657
  ];
2583
2658
  }).s("AWSLicenseManager", "ListLicenseSpecificationsForResource", {}).n("LicenseManagerClient", "ListLicenseSpecificationsForResourceCommand").f(void 0, void 0).ser(se_ListLicenseSpecificationsForResourceCommand).de(de_ListLicenseSpecificationsForResourceCommand).build() {
2659
+ static {
2660
+ __name(this, "ListLicenseSpecificationsForResourceCommand");
2661
+ }
2584
2662
  };
2585
- __name(_ListLicenseSpecificationsForResourceCommand, "ListLicenseSpecificationsForResourceCommand");
2586
- var ListLicenseSpecificationsForResourceCommand = _ListLicenseSpecificationsForResourceCommand;
2587
2663
 
2588
2664
  // src/commands/ListLicenseVersionsCommand.ts
2589
2665
 
2590
2666
 
2591
2667
 
2592
- var _ListLicenseVersionsCommand = class _ListLicenseVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2668
+ var ListLicenseVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2593
2669
  return [
2594
2670
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2595
2671
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2596
2672
  ];
2597
2673
  }).s("AWSLicenseManager", "ListLicenseVersions", {}).n("LicenseManagerClient", "ListLicenseVersionsCommand").f(void 0, void 0).ser(se_ListLicenseVersionsCommand).de(de_ListLicenseVersionsCommand).build() {
2674
+ static {
2675
+ __name(this, "ListLicenseVersionsCommand");
2676
+ }
2598
2677
  };
2599
- __name(_ListLicenseVersionsCommand, "ListLicenseVersionsCommand");
2600
- var ListLicenseVersionsCommand = _ListLicenseVersionsCommand;
2601
2678
 
2602
2679
  // src/commands/ListReceivedGrantsCommand.ts
2603
2680
 
2604
2681
 
2605
2682
 
2606
- var _ListReceivedGrantsCommand = class _ListReceivedGrantsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2683
+ var ListReceivedGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2607
2684
  return [
2608
2685
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2609
2686
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2610
2687
  ];
2611
2688
  }).s("AWSLicenseManager", "ListReceivedGrants", {}).n("LicenseManagerClient", "ListReceivedGrantsCommand").f(void 0, void 0).ser(se_ListReceivedGrantsCommand).de(de_ListReceivedGrantsCommand).build() {
2689
+ static {
2690
+ __name(this, "ListReceivedGrantsCommand");
2691
+ }
2612
2692
  };
2613
- __name(_ListReceivedGrantsCommand, "ListReceivedGrantsCommand");
2614
- var ListReceivedGrantsCommand = _ListReceivedGrantsCommand;
2615
2693
 
2616
2694
  // src/commands/ListReceivedGrantsForOrganizationCommand.ts
2617
2695
 
2618
2696
 
2619
2697
 
2620
- var _ListReceivedGrantsForOrganizationCommand = class _ListReceivedGrantsForOrganizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2698
+ var ListReceivedGrantsForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2621
2699
  return [
2622
2700
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2623
2701
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2624
2702
  ];
2625
2703
  }).s("AWSLicenseManager", "ListReceivedGrantsForOrganization", {}).n("LicenseManagerClient", "ListReceivedGrantsForOrganizationCommand").f(void 0, void 0).ser(se_ListReceivedGrantsForOrganizationCommand).de(de_ListReceivedGrantsForOrganizationCommand).build() {
2704
+ static {
2705
+ __name(this, "ListReceivedGrantsForOrganizationCommand");
2706
+ }
2626
2707
  };
2627
- __name(_ListReceivedGrantsForOrganizationCommand, "ListReceivedGrantsForOrganizationCommand");
2628
- var ListReceivedGrantsForOrganizationCommand = _ListReceivedGrantsForOrganizationCommand;
2629
2708
 
2630
2709
  // src/commands/ListReceivedLicensesCommand.ts
2631
2710
 
2632
2711
 
2633
2712
 
2634
- var _ListReceivedLicensesCommand = class _ListReceivedLicensesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2713
+ var ListReceivedLicensesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2635
2714
  return [
2636
2715
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2637
2716
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2638
2717
  ];
2639
2718
  }).s("AWSLicenseManager", "ListReceivedLicenses", {}).n("LicenseManagerClient", "ListReceivedLicensesCommand").f(void 0, void 0).ser(se_ListReceivedLicensesCommand).de(de_ListReceivedLicensesCommand).build() {
2719
+ static {
2720
+ __name(this, "ListReceivedLicensesCommand");
2721
+ }
2640
2722
  };
2641
- __name(_ListReceivedLicensesCommand, "ListReceivedLicensesCommand");
2642
- var ListReceivedLicensesCommand = _ListReceivedLicensesCommand;
2643
2723
 
2644
2724
  // src/commands/ListReceivedLicensesForOrganizationCommand.ts
2645
2725
 
2646
2726
 
2647
2727
 
2648
- var _ListReceivedLicensesForOrganizationCommand = class _ListReceivedLicensesForOrganizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2728
+ var ListReceivedLicensesForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2649
2729
  return [
2650
2730
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2651
2731
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2652
2732
  ];
2653
2733
  }).s("AWSLicenseManager", "ListReceivedLicensesForOrganization", {}).n("LicenseManagerClient", "ListReceivedLicensesForOrganizationCommand").f(void 0, void 0).ser(se_ListReceivedLicensesForOrganizationCommand).de(de_ListReceivedLicensesForOrganizationCommand).build() {
2734
+ static {
2735
+ __name(this, "ListReceivedLicensesForOrganizationCommand");
2736
+ }
2654
2737
  };
2655
- __name(_ListReceivedLicensesForOrganizationCommand, "ListReceivedLicensesForOrganizationCommand");
2656
- var ListReceivedLicensesForOrganizationCommand = _ListReceivedLicensesForOrganizationCommand;
2657
2738
 
2658
2739
  // src/commands/ListResourceInventoryCommand.ts
2659
2740
 
2660
2741
 
2661
2742
 
2662
- var _ListResourceInventoryCommand = class _ListResourceInventoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2743
+ var ListResourceInventoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2663
2744
  return [
2664
2745
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2665
2746
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2666
2747
  ];
2667
2748
  }).s("AWSLicenseManager", "ListResourceInventory", {}).n("LicenseManagerClient", "ListResourceInventoryCommand").f(void 0, void 0).ser(se_ListResourceInventoryCommand).de(de_ListResourceInventoryCommand).build() {
2749
+ static {
2750
+ __name(this, "ListResourceInventoryCommand");
2751
+ }
2668
2752
  };
2669
- __name(_ListResourceInventoryCommand, "ListResourceInventoryCommand");
2670
- var ListResourceInventoryCommand = _ListResourceInventoryCommand;
2671
2753
 
2672
2754
  // src/commands/ListTagsForResourceCommand.ts
2673
2755
 
2674
2756
 
2675
2757
 
2676
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2758
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2677
2759
  return [
2678
2760
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2679
2761
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2680
2762
  ];
2681
2763
  }).s("AWSLicenseManager", "ListTagsForResource", {}).n("LicenseManagerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2764
+ static {
2765
+ __name(this, "ListTagsForResourceCommand");
2766
+ }
2682
2767
  };
2683
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2684
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2685
2768
 
2686
2769
  // src/commands/ListTokensCommand.ts
2687
2770
 
2688
2771
 
2689
2772
 
2690
- var _ListTokensCommand = class _ListTokensCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2773
+ var ListTokensCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2691
2774
  return [
2692
2775
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2693
2776
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2694
2777
  ];
2695
2778
  }).s("AWSLicenseManager", "ListTokens", {}).n("LicenseManagerClient", "ListTokensCommand").f(void 0, void 0).ser(se_ListTokensCommand).de(de_ListTokensCommand).build() {
2779
+ static {
2780
+ __name(this, "ListTokensCommand");
2781
+ }
2696
2782
  };
2697
- __name(_ListTokensCommand, "ListTokensCommand");
2698
- var ListTokensCommand = _ListTokensCommand;
2699
2783
 
2700
2784
  // src/commands/ListUsageForLicenseConfigurationCommand.ts
2701
2785
 
2702
2786
 
2703
2787
 
2704
- var _ListUsageForLicenseConfigurationCommand = class _ListUsageForLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2788
+ var ListUsageForLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2705
2789
  return [
2706
2790
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2707
2791
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2708
2792
  ];
2709
2793
  }).s("AWSLicenseManager", "ListUsageForLicenseConfiguration", {}).n("LicenseManagerClient", "ListUsageForLicenseConfigurationCommand").f(void 0, void 0).ser(se_ListUsageForLicenseConfigurationCommand).de(de_ListUsageForLicenseConfigurationCommand).build() {
2794
+ static {
2795
+ __name(this, "ListUsageForLicenseConfigurationCommand");
2796
+ }
2710
2797
  };
2711
- __name(_ListUsageForLicenseConfigurationCommand, "ListUsageForLicenseConfigurationCommand");
2712
- var ListUsageForLicenseConfigurationCommand = _ListUsageForLicenseConfigurationCommand;
2713
2798
 
2714
2799
  // src/commands/RejectGrantCommand.ts
2715
2800
 
2716
2801
 
2717
2802
 
2718
- var _RejectGrantCommand = class _RejectGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2803
+ var RejectGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2719
2804
  return [
2720
2805
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2721
2806
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2722
2807
  ];
2723
2808
  }).s("AWSLicenseManager", "RejectGrant", {}).n("LicenseManagerClient", "RejectGrantCommand").f(void 0, void 0).ser(se_RejectGrantCommand).de(de_RejectGrantCommand).build() {
2809
+ static {
2810
+ __name(this, "RejectGrantCommand");
2811
+ }
2724
2812
  };
2725
- __name(_RejectGrantCommand, "RejectGrantCommand");
2726
- var RejectGrantCommand = _RejectGrantCommand;
2727
2813
 
2728
2814
  // src/commands/TagResourceCommand.ts
2729
2815
 
2730
2816
 
2731
2817
 
2732
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2818
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2733
2819
  return [
2734
2820
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2735
2821
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2736
2822
  ];
2737
2823
  }).s("AWSLicenseManager", "TagResource", {}).n("LicenseManagerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
2824
+ static {
2825
+ __name(this, "TagResourceCommand");
2826
+ }
2738
2827
  };
2739
- __name(_TagResourceCommand, "TagResourceCommand");
2740
- var TagResourceCommand = _TagResourceCommand;
2741
2828
 
2742
2829
  // src/commands/UntagResourceCommand.ts
2743
2830
 
2744
2831
 
2745
2832
 
2746
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2833
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2747
2834
  return [
2748
2835
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2749
2836
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2750
2837
  ];
2751
2838
  }).s("AWSLicenseManager", "UntagResource", {}).n("LicenseManagerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
2839
+ static {
2840
+ __name(this, "UntagResourceCommand");
2841
+ }
2752
2842
  };
2753
- __name(_UntagResourceCommand, "UntagResourceCommand");
2754
- var UntagResourceCommand = _UntagResourceCommand;
2755
2843
 
2756
2844
  // src/commands/UpdateLicenseConfigurationCommand.ts
2757
2845
 
2758
2846
 
2759
2847
 
2760
- var _UpdateLicenseConfigurationCommand = class _UpdateLicenseConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2848
+ var UpdateLicenseConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2761
2849
  return [
2762
2850
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2763
2851
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2764
2852
  ];
2765
2853
  }).s("AWSLicenseManager", "UpdateLicenseConfiguration", {}).n("LicenseManagerClient", "UpdateLicenseConfigurationCommand").f(void 0, void 0).ser(se_UpdateLicenseConfigurationCommand).de(de_UpdateLicenseConfigurationCommand).build() {
2854
+ static {
2855
+ __name(this, "UpdateLicenseConfigurationCommand");
2856
+ }
2766
2857
  };
2767
- __name(_UpdateLicenseConfigurationCommand, "UpdateLicenseConfigurationCommand");
2768
- var UpdateLicenseConfigurationCommand = _UpdateLicenseConfigurationCommand;
2769
2858
 
2770
2859
  // src/commands/UpdateLicenseManagerReportGeneratorCommand.ts
2771
2860
 
2772
2861
 
2773
2862
 
2774
- var _UpdateLicenseManagerReportGeneratorCommand = class _UpdateLicenseManagerReportGeneratorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2863
+ var UpdateLicenseManagerReportGeneratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2775
2864
  return [
2776
2865
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2777
2866
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2778
2867
  ];
2779
2868
  }).s("AWSLicenseManager", "UpdateLicenseManagerReportGenerator", {}).n("LicenseManagerClient", "UpdateLicenseManagerReportGeneratorCommand").f(void 0, void 0).ser(se_UpdateLicenseManagerReportGeneratorCommand).de(de_UpdateLicenseManagerReportGeneratorCommand).build() {
2869
+ static {
2870
+ __name(this, "UpdateLicenseManagerReportGeneratorCommand");
2871
+ }
2780
2872
  };
2781
- __name(_UpdateLicenseManagerReportGeneratorCommand, "UpdateLicenseManagerReportGeneratorCommand");
2782
- var UpdateLicenseManagerReportGeneratorCommand = _UpdateLicenseManagerReportGeneratorCommand;
2783
2873
 
2784
2874
  // src/commands/UpdateLicenseSpecificationsForResourceCommand.ts
2785
2875
 
2786
2876
 
2787
2877
 
2788
- var _UpdateLicenseSpecificationsForResourceCommand = class _UpdateLicenseSpecificationsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2878
+ var UpdateLicenseSpecificationsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2789
2879
  return [
2790
2880
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2791
2881
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2792
2882
  ];
2793
2883
  }).s("AWSLicenseManager", "UpdateLicenseSpecificationsForResource", {}).n("LicenseManagerClient", "UpdateLicenseSpecificationsForResourceCommand").f(void 0, void 0).ser(se_UpdateLicenseSpecificationsForResourceCommand).de(de_UpdateLicenseSpecificationsForResourceCommand).build() {
2884
+ static {
2885
+ __name(this, "UpdateLicenseSpecificationsForResourceCommand");
2886
+ }
2794
2887
  };
2795
- __name(_UpdateLicenseSpecificationsForResourceCommand, "UpdateLicenseSpecificationsForResourceCommand");
2796
- var UpdateLicenseSpecificationsForResourceCommand = _UpdateLicenseSpecificationsForResourceCommand;
2797
2888
 
2798
2889
  // src/commands/UpdateServiceSettingsCommand.ts
2799
2890
 
2800
2891
 
2801
2892
 
2802
- var _UpdateServiceSettingsCommand = class _UpdateServiceSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2893
+ var UpdateServiceSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2803
2894
  return [
2804
2895
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2805
2896
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2806
2897
  ];
2807
2898
  }).s("AWSLicenseManager", "UpdateServiceSettings", {}).n("LicenseManagerClient", "UpdateServiceSettingsCommand").f(void 0, void 0).ser(se_UpdateServiceSettingsCommand).de(de_UpdateServiceSettingsCommand).build() {
2899
+ static {
2900
+ __name(this, "UpdateServiceSettingsCommand");
2901
+ }
2808
2902
  };
2809
- __name(_UpdateServiceSettingsCommand, "UpdateServiceSettingsCommand");
2810
- var UpdateServiceSettingsCommand = _UpdateServiceSettingsCommand;
2811
2903
 
2812
2904
  // src/LicenseManager.ts
2813
2905
  var commands = {
@@ -2862,10 +2954,11 @@ var commands = {
2862
2954
  UpdateLicenseSpecificationsForResourceCommand,
2863
2955
  UpdateServiceSettingsCommand
2864
2956
  };
2865
- var _LicenseManager = class _LicenseManager extends LicenseManagerClient {
2957
+ var LicenseManager = class extends LicenseManagerClient {
2958
+ static {
2959
+ __name(this, "LicenseManager");
2960
+ }
2866
2961
  };
2867
- __name(_LicenseManager, "LicenseManager");
2868
- var LicenseManager = _LicenseManager;
2869
2962
  (0, import_smithy_client.createAggregatedClient)(commands, LicenseManager);
2870
2963
  // Annotate the CommonJS export names for ESM import in node:
2871
2964