@aws-sdk/client-workdocs 3.934.0 → 3.935.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/index.js +243 -242
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +242 -0
- package/dist-es/models/errors.js +357 -0
- package/dist-es/models/models_0.js +1 -599
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +530 -0
- package/dist-types/models/errors.d.ts +341 -0
- package/dist-types/models/models_0.d.ts +1 -871
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +304 -0
- package/dist-types/ts3.4/models/errors.d.ts +232 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -536
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { WorkDocsServiceException as __BaseException } from "./WorkDocsServiceException";
|
|
1
|
+
import { ActivityType, AdditionalResponseFieldType, BooleanEnumType, CommentStatusType, CommentVisibilityType, ContentCategoryType, DocumentSourceType, DocumentStatusType, DocumentThumbnailType, DocumentVersionStatus, FolderContentType, LanguageCodeType, LocaleType, OrderByFieldType, OrderType, PrincipalRoleType, PrincipalType, ResourceCollectionType, ResourceSortType, ResourceStateType, ResourceType, ResponseItemType, RolePermissionType, RoleType, SearchCollectionType, SearchQueryScopeType, SearchResourceType, ShareStatusType, SortOrder, StorageType, SubscriptionProtocolType, SubscriptionType, UserFilterType, UserSortType, UserStatusType, UserType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* @public
|
|
5
4
|
*/
|
|
@@ -20,105 +19,6 @@ export interface AbortDocumentVersionUploadRequest {
|
|
|
20
19
|
*/
|
|
21
20
|
VersionId: string | undefined;
|
|
22
21
|
}
|
|
23
|
-
/**
|
|
24
|
-
* <p>The resource hierarchy is changing.</p>
|
|
25
|
-
* @public
|
|
26
|
-
*/
|
|
27
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
28
|
-
readonly name: "ConcurrentModificationException";
|
|
29
|
-
readonly $fault: "client";
|
|
30
|
-
Message?: string | undefined;
|
|
31
|
-
/**
|
|
32
|
-
* @internal
|
|
33
|
-
*/
|
|
34
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* <p>The resource does not exist.</p>
|
|
38
|
-
* @public
|
|
39
|
-
*/
|
|
40
|
-
export declare class EntityNotExistsException extends __BaseException {
|
|
41
|
-
readonly name: "EntityNotExistsException";
|
|
42
|
-
readonly $fault: "client";
|
|
43
|
-
Message?: string | undefined;
|
|
44
|
-
/**
|
|
45
|
-
* <p>The IDs of the non-existent resources.</p>
|
|
46
|
-
* @public
|
|
47
|
-
*/
|
|
48
|
-
EntityIds?: string[] | undefined;
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
constructor(opts: __ExceptionOptionType<EntityNotExistsException, __BaseException>);
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* <p>The Directory Service cannot reach an on-premises instance. Or a dependency
|
|
56
|
-
* under the control of the organization is failing, such as a connected Active
|
|
57
|
-
* Directory.</p>
|
|
58
|
-
* @public
|
|
59
|
-
*/
|
|
60
|
-
export declare class FailedDependencyException extends __BaseException {
|
|
61
|
-
readonly name: "FailedDependencyException";
|
|
62
|
-
readonly $fault: "client";
|
|
63
|
-
Message?: string | undefined;
|
|
64
|
-
/**
|
|
65
|
-
* @internal
|
|
66
|
-
*/
|
|
67
|
-
constructor(opts: __ExceptionOptionType<FailedDependencyException, __BaseException>);
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* <p>The specified document version is not in the INITIALIZED state.</p>
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
export declare class ProhibitedStateException extends __BaseException {
|
|
74
|
-
readonly name: "ProhibitedStateException";
|
|
75
|
-
readonly $fault: "client";
|
|
76
|
-
Message?: string | undefined;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
constructor(opts: __ExceptionOptionType<ProhibitedStateException, __BaseException>);
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* <p>One or more of the dependencies is unavailable.</p>
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
87
|
-
readonly name: "ServiceUnavailableException";
|
|
88
|
-
readonly $fault: "server";
|
|
89
|
-
Message?: string | undefined;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* <p>The operation is not permitted.</p>
|
|
97
|
-
* @public
|
|
98
|
-
*/
|
|
99
|
-
export declare class UnauthorizedOperationException extends __BaseException {
|
|
100
|
-
readonly name: "UnauthorizedOperationException";
|
|
101
|
-
readonly $fault: "client";
|
|
102
|
-
Message?: string | undefined;
|
|
103
|
-
Code?: string | undefined;
|
|
104
|
-
/**
|
|
105
|
-
* @internal
|
|
106
|
-
*/
|
|
107
|
-
constructor(opts: __ExceptionOptionType<UnauthorizedOperationException, __BaseException>);
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* <p>The caller does not have access to perform the action on the resource.</p>
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
export declare class UnauthorizedResourceAccessException extends __BaseException {
|
|
114
|
-
readonly name: "UnauthorizedResourceAccessException";
|
|
115
|
-
readonly $fault: "client";
|
|
116
|
-
Message?: string | undefined;
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
constructor(opts: __ExceptionOptionType<UnauthorizedResourceAccessException, __BaseException>);
|
|
121
|
-
}
|
|
122
22
|
/**
|
|
123
23
|
* @public
|
|
124
24
|
*/
|
|
@@ -134,52 +34,6 @@ export interface ActivateUserRequest {
|
|
|
134
34
|
*/
|
|
135
35
|
AuthenticationToken?: string | undefined;
|
|
136
36
|
}
|
|
137
|
-
/**
|
|
138
|
-
* @public
|
|
139
|
-
* @enum
|
|
140
|
-
*/
|
|
141
|
-
export declare const LocaleType: {
|
|
142
|
-
readonly DE: "de";
|
|
143
|
-
readonly DEFAULT: "default";
|
|
144
|
-
readonly EN: "en";
|
|
145
|
-
readonly ES: "es";
|
|
146
|
-
readonly FR: "fr";
|
|
147
|
-
readonly JA: "ja";
|
|
148
|
-
readonly KO: "ko";
|
|
149
|
-
readonly PT_BR: "pt_BR";
|
|
150
|
-
readonly RU: "ru";
|
|
151
|
-
readonly ZH_CN: "zh_CN";
|
|
152
|
-
readonly ZH_TW: "zh_TW";
|
|
153
|
-
};
|
|
154
|
-
/**
|
|
155
|
-
* @public
|
|
156
|
-
*/
|
|
157
|
-
export type LocaleType = (typeof LocaleType)[keyof typeof LocaleType];
|
|
158
|
-
/**
|
|
159
|
-
* @public
|
|
160
|
-
* @enum
|
|
161
|
-
*/
|
|
162
|
-
export declare const UserStatusType: {
|
|
163
|
-
readonly ACTIVE: "ACTIVE";
|
|
164
|
-
readonly INACTIVE: "INACTIVE";
|
|
165
|
-
readonly PENDING: "PENDING";
|
|
166
|
-
};
|
|
167
|
-
/**
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
export type UserStatusType = (typeof UserStatusType)[keyof typeof UserStatusType];
|
|
171
|
-
/**
|
|
172
|
-
* @public
|
|
173
|
-
* @enum
|
|
174
|
-
*/
|
|
175
|
-
export declare const StorageType: {
|
|
176
|
-
readonly QUOTA: "QUOTA";
|
|
177
|
-
readonly UNLIMITED: "UNLIMITED";
|
|
178
|
-
};
|
|
179
|
-
/**
|
|
180
|
-
* @public
|
|
181
|
-
*/
|
|
182
|
-
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
183
37
|
/**
|
|
184
38
|
* <p>Describes the storage for a user.</p>
|
|
185
39
|
* @public
|
|
@@ -212,21 +66,6 @@ export interface UserStorageMetadata {
|
|
|
212
66
|
*/
|
|
213
67
|
StorageRule?: StorageRuleType | undefined;
|
|
214
68
|
}
|
|
215
|
-
/**
|
|
216
|
-
* @public
|
|
217
|
-
* @enum
|
|
218
|
-
*/
|
|
219
|
-
export declare const UserType: {
|
|
220
|
-
readonly ADMIN: "ADMIN";
|
|
221
|
-
readonly MINIMALUSER: "MINIMALUSER";
|
|
222
|
-
readonly POWERUSER: "POWERUSER";
|
|
223
|
-
readonly USER: "USER";
|
|
224
|
-
readonly WORKSPACESUSER: "WORKSPACESUSER";
|
|
225
|
-
};
|
|
226
|
-
/**
|
|
227
|
-
* @public
|
|
228
|
-
*/
|
|
229
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
230
69
|
/**
|
|
231
70
|
* <p>Describes a user.</p>
|
|
232
71
|
* @public
|
|
@@ -318,19 +157,6 @@ export interface ActivateUserResponse {
|
|
|
318
157
|
*/
|
|
319
158
|
User?: User | undefined;
|
|
320
159
|
}
|
|
321
|
-
/**
|
|
322
|
-
* @public
|
|
323
|
-
* @enum
|
|
324
|
-
*/
|
|
325
|
-
export declare const CommentStatusType: {
|
|
326
|
-
readonly DELETED: "DELETED";
|
|
327
|
-
readonly DRAFT: "DRAFT";
|
|
328
|
-
readonly PUBLISHED: "PUBLISHED";
|
|
329
|
-
};
|
|
330
|
-
/**
|
|
331
|
-
* @public
|
|
332
|
-
*/
|
|
333
|
-
export type CommentStatusType = (typeof CommentStatusType)[keyof typeof CommentStatusType];
|
|
334
160
|
/**
|
|
335
161
|
* <p>Describes the metadata of a comment.</p>
|
|
336
162
|
* @public
|
|
@@ -398,18 +224,6 @@ export interface UserMetadata {
|
|
|
398
224
|
*/
|
|
399
225
|
EmailAddress?: string | undefined;
|
|
400
226
|
}
|
|
401
|
-
/**
|
|
402
|
-
* @public
|
|
403
|
-
* @enum
|
|
404
|
-
*/
|
|
405
|
-
export declare const ResourceType: {
|
|
406
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
407
|
-
readonly FOLDER: "FOLDER";
|
|
408
|
-
};
|
|
409
|
-
/**
|
|
410
|
-
* @public
|
|
411
|
-
*/
|
|
412
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
413
227
|
/**
|
|
414
228
|
* <p>Describes the metadata of a resource.</p>
|
|
415
229
|
* @public
|
|
@@ -484,49 +298,6 @@ export interface Participants {
|
|
|
484
298
|
*/
|
|
485
299
|
Groups?: GroupMetadata[] | undefined;
|
|
486
300
|
}
|
|
487
|
-
/**
|
|
488
|
-
* @public
|
|
489
|
-
* @enum
|
|
490
|
-
*/
|
|
491
|
-
export declare const ActivityType: {
|
|
492
|
-
readonly DOCUMENT_ANNOTATION_ADDED: "DOCUMENT_ANNOTATION_ADDED";
|
|
493
|
-
readonly DOCUMENT_ANNOTATION_DELETED: "DOCUMENT_ANNOTATION_DELETED";
|
|
494
|
-
readonly DOCUMENT_CHECKED_IN: "DOCUMENT_CHECKED_IN";
|
|
495
|
-
readonly DOCUMENT_CHECKED_OUT: "DOCUMENT_CHECKED_OUT";
|
|
496
|
-
readonly DOCUMENT_COMMENT_ADDED: "DOCUMENT_COMMENT_ADDED";
|
|
497
|
-
readonly DOCUMENT_COMMENT_DELETED: "DOCUMENT_COMMENT_DELETED";
|
|
498
|
-
readonly DOCUMENT_MOVED: "DOCUMENT_MOVED";
|
|
499
|
-
readonly DOCUMENT_RECYCLED: "DOCUMENT_RECYCLED";
|
|
500
|
-
readonly DOCUMENT_RENAMED: "DOCUMENT_RENAMED";
|
|
501
|
-
readonly DOCUMENT_RESTORED: "DOCUMENT_RESTORED";
|
|
502
|
-
readonly DOCUMENT_REVERTED: "DOCUMENT_REVERTED";
|
|
503
|
-
readonly DOCUMENT_SHAREABLE_LINK_CREATED: "DOCUMENT_SHAREABLE_LINK_CREATED";
|
|
504
|
-
readonly DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED: "DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED";
|
|
505
|
-
readonly DOCUMENT_SHAREABLE_LINK_REMOVED: "DOCUMENT_SHAREABLE_LINK_REMOVED";
|
|
506
|
-
readonly DOCUMENT_SHARED: "DOCUMENT_SHARED";
|
|
507
|
-
readonly DOCUMENT_SHARE_PERMISSION_CHANGED: "DOCUMENT_SHARE_PERMISSION_CHANGED";
|
|
508
|
-
readonly DOCUMENT_UNSHARED: "DOCUMENT_UNSHARED";
|
|
509
|
-
readonly DOCUMENT_VERSION_DELETED: "DOCUMENT_VERSION_DELETED";
|
|
510
|
-
readonly DOCUMENT_VERSION_DOWNLOADED: "DOCUMENT_VERSION_DOWNLOADED";
|
|
511
|
-
readonly DOCUMENT_VERSION_UPLOADED: "DOCUMENT_VERSION_UPLOADED";
|
|
512
|
-
readonly DOCUMENT_VERSION_VIEWED: "DOCUMENT_VERSION_VIEWED";
|
|
513
|
-
readonly FOLDER_CREATED: "FOLDER_CREATED";
|
|
514
|
-
readonly FOLDER_DELETED: "FOLDER_DELETED";
|
|
515
|
-
readonly FOLDER_MOVED: "FOLDER_MOVED";
|
|
516
|
-
readonly FOLDER_RECYCLED: "FOLDER_RECYCLED";
|
|
517
|
-
readonly FOLDER_RENAMED: "FOLDER_RENAMED";
|
|
518
|
-
readonly FOLDER_RESTORED: "FOLDER_RESTORED";
|
|
519
|
-
readonly FOLDER_SHAREABLE_LINK_CREATED: "FOLDER_SHAREABLE_LINK_CREATED";
|
|
520
|
-
readonly FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED: "FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED";
|
|
521
|
-
readonly FOLDER_SHAREABLE_LINK_REMOVED: "FOLDER_SHAREABLE_LINK_REMOVED";
|
|
522
|
-
readonly FOLDER_SHARED: "FOLDER_SHARED";
|
|
523
|
-
readonly FOLDER_SHARE_PERMISSION_CHANGED: "FOLDER_SHARE_PERMISSION_CHANGED";
|
|
524
|
-
readonly FOLDER_UNSHARED: "FOLDER_UNSHARED";
|
|
525
|
-
};
|
|
526
|
-
/**
|
|
527
|
-
* @public
|
|
528
|
-
*/
|
|
529
|
-
export type ActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
530
301
|
/**
|
|
531
302
|
* <p>Describes the activity information.</p>
|
|
532
303
|
* @public
|
|
@@ -585,17 +356,6 @@ export interface Activity {
|
|
|
585
356
|
*/
|
|
586
357
|
CommentMetadata?: CommentMetadata | undefined;
|
|
587
358
|
}
|
|
588
|
-
/**
|
|
589
|
-
* @public
|
|
590
|
-
* @enum
|
|
591
|
-
*/
|
|
592
|
-
export declare const AdditionalResponseFieldType: {
|
|
593
|
-
readonly WEBURL: "WEBURL";
|
|
594
|
-
};
|
|
595
|
-
/**
|
|
596
|
-
* @public
|
|
597
|
-
*/
|
|
598
|
-
export type AdditionalResponseFieldType = (typeof AdditionalResponseFieldType)[keyof typeof AdditionalResponseFieldType];
|
|
599
359
|
/**
|
|
600
360
|
* <p>Set of options which defines notification preferences of given action.</p>
|
|
601
361
|
* @public
|
|
@@ -613,35 +373,6 @@ export interface NotificationOptions {
|
|
|
613
373
|
*/
|
|
614
374
|
EmailMessage?: string | undefined;
|
|
615
375
|
}
|
|
616
|
-
/**
|
|
617
|
-
* @public
|
|
618
|
-
* @enum
|
|
619
|
-
*/
|
|
620
|
-
export declare const RoleType: {
|
|
621
|
-
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
622
|
-
readonly COOWNER: "COOWNER";
|
|
623
|
-
readonly OWNER: "OWNER";
|
|
624
|
-
readonly VIEWER: "VIEWER";
|
|
625
|
-
};
|
|
626
|
-
/**
|
|
627
|
-
* @public
|
|
628
|
-
*/
|
|
629
|
-
export type RoleType = (typeof RoleType)[keyof typeof RoleType];
|
|
630
|
-
/**
|
|
631
|
-
* @public
|
|
632
|
-
* @enum
|
|
633
|
-
*/
|
|
634
|
-
export declare const PrincipalType: {
|
|
635
|
-
readonly ANONYMOUS: "ANONYMOUS";
|
|
636
|
-
readonly GROUP: "GROUP";
|
|
637
|
-
readonly INVITE: "INVITE";
|
|
638
|
-
readonly ORGANIZATION: "ORGANIZATION";
|
|
639
|
-
readonly USER: "USER";
|
|
640
|
-
};
|
|
641
|
-
/**
|
|
642
|
-
* @public
|
|
643
|
-
*/
|
|
644
|
-
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
645
376
|
/**
|
|
646
377
|
* <p>Describes the recipient type and ID, if available.</p>
|
|
647
378
|
* @public
|
|
@@ -688,18 +419,6 @@ export interface AddResourcePermissionsRequest {
|
|
|
688
419
|
*/
|
|
689
420
|
NotificationOptions?: NotificationOptions | undefined;
|
|
690
421
|
}
|
|
691
|
-
/**
|
|
692
|
-
* @public
|
|
693
|
-
* @enum
|
|
694
|
-
*/
|
|
695
|
-
export declare const ShareStatusType: {
|
|
696
|
-
readonly FAILURE: "FAILURE";
|
|
697
|
-
readonly SUCCESS: "SUCCESS";
|
|
698
|
-
};
|
|
699
|
-
/**
|
|
700
|
-
* @public
|
|
701
|
-
*/
|
|
702
|
-
export type ShareStatusType = (typeof ShareStatusType)[keyof typeof ShareStatusType];
|
|
703
422
|
/**
|
|
704
423
|
* <p>Describes the share results of a resource.</p>
|
|
705
424
|
* @public
|
|
@@ -746,18 +465,6 @@ export interface AddResourcePermissionsResponse {
|
|
|
746
465
|
*/
|
|
747
466
|
ShareResults?: ShareResult[] | undefined;
|
|
748
467
|
}
|
|
749
|
-
/**
|
|
750
|
-
* @public
|
|
751
|
-
* @enum
|
|
752
|
-
*/
|
|
753
|
-
export declare const CommentVisibilityType: {
|
|
754
|
-
readonly PRIVATE: "PRIVATE";
|
|
755
|
-
readonly PUBLIC: "PUBLIC";
|
|
756
|
-
};
|
|
757
|
-
/**
|
|
758
|
-
* @public
|
|
759
|
-
*/
|
|
760
|
-
export type CommentVisibilityType = (typeof CommentVisibilityType)[keyof typeof CommentVisibilityType];
|
|
761
468
|
/**
|
|
762
469
|
* @public
|
|
763
470
|
*/
|
|
@@ -870,33 +577,6 @@ export interface CreateCommentResponse {
|
|
|
870
577
|
*/
|
|
871
578
|
Comment?: Comment | undefined;
|
|
872
579
|
}
|
|
873
|
-
/**
|
|
874
|
-
* <p>This exception is thrown when the document is locked for comments and user tries to
|
|
875
|
-
* create or delete a comment on that document.</p>
|
|
876
|
-
* @public
|
|
877
|
-
*/
|
|
878
|
-
export declare class DocumentLockedForCommentsException extends __BaseException {
|
|
879
|
-
readonly name: "DocumentLockedForCommentsException";
|
|
880
|
-
readonly $fault: "client";
|
|
881
|
-
Message?: string | undefined;
|
|
882
|
-
/**
|
|
883
|
-
* @internal
|
|
884
|
-
*/
|
|
885
|
-
constructor(opts: __ExceptionOptionType<DocumentLockedForCommentsException, __BaseException>);
|
|
886
|
-
}
|
|
887
|
-
/**
|
|
888
|
-
* <p>The requested operation is not allowed on the specified comment object.</p>
|
|
889
|
-
* @public
|
|
890
|
-
*/
|
|
891
|
-
export declare class InvalidCommentOperationException extends __BaseException {
|
|
892
|
-
readonly name: "InvalidCommentOperationException";
|
|
893
|
-
readonly $fault: "client";
|
|
894
|
-
Message?: string | undefined;
|
|
895
|
-
/**
|
|
896
|
-
* @internal
|
|
897
|
-
*/
|
|
898
|
-
constructor(opts: __ExceptionOptionType<InvalidCommentOperationException, __BaseException>);
|
|
899
|
-
}
|
|
900
580
|
/**
|
|
901
581
|
* @public
|
|
902
582
|
*/
|
|
@@ -928,33 +608,6 @@ export interface CreateCustomMetadataRequest {
|
|
|
928
608
|
*/
|
|
929
609
|
export interface CreateCustomMetadataResponse {
|
|
930
610
|
}
|
|
931
|
-
/**
|
|
932
|
-
* <p>The limit has been reached on the number of custom properties for the specified
|
|
933
|
-
* resource.</p>
|
|
934
|
-
* @public
|
|
935
|
-
*/
|
|
936
|
-
export declare class CustomMetadataLimitExceededException extends __BaseException {
|
|
937
|
-
readonly name: "CustomMetadataLimitExceededException";
|
|
938
|
-
readonly $fault: "client";
|
|
939
|
-
Message?: string | undefined;
|
|
940
|
-
/**
|
|
941
|
-
* @internal
|
|
942
|
-
*/
|
|
943
|
-
constructor(opts: __ExceptionOptionType<CustomMetadataLimitExceededException, __BaseException>);
|
|
944
|
-
}
|
|
945
|
-
/**
|
|
946
|
-
* <p>Another operation is in progress on the resource that conflicts with the current operation.</p>
|
|
947
|
-
* @public
|
|
948
|
-
*/
|
|
949
|
-
export declare class ConflictingOperationException extends __BaseException {
|
|
950
|
-
readonly name: "ConflictingOperationException";
|
|
951
|
-
readonly $fault: "client";
|
|
952
|
-
Message?: string | undefined;
|
|
953
|
-
/**
|
|
954
|
-
* @internal
|
|
955
|
-
*/
|
|
956
|
-
constructor(opts: __ExceptionOptionType<ConflictingOperationException, __BaseException>);
|
|
957
|
-
}
|
|
958
611
|
/**
|
|
959
612
|
* @public
|
|
960
613
|
*/
|
|
@@ -975,20 +628,6 @@ export interface CreateFolderRequest {
|
|
|
975
628
|
*/
|
|
976
629
|
ParentFolderId: string | undefined;
|
|
977
630
|
}
|
|
978
|
-
/**
|
|
979
|
-
* @public
|
|
980
|
-
* @enum
|
|
981
|
-
*/
|
|
982
|
-
export declare const ResourceStateType: {
|
|
983
|
-
readonly ACTIVE: "ACTIVE";
|
|
984
|
-
readonly RECYCLED: "RECYCLED";
|
|
985
|
-
readonly RECYCLING: "RECYCLING";
|
|
986
|
-
readonly RESTORING: "RESTORING";
|
|
987
|
-
};
|
|
988
|
-
/**
|
|
989
|
-
* @public
|
|
990
|
-
*/
|
|
991
|
-
export type ResourceStateType = (typeof ResourceStateType)[keyof typeof ResourceStateType];
|
|
992
631
|
/**
|
|
993
632
|
* <p>Describes a folder.</p>
|
|
994
633
|
* @public
|
|
@@ -1061,32 +700,6 @@ export interface CreateFolderResponse {
|
|
|
1061
700
|
*/
|
|
1062
701
|
Metadata?: FolderMetadata | undefined;
|
|
1063
702
|
}
|
|
1064
|
-
/**
|
|
1065
|
-
* <p>The resource already exists.</p>
|
|
1066
|
-
* @public
|
|
1067
|
-
*/
|
|
1068
|
-
export declare class EntityAlreadyExistsException extends __BaseException {
|
|
1069
|
-
readonly name: "EntityAlreadyExistsException";
|
|
1070
|
-
readonly $fault: "client";
|
|
1071
|
-
Message?: string | undefined;
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
constructor(opts: __ExceptionOptionType<EntityAlreadyExistsException, __BaseException>);
|
|
1076
|
-
}
|
|
1077
|
-
/**
|
|
1078
|
-
* <p>The maximum of 100,000 files and folders under the parent folder has been exceeded.</p>
|
|
1079
|
-
* @public
|
|
1080
|
-
*/
|
|
1081
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1082
|
-
readonly name: "LimitExceededException";
|
|
1083
|
-
readonly $fault: "client";
|
|
1084
|
-
Message?: string | undefined;
|
|
1085
|
-
/**
|
|
1086
|
-
* @internal
|
|
1087
|
-
*/
|
|
1088
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1089
|
-
}
|
|
1090
703
|
/**
|
|
1091
704
|
* @public
|
|
1092
705
|
*/
|
|
@@ -1112,43 +725,6 @@ export interface CreateLabelsRequest {
|
|
|
1112
725
|
*/
|
|
1113
726
|
export interface CreateLabelsResponse {
|
|
1114
727
|
}
|
|
1115
|
-
/**
|
|
1116
|
-
* <p>The limit has been reached on the number of labels for the specified
|
|
1117
|
-
* resource.</p>
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
export declare class TooManyLabelsException extends __BaseException {
|
|
1121
|
-
readonly name: "TooManyLabelsException";
|
|
1122
|
-
readonly $fault: "client";
|
|
1123
|
-
Message?: string | undefined;
|
|
1124
|
-
/**
|
|
1125
|
-
* @internal
|
|
1126
|
-
*/
|
|
1127
|
-
constructor(opts: __ExceptionOptionType<TooManyLabelsException, __BaseException>);
|
|
1128
|
-
}
|
|
1129
|
-
/**
|
|
1130
|
-
* @public
|
|
1131
|
-
* @enum
|
|
1132
|
-
*/
|
|
1133
|
-
export declare const SubscriptionProtocolType: {
|
|
1134
|
-
readonly HTTPS: "HTTPS";
|
|
1135
|
-
readonly SQS: "SQS";
|
|
1136
|
-
};
|
|
1137
|
-
/**
|
|
1138
|
-
* @public
|
|
1139
|
-
*/
|
|
1140
|
-
export type SubscriptionProtocolType = (typeof SubscriptionProtocolType)[keyof typeof SubscriptionProtocolType];
|
|
1141
|
-
/**
|
|
1142
|
-
* @public
|
|
1143
|
-
* @enum
|
|
1144
|
-
*/
|
|
1145
|
-
export declare const SubscriptionType: {
|
|
1146
|
-
readonly ALL: "ALL";
|
|
1147
|
-
};
|
|
1148
|
-
/**
|
|
1149
|
-
* @public
|
|
1150
|
-
*/
|
|
1151
|
-
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
1152
728
|
/**
|
|
1153
729
|
* @public
|
|
1154
730
|
*/
|
|
@@ -1207,33 +783,6 @@ export interface CreateNotificationSubscriptionResponse {
|
|
|
1207
783
|
*/
|
|
1208
784
|
Subscription?: Subscription | undefined;
|
|
1209
785
|
}
|
|
1210
|
-
/**
|
|
1211
|
-
* <p>The pagination marker or limit fields are not valid.</p>
|
|
1212
|
-
* @public
|
|
1213
|
-
*/
|
|
1214
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
1215
|
-
readonly name: "InvalidArgumentException";
|
|
1216
|
-
readonly $fault: "client";
|
|
1217
|
-
Message?: string | undefined;
|
|
1218
|
-
/**
|
|
1219
|
-
* @internal
|
|
1220
|
-
*/
|
|
1221
|
-
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
1222
|
-
}
|
|
1223
|
-
/**
|
|
1224
|
-
* <p>You've reached the limit on the number of subscriptions for the WorkDocs
|
|
1225
|
-
* instance.</p>
|
|
1226
|
-
* @public
|
|
1227
|
-
*/
|
|
1228
|
-
export declare class TooManySubscriptionsException extends __BaseException {
|
|
1229
|
-
readonly name: "TooManySubscriptionsException";
|
|
1230
|
-
readonly $fault: "client";
|
|
1231
|
-
Message?: string | undefined;
|
|
1232
|
-
/**
|
|
1233
|
-
* @internal
|
|
1234
|
-
*/
|
|
1235
|
-
constructor(opts: __ExceptionOptionType<TooManySubscriptionsException, __BaseException>);
|
|
1236
|
-
}
|
|
1237
786
|
/**
|
|
1238
787
|
* @public
|
|
1239
788
|
*/
|
|
@@ -1411,19 +960,6 @@ export interface DeleteDocumentVersionRequest {
|
|
|
1411
960
|
*/
|
|
1412
961
|
DeletePriorVersions: boolean | undefined;
|
|
1413
962
|
}
|
|
1414
|
-
/**
|
|
1415
|
-
* <p>The operation is invalid.</p>
|
|
1416
|
-
* @public
|
|
1417
|
-
*/
|
|
1418
|
-
export declare class InvalidOperationException extends __BaseException {
|
|
1419
|
-
readonly name: "InvalidOperationException";
|
|
1420
|
-
readonly $fault: "client";
|
|
1421
|
-
Message?: string | undefined;
|
|
1422
|
-
/**
|
|
1423
|
-
* @internal
|
|
1424
|
-
*/
|
|
1425
|
-
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
1426
|
-
}
|
|
1427
963
|
/**
|
|
1428
964
|
* @public
|
|
1429
965
|
*/
|
|
@@ -1679,43 +1215,6 @@ export interface DescribeDocumentVersionsRequest {
|
|
|
1679
1215
|
*/
|
|
1680
1216
|
Fields?: string | undefined;
|
|
1681
1217
|
}
|
|
1682
|
-
/**
|
|
1683
|
-
* @public
|
|
1684
|
-
* @enum
|
|
1685
|
-
*/
|
|
1686
|
-
export declare const DocumentSourceType: {
|
|
1687
|
-
readonly ORIGINAL: "ORIGINAL";
|
|
1688
|
-
readonly WITH_COMMENTS: "WITH_COMMENTS";
|
|
1689
|
-
};
|
|
1690
|
-
/**
|
|
1691
|
-
* @public
|
|
1692
|
-
*/
|
|
1693
|
-
export type DocumentSourceType = (typeof DocumentSourceType)[keyof typeof DocumentSourceType];
|
|
1694
|
-
/**
|
|
1695
|
-
* @public
|
|
1696
|
-
* @enum
|
|
1697
|
-
*/
|
|
1698
|
-
export declare const DocumentStatusType: {
|
|
1699
|
-
readonly ACTIVE: "ACTIVE";
|
|
1700
|
-
readonly INITIALIZED: "INITIALIZED";
|
|
1701
|
-
};
|
|
1702
|
-
/**
|
|
1703
|
-
* @public
|
|
1704
|
-
*/
|
|
1705
|
-
export type DocumentStatusType = (typeof DocumentStatusType)[keyof typeof DocumentStatusType];
|
|
1706
|
-
/**
|
|
1707
|
-
* @public
|
|
1708
|
-
* @enum
|
|
1709
|
-
*/
|
|
1710
|
-
export declare const DocumentThumbnailType: {
|
|
1711
|
-
readonly LARGE: "LARGE";
|
|
1712
|
-
readonly SMALL: "SMALL";
|
|
1713
|
-
readonly SMALL_HQ: "SMALL_HQ";
|
|
1714
|
-
};
|
|
1715
|
-
/**
|
|
1716
|
-
* @public
|
|
1717
|
-
*/
|
|
1718
|
-
export type DocumentThumbnailType = (typeof DocumentThumbnailType)[keyof typeof DocumentThumbnailType];
|
|
1719
1218
|
/**
|
|
1720
1219
|
* <p>Describes a version of a document.</p>
|
|
1721
1220
|
* @public
|
|
@@ -1803,56 +1302,6 @@ export interface DescribeDocumentVersionsResponse {
|
|
|
1803
1302
|
*/
|
|
1804
1303
|
Marker?: string | undefined;
|
|
1805
1304
|
}
|
|
1806
|
-
/**
|
|
1807
|
-
* <p>The password is invalid.</p>
|
|
1808
|
-
* @public
|
|
1809
|
-
*/
|
|
1810
|
-
export declare class InvalidPasswordException extends __BaseException {
|
|
1811
|
-
readonly name: "InvalidPasswordException";
|
|
1812
|
-
readonly $fault: "client";
|
|
1813
|
-
Message?: string | undefined;
|
|
1814
|
-
/**
|
|
1815
|
-
* @internal
|
|
1816
|
-
*/
|
|
1817
|
-
constructor(opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>);
|
|
1818
|
-
}
|
|
1819
|
-
/**
|
|
1820
|
-
* @public
|
|
1821
|
-
* @enum
|
|
1822
|
-
*/
|
|
1823
|
-
export declare const OrderType: {
|
|
1824
|
-
readonly ASCENDING: "ASCENDING";
|
|
1825
|
-
readonly DESCENDING: "DESCENDING";
|
|
1826
|
-
};
|
|
1827
|
-
/**
|
|
1828
|
-
* @public
|
|
1829
|
-
*/
|
|
1830
|
-
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
1831
|
-
/**
|
|
1832
|
-
* @public
|
|
1833
|
-
* @enum
|
|
1834
|
-
*/
|
|
1835
|
-
export declare const ResourceSortType: {
|
|
1836
|
-
readonly DATE: "DATE";
|
|
1837
|
-
readonly NAME: "NAME";
|
|
1838
|
-
};
|
|
1839
|
-
/**
|
|
1840
|
-
* @public
|
|
1841
|
-
*/
|
|
1842
|
-
export type ResourceSortType = (typeof ResourceSortType)[keyof typeof ResourceSortType];
|
|
1843
|
-
/**
|
|
1844
|
-
* @public
|
|
1845
|
-
* @enum
|
|
1846
|
-
*/
|
|
1847
|
-
export declare const FolderContentType: {
|
|
1848
|
-
readonly ALL: "ALL";
|
|
1849
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
1850
|
-
readonly FOLDER: "FOLDER";
|
|
1851
|
-
};
|
|
1852
|
-
/**
|
|
1853
|
-
* @public
|
|
1854
|
-
*/
|
|
1855
|
-
export type FolderContentType = (typeof FolderContentType)[keyof typeof FolderContentType];
|
|
1856
1305
|
/**
|
|
1857
1306
|
* @public
|
|
1858
1307
|
*/
|
|
@@ -2082,18 +1531,6 @@ export interface DescribeResourcePermissionsRequest {
|
|
|
2082
1531
|
*/
|
|
2083
1532
|
Marker?: string | undefined;
|
|
2084
1533
|
}
|
|
2085
|
-
/**
|
|
2086
|
-
* @public
|
|
2087
|
-
* @enum
|
|
2088
|
-
*/
|
|
2089
|
-
export declare const RolePermissionType: {
|
|
2090
|
-
readonly DIRECT: "DIRECT";
|
|
2091
|
-
readonly INHERITED: "INHERITED";
|
|
2092
|
-
};
|
|
2093
|
-
/**
|
|
2094
|
-
* @public
|
|
2095
|
-
*/
|
|
2096
|
-
export type RolePermissionType = (typeof RolePermissionType)[keyof typeof RolePermissionType];
|
|
2097
1534
|
/**
|
|
2098
1535
|
* <p>Describes the permissions.</p>
|
|
2099
1536
|
* @public
|
|
@@ -2183,33 +1620,6 @@ export interface DescribeRootFoldersResponse {
|
|
|
2183
1620
|
*/
|
|
2184
1621
|
Marker?: string | undefined;
|
|
2185
1622
|
}
|
|
2186
|
-
/**
|
|
2187
|
-
* @public
|
|
2188
|
-
* @enum
|
|
2189
|
-
*/
|
|
2190
|
-
export declare const UserFilterType: {
|
|
2191
|
-
readonly ACTIVE_PENDING: "ACTIVE_PENDING";
|
|
2192
|
-
readonly ALL: "ALL";
|
|
2193
|
-
};
|
|
2194
|
-
/**
|
|
2195
|
-
* @public
|
|
2196
|
-
*/
|
|
2197
|
-
export type UserFilterType = (typeof UserFilterType)[keyof typeof UserFilterType];
|
|
2198
|
-
/**
|
|
2199
|
-
* @public
|
|
2200
|
-
* @enum
|
|
2201
|
-
*/
|
|
2202
|
-
export declare const UserSortType: {
|
|
2203
|
-
readonly FULL_NAME: "FULL_NAME";
|
|
2204
|
-
readonly STORAGE_LIMIT: "STORAGE_LIMIT";
|
|
2205
|
-
readonly STORAGE_USED: "STORAGE_USED";
|
|
2206
|
-
readonly USER_NAME: "USER_NAME";
|
|
2207
|
-
readonly USER_STATUS: "USER_STATUS";
|
|
2208
|
-
};
|
|
2209
|
-
/**
|
|
2210
|
-
* @public
|
|
2211
|
-
*/
|
|
2212
|
-
export type UserSortType = (typeof UserSortType)[keyof typeof UserSortType];
|
|
2213
1623
|
/**
|
|
2214
1624
|
* @public
|
|
2215
1625
|
*/
|
|
@@ -2307,19 +1717,6 @@ export interface DescribeUsersResponse {
|
|
|
2307
1717
|
*/
|
|
2308
1718
|
Marker?: string | undefined;
|
|
2309
1719
|
}
|
|
2310
|
-
/**
|
|
2311
|
-
* <p>The response is too large to return. The request must include a filter to reduce the size of the response.</p>
|
|
2312
|
-
* @public
|
|
2313
|
-
*/
|
|
2314
|
-
export declare class RequestedEntityTooLargeException extends __BaseException {
|
|
2315
|
-
readonly name: "RequestedEntityTooLargeException";
|
|
2316
|
-
readonly $fault: "client";
|
|
2317
|
-
Message?: string | undefined;
|
|
2318
|
-
/**
|
|
2319
|
-
* @internal
|
|
2320
|
-
*/
|
|
2321
|
-
constructor(opts: __ExceptionOptionType<RequestedEntityTooLargeException, __BaseException>);
|
|
2322
|
-
}
|
|
2323
1720
|
/**
|
|
2324
1721
|
* @public
|
|
2325
1722
|
*/
|
|
@@ -2565,17 +1962,6 @@ export interface GetFolderPathResponse {
|
|
|
2565
1962
|
*/
|
|
2566
1963
|
Path?: ResourcePath | undefined;
|
|
2567
1964
|
}
|
|
2568
|
-
/**
|
|
2569
|
-
* @public
|
|
2570
|
-
* @enum
|
|
2571
|
-
*/
|
|
2572
|
-
export declare const ResourceCollectionType: {
|
|
2573
|
-
readonly SHARED_WITH_ME: "SHARED_WITH_ME";
|
|
2574
|
-
};
|
|
2575
|
-
/**
|
|
2576
|
-
* @public
|
|
2577
|
-
*/
|
|
2578
|
-
export type ResourceCollectionType = (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
|
|
2579
1965
|
/**
|
|
2580
1966
|
* @public
|
|
2581
1967
|
*/
|
|
@@ -2627,20 +2013,6 @@ export interface GetResourcesResponse {
|
|
|
2627
2013
|
*/
|
|
2628
2014
|
Marker?: string | undefined;
|
|
2629
2015
|
}
|
|
2630
|
-
/**
|
|
2631
|
-
* <p>This exception is thrown when a valid checkout ID is not presented on document
|
|
2632
|
-
* version upload calls for a document that has been checked out from Web client.</p>
|
|
2633
|
-
* @public
|
|
2634
|
-
*/
|
|
2635
|
-
export declare class DraftUploadOutOfSyncException extends __BaseException {
|
|
2636
|
-
readonly name: "DraftUploadOutOfSyncException";
|
|
2637
|
-
readonly $fault: "client";
|
|
2638
|
-
Message?: string | undefined;
|
|
2639
|
-
/**
|
|
2640
|
-
* @internal
|
|
2641
|
-
*/
|
|
2642
|
-
constructor(opts: __ExceptionOptionType<DraftUploadOutOfSyncException, __BaseException>);
|
|
2643
|
-
}
|
|
2644
2016
|
/**
|
|
2645
2017
|
* @public
|
|
2646
2018
|
*/
|
|
@@ -2717,45 +2089,6 @@ export interface InitiateDocumentVersionUploadResponse {
|
|
|
2717
2089
|
*/
|
|
2718
2090
|
UploadMetadata?: UploadMetadata | undefined;
|
|
2719
2091
|
}
|
|
2720
|
-
/**
|
|
2721
|
-
* <p>The resource is already checked out.</p>
|
|
2722
|
-
* @public
|
|
2723
|
-
*/
|
|
2724
|
-
export declare class ResourceAlreadyCheckedOutException extends __BaseException {
|
|
2725
|
-
readonly name: "ResourceAlreadyCheckedOutException";
|
|
2726
|
-
readonly $fault: "client";
|
|
2727
|
-
Message?: string | undefined;
|
|
2728
|
-
/**
|
|
2729
|
-
* @internal
|
|
2730
|
-
*/
|
|
2731
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyCheckedOutException, __BaseException>);
|
|
2732
|
-
}
|
|
2733
|
-
/**
|
|
2734
|
-
* <p>The storage limit has been exceeded.</p>
|
|
2735
|
-
* @public
|
|
2736
|
-
*/
|
|
2737
|
-
export declare class StorageLimitExceededException extends __BaseException {
|
|
2738
|
-
readonly name: "StorageLimitExceededException";
|
|
2739
|
-
readonly $fault: "client";
|
|
2740
|
-
Message?: string | undefined;
|
|
2741
|
-
/**
|
|
2742
|
-
* @internal
|
|
2743
|
-
*/
|
|
2744
|
-
constructor(opts: __ExceptionOptionType<StorageLimitExceededException, __BaseException>);
|
|
2745
|
-
}
|
|
2746
|
-
/**
|
|
2747
|
-
* <p>The storage limit will be exceeded.</p>
|
|
2748
|
-
* @public
|
|
2749
|
-
*/
|
|
2750
|
-
export declare class StorageLimitWillExceedException extends __BaseException {
|
|
2751
|
-
readonly name: "StorageLimitWillExceedException";
|
|
2752
|
-
readonly $fault: "client";
|
|
2753
|
-
Message?: string | undefined;
|
|
2754
|
-
/**
|
|
2755
|
-
* @internal
|
|
2756
|
-
*/
|
|
2757
|
-
constructor(opts: __ExceptionOptionType<StorageLimitWillExceedException, __BaseException>);
|
|
2758
|
-
}
|
|
2759
2092
|
/**
|
|
2760
2093
|
* @public
|
|
2761
2094
|
*/
|
|
@@ -2811,25 +2144,6 @@ export interface RestoreDocumentVersionsRequest {
|
|
|
2811
2144
|
*/
|
|
2812
2145
|
DocumentId: string | undefined;
|
|
2813
2146
|
}
|
|
2814
|
-
/**
|
|
2815
|
-
* @public
|
|
2816
|
-
* @enum
|
|
2817
|
-
*/
|
|
2818
|
-
export declare const ContentCategoryType: {
|
|
2819
|
-
readonly AUDIO: "AUDIO";
|
|
2820
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
2821
|
-
readonly IMAGE: "IMAGE";
|
|
2822
|
-
readonly OTHER: "OTHER";
|
|
2823
|
-
readonly PDF: "PDF";
|
|
2824
|
-
readonly PRESENTATION: "PRESENTATION";
|
|
2825
|
-
readonly SOURCE_CODE: "SOURCE_CODE";
|
|
2826
|
-
readonly SPREADSHEET: "SPREADSHEET";
|
|
2827
|
-
readonly VIDEO: "VIDEO";
|
|
2828
|
-
};
|
|
2829
|
-
/**
|
|
2830
|
-
* @public
|
|
2831
|
-
*/
|
|
2832
|
-
export type ContentCategoryType = (typeof ContentCategoryType)[keyof typeof ContentCategoryType];
|
|
2833
2147
|
/**
|
|
2834
2148
|
* <p>Filters results based on timestamp range (in epochs).</p>
|
|
2835
2149
|
* @public
|
|
@@ -2846,20 +2160,6 @@ export interface DateRangeType {
|
|
|
2846
2160
|
*/
|
|
2847
2161
|
EndValue?: Date | undefined;
|
|
2848
2162
|
}
|
|
2849
|
-
/**
|
|
2850
|
-
* @public
|
|
2851
|
-
* @enum
|
|
2852
|
-
*/
|
|
2853
|
-
export declare const PrincipalRoleType: {
|
|
2854
|
-
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
2855
|
-
readonly COOWNER: "COOWNER";
|
|
2856
|
-
readonly OWNER: "OWNER";
|
|
2857
|
-
readonly VIEWER: "VIEWER";
|
|
2858
|
-
};
|
|
2859
|
-
/**
|
|
2860
|
-
* @public
|
|
2861
|
-
*/
|
|
2862
|
-
export type PrincipalRoleType = (typeof PrincipalRoleType)[keyof typeof PrincipalRoleType];
|
|
2863
2163
|
/**
|
|
2864
2164
|
* <p>Filter based on UserIds or GroupIds.</p>
|
|
2865
2165
|
* @public
|
|
@@ -2876,32 +2176,6 @@ export interface SearchPrincipalType {
|
|
|
2876
2176
|
*/
|
|
2877
2177
|
Roles?: PrincipalRoleType[] | undefined;
|
|
2878
2178
|
}
|
|
2879
|
-
/**
|
|
2880
|
-
* @public
|
|
2881
|
-
* @enum
|
|
2882
|
-
*/
|
|
2883
|
-
export declare const SearchResourceType: {
|
|
2884
|
-
readonly COMMENT: "COMMENT";
|
|
2885
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
2886
|
-
readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
|
|
2887
|
-
readonly FOLDER: "FOLDER";
|
|
2888
|
-
};
|
|
2889
|
-
/**
|
|
2890
|
-
* @public
|
|
2891
|
-
*/
|
|
2892
|
-
export type SearchResourceType = (typeof SearchResourceType)[keyof typeof SearchResourceType];
|
|
2893
|
-
/**
|
|
2894
|
-
* @public
|
|
2895
|
-
* @enum
|
|
2896
|
-
*/
|
|
2897
|
-
export declare const SearchCollectionType: {
|
|
2898
|
-
readonly OWNED: "OWNED";
|
|
2899
|
-
readonly SHARED_WITH_ME: "SHARED_WITH_ME";
|
|
2900
|
-
};
|
|
2901
|
-
/**
|
|
2902
|
-
* @public
|
|
2903
|
-
*/
|
|
2904
|
-
export type SearchCollectionType = (typeof SearchCollectionType)[keyof typeof SearchCollectionType];
|
|
2905
2179
|
/**
|
|
2906
2180
|
* <p>Filter based on size (in bytes).</p>
|
|
2907
2181
|
* @public
|
|
@@ -2918,47 +2192,6 @@ export interface LongRangeType {
|
|
|
2918
2192
|
*/
|
|
2919
2193
|
EndValue?: number | undefined;
|
|
2920
2194
|
}
|
|
2921
|
-
/**
|
|
2922
|
-
* @public
|
|
2923
|
-
* @enum
|
|
2924
|
-
*/
|
|
2925
|
-
export declare const LanguageCodeType: {
|
|
2926
|
-
readonly AR: "AR";
|
|
2927
|
-
readonly BG: "BG";
|
|
2928
|
-
readonly BN: "BN";
|
|
2929
|
-
readonly CS: "CS";
|
|
2930
|
-
readonly DA: "DA";
|
|
2931
|
-
readonly DE: "DE";
|
|
2932
|
-
readonly DEFAULT: "DEFAULT";
|
|
2933
|
-
readonly EL: "EL";
|
|
2934
|
-
readonly EN: "EN";
|
|
2935
|
-
readonly ES: "ES";
|
|
2936
|
-
readonly FA: "FA";
|
|
2937
|
-
readonly FI: "FI";
|
|
2938
|
-
readonly FR: "FR";
|
|
2939
|
-
readonly HI: "HI";
|
|
2940
|
-
readonly HU: "HU";
|
|
2941
|
-
readonly ID: "ID";
|
|
2942
|
-
readonly IT: "IT";
|
|
2943
|
-
readonly JA: "JA";
|
|
2944
|
-
readonly KO: "KO";
|
|
2945
|
-
readonly LT: "LT";
|
|
2946
|
-
readonly LV: "LV";
|
|
2947
|
-
readonly NL: "NL";
|
|
2948
|
-
readonly NO: "NO";
|
|
2949
|
-
readonly PT: "PT";
|
|
2950
|
-
readonly RO: "RO";
|
|
2951
|
-
readonly RU: "RU";
|
|
2952
|
-
readonly SV: "SV";
|
|
2953
|
-
readonly SW: "SW";
|
|
2954
|
-
readonly TH: "TH";
|
|
2955
|
-
readonly TR: "TR";
|
|
2956
|
-
readonly ZH: "ZH";
|
|
2957
|
-
};
|
|
2958
|
-
/**
|
|
2959
|
-
* @public
|
|
2960
|
-
*/
|
|
2961
|
-
export type LanguageCodeType = (typeof LanguageCodeType)[keyof typeof LanguageCodeType];
|
|
2962
2195
|
/**
|
|
2963
2196
|
* <p>Filters results based on entity metadata.</p>
|
|
2964
2197
|
* @public
|
|
@@ -3015,33 +2248,6 @@ export interface Filters {
|
|
|
3015
2248
|
*/
|
|
3016
2249
|
ModifiedRange?: DateRangeType | undefined;
|
|
3017
2250
|
}
|
|
3018
|
-
/**
|
|
3019
|
-
* @public
|
|
3020
|
-
* @enum
|
|
3021
|
-
*/
|
|
3022
|
-
export declare const OrderByFieldType: {
|
|
3023
|
-
readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
|
|
3024
|
-
readonly MODIFIED_TIMESTAMP: "MODIFIED_TIMESTAMP";
|
|
3025
|
-
readonly NAME: "NAME";
|
|
3026
|
-
readonly RELEVANCE: "RELEVANCE";
|
|
3027
|
-
readonly SIZE: "SIZE";
|
|
3028
|
-
};
|
|
3029
|
-
/**
|
|
3030
|
-
* @public
|
|
3031
|
-
*/
|
|
3032
|
-
export type OrderByFieldType = (typeof OrderByFieldType)[keyof typeof OrderByFieldType];
|
|
3033
|
-
/**
|
|
3034
|
-
* @public
|
|
3035
|
-
* @enum
|
|
3036
|
-
*/
|
|
3037
|
-
export declare const SortOrder: {
|
|
3038
|
-
readonly ASC: "ASC";
|
|
3039
|
-
readonly DESC: "DESC";
|
|
3040
|
-
};
|
|
3041
|
-
/**
|
|
3042
|
-
* @public
|
|
3043
|
-
*/
|
|
3044
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
3045
2251
|
/**
|
|
3046
2252
|
* <p>The result of the sort operation.</p>
|
|
3047
2253
|
* @public
|
|
@@ -3058,18 +2264,6 @@ export interface SearchSortResult {
|
|
|
3058
2264
|
*/
|
|
3059
2265
|
Order?: SortOrder | undefined;
|
|
3060
2266
|
}
|
|
3061
|
-
/**
|
|
3062
|
-
* @public
|
|
3063
|
-
* @enum
|
|
3064
|
-
*/
|
|
3065
|
-
export declare const SearchQueryScopeType: {
|
|
3066
|
-
readonly CONTENT: "CONTENT";
|
|
3067
|
-
readonly NAME: "NAME";
|
|
3068
|
-
};
|
|
3069
|
-
/**
|
|
3070
|
-
* @public
|
|
3071
|
-
*/
|
|
3072
|
-
export type SearchQueryScopeType = (typeof SearchQueryScopeType)[keyof typeof SearchQueryScopeType];
|
|
3073
2267
|
/**
|
|
3074
2268
|
* @public
|
|
3075
2269
|
*/
|
|
@@ -3121,20 +2315,6 @@ export interface SearchResourcesRequest {
|
|
|
3121
2315
|
*/
|
|
3122
2316
|
Marker?: string | undefined;
|
|
3123
2317
|
}
|
|
3124
|
-
/**
|
|
3125
|
-
* @public
|
|
3126
|
-
* @enum
|
|
3127
|
-
*/
|
|
3128
|
-
export declare const ResponseItemType: {
|
|
3129
|
-
readonly COMMENT: "COMMENT";
|
|
3130
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
3131
|
-
readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
|
|
3132
|
-
readonly FOLDER: "FOLDER";
|
|
3133
|
-
};
|
|
3134
|
-
/**
|
|
3135
|
-
* @public
|
|
3136
|
-
*/
|
|
3137
|
-
export type ResponseItemType = (typeof ResponseItemType)[keyof typeof ResponseItemType];
|
|
3138
2318
|
/**
|
|
3139
2319
|
* <p>List of Documents, Folders, Comments, and Document Versions matching the query.</p>
|
|
3140
2320
|
* @public
|
|
@@ -3217,17 +2397,6 @@ export interface UpdateDocumentRequest {
|
|
|
3217
2397
|
*/
|
|
3218
2398
|
ResourceState?: ResourceStateType | undefined;
|
|
3219
2399
|
}
|
|
3220
|
-
/**
|
|
3221
|
-
* @public
|
|
3222
|
-
* @enum
|
|
3223
|
-
*/
|
|
3224
|
-
export declare const DocumentVersionStatus: {
|
|
3225
|
-
readonly ACTIVE: "ACTIVE";
|
|
3226
|
-
};
|
|
3227
|
-
/**
|
|
3228
|
-
* @public
|
|
3229
|
-
*/
|
|
3230
|
-
export type DocumentVersionStatus = (typeof DocumentVersionStatus)[keyof typeof DocumentVersionStatus];
|
|
3231
2400
|
/**
|
|
3232
2401
|
* @public
|
|
3233
2402
|
*/
|
|
@@ -3284,45 +2453,6 @@ export interface UpdateFolderRequest {
|
|
|
3284
2453
|
*/
|
|
3285
2454
|
ResourceState?: ResourceStateType | undefined;
|
|
3286
2455
|
}
|
|
3287
|
-
/**
|
|
3288
|
-
* <p>The last user in the organization is being deactivated.</p>
|
|
3289
|
-
* @public
|
|
3290
|
-
*/
|
|
3291
|
-
export declare class DeactivatingLastSystemUserException extends __BaseException {
|
|
3292
|
-
readonly name: "DeactivatingLastSystemUserException";
|
|
3293
|
-
readonly $fault: "client";
|
|
3294
|
-
Message?: string | undefined;
|
|
3295
|
-
Code?: string | undefined;
|
|
3296
|
-
/**
|
|
3297
|
-
* @internal
|
|
3298
|
-
*/
|
|
3299
|
-
constructor(opts: __ExceptionOptionType<DeactivatingLastSystemUserException, __BaseException>);
|
|
3300
|
-
}
|
|
3301
|
-
/**
|
|
3302
|
-
* <p>The user is undergoing transfer of ownership.</p>
|
|
3303
|
-
* @public
|
|
3304
|
-
*/
|
|
3305
|
-
export declare class IllegalUserStateException extends __BaseException {
|
|
3306
|
-
readonly name: "IllegalUserStateException";
|
|
3307
|
-
readonly $fault: "client";
|
|
3308
|
-
Message?: string | undefined;
|
|
3309
|
-
/**
|
|
3310
|
-
* @internal
|
|
3311
|
-
*/
|
|
3312
|
-
constructor(opts: __ExceptionOptionType<IllegalUserStateException, __BaseException>);
|
|
3313
|
-
}
|
|
3314
|
-
/**
|
|
3315
|
-
* @public
|
|
3316
|
-
* @enum
|
|
3317
|
-
*/
|
|
3318
|
-
export declare const BooleanEnumType: {
|
|
3319
|
-
readonly FALSE: "FALSE";
|
|
3320
|
-
readonly TRUE: "TRUE";
|
|
3321
|
-
};
|
|
3322
|
-
/**
|
|
3323
|
-
* @public
|
|
3324
|
-
*/
|
|
3325
|
-
export type BooleanEnumType = (typeof BooleanEnumType)[keyof typeof BooleanEnumType];
|
|
3326
2456
|
/**
|
|
3327
2457
|
* @public
|
|
3328
2458
|
*/
|