@aws-sdk/client-workdocs 3.934.0 → 3.936.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.
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { WorkDocsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { WorkDocsServiceException } from "./models/WorkDocsServiceException";
@@ -0,0 +1,304 @@
1
+ export declare const LocaleType: {
2
+ readonly DE: "de";
3
+ readonly DEFAULT: "default";
4
+ readonly EN: "en";
5
+ readonly ES: "es";
6
+ readonly FR: "fr";
7
+ readonly JA: "ja";
8
+ readonly KO: "ko";
9
+ readonly PT_BR: "pt_BR";
10
+ readonly RU: "ru";
11
+ readonly ZH_CN: "zh_CN";
12
+ readonly ZH_TW: "zh_TW";
13
+ };
14
+ export type LocaleType = (typeof LocaleType)[keyof typeof LocaleType];
15
+ export declare const UserStatusType: {
16
+ readonly ACTIVE: "ACTIVE";
17
+ readonly INACTIVE: "INACTIVE";
18
+ readonly PENDING: "PENDING";
19
+ };
20
+ export type UserStatusType =
21
+ (typeof UserStatusType)[keyof typeof UserStatusType];
22
+ export declare const StorageType: {
23
+ readonly QUOTA: "QUOTA";
24
+ readonly UNLIMITED: "UNLIMITED";
25
+ };
26
+ export type StorageType = (typeof StorageType)[keyof typeof StorageType];
27
+ export declare const UserType: {
28
+ readonly ADMIN: "ADMIN";
29
+ readonly MINIMALUSER: "MINIMALUSER";
30
+ readonly POWERUSER: "POWERUSER";
31
+ readonly USER: "USER";
32
+ readonly WORKSPACESUSER: "WORKSPACESUSER";
33
+ };
34
+ export type UserType = (typeof UserType)[keyof typeof UserType];
35
+ export declare const CommentStatusType: {
36
+ readonly DELETED: "DELETED";
37
+ readonly DRAFT: "DRAFT";
38
+ readonly PUBLISHED: "PUBLISHED";
39
+ };
40
+ export type CommentStatusType =
41
+ (typeof CommentStatusType)[keyof typeof CommentStatusType];
42
+ export declare const ResourceType: {
43
+ readonly DOCUMENT: "DOCUMENT";
44
+ readonly FOLDER: "FOLDER";
45
+ };
46
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
47
+ export declare const ActivityType: {
48
+ readonly DOCUMENT_ANNOTATION_ADDED: "DOCUMENT_ANNOTATION_ADDED";
49
+ readonly DOCUMENT_ANNOTATION_DELETED: "DOCUMENT_ANNOTATION_DELETED";
50
+ readonly DOCUMENT_CHECKED_IN: "DOCUMENT_CHECKED_IN";
51
+ readonly DOCUMENT_CHECKED_OUT: "DOCUMENT_CHECKED_OUT";
52
+ readonly DOCUMENT_COMMENT_ADDED: "DOCUMENT_COMMENT_ADDED";
53
+ readonly DOCUMENT_COMMENT_DELETED: "DOCUMENT_COMMENT_DELETED";
54
+ readonly DOCUMENT_MOVED: "DOCUMENT_MOVED";
55
+ readonly DOCUMENT_RECYCLED: "DOCUMENT_RECYCLED";
56
+ readonly DOCUMENT_RENAMED: "DOCUMENT_RENAMED";
57
+ readonly DOCUMENT_RESTORED: "DOCUMENT_RESTORED";
58
+ readonly DOCUMENT_REVERTED: "DOCUMENT_REVERTED";
59
+ readonly DOCUMENT_SHAREABLE_LINK_CREATED: "DOCUMENT_SHAREABLE_LINK_CREATED";
60
+ readonly DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED: "DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED";
61
+ readonly DOCUMENT_SHAREABLE_LINK_REMOVED: "DOCUMENT_SHAREABLE_LINK_REMOVED";
62
+ readonly DOCUMENT_SHARED: "DOCUMENT_SHARED";
63
+ readonly DOCUMENT_SHARE_PERMISSION_CHANGED: "DOCUMENT_SHARE_PERMISSION_CHANGED";
64
+ readonly DOCUMENT_UNSHARED: "DOCUMENT_UNSHARED";
65
+ readonly DOCUMENT_VERSION_DELETED: "DOCUMENT_VERSION_DELETED";
66
+ readonly DOCUMENT_VERSION_DOWNLOADED: "DOCUMENT_VERSION_DOWNLOADED";
67
+ readonly DOCUMENT_VERSION_UPLOADED: "DOCUMENT_VERSION_UPLOADED";
68
+ readonly DOCUMENT_VERSION_VIEWED: "DOCUMENT_VERSION_VIEWED";
69
+ readonly FOLDER_CREATED: "FOLDER_CREATED";
70
+ readonly FOLDER_DELETED: "FOLDER_DELETED";
71
+ readonly FOLDER_MOVED: "FOLDER_MOVED";
72
+ readonly FOLDER_RECYCLED: "FOLDER_RECYCLED";
73
+ readonly FOLDER_RENAMED: "FOLDER_RENAMED";
74
+ readonly FOLDER_RESTORED: "FOLDER_RESTORED";
75
+ readonly FOLDER_SHAREABLE_LINK_CREATED: "FOLDER_SHAREABLE_LINK_CREATED";
76
+ readonly FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED: "FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED";
77
+ readonly FOLDER_SHAREABLE_LINK_REMOVED: "FOLDER_SHAREABLE_LINK_REMOVED";
78
+ readonly FOLDER_SHARED: "FOLDER_SHARED";
79
+ readonly FOLDER_SHARE_PERMISSION_CHANGED: "FOLDER_SHARE_PERMISSION_CHANGED";
80
+ readonly FOLDER_UNSHARED: "FOLDER_UNSHARED";
81
+ };
82
+ export type ActivityType = (typeof ActivityType)[keyof typeof ActivityType];
83
+ export declare const AdditionalResponseFieldType: {
84
+ readonly WEBURL: "WEBURL";
85
+ };
86
+ export type AdditionalResponseFieldType =
87
+ (typeof AdditionalResponseFieldType)[keyof typeof AdditionalResponseFieldType];
88
+ export declare const RoleType: {
89
+ readonly CONTRIBUTOR: "CONTRIBUTOR";
90
+ readonly COOWNER: "COOWNER";
91
+ readonly OWNER: "OWNER";
92
+ readonly VIEWER: "VIEWER";
93
+ };
94
+ export type RoleType = (typeof RoleType)[keyof typeof RoleType];
95
+ export declare const PrincipalType: {
96
+ readonly ANONYMOUS: "ANONYMOUS";
97
+ readonly GROUP: "GROUP";
98
+ readonly INVITE: "INVITE";
99
+ readonly ORGANIZATION: "ORGANIZATION";
100
+ readonly USER: "USER";
101
+ };
102
+ export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
103
+ export declare const ShareStatusType: {
104
+ readonly FAILURE: "FAILURE";
105
+ readonly SUCCESS: "SUCCESS";
106
+ };
107
+ export type ShareStatusType =
108
+ (typeof ShareStatusType)[keyof typeof ShareStatusType];
109
+ export declare const CommentVisibilityType: {
110
+ readonly PRIVATE: "PRIVATE";
111
+ readonly PUBLIC: "PUBLIC";
112
+ };
113
+ export type CommentVisibilityType =
114
+ (typeof CommentVisibilityType)[keyof typeof CommentVisibilityType];
115
+ export declare const ResourceStateType: {
116
+ readonly ACTIVE: "ACTIVE";
117
+ readonly RECYCLED: "RECYCLED";
118
+ readonly RECYCLING: "RECYCLING";
119
+ readonly RESTORING: "RESTORING";
120
+ };
121
+ export type ResourceStateType =
122
+ (typeof ResourceStateType)[keyof typeof ResourceStateType];
123
+ export declare const SubscriptionProtocolType: {
124
+ readonly HTTPS: "HTTPS";
125
+ readonly SQS: "SQS";
126
+ };
127
+ export type SubscriptionProtocolType =
128
+ (typeof SubscriptionProtocolType)[keyof typeof SubscriptionProtocolType];
129
+ export declare const SubscriptionType: {
130
+ readonly ALL: "ALL";
131
+ };
132
+ export type SubscriptionType =
133
+ (typeof SubscriptionType)[keyof typeof SubscriptionType];
134
+ export declare const DocumentSourceType: {
135
+ readonly ORIGINAL: "ORIGINAL";
136
+ readonly WITH_COMMENTS: "WITH_COMMENTS";
137
+ };
138
+ export type DocumentSourceType =
139
+ (typeof DocumentSourceType)[keyof typeof DocumentSourceType];
140
+ export declare const DocumentStatusType: {
141
+ readonly ACTIVE: "ACTIVE";
142
+ readonly INITIALIZED: "INITIALIZED";
143
+ };
144
+ export type DocumentStatusType =
145
+ (typeof DocumentStatusType)[keyof typeof DocumentStatusType];
146
+ export declare const DocumentThumbnailType: {
147
+ readonly LARGE: "LARGE";
148
+ readonly SMALL: "SMALL";
149
+ readonly SMALL_HQ: "SMALL_HQ";
150
+ };
151
+ export type DocumentThumbnailType =
152
+ (typeof DocumentThumbnailType)[keyof typeof DocumentThumbnailType];
153
+ export declare const OrderType: {
154
+ readonly ASCENDING: "ASCENDING";
155
+ readonly DESCENDING: "DESCENDING";
156
+ };
157
+ export type OrderType = (typeof OrderType)[keyof typeof OrderType];
158
+ export declare const ResourceSortType: {
159
+ readonly DATE: "DATE";
160
+ readonly NAME: "NAME";
161
+ };
162
+ export type ResourceSortType =
163
+ (typeof ResourceSortType)[keyof typeof ResourceSortType];
164
+ export declare const FolderContentType: {
165
+ readonly ALL: "ALL";
166
+ readonly DOCUMENT: "DOCUMENT";
167
+ readonly FOLDER: "FOLDER";
168
+ };
169
+ export type FolderContentType =
170
+ (typeof FolderContentType)[keyof typeof FolderContentType];
171
+ export declare const RolePermissionType: {
172
+ readonly DIRECT: "DIRECT";
173
+ readonly INHERITED: "INHERITED";
174
+ };
175
+ export type RolePermissionType =
176
+ (typeof RolePermissionType)[keyof typeof RolePermissionType];
177
+ export declare const UserFilterType: {
178
+ readonly ACTIVE_PENDING: "ACTIVE_PENDING";
179
+ readonly ALL: "ALL";
180
+ };
181
+ export type UserFilterType =
182
+ (typeof UserFilterType)[keyof typeof UserFilterType];
183
+ export declare const UserSortType: {
184
+ readonly FULL_NAME: "FULL_NAME";
185
+ readonly STORAGE_LIMIT: "STORAGE_LIMIT";
186
+ readonly STORAGE_USED: "STORAGE_USED";
187
+ readonly USER_NAME: "USER_NAME";
188
+ readonly USER_STATUS: "USER_STATUS";
189
+ };
190
+ export type UserSortType = (typeof UserSortType)[keyof typeof UserSortType];
191
+ export declare const ResourceCollectionType: {
192
+ readonly SHARED_WITH_ME: "SHARED_WITH_ME";
193
+ };
194
+ export type ResourceCollectionType =
195
+ (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
196
+ export declare const ContentCategoryType: {
197
+ readonly AUDIO: "AUDIO";
198
+ readonly DOCUMENT: "DOCUMENT";
199
+ readonly IMAGE: "IMAGE";
200
+ readonly OTHER: "OTHER";
201
+ readonly PDF: "PDF";
202
+ readonly PRESENTATION: "PRESENTATION";
203
+ readonly SOURCE_CODE: "SOURCE_CODE";
204
+ readonly SPREADSHEET: "SPREADSHEET";
205
+ readonly VIDEO: "VIDEO";
206
+ };
207
+ export type ContentCategoryType =
208
+ (typeof ContentCategoryType)[keyof typeof ContentCategoryType];
209
+ export declare const PrincipalRoleType: {
210
+ readonly CONTRIBUTOR: "CONTRIBUTOR";
211
+ readonly COOWNER: "COOWNER";
212
+ readonly OWNER: "OWNER";
213
+ readonly VIEWER: "VIEWER";
214
+ };
215
+ export type PrincipalRoleType =
216
+ (typeof PrincipalRoleType)[keyof typeof PrincipalRoleType];
217
+ export declare const SearchResourceType: {
218
+ readonly COMMENT: "COMMENT";
219
+ readonly DOCUMENT: "DOCUMENT";
220
+ readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
221
+ readonly FOLDER: "FOLDER";
222
+ };
223
+ export type SearchResourceType =
224
+ (typeof SearchResourceType)[keyof typeof SearchResourceType];
225
+ export declare const SearchCollectionType: {
226
+ readonly OWNED: "OWNED";
227
+ readonly SHARED_WITH_ME: "SHARED_WITH_ME";
228
+ };
229
+ export type SearchCollectionType =
230
+ (typeof SearchCollectionType)[keyof typeof SearchCollectionType];
231
+ export declare const LanguageCodeType: {
232
+ readonly AR: "AR";
233
+ readonly BG: "BG";
234
+ readonly BN: "BN";
235
+ readonly CS: "CS";
236
+ readonly DA: "DA";
237
+ readonly DE: "DE";
238
+ readonly DEFAULT: "DEFAULT";
239
+ readonly EL: "EL";
240
+ readonly EN: "EN";
241
+ readonly ES: "ES";
242
+ readonly FA: "FA";
243
+ readonly FI: "FI";
244
+ readonly FR: "FR";
245
+ readonly HI: "HI";
246
+ readonly HU: "HU";
247
+ readonly ID: "ID";
248
+ readonly IT: "IT";
249
+ readonly JA: "JA";
250
+ readonly KO: "KO";
251
+ readonly LT: "LT";
252
+ readonly LV: "LV";
253
+ readonly NL: "NL";
254
+ readonly NO: "NO";
255
+ readonly PT: "PT";
256
+ readonly RO: "RO";
257
+ readonly RU: "RU";
258
+ readonly SV: "SV";
259
+ readonly SW: "SW";
260
+ readonly TH: "TH";
261
+ readonly TR: "TR";
262
+ readonly ZH: "ZH";
263
+ };
264
+ export type LanguageCodeType =
265
+ (typeof LanguageCodeType)[keyof typeof LanguageCodeType];
266
+ export declare const OrderByFieldType: {
267
+ readonly CREATED_TIMESTAMP: "CREATED_TIMESTAMP";
268
+ readonly MODIFIED_TIMESTAMP: "MODIFIED_TIMESTAMP";
269
+ readonly NAME: "NAME";
270
+ readonly RELEVANCE: "RELEVANCE";
271
+ readonly SIZE: "SIZE";
272
+ };
273
+ export type OrderByFieldType =
274
+ (typeof OrderByFieldType)[keyof typeof OrderByFieldType];
275
+ export declare const SortOrder: {
276
+ readonly ASC: "ASC";
277
+ readonly DESC: "DESC";
278
+ };
279
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
280
+ export declare const SearchQueryScopeType: {
281
+ readonly CONTENT: "CONTENT";
282
+ readonly NAME: "NAME";
283
+ };
284
+ export type SearchQueryScopeType =
285
+ (typeof SearchQueryScopeType)[keyof typeof SearchQueryScopeType];
286
+ export declare const ResponseItemType: {
287
+ readonly COMMENT: "COMMENT";
288
+ readonly DOCUMENT: "DOCUMENT";
289
+ readonly DOCUMENT_VERSION: "DOCUMENT_VERSION";
290
+ readonly FOLDER: "FOLDER";
291
+ };
292
+ export type ResponseItemType =
293
+ (typeof ResponseItemType)[keyof typeof ResponseItemType];
294
+ export declare const DocumentVersionStatus: {
295
+ readonly ACTIVE: "ACTIVE";
296
+ };
297
+ export type DocumentVersionStatus =
298
+ (typeof DocumentVersionStatus)[keyof typeof DocumentVersionStatus];
299
+ export declare const BooleanEnumType: {
300
+ readonly FALSE: "FALSE";
301
+ readonly TRUE: "TRUE";
302
+ };
303
+ export type BooleanEnumType =
304
+ (typeof BooleanEnumType)[keyof typeof BooleanEnumType];
@@ -0,0 +1,232 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { WorkDocsServiceException as __BaseException } from "./WorkDocsServiceException";
3
+ export declare class ConcurrentModificationException extends __BaseException {
4
+ readonly name: "ConcurrentModificationException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<
9
+ ConcurrentModificationException,
10
+ __BaseException
11
+ >
12
+ );
13
+ }
14
+ export declare class EntityNotExistsException extends __BaseException {
15
+ readonly name: "EntityNotExistsException";
16
+ readonly $fault: "client";
17
+ Message?: string | undefined;
18
+ EntityIds?: string[] | undefined;
19
+ constructor(
20
+ opts: __ExceptionOptionType<EntityNotExistsException, __BaseException>
21
+ );
22
+ }
23
+ export declare class FailedDependencyException extends __BaseException {
24
+ readonly name: "FailedDependencyException";
25
+ readonly $fault: "client";
26
+ Message?: string | undefined;
27
+ constructor(
28
+ opts: __ExceptionOptionType<FailedDependencyException, __BaseException>
29
+ );
30
+ }
31
+ export declare class ProhibitedStateException extends __BaseException {
32
+ readonly name: "ProhibitedStateException";
33
+ readonly $fault: "client";
34
+ Message?: string | undefined;
35
+ constructor(
36
+ opts: __ExceptionOptionType<ProhibitedStateException, __BaseException>
37
+ );
38
+ }
39
+ export declare class ServiceUnavailableException extends __BaseException {
40
+ readonly name: "ServiceUnavailableException";
41
+ readonly $fault: "server";
42
+ Message?: string | undefined;
43
+ constructor(
44
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
45
+ );
46
+ }
47
+ export declare class UnauthorizedOperationException extends __BaseException {
48
+ readonly name: "UnauthorizedOperationException";
49
+ readonly $fault: "client";
50
+ Message?: string | undefined;
51
+ Code?: string | undefined;
52
+ constructor(
53
+ opts: __ExceptionOptionType<UnauthorizedOperationException, __BaseException>
54
+ );
55
+ }
56
+ export declare class UnauthorizedResourceAccessException extends __BaseException {
57
+ readonly name: "UnauthorizedResourceAccessException";
58
+ readonly $fault: "client";
59
+ Message?: string | undefined;
60
+ constructor(
61
+ opts: __ExceptionOptionType<
62
+ UnauthorizedResourceAccessException,
63
+ __BaseException
64
+ >
65
+ );
66
+ }
67
+ export declare class DocumentLockedForCommentsException extends __BaseException {
68
+ readonly name: "DocumentLockedForCommentsException";
69
+ readonly $fault: "client";
70
+ Message?: string | undefined;
71
+ constructor(
72
+ opts: __ExceptionOptionType<
73
+ DocumentLockedForCommentsException,
74
+ __BaseException
75
+ >
76
+ );
77
+ }
78
+ export declare class InvalidCommentOperationException extends __BaseException {
79
+ readonly name: "InvalidCommentOperationException";
80
+ readonly $fault: "client";
81
+ Message?: string | undefined;
82
+ constructor(
83
+ opts: __ExceptionOptionType<
84
+ InvalidCommentOperationException,
85
+ __BaseException
86
+ >
87
+ );
88
+ }
89
+ export declare class CustomMetadataLimitExceededException extends __BaseException {
90
+ readonly name: "CustomMetadataLimitExceededException";
91
+ readonly $fault: "client";
92
+ Message?: string | undefined;
93
+ constructor(
94
+ opts: __ExceptionOptionType<
95
+ CustomMetadataLimitExceededException,
96
+ __BaseException
97
+ >
98
+ );
99
+ }
100
+ export declare class ConflictingOperationException extends __BaseException {
101
+ readonly name: "ConflictingOperationException";
102
+ readonly $fault: "client";
103
+ Message?: string | undefined;
104
+ constructor(
105
+ opts: __ExceptionOptionType<ConflictingOperationException, __BaseException>
106
+ );
107
+ }
108
+ export declare class EntityAlreadyExistsException extends __BaseException {
109
+ readonly name: "EntityAlreadyExistsException";
110
+ readonly $fault: "client";
111
+ Message?: string | undefined;
112
+ constructor(
113
+ opts: __ExceptionOptionType<EntityAlreadyExistsException, __BaseException>
114
+ );
115
+ }
116
+ export declare class LimitExceededException extends __BaseException {
117
+ readonly name: "LimitExceededException";
118
+ readonly $fault: "client";
119
+ Message?: string | undefined;
120
+ constructor(
121
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
122
+ );
123
+ }
124
+ export declare class TooManyLabelsException extends __BaseException {
125
+ readonly name: "TooManyLabelsException";
126
+ readonly $fault: "client";
127
+ Message?: string | undefined;
128
+ constructor(
129
+ opts: __ExceptionOptionType<TooManyLabelsException, __BaseException>
130
+ );
131
+ }
132
+ export declare class InvalidArgumentException extends __BaseException {
133
+ readonly name: "InvalidArgumentException";
134
+ readonly $fault: "client";
135
+ Message?: string | undefined;
136
+ constructor(
137
+ opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
138
+ );
139
+ }
140
+ export declare class TooManySubscriptionsException extends __BaseException {
141
+ readonly name: "TooManySubscriptionsException";
142
+ readonly $fault: "client";
143
+ Message?: string | undefined;
144
+ constructor(
145
+ opts: __ExceptionOptionType<TooManySubscriptionsException, __BaseException>
146
+ );
147
+ }
148
+ export declare class InvalidOperationException extends __BaseException {
149
+ readonly name: "InvalidOperationException";
150
+ readonly $fault: "client";
151
+ Message?: string | undefined;
152
+ constructor(
153
+ opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
154
+ );
155
+ }
156
+ export declare class InvalidPasswordException extends __BaseException {
157
+ readonly name: "InvalidPasswordException";
158
+ readonly $fault: "client";
159
+ Message?: string | undefined;
160
+ constructor(
161
+ opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
162
+ );
163
+ }
164
+ export declare class RequestedEntityTooLargeException extends __BaseException {
165
+ readonly name: "RequestedEntityTooLargeException";
166
+ readonly $fault: "client";
167
+ Message?: string | undefined;
168
+ constructor(
169
+ opts: __ExceptionOptionType<
170
+ RequestedEntityTooLargeException,
171
+ __BaseException
172
+ >
173
+ );
174
+ }
175
+ export declare class DraftUploadOutOfSyncException extends __BaseException {
176
+ readonly name: "DraftUploadOutOfSyncException";
177
+ readonly $fault: "client";
178
+ Message?: string | undefined;
179
+ constructor(
180
+ opts: __ExceptionOptionType<DraftUploadOutOfSyncException, __BaseException>
181
+ );
182
+ }
183
+ export declare class ResourceAlreadyCheckedOutException extends __BaseException {
184
+ readonly name: "ResourceAlreadyCheckedOutException";
185
+ readonly $fault: "client";
186
+ Message?: string | undefined;
187
+ constructor(
188
+ opts: __ExceptionOptionType<
189
+ ResourceAlreadyCheckedOutException,
190
+ __BaseException
191
+ >
192
+ );
193
+ }
194
+ export declare class StorageLimitExceededException extends __BaseException {
195
+ readonly name: "StorageLimitExceededException";
196
+ readonly $fault: "client";
197
+ Message?: string | undefined;
198
+ constructor(
199
+ opts: __ExceptionOptionType<StorageLimitExceededException, __BaseException>
200
+ );
201
+ }
202
+ export declare class StorageLimitWillExceedException extends __BaseException {
203
+ readonly name: "StorageLimitWillExceedException";
204
+ readonly $fault: "client";
205
+ Message?: string | undefined;
206
+ constructor(
207
+ opts: __ExceptionOptionType<
208
+ StorageLimitWillExceedException,
209
+ __BaseException
210
+ >
211
+ );
212
+ }
213
+ export declare class DeactivatingLastSystemUserException extends __BaseException {
214
+ readonly name: "DeactivatingLastSystemUserException";
215
+ readonly $fault: "client";
216
+ Message?: string | undefined;
217
+ Code?: string | undefined;
218
+ constructor(
219
+ opts: __ExceptionOptionType<
220
+ DeactivatingLastSystemUserException,
221
+ __BaseException
222
+ >
223
+ );
224
+ }
225
+ export declare class IllegalUserStateException extends __BaseException {
226
+ readonly name: "IllegalUserStateException";
227
+ readonly $fault: "client";
228
+ Message?: string | undefined;
229
+ constructor(
230
+ opts: __ExceptionOptionType<IllegalUserStateException, __BaseException>
231
+ );
232
+ }