@aws-sdk/client-workdocs 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +242 -278
- package/dist-es/models/models_0.js +242 -278
- package/dist-types/models/models_0.d.ts +424 -244
- package/dist-types/ts3.4/models/models_0.d.ts +304 -242
- package/package.json +34 -34
|
@@ -130,35 +130,50 @@ export interface ActivateUserRequest {
|
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
132
|
* @public
|
|
133
|
+
* @enum
|
|
133
134
|
*/
|
|
134
|
-
export declare
|
|
135
|
-
DE
|
|
136
|
-
DEFAULT
|
|
137
|
-
EN
|
|
138
|
-
ES
|
|
139
|
-
FR
|
|
140
|
-
JA
|
|
141
|
-
KO
|
|
142
|
-
PT_BR
|
|
143
|
-
RU
|
|
144
|
-
ZH_CN
|
|
145
|
-
ZH_TW
|
|
146
|
-
}
|
|
135
|
+
export declare const LocaleType: {
|
|
136
|
+
readonly DE: "de";
|
|
137
|
+
readonly DEFAULT: "default";
|
|
138
|
+
readonly EN: "en";
|
|
139
|
+
readonly ES: "es";
|
|
140
|
+
readonly FR: "fr";
|
|
141
|
+
readonly JA: "ja";
|
|
142
|
+
readonly KO: "ko";
|
|
143
|
+
readonly PT_BR: "pt_BR";
|
|
144
|
+
readonly RU: "ru";
|
|
145
|
+
readonly ZH_CN: "zh_CN";
|
|
146
|
+
readonly ZH_TW: "zh_TW";
|
|
147
|
+
};
|
|
147
148
|
/**
|
|
148
149
|
* @public
|
|
149
150
|
*/
|
|
150
|
-
export
|
|
151
|
-
ACTIVE = "ACTIVE",
|
|
152
|
-
INACTIVE = "INACTIVE",
|
|
153
|
-
PENDING = "PENDING"
|
|
154
|
-
}
|
|
151
|
+
export type LocaleType = (typeof LocaleType)[keyof typeof LocaleType];
|
|
155
152
|
/**
|
|
156
153
|
* @public
|
|
154
|
+
* @enum
|
|
157
155
|
*/
|
|
158
|
-
export declare
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
156
|
+
export declare const UserStatusType: {
|
|
157
|
+
readonly ACTIVE: "ACTIVE";
|
|
158
|
+
readonly INACTIVE: "INACTIVE";
|
|
159
|
+
readonly PENDING: "PENDING";
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
export type UserStatusType = (typeof UserStatusType)[keyof typeof UserStatusType];
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
* @enum
|
|
168
|
+
*/
|
|
169
|
+
export declare const StorageType: {
|
|
170
|
+
readonly QUOTA: "QUOTA";
|
|
171
|
+
readonly UNLIMITED: "UNLIMITED";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
162
177
|
/**
|
|
163
178
|
* @public
|
|
164
179
|
* <p>Describes the storage for a user.</p>
|
|
@@ -189,14 +204,19 @@ export interface UserStorageMetadata {
|
|
|
189
204
|
}
|
|
190
205
|
/**
|
|
191
206
|
* @public
|
|
207
|
+
* @enum
|
|
192
208
|
*/
|
|
193
|
-
export declare
|
|
194
|
-
ADMIN
|
|
195
|
-
MINIMALUSER
|
|
196
|
-
POWERUSER
|
|
197
|
-
USER
|
|
198
|
-
WORKSPACESUSER
|
|
199
|
-
}
|
|
209
|
+
export declare const UserType: {
|
|
210
|
+
readonly ADMIN: "ADMIN";
|
|
211
|
+
readonly MINIMALUSER: "MINIMALUSER";
|
|
212
|
+
readonly POWERUSER: "POWERUSER";
|
|
213
|
+
readonly USER: "USER";
|
|
214
|
+
readonly WORKSPACESUSER: "WORKSPACESUSER";
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
200
220
|
/**
|
|
201
221
|
* @public
|
|
202
222
|
* <p>Describes a user.</p>
|
|
@@ -274,12 +294,17 @@ export interface ActivateUserResponse {
|
|
|
274
294
|
}
|
|
275
295
|
/**
|
|
276
296
|
* @public
|
|
297
|
+
* @enum
|
|
277
298
|
*/
|
|
278
|
-
export declare
|
|
279
|
-
DELETED
|
|
280
|
-
DRAFT
|
|
281
|
-
PUBLISHED
|
|
282
|
-
}
|
|
299
|
+
export declare const CommentStatusType: {
|
|
300
|
+
readonly DELETED: "DELETED";
|
|
301
|
+
readonly DRAFT: "DRAFT";
|
|
302
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export type CommentStatusType = (typeof CommentStatusType)[keyof typeof CommentStatusType];
|
|
283
308
|
/**
|
|
284
309
|
* @public
|
|
285
310
|
* <p>Describes the metadata of a comment.</p>
|
|
@@ -338,11 +363,16 @@ export interface UserMetadata {
|
|
|
338
363
|
}
|
|
339
364
|
/**
|
|
340
365
|
* @public
|
|
366
|
+
* @enum
|
|
341
367
|
*/
|
|
342
|
-
export declare
|
|
343
|
-
DOCUMENT
|
|
344
|
-
FOLDER
|
|
345
|
-
}
|
|
368
|
+
export declare const ResourceType: {
|
|
369
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
370
|
+
readonly FOLDER: "FOLDER";
|
|
371
|
+
};
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
346
376
|
/**
|
|
347
377
|
* @public
|
|
348
378
|
* <p>Describes the metadata of a resource.</p>
|
|
@@ -408,42 +438,47 @@ export interface Participants {
|
|
|
408
438
|
}
|
|
409
439
|
/**
|
|
410
440
|
* @public
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
441
|
+
* @enum
|
|
442
|
+
*/
|
|
443
|
+
export declare const ActivityType: {
|
|
444
|
+
readonly DOCUMENT_ANNOTATION_ADDED: "DOCUMENT_ANNOTATION_ADDED";
|
|
445
|
+
readonly DOCUMENT_ANNOTATION_DELETED: "DOCUMENT_ANNOTATION_DELETED";
|
|
446
|
+
readonly DOCUMENT_CHECKED_IN: "DOCUMENT_CHECKED_IN";
|
|
447
|
+
readonly DOCUMENT_CHECKED_OUT: "DOCUMENT_CHECKED_OUT";
|
|
448
|
+
readonly DOCUMENT_COMMENT_ADDED: "DOCUMENT_COMMENT_ADDED";
|
|
449
|
+
readonly DOCUMENT_COMMENT_DELETED: "DOCUMENT_COMMENT_DELETED";
|
|
450
|
+
readonly DOCUMENT_MOVED: "DOCUMENT_MOVED";
|
|
451
|
+
readonly DOCUMENT_RECYCLED: "DOCUMENT_RECYCLED";
|
|
452
|
+
readonly DOCUMENT_RENAMED: "DOCUMENT_RENAMED";
|
|
453
|
+
readonly DOCUMENT_RESTORED: "DOCUMENT_RESTORED";
|
|
454
|
+
readonly DOCUMENT_REVERTED: "DOCUMENT_REVERTED";
|
|
455
|
+
readonly DOCUMENT_SHAREABLE_LINK_CREATED: "DOCUMENT_SHAREABLE_LINK_CREATED";
|
|
456
|
+
readonly DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED: "DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED";
|
|
457
|
+
readonly DOCUMENT_SHAREABLE_LINK_REMOVED: "DOCUMENT_SHAREABLE_LINK_REMOVED";
|
|
458
|
+
readonly DOCUMENT_SHARED: "DOCUMENT_SHARED";
|
|
459
|
+
readonly DOCUMENT_SHARE_PERMISSION_CHANGED: "DOCUMENT_SHARE_PERMISSION_CHANGED";
|
|
460
|
+
readonly DOCUMENT_UNSHARED: "DOCUMENT_UNSHARED";
|
|
461
|
+
readonly DOCUMENT_VERSION_DELETED: "DOCUMENT_VERSION_DELETED";
|
|
462
|
+
readonly DOCUMENT_VERSION_DOWNLOADED: "DOCUMENT_VERSION_DOWNLOADED";
|
|
463
|
+
readonly DOCUMENT_VERSION_UPLOADED: "DOCUMENT_VERSION_UPLOADED";
|
|
464
|
+
readonly DOCUMENT_VERSION_VIEWED: "DOCUMENT_VERSION_VIEWED";
|
|
465
|
+
readonly FOLDER_CREATED: "FOLDER_CREATED";
|
|
466
|
+
readonly FOLDER_DELETED: "FOLDER_DELETED";
|
|
467
|
+
readonly FOLDER_MOVED: "FOLDER_MOVED";
|
|
468
|
+
readonly FOLDER_RECYCLED: "FOLDER_RECYCLED";
|
|
469
|
+
readonly FOLDER_RENAMED: "FOLDER_RENAMED";
|
|
470
|
+
readonly FOLDER_RESTORED: "FOLDER_RESTORED";
|
|
471
|
+
readonly FOLDER_SHAREABLE_LINK_CREATED: "FOLDER_SHAREABLE_LINK_CREATED";
|
|
472
|
+
readonly FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED: "FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED";
|
|
473
|
+
readonly FOLDER_SHAREABLE_LINK_REMOVED: "FOLDER_SHAREABLE_LINK_REMOVED";
|
|
474
|
+
readonly FOLDER_SHARED: "FOLDER_SHARED";
|
|
475
|
+
readonly FOLDER_SHARE_PERMISSION_CHANGED: "FOLDER_SHARE_PERMISSION_CHANGED";
|
|
476
|
+
readonly FOLDER_UNSHARED: "FOLDER_UNSHARED";
|
|
477
|
+
};
|
|
478
|
+
/**
|
|
479
|
+
* @public
|
|
480
|
+
*/
|
|
481
|
+
export type ActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
447
482
|
/**
|
|
448
483
|
* @public
|
|
449
484
|
* <p>Describes the activity information.</p>
|
|
@@ -495,10 +530,15 @@ export interface Activity {
|
|
|
495
530
|
}
|
|
496
531
|
/**
|
|
497
532
|
* @public
|
|
533
|
+
* @enum
|
|
498
534
|
*/
|
|
499
|
-
export declare
|
|
500
|
-
WEBURL
|
|
501
|
-
}
|
|
535
|
+
export declare const AdditionalResponseFieldType: {
|
|
536
|
+
readonly WEBURL: "WEBURL";
|
|
537
|
+
};
|
|
538
|
+
/**
|
|
539
|
+
* @public
|
|
540
|
+
*/
|
|
541
|
+
export type AdditionalResponseFieldType = (typeof AdditionalResponseFieldType)[keyof typeof AdditionalResponseFieldType];
|
|
502
542
|
/**
|
|
503
543
|
* @public
|
|
504
544
|
* <p>Set of options which defines notification preferences of given action.</p>
|
|
@@ -516,23 +556,33 @@ export interface NotificationOptions {
|
|
|
516
556
|
}
|
|
517
557
|
/**
|
|
518
558
|
* @public
|
|
559
|
+
* @enum
|
|
519
560
|
*/
|
|
520
|
-
export declare
|
|
521
|
-
CONTRIBUTOR
|
|
522
|
-
COOWNER
|
|
523
|
-
OWNER
|
|
524
|
-
VIEWER
|
|
525
|
-
}
|
|
561
|
+
export declare const RoleType: {
|
|
562
|
+
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
563
|
+
readonly COOWNER: "COOWNER";
|
|
564
|
+
readonly OWNER: "OWNER";
|
|
565
|
+
readonly VIEWER: "VIEWER";
|
|
566
|
+
};
|
|
526
567
|
/**
|
|
527
568
|
* @public
|
|
528
569
|
*/
|
|
529
|
-
export
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
570
|
+
export type RoleType = (typeof RoleType)[keyof typeof RoleType];
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
* @enum
|
|
574
|
+
*/
|
|
575
|
+
export declare const PrincipalType: {
|
|
576
|
+
readonly ANONYMOUS: "ANONYMOUS";
|
|
577
|
+
readonly GROUP: "GROUP";
|
|
578
|
+
readonly INVITE: "INVITE";
|
|
579
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
580
|
+
readonly USER: "USER";
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
536
586
|
/**
|
|
537
587
|
* @public
|
|
538
588
|
* <p>Describes the recipient type and ID, if available.</p>
|
|
@@ -574,11 +624,16 @@ export interface AddResourcePermissionsRequest {
|
|
|
574
624
|
}
|
|
575
625
|
/**
|
|
576
626
|
* @public
|
|
627
|
+
* @enum
|
|
577
628
|
*/
|
|
578
|
-
export declare
|
|
579
|
-
FAILURE
|
|
580
|
-
SUCCESS
|
|
581
|
-
}
|
|
629
|
+
export declare const ShareStatusType: {
|
|
630
|
+
readonly FAILURE: "FAILURE";
|
|
631
|
+
readonly SUCCESS: "SUCCESS";
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
export type ShareStatusType = (typeof ShareStatusType)[keyof typeof ShareStatusType];
|
|
582
637
|
/**
|
|
583
638
|
* @public
|
|
584
639
|
* <p>Describes the share results of a resource.</p>
|
|
@@ -620,11 +675,16 @@ export interface AddResourcePermissionsResponse {
|
|
|
620
675
|
}
|
|
621
676
|
/**
|
|
622
677
|
* @public
|
|
678
|
+
* @enum
|
|
623
679
|
*/
|
|
624
|
-
export declare
|
|
625
|
-
PRIVATE
|
|
626
|
-
PUBLIC
|
|
627
|
-
}
|
|
680
|
+
export declare const CommentVisibilityType: {
|
|
681
|
+
readonly PRIVATE: "PRIVATE";
|
|
682
|
+
readonly PUBLIC: "PUBLIC";
|
|
683
|
+
};
|
|
684
|
+
/**
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
export type CommentVisibilityType = (typeof CommentVisibilityType)[keyof typeof CommentVisibilityType];
|
|
628
688
|
/**
|
|
629
689
|
* @public
|
|
630
690
|
*/
|
|
@@ -819,13 +879,18 @@ export interface CreateFolderRequest {
|
|
|
819
879
|
}
|
|
820
880
|
/**
|
|
821
881
|
* @public
|
|
882
|
+
* @enum
|
|
822
883
|
*/
|
|
823
|
-
export declare
|
|
824
|
-
ACTIVE
|
|
825
|
-
RECYCLED
|
|
826
|
-
RECYCLING
|
|
827
|
-
RESTORING
|
|
828
|
-
}
|
|
884
|
+
export declare const ResourceStateType: {
|
|
885
|
+
readonly ACTIVE: "ACTIVE";
|
|
886
|
+
readonly RECYCLED: "RECYCLED";
|
|
887
|
+
readonly RECYCLING: "RECYCLING";
|
|
888
|
+
readonly RESTORING: "RESTORING";
|
|
889
|
+
};
|
|
890
|
+
/**
|
|
891
|
+
* @public
|
|
892
|
+
*/
|
|
893
|
+
export type ResourceStateType = (typeof ResourceStateType)[keyof typeof ResourceStateType];
|
|
829
894
|
/**
|
|
830
895
|
* @public
|
|
831
896
|
* <p>Describes a folder.</p>
|
|
@@ -950,17 +1015,27 @@ export declare class TooManyLabelsException extends __BaseException {
|
|
|
950
1015
|
}
|
|
951
1016
|
/**
|
|
952
1017
|
* @public
|
|
1018
|
+
* @enum
|
|
953
1019
|
*/
|
|
954
|
-
export declare
|
|
955
|
-
HTTPS
|
|
956
|
-
SQS
|
|
957
|
-
}
|
|
1020
|
+
export declare const SubscriptionProtocolType: {
|
|
1021
|
+
readonly HTTPS: "HTTPS";
|
|
1022
|
+
readonly SQS: "SQS";
|
|
1023
|
+
};
|
|
958
1024
|
/**
|
|
959
1025
|
* @public
|
|
960
1026
|
*/
|
|
961
|
-
export
|
|
962
|
-
|
|
963
|
-
|
|
1027
|
+
export type SubscriptionProtocolType = (typeof SubscriptionProtocolType)[keyof typeof SubscriptionProtocolType];
|
|
1028
|
+
/**
|
|
1029
|
+
* @public
|
|
1030
|
+
* @enum
|
|
1031
|
+
*/
|
|
1032
|
+
export declare const SubscriptionType: {
|
|
1033
|
+
readonly ALL: "ALL";
|
|
1034
|
+
};
|
|
1035
|
+
/**
|
|
1036
|
+
* @public
|
|
1037
|
+
*/
|
|
1038
|
+
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
964
1039
|
/**
|
|
965
1040
|
* @public
|
|
966
1041
|
*/
|
|
@@ -1421,26 +1496,41 @@ export interface DescribeDocumentVersionsRequest {
|
|
|
1421
1496
|
}
|
|
1422
1497
|
/**
|
|
1423
1498
|
* @public
|
|
1499
|
+
* @enum
|
|
1424
1500
|
*/
|
|
1425
|
-
export declare
|
|
1426
|
-
ORIGINAL
|
|
1427
|
-
WITH_COMMENTS
|
|
1428
|
-
}
|
|
1501
|
+
export declare const DocumentSourceType: {
|
|
1502
|
+
readonly ORIGINAL: "ORIGINAL";
|
|
1503
|
+
readonly WITH_COMMENTS: "WITH_COMMENTS";
|
|
1504
|
+
};
|
|
1429
1505
|
/**
|
|
1430
1506
|
* @public
|
|
1431
1507
|
*/
|
|
1432
|
-
export
|
|
1433
|
-
ACTIVE = "ACTIVE",
|
|
1434
|
-
INITIALIZED = "INITIALIZED"
|
|
1435
|
-
}
|
|
1508
|
+
export type DocumentSourceType = (typeof DocumentSourceType)[keyof typeof DocumentSourceType];
|
|
1436
1509
|
/**
|
|
1437
1510
|
* @public
|
|
1511
|
+
* @enum
|
|
1438
1512
|
*/
|
|
1439
|
-
export declare
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1513
|
+
export declare const DocumentStatusType: {
|
|
1514
|
+
readonly ACTIVE: "ACTIVE";
|
|
1515
|
+
readonly INITIALIZED: "INITIALIZED";
|
|
1516
|
+
};
|
|
1517
|
+
/**
|
|
1518
|
+
* @public
|
|
1519
|
+
*/
|
|
1520
|
+
export type DocumentStatusType = (typeof DocumentStatusType)[keyof typeof DocumentStatusType];
|
|
1521
|
+
/**
|
|
1522
|
+
* @public
|
|
1523
|
+
* @enum
|
|
1524
|
+
*/
|
|
1525
|
+
export declare const DocumentThumbnailType: {
|
|
1526
|
+
readonly LARGE: "LARGE";
|
|
1527
|
+
readonly SMALL: "SMALL";
|
|
1528
|
+
readonly SMALL_HQ: "SMALL_HQ";
|
|
1529
|
+
};
|
|
1530
|
+
/**
|
|
1531
|
+
* @public
|
|
1532
|
+
*/
|
|
1533
|
+
export type DocumentThumbnailType = (typeof DocumentThumbnailType)[keyof typeof DocumentThumbnailType];
|
|
1444
1534
|
/**
|
|
1445
1535
|
* @public
|
|
1446
1536
|
* <p>Describes a version of a document.</p>
|
|
@@ -1528,26 +1618,41 @@ export declare class InvalidPasswordException extends __BaseException {
|
|
|
1528
1618
|
}
|
|
1529
1619
|
/**
|
|
1530
1620
|
* @public
|
|
1621
|
+
* @enum
|
|
1531
1622
|
*/
|
|
1532
|
-
export declare
|
|
1533
|
-
ASCENDING
|
|
1534
|
-
DESCENDING
|
|
1535
|
-
}
|
|
1623
|
+
export declare const OrderType: {
|
|
1624
|
+
readonly ASCENDING: "ASCENDING";
|
|
1625
|
+
readonly DESCENDING: "DESCENDING";
|
|
1626
|
+
};
|
|
1536
1627
|
/**
|
|
1537
1628
|
* @public
|
|
1538
1629
|
*/
|
|
1539
|
-
export
|
|
1540
|
-
DATE = "DATE",
|
|
1541
|
-
NAME = "NAME"
|
|
1542
|
-
}
|
|
1630
|
+
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
1543
1631
|
/**
|
|
1544
1632
|
* @public
|
|
1633
|
+
* @enum
|
|
1545
1634
|
*/
|
|
1546
|
-
export declare
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1635
|
+
export declare const ResourceSortType: {
|
|
1636
|
+
readonly DATE: "DATE";
|
|
1637
|
+
readonly NAME: "NAME";
|
|
1638
|
+
};
|
|
1639
|
+
/**
|
|
1640
|
+
* @public
|
|
1641
|
+
*/
|
|
1642
|
+
export type ResourceSortType = (typeof ResourceSortType)[keyof typeof ResourceSortType];
|
|
1643
|
+
/**
|
|
1644
|
+
* @public
|
|
1645
|
+
* @enum
|
|
1646
|
+
*/
|
|
1647
|
+
export declare const FolderContentType: {
|
|
1648
|
+
readonly ALL: "ALL";
|
|
1649
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
1650
|
+
readonly FOLDER: "FOLDER";
|
|
1651
|
+
};
|
|
1652
|
+
/**
|
|
1653
|
+
* @public
|
|
1654
|
+
*/
|
|
1655
|
+
export type FolderContentType = (typeof FolderContentType)[keyof typeof FolderContentType];
|
|
1551
1656
|
/**
|
|
1552
1657
|
* @public
|
|
1553
1658
|
*/
|
|
@@ -1743,11 +1848,16 @@ export interface DescribeResourcePermissionsRequest {
|
|
|
1743
1848
|
}
|
|
1744
1849
|
/**
|
|
1745
1850
|
* @public
|
|
1851
|
+
* @enum
|
|
1746
1852
|
*/
|
|
1747
|
-
export declare
|
|
1748
|
-
DIRECT
|
|
1749
|
-
INHERITED
|
|
1750
|
-
}
|
|
1853
|
+
export declare const RolePermissionType: {
|
|
1854
|
+
readonly DIRECT: "DIRECT";
|
|
1855
|
+
readonly INHERITED: "INHERITED";
|
|
1856
|
+
};
|
|
1857
|
+
/**
|
|
1858
|
+
* @public
|
|
1859
|
+
*/
|
|
1860
|
+
export type RolePermissionType = (typeof RolePermissionType)[keyof typeof RolePermissionType];
|
|
1751
1861
|
/**
|
|
1752
1862
|
* @public
|
|
1753
1863
|
* <p>Describes the permissions.</p>
|
|
@@ -1827,21 +1937,31 @@ export interface DescribeRootFoldersResponse {
|
|
|
1827
1937
|
}
|
|
1828
1938
|
/**
|
|
1829
1939
|
* @public
|
|
1940
|
+
* @enum
|
|
1830
1941
|
*/
|
|
1831
|
-
export declare
|
|
1832
|
-
ACTIVE_PENDING
|
|
1833
|
-
ALL
|
|
1834
|
-
}
|
|
1942
|
+
export declare const UserFilterType: {
|
|
1943
|
+
readonly ACTIVE_PENDING: "ACTIVE_PENDING";
|
|
1944
|
+
readonly ALL: "ALL";
|
|
1945
|
+
};
|
|
1835
1946
|
/**
|
|
1836
1947
|
* @public
|
|
1837
1948
|
*/
|
|
1838
|
-
export
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1949
|
+
export type UserFilterType = (typeof UserFilterType)[keyof typeof UserFilterType];
|
|
1950
|
+
/**
|
|
1951
|
+
* @public
|
|
1952
|
+
* @enum
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const UserSortType: {
|
|
1955
|
+
readonly FULL_NAME: "FULL_NAME";
|
|
1956
|
+
readonly STORAGE_LIMIT: "STORAGE_LIMIT";
|
|
1957
|
+
readonly STORAGE_USED: "STORAGE_USED";
|
|
1958
|
+
readonly USER_NAME: "USER_NAME";
|
|
1959
|
+
readonly USER_STATUS: "USER_STATUS";
|
|
1960
|
+
};
|
|
1961
|
+
/**
|
|
1962
|
+
* @public
|
|
1963
|
+
*/
|
|
1964
|
+
export type UserSortType = (typeof UserSortType)[keyof typeof UserSortType];
|
|
1845
1965
|
/**
|
|
1846
1966
|
* @public
|
|
1847
1967
|
*/
|
|
@@ -2152,10 +2272,15 @@ export interface GetFolderPathResponse {
|
|
|
2152
2272
|
}
|
|
2153
2273
|
/**
|
|
2154
2274
|
* @public
|
|
2275
|
+
* @enum
|
|
2155
2276
|
*/
|
|
2156
|
-
export declare
|
|
2157
|
-
SHARED_WITH_ME
|
|
2158
|
-
}
|
|
2277
|
+
export declare const ResourceCollectionType: {
|
|
2278
|
+
readonly SHARED_WITH_ME: "SHARED_WITH_ME";
|
|
2279
|
+
};
|
|
2280
|
+
/**
|
|
2281
|
+
* @public
|
|
2282
|
+
*/
|
|
2283
|
+
export type ResourceCollectionType = (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
|
|
2159
2284
|
/**
|
|
2160
2285
|
* @public
|
|
2161
2286
|
*/
|
|
@@ -2365,18 +2490,23 @@ export interface RestoreDocumentVersionsRequest {
|
|
|
2365
2490
|
}
|
|
2366
2491
|
/**
|
|
2367
2492
|
* @public
|
|
2493
|
+
* @enum
|
|
2368
2494
|
*/
|
|
2369
|
-
export declare
|
|
2370
|
-
AUDIO
|
|
2371
|
-
DOCUMENT
|
|
2372
|
-
IMAGE
|
|
2373
|
-
OTHER
|
|
2374
|
-
PDF
|
|
2375
|
-
PRESENTATION
|
|
2376
|
-
SOURCE_CODE
|
|
2377
|
-
SPREADSHEET
|
|
2378
|
-
VIDEO
|
|
2379
|
-
}
|
|
2495
|
+
export declare const ContentCategoryType: {
|
|
2496
|
+
readonly AUDIO: "AUDIO";
|
|
2497
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
2498
|
+
readonly IMAGE: "IMAGE";
|
|
2499
|
+
readonly OTHER: "OTHER";
|
|
2500
|
+
readonly PDF: "PDF";
|
|
2501
|
+
readonly PRESENTATION: "PRESENTATION";
|
|
2502
|
+
readonly SOURCE_CODE: "SOURCE_CODE";
|
|
2503
|
+
readonly SPREADSHEET: "SPREADSHEET";
|
|
2504
|
+
readonly VIDEO: "VIDEO";
|
|
2505
|
+
};
|
|
2506
|
+
/**
|
|
2507
|
+
* @public
|
|
2508
|
+
*/
|
|
2509
|
+
export type ContentCategoryType = (typeof ContentCategoryType)[keyof typeof ContentCategoryType];
|
|
2380
2510
|
/**
|
|
2381
2511
|
* @public
|
|
2382
2512
|
* <p>Filters results based on timestamp range (in epochs).</p>
|
|
@@ -2393,13 +2523,18 @@ export interface DateRangeType {
|
|
|
2393
2523
|
}
|
|
2394
2524
|
/**
|
|
2395
2525
|
* @public
|
|
2526
|
+
* @enum
|
|
2396
2527
|
*/
|
|
2397
|
-
export declare
|
|
2398
|
-
CONTRIBUTOR
|
|
2399
|
-
COOWNER
|
|
2400
|
-
OWNER
|
|
2401
|
-
VIEWER
|
|
2402
|
-
}
|
|
2528
|
+
export declare const PrincipalRoleType: {
|
|
2529
|
+
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
2530
|
+
readonly COOWNER: "COOWNER";
|
|
2531
|
+
readonly OWNER: "OWNER";
|
|
2532
|
+
readonly VIEWER: "VIEWER";
|
|
2533
|
+
};
|
|
2534
|
+
/**
|
|
2535
|
+
* @public
|
|
2536
|
+
*/
|
|
2537
|
+
export type PrincipalRoleType = (typeof PrincipalRoleType)[keyof typeof PrincipalRoleType];
|
|
2403
2538
|
/**
|
|
2404
2539
|
* @public
|
|
2405
2540
|
* <p>Filter based on UserIds or GroupIds.</p>
|
|
@@ -2416,20 +2551,30 @@ export interface SearchPrincipalType {
|
|
|
2416
2551
|
}
|
|
2417
2552
|
/**
|
|
2418
2553
|
* @public
|
|
2554
|
+
* @enum
|
|
2419
2555
|
*/
|
|
2420
|
-
export declare
|
|
2421
|
-
COMMENT
|
|
2422
|
-
DOCUMENT
|
|
2423
|
-
DOCUMENT_VERSION
|
|
2424
|
-
FOLDER
|
|
2425
|
-
}
|
|
2556
|
+
export declare const SearchResourceType: {
|
|
2557
|
+
readonly COMMENT: "COMMENT";
|
|
2558
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
2559
|
+
readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
|
|
2560
|
+
readonly FOLDER: "FOLDER";
|
|
2561
|
+
};
|
|
2426
2562
|
/**
|
|
2427
2563
|
* @public
|
|
2428
2564
|
*/
|
|
2429
|
-
export
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2565
|
+
export type SearchResourceType = (typeof SearchResourceType)[keyof typeof SearchResourceType];
|
|
2566
|
+
/**
|
|
2567
|
+
* @public
|
|
2568
|
+
* @enum
|
|
2569
|
+
*/
|
|
2570
|
+
export declare const SearchCollectionType: {
|
|
2571
|
+
readonly OWNED: "OWNED";
|
|
2572
|
+
readonly SHARED_WITH_ME: "SHARED_WITH_ME";
|
|
2573
|
+
};
|
|
2574
|
+
/**
|
|
2575
|
+
* @public
|
|
2576
|
+
*/
|
|
2577
|
+
export type SearchCollectionType = (typeof SearchCollectionType)[keyof typeof SearchCollectionType];
|
|
2433
2578
|
/**
|
|
2434
2579
|
* @public
|
|
2435
2580
|
* <p>Filter based on size (in bytes).</p>
|
|
@@ -2446,40 +2591,45 @@ export interface LongRangeType {
|
|
|
2446
2591
|
}
|
|
2447
2592
|
/**
|
|
2448
2593
|
* @public
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2594
|
+
* @enum
|
|
2595
|
+
*/
|
|
2596
|
+
export declare const LanguageCodeType: {
|
|
2597
|
+
readonly AR: "AR";
|
|
2598
|
+
readonly BG: "BG";
|
|
2599
|
+
readonly BN: "BN";
|
|
2600
|
+
readonly CS: "CS";
|
|
2601
|
+
readonly DA: "DA";
|
|
2602
|
+
readonly DE: "DE";
|
|
2603
|
+
readonly DEFAULT: "DEFAULT";
|
|
2604
|
+
readonly EL: "EL";
|
|
2605
|
+
readonly EN: "EN";
|
|
2606
|
+
readonly ES: "ES";
|
|
2607
|
+
readonly FA: "FA";
|
|
2608
|
+
readonly FI: "FI";
|
|
2609
|
+
readonly FR: "FR";
|
|
2610
|
+
readonly HI: "HI";
|
|
2611
|
+
readonly HU: "HU";
|
|
2612
|
+
readonly ID: "ID";
|
|
2613
|
+
readonly IT: "IT";
|
|
2614
|
+
readonly JA: "JA";
|
|
2615
|
+
readonly KO: "KO";
|
|
2616
|
+
readonly LT: "LT";
|
|
2617
|
+
readonly LV: "LV";
|
|
2618
|
+
readonly NL: "NL";
|
|
2619
|
+
readonly NO: "NO";
|
|
2620
|
+
readonly PT: "PT";
|
|
2621
|
+
readonly RO: "RO";
|
|
2622
|
+
readonly RU: "RU";
|
|
2623
|
+
readonly SV: "SV";
|
|
2624
|
+
readonly SW: "SW";
|
|
2625
|
+
readonly TH: "TH";
|
|
2626
|
+
readonly TR: "TR";
|
|
2627
|
+
readonly ZH: "ZH";
|
|
2628
|
+
};
|
|
2629
|
+
/**
|
|
2630
|
+
* @public
|
|
2631
|
+
*/
|
|
2632
|
+
export type LanguageCodeType = (typeof LanguageCodeType)[keyof typeof LanguageCodeType];
|
|
2483
2633
|
/**
|
|
2484
2634
|
* @public
|
|
2485
2635
|
* <p>Filters results based on entity metadata.</p>
|
|
@@ -2528,21 +2678,31 @@ export interface Filters {
|
|
|
2528
2678
|
}
|
|
2529
2679
|
/**
|
|
2530
2680
|
* @public
|
|
2681
|
+
* @enum
|
|
2531
2682
|
*/
|
|
2532
|
-
export declare
|
|
2533
|
-
CREATED_TIMESTAMP
|
|
2534
|
-
MODIFIED_TIMESTAMP
|
|
2535
|
-
NAME
|
|
2536
|
-
RELEVANCE
|
|
2537
|
-
SIZE
|
|
2538
|
-
}
|
|
2683
|
+
export declare const OrderByFieldType: {
|
|
2684
|
+
readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
|
|
2685
|
+
readonly MODIFIED_TIMESTAMP: "MODIFIED_TIMESTAMP";
|
|
2686
|
+
readonly NAME: "NAME";
|
|
2687
|
+
readonly RELEVANCE: "RELEVANCE";
|
|
2688
|
+
readonly SIZE: "SIZE";
|
|
2689
|
+
};
|
|
2539
2690
|
/**
|
|
2540
2691
|
* @public
|
|
2541
2692
|
*/
|
|
2542
|
-
export
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2693
|
+
export type OrderByFieldType = (typeof OrderByFieldType)[keyof typeof OrderByFieldType];
|
|
2694
|
+
/**
|
|
2695
|
+
* @public
|
|
2696
|
+
* @enum
|
|
2697
|
+
*/
|
|
2698
|
+
export declare const SortOrder: {
|
|
2699
|
+
readonly ASC: "ASC";
|
|
2700
|
+
readonly DESC: "DESC";
|
|
2701
|
+
};
|
|
2702
|
+
/**
|
|
2703
|
+
* @public
|
|
2704
|
+
*/
|
|
2705
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2546
2706
|
/**
|
|
2547
2707
|
* @public
|
|
2548
2708
|
* <p>The result of the sort operation.</p>
|
|
@@ -2559,11 +2719,16 @@ export interface SearchSortResult {
|
|
|
2559
2719
|
}
|
|
2560
2720
|
/**
|
|
2561
2721
|
* @public
|
|
2722
|
+
* @enum
|
|
2562
2723
|
*/
|
|
2563
|
-
export declare
|
|
2564
|
-
CONTENT
|
|
2565
|
-
NAME
|
|
2566
|
-
}
|
|
2724
|
+
export declare const SearchQueryScopeType: {
|
|
2725
|
+
readonly CONTENT: "CONTENT";
|
|
2726
|
+
readonly NAME: "NAME";
|
|
2727
|
+
};
|
|
2728
|
+
/**
|
|
2729
|
+
* @public
|
|
2730
|
+
*/
|
|
2731
|
+
export type SearchQueryScopeType = (typeof SearchQueryScopeType)[keyof typeof SearchQueryScopeType];
|
|
2567
2732
|
/**
|
|
2568
2733
|
* @public
|
|
2569
2734
|
*/
|
|
@@ -2608,13 +2773,18 @@ export interface SearchResourcesRequest {
|
|
|
2608
2773
|
}
|
|
2609
2774
|
/**
|
|
2610
2775
|
* @public
|
|
2776
|
+
* @enum
|
|
2611
2777
|
*/
|
|
2612
|
-
export declare
|
|
2613
|
-
COMMENT
|
|
2614
|
-
DOCUMENT
|
|
2615
|
-
DOCUMENT_VERSION
|
|
2616
|
-
FOLDER
|
|
2617
|
-
}
|
|
2778
|
+
export declare const ResponseItemType: {
|
|
2779
|
+
readonly COMMENT: "COMMENT";
|
|
2780
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
2781
|
+
readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
|
|
2782
|
+
readonly FOLDER: "FOLDER";
|
|
2783
|
+
};
|
|
2784
|
+
/**
|
|
2785
|
+
* @public
|
|
2786
|
+
*/
|
|
2787
|
+
export type ResponseItemType = (typeof ResponseItemType)[keyof typeof ResponseItemType];
|
|
2618
2788
|
/**
|
|
2619
2789
|
* @public
|
|
2620
2790
|
* <p>List of Documents, Folders, Comments, and Document Versions matching the query.</p>
|
|
@@ -2686,10 +2856,15 @@ export interface UpdateDocumentRequest {
|
|
|
2686
2856
|
}
|
|
2687
2857
|
/**
|
|
2688
2858
|
* @public
|
|
2859
|
+
* @enum
|
|
2689
2860
|
*/
|
|
2690
|
-
export declare
|
|
2691
|
-
ACTIVE
|
|
2692
|
-
}
|
|
2861
|
+
export declare const DocumentVersionStatus: {
|
|
2862
|
+
readonly ACTIVE: "ACTIVE";
|
|
2863
|
+
};
|
|
2864
|
+
/**
|
|
2865
|
+
* @public
|
|
2866
|
+
*/
|
|
2867
|
+
export type DocumentVersionStatus = (typeof DocumentVersionStatus)[keyof typeof DocumentVersionStatus];
|
|
2693
2868
|
/**
|
|
2694
2869
|
* @public
|
|
2695
2870
|
*/
|
|
@@ -2766,11 +2941,16 @@ export declare class IllegalUserStateException extends __BaseException {
|
|
|
2766
2941
|
}
|
|
2767
2942
|
/**
|
|
2768
2943
|
* @public
|
|
2944
|
+
* @enum
|
|
2769
2945
|
*/
|
|
2770
|
-
export declare
|
|
2771
|
-
FALSE
|
|
2772
|
-
TRUE
|
|
2773
|
-
}
|
|
2946
|
+
export declare const BooleanEnumType: {
|
|
2947
|
+
readonly FALSE: "FALSE";
|
|
2948
|
+
readonly TRUE: "TRUE";
|
|
2949
|
+
};
|
|
2950
|
+
/**
|
|
2951
|
+
* @public
|
|
2952
|
+
*/
|
|
2953
|
+
export type BooleanEnumType = (typeof BooleanEnumType)[keyof typeof BooleanEnumType];
|
|
2774
2954
|
/**
|
|
2775
2955
|
* @public
|
|
2776
2956
|
*/
|