@aws-sdk/client-grafana 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 (45) hide show
  1. package/dist-cjs/index.js +372 -234
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateLicenseCommand.js +2 -2
  4. package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +2 -2
  5. package/dist-es/commands/CreateWorkspaceCommand.js +2 -2
  6. package/dist-es/commands/CreateWorkspaceServiceAccountCommand.js +2 -2
  7. package/dist-es/commands/CreateWorkspaceServiceAccountTokenCommand.js +2 -2
  8. package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +2 -2
  9. package/dist-es/commands/DeleteWorkspaceCommand.js +2 -2
  10. package/dist-es/commands/DeleteWorkspaceServiceAccountCommand.js +2 -2
  11. package/dist-es/commands/DeleteWorkspaceServiceAccountTokenCommand.js +2 -2
  12. package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +2 -2
  13. package/dist-es/commands/DescribeWorkspaceCommand.js +2 -2
  14. package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +2 -2
  15. package/dist-es/commands/DisassociateLicenseCommand.js +2 -2
  16. package/dist-es/commands/ListPermissionsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/ListVersionsCommand.js +2 -2
  19. package/dist-es/commands/ListWorkspaceServiceAccountTokensCommand.js +2 -2
  20. package/dist-es/commands/ListWorkspaceServiceAccountsCommand.js +2 -2
  21. package/dist-es/commands/ListWorkspacesCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/UntagResourceCommand.js +2 -2
  24. package/dist-es/commands/UpdatePermissionsCommand.js +2 -2
  25. package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +2 -2
  26. package/dist-es/commands/UpdateWorkspaceCommand.js +2 -2
  27. package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +242 -207
  31. package/dist-types/GrafanaClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +104 -132
  38. package/dist-types/ts3.4/GrafanaClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +103 -133
  45. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class GrafanaClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let GrafanaServiceException$1 = class GrafanaServiceException extends smithyClient.ServiceException {
113
+ class GrafanaServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, GrafanaServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends GrafanaServiceException$1 {
120
+ class AccessDeniedException extends GrafanaServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends GrafanaService
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends GrafanaServiceException$1 {
131
+ }
132
+ class ConflictException extends GrafanaServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends GrafanaServiceExceptio
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends GrafanaServiceException$1 {
147
+ }
148
+ class InternalServerException extends GrafanaServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  $retryable = {};
@@ -159,8 +159,8 @@ let InternalServerException$1 = class InternalServerException extends GrafanaSer
159
159
  Object.setPrototypeOf(this, InternalServerException.prototype);
160
160
  this.retryAfterSeconds = opts.retryAfterSeconds;
161
161
  }
162
- };
163
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends GrafanaServiceException$1 {
162
+ }
163
+ class ResourceNotFoundException extends GrafanaServiceException {
164
164
  name = "ResourceNotFoundException";
165
165
  $fault = "client";
166
166
  resourceId;
@@ -175,8 +175,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Grafan
175
175
  this.resourceId = opts.resourceId;
176
176
  this.resourceType = opts.resourceType;
177
177
  }
178
- };
179
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends GrafanaServiceException$1 {
178
+ }
179
+ class ServiceQuotaExceededException extends GrafanaServiceException {
180
180
  name = "ServiceQuotaExceededException";
181
181
  $fault = "client";
182
182
  resourceId;
@@ -195,8 +195,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
195
195
  this.serviceCode = opts.serviceCode;
196
196
  this.quotaCode = opts.quotaCode;
197
197
  }
198
- };
199
- let ThrottlingException$1 = class ThrottlingException extends GrafanaServiceException$1 {
198
+ }
199
+ class ThrottlingException extends GrafanaServiceException {
200
200
  name = "ThrottlingException";
201
201
  $fault = "client";
202
202
  $retryable = {};
@@ -214,8 +214,8 @@ let ThrottlingException$1 = class ThrottlingException extends GrafanaServiceExce
214
214
  this.quotaCode = opts.quotaCode;
215
215
  this.retryAfterSeconds = opts.retryAfterSeconds;
216
216
  }
217
- };
218
- let ValidationException$1 = class ValidationException extends GrafanaServiceException$1 {
217
+ }
218
+ class ValidationException extends GrafanaServiceException {
219
219
  name = "ValidationException";
220
220
  $fault = "client";
221
221
  reason;
@@ -230,7 +230,7 @@ let ValidationException$1 = class ValidationException extends GrafanaServiceExce
230
230
  this.reason = opts.reason;
231
231
  this.fieldList = opts.fieldList;
232
232
  }
233
- };
233
+ }
234
234
 
235
235
  const _AA = "AssertionAttributes";
236
236
  const _AD = "AuthenticationDescription";
@@ -473,10 +473,10 @@ var OrganizationRoleName = [0, n0, _ORN, 8, 0];
473
473
  var OverridableConfigurationJson = [0, n0, _OCJ, { [_mT]: _a }, 0];
474
474
  var ServiceAccountTokenKey = [0, n0, _SATK, 8, 0];
475
475
  var WorkspaceName = [0, n0, _WN, 8, 0];
