@aws-sdk/client-workmail 3.682.0 → 3.683.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.
- package/README.md +65 -1
- package/dist-cjs/index.js +386 -4
- package/dist-es/WorkMail.js +16 -0
- package/dist-es/commands/CreateIdentityCenterApplicationCommand.js +22 -0
- package/dist-es/commands/CreateResourceCommand.js +2 -1
- package/dist-es/commands/DeleteIdentityCenterApplicationCommand.js +22 -0
- package/dist-es/commands/DeleteIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/DeletePersonalAccessTokenCommand.js +22 -0
- package/dist-es/commands/DescribeIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/DescribeResourceCommand.js +2 -1
- package/dist-es/commands/GetPersonalAccessTokenMetadataCommand.js +22 -0
- package/dist-es/commands/ListPersonalAccessTokensCommand.js +22 -0
- package/dist-es/commands/ListResourcesCommand.js +2 -1
- package/dist-es/commands/PutIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/UpdateResourceCommand.js +2 -1
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/pagination/ListPersonalAccessTokensPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +200 -0
- package/dist-types/WorkMail.d.ts +56 -0
- package/dist-types/WorkMailClient.d.ts +10 -2
- package/dist-types/commands/CreateIdentityCenterApplicationCommand.d.ts +78 -0
- package/dist-types/commands/CreateUserCommand.d.ts +1 -0
- package/dist-types/commands/DeleteIdentityCenterApplicationCommand.d.ts +78 -0
- package/dist-types/commands/DeleteIdentityProviderConfigurationCommand.d.ts +82 -0
- package/dist-types/commands/DeleteOrganizationCommand.d.ts +1 -0
- package/dist-types/commands/DeletePersonalAccessTokenCommand.d.ts +83 -0
- package/dist-types/commands/DescribeIdentityProviderConfigurationCommand.d.ts +95 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +8 -0
- package/dist-types/commands/GetPersonalAccessTokenMetadataCommand.d.ts +96 -0
- package/dist-types/commands/ListAvailabilityConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/ListPersonalAccessTokensCommand.d.ts +108 -0
- package/dist-types/commands/ListUsersCommand.d.ts +3 -0
- package/dist-types/commands/PutIdentityProviderConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +485 -1
- package/dist-types/pagination/ListPersonalAccessTokensPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/WorkMail.d.ts +148 -0
- package/dist-types/ts3.4/WorkMailClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/CreateIdentityCenterApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIdentityCenterApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePersonalAccessTokenCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPersonalAccessTokenMetadataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPersonalAccessTokensCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +111 -0
- package/dist-types/ts3.4/pagination/ListPersonalAccessTokensPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPersonalAccessTokensCommandInput,
|
|
4
|
+
ListPersonalAccessTokensCommandOutput,
|
|
5
|
+
} from "../commands/ListPersonalAccessTokensCommand";
|
|
6
|
+
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPersonalAccessTokens: (
|
|
8
|
+
config: WorkMailPaginationConfiguration,
|
|
9
|
+
input: ListPersonalAccessTokensCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPersonalAccessTokensCommandOutput>;
|
|
@@ -10,6 +10,7 @@ export * from "./ListMailboxExportJobsPaginator";
|
|
|
10
10
|
export * from "./ListMailboxPermissionsPaginator";
|
|
11
11
|
export * from "./ListMobileDeviceAccessOverridesPaginator";
|
|
12
12
|
export * from "./ListOrganizationsPaginator";
|
|
13
|
+
export * from "./ListPersonalAccessTokensPaginator";
|
|
13
14
|
export * from "./ListResourceDelegatesPaginator";
|
|
14
15
|
export * from "./ListResourcesPaginator";
|
|
15
16
|
export * from "./ListUsersPaginator";
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreateGroupCommandInput,
|
|
32
32
|
CreateGroupCommandOutput,
|
|
33
33
|
} from "../commands/CreateGroupCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateIdentityCenterApplicationCommandInput,
|
|
36
|
+
CreateIdentityCenterApplicationCommandOutput,
|
|
37
|
+
} from "../commands/CreateIdentityCenterApplicationCommand";
|
|
34
38
|
import {
|
|
35
39
|
CreateImpersonationRoleCommandInput,
|
|
36
40
|
CreateImpersonationRoleCommandOutput,
|
|
@@ -71,6 +75,14 @@ import {
|
|
|
71
75
|
DeleteGroupCommandInput,
|
|
72
76
|
DeleteGroupCommandOutput,
|
|
73
77
|
} from "../commands/DeleteGroupCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteIdentityCenterApplicationCommandInput,
|
|
80
|
+
DeleteIdentityCenterApplicationCommandOutput,
|
|
81
|
+
} from "../commands/DeleteIdentityCenterApplicationCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteIdentityProviderConfigurationCommandInput,
|
|
84
|
+
DeleteIdentityProviderConfigurationCommandOutput,
|
|
85
|
+
} from "../commands/DeleteIdentityProviderConfigurationCommand";
|
|
74
86
|
import {
|
|
75
87
|
DeleteImpersonationRoleCommandInput,
|
|
76
88
|
DeleteImpersonationRoleCommandOutput,
|
|
@@ -91,6 +103,10 @@ import {
|
|
|
91
103
|
DeleteOrganizationCommandInput,
|
|
92
104
|
DeleteOrganizationCommandOutput,
|
|
93
105
|
} from "../commands/DeleteOrganizationCommand";
|
|
106
|
+
import {
|
|
107
|
+
DeletePersonalAccessTokenCommandInput,
|
|
108
|
+
DeletePersonalAccessTokenCommandOutput,
|
|
109
|
+
} from "../commands/DeletePersonalAccessTokenCommand";
|
|
94
110
|
import {
|
|
95
111
|
DeleteResourceCommandInput,
|
|
96
112
|
DeleteResourceCommandOutput,
|
|
@@ -123,6 +139,10 @@ import {
|
|
|
123
139
|
DescribeGroupCommandInput,
|
|
124
140
|
DescribeGroupCommandOutput,
|
|
125
141
|
} from "../commands/DescribeGroupCommand";
|
|
142
|
+
import {
|
|
143
|
+
DescribeIdentityProviderConfigurationCommandInput,
|
|
144
|
+
DescribeIdentityProviderConfigurationCommandOutput,
|
|
145
|
+
} from "../commands/DescribeIdentityProviderConfigurationCommand";
|
|
126
146
|
import {
|
|
127
147
|
DescribeInboundDmarcSettingsCommandInput,
|
|
128
148
|
DescribeInboundDmarcSettingsCommandOutput,
|
|
@@ -183,6 +203,10 @@ import {
|
|
|
183
203
|
GetMobileDeviceAccessOverrideCommandInput,
|
|
184
204
|
GetMobileDeviceAccessOverrideCommandOutput,
|
|
185
205
|
} from "../commands/GetMobileDeviceAccessOverrideCommand";
|
|
206
|
+
import {
|
|
207
|
+
GetPersonalAccessTokenMetadataCommandInput,
|
|
208
|
+
GetPersonalAccessTokenMetadataCommandOutput,
|
|
209
|
+
} from "../commands/GetPersonalAccessTokenMetadataCommand";
|
|
186
210
|
import {
|
|
187
211
|
ListAccessControlRulesCommandInput,
|
|
188
212
|
ListAccessControlRulesCommandOutput,
|
|
@@ -235,6 +259,10 @@ import {
|
|
|
235
259
|
ListOrganizationsCommandInput,
|
|
236
260
|
ListOrganizationsCommandOutput,
|
|
237
261
|
} from "../commands/ListOrganizationsCommand";
|
|
262
|
+
import {
|
|
263
|
+
ListPersonalAccessTokensCommandInput,
|
|
264
|
+
ListPersonalAccessTokensCommandOutput,
|
|
265
|
+
} from "../commands/ListPersonalAccessTokensCommand";
|
|
238
266
|
import {
|
|
239
267
|
ListResourceDelegatesCommandInput,
|
|
240
268
|
ListResourceDelegatesCommandOutput,
|
|
@@ -259,6 +287,10 @@ import {
|
|
|
259
287
|
PutEmailMonitoringConfigurationCommandInput,
|
|
260
288
|
PutEmailMonitoringConfigurationCommandOutput,
|
|
261
289
|
} from "../commands/PutEmailMonitoringConfigurationCommand";
|
|
290
|
+
import {
|
|
291
|
+
PutIdentityProviderConfigurationCommandInput,
|
|
292
|
+
PutIdentityProviderConfigurationCommandOutput,
|
|
293
|
+
} from "../commands/PutIdentityProviderConfigurationCommand";
|
|
262
294
|
import {
|
|
263
295
|
PutInboundDmarcSettingsCommandInput,
|
|
264
296
|
PutInboundDmarcSettingsCommandOutput,
|
|
@@ -367,6 +399,10 @@ export declare const se_CreateGroupCommand: (
|
|
|
367
399
|
input: CreateGroupCommandInput,
|
|
368
400
|
context: __SerdeContext
|
|
369
401
|
) => Promise<__HttpRequest>;
|
|
402
|
+
export declare const se_CreateIdentityCenterApplicationCommand: (
|
|
403
|
+
input: CreateIdentityCenterApplicationCommandInput,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<__HttpRequest>;
|
|
370
406
|
export declare const se_CreateImpersonationRoleCommand: (
|
|
371
407
|
input: CreateImpersonationRoleCommandInput,
|
|
372
408
|
context: __SerdeContext
|
|
@@ -407,6 +443,14 @@ export declare const se_DeleteGroupCommand: (
|
|
|
407
443
|
input: DeleteGroupCommandInput,
|
|
408
444
|
context: __SerdeContext
|
|
409
445
|
) => Promise<__HttpRequest>;
|
|
446
|
+
export declare const se_DeleteIdentityCenterApplicationCommand: (
|
|
447
|
+
input: DeleteIdentityCenterApplicationCommandInput,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<__HttpRequest>;
|
|
450
|
+
export declare const se_DeleteIdentityProviderConfigurationCommand: (
|
|
451
|
+
input: DeleteIdentityProviderConfigurationCommandInput,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<__HttpRequest>;
|
|
410
454
|
export declare const se_DeleteImpersonationRoleCommand: (
|
|
411
455
|
input: DeleteImpersonationRoleCommandInput,
|
|
412
456
|
context: __SerdeContext
|
|
@@ -427,6 +471,10 @@ export declare const se_DeleteOrganizationCommand: (
|
|
|
427
471
|
input: DeleteOrganizationCommandInput,
|
|
428
472
|
context: __SerdeContext
|
|
429
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_DeletePersonalAccessTokenCommand: (
|
|
475
|
+
input: DeletePersonalAccessTokenCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
430
478
|
export declare const se_DeleteResourceCommand: (
|
|
431
479
|
input: DeleteResourceCommandInput,
|
|
432
480
|
context: __SerdeContext
|
|
@@ -459,6 +507,10 @@ export declare const se_DescribeGroupCommand: (
|
|
|
459
507
|
input: DescribeGroupCommandInput,
|
|
460
508
|
context: __SerdeContext
|
|
461
509
|
) => Promise<__HttpRequest>;
|
|
510
|
+
export declare const se_DescribeIdentityProviderConfigurationCommand: (
|
|
511
|
+
input: DescribeIdentityProviderConfigurationCommandInput,
|
|
512
|
+
context: __SerdeContext
|
|
513
|
+
) => Promise<__HttpRequest>;
|
|
462
514
|
export declare const se_DescribeInboundDmarcSettingsCommand: (
|
|
463
515
|
input: DescribeInboundDmarcSettingsCommandInput,
|
|
464
516
|
context: __SerdeContext
|
|
@@ -519,6 +571,10 @@ export declare const se_GetMobileDeviceAccessOverrideCommand: (
|
|
|
519
571
|
input: GetMobileDeviceAccessOverrideCommandInput,
|
|
520
572
|
context: __SerdeContext
|
|
521
573
|
) => Promise<__HttpRequest>;
|
|
574
|
+
export declare const se_GetPersonalAccessTokenMetadataCommand: (
|
|
575
|
+
input: GetPersonalAccessTokenMetadataCommandInput,
|
|
576
|
+
context: __SerdeContext
|
|
577
|
+
) => Promise<__HttpRequest>;
|
|
522
578
|
export declare const se_ListAccessControlRulesCommand: (
|
|
523
579
|
input: ListAccessControlRulesCommandInput,
|
|
524
580
|
context: __SerdeContext
|
|
@@ -571,6 +627,10 @@ export declare const se_ListOrganizationsCommand: (
|
|
|
571
627
|
input: ListOrganizationsCommandInput,
|
|
572
628
|
context: __SerdeContext
|
|
573
629
|
) => Promise<__HttpRequest>;
|
|
630
|
+
export declare const se_ListPersonalAccessTokensCommand: (
|
|
631
|
+
input: ListPersonalAccessTokensCommandInput,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<__HttpRequest>;
|
|
574
634
|
export declare const se_ListResourceDelegatesCommand: (
|
|
575
635
|
input: ListResourceDelegatesCommandInput,
|
|
576
636
|
context: __SerdeContext
|
|
@@ -595,6 +655,10 @@ export declare const se_PutEmailMonitoringConfigurationCommand: (
|
|
|
595
655
|
input: PutEmailMonitoringConfigurationCommandInput,
|
|
596
656
|
context: __SerdeContext
|
|
597
657
|
) => Promise<__HttpRequest>;
|
|
658
|
+
export declare const se_PutIdentityProviderConfigurationCommand: (
|
|
659
|
+
input: PutIdentityProviderConfigurationCommandInput,
|
|
660
|
+
context: __SerdeContext
|
|
661
|
+
) => Promise<__HttpRequest>;
|
|
598
662
|
export declare const se_PutInboundDmarcSettingsCommand: (
|
|
599
663
|
input: PutInboundDmarcSettingsCommandInput,
|
|
600
664
|
context: __SerdeContext
|
|
@@ -703,6 +767,10 @@ export declare const de_CreateGroupCommand: (
|
|
|
703
767
|
output: __HttpResponse,
|
|
704
768
|
context: __SerdeContext
|
|
705
769
|
) => Promise<CreateGroupCommandOutput>;
|
|
770
|
+
export declare const de_CreateIdentityCenterApplicationCommand: (
|
|
771
|
+
output: __HttpResponse,
|
|
772
|
+
context: __SerdeContext
|
|
773
|
+
) => Promise<CreateIdentityCenterApplicationCommandOutput>;
|
|
706
774
|
export declare const de_CreateImpersonationRoleCommand: (
|
|
707
775
|
output: __HttpResponse,
|
|
708
776
|
context: __SerdeContext
|
|
@@ -743,6 +811,14 @@ export declare const de_DeleteGroupCommand: (
|
|
|
743
811
|
output: __HttpResponse,
|
|
744
812
|
context: __SerdeContext
|
|
745
813
|
) => Promise<DeleteGroupCommandOutput>;
|
|
814
|
+
export declare const de_DeleteIdentityCenterApplicationCommand: (
|
|
815
|
+
output: __HttpResponse,
|
|
816
|
+
context: __SerdeContext
|
|
817
|
+
) => Promise<DeleteIdentityCenterApplicationCommandOutput>;
|
|
818
|
+
export declare const de_DeleteIdentityProviderConfigurationCommand: (
|
|
819
|
+
output: __HttpResponse,
|
|
820
|
+
context: __SerdeContext
|
|
821
|
+
) => Promise<DeleteIdentityProviderConfigurationCommandOutput>;
|
|
746
822
|
export declare const de_DeleteImpersonationRoleCommand: (
|
|
747
823
|
output: __HttpResponse,
|
|
748
824
|
context: __SerdeContext
|
|
@@ -763,6 +839,10 @@ export declare const de_DeleteOrganizationCommand: (
|
|
|
763
839
|
output: __HttpResponse,
|
|
764
840
|
context: __SerdeContext
|
|
765
841
|
) => Promise<DeleteOrganizationCommandOutput>;
|
|
842
|
+
export declare const de_DeletePersonalAccessTokenCommand: (
|
|
843
|
+
output: __HttpResponse,
|
|
844
|
+
context: __SerdeContext
|
|
845
|
+
) => Promise<DeletePersonalAccessTokenCommandOutput>;
|
|
766
846
|
export declare const de_DeleteResourceCommand: (
|
|
767
847
|
output: __HttpResponse,
|
|
768
848
|
context: __SerdeContext
|
|
@@ -795,6 +875,10 @@ export declare const de_DescribeGroupCommand: (
|
|
|
795
875
|
output: __HttpResponse,
|
|
796
876
|
context: __SerdeContext
|
|
797
877
|
) => Promise<DescribeGroupCommandOutput>;
|
|
878
|
+
export declare const de_DescribeIdentityProviderConfigurationCommand: (
|
|
879
|
+
output: __HttpResponse,
|
|
880
|
+
context: __SerdeContext
|
|
881
|
+
) => Promise<DescribeIdentityProviderConfigurationCommandOutput>;
|
|
798
882
|
export declare const de_DescribeInboundDmarcSettingsCommand: (
|
|
799
883
|
output: __HttpResponse,
|
|
800
884
|
context: __SerdeContext
|
|
@@ -855,6 +939,10 @@ export declare const de_GetMobileDeviceAccessOverrideCommand: (
|
|
|
855
939
|
output: __HttpResponse,
|
|
856
940
|
context: __SerdeContext
|
|
857
941
|
) => Promise<GetMobileDeviceAccessOverrideCommandOutput>;
|
|
942
|
+
export declare const de_GetPersonalAccessTokenMetadataCommand: (
|
|
943
|
+
output: __HttpResponse,
|
|
944
|
+
context: __SerdeContext
|
|
945
|
+
) => Promise<GetPersonalAccessTokenMetadataCommandOutput>;
|
|
858
946
|
export declare const de_ListAccessControlRulesCommand: (
|
|
859
947
|
output: __HttpResponse,
|
|
860
948
|
context: __SerdeContext
|
|
@@ -907,6 +995,10 @@ export declare const de_ListOrganizationsCommand: (
|
|
|
907
995
|
output: __HttpResponse,
|
|
908
996
|
context: __SerdeContext
|
|
909
997
|
) => Promise<ListOrganizationsCommandOutput>;
|
|
998
|
+
export declare const de_ListPersonalAccessTokensCommand: (
|
|
999
|
+
output: __HttpResponse,
|
|
1000
|
+
context: __SerdeContext
|
|
1001
|
+
) => Promise<ListPersonalAccessTokensCommandOutput>;
|
|
910
1002
|
export declare const de_ListResourceDelegatesCommand: (
|
|
911
1003
|
output: __HttpResponse,
|
|
912
1004
|
context: __SerdeContext
|
|
@@ -931,6 +1023,10 @@ export declare const de_PutEmailMonitoringConfigurationCommand: (
|
|
|
931
1023
|
output: __HttpResponse,
|
|
932
1024
|
context: __SerdeContext
|
|
933
1025
|
) => Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
1026
|
+
export declare const de_PutIdentityProviderConfigurationCommand: (
|
|
1027
|
+
output: __HttpResponse,
|
|
1028
|
+
context: __SerdeContext
|
|
1029
|
+
) => Promise<PutIdentityProviderConfigurationCommandOutput>;
|
|
934
1030
|
export declare const de_PutInboundDmarcSettingsCommand: (
|
|
935
1031
|
output: __HttpResponse,
|
|
936
1032
|
context: __SerdeContext
|
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.
|
|
4
|
+
"version": "3.683.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workmail",
|