@aws-sdk/client-resource-explorer-2 3.952.0 → 3.954.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 (52) hide show
  1. package/dist-cjs/index.js +391 -266
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateDefaultViewCommand.js +2 -2
  4. package/dist-es/commands/BatchGetViewCommand.js +2 -2
  5. package/dist-es/commands/CreateIndexCommand.js +2 -2
  6. package/dist-es/commands/CreateResourceExplorerSetupCommand.js +2 -2
  7. package/dist-es/commands/CreateViewCommand.js +2 -2
  8. package/dist-es/commands/DeleteIndexCommand.js +2 -2
  9. package/dist-es/commands/DeleteResourceExplorerSetupCommand.js +2 -2
  10. package/dist-es/commands/DeleteViewCommand.js +2 -2
  11. package/dist-es/commands/DisassociateDefaultViewCommand.js +2 -2
  12. package/dist-es/commands/GetAccountLevelServiceConfigurationCommand.js +2 -2
  13. package/dist-es/commands/GetDefaultViewCommand.js +2 -2
  14. package/dist-es/commands/GetIndexCommand.js +2 -2
  15. package/dist-es/commands/GetManagedViewCommand.js +2 -2
  16. package/dist-es/commands/GetResourceExplorerSetupCommand.js +2 -2
  17. package/dist-es/commands/GetServiceIndexCommand.js +2 -2
  18. package/dist-es/commands/GetServiceViewCommand.js +2 -2
  19. package/dist-es/commands/GetViewCommand.js +2 -2
  20. package/dist-es/commands/ListIndexesCommand.js +2 -2
  21. package/dist-es/commands/ListIndexesForMembersCommand.js +2 -2
  22. package/dist-es/commands/ListManagedViewsCommand.js +2 -2
  23. package/dist-es/commands/ListResourcesCommand.js +2 -2
  24. package/dist-es/commands/ListServiceIndexesCommand.js +2 -2
  25. package/dist-es/commands/ListServiceViewsCommand.js +2 -2
  26. package/dist-es/commands/ListStreamingAccessForServicesCommand.js +2 -2
  27. package/dist-es/commands/ListSupportedResourceTypesCommand.js +2 -2
  28. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  29. package/dist-es/commands/ListViewsCommand.js +2 -2
  30. package/dist-es/commands/SearchCommand.js +2 -2
  31. package/dist-es/commands/TagResourceCommand.js +2 -2
  32. package/dist-es/commands/UntagResourceCommand.js +2 -2
  33. package/dist-es/commands/UpdateIndexTypeCommand.js +2 -2
  34. package/dist-es/commands/UpdateViewCommand.js +2 -2
  35. package/dist-es/index.js +1 -0
  36. package/dist-es/runtimeConfig.shared.js +6 -1
  37. package/dist-es/schemas/schemas_0.js +227 -220
  38. package/dist-types/ResourceExplorer2Client.d.ts +1 -10
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  41. package/dist-types/runtimeConfig.d.ts +6 -2
  42. package/dist-types/runtimeConfig.native.d.ts +6 -2
  43. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  44. package/dist-types/schemas/schemas_0.d.ts +119 -139
  45. package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +0 -4
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -141
  52. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ResourceExplorer2Client extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ResourceExplorer2ServiceException$1 = class ResourceExplorer2ServiceException extends smithyClient.ServiceException {
113
+ class ResourceExplorer2ServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ResourceExplorer2ServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends ResourceExplorer2ServiceException$1 {
120
+ class AccessDeniedException extends ResourceExplorer2ServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ResourceExplor
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InternalServerException$1 = class InternalServerException extends ResourceExplorer2ServiceException$1 {
133
+ }
134
+ class InternalServerException extends ResourceExplorer2ServiceException {
135
135
  name = "InternalServerException";
136
136
  $fault = "server";
137
137
  Message;
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends ResourceEx
144
144
  Object.setPrototypeOf(this, InternalServerException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ResourceExplorer2ServiceException$1 {
147
+ }
148
+ class ResourceNotFoundException extends ResourceExplorer2ServiceException {
149
149
  name = "ResourceNotFoundException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Resour
158
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ThrottlingException$1 = class ThrottlingException extends ResourceExplorer2ServiceException$1 {
161
+ }
162
+ class ThrottlingException extends ResourceExplorer2ServiceException {
163
163
  name = "ThrottlingException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ThrottlingException$1 = class ThrottlingException extends ResourceExplorer2S
172
172
  Object.setPrototypeOf(this, ThrottlingException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ValidationException$1 = class ValidationException extends ResourceExplorer2ServiceException$1 {
175
+ }
176
+ class ValidationException extends ResourceExplorer2ServiceException {
177
177
  name = "ValidationException";
178
178
  $fault = "client";
179
179
  Message;
@@ -188,8 +188,8 @@ let ValidationException$1 = class ValidationException extends ResourceExplorer2S
188
188
  this.Message = opts.Message;
189
189
  this.FieldList = opts.FieldList;
190
190
  }
191
- };
192
- let UnauthorizedException$1 = class UnauthorizedException extends ResourceExplorer2ServiceException$1 {
191
+ }
192
+ class UnauthorizedException extends ResourceExplorer2ServiceException {
193
193
  name = "UnauthorizedException";
194
194
  $fault = "client";
195
195
  Message;
@@ -202,8 +202,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends ResourceExplor
202
202
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
203
203
  this.Message = opts.Message;
204
204
  }
205
- };
206
- let ConflictException$1 = class ConflictException extends ResourceExplorer2ServiceException$1 {
205
+ }
206
+ class ConflictException extends ResourceExplorer2ServiceException {
207
207
  name = "ConflictException";
208
208
  $fault = "client";
209
209
  Message;
@@ -216,8 +216,8 @@ let ConflictException$1 = class ConflictException extends ResourceExplorer2Servi
216
216
  Object.setPrototypeOf(this, ConflictException.prototype);
217
217
  this.Message = opts.Message;
218
218
  }
219
- };
220
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ResourceExplorer2ServiceException$1 {
219
+ }
220
+ class ServiceQuotaExceededException extends ResourceExplorer2ServiceException {
221
221
  name = "ServiceQuotaExceededException";
222
222
  $fault = "client";
223
223
  Message;
@@ -234,7 +234,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
234
234
  this.Name = opts.Name;
235
235
  this.Value = opts.Value;
236
236
  }
237
- };
237
+ }
238
238
 
239
239
  const _A = "Arn";
240
240
  const _ADE = "AccessDeniedException";
@@ -441,13 +441,13 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.resourceexplorer2";
441
441
  const _tK = "tagKeys";
442
442
  const n0 = "com.amazonaws.resourceexplorer2";
443
443
  var QueryString = [0, n0, _QS, 8, 0];
444
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
445
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
446
- var AssociateDefaultViewInput = [3, n0, _ADVI, 0, [_VA], [0]];
447
- var AssociateDefaultViewOutput = [3, n0, _ADVO, 0, [_VA], [0]];
448
- var BatchGetViewError = [3, n0, _BGVE, 0, [_VA, _EM], [0, 0]];
449
- var BatchGetViewInput = [3, n0, _BGVI, 0, [_VAi], [64 | 0]];
450
- var BatchGetViewOutput = [
444
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
445
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
446
+ var AssociateDefaultViewInput$ = [3, n0, _ADVI, 0, [_VA], [0]];
447
+ var AssociateDefaultViewOutput$ = [3, n0, _ADVO, 0, [_VA], [0]];
448
+ var BatchGetViewError$ = [3, n0, _BGVE, 0, [_VA, _EM], [0, 0]];
449
+ var BatchGetViewInput$ = [3, n0, _BGVI, 0, [_VAi], [64 | 0]];
450
+ var BatchGetViewOutput$ = [
451
451
  3,
452
452
  n0,
453
453
  _BGVO,
@@ -455,9 +455,9 @@ var BatchGetViewOutput = [
455
455
  [_V, _E],
456
456
  [[() => ViewList, 0], () => BatchGetViewErrors],
457
457
  ];
458
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
459
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
460
- var CreateIndexInput = [
458
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
459
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
460
+ var CreateIndexInput$ = [
461
461
  3,
462
462
  n0,
463
463
  _CII,
@@ -468,8 +468,8 @@ var CreateIndexInput = [
468
468
  [() => TagMap, 0],
469
469
  ],
470
470
  ];
471
- var CreateIndexOutput = [3, n0, _CIO, 0, [_A, _S, _CA], [0, 0, 5]];
472
- var CreateResourceExplorerSetupInput = [
471
+ var CreateIndexOutput$ = [3, n0, _CIO, 0, [_A, _S, _CA], [0, 0, 5]];
472
+ var CreateResourceExplorerSetupInput$ = [
473
473
  3,
474
474
  n0,
475
475
  _CRESI,
@@ -477,33 +477,33 @@ var CreateResourceExplorerSetupInput = [
477
477
  [_RL, _AR, _VN],
478
478
  [64 | 0, 64 | 0, 0],
479
479
  ];
480
- var CreateResourceExplorerSetupOutput = [3, n0, _CRESO, 0, [_TI], [0]];
481
- var CreateViewInput = [
480
+ var CreateResourceExplorerSetupOutput$ = [3, n0, _CRESO, 0, [_TI], [0]];
481
+ var CreateViewInput$ = [
482
482
  3,
483
483
  n0,
484
484
  _CVI,
485
485
  0,
486
486
  [_CT, _VN, _IP, _Sc, _F, _T],
487
- [[0, 4], 0, () => IncludedPropertyList, 0, [() => SearchFilter, 0], [() => TagMap, 0]],
487
+ [[0, 4], 0, () => IncludedPropertyList, 0, [() => SearchFilter$, 0], [() => TagMap, 0]],
488
488
  ];
489
- var CreateViewOutput = [3, n0, _CVO, 0, [_Vi], [[() => View, 0]]];
490
- var DeleteIndexInput = [3, n0, _DII, 0, [_A], [0]];
491
- var DeleteIndexOutput = [3, n0, _DIO, 0, [_A, _S, _LUA], [0, 0, 5]];
492
- var DeleteResourceExplorerSetupInput = [3, n0, _DRESI, 0, [_RL, _DIAR], [64 | 0, 2]];
493
- var DeleteResourceExplorerSetupOutput = [3, n0, _DRESO, 0, [_TI], [0]];
494
- var DeleteViewInput = [3, n0, _DVI, 0, [_VA], [0]];
495
- var DeleteViewOutput = [3, n0, _DVO, 0, [_VA], [0]];
496
- var ErrorDetails = [3, n0, _ED, 0, [_C, _M], [0, 0]];
497
- var GetAccountLevelServiceConfigurationOutput = [
489
+ var CreateViewOutput$ = [3, n0, _CVO, 0, [_Vi], [[() => View$, 0]]];
490
+ var DeleteIndexInput$ = [3, n0, _DII, 0, [_A], [0]];
491
+ var DeleteIndexOutput$ = [3, n0, _DIO, 0, [_A, _S, _LUA], [0, 0, 5]];
492
+ var DeleteResourceExplorerSetupInput$ = [3, n0, _DRESI, 0, [_RL, _DIAR], [64 | 0, 2]];
493
+ var DeleteResourceExplorerSetupOutput$ = [3, n0, _DRESO, 0, [_TI], [0]];
494
+ var DeleteViewInput$ = [3, n0, _DVI, 0, [_VA], [0]];
495
+ var DeleteViewOutput$ = [3, n0, _DVO, 0, [_VA], [0]];
496
+ var ErrorDetails$ = [3, n0, _ED, 0, [_C, _M], [0, 0]];
497
+ var GetAccountLevelServiceConfigurationOutput$ = [
498
498
  3,
499
499
  n0,
500
500
  _GALSCO,
501
501
  0,
502
502
  [_OC],
503
- [() => OrgConfiguration],
503
+ [() => OrgConfiguration$],
504
504
  ];
505
- var GetDefaultViewOutput = [3, n0, _GDVO, 0, [_VA], [0]];
506
- var GetIndexOutput = [
505
+ var GetDefaultViewOutput$ = [3, n0, _GDVO, 0, [_VA], [0]];
506
+ var GetIndexOutput$ = [
507
507
  3,
508
508
  n0,
509
509
  _GIO,
@@ -511,10 +511,10 @@ var GetIndexOutput = [
511
511
  [_A, _Ty, _S, _RF, _RT, _CA, _LUA, _T],
512
512
  [0, 0, 0, 64 | 0, 64 | 0, 5, 5, [() => TagMap, 0]],
513
513
  ];
514
- var GetManagedViewInput = [3, n0, _GMVI, 0, [_MVA], [0]];
515
- var GetManagedViewOutput = [3, n0, _GMVO, 0, [_MV], [[() => ManagedView, 0]]];
516
- var GetResourceExplorerSetupInput = [3, n0, _GRESI, 0, [_TI, _MR, _NT], [0, 1, 0]];
517
- var GetResourceExplorerSetupOutput = [
514
+ var GetManagedViewInput$ = [3, n0, _GMVI, 0, [_MVA], [0]];
515
+ var GetManagedViewOutput$ = [3, n0, _GMVO, 0, [_MV], [[() => ManagedView$, 0]]];
516
+ var GetResourceExplorerSetupInput$ = [3, n0, _GRESI, 0, [_TI, _MR, _NT], [0, 1, 0]];
517
+ var GetResourceExplorerSetupOutput$ = [
518
518
  3,
519
519
  n0,
520
520
  _GRESO,
@@ -522,28 +522,35 @@ var GetResourceExplorerSetupOutput = [
522
522
  [_R, _NT],
523
523
  [[() => RegionStatusList, 0], 0],
524
524
  ];
525
- var GetServiceIndexOutput = [3, n0, _GSIO, 0, [_A, _Ty], [0, 0]];
526
- var GetServiceViewInput = [3, n0, _GSVI, 0, [_SVA], [0]];
527
- var GetServiceViewOutput = [3, n0, _GSVO, 0, [_Vi], [[() => ServiceView, 0]]];
528
- var GetViewInput = [3, n0, _GVI, 0, [_VA], [0]];
529
- var GetViewOutput = [
525
+ var GetServiceIndexOutput$ = [3, n0, _GSIO, 0, [_A, _Ty], [0, 0]];
526
+ var GetServiceViewInput$ = [3, n0, _GSVI, 0, [_SVA], [0]];
527
+ var GetServiceViewOutput$ = [3, n0, _GSVO, 0, [_Vi], [[() => ServiceView$, 0]]];
528
+ var GetViewInput$ = [3, n0, _GVI, 0, [_VA], [0]];
529
+ var GetViewOutput$ = [
530
530
  3,
531
531
  n0,
532
532
  _GVO,
533
533
  0,
534
534
  [_Vi, _T],
535
535
  [
536
- [() => View, 0],
536
+ [() => View$, 0],
537
537
  [() => TagMap, 0],
538
538
  ],
539
539
  ];
540
- var IncludedProperty = [3, n0, _IPn, 0, [_N], [0]];
541
- var Index = [3, n0, _I, 0, [_Re, _A, _Ty], [0, 0, 0]];
542
- var IndexStatus = [3, n0, _IS, 0, [_St, _I, _ED], [0, () => Index, () => ErrorDetails]];
543
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
544
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
545
- var ListIndexesForMembersInput = [3, n0, _LIFMI, 0, [_AIL, _MR, _NT], [64 | 0, 1, 0]];
546
- var ListIndexesForMembersOutput = [
540
+ var IncludedProperty$ = [3, n0, _IPn, 0, [_N], [0]];
541
+ var Index$ = [3, n0, _I, 0, [_Re, _A, _Ty], [0, 0, 0]];
542
+ var IndexStatus$ = [
543
+ 3,
544
+ n0,
545
+ _IS,
546
+ 0,
547
+ [_St, _I, _ED],
548
+ [0, () => Index$, () => ErrorDetails$],
549
+ ];
550
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
551
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
552
+ var ListIndexesForMembersInput$ = [3, n0, _LIFMI, 0, [_AIL, _MR, _NT], [64 | 0, 1, 0]];
553
+ var ListIndexesForMembersOutput$ = [
547
554
  3,
548
555
  n0,
549
556
  _LIFMO,
@@ -551,25 +558,25 @@ var ListIndexesForMembersOutput = [
551
558
  [_In, _NT],
552
559
  [() => MemberIndexList, 0],
553
560
  ];
554
- var ListIndexesInput = [3, n0, _LII, 0, [_Ty, _R, _MR, _NT], [0, 64 | 0, 1, 0]];
555
- var ListIndexesOutput = [3, n0, _LIO, 0, [_In, _NT], [() => IndexList, 0]];
556
- var ListManagedViewsInput = [3, n0, _LMVI, 0, [_MR, _NT, _SP], [1, 0, 0]];
557
- var ListManagedViewsOutput = [3, n0, _LMVO, 0, [_NT, _MVa], [0, 64 | 0]];
558
- var ListResourcesInput = [
561
+ var ListIndexesInput$ = [3, n0, _LII, 0, [_Ty, _R, _MR, _NT], [0, 64 | 0, 1, 0]];
562
+ var ListIndexesOutput$ = [3, n0, _LIO, 0, [_In, _NT], [() => IndexList, 0]];
563
+ var ListManagedViewsInput$ = [3, n0, _LMVI, 0, [_MR, _NT, _SP], [1, 0, 0]];
564
+ var ListManagedViewsOutput$ = [3, n0, _LMVO, 0, [_NT, _MVa], [0, 64 | 0]];
565
+ var ListResourcesInput$ = [
559
566
  3,
560
567
  n0,
561
568
  _LRI,
562
569
  0,
563
570
  [_F, _MR, _VA, _NT],
564
- [[() => SearchFilter, 0], 1, 0, 0],
571
+ [[() => SearchFilter$, 0], 1, 0, 0],
565
572
  ];
566
- var ListResourcesOutput = [3, n0, _LRO, 0, [_Res, _NT, _VA], [() => ResourceList, 0, 0]];
567
- var ListServiceIndexesInput = [3, n0, _LSII, 0, [_R, _MR, _NT], [64 | 0, 1, 0]];
568
- var ListServiceIndexesOutput = [3, n0, _LSIO, 0, [_In, _NT], [() => IndexList, 0]];
569
- var ListServiceViewsInput = [3, n0, _LSVI, 0, [_MR, _NT], [1, 0]];
570
- var ListServiceViewsOutput = [3, n0, _LSVO, 0, [_NT, _SV], [0, 64 | 0]];
571
- var ListStreamingAccessForServicesInput = [3, n0, _LSAFSI, 0, [_MR, _NT], [1, 0]];
572
- var ListStreamingAccessForServicesOutput = [
573
+ var ListResourcesOutput$ = [3, n0, _LRO, 0, [_Res, _NT, _VA], [() => ResourceList, 0, 0]];
574
+ var ListServiceIndexesInput$ = [3, n0, _LSII, 0, [_R, _MR, _NT], [64 | 0, 1, 0]];
575
+ var ListServiceIndexesOutput$ = [3, n0, _LSIO, 0, [_In, _NT], [() => IndexList, 0]];
576
+ var ListServiceViewsInput$ = [3, n0, _LSVI, 0, [_MR, _NT], [1, 0]];
577
+ var ListServiceViewsOutput$ = [3, n0, _LSVO, 0, [_NT, _SV], [0, 64 | 0]];
578
+ var ListStreamingAccessForServicesInput$ = [3, n0, _LSAFSI, 0, [_MR, _NT], [1, 0]];
579
+ var ListStreamingAccessForServicesOutput$ = [
573
580
  3,
574
581
  n0,
575
582
  _LSAFSO,
@@ -577,8 +584,8 @@ var ListStreamingAccessForServicesOutput = [
577
584
  [_SAFS, _NT],
578
585
  [() => StreamingAccessDetailsList, 0],
579
586
  ];
580
- var ListSupportedResourceTypesInput = [3, n0, _LSRTI, 0, [_NT, _MR], [0, 1]];
581
- var ListSupportedResourceTypesOutput = [
587
+ var ListSupportedResourceTypesInput$ = [3, n0, _LSRTI, 0, [_NT, _MR], [0, 1]];
588
+ var ListSupportedResourceTypesOutput$ = [
582
589
  3,
583
590
  n0,
584
591
  _LSRTO,
@@ -586,29 +593,29 @@ var ListSupportedResourceTypesOutput = [
586
593
  [_RTe, _NT],
587
594
  [() => ResourceTypeList, 0],
588
595
  ];
589
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rA], [[0, 1]]];
590
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T], [[() => TagMap, 0]]];
591
- var ListViewsInput = [3, n0, _LVI, 0, [_NT, _MR], [0, 1]];
592
- var ListViewsOutput = [3, n0, _LVO, 0, [_V, _NT], [64 | 0, 0]];
593
- var ManagedView = [
596
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rA], [[0, 1]]];
597
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_T], [[() => TagMap, 0]]];
598
+ var ListViewsInput$ = [3, n0, _LVI, 0, [_NT, _MR], [0, 1]];
599
+ var ListViewsOutput$ = [3, n0, _LVO, 0, [_V, _NT], [64 | 0, 0]];
600
+ var ManagedView$ = [
594
601
  3,
595
602
  n0,
596
603
  _MV,
597
604
  0,
598
605
  [_MVA, _MVN, _TS, _LUA, _O, _Sc, _IP, _F, _RP, _Ve],
599
- [0, 0, 0, 5, 0, 0, () => IncludedPropertyList, [() => SearchFilter, 0], 0, 0],
606
+ [0, 0, 0, 5, 0, 0, () => IncludedPropertyList, [() => SearchFilter$, 0], 0, 0],
600
607
  ];
601
- var MemberIndex = [3, n0, _MI, 0, [_AI, _Re, _A, _Ty], [0, 0, 0, 0]];
602
- var OrgConfiguration = [3, n0, _OC, 0, [_AWSSAS, _SLR], [0, 0]];
603
- var RegionStatus = [
608
+ var MemberIndex$ = [3, n0, _MI, 0, [_AI, _Re, _A, _Ty], [0, 0, 0, 0]];
609
+ var OrgConfiguration$ = [3, n0, _OC, 0, [_AWSSAS, _SLR], [0, 0]];
610
+ var RegionStatus$ = [
604
611
  3,
605
612
  n0,
606
613
  _RS,
607
614
  0,
608
615
  [_Re, _I, _Vi],
609
- [0, () => IndexStatus, [() => ViewStatus, 0]],
616
+ [0, () => IndexStatus$, [() => ViewStatus$, 0]],
610
617
  ];
611
- var Resource = [
618
+ var Resource$ = [
612
619
  3,
613
620
  n0,
614
621
  _Reso,
@@ -616,12 +623,12 @@ var Resource = [
616
623
  [_A, _OAI, _Re, _RTes, _Se, _LRA, _P],
617
624
  [0, 0, 0, 0, 0, 5, () => ResourcePropertyList],
618
625
  ];
619
- var ResourceCount = [3, n0, _RC, 0, [_TR, _Co], [1, 2]];
620
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
621
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
622
- var ResourceProperty = [3, n0, _RPe, 0, [_N, _LRA, _D], [0, 5, 15]];
623
- var SearchFilter = [3, n0, _SF, 8, [_FS], [0]];
624
- var SearchInput = [
626
+ var ResourceCount$ = [3, n0, _RC, 0, [_TR, _Co], [1, 2]];
627
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
628
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
629
+ var ResourceProperty$ = [3, n0, _RPe, 0, [_N, _LRA, _D], [0, 5, 15]];
630
+ var SearchFilter$ = [3, n0, _SF, 8, [_FS], [0]];
631
+ var SearchInput$ = [
625
632
  3,
626
633
  n0,
627
634
  _SI,
@@ -629,15 +636,15 @@ var SearchInput = [
629
636
  [_QS, _MR, _VA, _NT],
630
637
  [[() => QueryString, 0], 1, 0, 0],
631
638
  ];
632
- var SearchOutput = [
639
+ var SearchOutput$ = [
633
640
  3,
634
641
  n0,
635
642
  _SO,
636
643
  0,
637
644
  [_Res, _NT, _VA, _Cou],
638
- [() => ResourceList, 0, 0, () => ResourceCount],
645
+ [() => ResourceList, 0, 0, () => ResourceCount$],
639
646
  ];
640
- var ServiceQuotaExceededException = [
647
+ var ServiceQuotaExceededException$ = [
641
648
  -3,
642
649
  n0,
643
650
  _SQEE,
@@ -645,18 +652,18 @@ var ServiceQuotaExceededException = [
645
652
  [_M, _N, _Va],
646
653
  [0, 0, 0],
647
654
  ];
648
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
649
- var ServiceView = [
655
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
656
+ var ServiceView$ = [
650
657
  3,
651
658
  n0,
652
659
  _SVe,
653
660
  0,
654
661
  [_SVA, _F, _IP, _SAFSt, _ST],
655
- [0, [() => SearchFilter, 0], () => IncludedPropertyList, 0, 0],
662
+ [0, [() => SearchFilter$, 0], () => IncludedPropertyList, 0, 0],
656
663
  ];
657
- var StreamingAccessDetails = [3, n0, _SAD, 0, [_SP, _CA], [0, 5]];
658
- var SupportedResourceType = [3, n0, _SRT, 0, [_Se, _RTes], [0, 0]];
659
- var TagResourceInput = [
664
+ var StreamingAccessDetails$ = [3, n0, _SAD, 0, [_SP, _CA], [0, 5]];
665
+ var SupportedResourceType$ = [3, n0, _SRT, 0, [_Se, _RTes], [0, 0]];
666
+ var TagResourceInput$ = [
660
667
  3,
661
668
  n0,
662
669
  _TRI,
@@ -667,12 +674,12 @@ var TagResourceInput = [
667
674
  [() => TagMap, 0],
668
675
  ],
669
676
  ];
670
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
671
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
672
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
673
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
674
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
675
- var UntagResourceInput = [
677
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
678
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
679
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
680
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
681
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
682
+ var UntagResourceInput$ = [
676
683
  3,
677
684
  n0,
678
685
  _URI,
@@ -683,19 +690,19 @@ var UntagResourceInput = [
683
690
  [() => StringList, { [_hQ]: _tK }],
684
691
  ],
685
692
  ];
686
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
687
- var UpdateIndexTypeInput = [3, n0, _UITI, 0, [_A, _Ty], [0, 0]];
688
- var UpdateIndexTypeOutput = [3, n0, _UITO, 0, [_A, _Ty, _S, _LUA], [0, 0, 0, 5]];
689
- var UpdateViewInput = [
693
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
694
+ var UpdateIndexTypeInput$ = [3, n0, _UITI, 0, [_A, _Ty], [0, 0]];
695
+ var UpdateIndexTypeOutput$ = [3, n0, _UITO, 0, [_A, _Ty, _S, _LUA], [0, 0, 0, 5]];
696
+ var UpdateViewInput$ = [
690
697
  3,
691
698
  n0,
692
699
  _UVI,
693
700
  0,
694
701
  [_VA, _IP, _F],
695
- [0, () => IncludedPropertyList, [() => SearchFilter, 0]],
702
+ [0, () => IncludedPropertyList, [() => SearchFilter$, 0]],
696
703
  ];
697
- var UpdateViewOutput = [3, n0, _UVO, 0, [_Vi], [[() => View, 0]]];
698
- var ValidationException = [
704
+ var UpdateViewOutput$ = [3, n0, _UVO, 0, [_Vi], [[() => View$, 0]]];
705
+ var ValidationException$ = [
699
706
  -3,
700
707
  n0,
701
708
  _VE,
@@ -703,26 +710,26 @@ var ValidationException = [
703
710
  [_M, _FL],
704
711
  [0, () => ValidationExceptionFieldList],
705
712
  ];
706
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
707
- var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _VI], [0, 0]];
708
- var View = [
713
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
714
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_N, _VI], [0, 0]];
715
+ var View$ = [
709
716
  3,
710
717
  n0,
711
718
  _Vi,
712
719
  0,
713
720
  [_VA, _O, _LUA, _Sc, _IP, _F],
714
- [0, 0, 5, 0, () => IncludedPropertyList, [() => SearchFilter, 0]],
721
+ [0, 0, 5, 0, () => IncludedPropertyList, [() => SearchFilter$, 0]],
715
722
  ];
716
- var ViewStatus = [
723
+ var ViewStatus$ = [
717
724
  3,
718
725
  n0,
719
726
  _VS,
720
727
  0,
721
728
  [_St, _Vi, _ED],
722
- [0, [() => View, 0], () => ErrorDetails],
729
+ [0, [() => View$, 0], () => ErrorDetails$],
723
730
  ];
724
731
  var __Unit = "unit";
725
- var ResourceExplorer2ServiceException = [
732
+ var ResourceExplorer2ServiceException$ = [
726
733
  -3,
727
734
  _sm,
728
735
  "ResourceExplorer2ServiceException",
@@ -730,85 +737,85 @@ var ResourceExplorer2ServiceException = [
730
737
  [],
731
738
  [],
732
739
  ];
733
- schema.TypeRegistry.for(_sm).registerError(ResourceExplorer2ServiceException, ResourceExplorer2ServiceException$1);
734
- var BatchGetViewErrors = [1, n0, _BGVEa, 0, () => BatchGetViewError];
735
- var IncludedPropertyList = [1, n0, _IPL, 0, () => IncludedProperty];
736
- var IndexList = [1, n0, _IL, 0, () => Index];
737
- var MemberIndexList = [1, n0, _MIL, 0, () => MemberIndex];
738
- var RegionStatusList = [1, n0, _RSL, 0, [() => RegionStatus, 0]];
739
- var ResourceList = [1, n0, _RLe, 0, () => Resource];
740
- var ResourcePropertyList = [1, n0, _RPL, 0, () => ResourceProperty];
741
- var ResourceTypeList = [1, n0, _RTL, 0, () => SupportedResourceType];
742
- var StreamingAccessDetailsList = [1, n0, _SADL, 0, () => StreamingAccessDetails];
740
+ schema.TypeRegistry.for(_sm).registerError(ResourceExplorer2ServiceException$, ResourceExplorer2ServiceException);
741
+ var BatchGetViewErrors = [1, n0, _BGVEa, 0, () => BatchGetViewError$];
742
+ var IncludedPropertyList = [1, n0, _IPL, 0, () => IncludedProperty$];
743
+ var IndexList = [1, n0, _IL, 0, () => Index$];
744
+ var MemberIndexList = [1, n0, _MIL, 0, () => MemberIndex$];
745
+ var RegionStatusList = [1, n0, _RSL, 0, [() => RegionStatus$, 0]];
746
+ var ResourceList = [1, n0, _RLe, 0, () => Resource$];
747
+ var ResourcePropertyList = [1, n0, _RPL, 0, () => ResourceProperty$];
748
+ var ResourceTypeList = [1, n0, _RTL, 0, () => SupportedResourceType$];
749
+ var StreamingAccessDetailsList = [1, n0, _SADL, 0, () => StreamingAccessDetails$];
743
750
  var StringList = [1, n0, _SL, 8, 0];
744
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
745
- var ViewList = [1, n0, _VL, 0, [() => View, 0]];
751
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
752
+ var ViewList = [1, n0, _VL, 0, [() => View$, 0]];
746
753
  var TagMap = [2, n0, _TM, 8, 0, 0];
747
- var AssociateDefaultView = [
754
+ var AssociateDefaultView$ = [
748
755
  9,
749
756
  n0,
750
757
  _ADV,
751
758
  { [_h]: ["POST", "/AssociateDefaultView", 200] },
752
- () => AssociateDefaultViewInput,
753
- () => AssociateDefaultViewOutput,
759
+ () => AssociateDefaultViewInput$,
760
+ () => AssociateDefaultViewOutput$,
754
761
  ];
755
- var BatchGetView = [
762
+ var BatchGetView$ = [
756
763
  9,
757
764
  n0,
758
765
  _BGV,
759
766
  { [_h]: ["POST", "/BatchGetView", 200] },
760
- () => BatchGetViewInput,
761
- () => BatchGetViewOutput,
767
+ () => BatchGetViewInput$,
768
+ () => BatchGetViewOutput$,
762
769
  ];
763
- var CreateIndex = [
770
+ var CreateIndex$ = [
764
771
  9,
765
772
  n0,
766
773
  _CI,
767
774
  { [_h]: ["POST", "/CreateIndex", 200] },
768
- () => CreateIndexInput,
769
- () => CreateIndexOutput,
775
+ () => CreateIndexInput$,
776
+ () => CreateIndexOutput$,
770
777
  ];
771
- var CreateResourceExplorerSetup = [
778
+ var CreateResourceExplorerSetup$ = [
772
779
  9,
773
780
  n0,
774
781
  _CRES,
775
782
  { [_h]: ["POST", "/CreateResourceExplorerSetup", 200] },
776
- () => CreateResourceExplorerSetupInput,
777
- () => CreateResourceExplorerSetupOutput,
783
+ () => CreateResourceExplorerSetupInput$,
784
+ () => CreateResourceExplorerSetupOutput$,
778
785
  ];
779
- var CreateView = [
786
+ var CreateView$ = [
780
787
  9,
781
788
  n0,
782
789
  _CV,
783
790
  { [_h]: ["POST", "/CreateView", 200] },
784
- () => CreateViewInput,
785
- () => CreateViewOutput,
791
+ () => CreateViewInput$,
792
+ () => CreateViewOutput$,
786
793
  ];
787
- var DeleteIndex = [
794
+ var DeleteIndex$ = [
788
795
  9,
789
796
  n0,
790
797
  _DI,
791
798
  { [_h]: ["POST", "/DeleteIndex", 200] },
792
- () => DeleteIndexInput,
793
- () => DeleteIndexOutput,
799
+ () => DeleteIndexInput$,
800
+ () => DeleteIndexOutput$,
794
801
  ];
795
- var DeleteResourceExplorerSetup = [
802
+ var DeleteResourceExplorerSetup$ = [
796
803
  9,
797
804
  n0,
798
805
  _DRES,
799
806
  { [_h]: ["POST", "/DeleteResourceExplorerSetup", 200] },
800
- () => DeleteResourceExplorerSetupInput,
801
- () => DeleteResourceExplorerSetupOutput,
807
+ () => DeleteResourceExplorerSetupInput$,
808
+ () => DeleteResourceExplorerSetupOutput$,
802
809
  ];
803
- var DeleteView = [
810
+ var DeleteView$ = [
804
811
  9,
805
812
  n0,
806
813
  _DV,
807
814
  { [_h]: ["POST", "/DeleteView", 200] },
808
- () => DeleteViewInput,
809
- () => DeleteViewOutput,
815
+ () => DeleteViewInput$,
816
+ () => DeleteViewOutput$,
810
817
  ];
811
- var DisassociateDefaultView = [
818
+ var DisassociateDefaultView$ = [
812
819
  9,
813
820
  n0,
814
821
  _DDV,
@@ -816,189 +823,189 @@ var DisassociateDefaultView = [
816
823
  () => __Unit,
817
824
  () => __Unit,
818
825
  ];
819
- var GetAccountLevelServiceConfiguration = [
826
+ var GetAccountLevelServiceConfiguration$ = [
820
827
  9,
821
828
  n0,
822
829
  _GALSC,
823
830
  { [_h]: ["POST", "/GetAccountLevelServiceConfiguration", 200] },
824
831
  () => __Unit,
825
- () => GetAccountLevelServiceConfigurationOutput,
832
+ () => GetAccountLevelServiceConfigurationOutput$,
826
833
  ];
827
- var GetDefaultView = [
834
+ var GetDefaultView$ = [
828
835
  9,
829
836
  n0,
830
837
  _GDV,
831
838
  { [_h]: ["POST", "/GetDefaultView", 200] },
832
839
  () => __Unit,
833
- () => GetDefaultViewOutput,
840
+ () => GetDefaultViewOutput$,
834
841
  ];
835
- var GetIndex = [
842
+ var GetIndex$ = [
836
843
  9,
837
844
  n0,
838
845
  _GI,
839
846
  { [_h]: ["POST", "/GetIndex", 200] },
840
847
  () => __Unit,
841
- () => GetIndexOutput,
848
+ () => GetIndexOutput$,
842
849
  ];
843
- var GetManagedView = [
850
+ var GetManagedView$ = [
844
851
  9,
845
852
  n0,
846
853
  _GMV,
847
854
  { [_h]: ["POST", "/GetManagedView", 200] },
848
- () => GetManagedViewInput,
849
- () => GetManagedViewOutput,
855
+ () => GetManagedViewInput$,
856
+ () => GetManagedViewOutput$,
850
857
  ];
851
- var GetResourceExplorerSetup = [
858
+ var GetResourceExplorerSetup$ = [
852
859
  9,
853
860
  n0,
854
861
  _GRES,
855
862
  { [_h]: ["POST", "/GetResourceExplorerSetup", 200] },
856
- () => GetResourceExplorerSetupInput,
857
- () => GetResourceExplorerSetupOutput,
863
+ () => GetResourceExplorerSetupInput$,
864
+ () => GetResourceExplorerSetupOutput$,
858
865
  ];
859
- var GetServiceIndex = [
866
+ var GetServiceIndex$ = [
860
867
  9,
861
868
  n0,
862
869
  _GSI,
863
870
  { [_h]: ["POST", "/GetServiceIndex", 200] },
864
871
  () => __Unit,
865
- () => GetServiceIndexOutput,
872
+ () => GetServiceIndexOutput$,
866
873
  ];
867
- var GetServiceView = [
874
+ var GetServiceView$ = [
868
875
  9,
869
876
  n0,
870
877
  _GSV,
871
878
  { [_h]: ["POST", "/GetServiceView", 200] },
872
- () => GetServiceViewInput,
873
- () => GetServiceViewOutput,
879
+ () => GetServiceViewInput$,
880
+ () => GetServiceViewOutput$,
874
881
  ];
875
- var GetView = [
882
+ var GetView$ = [
876
883
  9,
877
884
  n0,
878
885
  _GV,
879
886
  { [_h]: ["POST", "/GetView", 200] },
880
- () => GetViewInput,
881
- () => GetViewOutput,
887
+ () => GetViewInput$,
888
+ () => GetViewOutput$,
882
889
  ];
883
- var ListIndexes = [
890
+ var ListIndexes$ = [
884
891
  9,
885
892
  n0,
886
893
  _LI,
887
894
  { [_h]: ["POST", "/ListIndexes", 200] },
888
- () => ListIndexesInput,
889
- () => ListIndexesOutput,
895
+ () => ListIndexesInput$,
896
+ () => ListIndexesOutput$,
890
897
  ];
891
- var ListIndexesForMembers = [
898
+ var ListIndexesForMembers$ = [
892
899
  9,
893
900
  n0,
894
901
  _LIFM,
895
902
  { [_h]: ["POST", "/ListIndexesForMembers", 200] },
896
- () => ListIndexesForMembersInput,
897
- () => ListIndexesForMembersOutput,
903
+ () => ListIndexesForMembersInput$,
904
+ () => ListIndexesForMembersOutput$,
898
905
  ];
899
- var ListManagedViews = [
906
+ var ListManagedViews$ = [
900
907
  9,
901
908
  n0,
902
909
  _LMV,
903
910
  { [_h]: ["POST", "/ListManagedViews", 200] },
904
- () => ListManagedViewsInput,
905
- () => ListManagedViewsOutput,
911
+ () => ListManagedViewsInput$,
912
+ () => ListManagedViewsOutput$,
906
913
  ];
907
- var ListResources = [
914
+ var ListResources$ = [
908
915
  9,
909
916
  n0,
910
917
  _LR,
911
918
  { [_h]: ["POST", "/ListResources", 200] },
912
- () => ListResourcesInput,
913
- () => ListResourcesOutput,
919
+ () => ListResourcesInput$,
920
+ () => ListResourcesOutput$,
914
921
  ];
915
- var ListServiceIndexes = [
922
+ var ListServiceIndexes$ = [
916
923
  9,
917
924
  n0,
918
925
  _LSI,
919
926
  { [_h]: ["POST", "/ListServiceIndexes", 200] },
920
- () => ListServiceIndexesInput,
921
- () => ListServiceIndexesOutput,
927
+ () => ListServiceIndexesInput$,
928
+ () => ListServiceIndexesOutput$,
922
929
  ];
923
- var ListServiceViews = [
930
+ var ListServiceViews$ = [
924
931
  9,
925
932
  n0,
926
933
  _LSV,
927
934
  { [_h]: ["POST", "/ListServiceViews", 200] },
928
- () => ListServiceViewsInput,
929
- () => ListServiceViewsOutput,
935
+ () => ListServiceViewsInput$,
936
+ () => ListServiceViewsOutput$,
930
937
  ];
931
- var ListStreamingAccessForServices = [
938
+ var ListStreamingAccessForServices$ = [
932
939
  9,
933
940
  n0,
934
941
  _LSAFS,
935
942
  { [_h]: ["POST", "/ListStreamingAccessForServices", 200] },
936
- () => ListStreamingAccessForServicesInput,
937
- () => ListStreamingAccessForServicesOutput,
943
+ () => ListStreamingAccessForServicesInput$,
944
+ () => ListStreamingAccessForServicesOutput$,
938
945
  ];
939
- var ListSupportedResourceTypes = [
946
+ var ListSupportedResourceTypes$ = [
940
947
  9,
941
948
  n0,
942
949
  _LSRT,
943
950
  { [_h]: ["POST", "/ListSupportedResourceTypes", 200] },
944
- () => ListSupportedResourceTypesInput,
945
- () => ListSupportedResourceTypesOutput,
951
+ () => ListSupportedResourceTypesInput$,
952
+ () => ListSupportedResourceTypesOutput$,
946
953
  ];
947
- var ListTagsForResource = [
954
+ var ListTagsForResource$ = [
948
955
  9,
949
956
  n0,
950
957
  _LTFR,
951
958
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
952
- () => ListTagsForResourceInput,
953
- () => ListTagsForResourceOutput,
959
+ () => ListTagsForResourceInput$,
960
+ () => ListTagsForResourceOutput$,
954
961
  ];
955
- var ListViews = [
962
+ var ListViews$ = [
956
963
  9,
957
964
  n0,
958
965
  _LV,
959
966
  { [_h]: ["POST", "/ListViews", 200] },
960
- () => ListViewsInput,
961
- () => ListViewsOutput,
967
+ () => ListViewsInput$,
968
+ () => ListViewsOutput$,
962
969
  ];
963
- var Search = [
970
+ var Search$ = [
964
971
  9,
965
972
  n0,
966
973
  _Sea,
967
974
  { [_h]: ["POST", "/Search", 200] },
968
- () => SearchInput,
969
- () => SearchOutput,
975
+ () => SearchInput$,
976
+ () => SearchOutput$,
970
977
  ];
971
- var TagResource = [
978
+ var TagResource$ = [
972
979
  9,
973
980
  n0,
974
981
  _TRa,
975
982
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
976
- () => TagResourceInput,
977
- () => TagResourceOutput,
983
+ () => TagResourceInput$,
984
+ () => TagResourceOutput$,
978
985
  ];
979
- var UntagResource = [
986
+ var UntagResource$ = [
980
987
  9,
981
988
  n0,
982
989
  _UR,
983
990
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
984
- () => UntagResourceInput,
985
- () => UntagResourceOutput,
991
+ () => UntagResourceInput$,
992
+ () => UntagResourceOutput$,
986
993
  ];
987
- var UpdateIndexType = [
994
+ var UpdateIndexType$ = [
988
995
  9,
989
996
  n0,
990
997
  _UIT,
991
998
  { [_h]: ["POST", "/UpdateIndexType", 200] },
992
- () => UpdateIndexTypeInput,
993
- () => UpdateIndexTypeOutput,
999
+ () => UpdateIndexTypeInput$,
1000
+ () => UpdateIndexTypeOutput$,
994
1001
  ];
995
- var UpdateView = [
1002
+ var UpdateView$ = [
996
1003
  9,
997
1004
  n0,
998
1005
  _UV,
999
1006
  { [_h]: ["POST", "/UpdateView", 200] },
1000
- () => UpdateViewInput,
1001
- () => UpdateViewOutput,
1007
+ () => UpdateViewInput$,
1008
+ () => UpdateViewOutput$,
1002
1009
  ];
1003
1010
 
1004
1011
  class AssociateDefaultViewCommand extends smithyClient.Command
@@ -1009,7 +1016,7 @@ class AssociateDefaultViewCommand extends smithyClient.Command
1009
1016
  })
1010
1017
  .s("ResourceExplorer", "AssociateDefaultView", {})
1011
1018
  .n("ResourceExplorer2Client", "AssociateDefaultViewCommand")
1012
- .sc(AssociateDefaultView)
1019
+ .sc(AssociateDefaultView$)
1013
1020
  .build() {
1014
1021
  }
1015
1022
 
@@ -1021,7 +1028,7 @@ class BatchGetViewCommand extends smithyClient.Command
1021
1028
  })
1022
1029
  .s("ResourceExplorer", "BatchGetView", {})
1023
1030
  .n("ResourceExplorer2Client", "BatchGetViewCommand")
1024
- .sc(BatchGetView)
1031
+ .sc(BatchGetView$)
1025
1032
  .build() {
1026
1033
  }
1027
1034
 
@@ -1033,7 +1040,7 @@ class CreateIndexCommand extends smithyClient.Command
1033
1040
  })
1034
1041
  .s("ResourceExplorer", "CreateIndex", {})
1035
1042
  .n("ResourceExplorer2Client", "CreateIndexCommand")
1036
- .sc(CreateIndex)
1043
+ .sc(CreateIndex$)
1037
1044
  .build() {
1038
1045
  }
1039
1046
 
@@ -1045,7 +1052,7 @@ class CreateResourceExplorerSetupCommand extends smithyClient.Command
1045
1052
  })
1046
1053
  .s("ResourceExplorer", "CreateResourceExplorerSetup", {})
1047
1054
  .n("ResourceExplorer2Client", "CreateResourceExplorerSetupCommand")
1048
- .sc(CreateResourceExplorerSetup)
1055
+ .sc(CreateResourceExplorerSetup$)
1049
1056
  .build() {
1050
1057
  }
1051
1058
 
@@ -1057,7 +1064,7 @@ class CreateViewCommand extends smithyClient.Command
1057
1064
  })
1058
1065
  .s("ResourceExplorer", "CreateView", {})
1059
1066
  .n("ResourceExplorer2Client", "CreateViewCommand")
1060
- .sc(CreateView)
1067
+ .sc(CreateView$)
1061
1068
  .build() {
1062
1069
  }
1063
1070
 
@@ -1069,7 +1076,7 @@ class DeleteIndexCommand extends smithyClient.Command
1069
1076
  })
1070
1077
  .s("ResourceExplorer", "DeleteIndex", {})
1071
1078
  .n("ResourceExplorer2Client", "DeleteIndexCommand")
1072
- .sc(DeleteIndex)
1079
+ .sc(DeleteIndex$)
1073
1080
  .build() {
1074
1081
  }
1075
1082
 
@@ -1081,7 +1088,7 @@ class DeleteResourceExplorerSetupCommand extends smithyClient.Command
1081
1088
  })
1082
1089
  .s("ResourceExplorer", "DeleteResourceExplorerSetup", {})
1083
1090
  .n("ResourceExplorer2Client", "DeleteResourceExplorerSetupCommand")
1084
- .sc(DeleteResourceExplorerSetup)
1091
+ .sc(DeleteResourceExplorerSetup$)
1085
1092
  .build() {
1086
1093
  }
1087
1094
 
@@ -1093,7 +1100,7 @@ class DeleteViewCommand extends smithyClient.Command
1093
1100
  })
1094
1101
  .s("ResourceExplorer", "DeleteView", {})
1095
1102
  .n("ResourceExplorer2Client", "DeleteViewCommand")
1096
- .sc(DeleteView)
1103
+ .sc(DeleteView$)
1097
1104
  .build() {
1098
1105
  }
1099
1106
 
@@ -1105,7 +1112,7 @@ class DisassociateDefaultViewCommand extends smithyClient.Command
1105
1112
  })
1106
1113
  .s("ResourceExplorer", "DisassociateDefaultView", {})
1107
1114
  .n("ResourceExplorer2Client", "DisassociateDefaultViewCommand")
1108
- .sc(DisassociateDefaultView)
1115
+ .sc(DisassociateDefaultView$)
1109
1116
  .build() {
1110
1117
  }
1111
1118
 
@@ -1117,7 +1124,7 @@ class GetAccountLevelServiceConfigurationCommand extends smithyClient.Command
1117
1124
  })
1118
1125
  .s("ResourceExplorer", "GetAccountLevelServiceConfiguration", {})
1119
1126
  .n("ResourceExplorer2Client", "GetAccountLevelServiceConfigurationCommand")
1120
- .sc(GetAccountLevelServiceConfiguration)
1127
+ .sc(GetAccountLevelServiceConfiguration$)
1121
1128
  .build() {
1122
1129
  }
1123
1130
 
@@ -1129,7 +1136,7 @@ class GetDefaultViewCommand extends smithyClient.Command
1129
1136
  })
1130
1137
  .s("ResourceExplorer", "GetDefaultView", {})
1131
1138
  .n("ResourceExplorer2Client", "GetDefaultViewCommand")
1132
- .sc(GetDefaultView)
1139
+ .sc(GetDefaultView$)
1133
1140
  .build() {
1134
1141
  }
1135
1142
 
@@ -1141,7 +1148,7 @@ class GetIndexCommand extends smithyClient.Command
1141
1148
  })
1142
1149
  .s("ResourceExplorer", "GetIndex", {})
1143
1150
  .n("ResourceExplorer2Client", "GetIndexCommand")
1144
- .sc(GetIndex)
1151
+ .sc(GetIndex$)
1145
1152
  .build() {
1146
1153
  }
1147
1154
 
@@ -1153,7 +1160,7 @@ class GetManagedViewCommand extends smithyClient.Command
1153
1160
  })
1154
1161
  .s("ResourceExplorer", "GetManagedView", {})
1155
1162
  .n("ResourceExplorer2Client", "GetManagedViewCommand")
1156
- .sc(GetManagedView)
1163
+ .sc(GetManagedView$)
1157
1164
  .build() {
1158
1165
  }
1159
1166
 
@@ -1165,7 +1172,7 @@ class GetResourceExplorerSetupCommand extends smithyClient.Command
1165
1172
  })
1166
1173
  .s("ResourceExplorer", "GetResourceExplorerSetup", {})
1167
1174
  .n("ResourceExplorer2Client", "GetResourceExplorerSetupCommand")
1168
- .sc(GetResourceExplorerSetup)
1175
+ .sc(GetResourceExplorerSetup$)
1169
1176
  .build() {
1170
1177
  }
1171
1178
 
@@ -1177,7 +1184,7 @@ class GetServiceIndexCommand extends smithyClient.Command
1177
1184
  })
1178
1185
  .s("ResourceExplorer", "GetServiceIndex", {})
1179
1186
  .n("ResourceExplorer2Client", "GetServiceIndexCommand")
1180
- .sc(GetServiceIndex)
1187
+ .sc(GetServiceIndex$)
1181
1188
  .build() {
1182
1189
  }
1183
1190
 
@@ -1189,7 +1196,7 @@ class GetServiceViewCommand extends smithyClient.Command
1189
1196
  })
1190
1197
  .s("ResourceExplorer", "GetServiceView", {})
1191
1198
  .n("ResourceExplorer2Client", "GetServiceViewCommand")
1192
- .sc(GetServiceView)
1199
+ .sc(GetServiceView$)
1193
1200
  .build() {
1194
1201
  }
1195
1202
 
@@ -1201,7 +1208,7 @@ class GetViewCommand extends smithyClient.Command
1201
1208
  })
1202
1209
  .s("ResourceExplorer", "GetView", {})
1203
1210
  .n("ResourceExplorer2Client", "GetViewCommand")
1204
- .sc(GetView)
1211
+ .sc(GetView$)
1205
1212
  .build() {
1206
1213
  }
1207
1214
 
@@ -1213,7 +1220,7 @@ class ListIndexesCommand extends smithyClient.Command
1213
1220
  })
1214
1221
  .s("ResourceExplorer", "ListIndexes", {})
1215
1222
  .n("ResourceExplorer2Client", "ListIndexesCommand")
1216
- .sc(ListIndexes)
1223
+ .sc(ListIndexes$)
1217
1224
  .build() {
1218
1225
  }
1219
1226
 
@@ -1225,7 +1232,7 @@ class ListIndexesForMembersCommand extends smithyClient.Command
1225
1232
  })
1226
1233
  .s("ResourceExplorer", "ListIndexesForMembers", {})
1227
1234
  .n("ResourceExplorer2Client", "ListIndexesForMembersCommand")
1228
- .sc(ListIndexesForMembers)
1235
+ .sc(ListIndexesForMembers$)
1229
1236
  .build() {
1230
1237
  }
1231
1238
 
@@ -1237,7 +1244,7 @@ class ListManagedViewsCommand extends smithyClient.Command
1237
1244
  })
1238
1245
  .s("ResourceExplorer", "ListManagedViews", {})
1239
1246
  .n("ResourceExplorer2Client", "ListManagedViewsCommand")
1240
- .sc(ListManagedViews)
1247
+ .sc(ListManagedViews$)
1241
1248
  .build() {
1242
1249
  }
1243
1250
 
@@ -1249,7 +1256,7 @@ class ListResourcesCommand extends smithyClient.Command
1249
1256
  })
1250
1257
  .s("ResourceExplorer", "ListResources", {})
1251
1258
  .n("ResourceExplorer2Client", "ListResourcesCommand")
1252
- .sc(ListResources)
1259
+ .sc(ListResources$)
1253
1260
  .build() {
1254
1261
  }
1255
1262
 
@@ -1261,7 +1268,7 @@ class ListServiceIndexesCommand extends smithyClient.Command
1261
1268
  })
1262
1269
  .s("ResourceExplorer", "ListServiceIndexes", {})
1263
1270
  .n("ResourceExplorer2Client", "ListServiceIndexesCommand")
1264
- .sc(ListServiceIndexes)
1271
+ .sc(ListServiceIndexes$)
1265
1272
  .build() {
1266
1273
  }
1267
1274
 
@@ -1273,7 +1280,7 @@ class ListServiceViewsCommand extends smithyClient.Command
1273
1280
  })
1274
1281
  .s("ResourceExplorer", "ListServiceViews", {})
1275
1282
  .n("ResourceExplorer2Client", "ListServiceViewsCommand")
1276
- .sc(ListServiceViews)
1283
+ .sc(ListServiceViews$)
1277
1284
  .build() {
1278
1285
  }
1279
1286
 
@@ -1285,7 +1292,7 @@ class ListStreamingAccessForServicesCommand extends smithyClient.Command
1285
1292
  })
1286
1293
  .s("ResourceExplorer", "ListStreamingAccessForServices", {})
1287
1294
  .n("ResourceExplorer2Client", "ListStreamingAccessForServicesCommand")
1288
- .sc(ListStreamingAccessForServices)
1295
+ .sc(ListStreamingAccessForServices$)
1289
1296
  .build() {
1290
1297
  }
1291
1298
 
@@ -1297,7 +1304,7 @@ class ListSupportedResourceTypesCommand extends smithyClient.Command
1297
1304
  })
1298
1305
  .s("ResourceExplorer", "ListSupportedResourceTypes", {})
1299
1306
  .n("ResourceExplorer2Client", "ListSupportedResourceTypesCommand")
1300
- .sc(ListSupportedResourceTypes)
1307
+ .sc(ListSupportedResourceTypes$)
1301
1308
  .build() {
1302
1309
  }
1303
1310
 
@@ -1309,7 +1316,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1309
1316
  })
1310
1317
  .s("ResourceExplorer", "ListTagsForResource", {})
1311
1318
  .n("ResourceExplorer2Client", "ListTagsForResourceCommand")
1312
- .sc(ListTagsForResource)
1319
+ .sc(ListTagsForResource$)
1313
1320
  .build() {
1314
1321
  }
1315
1322
 
@@ -1321,7 +1328,7 @@ class ListViewsCommand extends smithyClient.Command
1321
1328
  })
1322
1329
  .s("ResourceExplorer", "ListViews", {})
1323
1330
  .n("ResourceExplorer2Client", "ListViewsCommand")
1324
- .sc(ListViews)
1331
+ .sc(ListViews$)
1325
1332
  .build() {
1326
1333
  }
1327
1334
 
@@ -1333,7 +1340,7 @@ class SearchCommand extends smithyClient.Command
1333
1340
  })
1334
1341
  .s("ResourceExplorer", "Search", {})
1335
1342
  .n("ResourceExplorer2Client", "SearchCommand")
1336
- .sc(Search)
1343
+ .sc(Search$)
1337
1344
  .build() {
1338
1345
  }
1339
1346
 
@@ -1345,7 +1352,7 @@ class TagResourceCommand extends smithyClient.Command
1345
1352
  })
1346
1353
  .s("ResourceExplorer", "TagResource", {})
1347
1354
  .n("ResourceExplorer2Client", "TagResourceCommand")
1348
- .sc(TagResource)
1355
+ .sc(TagResource$)
1349
1356
  .build() {
1350
1357
  }
1351
1358
 
@@ -1357,7 +1364,7 @@ class UntagResourceCommand extends smithyClient.Command
1357
1364
  })
1358
1365
  .s("ResourceExplorer", "UntagResource", {})
1359
1366
  .n("ResourceExplorer2Client", "UntagResourceCommand")
1360
- .sc(UntagResource)
1367
+ .sc(UntagResource$)
1361
1368
  .build() {
1362
1369
  }
1363
1370
 
@@ -1369,7 +1376,7 @@ class UpdateIndexTypeCommand extends smithyClient.Command
1369
1376
  })
