@aws-sdk/client-workdocs 3.289.0 → 3.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist-types/commands/AbortDocumentVersionUploadCommand.d.ts +24 -0
  2. package/dist-types/commands/ActivateUserCommand.d.ts +18 -0
  3. package/dist-types/commands/AddResourcePermissionsCommand.d.ts +18 -0
  4. package/dist-types/commands/CreateCommentCommand.d.ts +28 -0
  5. package/dist-types/commands/CreateCustomMetadataCommand.d.ts +25 -0
  6. package/dist-types/commands/CreateFolderCommand.d.ts +33 -0
  7. package/dist-types/commands/CreateLabelsCommand.d.ts +22 -0
  8. package/dist-types/commands/CreateNotificationSubscriptionCommand.d.ts +14 -0
  9. package/dist-types/commands/CreateUserCommand.d.ts +18 -0
  10. package/dist-types/commands/DeactivateUserCommand.d.ts +18 -0
  11. package/dist-types/commands/DeleteCommentCommand.d.ts +25 -0
  12. package/dist-types/commands/DeleteCustomMetadataCommand.d.ts +21 -0
  13. package/dist-types/commands/DeleteDocumentCommand.d.ts +30 -0
  14. package/dist-types/commands/DeleteDocumentVersionCommand.d.ts +27 -0
  15. package/dist-types/commands/DeleteFolderCommand.d.ts +30 -0
  16. package/dist-types/commands/DeleteFolderContentsCommand.d.ts +24 -0
  17. package/dist-types/commands/DeleteLabelsCommand.d.ts +21 -0
  18. package/dist-types/commands/DeleteNotificationSubscriptionCommand.d.ts +13 -0
  19. package/dist-types/commands/DeleteUserCommand.d.ts +18 -0
  20. package/dist-types/commands/DescribeActivitiesCommand.d.ts +18 -0
  21. package/dist-types/commands/DescribeCommentsCommand.d.ts +21 -0
  22. package/dist-types/commands/DescribeDocumentVersionsCommand.d.ts +27 -0
  23. package/dist-types/commands/DescribeFolderContentsCommand.d.ts +21 -0
  24. package/dist-types/commands/DescribeGroupsCommand.d.ts +15 -0
  25. package/dist-types/commands/DescribeNotificationSubscriptionsCommand.d.ts +10 -0
  26. package/dist-types/commands/DescribeResourcePermissionsCommand.d.ts +18 -0
  27. package/dist-types/commands/DescribeRootFoldersCommand.d.ts +18 -0
  28. package/dist-types/commands/DescribeUsersCommand.d.ts +24 -0
  29. package/dist-types/commands/GetCurrentUserCommand.d.ts +18 -0
  30. package/dist-types/commands/GetDocumentCommand.d.ts +24 -0
  31. package/dist-types/commands/GetDocumentPathCommand.d.ts +18 -0
  32. package/dist-types/commands/GetDocumentVersionCommand.d.ts +24 -0
  33. package/dist-types/commands/GetFolderCommand.d.ts +24 -0
  34. package/dist-types/commands/GetFolderPathCommand.d.ts +18 -0
  35. package/dist-types/commands/GetResourcesCommand.d.ts +18 -0
  36. package/dist-types/commands/InitiateDocumentVersionUploadCommand.d.ts +43 -0
  37. package/dist-types/commands/RemoveAllResourcePermissionsCommand.d.ts +15 -0
  38. package/dist-types/commands/RemoveResourcePermissionCommand.d.ts +15 -0
  39. package/dist-types/commands/RestoreDocumentVersionsCommand.d.ts +27 -0
  40. package/dist-types/commands/UpdateDocumentCommand.d.ts +33 -0
  41. package/dist-types/commands/UpdateDocumentVersionCommand.d.ts +27 -0
  42. package/dist-types/commands/UpdateFolderCommand.d.ts +33 -0
  43. package/dist-types/commands/UpdateUserCommand.d.ts +30 -0
  44. package/package.json +29 -29
@@ -30,6 +30,36 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
30
30
  * @see {@link UpdateUserCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link DeactivatingLastSystemUserException} (client fault)
34
+ * <p>The last user in the organization is being deactivated.</p>
35
+ *
36
+ * @throws {@link EntityNotExistsException} (client fault)
37
+ * <p>The resource does not exist.</p>
38
+ *
39
+ * @throws {@link FailedDependencyException} (client fault)
40
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
41
+ * under the control of the organization is failing, such as a connected Active
42
+ * Directory.</p>
43
+ *
44
+ * @throws {@link IllegalUserStateException} (client fault)
45
+ * <p>The user is undergoing transfer of ownership.</p>
46
+ *
47
+ * @throws {@link InvalidArgumentException} (client fault)
48
+ * <p>The pagination marker or limit fields are not valid.</p>
49
+ *
50
+ * @throws {@link ProhibitedStateException} (client fault)
51
+ * <p>The specified document version is not in the INITIALIZED state.</p>
52
+ *
53
+ * @throws {@link ServiceUnavailableException} (server fault)
54
+ * <p>One or more of the dependencies is unavailable.</p>
55
+ *
56
+ * @throws {@link UnauthorizedOperationException} (client fault)
57
+ * <p>The operation is not permitted.</p>
58
+ *
59
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
60
+ * <p>The caller does not have access to perform the action on the resource.</p>
61
+ *
62
+ *
33
63
  */
34
64
  export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, WorkDocsClientResolvedConfig> {
35
65
  readonly input: UpdateUserCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workdocs",
3
3
  "description": "AWS SDK for JavaScript Workdocs Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },