@aws-sdk/client-workspaces-thin-client 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist-cjs/index.js +233 -154
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
  4. package/dist-es/commands/DeleteDeviceCommand.js +2 -2
  5. package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
  6. package/dist-es/commands/DeregisterDeviceCommand.js +2 -2
  7. package/dist-es/commands/GetDeviceCommand.js +2 -2
  8. package/dist-es/commands/GetEnvironmentCommand.js +2 -2
  9. package/dist-es/commands/GetSoftwareSetCommand.js +2 -2
  10. package/dist-es/commands/ListDevicesCommand.js +2 -2
  11. package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
  12. package/dist-es/commands/ListSoftwareSetsCommand.js +2 -2
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  14. package/dist-es/commands/TagResourceCommand.js +2 -2
  15. package/dist-es/commands/UntagResourceCommand.js +2 -2
  16. package/dist-es/commands/UpdateDeviceCommand.js +2 -2
  17. package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
  18. package/dist-es/commands/UpdateSoftwareSetCommand.js +2 -2
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.shared.js +6 -1
  21. package/dist-es/schemas/schemas_0.js +139 -125
  22. package/dist-types/WorkSpacesThinClientClient.d.ts +1 -10
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  25. package/dist-types/runtimeConfig.d.ts +6 -2
  26. package/dist-types/runtimeConfig.native.d.ts +6 -2
  27. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  28. package/dist-types/schemas/schemas_0.d.ts +66 -80
  29. package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +0 -4
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +65 -82
  36. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class WorkSpacesThinClientClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let WorkSpacesThinClientServiceException$1 = class WorkSpacesThinClientServiceException extends smithyClient.ServiceException {
113
+ class WorkSpacesThinClientServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, WorkSpacesThinClientServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends WorkSpacesThinClientServiceException$1 {
120
+ class AccessDeniedException extends WorkSpacesThinClientServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends WorkSpacesThin
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends WorkSpacesThinClientServiceException$1 {
131
+ }
132
+ class ConflictException extends WorkSpacesThinClientServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends WorkSpacesThinClientSe
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends WorkSpacesThinClientServiceException$1 {
147
+ }
148
+ class InternalServerException extends WorkSpacesThinClientServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  retryAfterSeconds;
@@ -158,8 +158,8 @@ let InternalServerException$1 = class InternalServerException extends WorkSpaces
158
158
  Object.setPrototypeOf(this, InternalServerException.prototype);
159
159
  this.retryAfterSeconds = opts.retryAfterSeconds;
160
160
  }
161
- };
162
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends WorkSpacesThinClientServiceException$1 {
161
+ }
162
+ class ResourceNotFoundException extends WorkSpacesThinClientServiceException {
163
163
  name = "ResourceNotFoundException";
164
164
  $fault = "client";
165
165
  resourceId;
@@ -174,8 +174,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends WorkSp
174
174
  this.resourceId = opts.resourceId;
175
175
  this.resourceType = opts.resourceType;
176
176
  }
177
- };
178
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends WorkSpacesThinClientServiceException$1 {
177
+ }
178
+ class ServiceQuotaExceededException extends WorkSpacesThinClientServiceException {
179
179
  name = "ServiceQuotaExceededException";
180
180
  $fault = "client";
181
181
  resourceId;
@@ -194,8 +194,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
194
194
  this.serviceCode = opts.serviceCode;
195
195
  this.quotaCode = opts.quotaCode;
196
196
  }
197
- };
198
- let ThrottlingException$1 = class ThrottlingException extends WorkSpacesThinClientServiceException$1 {
197
+ }
198
+ class ThrottlingException extends WorkSpacesThinClientServiceException {
199
199
  name = "ThrottlingException";
200
200
  $fault = "client";
201
201
  serviceCode;
@@ -212,8 +212,8 @@ let ThrottlingException$1 = class ThrottlingException extends WorkSpacesThinClie
212
212
  this.quotaCode = opts.quotaCode;
213
213
  this.retryAfterSeconds = opts.retryAfterSeconds;
214
214
  }
215
- };
216
- let ValidationException$1 = class ValidationException extends WorkSpacesThinClientServiceException$1 {
215
+ }
216
+ class ValidationException extends WorkSpacesThinClientServiceException {
217
217
  name = "ValidationException";
218
218
  $fault = "client";
219
219
  reason;
@@ -228,7 +228,7 @@ let ValidationException$1 = class ValidationException extends WorkSpacesThinClie
228
228
  this.reason = opts.reason;
229
229
  this.fieldList = opts.fieldList;
230
230
  }
231
- };
231
+ }
232
232
 
233
233
  const _AC = "ActivationCode";
234
234
  const _ADE = "AccessDeniedException";
@@ -386,11 +386,11 @@ var DesktopEndpoint = [0, n0, _DE, 8, 0];
386
386
  var DeviceName = [0, n0, _DN, 8, 0];
387
387
  var EnvironmentName = [0, n0, _EN, 8, 0];
388
388
  var UserId = [0, n0, _UI, 8, 0];