1370
1377
  .s("ResourceExplorer", "UpdateIndexType", {})
1371
1378
  .n("ResourceExplorer2Client", "UpdateIndexTypeCommand")
1372
- .sc(UpdateIndexType)
1379
+ .sc(UpdateIndexType$)
1373
1380
  .build() {
1374
1381
  }
1375
1382
 
@@ -1381,7 +1388,7 @@ class UpdateViewCommand extends smithyClient.Command
1381
1388
  })
1382
1389
  .s("ResourceExplorer", "UpdateView", {})
1383
1390
  .n("ResourceExplorer2Client", "UpdateViewCommand")
1384
- .sc(UpdateView)
1391
+ .sc(UpdateView$)
1385
1392
  .build() {
1386
1393
  }
1387
1394
 
@@ -1476,52 +1483,170 @@ Object.defineProperty(exports, "__Client", {
1476
1483
  get: function () { return smithyClient.Client; }
1477
1484
  });
1478
1485
  exports.AWSServiceAccessStatus = AWSServiceAccessStatus;
1479
- exports.AccessDeniedException = AccessDeniedException$1;
1486
+ exports.AccessDeniedException = AccessDeniedException;
1487
+ exports.AccessDeniedException$ = AccessDeniedException$;
1488
+ exports.AssociateDefaultView$ = AssociateDefaultView$;
1480
1489
  exports.AssociateDefaultViewCommand = AssociateDefaultViewCommand;
