@aws-sdk/client-workdocs 3.183.0 → 3.186.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/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/WorkDocs.js +173 -166
- package/dist-es/WorkDocsClient.js +28 -22
- package/dist-es/commands/AbortDocumentVersionUploadCommand.js +29 -22
- package/dist-es/commands/ActivateUserCommand.js +28 -21
- package/dist-es/commands/AddResourcePermissionsCommand.js +28 -21
- package/dist-es/commands/CreateCommentCommand.js +28 -21
- package/dist-es/commands/CreateCustomMetadataCommand.js +28 -21
- package/dist-es/commands/CreateFolderCommand.js +28 -21
- package/dist-es/commands/CreateLabelsCommand.js +28 -21
- package/dist-es/commands/CreateNotificationSubscriptionCommand.js +28 -21
- package/dist-es/commands/CreateUserCommand.js +28 -21
- package/dist-es/commands/DeactivateUserCommand.js +29 -22
- package/dist-es/commands/DeleteCommentCommand.js +29 -22
- package/dist-es/commands/DeleteCustomMetadataCommand.js +28 -21
- package/dist-es/commands/DeleteDocumentCommand.js +29 -22
- package/dist-es/commands/DeleteFolderCommand.js +29 -22
- package/dist-es/commands/DeleteFolderContentsCommand.js +29 -22
- package/dist-es/commands/DeleteLabelsCommand.js +28 -21
- package/dist-es/commands/DeleteNotificationSubscriptionCommand.js +29 -22
- package/dist-es/commands/DeleteUserCommand.js +29 -22
- package/dist-es/commands/DescribeActivitiesCommand.js +28 -21
- package/dist-es/commands/DescribeCommentsCommand.js +28 -21
- package/dist-es/commands/DescribeDocumentVersionsCommand.js +28 -21
- package/dist-es/commands/DescribeFolderContentsCommand.js +28 -21
- package/dist-es/commands/DescribeGroupsCommand.js +28 -21
- package/dist-es/commands/DescribeNotificationSubscriptionsCommand.js +28 -21
- package/dist-es/commands/DescribeResourcePermissionsCommand.js +28 -21
- package/dist-es/commands/DescribeRootFoldersCommand.js +28 -21
- package/dist-es/commands/DescribeUsersCommand.js +28 -21
- package/dist-es/commands/GetCurrentUserCommand.js +28 -21
- package/dist-es/commands/GetDocumentCommand.js +28 -21
- package/dist-es/commands/GetDocumentPathCommand.js +28 -21
- package/dist-es/commands/GetDocumentVersionCommand.js +28 -21
- package/dist-es/commands/GetFolderCommand.js +28 -21
- package/dist-es/commands/GetFolderPathCommand.js +28 -21
- package/dist-es/commands/GetResourcesCommand.js +28 -21
- package/dist-es/commands/InitiateDocumentVersionUploadCommand.js +28 -21
- package/dist-es/commands/RemoveAllResourcePermissionsCommand.js +29 -22
- package/dist-es/commands/RemoveResourcePermissionCommand.js +29 -22
- package/dist-es/commands/UpdateDocumentCommand.js +29 -22
- package/dist-es/commands/UpdateDocumentVersionCommand.js +29 -22
- package/dist-es/commands/UpdateFolderCommand.js +29 -22
- package/dist-es/commands/UpdateUserCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/WorkDocsServiceException.js +10 -5
- package/dist-es/models/models_0.js +401 -642
- package/dist-es/pagination/DescribeDocumentVersionsPaginator.js +68 -25
- package/dist-es/pagination/DescribeFolderContentsPaginator.js +68 -25
- package/dist-es/pagination/DescribeUsersPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +4635 -3321
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,85 +1,86 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { WorkDocsServiceException as __BaseException } from "./WorkDocsServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
this.EntityIds = opts.EntityIds;
|
|
4
|
+
var EntityNotExistsException = (function (_super) {
|
|
5
|
+
__extends(EntityNotExistsException, _super);
|
|
6
|
+
function EntityNotExistsException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "EntityNotExistsException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "EntityNotExistsException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, EntityNotExistsException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
_this.EntityIds = opts.EntityIds;
|
|
13
|
+
return _this;
|
|
15
14
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
15
|
+
return EntityNotExistsException;
|
|
16
|
+
}(__BaseException));
|
|
17
|
+
export { EntityNotExistsException };
|
|
18
|
+
var FailedDependencyException = (function (_super) {
|
|
19
|
+
__extends(FailedDependencyException, _super);
|
|
20
|
+
function FailedDependencyException(opts) {
|
|
21
|
+
var _this = _super.call(this, __assign({ name: "FailedDependencyException", $fault: "client" }, opts)) || this;
|
|
22
|
+
_this.name = "FailedDependencyException";
|
|
23
|
+
_this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(_this, FailedDependencyException.prototype);
|
|
25
|
+
_this.Message = opts.Message;
|
|
26
|
+
return _this;
|
|
28
27
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
28
|
+
return FailedDependencyException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { FailedDependencyException };
|
|
31
|
+
var ProhibitedStateException = (function (_super) {
|
|
32
|
+
__extends(ProhibitedStateException, _super);
|
|
33
|
+
function ProhibitedStateException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "ProhibitedStateException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "ProhibitedStateException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, ProhibitedStateException.prototype);
|
|
38
|
+
_this.Message = opts.Message;
|
|
39
|
+
return _this;
|
|
41
40
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
41
|
+
return ProhibitedStateException;
|
|
42
|
+
}(__BaseException));
|
|
43
|
+
export { ProhibitedStateException };
|
|
44
|
+
var ServiceUnavailableException = (function (_super) {
|
|
45
|
+
__extends(ServiceUnavailableException, _super);
|
|
46
|
+
function ServiceUnavailableException(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
48
|
+
_this.name = "ServiceUnavailableException";
|
|
49
|
+
_this.$fault = "server";
|
|
50
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
51
|
+
_this.Message = opts.Message;
|
|
52
|
+
return _this;
|
|
54
53
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
54
|
+
return ServiceUnavailableException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { ServiceUnavailableException };
|
|
57
|
+
var UnauthorizedOperationException = (function (_super) {
|
|
58
|
+
__extends(UnauthorizedOperationException, _super);
|
|
59
|
+
function UnauthorizedOperationException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedOperationException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "UnauthorizedOperationException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(_this, UnauthorizedOperationException.prototype);
|
|
64
|
+
_this.Message = opts.Message;
|
|
65
|
+
_this.Code = opts.Code;
|
|
66
|
+
return _this;
|
|
68
67
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
68
|
+
return UnauthorizedOperationException;
|
|
69
|
+
}(__BaseException));
|
|
70
|
+
export { UnauthorizedOperationException };
|
|
71
|
+
var UnauthorizedResourceAccessException = (function (_super) {
|
|
72
|
+
__extends(UnauthorizedResourceAccessException, _super);
|
|
73
|
+
function UnauthorizedResourceAccessException(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedResourceAccessException", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "UnauthorizedResourceAccessException";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, UnauthorizedResourceAccessException.prototype);
|
|
78
|
+
_this.Message = opts.Message;
|
|
79
|
+
return _this;
|
|
81
80
|
}
|
|
82
|
-
|
|
81
|
+
return UnauthorizedResourceAccessException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { UnauthorizedResourceAccessException };
|
|
83
84
|
export var LocaleType;
|
|
84
85
|
(function (LocaleType) {
|
|
85
86
|
LocaleType["DE"] = "de";
|
|
@@ -185,58 +186,58 @@ export var CommentVisibilityType;
|
|
|
185
186
|
CommentVisibilityType["PRIVATE"] = "PRIVATE";
|
|
186
187
|
CommentVisibilityType["PUBLIC"] = "PUBLIC";
|
|
187
188
|
})(CommentVisibilityType || (CommentVisibilityType = {}));
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
Object.setPrototypeOf(this, DocumentLockedForCommentsException.prototype);
|
|
198
|
-
this.Message = opts.Message;
|
|
189
|
+
var DocumentLockedForCommentsException = (function (_super) {
|
|
190
|
+
__extends(DocumentLockedForCommentsException, _super);
|
|
191
|
+
function DocumentLockedForCommentsException(opts) {
|
|
192
|
+
var _this = _super.call(this, __assign({ name: "DocumentLockedForCommentsException", $fault: "client" }, opts)) || this;
|
|
193
|
+
_this.name = "DocumentLockedForCommentsException";
|
|
194
|
+
_this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(_this, DocumentLockedForCommentsException.prototype);
|
|
196
|
+
_this.Message = opts.Message;
|
|
197
|
+
return _this;
|
|
199
198
|
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
199
|
+
return DocumentLockedForCommentsException;
|
|
200
|
+
}(__BaseException));
|
|
201
|
+
export { DocumentLockedForCommentsException };
|
|
202
|
+
var InvalidCommentOperationException = (function (_super) {
|
|
203
|
+
__extends(InvalidCommentOperationException, _super);
|
|
204
|
+
function InvalidCommentOperationException(opts) {
|
|
205
|
+
var _this = _super.call(this, __assign({ name: "InvalidCommentOperationException", $fault: "client" }, opts)) || this;
|
|
206
|
+
_this.name = "InvalidCommentOperationException";
|
|
207
|
+
_this.$fault = "client";
|
|
208
|
+
Object.setPrototypeOf(_this, InvalidCommentOperationException.prototype);
|
|
209
|
+
_this.Message = opts.Message;
|
|
210
|
+
return _this;
|
|
212
211
|
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
212
|
+
return InvalidCommentOperationException;
|
|
213
|
+
}(__BaseException));
|
|
214
|
+
export { InvalidCommentOperationException };
|
|
215
|
+
var CustomMetadataLimitExceededException = (function (_super) {
|
|
216
|
+
__extends(CustomMetadataLimitExceededException, _super);
|
|
217
|
+
function CustomMetadataLimitExceededException(opts) {
|
|
218
|
+
var _this = _super.call(this, __assign({ name: "CustomMetadataLimitExceededException", $fault: "client" }, opts)) || this;
|
|
219
|
+
_this.name = "CustomMetadataLimitExceededException";
|
|
220
|
+
_this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(_this, CustomMetadataLimitExceededException.prototype);
|
|
222
|
+
_this.Message = opts.Message;
|
|
223
|
+
return _this;
|
|
225
224
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
225
|
+
return CustomMetadataLimitExceededException;
|
|
226
|
+
}(__BaseException));
|
|
227
|
+
export { CustomMetadataLimitExceededException };
|
|
228
|
+
var ConflictingOperationException = (function (_super) {
|
|
229
|
+
__extends(ConflictingOperationException, _super);
|
|
230
|
+
function ConflictingOperationException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "ConflictingOperationException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "ConflictingOperationException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, ConflictingOperationException.prototype);
|
|
235
|
+
_this.Message = opts.Message;
|
|
236
|
+
return _this;
|
|
238
237
|
}
|
|
239
|
-
|
|
238
|
+
return ConflictingOperationException;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { ConflictingOperationException };
|
|
240
241
|
export var ResourceStateType;
|
|
241
242
|
(function (ResourceStateType) {
|
|
242
243
|
ResourceStateType["ACTIVE"] = "ACTIVE";
|
|
@@ -244,45 +245,45 @@ export var ResourceStateType;
|
|
|
244
245
|
ResourceStateType["RECYCLING"] = "RECYCLING";
|
|
245
246
|
ResourceStateType["RESTORING"] = "RESTORING";
|
|
246
247
|
})(ResourceStateType || (ResourceStateType = {}));
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
Object.setPrototypeOf(this, EntityAlreadyExistsException.prototype);
|
|
257
|
-
this.Message = opts.Message;
|
|
248
|
+
var EntityAlreadyExistsException = (function (_super) {
|
|
249
|
+
__extends(EntityAlreadyExistsException, _super);
|
|
250
|
+
function EntityAlreadyExistsException(opts) {
|
|
251
|
+
var _this = _super.call(this, __assign({ name: "EntityAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
252
|
+
_this.name = "EntityAlreadyExistsException";
|
|
253
|
+
_this.$fault = "client";
|
|
254
|
+
Object.setPrototypeOf(_this, EntityAlreadyExistsException.prototype);
|
|
255
|
+
_this.Message = opts.Message;
|
|
256
|
+
return _this;
|
|
258
257
|
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
258
|
+
return EntityAlreadyExistsException;
|
|
259
|
+
}(__BaseException));
|
|
260
|
+
export { EntityAlreadyExistsException };
|
|
261
|
+
var LimitExceededException = (function (_super) {
|
|
262
|
+
__extends(LimitExceededException, _super);
|
|
263
|
+
function LimitExceededException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "LimitExceededException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
268
|
+
_this.Message = opts.Message;
|
|
269
|
+
return _this;
|
|
271
270
|
}
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
271
|
+
return LimitExceededException;
|
|
272
|
+
}(__BaseException));
|
|
273
|
+
export { LimitExceededException };
|
|
274
|
+
var TooManyLabelsException = (function (_super) {
|
|
275
|
+
__extends(TooManyLabelsException, _super);
|
|
276
|
+
function TooManyLabelsException(opts) {
|
|
277
|
+
var _this = _super.call(this, __assign({ name: "TooManyLabelsException", $fault: "client" }, opts)) || this;
|
|
278
|
+
_this.name = "TooManyLabelsException";
|
|
279
|
+
_this.$fault = "client";
|
|
280
|
+
Object.setPrototypeOf(_this, TooManyLabelsException.prototype);
|
|
281
|
+
_this.Message = opts.Message;
|
|
282
|
+
return _this;
|
|
284
283
|
}
|
|
285
|
-
|
|
284
|
+
return TooManyLabelsException;
|
|
285
|
+
}(__BaseException));
|
|
286
|
+
export { TooManyLabelsException };
|
|
286
287
|
export var SubscriptionProtocolType;
|
|
287
288
|
(function (SubscriptionProtocolType) {
|
|
288
289
|
SubscriptionProtocolType["HTTPS"] = "HTTPS";
|
|
@@ -291,45 +292,45 @@ export var SubscriptionType;
|
|
|
291
292
|
(function (SubscriptionType) {
|
|
292
293
|
SubscriptionType["ALL"] = "ALL";
|
|
293
294
|
})(SubscriptionType || (SubscriptionType = {}));
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
Object.setPrototypeOf(this, TooManySubscriptionsException.prototype);
|
|
304
|
-
this.Message = opts.Message;
|
|
295
|
+
var TooManySubscriptionsException = (function (_super) {
|
|
296
|
+
__extends(TooManySubscriptionsException, _super);
|
|
297
|
+
function TooManySubscriptionsException(opts) {
|
|
298
|
+
var _this = _super.call(this, __assign({ name: "TooManySubscriptionsException", $fault: "client" }, opts)) || this;
|
|
299
|
+
_this.name = "TooManySubscriptionsException";
|
|
300
|
+
_this.$fault = "client";
|
|
301
|
+
Object.setPrototypeOf(_this, TooManySubscriptionsException.prototype);
|
|
302
|
+
_this.Message = opts.Message;
|
|
303
|
+
return _this;
|
|
305
304
|
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
305
|
+
return TooManySubscriptionsException;
|
|
306
|
+
}(__BaseException));
|
|
307
|
+
export { TooManySubscriptionsException };
|
|
308
|
+
var ConcurrentModificationException = (function (_super) {
|
|
309
|
+
__extends(ConcurrentModificationException, _super);
|
|
310
|
+
function ConcurrentModificationException(opts) {
|
|
311
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
312
|
+
_this.name = "ConcurrentModificationException";
|
|
313
|
+
_this.$fault = "client";
|
|
314
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
315
|
+
_this.Message = opts.Message;
|
|
316
|
+
return _this;
|
|
318
317
|
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
318
|
+
return ConcurrentModificationException;
|
|
319
|
+
}(__BaseException));
|
|
320
|
+
export { ConcurrentModificationException };
|
|
321
|
+
var InvalidArgumentException = (function (_super) {
|
|
322
|
+
__extends(InvalidArgumentException, _super);
|
|
323
|
+
function InvalidArgumentException(opts) {
|
|
324
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
|
|
325
|
+
_this.name = "InvalidArgumentException";
|
|
326
|
+
_this.$fault = "client";
|
|
327
|
+
Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
|
|
328
|
+
_this.Message = opts.Message;
|
|
329
|
+
return _this;
|
|
331
330
|
}
|
|
332
|
-
|
|
331
|
+
return InvalidArgumentException;
|
|
332
|
+
}(__BaseException));
|
|
333
|
+
export { InvalidArgumentException };
|
|
333
334
|
export var DocumentSourceType;
|
|
334
335
|
(function (DocumentSourceType) {
|
|
335
336
|
DocumentSourceType["ORIGINAL"] = "ORIGINAL";
|
|
@@ -380,473 +381,231 @@ export var UserSortType;
|
|
|
380
381
|
UserSortType["USER_NAME"] = "USER_NAME";
|
|
381
382
|
UserSortType["USER_STATUS"] = "USER_STATUS";
|
|
382
383
|
})(UserSortType || (UserSortType = {}));
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
Object.setPrototypeOf(this, RequestedEntityTooLargeException.prototype);
|
|
393
|
-
this.Message = opts.Message;
|
|
384
|
+
var RequestedEntityTooLargeException = (function (_super) {
|
|
385
|
+
__extends(RequestedEntityTooLargeException, _super);
|
|
386
|
+
function RequestedEntityTooLargeException(opts) {
|
|
387
|
+
var _this = _super.call(this, __assign({ name: "RequestedEntityTooLargeException", $fault: "client" }, opts)) || this;
|
|
388
|
+
_this.name = "RequestedEntityTooLargeException";
|
|
389
|
+
_this.$fault = "client";
|
|
390
|
+
Object.setPrototypeOf(_this, RequestedEntityTooLargeException.prototype);
|
|
391
|
+
_this.Message = opts.Message;
|
|
392
|
+
return _this;
|
|
394
393
|
}
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
394
|
+
return RequestedEntityTooLargeException;
|
|
395
|
+
}(__BaseException));
|
|
396
|
+
export { RequestedEntityTooLargeException };
|
|
397
|
+
var InvalidPasswordException = (function (_super) {
|
|
398
|
+
__extends(InvalidPasswordException, _super);
|
|
399
|
+
function InvalidPasswordException(opts) {
|
|
400
|
+
var _this = _super.call(this, __assign({ name: "InvalidPasswordException", $fault: "client" }, opts)) || this;
|
|
401
|
+
_this.name = "InvalidPasswordException";
|
|
402
|
+
_this.$fault = "client";
|
|
403
|
+
Object.setPrototypeOf(_this, InvalidPasswordException.prototype);
|
|
404
|
+
_this.Message = opts.Message;
|
|
405
|
+
return _this;
|
|
407
406
|
}
|
|
408
|
-
|
|
407
|
+
return InvalidPasswordException;
|
|
408
|
+
}(__BaseException));
|
|
409
|
+
export { InvalidPasswordException };
|
|
409
410
|
export var ResourceCollectionType;
|
|
410
411
|
(function (ResourceCollectionType) {
|
|
411
412
|
ResourceCollectionType["SHARED_WITH_ME"] = "SHARED_WITH_ME";
|
|
412
413
|
})(ResourceCollectionType || (ResourceCollectionType = {}));
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
Object.setPrototypeOf(this, DraftUploadOutOfSyncException.prototype);
|
|
423
|
-
this.Message = opts.Message;
|
|
414
|
+
var DraftUploadOutOfSyncException = (function (_super) {
|
|
415
|
+
__extends(DraftUploadOutOfSyncException, _super);
|
|
416
|
+
function DraftUploadOutOfSyncException(opts) {
|
|
417
|
+
var _this = _super.call(this, __assign({ name: "DraftUploadOutOfSyncException", $fault: "client" }, opts)) || this;
|
|
418
|
+
_this.name = "DraftUploadOutOfSyncException";
|
|
419
|
+
_this.$fault = "client";
|
|
420
|
+
Object.setPrototypeOf(_this, DraftUploadOutOfSyncException.prototype);
|
|
421
|
+
_this.Message = opts.Message;
|
|
422
|
+
return _this;
|
|
424
423
|
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
424
|
+
return DraftUploadOutOfSyncException;
|
|
425
|
+
}(__BaseException));
|
|
426
|
+
export { DraftUploadOutOfSyncException };
|
|
427
|
+
var ResourceAlreadyCheckedOutException = (function (_super) {
|
|
428
|
+
__extends(ResourceAlreadyCheckedOutException, _super);
|
|
429
|
+
function ResourceAlreadyCheckedOutException(opts) {
|
|
430
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyCheckedOutException", $fault: "client" }, opts)) || this;
|
|
431
|
+
_this.name = "ResourceAlreadyCheckedOutException";
|
|
432
|
+
_this.$fault = "client";
|
|
433
|
+
Object.setPrototypeOf(_this, ResourceAlreadyCheckedOutException.prototype);
|
|
434
|
+
_this.Message = opts.Message;
|
|
435
|
+
return _this;
|
|
437
436
|
}
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
437
|
+
return ResourceAlreadyCheckedOutException;
|
|
438
|
+
}(__BaseException));
|
|
439
|
+
export { ResourceAlreadyCheckedOutException };
|
|
440
|
+
var StorageLimitExceededException = (function (_super) {
|
|
441
|
+
__extends(StorageLimitExceededException, _super);
|
|
442
|
+
function StorageLimitExceededException(opts) {
|
|
443
|
+
var _this = _super.call(this, __assign({ name: "StorageLimitExceededException", $fault: "client" }, opts)) || this;
|
|
444
|
+
_this.name = "StorageLimitExceededException";
|
|
445
|
+
_this.$fault = "client";
|
|
446
|
+
Object.setPrototypeOf(_this, StorageLimitExceededException.prototype);
|
|
447
|
+
_this.Message = opts.Message;
|
|
448
|
+
return _this;
|
|
450
449
|
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
450
|
+
return StorageLimitExceededException;
|
|
451
|
+
}(__BaseException));
|
|
452
|
+
export { StorageLimitExceededException };
|
|
453
|
+
var StorageLimitWillExceedException = (function (_super) {
|
|
454
|
+
__extends(StorageLimitWillExceedException, _super);
|
|
455
|
+
function StorageLimitWillExceedException(opts) {
|
|
456
|
+
var _this = _super.call(this, __assign({ name: "StorageLimitWillExceedException", $fault: "client" }, opts)) || this;
|
|
457
|
+
_this.name = "StorageLimitWillExceedException";
|
|
458
|
+
_this.$fault = "client";
|
|
459
|
+
Object.setPrototypeOf(_this, StorageLimitWillExceedException.prototype);
|
|
460
|
+
_this.Message = opts.Message;
|
|
461
|
+
return _this;
|
|
463
462
|
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
463
|
+
return StorageLimitWillExceedException;
|
|
464
|
+
}(__BaseException));
|
|
465
|
+
export { StorageLimitWillExceedException };
|
|
466
|
+
var InvalidOperationException = (function (_super) {
|
|
467
|
+
__extends(InvalidOperationException, _super);
|
|
468
|
+
function InvalidOperationException(opts) {
|
|
469
|
+
var _this = _super.call(this, __assign({ name: "InvalidOperationException", $fault: "client" }, opts)) || this;
|
|
470
|
+
_this.name = "InvalidOperationException";
|
|
471
|
+
_this.$fault = "client";
|
|
472
|
+
Object.setPrototypeOf(_this, InvalidOperationException.prototype);
|
|
473
|
+
_this.Message = opts.Message;
|
|
474
|
+
return _this;
|
|
476
475
|
}
|
|
477
|
-
|
|
476
|
+
return InvalidOperationException;
|
|
477
|
+
}(__BaseException));
|
|
478
|
+
export { InvalidOperationException };
|
|
478
479
|
export var DocumentVersionStatus;
|
|
479
480
|
(function (DocumentVersionStatus) {
|
|
480
481
|
DocumentVersionStatus["ACTIVE"] = "ACTIVE";
|
|
481
482
|
})(DocumentVersionStatus || (DocumentVersionStatus = {}));
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
this.Message = opts.Message;
|
|
493
|
-
this.Code = opts.Code;
|
|
483
|
+
var DeactivatingLastSystemUserException = (function (_super) {
|
|
484
|
+
__extends(DeactivatingLastSystemUserException, _super);
|
|
485
|
+
function DeactivatingLastSystemUserException(opts) {
|
|
486
|
+
var _this = _super.call(this, __assign({ name: "DeactivatingLastSystemUserException", $fault: "client" }, opts)) || this;
|
|
487
|
+
_this.name = "DeactivatingLastSystemUserException";
|
|
488
|
+
_this.$fault = "client";
|
|
489
|
+
Object.setPrototypeOf(_this, DeactivatingLastSystemUserException.prototype);
|
|
490
|
+
_this.Message = opts.Message;
|
|
491
|
+
_this.Code = opts.Code;
|
|
492
|
+
return _this;
|
|
494
493
|
}
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
494
|
+
return DeactivatingLastSystemUserException;
|
|
495
|
+
}(__BaseException));
|
|
496
|
+
export { DeactivatingLastSystemUserException };
|
|
497
|
+
var IllegalUserStateException = (function (_super) {
|
|
498
|
+
__extends(IllegalUserStateException, _super);
|
|
499
|
+
function IllegalUserStateException(opts) {
|
|
500
|
+
var _this = _super.call(this, __assign({ name: "IllegalUserStateException", $fault: "client" }, opts)) || this;
|
|
501
|
+
_this.name = "IllegalUserStateException";
|
|
502
|
+
_this.$fault = "client";
|
|
503
|
+
Object.setPrototypeOf(_this, IllegalUserStateException.prototype);
|
|
504
|
+
_this.Message = opts.Message;
|
|
505
|
+
return _this;
|
|
507
506
|
}
|
|
508
|
-
|
|
507
|
+
return IllegalUserStateException;
|
|
508
|
+
}(__BaseException));
|
|
509
|
+
export { IllegalUserStateException };
|
|
509
510
|
export var BooleanEnumType;
|
|
510
511
|
(function (BooleanEnumType) {
|
|
511
512
|
BooleanEnumType["FALSE"] = "FALSE";
|
|
512
513
|
BooleanEnumType["TRUE"] = "TRUE";
|
|
513
514
|
})(BooleanEnumType || (BooleanEnumType = {}));
|
|
514
|
-
export
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
});
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
});
|
|
522
|
-
export
|
|
523
|
-
|
|
524
|
-
});
|
|
525
|
-
export
|
|
526
|
-
|
|
527
|
-
});
|
|
528
|
-
export
|
|
529
|
-
|
|
530
|
-
});
|
|
531
|
-
export
|
|
532
|
-
|
|
533
|
-
});
|
|
534
|
-
export
|
|
535
|
-
|
|
536
|
-
});
|
|
537
|
-
export
|
|
538
|
-
|
|
539
|
-
});
|
|
540
|
-
export
|
|
541
|
-
|
|
542
|
-
});
|
|
543
|
-
export
|
|
544
|
-
|
|
545
|
-
});
|
|
546
|
-
export
|
|
547
|
-
|
|
548
|
-
});
|
|
549
|
-
export
|
|
550
|
-
|
|
551
|
-
});
|
|
552
|
-
export
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
});
|
|
556
|
-
export
|
|
557
|
-
|
|
558
|
-
});
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
})
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
})
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
});
|
|
574
|
-
export
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
});
|
|
579
|
-
export
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
});
|
|
583
|
-
export
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
});
|
|
587
|
-
export
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
});
|
|
591
|
-
export
|
|
592
|
-
|
|
593
|
-
});
|
|
594
|
-
export
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
});
|
|
598
|
-
export
|
|
599
|
-
|
|
600
|
-
});
|
|
601
|
-
export
|
|
602
|
-
|
|
603
|
-
});
|
|
604
|
-
export
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
});
|
|
608
|
-
export
|
|
609
|
-
|
|
610
|
-
});
|
|
611
|
-
export const CreateNotificationSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
612
|
-
...obj,
|
|
613
|
-
});
|
|
614
|
-
export const SubscriptionFilterSensitiveLog = (obj) => ({
|
|
615
|
-
...obj,
|
|
616
|
-
});
|
|
617
|
-
export const CreateNotificationSubscriptionResponseFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
});
|
|
620
|
-
export const CreateUserRequestFilterSensitiveLog = (obj) => ({
|
|
621
|
-
...obj,
|
|
622
|
-
...(obj.Password && { Password: SENSITIVE_STRING }),
|
|
623
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
624
|
-
});
|
|
625
|
-
export const CreateUserResponseFilterSensitiveLog = (obj) => ({
|
|
626
|
-
...obj,
|
|
627
|
-
});
|
|
628
|
-
export const DeactivateUserRequestFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
631
|
-
});
|
|
632
|
-
export const DeleteCommentRequestFilterSensitiveLog = (obj) => ({
|
|
633
|
-
...obj,
|
|
634
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
635
|
-
});
|
|
636
|
-
export const DeleteCustomMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
637
|
-
...obj,
|
|
638
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
639
|
-
});
|
|
640
|
-
export const DeleteCustomMetadataResponseFilterSensitiveLog = (obj) => ({
|
|
641
|
-
...obj,
|
|
642
|
-
});
|
|
643
|
-
export const DeleteDocumentRequestFilterSensitiveLog = (obj) => ({
|
|
644
|
-
...obj,
|
|
645
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
646
|
-
});
|
|
647
|
-
export const DeleteFolderRequestFilterSensitiveLog = (obj) => ({
|
|
648
|
-
...obj,
|
|
649
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
650
|
-
});
|
|
651
|
-
export const DeleteFolderContentsRequestFilterSensitiveLog = (obj) => ({
|
|
652
|
-
...obj,
|
|
653
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
654
|
-
});
|
|
655
|
-
export const DeleteLabelsRequestFilterSensitiveLog = (obj) => ({
|
|
656
|
-
...obj,
|
|
657
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
658
|
-
});
|
|
659
|
-
export const DeleteLabelsResponseFilterSensitiveLog = (obj) => ({
|
|
660
|
-
...obj,
|
|
661
|
-
});
|
|
662
|
-
export const DeleteNotificationSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
663
|
-
...obj,
|
|
664
|
-
});
|
|
665
|
-
export const DeleteUserRequestFilterSensitiveLog = (obj) => ({
|
|
666
|
-
...obj,
|
|
667
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
668
|
-
});
|
|
669
|
-
export const DescribeActivitiesRequestFilterSensitiveLog = (obj) => ({
|
|
670
|
-
...obj,
|
|
671
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
672
|
-
});
|
|
673
|
-
export const DescribeActivitiesResponseFilterSensitiveLog = (obj) => ({
|
|
674
|
-
...obj,
|
|
675
|
-
});
|
|
676
|
-
export const DescribeCommentsRequestFilterSensitiveLog = (obj) => ({
|
|
677
|
-
...obj,
|
|
678
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
679
|
-
});
|
|
680
|
-
export const DescribeCommentsResponseFilterSensitiveLog = (obj) => ({
|
|
681
|
-
...obj,
|
|
682
|
-
...(obj.Comments && { Comments: obj.Comments.map((item) => CommentFilterSensitiveLog(item)) }),
|
|
683
|
-
});
|
|
684
|
-
export const DescribeDocumentVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
685
|
-
...obj,
|
|
686
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
687
|
-
});
|
|
688
|
-
export const DocumentVersionMetadataFilterSensitiveLog = (obj) => ({
|
|
689
|
-
...obj,
|
|
690
|
-
...(obj.Thumbnail && { Thumbnail: SENSITIVE_STRING }),
|
|
691
|
-
...(obj.Source && { Source: SENSITIVE_STRING }),
|
|
692
|
-
});
|
|
693
|
-
export const DescribeDocumentVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
694
|
-
...obj,
|
|
695
|
-
...(obj.DocumentVersions && {
|
|
696
|
-
DocumentVersions: obj.DocumentVersions.map((item) => DocumentVersionMetadataFilterSensitiveLog(item)),
|
|
697
|
-
}),
|
|
698
|
-
});
|
|
699
|
-
export const DescribeFolderContentsRequestFilterSensitiveLog = (obj) => ({
|
|
700
|
-
...obj,
|
|
701
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
702
|
-
});
|
|
703
|
-
export const DocumentMetadataFilterSensitiveLog = (obj) => ({
|
|
704
|
-
...obj,
|
|
705
|
-
...(obj.LatestVersionMetadata && {
|
|
706
|
-
LatestVersionMetadata: DocumentVersionMetadataFilterSensitiveLog(obj.LatestVersionMetadata),
|
|
707
|
-
}),
|
|
708
|
-
});
|
|
709
|
-
export const DescribeFolderContentsResponseFilterSensitiveLog = (obj) => ({
|
|
710
|
-
...obj,
|
|
711
|
-
...(obj.Documents && { Documents: obj.Documents.map((item) => DocumentMetadataFilterSensitiveLog(item)) }),
|
|
712
|
-
});
|
|
713
|
-
export const DescribeGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
714
|
-
...obj,
|
|
715
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
716
|
-
...(obj.SearchQuery && { SearchQuery: SENSITIVE_STRING }),
|
|
717
|
-
});
|
|
718
|
-
export const DescribeGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
719
|
-
...obj,
|
|
720
|
-
});
|
|
721
|
-
export const DescribeNotificationSubscriptionsRequestFilterSensitiveLog = (obj) => ({
|
|
722
|
-
...obj,
|
|
723
|
-
});
|
|
724
|
-
export const DescribeNotificationSubscriptionsResponseFilterSensitiveLog = (obj) => ({
|
|
725
|
-
...obj,
|
|
726
|
-
});
|
|
727
|
-
export const DescribeResourcePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
728
|
-
...obj,
|
|
729
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
730
|
-
});
|
|
731
|
-
export const PermissionInfoFilterSensitiveLog = (obj) => ({
|
|
732
|
-
...obj,
|
|
733
|
-
});
|
|
734
|
-
export const PrincipalFilterSensitiveLog = (obj) => ({
|
|
735
|
-
...obj,
|
|
736
|
-
});
|
|
737
|
-
export const DescribeResourcePermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
738
|
-
...obj,
|
|
739
|
-
});
|
|
740
|
-
export const DescribeRootFoldersRequestFilterSensitiveLog = (obj) => ({
|
|
741
|
-
...obj,
|
|
742
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
743
|
-
});
|
|
744
|
-
export const DescribeRootFoldersResponseFilterSensitiveLog = (obj) => ({
|
|
745
|
-
...obj,
|
|
746
|
-
});
|
|
747
|
-
export const DescribeUsersRequestFilterSensitiveLog = (obj) => ({
|
|
748
|
-
...obj,
|
|
749
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
750
|
-
...(obj.Query && { Query: SENSITIVE_STRING }),
|
|
751
|
-
});
|
|
752
|
-
export const DescribeUsersResponseFilterSensitiveLog = (obj) => ({
|
|
753
|
-
...obj,
|
|
754
|
-
});
|
|
755
|
-
export const GetCurrentUserRequestFilterSensitiveLog = (obj) => ({
|
|
756
|
-
...obj,
|
|
757
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
758
|
-
});
|
|
759
|
-
export const GetCurrentUserResponseFilterSensitiveLog = (obj) => ({
|
|
760
|
-
...obj,
|
|
761
|
-
});
|
|
762
|
-
export const GetDocumentRequestFilterSensitiveLog = (obj) => ({
|
|
763
|
-
...obj,
|
|
764
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
765
|
-
});
|
|
766
|
-
export const GetDocumentResponseFilterSensitiveLog = (obj) => ({
|
|
767
|
-
...obj,
|
|
768
|
-
...(obj.Metadata && { Metadata: DocumentMetadataFilterSensitiveLog(obj.Metadata) }),
|
|
769
|
-
});
|
|
770
|
-
export const GetDocumentPathRequestFilterSensitiveLog = (obj) => ({
|
|
771
|
-
...obj,
|
|
772
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
773
|
-
});
|
|
774
|
-
export const ResourcePathComponentFilterSensitiveLog = (obj) => ({
|
|
775
|
-
...obj,
|
|
776
|
-
});
|
|
777
|
-
export const ResourcePathFilterSensitiveLog = (obj) => ({
|
|
778
|
-
...obj,
|
|
779
|
-
});
|
|
780
|
-
export const GetDocumentPathResponseFilterSensitiveLog = (obj) => ({
|
|
781
|
-
...obj,
|
|
782
|
-
});
|
|
783
|
-
export const GetDocumentVersionRequestFilterSensitiveLog = (obj) => ({
|
|
784
|
-
...obj,
|
|
785
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
786
|
-
});
|
|
787
|
-
export const GetDocumentVersionResponseFilterSensitiveLog = (obj) => ({
|
|
788
|
-
...obj,
|
|
789
|
-
...(obj.Metadata && { Metadata: DocumentVersionMetadataFilterSensitiveLog(obj.Metadata) }),
|
|
790
|
-
});
|
|
791
|
-
export const GetFolderRequestFilterSensitiveLog = (obj) => ({
|
|
792
|
-
...obj,
|
|
793
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
794
|
-
});
|
|
795
|
-
export const GetFolderResponseFilterSensitiveLog = (obj) => ({
|
|
796
|
-
...obj,
|
|
797
|
-
});
|
|
798
|
-
export const GetFolderPathRequestFilterSensitiveLog = (obj) => ({
|
|
799
|
-
...obj,
|
|
800
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
801
|
-
});
|
|
802
|
-
export const GetFolderPathResponseFilterSensitiveLog = (obj) => ({
|
|
803
|
-
...obj,
|
|
804
|
-
});
|
|
805
|
-
export const GetResourcesRequestFilterSensitiveLog = (obj) => ({
|
|
806
|
-
...obj,
|
|
807
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
808
|
-
});
|
|
809
|
-
export const GetResourcesResponseFilterSensitiveLog = (obj) => ({
|
|
810
|
-
...obj,
|
|
811
|
-
...(obj.Documents && { Documents: obj.Documents.map((item) => DocumentMetadataFilterSensitiveLog(item)) }),
|
|
812
|
-
});
|
|
813
|
-
export const InitiateDocumentVersionUploadRequestFilterSensitiveLog = (obj) => ({
|
|
814
|
-
...obj,
|
|
815
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
816
|
-
});
|
|
817
|
-
export const UploadMetadataFilterSensitiveLog = (obj) => ({
|
|
818
|
-
...obj,
|
|
819
|
-
...(obj.UploadUrl && { UploadUrl: SENSITIVE_STRING }),
|
|
820
|
-
});
|
|
821
|
-
export const InitiateDocumentVersionUploadResponseFilterSensitiveLog = (obj) => ({
|
|
822
|
-
...obj,
|
|
823
|
-
...(obj.Metadata && { Metadata: DocumentMetadataFilterSensitiveLog(obj.Metadata) }),
|
|
824
|
-
...(obj.UploadMetadata && { UploadMetadata: UploadMetadataFilterSensitiveLog(obj.UploadMetadata) }),
|
|
825
|
-
});
|
|
826
|
-
export const RemoveAllResourcePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
827
|
-
...obj,
|
|
828
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
829
|
-
});
|
|
830
|
-
export const RemoveResourcePermissionRequestFilterSensitiveLog = (obj) => ({
|
|
831
|
-
...obj,
|
|
832
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
833
|
-
});
|
|
834
|
-
export const UpdateDocumentRequestFilterSensitiveLog = (obj) => ({
|
|
835
|
-
...obj,
|
|
836
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
837
|
-
});
|
|
838
|
-
export const UpdateDocumentVersionRequestFilterSensitiveLog = (obj) => ({
|
|
839
|
-
...obj,
|
|
840
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
841
|
-
});
|
|
842
|
-
export const UpdateFolderRequestFilterSensitiveLog = (obj) => ({
|
|
843
|
-
...obj,
|
|
844
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
845
|
-
});
|
|
846
|
-
export const UpdateUserRequestFilterSensitiveLog = (obj) => ({
|
|
847
|
-
...obj,
|
|
848
|
-
...(obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }),
|
|
849
|
-
});
|
|
850
|
-
export const UpdateUserResponseFilterSensitiveLog = (obj) => ({
|
|
851
|
-
...obj,
|
|
852
|
-
});
|
|
515
|
+
export var AbortDocumentVersionUploadRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
516
|
+
export var ActivateUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
517
|
+
export var StorageRuleTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
|
+
export var UserStorageMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
519
|
+
export var UserFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
520
|
+
export var ActivateUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
521
|
+
export var CommentMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
+
export var UserMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
+
export var ResourceMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
524
|
+
export var GroupMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
|
+
export var ParticipantsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
export var ActivityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
+
export var NotificationOptionsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.EmailMessage && { EmailMessage: SENSITIVE_STRING }))); };
|
|
528
|
+
export var SharePrincipalFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
529
|
+
export var AddResourcePermissionsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING })), (obj.NotificationOptions && {
|
|
530
|
+
NotificationOptions: NotificationOptionsFilterSensitiveLog(obj.NotificationOptions),
|
|
531
|
+
}))); };
|
|
532
|
+
export var ShareResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.StatusMessage && { StatusMessage: SENSITIVE_STRING }))); };
|
|
533
|
+
export var AddResourcePermissionsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ShareResults && { ShareResults: obj.ShareResults.map(function (item) { return ShareResultFilterSensitiveLog(item); }) }))); };
|
|
534
|
+
export var CreateCommentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING })), (obj.Text && { Text: SENSITIVE_STRING }))); };
|
|
535
|
+
export var CommentFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Text && { Text: SENSITIVE_STRING }))); };
|
|
536
|
+
export var CreateCommentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Comment && { Comment: CommentFilterSensitiveLog(obj.Comment) }))); };
|
|
537
|
+
export var CreateCustomMetadataRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
538
|
+
export var CreateCustomMetadataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
539
|
+
export var CreateFolderRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
540
|
+
export var FolderMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
541
|
+
export var CreateFolderResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
542
|
+
export var CreateLabelsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
543
|
+
export var CreateLabelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
544
|
+
export var CreateNotificationSubscriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
545
|
+
export var SubscriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
546
|
+
export var CreateNotificationSubscriptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
547
|
+
export var CreateUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Password && { Password: SENSITIVE_STRING })), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
548
|
+
export var CreateUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
549
|
+
export var DeactivateUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
550
|
+
export var DeleteCommentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
551
|
+
export var DeleteCustomMetadataRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
552
|
+
export var DeleteCustomMetadataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
|
+
export var DeleteDocumentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
554
|
+
export var DeleteFolderRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
555
|
+
export var DeleteFolderContentsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
556
|
+
export var DeleteLabelsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
557
|
+
export var DeleteLabelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
|
+
export var DeleteNotificationSubscriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
559
|
+
export var DeleteUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
560
|
+
export var DescribeActivitiesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
561
|
+
export var DescribeActivitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
562
|
+
export var DescribeCommentsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
563
|
+
export var DescribeCommentsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Comments && { Comments: obj.Comments.map(function (item) { return CommentFilterSensitiveLog(item); }) }))); };
|
|
564
|
+
export var DescribeDocumentVersionsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
565
|
+
export var DocumentVersionMetadataFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Thumbnail && { Thumbnail: SENSITIVE_STRING })), (obj.Source && { Source: SENSITIVE_STRING }))); };
|
|
566
|
+
export var DescribeDocumentVersionsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DocumentVersions && {
|
|
567
|
+
DocumentVersions: obj.DocumentVersions.map(function (item) { return DocumentVersionMetadataFilterSensitiveLog(item); }),
|
|
568
|
+
}))); };
|
|
569
|
+
export var DescribeFolderContentsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
570
|
+
export var DocumentMetadataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.LatestVersionMetadata && {
|
|
571
|
+
LatestVersionMetadata: DocumentVersionMetadataFilterSensitiveLog(obj.LatestVersionMetadata),
|
|
572
|
+
}))); };
|
|
573
|
+
export var DescribeFolderContentsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Documents && { Documents: obj.Documents.map(function (item) { return DocumentMetadataFilterSensitiveLog(item); }) }))); };
|
|
574
|
+
export var DescribeGroupsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING })), (obj.SearchQuery && { SearchQuery: SENSITIVE_STRING }))); };
|
|
575
|
+
export var DescribeGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
576
|
+
export var DescribeNotificationSubscriptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
577
|
+
export var DescribeNotificationSubscriptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
578
|
+
export var DescribeResourcePermissionsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
579
|
+
export var PermissionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
580
|
+
export var PrincipalFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
581
|
+
export var DescribeResourcePermissionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
582
|
+
export var DescribeRootFoldersRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
583
|
+
export var DescribeRootFoldersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
584
|
+
export var DescribeUsersRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING })), (obj.Query && { Query: SENSITIVE_STRING }))); };
|
|
585
|
+
export var DescribeUsersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
|
+
export var GetCurrentUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
587
|
+
export var GetCurrentUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
588
|
+
export var GetDocumentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
589
|
+
export var GetDocumentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Metadata && { Metadata: DocumentMetadataFilterSensitiveLog(obj.Metadata) }))); };
|
|
590
|
+
export var GetDocumentPathRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
591
|
+
export var ResourcePathComponentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
592
|
+
export var ResourcePathFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
593
|
+
export var GetDocumentPathResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
|
+
export var GetDocumentVersionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
595
|
+
export var GetDocumentVersionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Metadata && { Metadata: DocumentVersionMetadataFilterSensitiveLog(obj.Metadata) }))); };
|
|
596
|
+
export var GetFolderRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
597
|
+
export var GetFolderResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
598
|
+
export var GetFolderPathRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
599
|
+
export var GetFolderPathResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
600
|
+
export var GetResourcesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
601
|
+
export var GetResourcesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Documents && { Documents: obj.Documents.map(function (item) { return DocumentMetadataFilterSensitiveLog(item); }) }))); };
|
|
602
|
+
export var InitiateDocumentVersionUploadRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
603
|
+
export var UploadMetadataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.UploadUrl && { UploadUrl: SENSITIVE_STRING }))); };
|
|
604
|
+
export var InitiateDocumentVersionUploadResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Metadata && { Metadata: DocumentMetadataFilterSensitiveLog(obj.Metadata) })), (obj.UploadMetadata && { UploadMetadata: UploadMetadataFilterSensitiveLog(obj.UploadMetadata) }))); };
|
|
605
|
+
export var RemoveAllResourcePermissionsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
606
|
+
export var RemoveResourcePermissionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
607
|
+
export var UpdateDocumentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
608
|
+
export var UpdateDocumentVersionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
609
|
+
export var UpdateFolderRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
610
|
+
export var UpdateUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AuthenticationToken && { AuthenticationToken: SENSITIVE_STRING }))); };
|
|
611
|
+
export var UpdateUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|