@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
@@ -72,6 +72,14 @@ export declare class OrganizationStateException extends __BaseException {
72
72
  opts: __ExceptionOptionType<OrganizationStateException, __BaseException>
73
73
  );
74
74
  }
75
+ export declare class UnsupportedOperationException extends __BaseException {
76
+ readonly name: "UnsupportedOperationException";
77
+ readonly $fault: "client";
78
+ Message?: string;
79
+ constructor(
80
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
81
+ );
82
+ }
75
83
  export interface AssociateMemberToGroupRequest {
76
84
  OrganizationId: string | undefined;
77
85
  GroupId: string | undefined;
@@ -97,14 +105,6 @@ export declare class DirectoryUnavailableException extends __BaseException {
97
105
  opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>
98
106
  );
99
107
  }
100
- export declare class UnsupportedOperationException extends __BaseException {
101
- readonly name: "UnsupportedOperationException";
102
- readonly $fault: "client";
103
- Message?: string;
104
- constructor(
105
- opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
106
- );
107
- }
108
108
  export interface AssumeImpersonationRoleRequest {
109
109
  OrganizationId: string | undefined;
110
110
  ImpersonationRoleId: string | undefined;
@@ -215,6 +215,7 @@ export declare class NameAvailabilityException extends __BaseException {
215
215
  export interface CreateGroupRequest {
216
216
  OrganizationId: string | undefined;
217
217
  Name: string | undefined;
218
+ HiddenFromGlobalAddressList?: boolean;
218
219
  }
219
220
  export interface CreateGroupResponse {
220
221
  GroupId?: string;
@@ -277,7 +278,7 @@ export interface CreateMobileDeviceAccessRuleResponse {
277
278
  MobileDeviceAccessRuleId?: string;
278
279
  }
279
280
  export interface Domain {
280
- DomainName?: string;
281
+ DomainName: string | undefined;
281
282
  HostedZoneId?: string;
282
283
  }
283
284
  export interface CreateOrganizationRequest {
@@ -308,15 +309,28 @@ export interface CreateResourceRequest {
308
309
  OrganizationId: string | undefined;
309
310
  Name: string | undefined;
310
311
  Type: ResourceType | string | undefined;
312
+ Description?: string;
313
+ HiddenFromGlobalAddressList?: boolean;
311
314
  }
312
315
  export interface CreateResourceResponse {
313
316
  ResourceId?: string;
314
317
  }
318
+ export declare const UserRole: {
319
+ readonly REMOTE_USER: "REMOTE_USER";
320
+ readonly RESOURCE: "RESOURCE";
321
+ readonly SYSTEM_USER: "SYSTEM_USER";
322
+ readonly USER: "USER";
323
+ };
324
+ export type UserRole = (typeof UserRole)[keyof typeof UserRole];
315
325
  export interface CreateUserRequest {
316
326
  OrganizationId: string | undefined;
317
327
  Name: string | undefined;
318
328
  DisplayName: string | undefined;
319
- Password: string | undefined;
329
+ Password?: string;
330
+ Role?: UserRole | string;
331
+ FirstName?: string;
332
+ LastName?: string;
333
+ HiddenFromGlobalAddressList?: boolean;
320
334
  }
321
335
  export interface CreateUserResponse {
322
336
  UserId?: string;
@@ -389,6 +403,7 @@ export interface DeleteOrganizationRequest {
389
403
  ClientToken?: string;
390
404
  OrganizationId: string | undefined;
391
405
  DeleteDirectory: boolean | undefined;
406
+ ForceDelete?: boolean;
392
407
  }
393
408
  export interface DeleteOrganizationResponse {
394
409
  OrganizationId?: string;
@@ -445,6 +460,21 @@ export interface DescribeEmailMonitoringConfigurationResponse {
445
460
  RoleArn?: string;
446
461
  LogGroupArn?: string;
447
462
  }
463
+ export interface DescribeEntityRequest {
464
+ OrganizationId: string | undefined;
465
+ Email: string | undefined;
466
+ }
467
+ export declare const EntityType: {
468
+ readonly GROUP: "GROUP";
469
+ readonly RESOURCE: "RESOURCE";
470
+ readonly USER: "USER";
471
+ };
472
+ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
473
+ export interface DescribeEntityResponse {
474
+ EntityId?: string;
475
+ Name?: string;
476
+ Type?: EntityType | string;
477
+ }
448
478
  export interface DescribeGroupRequest {
449
479
  OrganizationId: string | undefined;
450
480
  GroupId: string | undefined;
@@ -462,6 +492,7 @@ export interface DescribeGroupResponse {
462
492
  State?: EntityState | string;
463
493
  EnabledDate?: Date;
464
494
  DisabledDate?: Date;
495
+ HiddenFromGlobalAddressList?: boolean;
465
496
  }
466
497
  export interface DescribeInboundDmarcSettingsRequest {
467
498
  OrganizationId: string | undefined;
@@ -508,6 +539,8 @@ export interface DescribeOrganizationResponse {
508
539
  CompletedDate?: Date;
509
540
  ErrorMessage?: string;
510
541
  ARN?: string;
542
+ MigrationAdmin?: string;
543
+ InteroperabilityEnabled?: boolean;
511
544
  }
512
545
  export interface DescribeResourceRequest {
513
546
  OrganizationId: string | undefined;
@@ -522,17 +555,13 @@ export interface DescribeResourceResponse {
522
555
  State?: EntityState | string;
523
556
  EnabledDate?: Date;
524
557
  DisabledDate?: Date;
558
+ Description?: string;
559
+ HiddenFromGlobalAddressList?: boolean;
525
560
  }
526
561
  export interface DescribeUserRequest {
527
562
  OrganizationId: string | undefined;
528
563
  UserId: string | undefined;
529
564
  }
530
- export declare const UserRole: {
531
- readonly RESOURCE: "RESOURCE";
532
- readonly SYSTEM_USER: "SYSTEM_USER";
533
- readonly USER: "USER";
534
- };
535
- export type UserRole = (typeof UserRole)[keyof typeof UserRole];
536
565
  export interface DescribeUserResponse {
537
566
  UserId?: string;
538
567
  Name?: string;
@@ -542,6 +571,21 @@ export interface DescribeUserResponse {
542
571
  UserRole?: UserRole | string;
543
572
  EnabledDate?: Date;
544
573
  DisabledDate?: Date;
574
+ MailboxProvisionedDate?: Date;
575
+ MailboxDeprovisionedDate?: Date;
576
+ FirstName?: string;
577
+ LastName?: string;
578
+ HiddenFromGlobalAddressList?: boolean;
579
+ Initials?: string;
580
+ Telephone?: string;
581
+ Street?: string;
582
+ JobTitle?: string;
583
+ City?: string;
584
+ Company?: string;
585
+ ZipCode?: string;
586
+ Department?: string;
587
+ Country?: string;
588
+ Office?: string;
545
589
  }
546
590
  export interface DisassociateDelegateFromResourceRequest {
547
591
  OrganizationId: string | undefined;
@@ -700,6 +744,10 @@ export interface Group {
700
744
  EnabledDate?: Date;
701
745
  DisabledDate?: Date;
702
746
  }
747
+ export interface GroupIdentifier {
748
+ GroupId?: string;
749
+ GroupName?: string;
750
+ }
703
751
  export interface ImpersonationRole {
704
752
  ImpersonationRoleId?: string;
705
753
  Name?: string;
@@ -769,15 +817,35 @@ export interface ListGroupMembersResponse {
769
817
  Members?: Member[];
770
818
  NextToken?: string;
771
819
  }
820
+ export interface ListGroupsFilters {
821
+ NamePrefix?: string;
822
+ PrimaryEmailPrefix?: string;
823
+ State?: EntityState | string;
824
+ }
772
825
  export interface ListGroupsRequest {
773
826
  OrganizationId: string | undefined;
774
827
  NextToken?: string;
775
828
  MaxResults?: number;
829
+ Filters?: ListGroupsFilters;
776
830
  }
777
831
  export interface ListGroupsResponse {
778
832
  Groups?: Group[];
779
833
  NextToken?: string;
780
834
  }
835
+ export interface ListGroupsForEntityFilters {
836
+ GroupNamePrefix?: string;
837
+ }
838
+ export interface ListGroupsForEntityRequest {
839
+ OrganizationId: string | undefined;
840
+ EntityId: string | undefined;
841
+ Filters?: ListGroupsForEntityFilters;
842
+ NextToken?: string;
843
+ MaxResults?: number;
844
+ }
845
+ export interface ListGroupsForEntityResponse {
846
+ Groups?: GroupIdentifier[];
847
+ NextToken?: string;
848
+ }
781
849
  export interface ListImpersonationRolesRequest {
782
850
  OrganizationId: string | undefined;
783
851
  NextToken?: string;
@@ -897,10 +965,16 @@ export interface ListResourceDelegatesResponse {
897
965
  Delegates?: Delegate[];
898
966
  NextToken?: string;
899
967
  }
968
+ export interface ListResourcesFilters {
969
+ NamePrefix?: string;
970
+ PrimaryEmailPrefix?: string;
971
+ State?: EntityState | string;
972
+ }
900
973
  export interface ListResourcesRequest {
901
974
  OrganizationId: string | undefined;
902
975
  NextToken?: string;
903
976
  MaxResults?: number;
977
+ Filters?: ListResourcesFilters;
904
978
  }
905
979
  export interface Resource {
906
980
  Id?: string;
@@ -910,6 +984,7 @@ export interface Resource {
910
984
  State?: EntityState | string;
911
985
  EnabledDate?: Date;
912
986
  DisabledDate?: Date;
987
+ Description?: string;
913
988
  }
914
989
  export interface ListResourcesResponse {
915
990
  Resources?: Resource[];
@@ -925,10 +1000,17 @@ export interface Tag {
925
1000
  export interface ListTagsForResourceResponse {
926
1001
  Tags?: Tag[];
927
1002
  }
1003
+ export interface ListUsersFilters {
1004
+ UsernamePrefix?: string;
1005
+ DisplayNamePrefix?: string;
1006
+ PrimaryEmailPrefix?: string;
1007
+ State?: EntityState | string;
1008
+ }
928
1009
  export interface ListUsersRequest {
929
1010
  OrganizationId: string | undefined;
930
1011
  NextToken?: string;
931
1012
  MaxResults?: number;
1013
+ Filters?: ListUsersFilters;
932
1014
  }
933
1015
  export interface User {
934
1016
  Id?: string;
@@ -1064,6 +1146,12 @@ export interface UpdateDefaultMailDomainRequest {
1064
1146
  DomainName: string | undefined;
1065
1147
  }
1066
1148
  export interface UpdateDefaultMailDomainResponse {}
1149
+ export interface UpdateGroupRequest {
1150
+ OrganizationId: string | undefined;
1151
+ GroupId: string | undefined;
1152
+ HiddenFromGlobalAddressList?: boolean;
1153
+ }
1154
+ export interface UpdateGroupResponse {}
1067
1155
  export interface UpdateImpersonationRoleRequest {
1068
1156
  OrganizationId: string | undefined;
1069
1157
  ImpersonationRoleId: string | undefined;
@@ -1106,8 +1194,31 @@ export interface UpdateResourceRequest {
1106
1194
  ResourceId: string | undefined;
1107
1195
  Name?: string;
1108
1196
  BookingOptions?: BookingOptions;
1197
+ Description?: string;
1198
+ Type?: ResourceType | string;
1199
+ HiddenFromGlobalAddressList?: boolean;
1109
1200
  }
1110
1201
  export interface UpdateResourceResponse {}
1202
+ export interface UpdateUserRequest {
1203
+ OrganizationId: string | undefined;
1204
+ UserId: string | undefined;
1205
+ Role?: UserRole | string;
1206
+ DisplayName?: string;
1207
+ FirstName?: string;
1208
+ LastName?: string;
1209
+ HiddenFromGlobalAddressList?: boolean;
1210
+ Initials?: string;
1211
+ Telephone?: string;
1212
+ Street?: string;
1213
+ JobTitle?: string;
1214
+ City?: string;
1215
+ Company?: string;
1216
+ ZipCode?: string;
1217
+ Department?: string;
1218
+ Country?: string;
1219
+ Office?: string;
1220
+ }
1221
+ export interface UpdateUserResponse {}
1111
1222
  export declare const EwsAvailabilityProviderFilterSensitiveLog: (
1112
1223
  obj: EwsAvailabilityProvider
1113
1224
  ) => any;
@@ -1117,6 +1228,15 @@ export declare const CreateAvailabilityConfigurationRequestFilterSensitiveLog: (
1117
1228
  export declare const CreateUserRequestFilterSensitiveLog: (
1118
1229
  obj: CreateUserRequest
1119
1230
  ) => any;
1231
+ export declare const DescribeUserResponseFilterSensitiveLog: (
1232
+ obj: DescribeUserResponse
1233
+ ) => any;
1234
+ export declare const ListUsersFiltersFilterSensitiveLog: (
1235
+ obj: ListUsersFilters
1236
+ ) => any;
1237
+ export declare const ListUsersRequestFilterSensitiveLog: (
1238
+ obj: ListUsersRequest
1239
+ ) => any;
1120
1240
  export declare const PutRetentionPolicyRequestFilterSensitiveLog: (
1121
1241
  obj: PutRetentionPolicyRequest
1122
1242
  ) => any;
@@ -1129,3 +1249,6 @@ export declare const TestAvailabilityConfigurationRequestFilterSensitiveLog: (
1129
1249
  export declare const UpdateAvailabilityConfigurationRequestFilterSensitiveLog: (
1130
1250
  obj: UpdateAvailabilityConfigurationRequest
1131
1251
  ) => any;
1252
+ export declare const UpdateUserRequestFilterSensitiveLog: (
1253
+ obj: UpdateUserRequest
1254
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListGroupsForEntityCommandInput,
4
+ ListGroupsForEntityCommandOutput,
5
+ } from "../commands/ListGroupsForEntityCommand";
6
+ import { WorkMailPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListGroupsForEntity(
8
+ config: WorkMailPaginationConfiguration,
9
+ input: ListGroupsForEntityCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListGroupsForEntityCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./Interfaces";
2
2
  export * from "./ListAliasesPaginator";
3
3
  export * from "./ListAvailabilityConfigurationsPaginator";
4
4
  export * from "./ListGroupMembersPaginator";
5
+ export * from "./ListGroupsForEntityPaginator";
5
6
  export * from "./ListGroupsPaginator";
6
7
  export * from "./ListImpersonationRolesPaginator";
7
8
  export * from "./ListMailDomainsPaginator";
@@ -115,6 +115,10 @@ import {
115
115
  DescribeEmailMonitoringConfigurationCommandInput,
116
116
  DescribeEmailMonitoringConfigurationCommandOutput,
117
117
  } from "../commands/DescribeEmailMonitoringConfigurationCommand";
118
+ import {
119
+ DescribeEntityCommandInput,
120
+ DescribeEntityCommandOutput,
121
+ } from "../commands/DescribeEntityCommand";
118
122
  import {
119
123
  DescribeGroupCommandInput,
120
124
  DescribeGroupCommandOutput,
@@ -199,6 +203,10 @@ import {
199
203
  ListGroupsCommandInput,
200
204
  ListGroupsCommandOutput,
201
205
  } from "../commands/ListGroupsCommand";
206
+ import {
207
+ ListGroupsForEntityCommandInput,
208
+ ListGroupsForEntityCommandOutput,
209
+ } from "../commands/ListGroupsForEntityCommand";
202
210
  import {
203
211
  ListImpersonationRolesCommandInput,
204
212
  ListImpersonationRolesCommandOutput,
@@ -303,6 +311,10 @@ import {
303
311
  UpdateDefaultMailDomainCommandInput,
304
312
  UpdateDefaultMailDomainCommandOutput,
305
313
  } from "../commands/UpdateDefaultMailDomainCommand";
314
+ import {
315
+ UpdateGroupCommandInput,
316
+ UpdateGroupCommandOutput,
317
+ } from "../commands/UpdateGroupCommand";
306
318
  import {
307
319
  UpdateImpersonationRoleCommandInput,
308
320
  UpdateImpersonationRoleCommandOutput,
@@ -323,6 +335,10 @@ import {
323
335
  UpdateResourceCommandInput,
324
336
  UpdateResourceCommandOutput,
325
337
  } from "../commands/UpdateResourceCommand";
338
+ import {
339
+ UpdateUserCommandInput,
340
+ UpdateUserCommandOutput,
341
+ } from "../commands/UpdateUserCommand";
326
342
  export declare const se_AssociateDelegateToResourceCommand: (
327
343
  input: AssociateDelegateToResourceCommandInput,
328
344
  context: __SerdeContext
@@ -435,6 +451,10 @@ export declare const se_DescribeEmailMonitoringConfigurationCommand: (
435
451
  input: DescribeEmailMonitoringConfigurationCommandInput,
436
452
  context: __SerdeContext
437
453
  ) => Promise<__HttpRequest>;
454
+ export declare const se_DescribeEntityCommand: (
455
+ input: DescribeEntityCommandInput,
456
+ context: __SerdeContext
457
+ ) => Promise<__HttpRequest>;
438
458
  export declare const se_DescribeGroupCommand: (
439
459
  input: DescribeGroupCommandInput,
440
460
  context: __SerdeContext
@@ -519,6 +539,10 @@ export declare const se_ListGroupsCommand: (
519
539
  input: ListGroupsCommandInput,
520
540
  context: __SerdeContext
521
541
  ) => Promise<__HttpRequest>;
542
+ export declare const se_ListGroupsForEntityCommand: (
543
+ input: ListGroupsForEntityCommandInput,
544
+ context: __SerdeContext
545
+ ) => Promise<__HttpRequest>;
522
546
  export declare const se_ListImpersonationRolesCommand: (
523
547
  input: ListImpersonationRolesCommandInput,
524
548
  context: __SerdeContext
@@ -623,6 +647,10 @@ export declare const se_UpdateDefaultMailDomainCommand: (
623
647
  input: UpdateDefaultMailDomainCommandInput,
624
648
  context: __SerdeContext
625
649
  ) => Promise<__HttpRequest>;
650
+ export declare const se_UpdateGroupCommand: (
651
+ input: UpdateGroupCommandInput,
652
+ context: __SerdeContext
653
+ ) => Promise<__HttpRequest>;
626
654
  export declare const se_UpdateImpersonationRoleCommand: (
627
655
  input: UpdateImpersonationRoleCommandInput,
628
656
  context: __SerdeContext
@@ -643,6 +671,10 @@ export declare const se_UpdateResourceCommand: (
643
671
  input: UpdateResourceCommandInput,
644
672
  context: __SerdeContext
645
673
  ) => Promise<__HttpRequest>;
674
+ export declare const se_UpdateUserCommand: (
675
+ input: UpdateUserCommandInput,
676
+ context: __SerdeContext
677
+ ) => Promise<__HttpRequest>;
646
678
  export declare const de_AssociateDelegateToResourceCommand: (
647
679
  output: __HttpResponse,
648
680
  context: __SerdeContext
@@ -755,6 +787,10 @@ export declare const de_DescribeEmailMonitoringConfigurationCommand: (
755
787
  output: __HttpResponse,
756
788
  context: __SerdeContext
757
789
  ) => Promise<DescribeEmailMonitoringConfigurationCommandOutput>;
790
+ export declare const de_DescribeEntityCommand: (
791
+ output: __HttpResponse,
792
+ context: __SerdeContext
793
+ ) => Promise<DescribeEntityCommandOutput>;
758
794
  export declare const de_DescribeGroupCommand: (
759
795
  output: __HttpResponse,
760
796
  context: __SerdeContext
@@ -839,6 +875,10 @@ export declare const de_ListGroupsCommand: (
839
875
  output: __HttpResponse,
840
876
  context: __SerdeContext
841
877
  ) => Promise<ListGroupsCommandOutput>;
878
+ export declare const de_ListGroupsForEntityCommand: (
879
+ output: __HttpResponse,
880
+ context: __SerdeContext
881
+ ) => Promise<ListGroupsForEntityCommandOutput>;
842
882
  export declare const de_ListImpersonationRolesCommand: (
843
883
  output: __HttpResponse,
844
884
  context: __SerdeContext
@@ -943,6 +983,10 @@ export declare const de_UpdateDefaultMailDomainCommand: (
943
983
  output: __HttpResponse,
944
984
  context: __SerdeContext
945
985
  ) => Promise<UpdateDefaultMailDomainCommandOutput>;
986
+ export declare const de_UpdateGroupCommand: (
987
+ output: __HttpResponse,
988
+ context: __SerdeContext
989
+ ) => Promise<UpdateGroupCommandOutput>;
946
990
  export declare const de_UpdateImpersonationRoleCommand: (
947
991
  output: __HttpResponse,
948
992
  context: __SerdeContext
@@ -963,3 +1007,7 @@ export declare const de_UpdateResourceCommand: (
963
1007
  output: __HttpResponse,
964
1008
  context: __SerdeContext
965
1009
  ) => Promise<UpdateResourceCommandOutput>;
1010
+ export declare const de_UpdateUserCommand: (
1011
+ output: __HttpResponse,
1012
+ context: __SerdeContext
1013
+ ) => Promise<UpdateUserCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workmail",
3
3
  "description": "AWS SDK for JavaScript Workmail Client for Node.js, Browser and React Native",
4
- "version": "3.414.0",
4
+ "version": "3.415.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",