1490
+ exports.AssociateDefaultViewInput$ = AssociateDefaultViewInput$;
1491
+ exports.AssociateDefaultViewOutput$ = AssociateDefaultViewOutput$;
1492
+ exports.BatchGetView$ = BatchGetView$;
1481
1493
  exports.BatchGetViewCommand = BatchGetViewCommand;
1482
- exports.ConflictException = ConflictException$1;
1494
+ exports.BatchGetViewError$ = BatchGetViewError$;
1495
+ exports.BatchGetViewInput$ = BatchGetViewInput$;
1496
+ exports.BatchGetViewOutput$ = BatchGetViewOutput$;
1497
+ exports.ConflictException = ConflictException;
1498
+ exports.ConflictException$ = ConflictException$;
1499
+ exports.CreateIndex$ = CreateIndex$;
1483
1500
  exports.CreateIndexCommand = CreateIndexCommand;
1501
+ exports.CreateIndexInput$ = CreateIndexInput$;
1502
+ exports.CreateIndexOutput$ = CreateIndexOutput$;
1503
+ exports.CreateResourceExplorerSetup$ = CreateResourceExplorerSetup$;
1484
1504
  exports.CreateResourceExplorerSetupCommand = CreateResourceExplorerSetupCommand;
1505
+ exports.CreateResourceExplorerSetupInput$ = CreateResourceExplorerSetupInput$;
1506
+ exports.CreateResourceExplorerSetupOutput$ = CreateResourceExplorerSetupOutput$;
1507
+ exports.CreateView$ = CreateView$;
1485
1508
  exports.CreateViewCommand = CreateViewCommand;