389
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
390
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
391
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
392
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
393
- var CreateEnvironmentRequest = [
389
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
390
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
391
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
392
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
393
+ var CreateEnvironmentRequest$ = [
394
394
  3,
395
395
  n0,
396
396
  _CER,
@@ -401,7 +401,7 @@ var CreateEnvironmentRequest = [
401
401
  0,
402
402
  [() => DesktopEndpoint, 0],
403
403
  0,
404
- () => MaintenanceWindow,
404
+ () => MaintenanceWindow$,
405
405
  0,
406
406
  0,
407
407
  0,
@@ -410,8 +410,15 @@ var CreateEnvironmentRequest = [
410
410
  [() => DeviceCreationTagsMap, 0],
411
411
  ],
412
412
  ];
413
- var CreateEnvironmentResponse = [3, n0, _CERr, 0, [_en], [[() => EnvironmentSummary, 0]]];
414
- var DeleteDeviceRequest = [
413
+ var CreateEnvironmentResponse$ = [
414
+ 3,
415
+ n0,
416
+ _CERr,
417
+ 0,
418
+ [_en],
419
+ [[() => EnvironmentSummary$, 0]],
420
+ ];
421
+ var DeleteDeviceRequest$ = [
415
422
  3,
416
423
  n0,
417
424
  _DDR,
@@ -422,8 +429,8 @@ var DeleteDeviceRequest = [
422
429
  [0, { [_iT]: 1, [_hQ]: _cT }],
423
430
  ],
424
431
  ];
425
- var DeleteDeviceResponse = [3, n0, _DDRe, 0, [], []];
426
- var DeleteEnvironmentRequest = [
432
+ var DeleteDeviceResponse$ = [3, n0, _DDRe, 0, [], []];
433
+ var DeleteEnvironmentRequest$ = [
427
434
  3,
428
435
  n0,
429
436
  _DER,
@@ -434,10 +441,10 @@ var DeleteEnvironmentRequest = [
434
441
  [0, { [_iT]: 1, [_hQ]: _cT }],
435
442
  ],
436
443
  ];
437
- var DeleteEnvironmentResponse = [3, n0, _DERe, 0, [], []];
438
- var DeregisterDeviceRequest = [3, n0, _DDRer, 0, [_i, _tDS, _cT], [[0, 1], 0, [0, 4]]];
439
- var DeregisterDeviceResponse = [3, n0, _DDRere, 0, [], []];
440
- var Device = [
444
+ var DeleteEnvironmentResponse$ = [3, n0, _DERe, 0, [], []];
445
+ var DeregisterDeviceRequest$ = [3, n0, _DDRer, 0, [_i, _tDS, _cT], [[0, 1], 0, [0, 4]]];
446
+ var DeregisterDeviceResponse$ = [3, n0, _DDRere, 0, [], []];
447
+ var Device$ = [
441
448
  3,
442
449
  n0,
443
450
  _D,
@@ -467,7 +474,7 @@ var Device = [
467
474
  ],
468
475
  [0, 0, [() => DeviceName, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, [() => UserId, 0]],
469
476
  ];
470
- var DeviceSummary = [
477
+ var DeviceSummary$ = [
471
478
  3,
472
479
  n0,
473
480
  _DS,
@@ -475,7 +482,7 @@ var DeviceSummary = [
475
482
  [_i, _sN, _n, _mo, _eI, _s, _cSSI, _dSSI, _pSSI, _sSUS, _lCA, _lPA, _cA, _uA, _a, _lUI],
476
483
  [0, 0, [() => DeviceName, 0], 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, [() => UserId, 0]],
477
484
  ];
478
- var Environment = [
485
+ var Environment$ = [
479
486
  3,
480
487
  n0,
481
488
  _E,
@@ -490,7 +497,7 @@ var Environment = [
490
497
  [() => ActivationCode, 0],
491
498
  1,
492
499
  0,
493
- () => MaintenanceWindow,
500
+ () => MaintenanceWindow$,
494
501
  0,
495
502
  0,
496
503
  0,
@@ -503,7 +510,7 @@ var Environment = [
503
510
  [() => DeviceCreationTagsMap, 0],
504
511
  ],
505
512
  ];
506
- var EnvironmentSummary = [
513
+ var EnvironmentSummary$ = [
507
514
  3,
508
515
  n0,
509
516
  _ES,
@@ -517,7 +524,7 @@ var EnvironmentSummary = [
517
524
  0,
518
525
  [() => ActivationCode, 0],
519
526
  0,
520
- () => MaintenanceWindow,
527
+ () => MaintenanceWindow$,
521
528
  0,
522
529
  0,
523
530
  0,
@@ -526,13 +533,13 @@ var EnvironmentSummary = [
526
533
  0,
527
534
  ],
528
535
  ];
529
- var GetDeviceRequest = [3, n0, _GDR, 0, [_i], [[0, 1]]];
530
- var GetDeviceResponse = [3, n0, _GDRe, 0, [_d], [[() => Device, 0]]];
531
- var GetEnvironmentRequest = [3, n0, _GER, 0, [_i], [[0, 1]]];
532
- var GetEnvironmentResponse = [3, n0, _GERe, 0, [_en], [[() => Environment, 0]]];
533
- var GetSoftwareSetRequest = [3, n0, _GSSR, 0, [_i], [[0, 1]]];
534
- var GetSoftwareSetResponse = [3, n0, _GSSRe, 0, [_sS], [() => SoftwareSet]];
535
- var InternalServerException = [
536
+ var GetDeviceRequest$ = [3, n0, _GDR, 0, [_i], [[0, 1]]];
537
+ var GetDeviceResponse$ = [3, n0, _GDRe, 0, [_d], [[() => Device$, 0]]];
538
+ var GetEnvironmentRequest$ = [3, n0, _GER, 0, [_i], [[0, 1]]];
539
+ var GetEnvironmentResponse$ = [3, n0, _GERe, 0, [_en], [[() => Environment$, 0]]];
540
+ var GetSoftwareSetRequest$ = [3, n0, _GSSR, 0, [_i], [[0, 1]]];
541
+ var GetSoftwareSetResponse$ = [3, n0, _GSSRe, 0, [_sS], [() => SoftwareSet$]];
542
+ var InternalServerException$ = [
536
543
  -3,
537
544
  n0,
538
545
  _ISE,
@@ -540,8 +547,8 @@ var InternalServerException = [
540
547
  [_m, _rAS],
541
548
  [0, [1, { [_hH]: _RA }]],
542
549
  ];
543
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
544
- var ListDevicesRequest = [
550
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
551
+ var ListDevicesRequest$ = [
545
552
  3,
546
553
  n0,
547
554
  _LDR,
@@ -552,8 +559,8 @@ var ListDevicesRequest = [
552
559
  [1, { [_hQ]: _mR }],
553
560
  ],
554
561
  ];
555
- var ListDevicesResponse = [3, n0, _LDRi, 0, [_de, _nT], [[() => DeviceList, 0], 0]];
556
- var ListEnvironmentsRequest = [
562
+ var ListDevicesResponse$ = [3, n0, _LDRi, 0, [_de, _nT], [[() => DeviceList, 0], 0]];
563
+ var ListEnvironmentsRequest$ = [
557
564
  3,
558
565
  n0,
559
566
  _LER,
@@ -564,7 +571,7 @@ var ListEnvironmentsRequest = [
564
571
  [1, { [_hQ]: _mR }],
565
572
  ],
566
573
  ];
567
- var ListEnvironmentsResponse = [
574
+ var ListEnvironmentsResponse$ = [
568
575
  3,
569
576
  n0,
570
577
  _LERi,
@@ -572,7 +579,7 @@ var ListEnvironmentsResponse = [
572
579
  [_env, _nT],
573
580
  [[() => EnvironmentList, 0], 0],
574
581
  ];
575
- var ListSoftwareSetsRequest = [
582
+ var ListSoftwareSetsRequest$ = [
576
583
  3,
577
584
  n0,
578
585
  _LSSR,
@@ -583,7 +590,7 @@ var ListSoftwareSetsRequest = [
583
590
  [1, { [_hQ]: _mR }],
584
591
  ],
585
592
  ];
586
- var ListSoftwareSetsResponse = [
593
+ var ListSoftwareSetsResponse$ = [
587
594
  3,
588
595
  n0,
589
596
  _LSSRi,
@@ -591,9 +598,9 @@ var ListSoftwareSetsResponse = [
591
598
  [_sSo, _nT],
592
599
  [() => SoftwareSetList, 0],
593
600
  ];
594
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
595
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [[() => TagsMap, 0]]];
596
- var MaintenanceWindow = [
601
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
602
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [[() => TagsMap, 0]]];
603
+ var MaintenanceWindow$ = [
597
604
  3,
598
605
  n0,
599
606
  _MW,
@@ -601,7 +608,7 @@ var MaintenanceWindow = [
601
608
  [_ty, _sTH, _sTM, _eTH, _eTM, _dOTW, _aTO],
602
609
  [0, 1, 1, 1, 1, 64 | 0, 0],
603
610
  ];
604
- var ResourceNotFoundException = [
611
+ var ResourceNotFoundException$ = [
605
612
  -3,
606
613
  n0,
607
614
  _RNFE,
@@ -609,8 +616,8 @@ var ResourceNotFoundException = [
609
616
  [_m, _rI, _rT],
610
617
  [0, 0, 0],
611
618
  ];
612
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
613
- var ServiceQuotaExceededException = [
619
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
620
+ var ServiceQuotaExceededException$ = [
614
621
  -3,
615
622
  n0,
616
623
  _SQEE,
@@ -618,9 +625,9 @@ var ServiceQuotaExceededException = [
618
625
  [_m, _rI, _rT, _sC, _qC],
619
626
  [0, 0, 0, 0, 0],
620
627
  ];
621
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
622
- var Software = [3, n0, _S, 0, [_n, _v], [0, 0]];
623
- var SoftwareSet = [
628
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
629
+ var Software$ = [3, n0, _S, 0, [_n, _v], [0, 0]];
630
+ var SoftwareSet$ = [
624
631
  3,
625
632
  n0,
626
633
  _SS,
@@ -628,7 +635,7 @@ var SoftwareSet = [
628
635
  [_i, _v, _rAe, _sU, _vS, _so, _a],
629
636
  [0, 0, 4, 4, 0, () => SoftwareList, 0],
630
637
  ];
631
- var SoftwareSetSummary = [
638
+ var SoftwareSetSummary$ = [
632
639
  3,
633
640
  n0,
634
641
  _SSS,
@@ -636,7 +643,7 @@ var SoftwareSetSummary = [
636
643
  [_i, _v, _rAe, _sU, _vS, _a],
637
644
  [0, 0, 4, 4, 0, 0],
638
645
  ];
639
- var TagResourceRequest = [
646
+ var TagResourceRequest$ = [
640
647
  3,
641
648
  n0,
642
649
  _TRR,
@@ -647,8 +654,8 @@ var TagResourceRequest = [
647
654
  [() => TagsMap, 0],
648
655
  ],
649
656
  ];
650
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
651
- var ThrottlingException = [
657
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
658
+ var ThrottlingException$ = [
652
659
  -3,
653
660
  n0,
654
661
  _TE,
@@ -656,8 +663,8 @@ var ThrottlingException = [
656
663
  [_m, _sC, _qC, _rAS],
657
664
  [0, 0, 0, [1, { [_hH]: _RA }]],
658
665
  ];
659
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
660
- var UntagResourceRequest = [
666
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
667
+ var UntagResourceRequest$ = [
661
668
  3,
662
669
  n0,
663
670
  _URR,
@@ -668,8 +675,8 @@ var UntagResourceRequest = [
668
675
  [() => TagKeys, { [_hQ]: _tK }],
669
676
  ],
670
677
  ];
671
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
672
- var UpdateDeviceRequest = [
678
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
679
+ var UpdateDeviceRequest$ = [
673
680
  3,
674
681
  n0,
675
682
  _UDR,
@@ -677,8 +684,8 @@ var UpdateDeviceRequest = [
677
684
  [_i, _n, _dSSI, _sSUS],
678
685
  [[0, 1], [() => DeviceName, 0], 0, 0],
679
686
  ];
680
- var UpdateDeviceResponse = [3, n0, _UDRp, 0, [_d], [[() => DeviceSummary, 0]]];
681
- var UpdateEnvironmentRequest = [
687
+ var UpdateDeviceResponse$ = [3, n0, _UDRp, 0, [_d], [[() => DeviceSummary$, 0]]];
688
+ var UpdateEnvironmentRequest$ = [
682
689
  3,
683
690
  n0,
684
691
  _UER,
@@ -690,16 +697,23 @@ var UpdateEnvironmentRequest = [
690
697
  0,
691
698
  [() => DesktopEndpoint, 0],
692
699
  0,
693
- () => MaintenanceWindow,
700
+ () => MaintenanceWindow$,
694
701
  0,
695
702
  0,
696
703
  [() => DeviceCreationTagsMap, 0],
697
704
  ],
698
705
  ];
699
- var UpdateEnvironmentResponse = [3, n0, _UERp, 0, [_en], [[() => EnvironmentSummary, 0]]];
700
- var UpdateSoftwareSetRequest = [3, n0, _USSR, 0, [_i, _vS], [[0, 1], 0]];
701
- var UpdateSoftwareSetResponse = [3, n0, _USSRp, 0, [], []];
702
- var ValidationException = [
706
+ var UpdateEnvironmentResponse$ = [
707
+ 3,
708
+ n0,
709
+ _UERp,
710
+ 0,
711
+ [_en],
712
+ [[() => EnvironmentSummary$, 0]],
713
+ ];
714
+ var UpdateSoftwareSetRequest$ = [3, n0, _USSR, 0, [_i, _vS], [[0, 1], 0]];
715
+ var UpdateSoftwareSetResponse$ = [3, n0, _USSRp, 0, [], []];
716
+ var ValidationException$ = [
703
717
  -3,
704
718
  n0,
705
719
  _VE,
@@ -707,9 +721,9 @@ var ValidationException = [
707
721
  [_m, _r, _fL],
708
722
  [0, 0, () => ValidationExceptionFieldList],
709
723
  ];
710
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
711
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
712
- var WorkSpacesThinClientServiceException = [
724
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
725
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
726
+ var WorkSpacesThinClientServiceException$ = [
713
727
  -3,
714
728
  _sm,
715
729
  "WorkSpacesThinClientServiceException",
@@ -717,142 +731,142 @@ var WorkSpacesThinClientServiceException = [
717
731
  [],
718
732
  [],
719
733
  ];
720
- schema.TypeRegistry.for(_sm).registerError(WorkSpacesThinClientServiceException, WorkSpacesThinClientServiceException$1);
721
- var DeviceList = [1, n0, _DL, 0, [() => DeviceSummary, 0]];
722
- var EnvironmentList = [1, n0, _EL, 0, [() => EnvironmentSummary, 0]];
723
- var SoftwareList = [1, n0, _SL, 0, () => Software];
724
- var SoftwareSetList = [1, n0, _SSL, 0, () => SoftwareSetSummary];
734
+ schema.TypeRegistry.for(_sm).registerError(WorkSpacesThinClientServiceException$, WorkSpacesThinClientServiceException);
735
+ var DeviceList = [1, n0, _DL, 0, [() => DeviceSummary$, 0]];
736
+ var EnvironmentList = [1, n0, _EL, 0, [() => EnvironmentSummary$, 0]];
737
+ var SoftwareList = [1, n0, _SL, 0, () => Software$];
738
+ var SoftwareSetList = [1, n0, _SSL, 0, () => SoftwareSetSummary$];
725
739
  var TagKeys = [1, n0, _TK, 8, 0];
726
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
740
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
727
741
  var DeviceCreationTagsMap = [2, n0, _DCTM, 8, 0, 0];
728
742
  var TagsMap = [2, n0, _TM, 8, 0, 0];
729
- var CreateEnvironment = [
743
+ var CreateEnvironment$ = [
730
744
  9,
731
745
  n0,
732
746
  _CEr,
733
747
  { [_h]: ["POST", "/environments", 201], [_end]: ["api."] },
734
- () => CreateEnvironmentRequest,
735
- () => CreateEnvironmentResponse,
748
+ () => CreateEnvironmentRequest$,
749
+ () => CreateEnvironmentResponse$,
736
750
  ];
737
- var DeleteDevice = [
751
+ var DeleteDevice$ = [
738
752
  9,
739
753
  n0,
740
754
  _DD,
741
755
  { [_h]: ["DELETE", "/devices/{id}", 204], [_end]: ["api."] },
742
- () => DeleteDeviceRequest,
743
- () => DeleteDeviceResponse,
756
+ () => DeleteDeviceRequest$,
757
+ () => DeleteDeviceResponse$,
744
758
  ];
745
- var DeleteEnvironment = [
759
+ var DeleteEnvironment$ = [
746
760
  9,
747
761
  n0,
748
762
  _DEe,
749
763
  { [_h]: ["DELETE", "/environments/{id}", 204], [_end]: ["api."] },
750
- () => DeleteEnvironmentRequest,
751
- () => DeleteEnvironmentResponse,
764
+ () => DeleteEnvironmentRequest$,
765
+ () => DeleteEnvironmentResponse$,
752
766
  ];
753
- var DeregisterDevice = [
767
+ var DeregisterDevice$ = [
754
768
  9,
755
769
  n0,
756
770
  _DDe,
757
771
  { [_h]: ["POST", "/deregister-device/{id}", 202], [_end]: ["api."] },
758
- () => DeregisterDeviceRequest,
759
- () => DeregisterDeviceResponse,
772
+ () => DeregisterDeviceRequest$,
773
+ () => DeregisterDeviceResponse$,
760
774
  ];
761
- var GetDevice = [
775
+ var GetDevice$ = [
762
776
  9,
763
777
  n0,
764
778
  _GD,
765
779
  { [_h]: ["GET", "/devices/{id}", 200], [_end]: ["api."] },
766
- () => GetDeviceRequest,
767
- () => GetDeviceResponse,
780
+ () => GetDeviceRequest$,
781
+ () => GetDeviceResponse$,
768
782
  ];
769
- var GetEnvironment = [
783
+ var GetEnvironment$ = [
770
784
  9,
771
785
  n0,
772
786
  _GE,
773
787
  { [_h]: ["GET", "/environments/{id}", 200], [_end]: ["api."] },
774
- () => GetEnvironmentRequest,
775
- () => GetEnvironmentResponse,
788
+ () => GetEnvironmentRequest$,
789
+ () => GetEnvironmentResponse$,
776
790
  ];
777
- var GetSoftwareSet = [
791
+ var GetSoftwareSet$ = [
778
792
  9,
779
793
  n0,
780
794
  _GSS,
781
795
  { [_h]: ["GET", "/softwaresets/{id}", 200], [_end]: ["api."] },
782
- () => GetSoftwareSetRequest,
783
- () => GetSoftwareSetResponse,
796
+ () => GetSoftwareSetRequest$,
797
+ () => GetSoftwareSetResponse$,
784
798
  ];
785
- var ListDevices = [
799
+ var ListDevices$ = [
786
800
  9,
787
801
  n0,
788
802
  _LD,
789
803
  { [_h]: ["GET", "/devices", 200], [_end]: ["api."] },
790
- () => ListDevicesRequest,
791
- () => ListDevicesResponse,
804
+ () => ListDevicesRequest$,
805
+ () => ListDevicesResponse$,
792
806
  ];
793
- var ListEnvironments = [
807
+ var ListEnvironments$ = [
794
808
  9,
795
809
  n0,
796
810
  _LE,
797
811
  { [_h]: ["GET", "/environments", 200], [_end]: ["api."] },
798
- () => ListEnvironmentsRequest,
799
- () => ListEnvironmentsResponse,
812
+ () => ListEnvironmentsRequest$,
813
+ () => ListEnvironmentsResponse$,
800
814
  ];
801
- var ListSoftwareSets = [
815
+ var ListSoftwareSets$ = [
802
816
  9,
803
817
  n0,
804
818
  _LSS,
805
819
  { [_h]: ["GET", "/softwaresets", 200], [_end]: ["api."] },
806
- () => ListSoftwareSetsRequest,
807
- () => ListSoftwareSetsResponse,
820
+ () => ListSoftwareSetsRequest$,
821
+ () => ListSoftwareSetsResponse$,
808
822
  ];
809
- var ListTagsForResource = [
823
+ var ListTagsForResource$ = [
810
824
  9,
811
825
  n0,
812
826
  _LTFR,
813
827
  { [_h]: ["GET", "/tags/{resourceArn}", 200], [_end]: ["api."] },
814
- () => ListTagsForResourceRequest,
815
- () => ListTagsForResourceResponse,
828
+ () => ListTagsForResourceRequest$,
829
+ () => ListTagsForResourceResponse$,
816
830
  ];
817
- var TagResource = [
831
+ var TagResource$ = [
818
832
  9,
819
833
  n0,
820
834
  _TR,
821
835
  { [_h]: ["POST", "/tags/{resourceArn}", 200], [_end]: ["api."] },
822
- () => TagResourceRequest,
823
- () => TagResourceResponse,
836
+ () => TagResourceRequest$,
837
+ () => TagResourceResponse$,
824
838
  ];
825
- var UntagResource = [
839
+ var UntagResource$ = [
826
840
  9,
827
841
  n0,
828
842
  _UR,
829
843
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200], [_end]: ["api."] },
830
- () => UntagResourceRequest,
831
- () => UntagResourceResponse,
844
+ () => UntagResourceRequest$,
845
+ () => UntagResourceResponse$,
832
846
  ];
833
- var UpdateDevice = [
847
+ var UpdateDevice$ = [
834
848
  9,
835
849
  n0,
836
850
  _UD,
837
851
  { [_h]: ["PATCH", "/devices/{id}", 200], [_end]: ["api."] },
838
- () => UpdateDeviceRequest,
839
- () => UpdateDeviceResponse,
852
+ () => UpdateDeviceRequest$,
853
+ () => UpdateDeviceResponse$,
840
854
  ];
841
- var UpdateEnvironment = [
855
+ var UpdateEnvironment$ = [
842
856
  9,
843
857
  n0,
844
858
  _UE,
845
859
  { [_h]: ["PATCH", "/environments/{id}", 200], [_end]: ["api."] },
846
- () => UpdateEnvironmentRequest,
847
- () => UpdateEnvironmentResponse,
860
+ () => UpdateEnvironmentRequest$,
861
+ () => UpdateEnvironmentResponse$,
848
862
  ];
849
- var UpdateSoftwareSet = [
863
+ var UpdateSoftwareSet$ = [
850
864
  9,
851
865
  n0,
852
866
  _USS,
853
867
  { [_h]: ["PATCH", "/softwaresets/{id}", 204], [_end]: ["api."] },
854
- () => UpdateSoftwareSetRequest,
855
- () => UpdateSoftwareSetResponse,
868
+ () => UpdateSoftwareSetRequest$,
869
+ () => UpdateSoftwareSetResponse$,
856
870
  ];
857
871
 
858
872
  class CreateEnvironmentCommand extends smithyClient.Command
@@ -863,7 +877,7 @@ class CreateEnvironmentCommand extends smithyClient.Command
863
877
  })
864
878
  .s("ThinClient", "CreateEnvironment", {})
865
879
  .n("WorkSpacesThinClientClient", "CreateEnvironmentCommand")
866
- .sc(CreateEnvironment)
880
+ .sc(CreateEnvironment$)
867
881
  .build() {
868
882
  }
869
883
 
@@ -875,7 +889,7 @@ class DeleteDeviceCommand extends smithyClient.Command
875
889
  })
876
890
  .s("ThinClient", "DeleteDevice", {})
877
891
  .n("WorkSpacesThinClientClient", "DeleteDeviceCommand")
878
- .sc(DeleteDevice)
892
+ .sc(DeleteDevice$)
879
893
  .build() {
880
894
  }
881
895
 
@@ -887,7 +901,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
887
901
  })
888
902
  .s("ThinClient", "DeleteEnvironment", {})
889
903
  .n("WorkSpacesThinClientClient", "DeleteEnvironmentCommand")
890
- .sc(DeleteEnvironment)
904
+ .sc(DeleteEnvironment$)
891
905
  .build() {
892
906
  }
893
907
 
@@ -899,7 +913,7 @@ class DeregisterDeviceCommand extends smithyClient.Command
899
913
  })
900
914
  .s("ThinClient", "DeregisterDevice", {})
901
915
  .n("WorkSpacesThinClientClient", "DeregisterDeviceCommand")
902
- .sc(DeregisterDevice)
916
+ .sc(DeregisterDevice$)
903
917
  .build() {
904
918
  }
905
919
 
@@ -911,7 +925,7 @@ class GetDeviceCommand extends smithyClient.Command
911
925
  })
912
926
  .s("ThinClient", "GetDevice", {})
913
927
  .n("WorkSpacesThinClientClient", "GetDeviceCommand")
914
- .sc(GetDevice)
928
+ .sc(GetDevice$)
915
929
  .build() {
916
930
  }
917
931
 
@@ -923,7 +937,7 @@ class GetEnvironmentCommand extends smithyClient.Command
923
937
  })
924
938
  .s("ThinClient", "GetEnvironment", {})
925
939
  .n("WorkSpacesThinClientClient", "GetEnvironmentCommand")
926
- .sc(GetEnvironment)
940
+ .sc(GetEnvironment$)
927
941
  .build() {
928
942
  }
929
943
 
@@ -935,7 +949,7 @@ class GetSoftwareSetCommand extends smithyClient.Command
935
949
  })
936
950
  .s("ThinClient", "GetSoftwareSet", {})
937
951
  .n("WorkSpacesThinClientClient", "GetSoftwareSetCommand")
938
- .sc(GetSoftwareSet)
952
+ .sc(GetSoftwareSet$)
939
953
  .build() {
940
954
  }
941
955
 
@@ -947,7 +961,7 @@ class ListDevicesCommand extends smithyClient.Command
947
961
  })
948
962
  .s("ThinClient", "ListDevices", {})
949
963
  .n("WorkSpacesThinClientClient", "ListDevicesCommand")
950
- .sc(ListDevices)
964
+ .sc(ListDevices$)
951
965
  .build() {
952
966
  }
953
967
 
@@ -959,7 +973,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
959
973
  })
960
974
  .s("ThinClient", "ListEnvironments", {})
961
975
  .n("WorkSpacesThinClientClient", "ListEnvironmentsCommand")
962
- .sc(ListEnvironments)
976
+ .sc(ListEnvironments$)
963
977
  .build() {
964
978
  }
965
979
 
@@ -971,7 +985,7 @@ class ListSoftwareSetsCommand extends smithyClient.Command
971
985
  })
972
986
  .s("ThinClient", "ListSoftwareSets", {})
973
987
  .n("WorkSpacesThinClientClient", "ListSoftwareSetsCommand")
974
- .sc(ListSoftwareSets)
988
+ .sc(ListSoftwareSets$)
975
989
  .build() {
976
990
  }
977
991
 
@@ -983,7 +997,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
983
997
  })
984
998
  .s("ThinClient", "ListTagsForResource", {})
985
999
  .n("WorkSpacesThinClientClient", "ListTagsForResourceCommand")
986
- .sc(ListTagsForResource)
1000
+ .sc(ListTagsForResource$)
987
1001
  .build() {
988
1002
  }
989
1003
 
@@ -995,7 +1009,7 @@ class TagResourceCommand extends smithyClient.Command
995
1009
  })
996
1010
  .s("ThinClient", "TagResource", {})
997
1011
  .n("WorkSpacesThinClientClient", "TagResourceCommand")
998
- .sc(TagResource)
1012
+ .sc(TagResource$)
999
1013
  .build() {
1000
1014
  }
1001
1015
 
@@ -1007,7 +1021,7 @@ class UntagResourceCommand extends smithyClient.Command
1007
1021
  })
1008
1022
  .s("ThinClient", "UntagResource", {})
1009
1023
  .n("WorkSpacesThinClientClient", "UntagResourceCommand")
1010
- .sc(UntagResource)
1024
+ .sc(UntagResource$)
1011
1025
  .build() {
1012
1026
  }
1013
1027
 
@@ -1019,7 +1033,7 @@ class UpdateDeviceCommand extends smithyClient.Command
1019
1033
  })
1020
1034
  .s("ThinClient", "UpdateDevice", {})
1021
1035
  .n("WorkSpacesThinClientClient", "UpdateDeviceCommand")
1022
- .sc(UpdateDevice)
1036
+ .sc(UpdateDevice$)
1023
1037
  .build() {
1024
1038
  }
1025
1039
 
@@ -1031,7 +1045,7 @@ class UpdateEnvironmentCommand extends smithyClient.Command
1031
1045
  })
1032
1046
  .s("ThinClient", "UpdateEnvironment", {})
1033
1047
  .n("WorkSpacesThinClientClient", "UpdateEnvironmentCommand")
1034
- .sc(UpdateEnvironment)
1048
+ .sc(UpdateEnvironment$)
1035
1049
  .build() {
1036
1050
  }
1037
1051
 
@@ -1043,7 +1057,7 @@ class UpdateSoftwareSetCommand extends smithyClient.Command
1043
1057
  })
1044
1058
  .s("ThinClient", "UpdateSoftwareSet", {})
1045
1059
  .n("WorkSpacesThinClientClient", "UpdateSoftwareSetCommand")
1046
- .sc(UpdateSoftwareSet)
1060
+ .sc(UpdateSoftwareSet$)
1047
1061
  .build() {
1048
1062
  }
1049
1063
 
@@ -1151,46 +1165,111 @@ Object.defineProperty(exports, "__Client", {
1151
1165
  enumerable: true,
1152
1166
  get: function () { return smithyClient.Client; }
1153
1167
  });
1154
- exports.AccessDeniedException = AccessDeniedException$1;
1168
+ exports.AccessDeniedException = AccessDeniedException;
1169
+ exports.AccessDeniedException$ = AccessDeniedException$;
1155
1170
  exports.ApplyTimeOf = ApplyTimeOf;
1156
- exports.ConflictException = ConflictException$1;
1171
+ exports.ConflictException = ConflictException;
1172
+ exports.ConflictException$ = ConflictException$;
1173
+ exports.CreateEnvironment$ = CreateEnvironment$;
1157
1174
  exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
1175
+ exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
1176
+ exports.CreateEnvironmentResponse$ = CreateEnvironmentResponse$;
1158
1177
  exports.DayOfWeek = DayOfWeek;
1178
+ exports.DeleteDevice$ = DeleteDevice$;
1159
1179
  exports.DeleteDeviceCommand = DeleteDeviceCommand;
1180
+ exports.DeleteDeviceRequest$ = DeleteDeviceRequest$;
1181
+ exports.DeleteDeviceResponse$ = DeleteDeviceResponse$;
1182
+ exports.DeleteEnvironment$ = DeleteEnvironment$;
1160
1183
  exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
1184
+ exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
1185
+ exports.DeleteEnvironmentResponse$ = DeleteEnvironmentResponse$;
1186
+ exports.DeregisterDevice$ = DeregisterDevice$;
1161
1187
  exports.DeregisterDeviceCommand = DeregisterDeviceCommand;
1188
+ exports.DeregisterDeviceRequest$ = DeregisterDeviceRequest$;
1189
+ exports.DeregisterDeviceResponse$ = DeregisterDeviceResponse$;
1162
1190
  exports.DesktopType = DesktopType;
1191
+ exports.Device$ = Device$;
1163
1192
  exports.DeviceSoftwareSetComplianceStatus = DeviceSoftwareSetComplianceStatus;
1164
1193
  exports.DeviceStatus = DeviceStatus;
1194
+ exports.DeviceSummary$ = DeviceSummary$;
1195
+ exports.Environment$ = Environment$;
1165
1196
  exports.EnvironmentSoftwareSetComplianceStatus = EnvironmentSoftwareSetComplianceStatus;
1197
+ exports.EnvironmentSummary$ = EnvironmentSummary$;
1198
+ exports.GetDevice$ = GetDevice$;
1166
1199
  exports.GetDeviceCommand = GetDeviceCommand;
1200
+ exports.GetDeviceRequest$ = GetDeviceRequest$;
1201
+ exports.GetDeviceResponse$ = GetDeviceResponse$;
1202
+ exports.GetEnvironment$ = GetEnvironment$;
1167
1203
  exports.GetEnvironmentCommand = GetEnvironmentCommand;
1204
+ exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
1205
+ exports.GetEnvironmentResponse$ = GetEnvironmentResponse$;
1206
+ exports.GetSoftwareSet$ = GetSoftwareSet$;
1168
1207
  exports.GetSoftwareSetCommand = GetSoftwareSetCommand;
1169
- exports.InternalServerException = InternalServerException$1;
1208
+ exports.GetSoftwareSetRequest$ = GetSoftwareSetRequest$;
1209
+ exports.GetSoftwareSetResponse$ = GetSoftwareSetResponse$;
1210
+ exports.InternalServerException = InternalServerException;
1211
+ exports.InternalServerException$ = InternalServerException$;
1212
+ exports.ListDevices$ = ListDevices$;
1170
1213
  exports.ListDevicesCommand = ListDevicesCommand;
1214
+ exports.ListDevicesRequest$ = ListDevicesRequest$;
1215
+ exports.ListDevicesResponse$ = ListDevicesResponse$;
1216
+ exports.ListEnvironments$ = ListEnvironments$;
1171
1217
  exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
1218
+ exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
1219
+ exports.ListEnvironmentsResponse$ = ListEnvironmentsResponse$;
1220
+ exports.ListSoftwareSets$ = ListSoftwareSets$;
1172
1221
  exports.ListSoftwareSetsCommand = ListSoftwareSetsCommand;
1222
+ exports.ListSoftwareSetsRequest$ = ListSoftwareSetsRequest$;
1223
+ exports.ListSoftwareSetsResponse$ = ListSoftwareSetsResponse$;
1224
+ exports.ListTagsForResource$ = ListTagsForResource$;
1173
1225
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1226
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1227
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1228
+ exports.MaintenanceWindow$ = MaintenanceWindow$;
1174
1229
  exports.MaintenanceWindowType = MaintenanceWindowType;
1175
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1176
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1230
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1231
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1232
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1233
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1234
+ exports.Software$ = Software$;
1235
+ exports.SoftwareSet$ = SoftwareSet$;
1236
+ exports.SoftwareSetSummary$ = SoftwareSetSummary$;
1177
1237
  exports.SoftwareSetUpdateMode = SoftwareSetUpdateMode;
1178
1238
  exports.SoftwareSetUpdateSchedule = SoftwareSetUpdateSchedule;
1179
1239
  exports.SoftwareSetUpdateStatus = SoftwareSetUpdateStatus;
1180
1240
  exports.SoftwareSetValidationStatus = SoftwareSetValidationStatus;
1241
+ exports.TagResource$ = TagResource$;
1181
1242
  exports.TagResourceCommand = TagResourceCommand;
1243
+ exports.TagResourceRequest$ = TagResourceRequest$;
1244
+ exports.TagResourceResponse$ = TagResourceResponse$;
1182
1245
  exports.TargetDeviceStatus = TargetDeviceStatus;
1183
- exports.ThrottlingException = ThrottlingException$1;
1246
+ exports.ThrottlingException = ThrottlingException;
1247
+ exports.ThrottlingException$ = ThrottlingException$;
1248
+ exports.UntagResource$ = UntagResource$;
1184
1249
  exports.UntagResourceCommand = UntagResourceCommand;
1250
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1251
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1252
+ exports.UpdateDevice$ = UpdateDevice$;
1185
1253
  exports.UpdateDeviceCommand = UpdateDeviceCommand;
1254
+ exports.UpdateDeviceRequest$ = UpdateDeviceRequest$;
1255
+ exports.UpdateDeviceResponse$ = UpdateDeviceResponse$;
1256
+ exports.UpdateEnvironment$ = UpdateEnvironment$;
1186
1257
  exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
1258
+ exports.UpdateEnvironmentRequest$ = UpdateEnvironmentRequest$;
1259
+ exports.UpdateEnvironmentResponse$ = UpdateEnvironmentResponse$;
1260
+ exports.UpdateSoftwareSet$ = UpdateSoftwareSet$;
1187
1261
  exports.UpdateSoftwareSetCommand = UpdateSoftwareSetCommand;
1188
- exports.ValidationException = ValidationException$1;
1262
+ exports.UpdateSoftwareSetRequest$ = UpdateSoftwareSetRequest$;
1263
+ exports.UpdateSoftwareSetResponse$ = UpdateSoftwareSetResponse$;
1264
+ exports.ValidationException = ValidationException;
1265
+ exports.ValidationException$ = ValidationException$;
1266
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1189
1267
  exports.ValidationExceptionReason = ValidationExceptionReason;
1190
1268
  exports.WorkSpacesThin = WorkSpacesThin;
1191
1269
  exports.WorkSpacesThinClient = WorkSpacesThinClient;
1192
1270
  exports.WorkSpacesThinClientClient = WorkSpacesThinClientClient;
1193
- exports.WorkSpacesThinClientServiceException = WorkSpacesThinClientServiceException$1;
1271
+ exports.WorkSpacesThinClientServiceException = WorkSpacesThinClientServiceException;
1272
+ exports.WorkSpacesThinClientServiceException$ = WorkSpacesThinClientServiceException$;
1194
1273
  exports.paginateListDevices = paginateListDevices;
1195
1274
  exports.paginateListEnvironments = paginateListEnvironments;
1196
1275
  exports.paginateListSoftwareSets = paginateListSoftwareSets;