@aws-sdk/client-workmail 3.682.0 → 3.686.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 +35 -35
|
@@ -46,6 +46,12 @@ export const se_CreateGroupCommand = async (input, context) => {
|
|
|
46
46
|
body = JSON.stringify(_json(input));
|
|
47
47
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
48
48
|
};
|
|
49
|
+
export const se_CreateIdentityCenterApplicationCommand = async (input, context) => {
|
|
50
|
+
const headers = sharedHeaders("CreateIdentityCenterApplication");
|
|
51
|
+
let body;
|
|
52
|
+
body = JSON.stringify(se_CreateIdentityCenterApplicationRequest(input, context));
|
|
53
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
54
|
+
};
|
|
49
55
|
export const se_CreateImpersonationRoleCommand = async (input, context) => {
|
|
50
56
|
const headers = sharedHeaders("CreateImpersonationRole");
|
|
51
57
|
let body;
|
|
@@ -106,6 +112,18 @@ export const se_DeleteGroupCommand = async (input, context) => {
|
|
|
106
112
|
body = JSON.stringify(_json(input));
|
|
107
113
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
108
114
|
};
|
|
115
|
+
export const se_DeleteIdentityCenterApplicationCommand = async (input, context) => {
|
|
116
|
+
const headers = sharedHeaders("DeleteIdentityCenterApplication");
|
|
117
|
+
let body;
|
|
118
|
+
body = JSON.stringify(_json(input));
|
|
119
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
120
|
+
};
|
|
121
|
+
export const se_DeleteIdentityProviderConfigurationCommand = async (input, context) => {
|
|
122
|
+
const headers = sharedHeaders("DeleteIdentityProviderConfiguration");
|
|
123
|
+
let body;
|
|
124
|
+
body = JSON.stringify(_json(input));
|
|
125
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
126
|
+
};
|
|
109
127
|
export const se_DeleteImpersonationRoleCommand = async (input, context) => {
|
|
110
128
|
const headers = sharedHeaders("DeleteImpersonationRole");
|
|
111
129
|
let body;
|
|
@@ -136,6 +154,12 @@ export const se_DeleteOrganizationCommand = async (input, context) => {
|
|
|
136
154
|
body = JSON.stringify(se_DeleteOrganizationRequest(input, context));
|
|
137
155
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
138
156
|
};
|
|
157
|
+
export const se_DeletePersonalAccessTokenCommand = async (input, context) => {
|
|
158
|
+
const headers = sharedHeaders("DeletePersonalAccessToken");
|
|
159
|
+
let body;
|
|
160
|
+
body = JSON.stringify(_json(input));
|
|
161
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
162
|
+
};
|
|
139
163
|
export const se_DeleteResourceCommand = async (input, context) => {
|
|
140
164
|
const headers = sharedHeaders("DeleteResource");
|
|
141
165
|
let body;
|
|
@@ -184,6 +208,12 @@ export const se_DescribeGroupCommand = async (input, context) => {
|
|
|
184
208
|
body = JSON.stringify(_json(input));
|
|
185
209
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
186
210
|
};
|
|
211
|
+
export const se_DescribeIdentityProviderConfigurationCommand = async (input, context) => {
|
|
212
|
+
const headers = sharedHeaders("DescribeIdentityProviderConfiguration");
|
|
213
|
+
let body;
|
|
214
|
+
body = JSON.stringify(_json(input));
|
|
215
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
216
|
+
};
|
|
187
217
|
export const se_DescribeInboundDmarcSettingsCommand = async (input, context) => {
|
|
188
218
|
const headers = sharedHeaders("DescribeInboundDmarcSettings");
|
|
189
219
|
let body;
|
|
@@ -274,6 +304,12 @@ export const se_GetMobileDeviceAccessOverrideCommand = async (input, context) =>
|
|
|
274
304
|
body = JSON.stringify(_json(input));
|
|
275
305
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
276
306
|
};
|
|
307
|
+
export const se_GetPersonalAccessTokenMetadataCommand = async (input, context) => {
|
|
308
|
+
const headers = sharedHeaders("GetPersonalAccessTokenMetadata");
|
|
309
|
+
let body;
|
|
310
|
+
body = JSON.stringify(_json(input));
|
|
311
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
312
|
+
};
|
|
277
313
|
export const se_ListAccessControlRulesCommand = async (input, context) => {
|
|
278
314
|
const headers = sharedHeaders("ListAccessControlRules");
|
|
279
315
|
let body;
|
|
@@ -352,6 +388,12 @@ export const se_ListOrganizationsCommand = async (input, context) => {
|
|
|
352
388
|
body = JSON.stringify(_json(input));
|
|
353
389
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
354
390
|
};
|
|
391
|
+
export const se_ListPersonalAccessTokensCommand = async (input, context) => {
|
|
392
|
+
const headers = sharedHeaders("ListPersonalAccessTokens");
|
|
393
|
+
let body;
|
|
394
|
+
body = JSON.stringify(_json(input));
|
|
395
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
396
|
+
};
|
|
355
397
|
export const se_ListResourceDelegatesCommand = async (input, context) => {
|
|
356
398
|
const headers = sharedHeaders("ListResourceDelegates");
|
|
357
399
|
let body;
|
|
@@ -388,6 +430,12 @@ export const se_PutEmailMonitoringConfigurationCommand = async (input, context)
|
|
|
388
430
|
body = JSON.stringify(_json(input));
|
|
389
431
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
390
432
|
};
|
|
433
|
+
export const se_PutIdentityProviderConfigurationCommand = async (input, context) => {
|
|
434
|
+
const headers = sharedHeaders("PutIdentityProviderConfiguration");
|
|
435
|
+
let body;
|
|
436
|
+
body = JSON.stringify(_json(input));
|
|
437
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
438
|
+
};
|
|
391
439
|
export const se_PutInboundDmarcSettingsCommand = async (input, context) => {
|
|
392
440
|
const headers = sharedHeaders("PutInboundDmarcSettings");
|
|
393
441
|
let body;
|
|
@@ -599,6 +647,19 @@ export const de_CreateGroupCommand = async (output, context) => {
|
|
|
599
647
|
};
|
|
600
648
|
return response;
|
|
601
649
|
};
|
|
650
|
+
export const de_CreateIdentityCenterApplicationCommand = async (output, context) => {
|
|
651
|
+
if (output.statusCode >= 300) {
|
|
652
|
+
return de_CommandError(output, context);
|
|
653
|
+
}
|
|
654
|
+
const data = await parseBody(output.body, context);
|
|
655
|
+
let contents = {};
|
|
656
|
+
contents = _json(data);
|
|
657
|
+
const response = {
|
|
658
|
+
$metadata: deserializeMetadata(output),
|
|
659
|
+
...contents,
|
|
660
|
+
};
|
|
661
|
+
return response;
|
|
662
|
+
};
|
|
602
663
|
export const de_CreateImpersonationRoleCommand = async (output, context) => {
|
|
603
664
|
if (output.statusCode >= 300) {
|
|
604
665
|
return de_CommandError(output, context);
|
|
@@ -729,6 +790,32 @@ export const de_DeleteGroupCommand = async (output, context) => {
|
|
|
729
790
|
};
|
|
730
791
|
return response;
|
|
731
792
|
};
|
|
793
|
+
export const de_DeleteIdentityCenterApplicationCommand = async (output, context) => {
|
|
794
|
+
if (output.statusCode >= 300) {
|
|
795
|
+
return de_CommandError(output, context);
|
|
796
|
+
}
|
|
797
|
+
const data = await parseBody(output.body, context);
|
|
798
|
+
let contents = {};
|
|
799
|
+
contents = _json(data);
|
|
800
|
+
const response = {
|
|
801
|
+
$metadata: deserializeMetadata(output),
|
|
802
|
+
...contents,
|
|
803
|
+
};
|
|
804
|
+
return response;
|
|
805
|
+
};
|
|
806
|
+
export const de_DeleteIdentityProviderConfigurationCommand = async (output, context) => {
|
|
807
|
+
if (output.statusCode >= 300) {
|
|
808
|
+
return de_CommandError(output, context);
|
|
809
|
+
}
|
|
810
|
+
const data = await parseBody(output.body, context);
|
|
811
|
+
let contents = {};
|
|
812
|
+
contents = _json(data);
|
|
813
|
+
const response = {
|
|
814
|
+
$metadata: deserializeMetadata(output),
|
|
815
|
+
...contents,
|
|
816
|
+
};
|
|
817
|
+
return response;
|
|
818
|
+
};
|
|
732
819
|
export const de_DeleteImpersonationRoleCommand = async (output, context) => {
|
|
733
820
|
if (output.statusCode >= 300) {
|
|
734
821
|
return de_CommandError(output, context);
|
|
@@ -794,6 +881,19 @@ export const de_DeleteOrganizationCommand = async (output, context) => {
|
|
|
794
881
|
};
|
|
795
882
|
return response;
|
|
796
883
|
};
|
|
884
|
+
export const de_DeletePersonalAccessTokenCommand = async (output, context) => {
|
|
885
|
+
if (output.statusCode >= 300) {
|
|
886
|
+
return de_CommandError(output, context);
|
|
887
|
+
}
|
|
888
|
+
const data = await parseBody(output.body, context);
|
|
889
|
+
let contents = {};
|
|
890
|
+
contents = _json(data);
|
|
891
|
+
const response = {
|
|
892
|
+
$metadata: deserializeMetadata(output),
|
|
893
|
+
...contents,
|
|
894
|
+
};
|
|
895
|
+
return response;
|
|
896
|
+
};
|
|
797
897
|
export const de_DeleteResourceCommand = async (output, context) => {
|
|
798
898
|
if (output.statusCode >= 300) {
|
|
799
899
|
return de_CommandError(output, context);
|
|
@@ -898,6 +998,19 @@ export const de_DescribeGroupCommand = async (output, context) => {
|
|
|
898
998
|
};
|
|
899
999
|
return response;
|
|
900
1000
|
};
|
|
1001
|
+
export const de_DescribeIdentityProviderConfigurationCommand = async (output, context) => {
|
|
1002
|
+
if (output.statusCode >= 300) {
|
|
1003
|
+
return de_CommandError(output, context);
|
|
1004
|
+
}
|
|
1005
|
+
const data = await parseBody(output.body, context);
|
|
1006
|
+
let contents = {};
|
|
1007
|
+
contents = _json(data);
|
|
1008
|
+
const response = {
|
|
1009
|
+
$metadata: deserializeMetadata(output),
|
|
1010
|
+
...contents,
|
|
1011
|
+
};
|
|
1012
|
+
return response;
|
|
1013
|
+
};
|
|
901
1014
|
export const de_DescribeInboundDmarcSettingsCommand = async (output, context) => {
|
|
902
1015
|
if (output.statusCode >= 300) {
|
|
903
1016
|
return de_CommandError(output, context);
|
|
@@ -1093,6 +1206,19 @@ export const de_GetMobileDeviceAccessOverrideCommand = async (output, context) =
|
|
|
1093
1206
|
};
|
|
1094
1207
|
return response;
|
|
1095
1208
|
};
|
|
1209
|
+
export const de_GetPersonalAccessTokenMetadataCommand = async (output, context) => {
|
|
1210
|
+
if (output.statusCode >= 300) {
|
|
1211
|
+
return de_CommandError(output, context);
|
|
1212
|
+
}
|
|
1213
|
+
const data = await parseBody(output.body, context);
|
|
1214
|
+
let contents = {};
|
|
1215
|
+
contents = de_GetPersonalAccessTokenMetadataResponse(data, context);
|
|
1216
|
+
const response = {
|
|
1217
|
+
$metadata: deserializeMetadata(output),
|
|
1218
|
+
...contents,
|
|
1219
|
+
};
|
|
1220
|
+
return response;
|
|
1221
|
+
};
|
|
1096
1222
|
export const de_ListAccessControlRulesCommand = async (output, context) => {
|
|
1097
1223
|
if (output.statusCode >= 300) {
|
|
1098
1224
|
return de_CommandError(output, context);
|
|
@@ -1262,6 +1388,19 @@ export const de_ListOrganizationsCommand = async (output, context) => {
|
|
|
1262
1388
|
};
|
|
1263
1389
|
return response;
|
|
1264
1390
|
};
|
|
1391
|
+
export const de_ListPersonalAccessTokensCommand = async (output, context) => {
|
|
1392
|
+
if (output.statusCode >= 300) {
|
|
1393
|
+
return de_CommandError(output, context);
|
|
1394
|
+
}
|
|
1395
|
+
const data = await parseBody(output.body, context);
|
|
1396
|
+
let contents = {};
|
|
1397
|
+
contents = de_ListPersonalAccessTokensResponse(data, context);
|
|
1398
|
+
const response = {
|
|
1399
|
+
$metadata: deserializeMetadata(output),
|
|
1400
|
+
...contents,
|
|
1401
|
+
};
|
|
1402
|
+
return response;
|
|
1403
|
+
};
|
|
1265
1404
|
export const de_ListResourceDelegatesCommand = async (output, context) => {
|
|
1266
1405
|
if (output.statusCode >= 300) {
|
|
1267
1406
|
return de_CommandError(output, context);
|
|
@@ -1340,6 +1479,19 @@ export const de_PutEmailMonitoringConfigurationCommand = async (output, context)
|
|
|
1340
1479
|
};
|
|
1341
1480
|
return response;
|
|
1342
1481
|
};
|
|
1482
|
+
export const de_PutIdentityProviderConfigurationCommand = async (output, context) => {
|
|
1483
|
+
if (output.statusCode >= 300) {
|
|
1484
|
+
return de_CommandError(output, context);
|
|
1485
|
+
}
|
|
1486
|
+
const data = await parseBody(output.body, context);
|
|
1487
|
+
let contents = {};
|
|
1488
|
+
contents = _json(data);
|
|
1489
|
+
const response = {
|
|
1490
|
+
$metadata: deserializeMetadata(output),
|
|
1491
|
+
...contents,
|
|
1492
|
+
};
|
|
1493
|
+
return response;
|
|
1494
|
+
};
|
|
1343
1495
|
export const de_PutInboundDmarcSettingsCommand = async (output, context) => {
|
|
1344
1496
|
if (output.statusCode >= 300) {
|
|
1345
1497
|
return de_CommandError(output, context);
|
|
@@ -1896,6 +2048,13 @@ const se_CreateAvailabilityConfigurationRequest = (input, context) => {
|
|
|
1896
2048
|
OrganizationId: [],
|
|
1897
2049
|
});
|
|
1898
2050
|
};
|
|
2051
|
+
const se_CreateIdentityCenterApplicationRequest = (input, context) => {
|
|
2052
|
+
return take(input, {
|
|
2053
|
+
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2054
|
+
InstanceArn: [],
|
|
2055
|
+
Name: [],
|
|
2056
|
+
});
|
|
2057
|
+
};
|
|
1899
2058
|
const se_CreateImpersonationRoleRequest = (input, context) => {
|
|
1900
2059
|
return take(input, {
|
|
1901
2060
|
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
@@ -1937,6 +2096,7 @@ const se_DeleteOrganizationRequest = (input, context) => {
|
|
|
1937
2096
|
return take(input, {
|
|
1938
2097
|
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
1939
2098
|
DeleteDirectory: [],
|
|
2099
|
+
DeleteIdentityCenterApplication: [],
|
|
1940
2100
|
ForceDelete: [],
|
|
1941
2101
|
OrganizationId: [],
|
|
1942
2102
|
});
|
|
@@ -2071,6 +2231,8 @@ const de_DescribeUserResponse = (output, context) => {
|
|
|
2071
2231
|
EnabledDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2072
2232
|
FirstName: __expectString,
|
|
2073
2233
|
HiddenFromGlobalAddressList: __expectBoolean,
|
|
2234
|
+
IdentityProviderIdentityStoreId: __expectString,
|
|
2235
|
+
IdentityProviderUserId: __expectString,
|
|
2074
2236
|
Initials: __expectString,
|
|
2075
2237
|
JobTitle: __expectString,
|
|
2076
2238
|
LastName: __expectString,
|
|
@@ -2113,6 +2275,17 @@ const de_GetMobileDeviceAccessOverrideResponse = (output, context) => {
|
|
|
2113
2275
|
UserId: __expectString,
|
|
2114
2276
|
});
|
|
2115
2277
|
};
|
|
2278
|
+
const de_GetPersonalAccessTokenMetadataResponse = (output, context) => {
|
|
2279
|
+
return take(output, {
|
|
2280
|
+
DateCreated: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2281
|
+
DateLastUsed: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2282
|
+
ExpiresTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2283
|
+
Name: __expectString,
|
|
2284
|
+
PersonalAccessTokenId: __expectString,
|
|
2285
|
+
Scopes: _json,
|
|
2286
|
+
UserId: __expectString,
|
|
2287
|
+
});
|
|
2288
|
+
};
|
|
2116
2289
|
const de_Group = (output, context) => {
|
|
2117
2290
|
return take(output, {
|
|
2118
2291
|
DisabledDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -2202,6 +2375,12 @@ const de_ListMobileDeviceAccessRulesResponse = (output, context) => {
|
|
|
2202
2375
|
Rules: (_) => de_MobileDeviceAccessRulesList(_, context),
|
|
2203
2376
|
});
|
|
2204
2377
|
};
|
|
2378
|
+
const de_ListPersonalAccessTokensResponse = (output, context) => {
|
|
2379
|
+
return take(output, {
|
|
2380
|
+
NextToken: __expectString,
|
|
2381
|
+
PersonalAccessTokenSummaries: (_) => de_PersonalAccessTokenSummaryList(_, context),
|
|
2382
|
+
});
|
|
2383
|
+
};
|
|
2205
2384
|
const de_ListResourcesResponse = (output, context) => {
|
|
2206
2385
|
return take(output, {
|
|
2207
2386
|
NextToken: __expectString,
|
|
@@ -2289,6 +2468,25 @@ const de_MobileDeviceAccessRulesList = (output, context) => {
|
|
|
2289
2468
|
});
|
|
2290
2469
|
return retVal;
|
|
2291
2470
|
};
|
|
2471
|
+
const de_PersonalAccessTokenSummary = (output, context) => {
|
|
2472
|
+
return take(output, {
|
|
2473
|
+
DateCreated: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2474
|
+
DateLastUsed: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2475
|
+
ExpiresTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2476
|
+
Name: __expectString,
|
|
2477
|
+
PersonalAccessTokenId: __expectString,
|
|
2478
|
+
Scopes: _json,
|
|
2479
|
+
UserId: __expectString,
|
|
2480
|
+
});
|
|
2481
|
+
};
|
|
2482
|
+
const de_PersonalAccessTokenSummaryList = (output, context) => {
|
|
2483
|
+
const retVal = (output || [])
|
|
2484
|
+
.filter((e) => e != null)
|
|
2485
|
+
.map((entry) => {
|
|
2486
|
+
return de_PersonalAccessTokenSummary(entry, context);
|
|
2487
|
+
});
|
|
2488
|
+
return retVal;
|
|
2489
|
+
};
|
|
2292
2490
|
const de_Resource = (output, context) => {
|
|
2293
2491
|
return take(output, {
|
|
2294
2492
|
Description: __expectString,
|
|
@@ -2316,6 +2514,8 @@ const de_User = (output, context) => {
|
|
|
2316
2514
|
Email: __expectString,
|
|
2317
2515
|
EnabledDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2318
2516
|
Id: __expectString,
|
|
2517
|
+
IdentityProviderIdentityStoreId: __expectString,
|
|
2518
|
+
IdentityProviderUserId: __expectString,
|
|
2319
2519
|
Name: __expectString,
|
|
2320
2520
|
State: __expectString,
|
|
2321
2521
|
UserRole: __expectString,
|
package/dist-types/WorkMail.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput
|
|
|
6
6
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
7
7
|
import { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
8
8
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
9
|
+
import { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
9
10
|
import { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
10
11
|
import { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
11
12
|
import { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
@@ -16,11 +17,14 @@ import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/De
|
|
|
16
17
|
import { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
17
18
|
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
18
19
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
20
|
+
import { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
21
|
+
import { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
19
22
|
import { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
20
23
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
21
24
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
22
25
|
import { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
23
26
|
import { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
27
|
+
import { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
24
28
|
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
25
29
|
import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
26
30
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
@@ -29,6 +33,7 @@ import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } f
|
|
|
29
33
|
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
30
34
|
import { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
31
35
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
36
|
+
import { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
32
37
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
33
38
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
34
39
|
import { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
@@ -44,6 +49,7 @@ import { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from ".
|
|
|
44
49
|
import { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
45
50
|
import { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
46
51
|
import { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
52
|
+
import { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
47
53
|
import { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
48
54
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
49
55
|
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
@@ -57,12 +63,14 @@ import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "./com
|
|
|
57
63
|
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
58
64
|
import { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
59
65
|
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
66
|
+
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
60
67
|
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
61
68
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
62
69
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
63
70
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
64
71
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
65
72
|
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
73
|
+
import { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
66
74
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
67
75
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
68
76
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -127,6 +135,12 @@ export interface WorkMail {
|
|
|
127
135
|
createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
|
|
128
136
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
129
137
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link CreateIdentityCenterApplicationCommand}
|
|
140
|
+
*/
|
|
141
|
+
createIdentityCenterApplication(args: CreateIdentityCenterApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdentityCenterApplicationCommandOutput>;
|
|
142
|
+
createIdentityCenterApplication(args: CreateIdentityCenterApplicationCommandInput, cb: (err: any, data?: CreateIdentityCenterApplicationCommandOutput) => void): void;
|
|
143
|
+
createIdentityCenterApplication(args: CreateIdentityCenterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdentityCenterApplicationCommandOutput) => void): void;
|
|
130
144
|
/**
|
|
131
145
|
* @see {@link CreateImpersonationRoleCommand}
|
|
132
146
|
*/
|
|
@@ -187,6 +201,18 @@ export interface WorkMail {
|
|
|
187
201
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
188
202
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
189
203
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link DeleteIdentityCenterApplicationCommand}
|
|
206
|
+
*/
|
|
207
|
+
deleteIdentityCenterApplication(args: DeleteIdentityCenterApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityCenterApplicationCommandOutput>;
|
|
208
|
+
deleteIdentityCenterApplication(args: DeleteIdentityCenterApplicationCommandInput, cb: (err: any, data?: DeleteIdentityCenterApplicationCommandOutput) => void): void;
|
|
209
|
+
deleteIdentityCenterApplication(args: DeleteIdentityCenterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityCenterApplicationCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link DeleteIdentityProviderConfigurationCommand}
|
|
212
|
+
*/
|
|
213
|
+
deleteIdentityProviderConfiguration(args: DeleteIdentityProviderConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityProviderConfigurationCommandOutput>;
|
|
214
|
+
deleteIdentityProviderConfiguration(args: DeleteIdentityProviderConfigurationCommandInput, cb: (err: any, data?: DeleteIdentityProviderConfigurationCommandOutput) => void): void;
|
|
215
|
+
deleteIdentityProviderConfiguration(args: DeleteIdentityProviderConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityProviderConfigurationCommandOutput) => void): void;
|
|
190
216
|
/**
|
|
191
217
|
* @see {@link DeleteImpersonationRoleCommand}
|
|
192
218
|
*/
|
|
@@ -217,6 +243,12 @@ export interface WorkMail {
|
|
|
217
243
|
deleteOrganization(args: DeleteOrganizationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOrganizationCommandOutput>;
|
|
218
244
|
deleteOrganization(args: DeleteOrganizationCommandInput, cb: (err: any, data?: DeleteOrganizationCommandOutput) => void): void;
|
|
219
245
|
deleteOrganization(args: DeleteOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOrganizationCommandOutput) => void): void;
|
|
246
|
+
/**
|
|
247
|
+
* @see {@link DeletePersonalAccessTokenCommand}
|
|
248
|
+
*/
|
|
249
|
+
deletePersonalAccessToken(args: DeletePersonalAccessTokenCommandInput, options?: __HttpHandlerOptions): Promise<DeletePersonalAccessTokenCommandOutput>;
|
|
250
|
+
deletePersonalAccessToken(args: DeletePersonalAccessTokenCommandInput, cb: (err: any, data?: DeletePersonalAccessTokenCommandOutput) => void): void;
|
|
251
|
+
deletePersonalAccessToken(args: DeletePersonalAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePersonalAccessTokenCommandOutput) => void): void;
|
|
220
252
|
/**
|
|
221
253
|
* @see {@link DeleteResourceCommand}
|
|
222
254
|
*/
|
|
@@ -265,6 +297,12 @@ export interface WorkMail {
|
|
|
265
297
|
describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
|
|
266
298
|
describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
267
299
|
describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
300
|
+
/**
|
|
301
|
+
* @see {@link DescribeIdentityProviderConfigurationCommand}
|
|
302
|
+
*/
|
|
303
|
+
describeIdentityProviderConfiguration(args: DescribeIdentityProviderConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIdentityProviderConfigurationCommandOutput>;
|
|
304
|
+
describeIdentityProviderConfiguration(args: DescribeIdentityProviderConfigurationCommandInput, cb: (err: any, data?: DescribeIdentityProviderConfigurationCommandOutput) => void): void;
|
|
305
|
+
describeIdentityProviderConfiguration(args: DescribeIdentityProviderConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIdentityProviderConfigurationCommandOutput) => void): void;
|
|
268
306
|
/**
|
|
269
307
|
* @see {@link DescribeInboundDmarcSettingsCommand}
|
|
270
308
|
*/
|
|
@@ -355,6 +393,12 @@ export interface WorkMail {
|
|
|
355
393
|
getMobileDeviceAccessOverride(args: GetMobileDeviceAccessOverrideCommandInput, options?: __HttpHandlerOptions): Promise<GetMobileDeviceAccessOverrideCommandOutput>;
|
|
356
394
|
getMobileDeviceAccessOverride(args: GetMobileDeviceAccessOverrideCommandInput, cb: (err: any, data?: GetMobileDeviceAccessOverrideCommandOutput) => void): void;
|
|
357
395
|
getMobileDeviceAccessOverride(args: GetMobileDeviceAccessOverrideCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMobileDeviceAccessOverrideCommandOutput) => void): void;
|
|
396
|
+
/**
|
|
397
|
+
* @see {@link GetPersonalAccessTokenMetadataCommand}
|
|
398
|
+
*/
|
|
399
|
+
getPersonalAccessTokenMetadata(args: GetPersonalAccessTokenMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetPersonalAccessTokenMetadataCommandOutput>;
|
|
400
|
+
getPersonalAccessTokenMetadata(args: GetPersonalAccessTokenMetadataCommandInput, cb: (err: any, data?: GetPersonalAccessTokenMetadataCommandOutput) => void): void;
|
|
401
|
+
getPersonalAccessTokenMetadata(args: GetPersonalAccessTokenMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPersonalAccessTokenMetadataCommandOutput) => void): void;
|
|
358
402
|
/**
|
|
359
403
|
* @see {@link ListAccessControlRulesCommand}
|
|
360
404
|
*/
|
|
@@ -434,6 +478,12 @@ export interface WorkMail {
|
|
|
434
478
|
listOrganizations(args: ListOrganizationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOrganizationsCommandOutput>;
|
|
435
479
|
listOrganizations(args: ListOrganizationsCommandInput, cb: (err: any, data?: ListOrganizationsCommandOutput) => void): void;
|
|
436
480
|
listOrganizations(args: ListOrganizationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrganizationsCommandOutput) => void): void;
|
|
481
|
+
/**
|
|
482
|
+
* @see {@link ListPersonalAccessTokensCommand}
|
|
483
|
+
*/
|
|
484
|
+
listPersonalAccessTokens(args: ListPersonalAccessTokensCommandInput, options?: __HttpHandlerOptions): Promise<ListPersonalAccessTokensCommandOutput>;
|
|
485
|
+
listPersonalAccessTokens(args: ListPersonalAccessTokensCommandInput, cb: (err: any, data?: ListPersonalAccessTokensCommandOutput) => void): void;
|
|
486
|
+
listPersonalAccessTokens(args: ListPersonalAccessTokensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPersonalAccessTokensCommandOutput) => void): void;
|
|
437
487
|
/**
|
|
438
488
|
* @see {@link ListResourceDelegatesCommand}
|
|
439
489
|
*/
|
|
@@ -470,6 +520,12 @@ export interface WorkMail {
|
|
|
470
520
|
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
471
521
|
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
472
522
|
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
523
|
+
/**
|
|
524
|
+
* @see {@link PutIdentityProviderConfigurationCommand}
|
|
525
|
+
*/
|
|
526
|
+
putIdentityProviderConfiguration(args: PutIdentityProviderConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutIdentityProviderConfigurationCommandOutput>;
|
|
527
|
+
putIdentityProviderConfiguration(args: PutIdentityProviderConfigurationCommandInput, cb: (err: any, data?: PutIdentityProviderConfigurationCommandOutput) => void): void;
|
|
528
|
+
putIdentityProviderConfiguration(args: PutIdentityProviderConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIdentityProviderConfigurationCommandOutput) => void): void;
|
|
473
529
|
/**
|
|
474
530
|
* @see {@link PutInboundDmarcSettingsCommand}
|
|
475
531
|
*/
|
|
@@ -14,6 +14,7 @@ import { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput
|
|
|
14
14
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
15
15
|
import { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
16
16
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
17
|
+
import { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
17
18
|
import { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
18
19
|
import { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
19
20
|
import { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
@@ -24,11 +25,14 @@ import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/De
|
|
|
24
25
|
import { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
25
26
|
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
26
27
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
28
|
+
import { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
29
|
+
import { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
27
30
|
import { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
28
31
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
29
32
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
30
33
|
import { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
31
34
|
import { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
35
|
+
import { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
32
36
|
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
33
37
|
import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
34
38
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
@@ -37,6 +41,7 @@ import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } f
|
|
|
37
41
|
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
38
42
|
import { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
39
43
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
44
|
+
import { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
40
45
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
41
46
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
42
47
|
import { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
@@ -52,6 +57,7 @@ import { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from ".
|
|
|
52
57
|
import { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
53
58
|
import { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
54
59
|
import { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
60
|
+
import { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
55
61
|
import { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
56
62
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
57
63
|
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
@@ -65,12 +71,14 @@ import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "./com
|
|
|
65
71
|
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
66
72
|
import { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
67
73
|
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
74
|
+
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
68
75
|
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
69
76
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
70
77
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
71
78
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
72
79
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
73
80
|
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
81
|
+
import { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
74
82
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
75
83
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
76
84
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -97,11 +105,11 @@ export { __Client };
|
|
|
97
105
|
/**
|
|
98
106
|
* @public
|
|
99
107
|
*/
|
|
100
|
-
export type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | AssumeImpersonationRoleCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateAvailabilityConfigurationCommandInput | CreateGroupCommandInput | CreateImpersonationRoleCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteAvailabilityConfigurationCommandInput | DeleteEmailMonitoringConfigurationCommandInput | DeleteGroupCommandInput | DeleteImpersonationRoleCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeEmailMonitoringConfigurationCommandInput | DescribeEntityCommandInput | DescribeGroupCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetImpersonationRoleCommandInput | GetImpersonationRoleEffectCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListAvailabilityConfigurationsCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListGroupsForEntityCommandInput | ListImpersonationRolesCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutEmailMonitoringConfigurationCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | TestAvailabilityConfigurationCommandInput | UntagResourceCommandInput | UpdateAvailabilityConfigurationCommandInput | UpdateDefaultMailDomainCommandInput | UpdateGroupCommandInput | UpdateImpersonationRoleCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput | UpdateUserCommandInput;
|
|
108
|
+
export type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | AssumeImpersonationRoleCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateAvailabilityConfigurationCommandInput | CreateGroupCommandInput | CreateIdentityCenterApplicationCommandInput | CreateImpersonationRoleCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteAvailabilityConfigurationCommandInput | DeleteEmailMonitoringConfigurationCommandInput | DeleteGroupCommandInput | DeleteIdentityCenterApplicationCommandInput | DeleteIdentityProviderConfigurationCommandInput | DeleteImpersonationRoleCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeletePersonalAccessTokenCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeEmailMonitoringConfigurationCommandInput | DescribeEntityCommandInput | DescribeGroupCommandInput | DescribeIdentityProviderConfigurationCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetImpersonationRoleCommandInput | GetImpersonationRoleEffectCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | GetPersonalAccessTokenMetadataCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListAvailabilityConfigurationsCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListGroupsForEntityCommandInput | ListImpersonationRolesCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListPersonalAccessTokensCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutEmailMonitoringConfigurationCommandInput | PutIdentityProviderConfigurationCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | TestAvailabilityConfigurationCommandInput | UntagResourceCommandInput | UpdateAvailabilityConfigurationCommandInput | UpdateDefaultMailDomainCommandInput | UpdateGroupCommandInput | UpdateImpersonationRoleCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput | UpdateUserCommandInput;
|
|
101
109
|
/**
|
|
102
110
|
* @public
|
|
103
111
|
*/
|
|
104
|
-
export type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | AssumeImpersonationRoleCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateAvailabilityConfigurationCommandOutput | CreateGroupCommandOutput | CreateImpersonationRoleCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteAvailabilityConfigurationCommandOutput | DeleteEmailMonitoringConfigurationCommandOutput | DeleteGroupCommandOutput | DeleteImpersonationRoleCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeEmailMonitoringConfigurationCommandOutput | DescribeEntityCommandOutput | DescribeGroupCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetImpersonationRoleCommandOutput | GetImpersonationRoleEffectCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListAvailabilityConfigurationsCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListGroupsForEntityCommandOutput | ListImpersonationRolesCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutEmailMonitoringConfigurationCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | TestAvailabilityConfigurationCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityConfigurationCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateGroupCommandOutput | UpdateImpersonationRoleCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput | UpdateUserCommandOutput;
|
|
112
|
+
export type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | AssumeImpersonationRoleCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateAvailabilityConfigurationCommandOutput | CreateGroupCommandOutput | CreateIdentityCenterApplicationCommandOutput | CreateImpersonationRoleCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteAvailabilityConfigurationCommandOutput | DeleteEmailMonitoringConfigurationCommandOutput | DeleteGroupCommandOutput | DeleteIdentityCenterApplicationCommandOutput | DeleteIdentityProviderConfigurationCommandOutput | DeleteImpersonationRoleCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeletePersonalAccessTokenCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeEmailMonitoringConfigurationCommandOutput | DescribeEntityCommandOutput | DescribeGroupCommandOutput | DescribeIdentityProviderConfigurationCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetImpersonationRoleCommandOutput | GetImpersonationRoleEffectCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | GetPersonalAccessTokenMetadataCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListAvailabilityConfigurationsCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListGroupsForEntityCommandOutput | ListImpersonationRolesCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListPersonalAccessTokensCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutEmailMonitoringConfigurationCommandOutput | PutIdentityProviderConfigurationCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | TestAvailabilityConfigurationCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityConfigurationCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateGroupCommandOutput | UpdateImpersonationRoleCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput | UpdateUserCommandOutput;
|
|
105
113
|
/**
|
|
106
114
|
* @public
|
|
107
115
|
*/
|