1509
+ exports.CreateViewInput$ = CreateViewInput$;
1510
+ exports.CreateViewOutput$ = CreateViewOutput$;
1511
+ exports.DeleteIndex$ = DeleteIndex$;
1486
1512
  exports.DeleteIndexCommand = DeleteIndexCommand;
1513
+ exports.DeleteIndexInput$ = DeleteIndexInput$;
1514
+ exports.DeleteIndexOutput$ = DeleteIndexOutput$;
1515
+ exports.DeleteResourceExplorerSetup$ = DeleteResourceExplorerSetup$;
1487
1516
  exports.DeleteResourceExplorerSetupCommand = DeleteResourceExplorerSetupCommand;
1517
+ exports.DeleteResourceExplorerSetupInput$ = DeleteResourceExplorerSetupInput$;
1518
+ exports.DeleteResourceExplorerSetupOutput$ = DeleteResourceExplorerSetupOutput$;
1519
+ exports.DeleteView$ = DeleteView$;
1488
1520
  exports.DeleteViewCommand = DeleteViewCommand;
1521
+ exports.DeleteViewInput$ = DeleteViewInput$;
1522
+ exports.DeleteViewOutput$ = DeleteViewOutput$;
1523
+ exports.DisassociateDefaultView$ = DisassociateDefaultView$;
1489
1524
  exports.DisassociateDefaultViewCommand = DisassociateDefaultViewCommand;
