@aws-sdk/client-grafana 3.49.0 → 3.50.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 (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +25 -25
  3. package/dist-types/ts3.4/Grafana.d.ts +0 -60
  4. package/dist-types/ts3.4/GrafanaClient.d.ts +0 -84
  5. package/dist-types/ts3.4/commands/AssociateLicenseCommand.d.ts +0 -17
  6. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +0 -17
  7. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +0 -17
  8. package/dist-types/ts3.4/commands/DescribeWorkspaceAuthenticationCommand.d.ts +0 -17
  9. package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +0 -17
  10. package/dist-types/ts3.4/commands/DisassociateLicenseCommand.d.ts +0 -17
  11. package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +0 -17
  12. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +0 -17
  13. package/dist-types/ts3.4/commands/UpdatePermissionsCommand.d.ts +0 -17
  14. package/dist-types/ts3.4/commands/UpdateWorkspaceAuthenticationCommand.d.ts +0 -17
  15. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +0 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +0 -11
  17. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  18. package/dist-types/ts3.4/index.d.ts +0 -5
  19. package/dist-types/ts3.4/models/index.d.ts +0 -1
  20. package/dist-types/ts3.4/models/models_0.d.ts +0 -677
  21. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  22. package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +0 -4
  23. package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +0 -4
  24. package/dist-types/ts3.4/pagination/index.d.ts +0 -3
  25. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -35
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
@@ -1,677 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
-
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- message: string | undefined;
7
- }
8
- export declare enum AccountAccessType {
9
-
10
- CURRENT_ACCOUNT = "CURRENT_ACCOUNT",
11
-
12
- ORGANIZATION = "ORGANIZATION"
13
- }
14
-
15
- export interface AssertionAttributes {
16
-
17
- name?: string;
18
-
19
- login?: string;
20
-
21
- email?: string;
22
-
23
- groups?: string;
24
-
25
- role?: string;
26
-
27
- org?: string;
28
- }
29
- export declare namespace AssertionAttributes {
30
-
31
- const filterSensitiveLog: (obj: AssertionAttributes) => any;
32
- }
33
- export declare enum LicenseType {
34
-
35
- ENTERPRISE = "ENTERPRISE",
36
-
37
- ENTERPRISE_FREE_TRIAL = "ENTERPRISE_FREE_TRIAL"
38
- }
39
- export interface AssociateLicenseRequest {
40
-
41
- workspaceId: string | undefined;
42
-
43
- licenseType: LicenseType | string | undefined;
44
- }
45
- export declare namespace AssociateLicenseRequest {
46
-
47
- const filterSensitiveLog: (obj: AssociateLicenseRequest) => any;
48
- }
49
- export declare enum AuthenticationProviderTypes {
50
-
51
- AWS_SSO = "AWS_SSO",
52
-
53
- SAML = "SAML"
54
- }
55
- export declare enum SamlConfigurationStatus {
56
-
57
- CONFIGURED = "CONFIGURED",
58
-
59
- NOT_CONFIGURED = "NOT_CONFIGURED"
60
- }
61
-
62
- export interface AuthenticationSummary {
63
-
64
- providers: (AuthenticationProviderTypes | string)[] | undefined;
65
-
66
- samlConfigurationStatus?: SamlConfigurationStatus | string;
67
- }
68
- export declare namespace AuthenticationSummary {
69
-
70
- const filterSensitiveLog: (obj: AuthenticationSummary) => any;
71
- }
72
- export declare enum DataSourceType {
73
-
74
- AMAZON_OPENSEARCH_SERVICE = "AMAZON_OPENSEARCH_SERVICE",
75
-
76
- CLOUDWATCH = "CLOUDWATCH",
77
-
78
- PROMETHEUS = "PROMETHEUS",
79
-
80
- SITEWISE = "SITEWISE",
81
-
82
- TIMESTREAM = "TIMESTREAM",
83
-
84
- XRAY = "XRAY"
85
- }
86
- export declare enum NotificationDestinationType {
87
-
88
- SNS = "SNS"
89
- }
90
- export declare enum PermissionType {
91
-
92
- CUSTOMER_MANAGED = "CUSTOMER_MANAGED",
93
-
94
- SERVICE_MANAGED = "SERVICE_MANAGED"
95
- }
96
- export declare enum WorkspaceStatus {
97
-
98
- ACTIVE = "ACTIVE",
99
-
100
- CREATING = "CREATING",
101
-
102
- CREATION_FAILED = "CREATION_FAILED",
103
-
104
- DELETING = "DELETING",
105
-
106
- DELETION_FAILED = "DELETION_FAILED",
107
-
108
- FAILED = "FAILED",
109
-
110
- LICENSE_REMOVAL_FAILED = "LICENSE_REMOVAL_FAILED",
111
-
112
- UPDATE_FAILED = "UPDATE_FAILED",
113
-
114
- UPDATING = "UPDATING",
115
-
116
- UPGRADE_FAILED = "UPGRADE_FAILED",
117
-
118
- UPGRADING = "UPGRADING"
119
- }
120
-
121
- export interface WorkspaceDescription {
122
-
123
- accountAccessType?: AccountAccessType | string;
124
-
125
- created: Date | undefined;
126
-
127
- dataSources: (DataSourceType | string)[] | undefined;
128
-
129
- description?: string;
130
-
131
- endpoint: string | undefined;
132
-
133
- grafanaVersion: string | undefined;
134
-
135
- id: string | undefined;
136
-
137
- modified: Date | undefined;
138
-
139
- name?: string;
140
-
141
- organizationRoleName?: string;
142
-
143
- notificationDestinations?: (NotificationDestinationType | string)[];
144
-
145
- organizationalUnits?: string[];
146
-
147
- permissionType?: PermissionType | string;
148
-
149
- stackSetName?: string;
150
-
151
- status: WorkspaceStatus | string | undefined;
152
-
153
- workspaceRoleArn?: string;
154
-
155
- licenseType?: LicenseType | string;
156
-
157
- freeTrialConsumed?: boolean;
158
-
159
- licenseExpiration?: Date;
160
-
161
- freeTrialExpiration?: Date;
162
-
163
- authentication: AuthenticationSummary | undefined;
164
- }
165
- export declare namespace WorkspaceDescription {
166
-
167
- const filterSensitiveLog: (obj: WorkspaceDescription) => any;
168
- }
169
- export interface AssociateLicenseResponse {
170
-
171
- workspace: WorkspaceDescription | undefined;
172
- }
173
- export declare namespace AssociateLicenseResponse {
174
-
175
- const filterSensitiveLog: (obj: AssociateLicenseResponse) => any;
176
- }
177
-
178
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
179
- name: "InternalServerException";
180
- $fault: "server";
181
- $retryable: {};
182
-
183
- message: string | undefined;
184
-
185
- retryAfterSeconds?: number;
186
- }
187
-
188
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
189
- name: "ResourceNotFoundException";
190
- $fault: "client";
191
-
192
- message: string | undefined;
193
-
194
- resourceId: string | undefined;
195
-
196
- resourceType: string | undefined;
197
- }
198
-
199
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
200
- name: "ThrottlingException";
201
- $fault: "client";
202
- $retryable: {};
203
-
204
- message: string | undefined;
205
-
206
- serviceCode?: string;
207
-
208
- quotaCode?: string;
209
-
210
- retryAfterSeconds?: number;
211
- }
212
-
213
- export interface ValidationExceptionField {
214
-
215
- name: string | undefined;
216
-
217
- message: string | undefined;
218
- }
219
- export declare namespace ValidationExceptionField {
220
-
221
- const filterSensitiveLog: (obj: ValidationExceptionField) => any;
222
- }
223
- export declare enum ValidationExceptionReason {
224
- CANNOT_PARSE = "CANNOT_PARSE",
225
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
226
- OTHER = "OTHER",
227
- UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
228
- }
229
-
230
- export interface ValidationException extends __SmithyException, $MetadataBearer {
231
- name: "ValidationException";
232
- $fault: "client";
233
-
234
- message: string | undefined;
235
-
236
- reason: ValidationExceptionReason | string | undefined;
237
-
238
- fieldList?: ValidationExceptionField[];
239
- }
240
- export interface DescribeWorkspaceAuthenticationRequest {
241
-
242
- workspaceId: string | undefined;
243
- }
244
- export declare namespace DescribeWorkspaceAuthenticationRequest {
245
-
246
- const filterSensitiveLog: (obj: DescribeWorkspaceAuthenticationRequest) => any;
247
- }
248
-
249
- export interface AwsSsoAuthentication {
250
-
251
- ssoClientId?: string;
252
- }
253
- export declare namespace AwsSsoAuthentication {
254
-
255
- const filterSensitiveLog: (obj: AwsSsoAuthentication) => any;
256
- }
257
-
258
- export declare type IdpMetadata = IdpMetadata.UrlMember | IdpMetadata.XmlMember | IdpMetadata.$UnknownMember;
259
- export declare namespace IdpMetadata {
260
-
261
- interface UrlMember {
262
- url: string;
263
- xml?: never;
264
- $unknown?: never;
265
- }
266
-
267
- interface XmlMember {
268
- url?: never;
269
- xml: string;
270
- $unknown?: never;
271
- }
272
- interface $UnknownMember {
273
- url?: never;
274
- xml?: never;
275
- $unknown: [
276
- string,
277
- any
278
- ];
279
- }
280
- interface Visitor<T> {
281
- url: (value: string) => T;
282
- xml: (value: string) => T;
283
- _: (name: string, value: any) => T;
284
- }
285
- const visit: <T>(value: IdpMetadata, visitor: Visitor<T>) => T;
286
-
287
- const filterSensitiveLog: (obj: IdpMetadata) => any;
288
- }
289
-
290
- export interface RoleValues {
291
-
292
- editor?: string[];
293
-
294
- admin?: string[];
295
- }
296
- export declare namespace RoleValues {
297
-
298
- const filterSensitiveLog: (obj: RoleValues) => any;
299
- }
300
-
301
- export interface SamlConfiguration {
302
-
303
- idpMetadata: IdpMetadata | undefined;
304
-
305
- assertionAttributes?: AssertionAttributes;
306
-
307
- roleValues?: RoleValues;
308
-
309
- allowedOrganizations?: string[];
310
-
311
- loginValidityDuration?: number;
312
- }
313
- export declare namespace SamlConfiguration {
314
-
315
- const filterSensitiveLog: (obj: SamlConfiguration) => any;
316
- }
317
-
318
- export interface SamlAuthentication {
319
-
320
- status: SamlConfigurationStatus | string | undefined;
321
-
322
- configuration?: SamlConfiguration;
323
- }
324
- export declare namespace SamlAuthentication {
325
-
326
- const filterSensitiveLog: (obj: SamlAuthentication) => any;
327
- }
328
-
329
- export interface AuthenticationDescription {
330
-
331
- providers: (AuthenticationProviderTypes | string)[] | undefined;
332
-
333
- saml?: SamlAuthentication;
334
-
335
- awsSso?: AwsSsoAuthentication;
336
- }
337
- export declare namespace AuthenticationDescription {
338
-
339
- const filterSensitiveLog: (obj: AuthenticationDescription) => any;
340
- }
341
- export interface DescribeWorkspaceAuthenticationResponse {
342
-
343
- authentication: AuthenticationDescription | undefined;
344
- }
345
- export declare namespace DescribeWorkspaceAuthenticationResponse {
346
-
347
- const filterSensitiveLog: (obj: DescribeWorkspaceAuthenticationResponse) => any;
348
- }
349
-
350
- export interface ConflictException extends __SmithyException, $MetadataBearer {
351
- name: "ConflictException";
352
- $fault: "client";
353
-
354
- message: string | undefined;
355
-
356
- resourceId: string | undefined;
357
-
358
- resourceType: string | undefined;
359
- }
360
- export interface UpdateWorkspaceAuthenticationRequest {
361
-
362
- workspaceId: string | undefined;
363
-
364
- authenticationProviders: (AuthenticationProviderTypes | string)[] | undefined;
365
-
366
- samlConfiguration?: SamlConfiguration;
367
- }
368
- export declare namespace UpdateWorkspaceAuthenticationRequest {
369
-
370
- const filterSensitiveLog: (obj: UpdateWorkspaceAuthenticationRequest) => any;
371
- }
372
- export interface UpdateWorkspaceAuthenticationResponse {
373
-
374
- authentication: AuthenticationDescription | undefined;
375
- }
376
- export declare namespace UpdateWorkspaceAuthenticationResponse {
377
-
378
- const filterSensitiveLog: (obj: UpdateWorkspaceAuthenticationResponse) => any;
379
- }
380
- export interface DisassociateLicenseRequest {
381
-
382
- workspaceId: string | undefined;
383
-
384
- licenseType: LicenseType | string | undefined;
385
- }
386
- export declare namespace DisassociateLicenseRequest {
387
-
388
- const filterSensitiveLog: (obj: DisassociateLicenseRequest) => any;
389
- }
390
- export interface DisassociateLicenseResponse {
391
-
392
- workspace: WorkspaceDescription | undefined;
393
- }
394
- export declare namespace DisassociateLicenseResponse {
395
-
396
- const filterSensitiveLog: (obj: DisassociateLicenseResponse) => any;
397
- }
398
- export declare enum UserType {
399
-
400
- SSO_GROUP = "SSO_GROUP",
401
-
402
- SSO_USER = "SSO_USER"
403
- }
404
- export interface ListPermissionsRequest {
405
-
406
- maxResults?: number;
407
-
408
- nextToken?: string;
409
-
410
- userType?: UserType | string;
411
-
412
- userId?: string;
413
-
414
- groupId?: string;
415
-
416
- workspaceId: string | undefined;
417
- }
418
- export declare namespace ListPermissionsRequest {
419
-
420
- const filterSensitiveLog: (obj: ListPermissionsRequest) => any;
421
- }
422
- export declare enum Role {
423
-
424
- ADMIN = "ADMIN",
425
-
426
- EDITOR = "EDITOR"
427
- }
428
-
429
- export interface User {
430
-
431
- id: string | undefined;
432
-
433
- type: UserType | string | undefined;
434
- }
435
- export declare namespace User {
436
-
437
- const filterSensitiveLog: (obj: User) => any;
438
- }
439
-
440
- export interface PermissionEntry {
441
-
442
- user: User | undefined;
443
-
444
- role: Role | string | undefined;
445
- }
446
- export declare namespace PermissionEntry {
447
-
448
- const filterSensitiveLog: (obj: PermissionEntry) => any;
449
- }
450
- export interface ListPermissionsResponse {
451
-
452
- nextToken?: string;
453
-
454
- permissions: PermissionEntry[] | undefined;
455
- }
456
- export declare namespace ListPermissionsResponse {
457
-
458
- const filterSensitiveLog: (obj: ListPermissionsResponse) => any;
459
- }
460
- export declare enum UpdateAction {
461
-
462
- ADD = "ADD",
463
-
464
- REVOKE = "REVOKE"
465
- }
466
-
467
- export interface UpdateInstruction {
468
-
469
- action: UpdateAction | string | undefined;
470
-
471
- role: Role | string | undefined;
472
-
473
- users: User[] | undefined;
474
- }
475
- export declare namespace UpdateInstruction {
476
-
477
- const filterSensitiveLog: (obj: UpdateInstruction) => any;
478
- }
479
- export interface UpdatePermissionsRequest {
480
-
481
- updateInstructionBatch: UpdateInstruction[] | undefined;
482
-
483
- workspaceId: string | undefined;
484
- }
485
- export declare namespace UpdatePermissionsRequest {
486
-
487
- const filterSensitiveLog: (obj: UpdatePermissionsRequest) => any;
488
- }
489
-
490
- export interface UpdateError {
491
-
492
- code: number | undefined;
493
-
494
- message: string | undefined;
495
-
496
- causedBy: UpdateInstruction | undefined;
497
- }
498
- export declare namespace UpdateError {
499
-
500
- const filterSensitiveLog: (obj: UpdateError) => any;
501
- }
502
- export interface UpdatePermissionsResponse {
503
-
504
- errors: UpdateError[] | undefined;
505
- }
506
- export declare namespace UpdatePermissionsResponse {
507
-
508
- const filterSensitiveLog: (obj: UpdatePermissionsResponse) => any;
509
- }
510
- export interface CreateWorkspaceRequest {
511
-
512
- accountAccessType: AccountAccessType | string | undefined;
513
-
514
- clientToken?: string;
515
-
516
- organizationRoleName?: string;
517
-
518
- permissionType: PermissionType | string | undefined;
519
-
520
- stackSetName?: string;
521
-
522
- workspaceDataSources?: (DataSourceType | string)[];
523
-
524
- workspaceDescription?: string;
525
-
526
- workspaceName?: string;
527
-
528
- workspaceNotificationDestinations?: (NotificationDestinationType | string)[];
529
-
530
- workspaceOrganizationalUnits?: string[];
531
-
532
- workspaceRoleArn?: string;
533
-
534
- authenticationProviders: (AuthenticationProviderTypes | string)[] | undefined;
535
- }
536
- export declare namespace CreateWorkspaceRequest {
537
-
538
- const filterSensitiveLog: (obj: CreateWorkspaceRequest) => any;
539
- }
540
- export interface CreateWorkspaceResponse {
541
-
542
- workspace: WorkspaceDescription | undefined;
543
- }
544
- export declare namespace CreateWorkspaceResponse {
545
-
546
- const filterSensitiveLog: (obj: CreateWorkspaceResponse) => any;
547
- }
548
-
549
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
550
- name: "ServiceQuotaExceededException";
551
- $fault: "client";
552
-
553
- message: string | undefined;
554
-
555
- resourceId: string | undefined;
556
-
557
- resourceType: string | undefined;
558
-
559
- serviceCode: string | undefined;
560
-
561
- quotaCode: string | undefined;
562
- }
563
- export interface DeleteWorkspaceRequest {
564
-
565
- workspaceId: string | undefined;
566
- }
567
- export declare namespace DeleteWorkspaceRequest {
568
-
569
- const filterSensitiveLog: (obj: DeleteWorkspaceRequest) => any;
570
- }
571
- export interface DeleteWorkspaceResponse {
572
-
573
- workspace: WorkspaceDescription | undefined;
574
- }
575
- export declare namespace DeleteWorkspaceResponse {
576
-
577
- const filterSensitiveLog: (obj: DeleteWorkspaceResponse) => any;
578
- }
579
- export interface DescribeWorkspaceRequest {
580
-
581
- workspaceId: string | undefined;
582
- }
583
- export declare namespace DescribeWorkspaceRequest {
584
-
585
- const filterSensitiveLog: (obj: DescribeWorkspaceRequest) => any;
586
- }
587
- export interface DescribeWorkspaceResponse {
588
-
589
- workspace: WorkspaceDescription | undefined;
590
- }
591
- export declare namespace DescribeWorkspaceResponse {
592
-
593
- const filterSensitiveLog: (obj: DescribeWorkspaceResponse) => any;
594
- }
595
- export interface ListWorkspacesRequest {
596
-
597
- maxResults?: number;
598
-
599
- nextToken?: string;
600
- }
601
- export declare namespace ListWorkspacesRequest {
602
-
603
- const filterSensitiveLog: (obj: ListWorkspacesRequest) => any;
604
- }
605
-
606
- export interface WorkspaceSummary {
607
-
608
- created: Date | undefined;
609
-
610
- description?: string;
611
-
612
- endpoint: string | undefined;
613
-
614
- grafanaVersion: string | undefined;
615
-
616
- id: string | undefined;
617
-
618
- modified: Date | undefined;
619
-
620
- name?: string;
621
-
622
- notificationDestinations?: (NotificationDestinationType | string)[];
623
-
624
- status: WorkspaceStatus | string | undefined;
625
-
626
- authentication: AuthenticationSummary | undefined;
627
- }
628
- export declare namespace WorkspaceSummary {
629
-
630
- const filterSensitiveLog: (obj: WorkspaceSummary) => any;
631
- }
632
- export interface ListWorkspacesResponse {
633
-
634
- workspaces: WorkspaceSummary[] | undefined;
635
-
636
- nextToken?: string;
637
- }
638
- export declare namespace ListWorkspacesResponse {
639
-
640
- const filterSensitiveLog: (obj: ListWorkspacesResponse) => any;
641
- }
642
- export interface UpdateWorkspaceRequest {
643
-
644
- accountAccessType?: AccountAccessType | string;
645
-
646
- organizationRoleName?: string;
647
-
648
- permissionType?: PermissionType | string;
649
-
650
- stackSetName?: string;
651
-
652
- workspaceDataSources?: (DataSourceType | string)[];
653
-
654
- workspaceDescription?: string;
655
-
656
- workspaceId: string | undefined;
657
-
658
- workspaceName?: string;
659
-
660
- workspaceNotificationDestinations?: (NotificationDestinationType | string)[];
661
-
662
- workspaceOrganizationalUnits?: string[];
663
-
664
- workspaceRoleArn?: string;
665
- }
666
- export declare namespace UpdateWorkspaceRequest {
667
-
668
- const filterSensitiveLog: (obj: UpdateWorkspaceRequest) => any;
669
- }
670
- export interface UpdateWorkspaceResponse {
671
-
672
- workspace: WorkspaceDescription | undefined;
673
- }
674
- export declare namespace UpdateWorkspaceResponse {
675
-
676
- const filterSensitiveLog: (obj: UpdateWorkspaceResponse) => any;
677
- }
@@ -1,6 +0,0 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Grafana } from "../Grafana";
3
- import { GrafanaClient } from "../GrafanaClient";
4
- export interface GrafanaPaginationConfiguration extends PaginationConfiguration {
5
- client: Grafana | GrafanaClient;
6
- }
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "../commands/ListPermissionsCommand";
3
- import { GrafanaPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPermissions(config: GrafanaPaginationConfiguration, input: ListPermissionsCommandInput, ...additionalArguments: any): Paginator<ListPermissionsCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
3
- import { GrafanaPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListWorkspaces(config: GrafanaPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
@@ -1,3 +0,0 @@
1
- export * from "./Interfaces";
2
- export * from "./ListPermissionsPaginator";
3
- export * from "./ListWorkspacesPaginator";