@aws-sdk/client-workmail 3.679.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 +6 -6
|
@@ -7,6 +7,7 @@ import { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput
|
|
|
7
7
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "../commands/CreateAliasCommand";
|
|
8
8
|
import { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "../commands/CreateAvailabilityConfigurationCommand";
|
|
9
9
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
|
|
10
|
+
import { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "../commands/CreateIdentityCenterApplicationCommand";
|
|
10
11
|
import { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "../commands/CreateImpersonationRoleCommand";
|
|
11
12
|
import { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "../commands/CreateMobileDeviceAccessRuleCommand";
|
|
12
13
|
import { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "../commands/CreateOrganizationCommand";
|
|
@@ -17,11 +18,14 @@ import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/D
|
|
|
17
18
|
import { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "../commands/DeleteAvailabilityConfigurationCommand";
|
|
18
19
|
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "../commands/DeleteEmailMonitoringConfigurationCommand";
|
|
19
20
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
21
|
+
import { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "../commands/DeleteIdentityCenterApplicationCommand";
|
|
22
|
+
import { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "../commands/DeleteIdentityProviderConfigurationCommand";
|
|
20
23
|
import { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "../commands/DeleteImpersonationRoleCommand";
|
|
21
24
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "../commands/DeleteMailboxPermissionsCommand";
|
|
22
25
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "../commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
23
26
|
import { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "../commands/DeleteMobileDeviceAccessRuleCommand";
|
|
24
27
|
import { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "../commands/DeleteOrganizationCommand";
|
|
28
|
+
import { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "../commands/DeletePersonalAccessTokenCommand";
|
|
25
29
|
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "../commands/DeleteResourceCommand";
|
|
26
30
|
import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "../commands/DeleteRetentionPolicyCommand";
|
|
27
31
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
@@ -30,6 +34,7 @@ import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } f
|
|
|
30
34
|
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "../commands/DescribeEmailMonitoringConfigurationCommand";
|
|
31
35
|
import { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "../commands/DescribeEntityCommand";
|
|
32
36
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
37
|
+
import { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "../commands/DescribeIdentityProviderConfigurationCommand";
|
|
33
38
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "../commands/DescribeInboundDmarcSettingsCommand";
|
|
34
39
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "../commands/DescribeMailboxExportJobCommand";
|
|
35
40
|
import { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "../commands/DescribeOrganizationCommand";
|
|
@@ -45,6 +50,7 @@ import { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from ".
|
|
|
45
50
|
import { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "../commands/GetMailDomainCommand";
|
|
46
51
|
import { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "../commands/GetMobileDeviceAccessEffectCommand";
|
|
47
52
|
import { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "../commands/GetMobileDeviceAccessOverrideCommand";
|
|
53
|
+
import { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "../commands/GetPersonalAccessTokenMetadataCommand";
|
|
48
54
|
import { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "../commands/ListAccessControlRulesCommand";
|
|
49
55
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand";
|
|
50
56
|
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "../commands/ListAvailabilityConfigurationsCommand";
|
|
@@ -58,12 +64,14 @@ import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "../co
|
|
|
58
64
|
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "../commands/ListMobileDeviceAccessOverridesCommand";
|
|
59
65
|
import { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "../commands/ListMobileDeviceAccessRulesCommand";
|
|
60
66
|
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "../commands/ListOrganizationsCommand";
|
|
67
|
+
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "../commands/ListPersonalAccessTokensCommand";
|
|
61
68
|
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "../commands/ListResourceDelegatesCommand";
|
|
62
69
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
63
70
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
64
71
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
65
72
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "../commands/PutAccessControlRuleCommand";
|
|
66
73
|
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "../commands/PutEmailMonitoringConfigurationCommand";
|
|
74
|
+
import { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "../commands/PutIdentityProviderConfigurationCommand";
|
|
67
75
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "../commands/PutInboundDmarcSettingsCommand";
|
|
68
76
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "../commands/PutMailboxPermissionsCommand";
|
|
69
77
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "../commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -112,6 +120,10 @@ export declare const se_CreateAvailabilityConfigurationCommand: (input: CreateAv
|
|
|
112
120
|
* serializeAws_json1_1CreateGroupCommand
|
|
113
121
|
*/
|
|
114
122
|
export declare const se_CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
/**
|
|
124
|
+
* serializeAws_json1_1CreateIdentityCenterApplicationCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const se_CreateIdentityCenterApplicationCommand: (input: CreateIdentityCenterApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
127
|
/**
|
|
116
128
|
* serializeAws_json1_1CreateImpersonationRoleCommand
|
|
117
129
|
*/
|
|
@@ -152,6 +164,14 @@ export declare const se_DeleteEmailMonitoringConfigurationCommand: (input: Delet
|
|
|
152
164
|
* serializeAws_json1_1DeleteGroupCommand
|
|
153
165
|
*/
|
|
154
166
|
export declare const se_DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
|
+
/**
|
|
168
|
+
* serializeAws_json1_1DeleteIdentityCenterApplicationCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const se_DeleteIdentityCenterApplicationCommand: (input: DeleteIdentityCenterApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
171
|
+
/**
|
|
172
|
+
* serializeAws_json1_1DeleteIdentityProviderConfigurationCommand
|
|
173
|
+
*/
|
|
174
|
+
export declare const se_DeleteIdentityProviderConfigurationCommand: (input: DeleteIdentityProviderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
155
175
|
/**
|
|
156
176
|
* serializeAws_json1_1DeleteImpersonationRoleCommand
|
|
157
177
|
*/
|
|
@@ -172,6 +192,10 @@ export declare const se_DeleteMobileDeviceAccessRuleCommand: (input: DeleteMobil
|
|
|
172
192
|
* serializeAws_json1_1DeleteOrganizationCommand
|
|
173
193
|
*/
|
|
174
194
|
export declare const se_DeleteOrganizationCommand: (input: DeleteOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
|
+
/**
|
|
196
|
+
* serializeAws_json1_1DeletePersonalAccessTokenCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const se_DeletePersonalAccessTokenCommand: (input: DeletePersonalAccessTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
175
199
|
/**
|
|
176
200
|
* serializeAws_json1_1DeleteResourceCommand
|
|
177
201
|
*/
|
|
@@ -204,6 +228,10 @@ export declare const se_DescribeEntityCommand: (input: DescribeEntityCommandInpu
|
|
|
204
228
|
* serializeAws_json1_1DescribeGroupCommand
|
|
205
229
|
*/
|
|
206
230
|
export declare const se_DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
231
|
+
/**
|
|
232
|
+
* serializeAws_json1_1DescribeIdentityProviderConfigurationCommand
|
|
233
|
+
*/
|
|
234
|
+
export declare const se_DescribeIdentityProviderConfigurationCommand: (input: DescribeIdentityProviderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
207
235
|
/**
|
|
208
236
|
* serializeAws_json1_1DescribeInboundDmarcSettingsCommand
|
|
209
237
|
*/
|
|
@@ -264,6 +292,10 @@ export declare const se_GetMobileDeviceAccessEffectCommand: (input: GetMobileDev
|
|
|
264
292
|
* serializeAws_json1_1GetMobileDeviceAccessOverrideCommand
|
|
265
293
|
*/
|
|
266
294
|
export declare const se_GetMobileDeviceAccessOverrideCommand: (input: GetMobileDeviceAccessOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
295
|
+
/**
|
|
296
|
+
* serializeAws_json1_1GetPersonalAccessTokenMetadataCommand
|
|
297
|
+
*/
|
|
298
|
+
export declare const se_GetPersonalAccessTokenMetadataCommand: (input: GetPersonalAccessTokenMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
267
299
|
/**
|
|
268
300
|
* serializeAws_json1_1ListAccessControlRulesCommand
|
|
269
301
|
*/
|
|
@@ -316,6 +348,10 @@ export declare const se_ListMobileDeviceAccessRulesCommand: (input: ListMobileDe
|
|
|
316
348
|
* serializeAws_json1_1ListOrganizationsCommand
|
|
317
349
|
*/
|
|
318
350
|
export declare const se_ListOrganizationsCommand: (input: ListOrganizationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
351
|
+
/**
|
|
352
|
+
* serializeAws_json1_1ListPersonalAccessTokensCommand
|
|
353
|
+
*/
|
|
354
|
+
export declare const se_ListPersonalAccessTokensCommand: (input: ListPersonalAccessTokensCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
319
355
|
/**
|
|
320
356
|
* serializeAws_json1_1ListResourceDelegatesCommand
|
|
321
357
|
*/
|
|
@@ -340,6 +376,10 @@ export declare const se_PutAccessControlRuleCommand: (input: PutAccessControlRul
|
|
|
340
376
|
* serializeAws_json1_1PutEmailMonitoringConfigurationCommand
|
|
341
377
|
*/
|
|
342
378
|
export declare const se_PutEmailMonitoringConfigurationCommand: (input: PutEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
379
|
+
/**
|
|
380
|
+
* serializeAws_json1_1PutIdentityProviderConfigurationCommand
|
|
381
|
+
*/
|
|
382
|
+
export declare const se_PutIdentityProviderConfigurationCommand: (input: PutIdentityProviderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
343
383
|
/**
|
|
344
384
|
* serializeAws_json1_1PutInboundDmarcSettingsCommand
|
|
345
385
|
*/
|
|
@@ -448,6 +488,10 @@ export declare const de_CreateAvailabilityConfigurationCommand: (output: __HttpR
|
|
|
448
488
|
* deserializeAws_json1_1CreateGroupCommand
|
|
449
489
|
*/
|
|
450
490
|
export declare const de_CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
491
|
+
/**
|
|
492
|
+
* deserializeAws_json1_1CreateIdentityCenterApplicationCommand
|
|
493
|
+
*/
|
|
494
|
+
export declare const de_CreateIdentityCenterApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdentityCenterApplicationCommandOutput>;
|
|
451
495
|
/**
|
|
452
496
|
* deserializeAws_json1_1CreateImpersonationRoleCommand
|
|
453
497
|
*/
|
|
@@ -488,6 +532,14 @@ export declare const de_DeleteEmailMonitoringConfigurationCommand: (output: __Ht
|
|
|
488
532
|
* deserializeAws_json1_1DeleteGroupCommand
|
|
489
533
|
*/
|
|
490
534
|
export declare const de_DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
535
|
+
/**
|
|
536
|
+
* deserializeAws_json1_1DeleteIdentityCenterApplicationCommand
|
|
537
|
+
*/
|
|
538
|
+
export declare const de_DeleteIdentityCenterApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityCenterApplicationCommandOutput>;
|
|
539
|
+
/**
|
|
540
|
+
* deserializeAws_json1_1DeleteIdentityProviderConfigurationCommand
|
|
541
|
+
*/
|
|
542
|
+
export declare const de_DeleteIdentityProviderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityProviderConfigurationCommandOutput>;
|
|
491
543
|
/**
|
|
492
544
|
* deserializeAws_json1_1DeleteImpersonationRoleCommand
|
|
493
545
|
*/
|
|
@@ -508,6 +560,10 @@ export declare const de_DeleteMobileDeviceAccessRuleCommand: (output: __HttpResp
|
|
|
508
560
|
* deserializeAws_json1_1DeleteOrganizationCommand
|
|
509
561
|
*/
|
|
510
562
|
export declare const de_DeleteOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOrganizationCommandOutput>;
|
|
563
|
+
/**
|
|
564
|
+
* deserializeAws_json1_1DeletePersonalAccessTokenCommand
|
|
565
|
+
*/
|
|
566
|
+
export declare const de_DeletePersonalAccessTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePersonalAccessTokenCommandOutput>;
|
|
511
567
|
/**
|
|
512
568
|
* deserializeAws_json1_1DeleteResourceCommand
|
|
513
569
|
*/
|
|
@@ -540,6 +596,10 @@ export declare const de_DescribeEntityCommand: (output: __HttpResponse, context:
|
|
|
540
596
|
* deserializeAws_json1_1DescribeGroupCommand
|
|
541
597
|
*/
|
|
542
598
|
export declare const de_DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
599
|
+
/**
|
|
600
|
+
* deserializeAws_json1_1DescribeIdentityProviderConfigurationCommand
|
|
601
|
+
*/
|
|
602
|
+
export declare const de_DescribeIdentityProviderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeIdentityProviderConfigurationCommandOutput>;
|
|
543
603
|
/**
|
|
544
604
|
* deserializeAws_json1_1DescribeInboundDmarcSettingsCommand
|
|
545
605
|
*/
|
|
@@ -600,6 +660,10 @@ export declare const de_GetMobileDeviceAccessEffectCommand: (output: __HttpRespo
|
|
|
600
660
|
* deserializeAws_json1_1GetMobileDeviceAccessOverrideCommand
|
|
601
661
|
*/
|
|
602
662
|
export declare const de_GetMobileDeviceAccessOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMobileDeviceAccessOverrideCommandOutput>;
|
|
663
|
+
/**
|
|
664
|
+
* deserializeAws_json1_1GetPersonalAccessTokenMetadataCommand
|
|
665
|
+
*/
|
|
666
|
+
export declare const de_GetPersonalAccessTokenMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPersonalAccessTokenMetadataCommandOutput>;
|
|
603
667
|
/**
|
|
604
668
|
* deserializeAws_json1_1ListAccessControlRulesCommand
|
|
605
669
|
*/
|
|
@@ -652,6 +716,10 @@ export declare const de_ListMobileDeviceAccessRulesCommand: (output: __HttpRespo
|
|
|
652
716
|
* deserializeAws_json1_1ListOrganizationsCommand
|
|
653
717
|
*/
|
|
654
718
|
export declare const de_ListOrganizationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationsCommandOutput>;
|
|
719
|
+
/**
|
|
720
|
+
* deserializeAws_json1_1ListPersonalAccessTokensCommand
|
|
721
|
+
*/
|
|
722
|
+
export declare const de_ListPersonalAccessTokensCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPersonalAccessTokensCommandOutput>;
|
|
655
723
|
/**
|
|
656
724
|
* deserializeAws_json1_1ListResourceDelegatesCommand
|
|
657
725
|
*/
|
|
@@ -676,6 +744,10 @@ export declare const de_PutAccessControlRuleCommand: (output: __HttpResponse, co
|
|
|
676
744
|
* deserializeAws_json1_1PutEmailMonitoringConfigurationCommand
|
|
677
745
|
*/
|
|
678
746
|
export declare const de_PutEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
747
|
+
/**
|
|
748
|
+
* deserializeAws_json1_1PutIdentityProviderConfigurationCommand
|
|
749
|
+
*/
|
|
750
|
+
export declare const de_PutIdentityProviderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutIdentityProviderConfigurationCommandOutput>;
|
|
679
751
|
/**
|
|
680
752
|
* deserializeAws_json1_1PutInboundDmarcSettingsCommand
|
|
681
753
|
*/
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateGroupCommandInput,
|
|
28
28
|
CreateGroupCommandOutput,
|
|
29
29
|
} from "./commands/CreateGroupCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateIdentityCenterApplicationCommandInput,
|
|
32
|
+
CreateIdentityCenterApplicationCommandOutput,
|
|
33
|
+
} from "./commands/CreateIdentityCenterApplicationCommand";
|
|
30
34
|
import {
|
|
31
35
|
CreateImpersonationRoleCommandInput,
|
|
32
36
|
CreateImpersonationRoleCommandOutput,
|
|
@@ -67,6 +71,14 @@ import {
|
|
|
67
71
|
DeleteGroupCommandInput,
|
|
68
72
|
DeleteGroupCommandOutput,
|
|
69
73
|
} from "./commands/DeleteGroupCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteIdentityCenterApplicationCommandInput,
|
|
76
|
+
DeleteIdentityCenterApplicationCommandOutput,
|
|
77
|
+
} from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteIdentityProviderConfigurationCommandInput,
|
|
80
|
+
DeleteIdentityProviderConfigurationCommandOutput,
|
|
81
|
+
} from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
70
82
|
import {
|
|
71
83
|
DeleteImpersonationRoleCommandInput,
|
|
72
84
|
DeleteImpersonationRoleCommandOutput,
|
|
@@ -87,6 +99,10 @@ import {
|
|
|
87
99
|
DeleteOrganizationCommandInput,
|
|
88
100
|
DeleteOrganizationCommandOutput,
|
|
89
101
|
} from "./commands/DeleteOrganizationCommand";
|
|
102
|
+
import {
|
|
103
|
+
DeletePersonalAccessTokenCommandInput,
|
|
104
|
+
DeletePersonalAccessTokenCommandOutput,
|
|
105
|
+
} from "./commands/DeletePersonalAccessTokenCommand";
|
|
90
106
|
import {
|
|
91
107
|
DeleteResourceCommandInput,
|
|
92
108
|
DeleteResourceCommandOutput,
|
|
@@ -119,6 +135,10 @@ import {
|
|
|
119
135
|
DescribeGroupCommandInput,
|
|
120
136
|
DescribeGroupCommandOutput,
|
|
121
137
|
} from "./commands/DescribeGroupCommand";
|
|
138
|
+
import {
|
|
139
|
+
DescribeIdentityProviderConfigurationCommandInput,
|
|
140
|
+
DescribeIdentityProviderConfigurationCommandOutput,
|
|
141
|
+
} from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
122
142
|
import {
|
|
123
143
|
DescribeInboundDmarcSettingsCommandInput,
|
|
124
144
|
DescribeInboundDmarcSettingsCommandOutput,
|
|
@@ -179,6 +199,10 @@ import {
|
|
|
179
199
|
GetMobileDeviceAccessOverrideCommandInput,
|
|
180
200
|
GetMobileDeviceAccessOverrideCommandOutput,
|
|
181
201
|
} from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
202
|
+
import {
|
|
203
|
+
GetPersonalAccessTokenMetadataCommandInput,
|
|
204
|
+
GetPersonalAccessTokenMetadataCommandOutput,
|
|
205
|
+
} from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
182
206
|
import {
|
|
183
207
|
ListAccessControlRulesCommandInput,
|
|
184
208
|
ListAccessControlRulesCommandOutput,
|
|
@@ -231,6 +255,10 @@ import {
|
|
|
231
255
|
ListOrganizationsCommandInput,
|
|
232
256
|
ListOrganizationsCommandOutput,
|
|
233
257
|
} from "./commands/ListOrganizationsCommand";
|
|
258
|
+
import {
|
|
259
|
+
ListPersonalAccessTokensCommandInput,
|
|
260
|
+
ListPersonalAccessTokensCommandOutput,
|
|
261
|
+
} from "./commands/ListPersonalAccessTokensCommand";
|
|
234
262
|
import {
|
|
235
263
|
ListResourceDelegatesCommandInput,
|
|
236
264
|
ListResourceDelegatesCommandOutput,
|
|
@@ -255,6 +283,10 @@ import {
|
|
|
255
283
|
PutEmailMonitoringConfigurationCommandInput,
|
|
256
284
|
PutEmailMonitoringConfigurationCommandOutput,
|
|
257
285
|
} from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
286
|
+
import {
|
|
287
|
+
PutIdentityProviderConfigurationCommandInput,
|
|
288
|
+
PutIdentityProviderConfigurationCommandOutput,
|
|
289
|
+
} from "./commands/PutIdentityProviderConfigurationCommand";
|
|
258
290
|
import {
|
|
259
291
|
PutInboundDmarcSettingsCommandInput,
|
|
260
292
|
PutInboundDmarcSettingsCommandOutput,
|
|
@@ -428,6 +460,19 @@ export interface WorkMail {
|
|
|
428
460
|
options: __HttpHandlerOptions,
|
|
429
461
|
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
430
462
|
): void;
|
|
463
|
+
createIdentityCenterApplication(
|
|
464
|
+
args: CreateIdentityCenterApplicationCommandInput,
|
|
465
|
+
options?: __HttpHandlerOptions
|
|
466
|
+
): Promise<CreateIdentityCenterApplicationCommandOutput>;
|
|
467
|
+
createIdentityCenterApplication(
|
|
468
|
+
args: CreateIdentityCenterApplicationCommandInput,
|
|
469
|
+
cb: (err: any, data?: CreateIdentityCenterApplicationCommandOutput) => void
|
|
470
|
+
): void;
|
|
471
|
+
createIdentityCenterApplication(
|
|
472
|
+
args: CreateIdentityCenterApplicationCommandInput,
|
|
473
|
+
options: __HttpHandlerOptions,
|
|
474
|
+
cb: (err: any, data?: CreateIdentityCenterApplicationCommandOutput) => void
|
|
475
|
+
): void;
|
|
431
476
|
createImpersonationRole(
|
|
432
477
|
args: CreateImpersonationRoleCommandInput,
|
|
433
478
|
options?: __HttpHandlerOptions
|
|
@@ -564,6 +609,38 @@ export interface WorkMail {
|
|
|
564
609
|
options: __HttpHandlerOptions,
|
|
565
610
|
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
566
611
|
): void;
|
|
612
|
+
deleteIdentityCenterApplication(
|
|
613
|
+
args: DeleteIdentityCenterApplicationCommandInput,
|
|
614
|
+
options?: __HttpHandlerOptions
|
|
615
|
+
): Promise<DeleteIdentityCenterApplicationCommandOutput>;
|
|
616
|
+
deleteIdentityCenterApplication(
|
|
617
|
+
args: DeleteIdentityCenterApplicationCommandInput,
|
|
618
|
+
cb: (err: any, data?: DeleteIdentityCenterApplicationCommandOutput) => void
|
|
619
|
+
): void;
|
|
620
|
+
deleteIdentityCenterApplication(
|
|
621
|
+
args: DeleteIdentityCenterApplicationCommandInput,
|
|
622
|
+
options: __HttpHandlerOptions,
|
|
623
|
+
cb: (err: any, data?: DeleteIdentityCenterApplicationCommandOutput) => void
|
|
624
|
+
): void;
|
|
625
|
+
deleteIdentityProviderConfiguration(
|
|
626
|
+
args: DeleteIdentityProviderConfigurationCommandInput,
|
|
627
|
+
options?: __HttpHandlerOptions
|
|
628
|
+
): Promise<DeleteIdentityProviderConfigurationCommandOutput>;
|
|
629
|
+
deleteIdentityProviderConfiguration(
|
|
630
|
+
args: DeleteIdentityProviderConfigurationCommandInput,
|
|
631
|
+
cb: (
|
|
632
|
+
err: any,
|
|
633
|
+
data?: DeleteIdentityProviderConfigurationCommandOutput
|
|
634
|
+
) => void
|
|
635
|
+
): void;
|
|
636
|
+
deleteIdentityProviderConfiguration(
|
|
637
|
+
args: DeleteIdentityProviderConfigurationCommandInput,
|
|
638
|
+
options: __HttpHandlerOptions,
|
|
639
|
+
cb: (
|
|
640
|
+
err: any,
|
|
641
|
+
data?: DeleteIdentityProviderConfigurationCommandOutput
|
|
642
|
+
) => void
|
|
643
|
+
): void;
|
|
567
644
|
deleteImpersonationRole(
|
|
568
645
|
args: DeleteImpersonationRoleCommandInput,
|
|
569
646
|
options?: __HttpHandlerOptions
|
|
@@ -629,6 +706,19 @@ export interface WorkMail {
|
|
|
629
706
|
options: __HttpHandlerOptions,
|
|
630
707
|
cb: (err: any, data?: DeleteOrganizationCommandOutput) => void
|
|
631
708
|
): void;
|
|
709
|
+
deletePersonalAccessToken(
|
|
710
|
+
args: DeletePersonalAccessTokenCommandInput,
|
|
711
|
+
options?: __HttpHandlerOptions
|
|
712
|
+
): Promise<DeletePersonalAccessTokenCommandOutput>;
|
|
713
|
+
deletePersonalAccessToken(
|
|
714
|
+
args: DeletePersonalAccessTokenCommandInput,
|
|
715
|
+
cb: (err: any, data?: DeletePersonalAccessTokenCommandOutput) => void
|
|
716
|
+
): void;
|
|
717
|
+
deletePersonalAccessToken(
|
|
718
|
+
args: DeletePersonalAccessTokenCommandInput,
|
|
719
|
+
options: __HttpHandlerOptions,
|
|
720
|
+
cb: (err: any, data?: DeletePersonalAccessTokenCommandOutput) => void
|
|
721
|
+
): void;
|
|
632
722
|
deleteResource(
|
|
633
723
|
args: DeleteResourceCommandInput,
|
|
634
724
|
options?: __HttpHandlerOptions
|
|
@@ -739,6 +829,25 @@ export interface WorkMail {
|
|
|
739
829
|
options: __HttpHandlerOptions,
|
|
740
830
|
cb: (err: any, data?: DescribeGroupCommandOutput) => void
|
|
741
831
|
): void;
|
|
832
|
+
describeIdentityProviderConfiguration(
|
|
833
|
+
args: DescribeIdentityProviderConfigurationCommandInput,
|
|
834
|
+
options?: __HttpHandlerOptions
|
|
835
|
+
): Promise<DescribeIdentityProviderConfigurationCommandOutput>;
|
|
836
|
+
describeIdentityProviderConfiguration(
|
|
837
|
+
args: DescribeIdentityProviderConfigurationCommandInput,
|
|
838
|
+
cb: (
|
|
839
|
+
err: any,
|
|
840
|
+
data?: DescribeIdentityProviderConfigurationCommandOutput
|
|
841
|
+
) => void
|
|
842
|
+
): void;
|
|
843
|
+
describeIdentityProviderConfiguration(
|
|
844
|
+
args: DescribeIdentityProviderConfigurationCommandInput,
|
|
845
|
+
options: __HttpHandlerOptions,
|
|
846
|
+
cb: (
|
|
847
|
+
err: any,
|
|
848
|
+
data?: DescribeIdentityProviderConfigurationCommandOutput
|
|
849
|
+
) => void
|
|
850
|
+
): void;
|
|
742
851
|
describeInboundDmarcSettings(
|
|
743
852
|
args: DescribeInboundDmarcSettingsCommandInput,
|
|
744
853
|
options?: __HttpHandlerOptions
|
|
@@ -934,6 +1043,19 @@ export interface WorkMail {
|
|
|
934
1043
|
options: __HttpHandlerOptions,
|
|
935
1044
|
cb: (err: any, data?: GetMobileDeviceAccessOverrideCommandOutput) => void
|
|
936
1045
|
): void;
|
|
1046
|
+
getPersonalAccessTokenMetadata(
|
|
1047
|
+
args: GetPersonalAccessTokenMetadataCommandInput,
|
|
1048
|
+
options?: __HttpHandlerOptions
|
|
1049
|
+
): Promise<GetPersonalAccessTokenMetadataCommandOutput>;
|
|
1050
|
+
getPersonalAccessTokenMetadata(
|
|
1051
|
+
args: GetPersonalAccessTokenMetadataCommandInput,
|
|
1052
|
+
cb: (err: any, data?: GetPersonalAccessTokenMetadataCommandOutput) => void
|
|
1053
|
+
): void;
|
|
1054
|
+
getPersonalAccessTokenMetadata(
|
|
1055
|
+
args: GetPersonalAccessTokenMetadataCommandInput,
|
|
1056
|
+
options: __HttpHandlerOptions,
|
|
1057
|
+
cb: (err: any, data?: GetPersonalAccessTokenMetadataCommandOutput) => void
|
|
1058
|
+
): void;
|
|
937
1059
|
listAccessControlRules(
|
|
938
1060
|
args: ListAccessControlRulesCommandInput,
|
|
939
1061
|
options?: __HttpHandlerOptions
|
|
@@ -1104,6 +1226,19 @@ export interface WorkMail {
|
|
|
1104
1226
|
options: __HttpHandlerOptions,
|
|
1105
1227
|
cb: (err: any, data?: ListOrganizationsCommandOutput) => void
|
|
1106
1228
|
): void;
|
|
1229
|
+
listPersonalAccessTokens(
|
|
1230
|
+
args: ListPersonalAccessTokensCommandInput,
|
|
1231
|
+
options?: __HttpHandlerOptions
|
|
1232
|
+
): Promise<ListPersonalAccessTokensCommandOutput>;
|
|
1233
|
+
listPersonalAccessTokens(
|
|
1234
|
+
args: ListPersonalAccessTokensCommandInput,
|
|
1235
|
+
cb: (err: any, data?: ListPersonalAccessTokensCommandOutput) => void
|
|
1236
|
+
): void;
|
|
1237
|
+
listPersonalAccessTokens(
|
|
1238
|
+
args: ListPersonalAccessTokensCommandInput,
|
|
1239
|
+
options: __HttpHandlerOptions,
|
|
1240
|
+
cb: (err: any, data?: ListPersonalAccessTokensCommandOutput) => void
|
|
1241
|
+
): void;
|
|
1107
1242
|
listResourceDelegates(
|
|
1108
1243
|
args: ListResourceDelegatesCommandInput,
|
|
1109
1244
|
options?: __HttpHandlerOptions
|
|
@@ -1182,6 +1317,19 @@ export interface WorkMail {
|
|
|
1182
1317
|
options: __HttpHandlerOptions,
|
|
1183
1318
|
cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void
|
|
1184
1319
|
): void;
|
|
1320
|
+
putIdentityProviderConfiguration(
|
|
1321
|
+
args: PutIdentityProviderConfigurationCommandInput,
|
|
1322
|
+
options?: __HttpHandlerOptions
|
|
1323
|
+
): Promise<PutIdentityProviderConfigurationCommandOutput>;
|
|
1324
|
+
putIdentityProviderConfiguration(
|
|
1325
|
+
args: PutIdentityProviderConfigurationCommandInput,
|
|
1326
|
+
cb: (err: any, data?: PutIdentityProviderConfigurationCommandOutput) => void
|
|
1327
|
+
): void;
|
|
1328
|
+
putIdentityProviderConfiguration(
|
|
1329
|
+
args: PutIdentityProviderConfigurationCommandInput,
|
|
1330
|
+
options: __HttpHandlerOptions,
|
|
1331
|
+
cb: (err: any, data?: PutIdentityProviderConfigurationCommandOutput) => void
|
|
1332
|
+
): void;
|
|
1185
1333
|
putInboundDmarcSettings(
|
|
1186
1334
|
args: PutInboundDmarcSettingsCommandInput,
|
|
1187
1335
|
options?: __HttpHandlerOptions
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
CreateGroupCommandInput,
|
|
74
74
|
CreateGroupCommandOutput,
|
|
75
75
|
} from "./commands/CreateGroupCommand";
|
|
76
|
+
import {
|
|
77
|
+
CreateIdentityCenterApplicationCommandInput,
|
|
78
|
+
CreateIdentityCenterApplicationCommandOutput,
|
|
79
|
+
} from "./commands/CreateIdentityCenterApplicationCommand";
|
|
76
80
|
import {
|
|
77
81
|
CreateImpersonationRoleCommandInput,
|
|
78
82
|
CreateImpersonationRoleCommandOutput,
|
|
@@ -113,6 +117,14 @@ import {
|
|
|
113
117
|
DeleteGroupCommandInput,
|
|
114
118
|
DeleteGroupCommandOutput,
|
|
115
119
|
} from "./commands/DeleteGroupCommand";
|
|
120
|
+
import {
|
|
121
|
+
DeleteIdentityCenterApplicationCommandInput,
|
|
122
|
+
DeleteIdentityCenterApplicationCommandOutput,
|
|
123
|
+
} from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
124
|
+
import {
|
|
125
|
+
DeleteIdentityProviderConfigurationCommandInput,
|
|
126
|
+
DeleteIdentityProviderConfigurationCommandOutput,
|
|
127
|
+
} from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
116
128
|
import {
|
|
117
129
|
DeleteImpersonationRoleCommandInput,
|
|
118
130
|
DeleteImpersonationRoleCommandOutput,
|
|
@@ -133,6 +145,10 @@ import {
|
|
|
133
145
|
DeleteOrganizationCommandInput,
|
|
134
146
|
DeleteOrganizationCommandOutput,
|
|
135
147
|
} from "./commands/DeleteOrganizationCommand";
|
|
148
|
+
import {
|
|
149
|
+
DeletePersonalAccessTokenCommandInput,
|
|
150
|
+
DeletePersonalAccessTokenCommandOutput,
|
|
151
|
+
} from "./commands/DeletePersonalAccessTokenCommand";
|
|
136
152
|
import {
|
|
137
153
|
DeleteResourceCommandInput,
|
|
138
154
|
DeleteResourceCommandOutput,
|
|
@@ -165,6 +181,10 @@ import {
|
|
|
165
181
|
DescribeGroupCommandInput,
|
|
166
182
|
DescribeGroupCommandOutput,
|
|
167
183
|
} from "./commands/DescribeGroupCommand";
|
|
184
|
+
import {
|
|
185
|
+
DescribeIdentityProviderConfigurationCommandInput,
|
|
186
|
+
DescribeIdentityProviderConfigurationCommandOutput,
|
|
187
|
+
} from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
168
188
|
import {
|
|
169
189
|
DescribeInboundDmarcSettingsCommandInput,
|
|
170
190
|
DescribeInboundDmarcSettingsCommandOutput,
|
|
@@ -225,6 +245,10 @@ import {
|
|
|
225
245
|
GetMobileDeviceAccessOverrideCommandInput,
|
|
226
246
|
GetMobileDeviceAccessOverrideCommandOutput,
|
|
227
247
|
} from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
248
|
+
import {
|
|
249
|
+
GetPersonalAccessTokenMetadataCommandInput,
|
|
250
|
+
GetPersonalAccessTokenMetadataCommandOutput,
|
|
251
|
+
} from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
228
252
|
import {
|
|
229
253
|
ListAccessControlRulesCommandInput,
|
|
230
254
|
ListAccessControlRulesCommandOutput,
|
|
@@ -277,6 +301,10 @@ import {
|
|
|
277
301
|
ListOrganizationsCommandInput,
|
|
278
302
|
ListOrganizationsCommandOutput,
|
|
279
303
|
} from "./commands/ListOrganizationsCommand";
|
|
304
|
+
import {
|
|
305
|
+
ListPersonalAccessTokensCommandInput,
|
|
306
|
+
ListPersonalAccessTokensCommandOutput,
|
|
307
|
+
} from "./commands/ListPersonalAccessTokensCommand";
|
|
280
308
|
import {
|
|
281
309
|
ListResourceDelegatesCommandInput,
|
|
282
310
|
ListResourceDelegatesCommandOutput,
|
|
@@ -301,6 +329,10 @@ import {
|
|
|
301
329
|
PutEmailMonitoringConfigurationCommandInput,
|
|
302
330
|
PutEmailMonitoringConfigurationCommandOutput,
|
|
303
331
|
} from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
332
|
+
import {
|
|
333
|
+
PutIdentityProviderConfigurationCommandInput,
|
|
334
|
+
PutIdentityProviderConfigurationCommandOutput,
|
|
335
|
+
} from "./commands/PutIdentityProviderConfigurationCommand";
|
|
304
336
|
import {
|
|
305
337
|
PutInboundDmarcSettingsCommandInput,
|
|
306
338
|
PutInboundDmarcSettingsCommandOutput,
|
|
@@ -396,6 +428,7 @@ export type ServiceInputTypes =
|
|
|
396
428
|
| CreateAliasCommandInput
|
|
397
429
|
| CreateAvailabilityConfigurationCommandInput
|
|
398
430
|
| CreateGroupCommandInput
|
|
431
|
+
| CreateIdentityCenterApplicationCommandInput
|
|
399
432
|
| CreateImpersonationRoleCommandInput
|
|
400
433
|
| CreateMobileDeviceAccessRuleCommandInput
|
|
401
434
|
| CreateOrganizationCommandInput
|
|
@@ -406,11 +439,14 @@ export type ServiceInputTypes =
|
|
|
406
439
|
| DeleteAvailabilityConfigurationCommandInput
|
|
407
440
|
| DeleteEmailMonitoringConfigurationCommandInput
|
|
408
441
|
| DeleteGroupCommandInput
|
|
442
|
+
| DeleteIdentityCenterApplicationCommandInput
|
|
443
|
+
| DeleteIdentityProviderConfigurationCommandInput
|
|
409
444
|
| DeleteImpersonationRoleCommandInput
|
|
410
445
|
| DeleteMailboxPermissionsCommandInput
|
|
411
446
|
| DeleteMobileDeviceAccessOverrideCommandInput
|
|
412
447
|
| DeleteMobileDeviceAccessRuleCommandInput
|
|
413
448
|
| DeleteOrganizationCommandInput
|
|
449
|
+
| DeletePersonalAccessTokenCommandInput
|
|
414
450
|
| DeleteResourceCommandInput
|
|
415
451
|
| DeleteRetentionPolicyCommandInput
|
|
416
452
|
| DeleteUserCommandInput
|
|
@@ -419,6 +455,7 @@ export type ServiceInputTypes =
|
|
|
419
455
|
| DescribeEmailMonitoringConfigurationCommandInput
|
|
420
456
|
| DescribeEntityCommandInput
|
|
421
457
|
| DescribeGroupCommandInput
|
|
458
|
+
| DescribeIdentityProviderConfigurationCommandInput
|
|
422
459
|
| DescribeInboundDmarcSettingsCommandInput
|
|
423
460
|
| DescribeMailboxExportJobCommandInput
|
|
424
461
|
| DescribeOrganizationCommandInput
|
|
@@ -434,6 +471,7 @@ export type ServiceInputTypes =
|
|
|
434
471
|
| GetMailboxDetailsCommandInput
|
|
435
472
|
| GetMobileDeviceAccessEffectCommandInput
|
|
436
473
|
| GetMobileDeviceAccessOverrideCommandInput
|
|
474
|
+
| GetPersonalAccessTokenMetadataCommandInput
|
|
437
475
|
| ListAccessControlRulesCommandInput
|
|
438
476
|
| ListAliasesCommandInput
|
|
439
477
|
| ListAvailabilityConfigurationsCommandInput
|
|
@@ -447,12 +485,14 @@ export type ServiceInputTypes =
|
|
|
447
485
|
| ListMobileDeviceAccessOverridesCommandInput
|
|
448
486
|
| ListMobileDeviceAccessRulesCommandInput
|
|
449
487
|
| ListOrganizationsCommandInput
|
|
488
|
+
| ListPersonalAccessTokensCommandInput
|
|
450
489
|
| ListResourceDelegatesCommandInput
|
|
451
490
|
| ListResourcesCommandInput
|
|
452
491
|
| ListTagsForResourceCommandInput
|
|
453
492
|
| ListUsersCommandInput
|
|
454
493
|
| PutAccessControlRuleCommandInput
|
|
455
494
|
| PutEmailMonitoringConfigurationCommandInput
|
|
495
|
+
| PutIdentityProviderConfigurationCommandInput
|
|
456
496
|
| PutInboundDmarcSettingsCommandInput
|
|
457
497
|
| PutMailboxPermissionsCommandInput
|
|
458
498
|
| PutMobileDeviceAccessOverrideCommandInput
|
|
@@ -481,6 +521,7 @@ export type ServiceOutputTypes =
|
|
|
481
521
|
| CreateAliasCommandOutput
|
|
482
522
|
| CreateAvailabilityConfigurationCommandOutput
|
|
483
523
|
| CreateGroupCommandOutput
|
|
524
|
+
| CreateIdentityCenterApplicationCommandOutput
|
|
484
525
|
| CreateImpersonationRoleCommandOutput
|
|
485
526
|
| CreateMobileDeviceAccessRuleCommandOutput
|
|
486
527
|
| CreateOrganizationCommandOutput
|
|
@@ -491,11 +532,14 @@ export type ServiceOutputTypes =
|
|
|
491
532
|
| DeleteAvailabilityConfigurationCommandOutput
|
|
492
533
|
| DeleteEmailMonitoringConfigurationCommandOutput
|
|
493
534
|
| DeleteGroupCommandOutput
|
|
535
|
+
| DeleteIdentityCenterApplicationCommandOutput
|
|
536
|
+
| DeleteIdentityProviderConfigurationCommandOutput
|
|
494
537
|
| DeleteImpersonationRoleCommandOutput
|
|
495
538
|
| DeleteMailboxPermissionsCommandOutput
|
|
496
539
|
| DeleteMobileDeviceAccessOverrideCommandOutput
|
|
497
540
|
| DeleteMobileDeviceAccessRuleCommandOutput
|
|
498
541
|
| DeleteOrganizationCommandOutput
|
|
542
|
+
| DeletePersonalAccessTokenCommandOutput
|
|
499
543
|
| DeleteResourceCommandOutput
|
|
500
544
|
| DeleteRetentionPolicyCommandOutput
|
|
501
545
|
| DeleteUserCommandOutput
|
|
@@ -504,6 +548,7 @@ export type ServiceOutputTypes =
|
|
|
504
548
|
| DescribeEmailMonitoringConfigurationCommandOutput
|
|
505
549
|
| DescribeEntityCommandOutput
|
|
506
550
|
| DescribeGroupCommandOutput
|
|
551
|
+
| DescribeIdentityProviderConfigurationCommandOutput
|
|
507
552
|
| DescribeInboundDmarcSettingsCommandOutput
|
|
508
553
|
| DescribeMailboxExportJobCommandOutput
|
|
509
554
|
| DescribeOrganizationCommandOutput
|
|
@@ -519,6 +564,7 @@ export type ServiceOutputTypes =
|
|
|
519
564
|
| GetMailboxDetailsCommandOutput
|
|
520
565
|
| GetMobileDeviceAccessEffectCommandOutput
|
|
521
566
|
| GetMobileDeviceAccessOverrideCommandOutput
|
|
567
|
+
| GetPersonalAccessTokenMetadataCommandOutput
|
|
522
568
|
| ListAccessControlRulesCommandOutput
|
|
523
569
|
| ListAliasesCommandOutput
|
|
524
570
|
| ListAvailabilityConfigurationsCommandOutput
|
|
@@ -532,12 +578,14 @@ export type ServiceOutputTypes =
|
|
|
532
578
|
| ListMobileDeviceAccessOverridesCommandOutput
|
|
533
579
|
| ListMobileDeviceAccessRulesCommandOutput
|
|
534
580
|
| ListOrganizationsCommandOutput
|
|
581
|
+
| ListPersonalAccessTokensCommandOutput
|
|
535
582
|
| ListResourceDelegatesCommandOutput
|
|
536
583
|
| ListResourcesCommandOutput
|
|
537
584
|
| ListTagsForResourceCommandOutput
|
|
538
585
|
| ListUsersCommandOutput
|
|
539
586
|
| PutAccessControlRuleCommandOutput
|
|
540
587
|
| PutEmailMonitoringConfigurationCommandOutput
|
|
588
|
+
| PutIdentityProviderConfigurationCommandOutput
|
|
541
589
|
| PutInboundDmarcSettingsCommandOutput
|
|
542
590
|
| PutMailboxPermissionsCommandOutput
|
|
543
591
|
| PutMobileDeviceAccessOverrideCommandOutput
|