1525
+ exports.ErrorDetails$ = ErrorDetails$;
1526
+ exports.GetAccountLevelServiceConfiguration$ = GetAccountLevelServiceConfiguration$;
1490
1527
  exports.GetAccountLevelServiceConfigurationCommand = GetAccountLevelServiceConfigurationCommand;
1528
+ exports.GetAccountLevelServiceConfigurationOutput$ = GetAccountLevelServiceConfigurationOutput$;
1529
+ exports.GetDefaultView$ = GetDefaultView$;
1491
1530
  exports.GetDefaultViewCommand = GetDefaultViewCommand;
1531
+ exports.GetDefaultViewOutput$ = GetDefaultViewOutput$;
1532
+ exports.GetIndex$ = GetIndex$;
1492
1533
  exports.GetIndexCommand = GetIndexCommand;
1534
+ exports.GetIndexOutput$ = GetIndexOutput$;
1535
+ exports.GetManagedView$ = GetManagedView$;
1493
1536
  exports.GetManagedViewCommand = GetManagedViewCommand;
1537
+ exports.GetManagedViewInput$ = GetManagedViewInput$;
1538
+ exports.GetManagedViewOutput$ = GetManagedViewOutput$;
1539
+ exports.GetResourceExplorerSetup$ = GetResourceExplorerSetup$;
1494
1540
  exports.GetResourceExplorerSetupCommand = GetResourceExplorerSetupCommand;
