@aws-sdk/client-workdocs 3.296.0 → 3.297.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 (60) hide show
  1. package/dist-types/WorkDocs.d.ts +45 -0
  2. package/dist-types/WorkDocsClient.d.ts +24 -4
  3. package/dist-types/commands/AbortDocumentVersionUploadCommand.d.ts +16 -0
  4. package/dist-types/commands/ActivateUserCommand.d.ts +16 -0
  5. package/dist-types/commands/AddResourcePermissionsCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateCommentCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateCustomMetadataCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateFolderCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateLabelsCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateNotificationSubscriptionCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateUserCommand.d.ts +16 -0
  12. package/dist-types/commands/DeactivateUserCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteCommentCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteCustomMetadataCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteDocumentCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteDocumentVersionCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteFolderCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteFolderContentsCommand.d.ts +16 -0
  19. package/dist-types/commands/DeleteLabelsCommand.d.ts +16 -0
  20. package/dist-types/commands/DeleteNotificationSubscriptionCommand.d.ts +16 -0
  21. package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeActivitiesCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeCommentsCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeDocumentVersionsCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeFolderContentsCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeGroupsCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeNotificationSubscriptionsCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeResourcePermissionsCommand.d.ts +16 -0
  29. package/dist-types/commands/DescribeRootFoldersCommand.d.ts +16 -0
  30. package/dist-types/commands/DescribeUsersCommand.d.ts +16 -0
  31. package/dist-types/commands/GetCurrentUserCommand.d.ts +16 -0
  32. package/dist-types/commands/GetDocumentCommand.d.ts +16 -0
  33. package/dist-types/commands/GetDocumentPathCommand.d.ts +16 -0
  34. package/dist-types/commands/GetDocumentVersionCommand.d.ts +16 -0
  35. package/dist-types/commands/GetFolderCommand.d.ts +16 -0
  36. package/dist-types/commands/GetFolderPathCommand.d.ts +16 -0
  37. package/dist-types/commands/GetResourcesCommand.d.ts +16 -0
  38. package/dist-types/commands/InitiateDocumentVersionUploadCommand.d.ts +16 -0
  39. package/dist-types/commands/RemoveAllResourcePermissionsCommand.d.ts +16 -0
  40. package/dist-types/commands/RemoveResourcePermissionCommand.d.ts +16 -0
  41. package/dist-types/commands/RestoreDocumentVersionsCommand.d.ts +16 -0
  42. package/dist-types/commands/SearchResourcesCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateDocumentCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateDocumentVersionCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateFolderCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
  47. package/dist-types/models/WorkDocsServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +380 -0
  49. package/dist-types/pagination/DescribeActivitiesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/DescribeCommentsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/DescribeDocumentVersionsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/DescribeFolderContentsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/DescribeGroupsPaginator.d.ts +3 -0
  54. package/dist-types/pagination/DescribeNotificationSubscriptionsPaginator.d.ts +3 -0
  55. package/dist-types/pagination/DescribeResourcePermissionsPaginator.d.ts +3 -0
  56. package/dist-types/pagination/DescribeRootFoldersPaginator.d.ts +3 -0
  57. package/dist-types/pagination/DescribeUsersPaginator.d.ts +3 -0
  58. package/dist-types/pagination/Interfaces.d.ts +3 -0
  59. package/dist-types/pagination/SearchResourcesPaginator.d.ts +3 -0
  60. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateUserCommand}.
8
10
  */
9
11
  export interface UpdateUserCommandInput extends UpdateUserRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateUserCommand}.
13
17
  */
14
18
  export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the specified attributes of the specified user, and grants or revokes
18
23
  * administrative privileges to the Amazon WorkDocs site.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
35
+ * @returns {@link UpdateUserCommandOutput}
29
36
  * @see {@link UpdateUserCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateUserCommandOutput} for command's `response` shape.
31
38
  * @see {@link WorkDocsClientResolvedConfig | config} for WorkDocsClient's `config` shape.
@@ -64,11 +71,20 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
64
71
  export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, WorkDocsClientResolvedConfig> {
65
72
  readonly input: UpdateUserCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: UpdateUserCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkDocsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from WorkDocs service.
4
6
  */
5
7
  export declare class WorkDocsServiceException extends __ServiceException {