@aws-sdk/client-workmail 3.414.0 → 3.415.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 (67) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/WorkMail.js +8 -0
  3. package/dist-cjs/commands/DescribeEntityCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeUserCommand.js +2 -1
  5. package/dist-cjs/commands/ListGroupsForEntityCommand.js +46 -0
  6. package/dist-cjs/commands/ListUsersCommand.js +2 -1
  7. package/dist-cjs/commands/UpdateGroupCommand.js +46 -0
  8. package/dist-cjs/commands/UpdateUserCommand.js +47 -0
  9. package/dist-cjs/commands/index.js +4 -0
  10. package/dist-cjs/models/models_0.js +73 -20
  11. package/dist-cjs/pagination/ListGroupsForEntityPaginator.js +29 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_json1_1.js +276 -4
  14. package/dist-es/WorkMail.js +8 -0
  15. package/dist-es/commands/DescribeEntityCommand.js +42 -0
  16. package/dist-es/commands/DescribeUserCommand.js +2 -1
  17. package/dist-es/commands/ListGroupsForEntityCommand.js +42 -0
  18. package/dist-es/commands/ListUsersCommand.js +2 -1
  19. package/dist-es/commands/UpdateGroupCommand.js +42 -0
  20. package/dist-es/commands/UpdateUserCommand.js +43 -0
  21. package/dist-es/commands/index.js +4 -0
  22. package/dist-es/models/models_0.js +66 -17
  23. package/dist-es/pagination/ListGroupsForEntityPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_json1_1.js +265 -1
  26. package/dist-types/WorkMail.d.ts +28 -0
  27. package/dist-types/WorkMailClient.d.ts +6 -2
  28. package/dist-types/commands/AssociateDelegateToResourceCommand.d.ts +3 -0
  29. package/dist-types/commands/CreateGroupCommand.d.ts +1 -0
  30. package/dist-types/commands/CreateOrganizationCommand.d.ts +1 -1
  31. package/dist-types/commands/CreateResourceCommand.d.ts +5 -0
  32. package/dist-types/commands/CreateUserCommand.d.ts +5 -1
  33. package/dist-types/commands/DeleteOrganizationCommand.d.ts +1 -0
  34. package/dist-types/commands/DeleteResourceCommand.d.ts +3 -0
  35. package/dist-types/commands/DescribeEntityCommand.d.ts +91 -0
  36. package/dist-types/commands/DescribeGroupCommand.d.ts +1 -0
  37. package/dist-types/commands/DescribeOrganizationCommand.d.ts +2 -0
  38. package/dist-types/commands/DescribeResourceCommand.d.ts +5 -0
  39. package/dist-types/commands/DescribeUserCommand.d.ts +16 -1
  40. package/dist-types/commands/DisassociateDelegateFromResourceCommand.d.ts +3 -0
  41. package/dist-types/commands/GetMailboxDetailsCommand.d.ts +3 -0
  42. package/dist-types/commands/ListGroupsCommand.d.ts +5 -0
  43. package/dist-types/commands/ListGroupsForEntityCommand.d.ts +104 -0
  44. package/dist-types/commands/ListResourceDelegatesCommand.d.ts +3 -0
  45. package/dist-types/commands/ListResourcesCommand.d.ts +9 -0
  46. package/dist-types/commands/ListUsersCommand.d.ts +7 -1
  47. package/dist-types/commands/TagResourceCommand.d.ts +3 -0
  48. package/dist-types/commands/UpdateGroupCommand.d.ts +95 -0
  49. package/dist-types/commands/UpdateResourceCommand.d.ts +9 -0
  50. package/dist-types/commands/UpdateUserCommand.d.ts +117 -0
  51. package/dist-types/commands/index.d.ts +4 -0
  52. package/dist-types/models/models_0.d.ts +921 -58
  53. package/dist-types/pagination/ListGroupsForEntityPaginator.d.ts +7 -0
  54. package/dist-types/pagination/index.d.ts +1 -0
  55. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  56. package/dist-types/ts3.4/WorkMail.d.ts +68 -0
  57. package/dist-types/ts3.4/WorkMailClient.d.ts +26 -2
  58. package/dist-types/ts3.4/commands/DescribeEntityCommand.d.ts +38 -0
  59. package/dist-types/ts3.4/commands/ListGroupsForEntityCommand.d.ts +39 -0
  60. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +35 -0
  61. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +35 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +139 -16
  64. package/dist-types/ts3.4/pagination/ListGroupsForEntityPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  66. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  67. package/package.json +1 -1
@@ -26,6 +26,7 @@ export * from "./DeleteUserCommand";
26
26
  export * from "./DeregisterFromWorkMailCommand";
27
27
  export * from "./DeregisterMailDomainCommand";
28
28
  export * from "./DescribeEmailMonitoringConfigurationCommand";
29
+ export * from "./DescribeEntityCommand";
29
30
  export * from "./DescribeGroupCommand";
30
31
  export * from "./DescribeInboundDmarcSettingsCommand";
31
32
  export * from "./DescribeMailboxExportJobCommand";
@@ -47,6 +48,7 @@ export * from "./ListAliasesCommand";
47
48
  export * from "./ListAvailabilityConfigurationsCommand";
48
49
  export * from "./ListGroupMembersCommand";
49
50
  export * from "./ListGroupsCommand";
51
+ export * from "./ListGroupsForEntityCommand";
50
52
  export * from "./ListImpersonationRolesCommand";
51
53
  export * from "./ListMailDomainsCommand";
52
54
  export * from "./ListMailboxExportJobsCommand";
@@ -73,8 +75,10 @@ export * from "./TestAvailabilityConfigurationCommand";
73
75
  export * from "./UntagResourceCommand";
74
76
  export * from "./UpdateAvailabilityConfigurationCommand";
75
77
  export * from "./UpdateDefaultMailDomainCommand";
78
+ export * from "./UpdateGroupCommand";
76
79
  export * from "./UpdateImpersonationRoleCommand";
77
80
  export * from "./UpdateMailboxQuotaCommand";
78
81
  export * from "./UpdateMobileDeviceAccessRuleCommand";
79
82
  export * from "./UpdatePrimaryEmailAddressCommand";
80
83
  export * from "./UpdateResourceCommand";
84
+ export * from "./UpdateUserCommand";