1541
+ exports.GetResourceExplorerSetupInput$ = GetResourceExplorerSetupInput$;
1542
+ exports.GetResourceExplorerSetupOutput$ = GetResourceExplorerSetupOutput$;
1543
+ exports.GetServiceIndex$ = GetServiceIndex$;
1495
1544
  exports.GetServiceIndexCommand = GetServiceIndexCommand;
1545
+ exports.GetServiceIndexOutput$ = GetServiceIndexOutput$;
1546
+ exports.GetServiceView$ = GetServiceView$;
1496
1547
  exports.GetServiceViewCommand = GetServiceViewCommand;
1548
+ exports.GetServiceViewInput$ = GetServiceViewInput$;
1549
+ exports.GetServiceViewOutput$ = GetServiceViewOutput$;
1550
+ exports.GetView$ = GetView$;
1497
1551
  exports.GetViewCommand = GetViewCommand;
1552
+ exports.GetViewInput$ = GetViewInput$;
1553
+ exports.GetViewOutput$ = GetViewOutput$;
1554
+ exports.IncludedProperty$ = IncludedProperty$;
1555
+ exports.Index$ = Index$;
1498
1556
  exports.IndexState = IndexState;
1557
+ exports.IndexStatus$ = IndexStatus$;
1499
1558
  exports.IndexType = IndexType;
