@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,33 @@ export interface DescribeDocumentVersionsCommandOutput extends DescribeDocumentV
30
30
  * @see {@link DescribeDocumentVersionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link EntityNotExistsException} (client fault)
34
+ * <p>The resource does not exist.</p>
35
+ *
36
+ * @throws {@link FailedDependencyException} (client fault)
37
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
38
+ * under the control of the organization is failing, such as a connected Active
39
+ * Directory.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>The pagination marker or limit fields are not valid.</p>
43
+ *
44
+ * @throws {@link InvalidPasswordException} (client fault)
45
+ * <p>The password is invalid.</p>
46
+ *
47
+ * @throws {@link ProhibitedStateException} (client fault)
48
+ * <p>The specified document version is not in the INITIALIZED state.</p>
49
+ *
50
+ * @throws {@link ServiceUnavailableException} (server fault)
51
+ * <p>One or more of the dependencies is unavailable.</p>
52
+ *
53
+ * @throws {@link UnauthorizedOperationException} (client fault)
54
+ * <p>The operation is not permitted.</p>
55
+ *
56
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
57
+ * <p>The caller does not have access to perform the action on the resource.</p>
58
+ *
59
+ *
33
60
  */
34
61
  export declare class DescribeDocumentVersionsCommand extends $Command<DescribeDocumentVersionsCommandInput, DescribeDocumentVersionsCommandOutput, WorkDocsClientResolvedConfig> {
35
62
  readonly input: DescribeDocumentVersionsCommandInput;
@@ -34,6 +34,27 @@ export interface DescribeFolderContentsCommandOutput extends DescribeFolderConte
34
34
  * @see {@link DescribeFolderContentsCommandOutput} for command's `response` shape.
35
35
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
36
36
  *
37
+ * @throws {@link EntityNotExistsException} (client fault)
38
+ * <p>The resource does not exist.</p>
39
+ *
40
+ * @throws {@link FailedDependencyException} (client fault)
41
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
42
+ * under the control of the organization is failing, such as a connected Active
43
+ * Directory.</p>
44
+ *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>The pagination marker or limit fields are not valid.</p>
47
+ *
48
+ * @throws {@link ProhibitedStateException} (client fault)
49
+ * <p>The specified document version is not in the INITIALIZED state.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>One or more of the dependencies is unavailable.</p>
53
+ *
54
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
55
+ * <p>The caller does not have access to perform the action on the resource.</p>
56
+ *
57
+ *
37
58
  */
38
59
  export declare class DescribeFolderContentsCommand extends $Command<DescribeFolderContentsCommandInput, DescribeFolderContentsCommandOutput, WorkDocsClientResolvedConfig> {
39
60
  readonly input: DescribeFolderContentsCommandInput;
@@ -30,6 +30,21 @@ export interface DescribeGroupsCommandOutput extends DescribeGroupsResponse, __M
30
30
  * @see {@link DescribeGroupsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link FailedDependencyException} (client fault)
34
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
35
+ * under the control of the organization is failing, such as a connected Active
36
+ * Directory.</p>
37
+ *
38
+ * @throws {@link ServiceUnavailableException} (server fault)
39
+ * <p>One or more of the dependencies is unavailable.</p>
40
+ *
41
+ * @throws {@link UnauthorizedOperationException} (client fault)
42
+ * <p>The operation is not permitted.</p>
43
+ *
44
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
45
+ * <p>The caller does not have access to perform the action on the resource.</p>
46
+ *
47
+ *
33
48
  */
34
49
  export declare class DescribeGroupsCommand extends $Command<DescribeGroupsCommandInput, DescribeGroupsCommandOutput, WorkDocsClientResolvedConfig> {
35
50
  readonly input: DescribeGroupsCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeNotificationSubscriptionsCommandOutput extends Describe
29
29
  * @see {@link DescribeNotificationSubscriptionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link EntityNotExistsException} (client fault)
33
+ * <p>The resource does not exist.</p>
34
+ *
35
+ * @throws {@link ServiceUnavailableException} (server fault)
36
+ * <p>One or more of the dependencies is unavailable.</p>
37
+ *
38
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
39
+ * <p>The caller does not have access to perform the action on the resource.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeNotificationSubscriptionsCommand extends $Command<DescribeNotificationSubscriptionsCommandInput, DescribeNotificationSubscriptionsCommandOutput, WorkDocsClientResolvedConfig> {
34
44
  readonly input: DescribeNotificationSubscriptionsCommandInput;
@@ -29,6 +29,24 @@ export interface DescribeResourcePermissionsCommandOutput extends DescribeResour
29
29
  * @see {@link DescribeResourcePermissionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link FailedDependencyException} (client fault)
33
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
34
+ * under the control of the organization is failing, such as a connected Active
35
+ * Directory.</p>
36
+ *
37
+ * @throws {@link InvalidArgumentException} (client fault)
38
+ * <p>The pagination marker or limit fields are not valid.</p>
39
+ *
40
+ * @throws {@link ServiceUnavailableException} (server fault)
41
+ * <p>One or more of the dependencies is unavailable.</p>
42
+ *
43
+ * @throws {@link UnauthorizedOperationException} (client fault)
44
+ * <p>The operation is not permitted.</p>
45
+ *
46
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
47
+ * <p>The caller does not have access to perform the action on the resource.</p>
48
+ *
49
+ *
32
50
  */
33
51
  export declare class DescribeResourcePermissionsCommand extends $Command<DescribeResourcePermissionsCommandInput, DescribeResourcePermissionsCommandOutput, WorkDocsClientResolvedConfig> {
34
52
  readonly input: DescribeResourcePermissionsCommandInput;
@@ -37,6 +37,24 @@ export interface DescribeRootFoldersCommandOutput extends DescribeRootFoldersRes
37
37
  * @see {@link DescribeRootFoldersCommandOutput} for command's `response` shape.
38
38
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
39
39
  *
40
+ * @throws {@link FailedDependencyException} (client fault)
41
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
42
+ * under the control of the organization is failing, such as a connected Active
43
+ * Directory.</p>
44
+ *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>The pagination marker or limit fields are not valid.</p>
47
+ *
48
+ * @throws {@link ServiceUnavailableException} (server fault)
49
+ * <p>One or more of the dependencies is unavailable.</p>
50
+ *
51
+ * @throws {@link UnauthorizedOperationException} (client fault)
52
+ * <p>The operation is not permitted.</p>
53
+ *
54
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
55
+ * <p>The caller does not have access to perform the action on the resource.</p>
56
+ *
57
+ *
40
58
  */
41
59
  export declare class DescribeRootFoldersCommand extends $Command<DescribeRootFoldersCommandInput, DescribeRootFoldersCommandOutput, WorkDocsClientResolvedConfig> {
42
60
  readonly input: DescribeRootFoldersCommandInput;
@@ -33,6 +33,30 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResponse, __Met
33
33
  * @see {@link DescribeUsersCommandOutput} for command's `response` shape.
34
34
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
35
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 InvalidArgumentException} (client fault)
45
+ * <p>The pagination marker or limit fields are not valid.</p>
46
+ *
47
+ * @throws {@link RequestedEntityTooLargeException} (client fault)
48
+ * <p>The response is too large to return. The request must include a filter to reduce the size of the response.</p>
49
+ *
50
+ * @throws {@link ServiceUnavailableException} (server fault)
51
+ * <p>One or more of the dependencies is unavailable.</p>
52
+ *
53
+ * @throws {@link UnauthorizedOperationException} (client fault)
54
+ * <p>The operation is not permitted.</p>
55
+ *
56
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
57
+ * <p>The caller does not have access to perform the action on the resource.</p>
58
+ *
59
+ *
36
60
  */
37
61
  export declare class DescribeUsersCommand extends $Command<DescribeUsersCommandInput, DescribeUsersCommandOutput, WorkDocsClientResolvedConfig> {
38
62
  readonly input: DescribeUsersCommandInput;
@@ -35,6 +35,24 @@ export interface GetCurrentUserCommandOutput extends GetCurrentUserResponse, __M
35
35
  * @see {@link GetCurrentUserCommandOutput} for command's `response` shape.
36
36
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
37
37
  *
38
+ * @throws {@link EntityNotExistsException} (client fault)
39
+ * <p>The resource does not exist.</p>
40
+ *
41
+ * @throws {@link FailedDependencyException} (client fault)
42
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
43
+ * under the control of the organization is failing, such as a connected Active
44
+ * Directory.</p>
45
+ *
46
+ * @throws {@link ServiceUnavailableException} (server fault)
47
+ * <p>One or more of the dependencies is unavailable.</p>
48
+ *
49
+ * @throws {@link UnauthorizedOperationException} (client fault)
50
+ * <p>The operation is not permitted.</p>
51
+ *
52
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
53
+ * <p>The caller does not have access to perform the action on the resource.</p>
54
+ *
55
+ *
38
56
  */
39
57
  export declare class GetCurrentUserCommand extends $Command<GetCurrentUserCommandInput, GetCurrentUserCommandOutput, WorkDocsClientResolvedConfig> {
40
58
  readonly input: GetCurrentUserCommandInput;
@@ -29,6 +29,30 @@ export interface GetDocumentCommandOutput extends GetDocumentResponse, __Metadat
29
29
  * @see {@link GetDocumentCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link EntityNotExistsException} (client fault)
33
+ * <p>The resource does not exist.</p>
34
+ *
35
+ * @throws {@link FailedDependencyException} (client fault)
36
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
37
+ * under the control of the organization is failing, such as a connected Active
38
+ * Directory.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>The pagination marker or limit fields are not valid.</p>
42
+ *
43
+ * @throws {@link InvalidPasswordException} (client fault)
44
+ * <p>The password is invalid.</p>
45
+ *
46
+ * @throws {@link ServiceUnavailableException} (server fault)
47
+ * <p>One or more of the dependencies is unavailable.</p>
48
+ *
49
+ * @throws {@link UnauthorizedOperationException} (client fault)
50
+ * <p>The operation is not permitted.</p>
51
+ *
52
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
53
+ * <p>The caller does not have access to perform the action on the resource.</p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class GetDocumentCommand extends $Command<GetDocumentCommandInput, GetDocumentCommandOutput, WorkDocsClientResolvedConfig> {
34
58
  readonly input: GetDocumentCommandInput;
@@ -34,6 +34,24 @@ export interface GetDocumentPathCommandOutput extends GetDocumentPathResponse, _
34
34
  * @see {@link GetDocumentPathCommandOutput} for command's `response` shape.
35
35
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
36
36
  *
37
+ * @throws {@link EntityNotExistsException} (client fault)
38
+ * <p>The resource does not exist.</p>
39
+ *
40
+ * @throws {@link FailedDependencyException} (client fault)
41
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
42
+ * under the control of the organization is failing, such as a connected Active
43
+ * Directory.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>One or more of the dependencies is unavailable.</p>
47
+ *
48
+ * @throws {@link UnauthorizedOperationException} (client fault)
49
+ * <p>The operation is not permitted.</p>
50
+ *
51
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
52
+ * <p>The caller does not have access to perform the action on the resource.</p>
53
+ *
54
+ *
37
55
  */
38
56
  export declare class GetDocumentPathCommand extends $Command<GetDocumentPathCommandInput, GetDocumentPathCommandOutput, WorkDocsClientResolvedConfig> {
39
57
  readonly input: GetDocumentPathCommandInput;
@@ -29,6 +29,30 @@ export interface GetDocumentVersionCommandOutput extends GetDocumentVersionRespo
29
29
  * @see {@link GetDocumentVersionCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link EntityNotExistsException} (client fault)
33
+ * <p>The resource does not exist.</p>
34
+ *
35
+ * @throws {@link FailedDependencyException} (client fault)
36
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
37
+ * under the control of the organization is failing, such as a connected Active
38
+ * Directory.</p>
39
+ *
40
+ * @throws {@link InvalidPasswordException} (client fault)
41
+ * <p>The password is invalid.</p>
42
+ *
43
+ * @throws {@link ProhibitedStateException} (client fault)
44
+ * <p>The specified document version is not in the INITIALIZED state.</p>
45
+ *
46
+ * @throws {@link ServiceUnavailableException} (server fault)
47
+ * <p>One or more of the dependencies is unavailable.</p>
48
+ *
49
+ * @throws {@link UnauthorizedOperationException} (client fault)
50
+ * <p>The operation is not permitted.</p>
51
+ *
52
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
53
+ * <p>The caller does not have access to perform the action on the resource.</p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class GetDocumentVersionCommand extends $Command<GetDocumentVersionCommandInput, GetDocumentVersionCommandOutput, WorkDocsClientResolvedConfig> {
34
58
  readonly input: GetDocumentVersionCommandInput;
@@ -29,6 +29,30 @@ export interface GetFolderCommandOutput extends GetFolderResponse, __MetadataBea
29
29
  * @see {@link GetFolderCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link EntityNotExistsException} (client fault)
33
+ * <p>The resource does not exist.</p>
34
+ *
35
+ * @throws {@link FailedDependencyException} (client fault)
36
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
37
+ * under the control of the organization is failing, such as a connected Active
38
+ * Directory.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>The pagination marker or limit fields are not valid.</p>
42
+ *
43
+ * @throws {@link ProhibitedStateException} (client fault)
44
+ * <p>The specified document version is not in the INITIALIZED state.</p>
45
+ *
46
+ * @throws {@link ServiceUnavailableException} (server fault)
47
+ * <p>One or more of the dependencies is unavailable.</p>
48
+ *
49
+ * @throws {@link UnauthorizedOperationException} (client fault)
50
+ * <p>The operation is not permitted.</p>
51
+ *
52
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
53
+ * <p>The caller does not have access to perform the action on the resource.</p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class GetFolderCommand extends $Command<GetFolderCommandInput, GetFolderCommandOutput, WorkDocsClientResolvedConfig> {
34
58
  readonly input: GetFolderCommandInput;
@@ -34,6 +34,24 @@ export interface GetFolderPathCommandOutput extends GetFolderPathResponse, __Met
34
34
  * @see {@link GetFolderPathCommandOutput} for command's `response` shape.
35
35
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
36
36
  *
37
+ * @throws {@link EntityNotExistsException} (client fault)
38
+ * <p>The resource does not exist.</p>
39
+ *
40
+ * @throws {@link FailedDependencyException} (client fault)
41
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
42
+ * under the control of the organization is failing, such as a connected Active
43
+ * Directory.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>One or more of the dependencies is unavailable.</p>
47
+ *
48
+ * @throws {@link UnauthorizedOperationException} (client fault)
49
+ * <p>The operation is not permitted.</p>
50
+ *
51
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
52
+ * <p>The caller does not have access to perform the action on the resource.</p>
53
+ *
54
+ *
37
55
  */
38
56
  export declare class GetFolderPathCommand extends $Command<GetFolderPathCommandInput, GetFolderPathCommandOutput, WorkDocsClientResolvedConfig> {
39
57
  readonly input: GetFolderPathCommandInput;
@@ -30,6 +30,24 @@ export interface GetResourcesCommandOutput extends GetResourcesResponse, __Metad
30
30
  * @see {@link GetResourcesCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link FailedDependencyException} (client fault)
34
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
35
+ * under the control of the organization is failing, such as a connected Active
36
+ * Directory.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>The pagination marker or limit fields are not valid.</p>
40
+ *
41
+ * @throws {@link ServiceUnavailableException} (server fault)
42
+ * <p>One or more of the dependencies is unavailable.</p>
43
+ *
44
+ * @throws {@link UnauthorizedOperationException} (client fault)
45
+ * <p>The operation is not permitted.</p>
46
+ *
47
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
48
+ * <p>The caller does not have access to perform the action on the resource.</p>
49
+ *
50
+ *
33
51
  */
34
52
  export declare class GetResourcesCommand extends $Command<GetResourcesCommandInput, GetResourcesCommandOutput, WorkDocsClientResolvedConfig> {
35
53
  readonly input: GetResourcesCommandInput;
@@ -34,6 +34,49 @@ export interface InitiateDocumentVersionUploadCommandOutput extends InitiateDocu
34
34
  * @see {@link InitiateDocumentVersionUploadCommandOutput} for command's `response` shape.
35
35
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
36
36
  *
37
+ * @throws {@link DraftUploadOutOfSyncException} (client fault)
38
+ * <p>This exception is thrown when a valid checkout ID is not presented on document
39
+ * version upload calls for a document that has been checked out from Web client.</p>
40
+ *
41
+ * @throws {@link EntityAlreadyExistsException} (client fault)
42
+ * <p>The resource already exists.</p>
43
+ *
44
+ * @throws {@link EntityNotExistsException} (client fault)
45
+ * <p>The resource does not exist.</p>
46
+ *
47
+ * @throws {@link FailedDependencyException} (client fault)
48
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
49
+ * under the control of the organization is failing, such as a connected Active
50
+ * Directory.</p>
51
+ *
52
+ * @throws {@link InvalidPasswordException} (client fault)
53
+ * <p>The password is invalid.</p>
54
+ *
55
+ * @throws {@link LimitExceededException} (client fault)
56
+ * <p>The maximum of 100,000 files and folders under the parent folder has been exceeded.</p>
57
+ *
58
+ * @throws {@link ProhibitedStateException} (client fault)
59
+ * <p>The specified document version is not in the INITIALIZED state.</p>
60
+ *
61
+ * @throws {@link ResourceAlreadyCheckedOutException} (client fault)
62
+ * <p>The resource is already checked out.</p>
63
+ *
64
+ * @throws {@link ServiceUnavailableException} (server fault)
65
+ * <p>One or more of the dependencies is unavailable.</p>
66
+ *
67
+ * @throws {@link StorageLimitExceededException} (client fault)
68
+ * <p>The storage limit has been exceeded.</p>
69
+ *
70
+ * @throws {@link StorageLimitWillExceedException} (client fault)
71
+ * <p>The storage limit will be exceeded.</p>
72
+ *
73
+ * @throws {@link UnauthorizedOperationException} (client fault)
74
+ * <p>The operation is not permitted.</p>
75
+ *
76
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
77
+ * <p>The caller does not have access to perform the action on the resource.</p>
78
+ *
79
+ *
37
80
  */
38
81
  export declare class InitiateDocumentVersionUploadCommand extends $Command<InitiateDocumentVersionUploadCommandInput, InitiateDocumentVersionUploadCommandOutput, WorkDocsClientResolvedConfig> {
39
82
  readonly input: InitiateDocumentVersionUploadCommandInput;
@@ -29,6 +29,21 @@ export interface RemoveAllResourcePermissionsCommandOutput extends __MetadataBea
29
29
  * @see {@link RemoveAllResourcePermissionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link FailedDependencyException} (client fault)
33
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
34
+ * under the control of the organization is failing, such as a connected Active
35
+ * Directory.</p>
36
+ *
37
+ * @throws {@link ServiceUnavailableException} (server fault)
38
+ * <p>One or more of the dependencies is unavailable.</p>
39
+ *
40
+ * @throws {@link UnauthorizedOperationException} (client fault)
41
+ * <p>The operation is not permitted.</p>
42
+ *
43
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
44
+ * <p>The caller does not have access to perform the action on the resource.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class RemoveAllResourcePermissionsCommand extends $Command<RemoveAllResourcePermissionsCommandInput, RemoveAllResourcePermissionsCommandOutput, WorkDocsClientResolvedConfig> {
34
49
  readonly input: RemoveAllResourcePermissionsCommandInput;
@@ -30,6 +30,21 @@ export interface RemoveResourcePermissionCommandOutput extends __MetadataBearer
30
30
  * @see {@link RemoveResourcePermissionCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link FailedDependencyException} (client fault)
34
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
35
+ * under the control of the organization is failing, such as a connected Active
36
+ * Directory.</p>
37
+ *
38
+ * @throws {@link ServiceUnavailableException} (server fault)
39
+ * <p>One or more of the dependencies is unavailable.</p>
40
+ *
41
+ * @throws {@link UnauthorizedOperationException} (client fault)
42
+ * <p>The operation is not permitted.</p>
43
+ *
44
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
45
+ * <p>The caller does not have access to perform the action on the resource.</p>
46
+ *
47
+ *
33
48
  */
34
49
  export declare class RemoveResourcePermissionCommand extends $Command<RemoveResourcePermissionCommandInput, RemoveResourcePermissionCommandOutput, WorkDocsClientResolvedConfig> {
35
50
  readonly input: RemoveResourcePermissionCommandInput;
@@ -29,6 +29,33 @@ export interface RestoreDocumentVersionsCommandOutput extends __MetadataBearer {
29
29
  * @see {@link RestoreDocumentVersionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>The resource hierarchy is changing.</p>
34
+ *
35
+ * @throws {@link ConflictingOperationException} (client fault)
36
+ * <p>Another operation is in progress on the resource that conflicts with the current operation.</p>
37
+ *
38
+ * @throws {@link EntityNotExistsException} (client fault)
39
+ * <p>The resource does not exist.</p>
40
+ *
41
+ * @throws {@link FailedDependencyException} (client fault)
42
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
43
+ * under the control of the organization is failing, such as a connected Active
44
+ * Directory.</p>
45
+ *
46
+ * @throws {@link InvalidOperationException} (client fault)
47
+ * <p>The operation is invalid.</p>
48
+ *
49
+ * @throws {@link ProhibitedStateException} (client fault)
50
+ * <p>The specified document version is not in the INITIALIZED state.</p>
51
+ *
52
+ * @throws {@link UnauthorizedOperationException} (client fault)
53
+ * <p>The operation is not permitted.</p>
54
+ *
55
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
56
+ * <p>The caller does not have access to perform the action on the resource.</p>
57
+ *
58
+ *
32
59
  */
33
60
  export declare class RestoreDocumentVersionsCommand extends $Command<RestoreDocumentVersionsCommandInput, RestoreDocumentVersionsCommandOutput, WorkDocsClientResolvedConfig> {
34
61
  readonly input: RestoreDocumentVersionsCommandInput;
@@ -30,6 +30,39 @@ export interface UpdateDocumentCommandOutput extends __MetadataBearer {
30
30
  * @see {@link UpdateDocumentCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link ConcurrentModificationException} (client fault)
34
+ * <p>The resource hierarchy is changing.</p>
35
+ *
36
+ * @throws {@link ConflictingOperationException} (client fault)
37
+ * <p>Another operation is in progress on the resource that conflicts with the current operation.</p>
38
+ *
39
+ * @throws {@link EntityAlreadyExistsException} (client fault)
40
+ * <p>The resource already exists.</p>
41
+ *
42
+ * @throws {@link EntityNotExistsException} (client fault)
43
+ * <p>The resource does not exist.</p>
44
+ *
45
+ * @throws {@link FailedDependencyException} (client fault)
46
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
47
+ * under the control of the organization is failing, such as a connected Active
48
+ * Directory.</p>
49
+ *
50
+ * @throws {@link LimitExceededException} (client fault)
51
+ * <p>The maximum of 100,000 files and folders under the parent folder has been exceeded.</p>
52
+ *
53
+ * @throws {@link ProhibitedStateException} (client fault)
54
+ * <p>The specified document version is not in the INITIALIZED state.</p>
55
+ *
56
+ * @throws {@link ServiceUnavailableException} (server fault)
57
+ * <p>One or more of the dependencies is unavailable.</p>
58
+ *
59
+ * @throws {@link UnauthorizedOperationException} (client fault)
60
+ * <p>The operation is not permitted.</p>
61
+ *
62
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
63
+ * <p>The caller does not have access to perform the action on the resource.</p>
64
+ *
65
+ *
33
66
  */
34
67
  export declare class UpdateDocumentCommand extends $Command<UpdateDocumentCommandInput, UpdateDocumentCommandOutput, WorkDocsClientResolvedConfig> {
35
68
  readonly input: UpdateDocumentCommandInput;
@@ -32,6 +32,33 @@ export interface UpdateDocumentVersionCommandOutput extends __MetadataBearer {
32
32
  * @see {@link UpdateDocumentVersionCommandOutput} for command's `response` shape.
33
33
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
34
34
  *
35
+ * @throws {@link ConcurrentModificationException} (client fault)
36
+ * <p>The resource hierarchy is changing.</p>
37
+ *
38
+ * @throws {@link EntityNotExistsException} (client fault)
39
+ * <p>The resource does not exist.</p>
40
+ *
41
+ * @throws {@link FailedDependencyException} (client fault)
42
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
43
+ * under the control of the organization is failing, such as a connected Active
44
+ * Directory.</p>
45
+ *
46
+ * @throws {@link InvalidOperationException} (client fault)
47
+ * <p>The operation is invalid.</p>
48
+ *
49
+ * @throws {@link ProhibitedStateException} (client fault)
50
+ * <p>The specified document version is not in the INITIALIZED state.</p>
51
+ *
52
+ * @throws {@link ServiceUnavailableException} (server fault)
53
+ * <p>One or more of the dependencies is unavailable.</p>
54
+ *
55
+ * @throws {@link UnauthorizedOperationException} (client fault)
56
+ * <p>The operation is not permitted.</p>
57
+ *
58
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
59
+ * <p>The caller does not have access to perform the action on the resource.</p>
60
+ *
61
+ *
35
62
  */
36
63
  export declare class UpdateDocumentVersionCommand extends $Command<UpdateDocumentVersionCommandInput, UpdateDocumentVersionCommandOutput, WorkDocsClientResolvedConfig> {
37
64
  readonly input: UpdateDocumentVersionCommandInput;
@@ -30,6 +30,39 @@ export interface UpdateFolderCommandOutput extends __MetadataBearer {
30
30
  * @see {@link UpdateFolderCommandOutput} for command's `response` shape.
31
31
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
32
32
  *
33
+ * @throws {@link ConcurrentModificationException} (client fault)
34
+ * <p>The resource hierarchy is changing.</p>
35
+ *
36
+ * @throws {@link ConflictingOperationException} (client fault)
37
+ * <p>Another operation is in progress on the resource that conflicts with the current operation.</p>
38
+ *
39
+ * @throws {@link EntityAlreadyExistsException} (client fault)
40
+ * <p>The resource already exists.</p>
41
+ *
42
+ * @throws {@link EntityNotExistsException} (client fault)
43
+ * <p>The resource does not exist.</p>
44
+ *
45
+ * @throws {@link FailedDependencyException} (client fault)
46
+ * <p>The Directory Service cannot reach an on-premises instance. Or a dependency
47
+ * under the control of the organization is failing, such as a connected Active
48
+ * Directory.</p>
49
+ *
50
+ * @throws {@link LimitExceededException} (client fault)
51
+ * <p>The maximum of 100,000 files and folders under the parent folder has been exceeded.</p>
52
+ *
53
+ * @throws {@link ProhibitedStateException} (client fault)
54
+ * <p>The specified document version is not in the INITIALIZED state.</p>
55
+ *
56
+ * @throws {@link ServiceUnavailableException} (server fault)
57
+ * <p>One or more of the dependencies is unavailable.</p>
58
+ *
59
+ * @throws {@link UnauthorizedOperationException} (client fault)
60
+ * <p>The operation is not permitted.</p>
61
+ *
62
+ * @throws {@link UnauthorizedResourceAccessException} (client fault)
63
+ * <p>The caller does not have access to perform the action on the resource.</p>
64
+ *
65
+ *
33
66
  */
34
67
  export declare class UpdateFolderCommand extends $Command<UpdateFolderCommandInput, UpdateFolderCommandOutput, WorkDocsClientResolvedConfig> {
35
68
  readonly input: UpdateFolderCommandInput;