476
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
477
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
478
- var AssertionAttributes = [3, n0, _AA, 0, [_n, _l, _em, _g, _r, _o], [0, 0, 0, 0, 0, 0]];
479
- var AssociateLicenseRequest = [
476
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
477
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
478
+ var AssertionAttributes$ = [3, n0, _AA, 0, [_n, _l, _em, _g, _r, _o], [0, 0, 0, 0, 0, 0]];
479
+ var AssociateLicenseRequest$ = [
480
480
  3,
481
481
  n0,
482
482
  _ALR,
@@ -488,20 +488,27 @@ var AssociateLicenseRequest = [
488
488
  [0, { [_hH]: _GT }],
489
489
  ],
490
490
  ];
491
- var AssociateLicenseResponse = [3, n0, _ALRs, 0, [_w], [[() => WorkspaceDescription, 0]]];
492
- var AuthenticationDescription = [
491
+ var AssociateLicenseResponse$ = [
492
+ 3,
493
+ n0,
494
+ _ALRs,
495
+ 0,
496
+ [_w],
497
+ [[() => WorkspaceDescription$, 0]],
498
+ ];
499
+ var AuthenticationDescription$ = [
493
500
  3,
494
501
  n0,
495
502
  _AD,
496
503
  0,
497
504
  [_p, _s, _aS],
498
- [64 | 0, [() => SamlAuthentication, 0], () => AwsSsoAuthentication],
505
+ [64 | 0, [() => SamlAuthentication$, 0], () => AwsSsoAuthentication$],
499
506
  ];
500
- var AuthenticationSummary = [3, n0, _AS, 0, [_p, _sCS], [64 | 0, 0]];
501
- var AwsSsoAuthentication = [3, n0, _ASA, 0, [_sCI], [0]];
502
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
503
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
504
- var CreateWorkspaceApiKeyRequest = [
507
+ var AuthenticationSummary$ = [3, n0, _AS, 0, [_p, _sCS], [64 | 0, 0]];
508
+ var AwsSsoAuthentication$ = [3, n0, _ASA, 0, [_sCI], [0]];
509
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
510
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
511
+ var CreateWorkspaceApiKeyRequest$ = [
505
512
  3,
506
513
  n0,
507
514
  _CWAKR,
@@ -509,7 +516,7 @@ var CreateWorkspaceApiKeyRequest = [
509
516
  [_kN, _kR, _sTL, _wI],
510
517
  [0, 0, 1, [0, 1]],
511
518
  ];
512
- var CreateWorkspaceApiKeyResponse = [
519
+ var CreateWorkspaceApiKeyResponse$ = [
513
520
  3,
514
521
  n0,
515
522
  _CWAKRr,
@@ -517,7 +524,7 @@ var CreateWorkspaceApiKeyResponse = [
517
524
  [_kN, _k, _wI],
518
525
  [0, [() => ApiKeyToken, 0], 0],
519
526
  ];
520
- var CreateWorkspaceRequest = [
527
+ var CreateWorkspaceRequest$ = [
521
528
  3,
522
529
  n0,
523
530
  _CWR,
@@ -537,14 +544,21 @@ var CreateWorkspaceRequest = [
537
544
  [() => IamRoleArn, 0],
538
545
  64 | 0,
539
546
  128 | 0,
540
- () => VpcConfiguration,
547
+ () => VpcConfiguration$,
541
548
  [() => OverridableConfigurationJson, 0],
542
- () => NetworkAccessConfiguration,
549
+ () => NetworkAccessConfiguration$,
543
550
  0,
544
551
  ],
545
552
  ];
546
- var CreateWorkspaceResponse = [3, n0, _CWRr, 0, [_w], [[() => WorkspaceDescription, 0]]];
547
- var CreateWorkspaceServiceAccountRequest = [
553
+ var CreateWorkspaceResponse$ = [
554
+ 3,
555
+ n0,
556
+ _CWRr,
557
+ 0,
558
+ [_w],
559
+ [[() => WorkspaceDescription$, 0]],
560
+ ];
561
+ var CreateWorkspaceServiceAccountRequest$ = [
548
562
  3,
549
563
  n0,
550
564
  _CWSAR,
@@ -552,7 +566,7 @@ var CreateWorkspaceServiceAccountRequest = [
552
566
  [_n, _gR, _wI],
553
567
  [0, 0, [0, 1]],
554
568
  ];
555
- var CreateWorkspaceServiceAccountResponse = [
569
+ var CreateWorkspaceServiceAccountResponse$ = [
556
570
  3,
557
571
  n0,
558
572
  _CWSARr,
@@ -560,7 +574,7 @@ var CreateWorkspaceServiceAccountResponse = [
560
574
  [_i, _n, _gR, _wI],
561
575
  [0, 0, 0, 0],
562
576
  ];
563
- var CreateWorkspaceServiceAccountTokenRequest = [
577
+ var CreateWorkspaceServiceAccountTokenRequest$ = [
564
578
  3,
565
579
  n0,
566
580
  _CWSATR,
@@ -568,15 +582,15 @@ var CreateWorkspaceServiceAccountTokenRequest = [
568
582
  [_n, _sTL, _sAI, _wI],
569
583
  [0, 1, [0, 1], [0, 1]],
570
584
  ];
571
- var CreateWorkspaceServiceAccountTokenResponse = [
585
+ var CreateWorkspaceServiceAccountTokenResponse$ = [
572
586
  3,
573
587
  n0,
574
588
  _CWSATRr,
575
589
  0,
576
590
  [_sAT, _sAI, _wI],
577
- [[() => ServiceAccountTokenSummaryWithKey, 0], 0, 0],
591
+ [[() => ServiceAccountTokenSummaryWithKey$, 0], 0, 0],
578
592
  ];
579
- var DeleteWorkspaceApiKeyRequest = [
593
+ var DeleteWorkspaceApiKeyRequest$ = [
580
594
  3,
581
595
  n0,
582
596
  _DWAKR,
@@ -587,10 +601,17 @@ var DeleteWorkspaceApiKeyRequest = [
587
601
  [0, 1],
588
602
  ],
589
603
  ];
590
- var DeleteWorkspaceApiKeyResponse = [3, n0, _DWAKRe, 0, [_kN, _wI], [0, 0]];
591
- var DeleteWorkspaceRequest = [3, n0, _DWR, 0, [_wI], [[0, 1]]];
592
- var DeleteWorkspaceResponse = [3, n0, _DWRe, 0, [_w], [[() => WorkspaceDescription, 0]]];
593
- var DeleteWorkspaceServiceAccountRequest = [
604
+ var DeleteWorkspaceApiKeyResponse$ = [3, n0, _DWAKRe, 0, [_kN, _wI], [0, 0]];
605
+ var DeleteWorkspaceRequest$ = [3, n0, _DWR, 0, [_wI], [[0, 1]]];
606
+ var DeleteWorkspaceResponse$ = [
607
+ 3,
608
+ n0,
609
+ _DWRe,
610
+ 0,
611
+ [_w],
612
+ [[() => WorkspaceDescription$, 0]],
613
+ ];
614
+ var DeleteWorkspaceServiceAccountRequest$ = [
594
615
  3,
595
616
  n0,
596
617
  _DWSAR,
@@ -601,8 +622,8 @@ var DeleteWorkspaceServiceAccountRequest = [
601
622
  [0, 1],
602
623
  ],
603
624
  ];
604
- var DeleteWorkspaceServiceAccountResponse = [3, n0, _DWSARe, 0, [_sAI, _wI], [0, 0]];
605
- var DeleteWorkspaceServiceAccountTokenRequest = [
625
+ var DeleteWorkspaceServiceAccountResponse$ = [3, n0, _DWSARe, 0, [_sAI, _wI], [0, 0]];
626
+ var DeleteWorkspaceServiceAccountTokenRequest$ = [
606
627
  3,
607
628
  n0,
608
629
  _DWSATR,
@@ -614,7 +635,7 @@ var DeleteWorkspaceServiceAccountTokenRequest = [
614
635
  [0, 1],
615
636
  ],
616
637
  ];
617
- var DeleteWorkspaceServiceAccountTokenResponse = [
638
+ var DeleteWorkspaceServiceAccountTokenResponse$ = [
618
639
  3,
619
640
  n0,
620
641
  _DWSATRe,
@@ -622,17 +643,17 @@ var DeleteWorkspaceServiceAccountTokenResponse = [
622
643
  [_tI, _sAI, _wI],
623
644
  [0, 0, 0],
624
645
  ];
625
- var DescribeWorkspaceAuthenticationRequest = [3, n0, _DWAR, 0, [_wI], [[0, 1]]];
626
- var DescribeWorkspaceAuthenticationResponse = [
646
+ var DescribeWorkspaceAuthenticationRequest$ = [3, n0, _DWAR, 0, [_wI], [[0, 1]]];
647
+ var DescribeWorkspaceAuthenticationResponse$ = [
627
648
  3,
628
649
  n0,
629
650
  _DWARe,
630
651
  0,
631
652
  [_au],
632
- [[() => AuthenticationDescription, 0]],
653
+ [[() => AuthenticationDescription$, 0]],
633
654
  ];
634
- var DescribeWorkspaceConfigurationRequest = [3, n0, _DWCR, 0, [_wI], [[0, 1]]];
635
- var DescribeWorkspaceConfigurationResponse = [
655
+ var DescribeWorkspaceConfigurationRequest$ = [3, n0, _DWCR, 0, [_wI], [[0, 1]]];
656
+ var DescribeWorkspaceConfigurationResponse$ = [
636
657
  3,
637
658
  n0,
638
659
  _DWCRe,
@@ -640,16 +661,16 @@ var DescribeWorkspaceConfigurationResponse = [
640
661
  [_co, _gV],
641
662
  [[() => OverridableConfigurationJson, 0], 0],
642
663
  ];
643
- var DescribeWorkspaceRequest = [3, n0, _DWRes, 0, [_wI], [[0, 1]]];
644
- var DescribeWorkspaceResponse = [
664
+ var DescribeWorkspaceRequest$ = [3, n0, _DWRes, 0, [_wI], [[0, 1]]];
665
+ var DescribeWorkspaceResponse$ = [
645
666
  3,
646
667
  n0,
647
668
  _DWResc,
648
669
  0,
649
670
  [_w],
650
- [[() => WorkspaceDescription, 0]],
671
+ [[() => WorkspaceDescription$, 0]],
651
672
  ];
652
- var DisassociateLicenseRequest = [
673
+ var DisassociateLicenseRequest$ = [
653
674
  3,
654
675
  n0,
655
676
  _DLR,
@@ -660,15 +681,15 @@ var DisassociateLicenseRequest = [
660
681
  [0, 1],
661
682
  ],
662
683
  ];
663
- var DisassociateLicenseResponse = [
684
+ var DisassociateLicenseResponse$ = [
664
685
  3,
665
686
  n0,
666
687
  _DLRi,
667
688
  0,
668
689
  [_w],
669
- [[() => WorkspaceDescription, 0]],
690
+ [[() => WorkspaceDescription$, 0]],
670
691
  ];
671
- var InternalServerException = [
692
+ var InternalServerException$ = [
672
693
  -3,
673
694
  n0,
674
695
  _ISE,
@@ -676,8 +697,8 @@ var InternalServerException = [
676
697
  [_m, _rAS],
677
698
  [0, [1, { [_hH]: _RA }]],
678
699
  ];
679
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
680
- var ListPermissionsRequest = [
700
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
701
+ var ListPermissionsRequest$ = [
681
702
  3,
682
703
  n0,
683
704
  _LPR,
@@ -692,7 +713,7 @@ var ListPermissionsRequest = [
692
713
  [0, 1],
693
714
  ],
694
715
  ];
695
- var ListPermissionsResponse = [
716
+ var ListPermissionsResponse$ = [
696
717
  3,
697
718
  n0,
698
719
  _LPRi,
@@ -700,9 +721,9 @@ var ListPermissionsResponse = [
700
721
  [_nT, _pe],
701
722
  [0, () => PermissionEntryList],
702
723
  ];
703
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
704
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
705
- var ListVersionsRequest = [
724
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
725
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
726
+ var ListVersionsRequest$ = [
706
727
  3,
707
728
  n0,
708
729
  _LVR,
@@ -714,8 +735,8 @@ var ListVersionsRequest = [
714
735
  [0, { [_hQ]: _wi }],
715
736
  ],
716
737
  ];
717
- var ListVersionsResponse = [3, n0, _LVRi, 0, [_nT, _gVr], [0, 64 | 0]];
718
- var ListWorkspaceServiceAccountsRequest = [
738
+ var ListVersionsResponse$ = [3, n0, _LVRi, 0, [_nT, _gVr], [0, 64 | 0]];
739
+ var ListWorkspaceServiceAccountsRequest$ = [
719
740
  3,
720
741
  n0,
721
742
  _LWSAR,
@@ -727,7 +748,7 @@ var ListWorkspaceServiceAccountsRequest = [
727
748
  [0, 1],
728
749
  ],
729
750
  ];
730
- var ListWorkspaceServiceAccountsResponse = [
751
+ var ListWorkspaceServiceAccountsResponse$ = [
731
752
  3,
732
753
  n0,
733
754
  _LWSARi,
@@ -735,7 +756,7 @@ var ListWorkspaceServiceAccountsResponse = [
735
756
  [_nT, _sA, _wI],
736
757
  [0, () => ServiceAccountList, 0],
737
758
  ];
738
- var ListWorkspaceServiceAccountTokensRequest = [
759
+ var ListWorkspaceServiceAccountTokensRequest$ = [
739
760
  3,
740
761
  n0,
741
762
  _LWSATR,
@@ -748,7 +769,7 @@ var ListWorkspaceServiceAccountTokensRequest = [
748
769
  [0, 1],
749
770
  ],
750
771
  ];
751
- var ListWorkspaceServiceAccountTokensResponse = [
772
+ var ListWorkspaceServiceAccountTokensResponse$ = [
752
773
  3,
753
774
  n0,
754
775
  _LWSATRi,
@@ -756,7 +777,7 @@ var ListWorkspaceServiceAccountTokensResponse = [
756
777
  [_nT, _sATe, _sAI, _wI],
757
778
  [0, () => ServiceAccountTokenList, 0, 0],
758
779
  ];
759
- var ListWorkspacesRequest = [
780
+ var ListWorkspacesRequest$ = [
760
781
  3,
761
782
  n0,
762
783
  _LWR,
@@ -767,10 +788,17 @@ var ListWorkspacesRequest = [
767
788
  [0, { [_hQ]: _nT }],
768
789
  ],
769
790
  ];
770
- var ListWorkspacesResponse = [3, n0, _LWRi, 0, [_wo, _nT], [[() => WorkspaceList, 0], 0]];
771
- var NetworkAccessConfiguration = [3, n0, _NAC, 0, [_pLI, _vI], [64 | 0, 64 | 0]];
772
- var PermissionEntry = [3, n0, _PE, 0, [_u, _r], [() => User, 0]];
773
- var ResourceNotFoundException = [
791
+ var ListWorkspacesResponse$ = [
792
+ 3,
793
+ n0,
794
+ _LWRi,
795
+ 0,
796
+ [_wo, _nT],
797
+ [[() => WorkspaceList, 0], 0],
798
+ ];
799
+ var NetworkAccessConfiguration$ = [3, n0, _NAC, 0, [_pLI, _vI], [64 | 0, 64 | 0]];
800
+ var PermissionEntry$ = [3, n0, _PE, 0, [_u, _r], [() => User$, 0]];
801
+ var ResourceNotFoundException$ = [
774
802
  -3,
775
803
  n0,
776
804
  _RNFE,
@@ -778,8 +806,8 @@ var ResourceNotFoundException = [
778
806
  [_m, _rI, _rT],
779
807
  [0, 0, 0],
780
808
  ];
781
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
782
- var RoleValues = [
809
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
810
+ var RoleValues$ = [
783
811
  3,
784
812
  n0,
785
813
  _RV,
@@ -790,17 +818,17 @@ var RoleValues = [
790
818
  [() => RoleValueList, 0],
791
819
  ],
792
820
  ];
793
- var SamlAuthentication = [3, n0, _SA, 0, [_st, _co], [0, [() => SamlConfiguration, 0]]];
794
- var SamlConfiguration = [
821
+ var SamlAuthentication$ = [3, n0, _SA, 0, [_st, _co], [0, [() => SamlConfiguration$, 0]]];
822
+ var SamlConfiguration$ = [
795
823
  3,
796
824
  n0,
797
825
  _SC,
798
826
  0,
799
827
  [_iM, _aA, _rV, _aO, _lVD],
800
- [() => IdpMetadata, () => AssertionAttributes, [() => RoleValues, 0], 64 | 0, 1],
828
+ [() => IdpMetadata$, () => AssertionAttributes$, [() => RoleValues$, 0], 64 | 0, 1],
801
829
  ];
802
- var ServiceAccountSummary = [3, n0, _SAS, 0, [_i, _n, _iD, _gR], [0, 0, 0, 0]];
803
- var ServiceAccountTokenSummary = [
830
+ var ServiceAccountSummary$ = [3, n0, _SAS, 0, [_i, _n, _iD, _gR], [0, 0, 0, 0]];
831
+ var ServiceAccountTokenSummary$ = [
804
832
  3,
805
833
  n0,
806
834
  _SATS,
@@ -808,7 +836,7 @@ var ServiceAccountTokenSummary = [
808
836
  [_i, _n, _cA, _eA, _lUA],
809
837
  [0, 0, 4, 4, 4],
810
838
  ];
811
- var ServiceAccountTokenSummaryWithKey = [
839
+ var ServiceAccountTokenSummaryWithKey$ = [
812
840
  3,
813
841
  n0,
814
842
  _SATSWK,
@@ -816,7 +844,7 @@ var ServiceAccountTokenSummaryWithKey = [
816
844
  [_i, _n, _k],
817
845
  [0, 0, [() => ServiceAccountTokenKey, 0]],
818
846
  ];
819
- var ServiceQuotaExceededException = [
847
+ var ServiceQuotaExceededException$ = [
820
848
  -3,
821
849
  n0,
822
850
  _SQEE,
@@ -824,10 +852,10 @@ var ServiceQuotaExceededException = [
824
852
  [_m, _rI, _rT, _sC, _qC],
825
853
  [0, 0, 0, 0, 0],
826
854
  ];
827
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
828
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
829
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
830
- var ThrottlingException = [
855
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
856
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
857
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
858
+ var ThrottlingException$ = [
831
859
  -3,
832
860
  n0,
833
861
  _TE,
@@ -835,8 +863,8 @@ var ThrottlingException = [
835
863
  [_m, _sC, _qC, _rAS],
836
864
  [0, 0, 0, [1, { [_hH]: _RA }]],
837
865
  ];
838
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
839
- var UntagResourceRequest = [
866
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
867
+ var UntagResourceRequest$ = [
840
868
  3,
841
869
  n0,
842
870
  _URR,
@@ -847,10 +875,10 @@ var UntagResourceRequest = [
847
875
  [64 | 0, { [_hQ]: _tK }],
848
876
  ],
849
877
  ];
850
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
851
- var UpdateError = [3, n0, _UE, 0, [_cod, _m, _cB], [1, 0, () => UpdateInstruction]];
852
- var UpdateInstruction = [3, n0, _UI, 0, [_ac, _r, _us], [0, 0, () => UserList]];
853
- var UpdatePermissionsRequest = [
878
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
879
+ var UpdateError$ = [3, n0, _UE, 0, [_cod, _m, _cB], [1, 0, () => UpdateInstruction$]];
880
+ var UpdateInstruction$ = [3, n0, _UI, 0, [_ac, _r, _us], [0, 0, () => UserList]];
881
+ var UpdatePermissionsRequest$ = [
854
882
  3,
855
883
  n0,
856
884
  _UPR,
@@ -858,24 +886,24 @@ var UpdatePermissionsRequest = [
858
886
  [_uIB, _wI],
859
887
  [() => UpdateInstructionBatch, [0, 1]],
860
888
  ];
861
- var UpdatePermissionsResponse = [3, n0, _UPRp, 0, [_er], [() => UpdateErrorList]];
862
- var UpdateWorkspaceAuthenticationRequest = [
889
+ var UpdatePermissionsResponse$ = [3, n0, _UPRp, 0, [_er], [() => UpdateErrorList]];
890
+ var UpdateWorkspaceAuthenticationRequest$ = [
863
891
  3,
864
892
  n0,
865
893
  _UWAR,
866
894
  0,
867
895
  [_wI, _aP, _sCa],
868
- [[0, 1], 64 | 0, [() => SamlConfiguration, 0]],
896
+ [[0, 1], 64 | 0, [() => SamlConfiguration$, 0]],
869
897
  ];
870
- var UpdateWorkspaceAuthenticationResponse = [
898
+ var UpdateWorkspaceAuthenticationResponse$ = [
871
899
  3,
872
900
  n0,
873
901
  _UWARp,
874
902
  0,
875
903
  [_au],
876
- [[() => AuthenticationDescription, 0]],
904
+ [[() => AuthenticationDescription$, 0]],
877
905
  ];
878
- var UpdateWorkspaceConfigurationRequest = [
906
+ var UpdateWorkspaceConfigurationRequest$ = [
879
907
  3,
880
908
  n0,
881
909
  _UWCR,
@@ -883,8 +911,8 @@ var UpdateWorkspaceConfigurationRequest = [
883
911
  [_co, _wI, _gV],
884
912
  [[() => OverridableConfigurationJson, 0], [0, 1], 0],
885
913
  ];
886
- var UpdateWorkspaceConfigurationResponse = [3, n0, _UWCRp, 0, [], []];
887
- var UpdateWorkspaceRequest = [
914
+ var UpdateWorkspaceConfigurationResponse$ = [3, n0, _UWCRp, 0, [], []];
915
+ var UpdateWorkspaceRequest$ = [
888
916
  3,
889
917
  n0,
890
918
  _UWR,
@@ -902,15 +930,22 @@ var UpdateWorkspaceRequest = [
902
930
  64 | 0,
903
931
  [() => OrganizationalUnitList, 0],
904
932
  [() => IamRoleArn, 0],
905
- () => VpcConfiguration,
933
+ () => VpcConfiguration$,
906
934
  2,
907
- () => NetworkAccessConfiguration,
935
+ () => NetworkAccessConfiguration$,
908
936
  2,
909
937
  ],
910
938
  ];
911
- var UpdateWorkspaceResponse = [3, n0, _UWRp, 0, [_w], [[() => WorkspaceDescription, 0]]];
912
- var User = [3, n0, _U, 0, [_i, _ty], [0, 0]];
913
- var ValidationException = [
939
+ var UpdateWorkspaceResponse$ = [
940
+ 3,
941
+ n0,
942
+ _UWRp,
943
+ 0,
944
+ [_w],
945
+ [[() => WorkspaceDescription$, 0]],
946
+ ];
947
+ var User$ = [3, n0, _U, 0, [_i, _ty], [0, 0]];
948
+ var ValidationException$ = [
914
949
  -3,
915
950
  n0,
916
951
  _VE,
@@ -918,10 +953,10 @@ var ValidationException = [
918
953
  [_m, _re, _fL],
919
954
  [0, 0, () => ValidationExceptionFieldList],
920
955
  ];
921
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
922
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
923
- var VpcConfiguration = [3, n0, _VC, 0, [_sGI, _sI], [64 | 0, 64 | 0]];
924
- var WorkspaceDescription = [
956
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
957
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
958
+ var VpcConfiguration$ = [3, n0, _VC, 0, [_sGI, _sI], [64 | 0, 64 | 0]];
959
+ var WorkspaceDescription$ = [
925
960
  3,
926
961
  n0,
927
962
  _WD,
@@ -974,14 +1009,14 @@ var WorkspaceDescription = [
974
1009
  2,
975
1010
  4,
976
1011
  4,
977
- () => AuthenticationSummary,
1012
+ () => AuthenticationSummary$,
978
1013
  128 | 0,
979
- () => VpcConfiguration,
980
- () => NetworkAccessConfiguration,
1014
+ () => VpcConfiguration$,
1015
+ () => NetworkAccessConfiguration$,
981
1016
  0,
982
1017
  ],
983
1018
  ];
984
- var WorkspaceSummary = [
1019
+ var WorkspaceSummary$ = [
985
1020
  3,
986
1021
  n0,
987
1022
  _WS,
@@ -997,224 +1032,224 @@ var WorkspaceSummary = [
997
1032
  [() => WorkspaceName, 0],
998
1033
  64 | 0,
999
1034
  0,
1000
- () => AuthenticationSummary,
1035
+ () => AuthenticationSummary$,
1001
1036
  128 | 0,
1002
1037
  0,
1003
1038
  0,
1004
1039
  ],
1005
1040
  ];
1006
- var GrafanaServiceException = [-3, _sm, "GrafanaServiceException", 0, [], []];
1007
- schema.TypeRegistry.for(_sm).registerError(GrafanaServiceException, GrafanaServiceException$1);
1041
+ var GrafanaServiceException$ = [-3, _sm, "GrafanaServiceException", 0, [], []];
1042
+ schema.TypeRegistry.for(_sm).registerError(GrafanaServiceException$, GrafanaServiceException);
1008
1043
  var OrganizationalUnitList = [1, n0, _OUL, 8, 0];
1009
- var PermissionEntryList = [1, n0, _PEL, 0, () => PermissionEntry];
1044
+ var PermissionEntryList = [1, n0, _PEL, 0, () => PermissionEntry$];
1010
1045
  var RoleValueList = [1, n0, _RVL, 8, 0];
1011
- var ServiceAccountList = [1, n0, _SAL, 0, () => ServiceAccountSummary];
1012
- var ServiceAccountTokenList = [1, n0, _SATL, 0, () => ServiceAccountTokenSummary];
1013
- var UpdateErrorList = [1, n0, _UEL, 0, () => UpdateError];
1014
- var UpdateInstructionBatch = [1, n0, _UIB, 0, () => UpdateInstruction];
1015
- var UserList = [1, n0, _UL, 0, () => User];
1016
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1017
- var WorkspaceList = [1, n0, _WL, 0, [() => WorkspaceSummary, 0]];
1018
- var IdpMetadata = [3, n0, _IM, 0, [_ur, _x], [0, 0]];
1019
- var AssociateLicense = [
1046
+ var ServiceAccountList = [1, n0, _SAL, 0, () => ServiceAccountSummary$];
1047
+ var ServiceAccountTokenList = [1, n0, _SATL, 0, () => ServiceAccountTokenSummary$];
1048
+ var UpdateErrorList = [1, n0, _UEL, 0, () => UpdateError$];
1049
+ var UpdateInstructionBatch = [1, n0, _UIB, 0, () => UpdateInstruction$];
1050
+ var UserList = [1, n0, _UL, 0, () => User$];
1051
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
1052
+ var WorkspaceList = [1, n0, _WL, 0, [() => WorkspaceSummary$, 0]];
1053
+ var IdpMetadata$ = [3, n0, _IM, 0, [_ur, _x], [0, 0]];
1054
+ var AssociateLicense$ = [
1020
1055
  9,
1021
1056
  n0,
1022
1057
  _AL,
1023
1058
  { [_h]: ["POST", "/workspaces/{workspaceId}/licenses/{licenseType}", 202] },
1024
- () => AssociateLicenseRequest,
1025
- () => AssociateLicenseResponse,
1059
+ () => AssociateLicenseRequest$,
1060
+ () => AssociateLicenseResponse$,
1026
1061
  ];
1027
- var CreateWorkspace = [
1062
+ var CreateWorkspace$ = [
1028
1063
  9,
1029
1064
  n0,
1030
1065
  _CW,
1031
1066
  { [_h]: ["POST", "/workspaces", 202] },
1032
- () => CreateWorkspaceRequest,
1033
- () => CreateWorkspaceResponse,
1067
+ () => CreateWorkspaceRequest$,
1068
+ () => CreateWorkspaceResponse$,
1034
1069
  ];
1035
- var CreateWorkspaceApiKey = [
1070
+ var CreateWorkspaceApiKey$ = [
1036
1071
  9,
1037
1072
  n0,
1038
1073
  _CWAK,
1039
1074
  { [_h]: ["POST", "/workspaces/{workspaceId}/apikeys", 200] },
1040
- () => CreateWorkspaceApiKeyRequest,
1041
- () => CreateWorkspaceApiKeyResponse,
1075
+ () => CreateWorkspaceApiKeyRequest$,
1076
+ () => CreateWorkspaceApiKeyResponse$,
1042
1077
  ];
1043
- var CreateWorkspaceServiceAccount = [
1078
+ var CreateWorkspaceServiceAccount$ = [
1044
1079
  9,
1045
1080
  n0,
1046
1081
  _CWSA,
1047
1082
  { [_h]: ["POST", "/workspaces/{workspaceId}/serviceaccounts", 200] },
1048
- () => CreateWorkspaceServiceAccountRequest,
1049
- () => CreateWorkspaceServiceAccountResponse,
1083
+ () => CreateWorkspaceServiceAccountRequest$,
1084
+ () => CreateWorkspaceServiceAccountResponse$,
1050
1085
  ];
1051
- var CreateWorkspaceServiceAccountToken = [
1086
+ var CreateWorkspaceServiceAccountToken$ = [
1052
1087
  9,
1053
1088
  n0,
1054
1089
  _CWSAT,
1055
1090
  { [_h]: ["POST", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens", 200] },
1056
- () => CreateWorkspaceServiceAccountTokenRequest,
1057
- () => CreateWorkspaceServiceAccountTokenResponse,
1091
+ () => CreateWorkspaceServiceAccountTokenRequest$,
1092
+ () => CreateWorkspaceServiceAccountTokenResponse$,
1058
1093
  ];
1059
- var DeleteWorkspace = [
1094
+ var DeleteWorkspace$ = [
1060
1095
  9,
1061
1096
  n0,
1062
1097
  _DW,
1063
1098
  { [_h]: ["DELETE", "/workspaces/{workspaceId}", 202] },
1064
- () => DeleteWorkspaceRequest,
1065
- () => DeleteWorkspaceResponse,
1099
+ () => DeleteWorkspaceRequest$,
1100
+ () => DeleteWorkspaceResponse$,
1066
1101
  ];
1067
- var DeleteWorkspaceApiKey = [
1102
+ var DeleteWorkspaceApiKey$ = [
1068
1103
  9,
1069
1104
  n0,
1070
1105
  _DWAK,
1071
1106
  { [_h]: ["DELETE", "/workspaces/{workspaceId}/apikeys/{keyName}", 200] },
1072
- () => DeleteWorkspaceApiKeyRequest,
1073
- () => DeleteWorkspaceApiKeyResponse,
1107
+ () => DeleteWorkspaceApiKeyRequest$,
1108
+ () => DeleteWorkspaceApiKeyResponse$,
1074
1109
  ];
1075
- var DeleteWorkspaceServiceAccount = [
1110
+ var DeleteWorkspaceServiceAccount$ = [
1076
1111
  9,
1077
1112
  n0,
1078
1113
  _DWSA,
1079
1114
  { [_h]: ["DELETE", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}", 200] },
1080
- () => DeleteWorkspaceServiceAccountRequest,
1081
- () => DeleteWorkspaceServiceAccountResponse,
1115
+ () => DeleteWorkspaceServiceAccountRequest$,
1116
+ () => DeleteWorkspaceServiceAccountResponse$,
1082
1117
  ];
1083
- var DeleteWorkspaceServiceAccountToken = [
1118
+ var DeleteWorkspaceServiceAccountToken$ = [
1084
1119
  9,
1085
1120
  n0,
1086
1121
  _DWSAT,
1087
1122
  { [_h]: ["DELETE", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens/{tokenId}", 200] },
1088
- () => DeleteWorkspaceServiceAccountTokenRequest,
1089
- () => DeleteWorkspaceServiceAccountTokenResponse,
1123
+ () => DeleteWorkspaceServiceAccountTokenRequest$,
1124
+ () => DeleteWorkspaceServiceAccountTokenResponse$,
1090
1125
  ];
1091
- var DescribeWorkspace = [
1126
+ var DescribeWorkspace$ = [
1092
1127
  9,
1093
1128
  n0,
1094
1129
  _DWe,
1095
1130
  { [_h]: ["GET", "/workspaces/{workspaceId}", 200] },
1096
- () => DescribeWorkspaceRequest,
1097
- () => DescribeWorkspaceResponse,
1131
+ () => DescribeWorkspaceRequest$,
1132
+ () => DescribeWorkspaceResponse$,
1098
1133
  ];
1099
- var DescribeWorkspaceAuthentication = [
1134
+ var DescribeWorkspaceAuthentication$ = [
1100
1135
  9,
1101
1136
  n0,
1102
1137
  _DWA,
1103
1138
  { [_h]: ["GET", "/workspaces/{workspaceId}/authentication", 200] },
1104
- () => DescribeWorkspaceAuthenticationRequest,
1105
- () => DescribeWorkspaceAuthenticationResponse,
1139
+ () => DescribeWorkspaceAuthenticationRequest$,
1140
+ () => DescribeWorkspaceAuthenticationResponse$,
1106
1141
  ];
1107
- var DescribeWorkspaceConfiguration = [
1142
+ var DescribeWorkspaceConfiguration$ = [
1108
1143
  9,
1109
1144
  n0,
1110
1145
  _DWC,
1111
1146
  { [_h]: ["GET", "/workspaces/{workspaceId}/configuration", 200] },
1112
- () => DescribeWorkspaceConfigurationRequest,
1113
- () => DescribeWorkspaceConfigurationResponse,
1147
+ () => DescribeWorkspaceConfigurationRequest$,
1148
+ () => DescribeWorkspaceConfigurationResponse$,
1114
1149
  ];
1115
- var DisassociateLicense = [
1150
+ var DisassociateLicense$ = [
1116
1151
  9,
1117
1152
  n0,
1118
1153
  _DL,
1119
1154
  { [_h]: ["DELETE", "/workspaces/{workspaceId}/licenses/{licenseType}", 202] },
1120
- () => DisassociateLicenseRequest,
1121
- () => DisassociateLicenseResponse,
1155
+ () => DisassociateLicenseRequest$,
1156
+ () => DisassociateLicenseResponse$,
1122
1157
  ];
1123
- var ListPermissions = [
1158
+ var ListPermissions$ = [
1124
1159
  9,
1125
1160
  n0,
1126
1161
  _LP,
1127
1162
  { [_h]: ["GET", "/workspaces/{workspaceId}/permissions", 200] },
1128
- () => ListPermissionsRequest,
1129
- () => ListPermissionsResponse,
1163
+ () => ListPermissionsRequest$,
1164
+ () => ListPermissionsResponse$,
1130
1165
  ];
1131
- var ListTagsForResource = [
1166
+ var ListTagsForResource$ = [
1132
1167
  9,
1133
1168
  n0,
1134
1169
  _LTFR,
1135
1170
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
1136
- () => ListTagsForResourceRequest,
1137
- () => ListTagsForResourceResponse,
1171
+ () => ListTagsForResourceRequest$,
1172
+ () => ListTagsForResourceResponse$,
1138
1173
  ];
1139
- var ListVersions = [
1174
+ var ListVersions$ = [
1140
1175
  9,
1141
1176
  n0,
1142
1177
  _LV,
1143
1178
  { [_h]: ["GET", "/versions", 200] },
1144
- () => ListVersionsRequest,
1145
- () => ListVersionsResponse,
1179
+ () => ListVersionsRequest$,
1180
+ () => ListVersionsResponse$,
1146
1181
  ];
1147
- var ListWorkspaces = [
1182
+ var ListWorkspaces$ = [
1148
1183
  9,
1149
1184
  n0,
1150
1185
  _LW,
1151
1186
  { [_h]: ["GET", "/workspaces", 200] },
1152
- () => ListWorkspacesRequest,
1153
- () => ListWorkspacesResponse,
1187
+ () => ListWorkspacesRequest$,
1188
+ () => ListWorkspacesResponse$,
1154
1189
  ];
1155
- var ListWorkspaceServiceAccounts = [
1190
+ var ListWorkspaceServiceAccounts$ = [
1156
1191
  9,
1157
1192
  n0,
1158
1193
  _LWSA,
1159
1194
  { [_h]: ["GET", "/workspaces/{workspaceId}/serviceaccounts", 200] },
1160
- () => ListWorkspaceServiceAccountsRequest,
1161
- () => ListWorkspaceServiceAccountsResponse,
1195
+ () => ListWorkspaceServiceAccountsRequest$,
1196
+ () => ListWorkspaceServiceAccountsResponse$,
1162
1197
  ];
1163
- var ListWorkspaceServiceAccountTokens = [
1198
+ var ListWorkspaceServiceAccountTokens$ = [
1164
1199
  9,
1165
1200
  n0,
1166
1201
  _LWSAT,
1167
1202
  { [_h]: ["GET", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens", 200] },
1168
- () => ListWorkspaceServiceAccountTokensRequest,
1169
- () => ListWorkspaceServiceAccountTokensResponse,
1203
+ () => ListWorkspaceServiceAccountTokensRequest$,
1204
+ () => ListWorkspaceServiceAccountTokensResponse$,
1170
1205
  ];
1171
- var TagResource = [
1206
+ var TagResource$ = [
1172
1207
  9,
1173
1208
  n0,
1174
1209
  _TR,
1175
1210
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
1176
- () => TagResourceRequest,
1177
- () => TagResourceResponse,
1211
+ () => TagResourceRequest$,
1212
+ () => TagResourceResponse$,
1178
1213
  ];
1179
- var UntagResource = [
1214
+ var UntagResource$ = [
1180
1215
  9,
1181
1216
  n0,
1182
1217
  _UR,
1183
1218
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
1184
- () => UntagResourceRequest,
1185
- () => UntagResourceResponse,
1219
+ () => UntagResourceRequest$,
1220
+ () => UntagResourceResponse$,
1186
1221
  ];
1187
- var UpdatePermissions = [
1222
+ var UpdatePermissions$ = [
1188
1223
  9,
1189
1224
  n0,
1190
1225
  _UP,
1191
1226
  { [_h]: ["PATCH", "/workspaces/{workspaceId}/permissions", 200] },
1192
- () => UpdatePermissionsRequest,
1193
- () => UpdatePermissionsResponse,
1227
+ () => UpdatePermissionsRequest$,
1228
+ () => UpdatePermissionsResponse$,
1194
1229
  ];
1195
- var UpdateWorkspace = [
1230
+ var UpdateWorkspace$ = [
1196
1231
  9,
1197
1232
  n0,
1198
1233
  _UW,
1199
1234
  { [_h]: ["PUT", "/workspaces/{workspaceId}", 202] },
1200
- () => UpdateWorkspaceRequest,
1201
- () => UpdateWorkspaceResponse,
1235
+ () => UpdateWorkspaceRequest$,
1236
+ () => UpdateWorkspaceResponse$,
1202
1237
  ];
1203
- var UpdateWorkspaceAuthentication = [
1238
+ var UpdateWorkspaceAuthentication$ = [
1204
1239
  9,
1205
1240
  n0,
1206
1241
  _UWA,
1207
1242
  { [_h]: ["POST", "/workspaces/{workspaceId}/authentication", 200] },
1208
- () => UpdateWorkspaceAuthenticationRequest,
1209
- () => UpdateWorkspaceAuthenticationResponse,
1243
+ () => UpdateWorkspaceAuthenticationRequest$,
1244
+ () => UpdateWorkspaceAuthenticationResponse$,
1210
1245
  ];
1211
- var UpdateWorkspaceConfiguration = [
1246
+ var UpdateWorkspaceConfiguration$ = [
1212
1247
  9,
1213
1248
  n0,
1214
1249
  _UWC,
1215
1250
  { [_h]: ["PUT", "/workspaces/{workspaceId}/configuration", 202] },
1216
- () => UpdateWorkspaceConfigurationRequest,
1217
- () => UpdateWorkspaceConfigurationResponse,
1251
+ () => UpdateWorkspaceConfigurationRequest$,
1252
+ () => UpdateWorkspaceConfigurationResponse$,
1218
1253
  ];
1219
1254
 
1220
1255
  class AssociateLicenseCommand extends smithyClient.Command
@@ -1225,7 +1260,7 @@ class AssociateLicenseCommand extends smithyClient.Command
1225
1260
  })
1226
1261
  .s("AWSGrafanaControlPlane", "AssociateLicense", {})
1227
1262
  .n("GrafanaClient", "AssociateLicenseCommand")
1228
- .sc(AssociateLicense)
1263
+ .sc(AssociateLicense$)
1229
1264
  .build() {
1230
1265
  }
1231
1266
 
@@ -1237,7 +1272,7 @@ class CreateWorkspaceApiKeyCommand extends smithyClient.Command
1237
1272
  })
1238
1273
  .s("AWSGrafanaControlPlane", "CreateWorkspaceApiKey", {})
1239
1274
  .n("GrafanaClient", "CreateWorkspaceApiKeyCommand")
1240
- .sc(CreateWorkspaceApiKey)
1275
+ .sc(CreateWorkspaceApiKey$)
1241
1276
  .build() {
1242
1277
  }
1243
1278
 
@@ -1249,7 +1284,7 @@ class CreateWorkspaceCommand extends smithyClient.Command
1249
1284
  })
1250
1285
  .s("AWSGrafanaControlPlane", "CreateWorkspace", {})
1251
1286
  .n("GrafanaClient", "CreateWorkspaceCommand")
1252
- .sc(CreateWorkspace)
1287
+ .sc(CreateWorkspace$)
1253
1288
  .build() {
1254
1289
  }
1255
1290
 
@@ -1261,7 +1296,7 @@ class CreateWorkspaceServiceAccountCommand extends smithyClient.Command
1261
1296
  })
1262
1297
  .s("AWSGrafanaControlPlane", "CreateWorkspaceServiceAccount", {})
1263
1298
  .n("GrafanaClient", "CreateWorkspaceServiceAccountCommand")
1264
- .sc(CreateWorkspaceServiceAccount)
1299
+ .sc(CreateWorkspaceServiceAccount$)
1265
1300
  .build() {
1266
1301
  }
1267
1302
 
@@ -1273,7 +1308,7 @@ class CreateWorkspaceServiceAccountTokenCommand extends smithyClient.Command
1273
1308
  })
1274
1309
  .s("AWSGrafanaControlPlane", "CreateWorkspaceServiceAccountToken", {})
1275
1310
  .n("GrafanaClient", "CreateWorkspaceServiceAccountTokenCommand")
1276
- .sc(CreateWorkspaceServiceAccountToken)
1311
+ .sc(CreateWorkspaceServiceAccountToken$)
1277
1312
  .build() {
1278
1313
  }
1279
1314
 
@@ -1285,7 +1320,7 @@ class DeleteWorkspaceApiKeyCommand extends smithyClient.Command
1285
1320
  })
1286
1321
  .s("AWSGrafanaControlPlane", "DeleteWorkspaceApiKey", {})
1287
1322
  .n("GrafanaClient", "DeleteWorkspaceApiKeyCommand")
1288
- .sc(DeleteWorkspaceApiKey)
1323
+ .sc(DeleteWorkspaceApiKey$)
1289
1324
  .build() {
1290
1325
  }
1291
1326
 
@@ -1297,7 +1332,7 @@ class DeleteWorkspaceCommand extends smithyClient.Command
1297
1332
  })
1298
1333
  .s("AWSGrafanaControlPlane", "DeleteWorkspace", {})
1299
1334
  .n("GrafanaClient", "DeleteWorkspaceCommand")
1300
- .sc(DeleteWorkspace)
1335
+ .sc(DeleteWorkspace$)
1301
1336
  .build() {
1302
1337
  }
1303
1338
 
@@ -1309,7 +1344,7 @@ class DeleteWorkspaceServiceAccountCommand extends smithyClient.Command
1309
1344
  })
1310
1345
  .s("AWSGrafanaControlPlane", "DeleteWorkspaceServiceAccount", {})
1311
1346
  .n("GrafanaClient", "DeleteWorkspaceServiceAccountCommand")
1312
- .sc(DeleteWorkspaceServiceAccount)
1347
+ .sc(DeleteWorkspaceServiceAccount$)
1313
1348
  .build() {
1314
1349
  }
1315
1350
 
@@ -1321,7 +1356,7 @@ class DeleteWorkspaceServiceAccountTokenCommand extends smithyClient.Command
1321
1356
  })
1322
1357
  .s("AWSGrafanaControlPlane", "DeleteWorkspaceServiceAccountToken", {})
1323
1358
  .n("GrafanaClient", "DeleteWorkspaceServiceAccountTokenCommand")
1324
- .sc(DeleteWorkspaceServiceAccountToken)
1359
+ .sc(DeleteWorkspaceServiceAccountToken$)
1325
1360
  .build() {
1326
1361
  }
1327
1362
 
@@ -1333,7 +1368,7 @@ class DescribeWorkspaceAuthenticationCommand extends smithyClient.Command
1333
1368
  })
1334
1369
  .s("AWSGrafanaControlPlane", "DescribeWorkspaceAuthentication", {})
1335
1370
  .n("GrafanaClient", "DescribeWorkspaceAuthenticationCommand")
1336
- .sc(DescribeWorkspaceAuthentication)
1371
+ .sc(DescribeWorkspaceAuthentication$)
1337
1372
  .build() {
1338
1373
  }
1339
1374
 
@@ -1345,7 +1380,7 @@ class DescribeWorkspaceCommand extends smithyClient.Command
1345
1380
  })
1346
1381
  .s("AWSGrafanaControlPlane", "DescribeWorkspace", {})
1347
1382
  .n("GrafanaClient", "DescribeWorkspaceCommand")
1348
- .sc(DescribeWorkspace)
1383
+ .sc(DescribeWorkspace$)
1349
1384
  .build() {
1350
1385
  }
1351
1386
 
@@ -1357,7 +1392,7 @@ class DescribeWorkspaceConfigurationCommand extends smithyClient.Command
1357
1392
  })
1358
1393
  .s("AWSGrafanaControlPlane", "DescribeWorkspaceConfiguration", {})
1359
1394
  .n("GrafanaClient", "DescribeWorkspaceConfigurationCommand")
1360
- .sc(DescribeWorkspaceConfiguration)
1395
+ .sc(DescribeWorkspaceConfiguration$)
1361
1396
  .build() {
1362
1397
  }
1363
1398
 
@@ -1369,7 +1404,7 @@ class DisassociateLicenseCommand extends smithyClient.Command
1369
1404
  })
1370
1405
  .s("AWSGrafanaControlPlane", "DisassociateLicense", {})
1371
1406
  .n("GrafanaClient", "DisassociateLicenseCommand")
1372
- .sc(DisassociateLicense)
1407
+ .sc(DisassociateLicense$)
1373
1408
  .build() {
1374
1409
  }
1375
1410
 
@@ -1381,7 +1416,7 @@ class ListPermissionsCommand extends smithyClient.Command
1381
1416
  })
1382
1417
  .s("AWSGrafanaControlPlane", "ListPermissions", {})
1383
1418
  .n("GrafanaClient", "ListPermissionsCommand")
1384
- .sc(ListPermissions)
1419
+ .sc(ListPermissions$)
1385
1420
  .build() {
1386
1421
  }
1387
1422
 
@@ -1393,7 +1428,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1393
1428
  })
1394
1429
  .s("AWSGrafanaControlPlane", "ListTagsForResource", {})
1395
1430
  .n("GrafanaClient", "ListTagsForResourceCommand")
1396
- .sc(ListTagsForResource)
1431
+ .sc(ListTagsForResource$)
1397
1432
  .build() {
1398
1433
  }
1399
1434
 
@@ -1405,7 +1440,7 @@ class ListVersionsCommand extends smithyClient.Command
1405
1440
  })
1406
1441
  .s("AWSGrafanaControlPlane", "ListVersions", {})
1407
1442
  .n("GrafanaClient", "ListVersionsCommand")
1408
- .sc(ListVersions)
1443
+ .sc(ListVersions$)
1409
1444
  .build() {
1410
1445
  }
1411
1446
 
@@ -1417,7 +1452,7 @@ class ListWorkspacesCommand extends smithyClient.Command
1417
1452
  })
1418
1453
  .s("AWSGrafanaControlPlane", "ListWorkspaces", {})
1419
1454
  .n("GrafanaClient", "ListWorkspacesCommand")
1420
- .sc(ListWorkspaces)
1455
+ .sc(ListWorkspaces$)
1421
1456
  .build() {
1422
1457
  }
1423
1458
 
@@ -1429,7 +1464,7 @@ class ListWorkspaceServiceAccountsCommand extends smithyClient.Command
1429
1464
  })
1430
1465
  .s("AWSGrafanaControlPlane", "ListWorkspaceServiceAccounts", {})
1431
1466
  .n("GrafanaClient", "ListWorkspaceServiceAccountsCommand")
1432
- .sc(ListWorkspaceServiceAccounts)
1467
+ .sc(ListWorkspaceServiceAccounts$)
1433
1468
  .build() {
1434
1469
  }
1435
1470
 
@@ -1441,7 +1476,7 @@ class ListWorkspaceServiceAccountTokensCommand extends smithyClient.Command
1441
1476
  })
1442
1477
  .s("AWSGrafanaControlPlane", "ListWorkspaceServiceAccountTokens", {})
1443
1478
  .n("GrafanaClient", "ListWorkspaceServiceAccountTokensCommand")
1444
- .sc(ListWorkspaceServiceAccountTokens)
1479
+ .sc(ListWorkspaceServiceAccountTokens$)
1445
1480
  .build() {
1446
1481
  }
1447
1482
 
@@ -1453,7 +1488,7 @@ class TagResourceCommand extends smithyClient.Command
1453
1488
  })
1454
1489
  .s("AWSGrafanaControlPlane", "TagResource", {})
1455
1490
  .n("GrafanaClient", "TagResourceCommand")
1456
- .sc(TagResource)
1491
+ .sc(TagResource$)
1457
1492
  .build() {
1458
1493
  }
1459
1494
 
@@ -1465,7 +1500,7 @@ class UntagResourceCommand extends smithyClient.Command
1465
1500
  })
1466
1501
  .s("AWSGrafanaControlPlane", "UntagResource", {})
1467
1502
  .n("GrafanaClient", "UntagResourceCommand")
1468
- .sc(UntagResource)
1503
+ .sc(UntagResource$)
1469
1504
  .build() {
1470
1505
  }
1471
1506
 
@@ -1477,7 +1512,7 @@ class UpdatePermissionsCommand extends smithyClient.Command
1477
1512
  })
1478
1513
  .s("AWSGrafanaControlPlane", "UpdatePermissions", {})
1479
1514
  .n("GrafanaClient", "UpdatePermissionsCommand")
1480
- .sc(UpdatePermissions)
1515
+ .sc(UpdatePermissions$)
1481
1516
  .build() {
1482
1517
  }
1483
1518
 
@@ -1489,7 +1524,7 @@ class UpdateWorkspaceAuthenticationCommand extends smithyClient.Command
1489
1524
  })
1490
1525
  .s("AWSGrafanaControlPlane", "UpdateWorkspaceAuthentication", {})
1491
1526
  .n("GrafanaClient", "UpdateWorkspaceAuthenticationCommand")
1492
- .sc(UpdateWorkspaceAuthentication)
1527
+ .sc(UpdateWorkspaceAuthentication$)
1493
1528
  .build() {
1494
1529
  }
1495
1530
 
@@ -1501,7 +1536,7 @@ class UpdateWorkspaceCommand extends smithyClient.Command
1501
1536
  })
1502
1537
  .s("AWSGrafanaControlPlane", "UpdateWorkspace", {})
1503
1538
  .n("GrafanaClient", "UpdateWorkspaceCommand")
1504
- .sc(UpdateWorkspace)
1539
+ .sc(UpdateWorkspace$)
1505
1540
  .build() {
1506
1541
  }
1507
1542
 
@@ -1513,7 +1548,7 @@ class UpdateWorkspaceConfigurationCommand extends smithyClient.Command
1513
1548
  })
1514
1549
  .s("AWSGrafanaControlPlane", "UpdateWorkspaceConfiguration", {})
1515
1550
  .n("GrafanaClient", "UpdateWorkspaceConfigurationCommand")
1516
- .sc(UpdateWorkspaceConfiguration)
1551
+ .sc(UpdateWorkspaceConfiguration$)
1517
1552
  .build() {
1518
1553
  }
1519
1554
 
@@ -1635,53 +1670,156 @@ Object.defineProperty(exports, "__Client", {
1635
1670
  enumerable: true,
1636
1671
  get: function () { return smithyClient.Client; }
1637
1672
  });
1638
- exports.AccessDeniedException = AccessDeniedException$1;
1673
+ exports.AccessDeniedException = AccessDeniedException;
1674
+ exports.AccessDeniedException$ = AccessDeniedException$;
1639
1675
  exports.AccountAccessType = AccountAccessType;
1676
+ exports.AssertionAttributes$ = AssertionAttributes$;
1677
+ exports.AssociateLicense$ = AssociateLicense$;
1640
1678
  exports.AssociateLicenseCommand = AssociateLicenseCommand;
1679
+ exports.AssociateLicenseRequest$ = AssociateLicenseRequest$;
1680
+ exports.AssociateLicenseResponse$ = AssociateLicenseResponse$;
1681
+ exports.AuthenticationDescription$ = AuthenticationDescription$;
1641
1682
  exports.AuthenticationProviderTypes = AuthenticationProviderTypes;
1642
- exports.ConflictException = ConflictException$1;
1683
+ exports.AuthenticationSummary$ = AuthenticationSummary$;
1684
+ exports.AwsSsoAuthentication$ = AwsSsoAuthentication$;
1685
+ exports.ConflictException = ConflictException;
1686
+ exports.ConflictException$ = ConflictException$;
1687
+ exports.CreateWorkspace$ = CreateWorkspace$;
1688
+ exports.CreateWorkspaceApiKey$ = CreateWorkspaceApiKey$;
1643
1689
  exports.CreateWorkspaceApiKeyCommand = CreateWorkspaceApiKeyCommand;
1690
+ exports.CreateWorkspaceApiKeyRequest$ = CreateWorkspaceApiKeyRequest$;
1691
+ exports.CreateWorkspaceApiKeyResponse$ = CreateWorkspaceApiKeyResponse$;
1644
1692
  exports.CreateWorkspaceCommand = CreateWorkspaceCommand;
1693
+ exports.CreateWorkspaceRequest$ = CreateWorkspaceRequest$;
1694
+ exports.CreateWorkspaceResponse$ = CreateWorkspaceResponse$;
1695
+ exports.CreateWorkspaceServiceAccount$ = CreateWorkspaceServiceAccount$;
1645
1696
  exports.CreateWorkspaceServiceAccountCommand = CreateWorkspaceServiceAccountCommand;
1697
+ exports.CreateWorkspaceServiceAccountRequest$ = CreateWorkspaceServiceAccountRequest$;
1698
+ exports.CreateWorkspaceServiceAccountResponse$ = CreateWorkspaceServiceAccountResponse$;
1699
+ exports.CreateWorkspaceServiceAccountToken$ = CreateWorkspaceServiceAccountToken$;
1646
1700
  exports.CreateWorkspaceServiceAccountTokenCommand = CreateWorkspaceServiceAccountTokenCommand;
1701
+ exports.CreateWorkspaceServiceAccountTokenRequest$ = CreateWorkspaceServiceAccountTokenRequest$;
1702
+ exports.CreateWorkspaceServiceAccountTokenResponse$ = CreateWorkspaceServiceAccountTokenResponse$;
1647
1703
  exports.DataSourceType = DataSourceType;
1704
+ exports.DeleteWorkspace$ = DeleteWorkspace$;
1705
+ exports.DeleteWorkspaceApiKey$ = DeleteWorkspaceApiKey$;
1648
1706
  exports.DeleteWorkspaceApiKeyCommand = DeleteWorkspaceApiKeyCommand;
1707
+ exports.DeleteWorkspaceApiKeyRequest$ = DeleteWorkspaceApiKeyRequest$;
1708
+ exports.DeleteWorkspaceApiKeyResponse$ = DeleteWorkspaceApiKeyResponse$;
1649
1709
  exports.DeleteWorkspaceCommand = DeleteWorkspaceCommand;
1710
+ exports.DeleteWorkspaceRequest$ = DeleteWorkspaceRequest$;
1711
+ exports.DeleteWorkspaceResponse$ = DeleteWorkspaceResponse$;
1712
+ exports.DeleteWorkspaceServiceAccount$ = DeleteWorkspaceServiceAccount$;
1650
1713
  exports.DeleteWorkspaceServiceAccountCommand = DeleteWorkspaceServiceAccountCommand;
1714
+ exports.DeleteWorkspaceServiceAccountRequest$ = DeleteWorkspaceServiceAccountRequest$;
1715
+ exports.DeleteWorkspaceServiceAccountResponse$ = DeleteWorkspaceServiceAccountResponse$;
1716
+ exports.DeleteWorkspaceServiceAccountToken$ = DeleteWorkspaceServiceAccountToken$;
1651
1717
  exports.DeleteWorkspaceServiceAccountTokenCommand = DeleteWorkspaceServiceAccountTokenCommand;
1718
+ exports.DeleteWorkspaceServiceAccountTokenRequest$ = DeleteWorkspaceServiceAccountTokenRequest$;
1719
+ exports.DeleteWorkspaceServiceAccountTokenResponse$ = DeleteWorkspaceServiceAccountTokenResponse$;
1720
+ exports.DescribeWorkspace$ = DescribeWorkspace$;
1721
+ exports.DescribeWorkspaceAuthentication$ = DescribeWorkspaceAuthentication$;
1652
1722
  exports.DescribeWorkspaceAuthenticationCommand = DescribeWorkspaceAuthenticationCommand;
1723
+ exports.DescribeWorkspaceAuthenticationRequest$ = DescribeWorkspaceAuthenticationRequest$;
1724
+ exports.DescribeWorkspaceAuthenticationResponse$ = DescribeWorkspaceAuthenticationResponse$;
1653
1725
  exports.DescribeWorkspaceCommand = DescribeWorkspaceCommand;
1726
+ exports.DescribeWorkspaceConfiguration$ = DescribeWorkspaceConfiguration$;
1654
1727
  exports.DescribeWorkspaceConfigurationCommand = DescribeWorkspaceConfigurationCommand;
1728
+ exports.DescribeWorkspaceConfigurationRequest$ = DescribeWorkspaceConfigurationRequest$;
1729
+ exports.DescribeWorkspaceConfigurationResponse$ = DescribeWorkspaceConfigurationResponse$;
1730
+ exports.DescribeWorkspaceRequest$ = DescribeWorkspaceRequest$;
1731
+ exports.DescribeWorkspaceResponse$ = DescribeWorkspaceResponse$;
1732
+ exports.DisassociateLicense$ = DisassociateLicense$;
1655
1733
  exports.DisassociateLicenseCommand = DisassociateLicenseCommand;
1734
+ exports.DisassociateLicenseRequest$ = DisassociateLicenseRequest$;
1735
+ exports.DisassociateLicenseResponse$ = DisassociateLicenseResponse$;
1656
1736
  exports.Grafana = Grafana;
1657
1737
  exports.GrafanaClient = GrafanaClient;
1658
- exports.GrafanaServiceException = GrafanaServiceException$1;
1659
- exports.InternalServerException = InternalServerException$1;
1738
+ exports.GrafanaServiceException = GrafanaServiceException;
1739
+ exports.GrafanaServiceException$ = GrafanaServiceException$;
1740
+ exports.IdpMetadata$ = IdpMetadata$;
1741
+ exports.InternalServerException = InternalServerException;
1742
+ exports.InternalServerException$ = InternalServerException$;
1660
1743
  exports.LicenseType = LicenseType;
1744
+ exports.ListPermissions$ = ListPermissions$;
1661
1745
  exports.ListPermissionsCommand = ListPermissionsCommand;
1746
+ exports.ListPermissionsRequest$ = ListPermissionsRequest$;
1747
+ exports.ListPermissionsResponse$ = ListPermissionsResponse$;
1748
+ exports.ListTagsForResource$ = ListTagsForResource$;
1662
1749
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1750
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1751
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1752
+ exports.ListVersions$ = ListVersions$;
1663
1753
  exports.ListVersionsCommand = ListVersionsCommand;
1754
+ exports.ListVersionsRequest$ = ListVersionsRequest$;
1755
+ exports.ListVersionsResponse$ = ListVersionsResponse$;
1756
+ exports.ListWorkspaceServiceAccountTokens$ = ListWorkspaceServiceAccountTokens$;
1664
1757
  exports.ListWorkspaceServiceAccountTokensCommand = ListWorkspaceServiceAccountTokensCommand;
1758
+ exports.ListWorkspaceServiceAccountTokensRequest$ = ListWorkspaceServiceAccountTokensRequest$;
1759
+ exports.ListWorkspaceServiceAccountTokensResponse$ = ListWorkspaceServiceAccountTokensResponse$;
1760
+ exports.ListWorkspaceServiceAccounts$ = ListWorkspaceServiceAccounts$;
1665
1761
  exports.ListWorkspaceServiceAccountsCommand = ListWorkspaceServiceAccountsCommand;
1762
+ exports.ListWorkspaceServiceAccountsRequest$ = ListWorkspaceServiceAccountsRequest$;
1763
+ exports.ListWorkspaceServiceAccountsResponse$ = ListWorkspaceServiceAccountsResponse$;
1764
+ exports.ListWorkspaces$ = ListWorkspaces$;
1666
1765
  exports.ListWorkspacesCommand = ListWorkspacesCommand;
1766
+ exports.ListWorkspacesRequest$ = ListWorkspacesRequest$;
1767
+ exports.ListWorkspacesResponse$ = ListWorkspacesResponse$;
1768
+ exports.NetworkAccessConfiguration$ = NetworkAccessConfiguration$;
1667
1769
  exports.NotificationDestinationType = NotificationDestinationType;
1770
+ exports.PermissionEntry$ = PermissionEntry$;
1668
1771
  exports.PermissionType = PermissionType;
1669
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1772
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1773
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1670
1774
  exports.Role = Role;
1775
+ exports.RoleValues$ = RoleValues$;
1776
+ exports.SamlAuthentication$ = SamlAuthentication$;
1777
+ exports.SamlConfiguration$ = SamlConfiguration$;
1671
1778
  exports.SamlConfigurationStatus = SamlConfigurationStatus;
1672
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1779
+ exports.ServiceAccountSummary$ = ServiceAccountSummary$;
1780
+ exports.ServiceAccountTokenSummary$ = ServiceAccountTokenSummary$;
1781
+ exports.ServiceAccountTokenSummaryWithKey$ = ServiceAccountTokenSummaryWithKey$;
1782
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1783
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1784
+ exports.TagResource$ = TagResource$;
1673
1785
  exports.TagResourceCommand = TagResourceCommand;
1674
- exports.ThrottlingException = ThrottlingException$1;
1786
+ exports.TagResourceRequest$ = TagResourceRequest$;
1787
+ exports.TagResourceResponse$ = TagResourceResponse$;
1788
+ exports.ThrottlingException = ThrottlingException;
1789
+ exports.ThrottlingException$ = ThrottlingException$;
1790
+ exports.UntagResource$ = UntagResource$;
1675
1791
  exports.UntagResourceCommand = UntagResourceCommand;
1792
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1793
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1676
1794
  exports.UpdateAction = UpdateAction;
1795
+ exports.UpdateError$ = UpdateError$;
1796
+ exports.UpdateInstruction$ = UpdateInstruction$;
1797
+ exports.UpdatePermissions$ = UpdatePermissions$;
1677
1798
  exports.UpdatePermissionsCommand = UpdatePermissionsCommand;
1799
+ exports.UpdatePermissionsRequest$ = UpdatePermissionsRequest$;
1800
+ exports.UpdatePermissionsResponse$ = UpdatePermissionsResponse$;
1801
+ exports.UpdateWorkspace$ = UpdateWorkspace$;
1802
+ exports.UpdateWorkspaceAuthentication$ = UpdateWorkspaceAuthentication$;
1678
1803
  exports.UpdateWorkspaceAuthenticationCommand = UpdateWorkspaceAuthenticationCommand;
1804
+ exports.UpdateWorkspaceAuthenticationRequest$ = UpdateWorkspaceAuthenticationRequest$;
1805
+ exports.UpdateWorkspaceAuthenticationResponse$ = UpdateWorkspaceAuthenticationResponse$;
1679
1806
  exports.UpdateWorkspaceCommand = UpdateWorkspaceCommand;
1807
+ exports.UpdateWorkspaceConfiguration$ = UpdateWorkspaceConfiguration$;
1680
1808
  exports.UpdateWorkspaceConfigurationCommand = UpdateWorkspaceConfigurationCommand;
1809
+ exports.UpdateWorkspaceConfigurationRequest$ = UpdateWorkspaceConfigurationRequest$;
1810
+ exports.UpdateWorkspaceConfigurationResponse$ = UpdateWorkspaceConfigurationResponse$;
1811
+ exports.UpdateWorkspaceRequest$ = UpdateWorkspaceRequest$;
1812
+ exports.UpdateWorkspaceResponse$ = UpdateWorkspaceResponse$;
1813
+ exports.User$ = User$;
1681
1814
  exports.UserType = UserType;
1682
- exports.ValidationException = ValidationException$1;
1815
+ exports.ValidationException = ValidationException;
1816
+ exports.ValidationException$ = ValidationException$;
1817
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1683
1818
  exports.ValidationExceptionReason = ValidationExceptionReason;
1819
+ exports.VpcConfiguration$ = VpcConfiguration$;
1820
+ exports.WorkspaceDescription$ = WorkspaceDescription$;
1684
1821
  exports.WorkspaceStatus = WorkspaceStatus;
1822
+ exports.WorkspaceSummary$ = WorkspaceSummary$;
1685
1823
  exports.paginateListPermissions = paginateListPermissions;
1686
1824
  exports.paginateListVersions = paginateListVersions;
1687
1825
  exports.paginateListWorkspaceServiceAccountTokens = paginateListWorkspaceServiceAccountTokens;