1500
- exports.InternalServerException = InternalServerException$1;
1559
+ exports.InternalServerException = InternalServerException;
1560
+ exports.InternalServerException$ = InternalServerException$;
1561
+ exports.ListIndexes$ = ListIndexes$;
1501
1562
  exports.ListIndexesCommand = ListIndexesCommand;
1563
+ exports.ListIndexesForMembers$ = ListIndexesForMembers$;
1502
1564
  exports.ListIndexesForMembersCommand = ListIndexesForMembersCommand;
1565
+ exports.ListIndexesForMembersInput$ = ListIndexesForMembersInput$;
1566
+ exports.ListIndexesForMembersOutput$ = ListIndexesForMembersOutput$;
1567
+ exports.ListIndexesInput$ = ListIndexesInput$;
1568
+ exports.ListIndexesOutput$ = ListIndexesOutput$;
1569
+ exports.ListManagedViews$ = ListManagedViews$;
1503
1570
  exports.ListManagedViewsCommand = ListManagedViewsCommand;
1571
+ exports.ListManagedViewsInput$ = ListManagedViewsInput$;
1572
+ exports.ListManagedViewsOutput$ = ListManagedViewsOutput$;
1573
+ exports.ListResources$ = ListResources$;
1504
1574
  exports.ListResourcesCommand = ListResourcesCommand;
1575
+ exports.ListResourcesInput$ = ListResourcesInput$;
1576
+ exports.ListResourcesOutput$ = ListResourcesOutput$;
1577
+ exports.ListServiceIndexes$ = ListServiceIndexes$;
1505
1578
  exports.ListServiceIndexesCommand = ListServiceIndexesCommand;
1579
+ exports.ListServiceIndexesInput$ = ListServiceIndexesInput$;
1580
+ exports.ListServiceIndexesOutput$ = ListServiceIndexesOutput$;
1581
+ exports.ListServiceViews$ = ListServiceViews$;
1506
1582
  exports.ListServiceViewsCommand = ListServiceViewsCommand;
1583
+ exports.ListServiceViewsInput$ = ListServiceViewsInput$;
1584
+ exports.ListServiceViewsOutput$ = ListServiceViewsOutput$;
1585
+ exports.ListStreamingAccessForServices$ = ListStreamingAccessForServices$;
1507
1586
  exports.ListStreamingAccessForServicesCommand = ListStreamingAccessForServicesCommand;
1587
+ exports.ListStreamingAccessForServicesInput$ = ListStreamingAccessForServicesInput$;
1588
+ exports.ListStreamingAccessForServicesOutput$ = ListStreamingAccessForServicesOutput$;
1589
+ exports.ListSupportedResourceTypes$ = ListSupportedResourceTypes$;
1508
1590
  exports.ListSupportedResourceTypesCommand = ListSupportedResourceTypesCommand;
1591
+ exports.ListSupportedResourceTypesInput$ = ListSupportedResourceTypesInput$;
1592
+ exports.ListSupportedResourceTypesOutput$ = ListSupportedResourceTypesOutput$;
1593
+ exports.ListTagsForResource$ = ListTagsForResource$;
1509
1594
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1595
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
1596
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
1597
+ exports.ListViews$ = ListViews$;
1510
1598
  exports.ListViewsCommand = ListViewsCommand;
1599
+ exports.ListViewsInput$ = ListViewsInput$;
1600
+ exports.ListViewsOutput$ = ListViewsOutput$;
1601
+ exports.ManagedView$ = ManagedView$;
1602
+ exports.MemberIndex$ = MemberIndex$;
1511
1603
  exports.OperationStatus = OperationStatus;
1604
+ exports.OrgConfiguration$ = OrgConfiguration$;
1605
+ exports.RegionStatus$ = RegionStatus$;
1606
+ exports.Resource$ = Resource$;
1607
+ exports.ResourceCount$ = ResourceCount$;
1512
1608
  exports.ResourceExplorer2 = ResourceExplorer2;
1513
1609
  exports.ResourceExplorer2Client = ResourceExplorer2Client;
1514
- exports.ResourceExplorer2ServiceException = ResourceExplorer2ServiceException$1;
1515
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1610
+ exports.ResourceExplorer2ServiceException = ResourceExplorer2ServiceException;
1611
+ exports.ResourceExplorer2ServiceException$ = ResourceExplorer2ServiceException$;
1612
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1613
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1614
+ exports.ResourceProperty$ = ResourceProperty$;
1615
+ exports.Search$ = Search$;
1516
1616
  exports.SearchCommand = SearchCommand;
1517
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1617
+ exports.SearchFilter$ = SearchFilter$;
1618
+ exports.SearchInput$ = SearchInput$;
1619
+ exports.SearchOutput$ = SearchOutput$;
1620
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1621
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1622
+ exports.ServiceView$ = ServiceView$;
1623
+ exports.StreamingAccessDetails$ = StreamingAccessDetails$;
1624
+ exports.SupportedResourceType$ = SupportedResourceType$;
1625
+ exports.TagResource$ = TagResource$;
1518
1626
  exports.TagResourceCommand = TagResourceCommand;
1519
- exports.ThrottlingException = ThrottlingException$1;
1520
- exports.UnauthorizedException = UnauthorizedException$1;
1627
+ exports.TagResourceInput$ = TagResourceInput$;
1628
+ exports.TagResourceOutput$ = TagResourceOutput$;
1629
+ exports.ThrottlingException = ThrottlingException;
1630
+ exports.ThrottlingException$ = ThrottlingException$;
1631
+ exports.UnauthorizedException = UnauthorizedException;
1632
+ exports.UnauthorizedException$ = UnauthorizedException$;
1633
+ exports.UntagResource$ = UntagResource$;
1521
1634
  exports.UntagResourceCommand = UntagResourceCommand;
1635
+ exports.UntagResourceInput$ = UntagResourceInput$;
1636
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
1637
+ exports.UpdateIndexType$ = UpdateIndexType$;
1522
1638
  exports.UpdateIndexTypeCommand = UpdateIndexTypeCommand;
1639
+ exports.UpdateIndexTypeInput$ = UpdateIndexTypeInput$;
1640
+ exports.UpdateIndexTypeOutput$ = UpdateIndexTypeOutput$;
1641
+ exports.UpdateView$ = UpdateView$;
1523
1642
  exports.UpdateViewCommand = UpdateViewCommand;
1524
- exports.ValidationException = ValidationException$1;
1643
+ exports.UpdateViewInput$ = UpdateViewInput$;
1644
+ exports.UpdateViewOutput$ = UpdateViewOutput$;
1645
+ exports.ValidationException = ValidationException;
1646
+ exports.ValidationException$ = ValidationException$;
1647
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1648
+ exports.View$ = View$;
1649
+ exports.ViewStatus$ = ViewStatus$;
1525
1650
  exports.paginateGetResourceExplorerSetup = paginateGetResourceExplorerSetup;
1526
1651
  exports.paginateListIndexes = paginateListIndexes;
1527
1652
  exports.paginateListIndexesForMembers = paginateListIndexesForMembers;