@aws-sdk/client-workmail 3.1018.0 → 3.1020.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/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/WorkMail.js +11 -11
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-types/WorkMail.d.ts +92 -92
- package/dist-types/WorkMailClient.d.ts +95 -95
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAvailabilityConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGroupMembersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGroupsForEntityPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListImpersonationRolesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMailDomainsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMailboxExportJobsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMailboxPermissionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMobileDeviceAccessOverridesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOrganizationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPersonalAccessTokensPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResourceDelegatesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListUsersPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/WorkMailClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultWorkMailHttpAuthSchemeProvider = exports.defaultWorkMailHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultWorkMailHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultWorkMailHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultWorkMailHttpAuthSchemeProvider = defaultWorkMailHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/WorkMail.js
CHANGED
|
@@ -3,20 +3,20 @@ import { AssociateDelegateToResourceCommand, } from "./commands/AssociateDelegat
|
|
|
3
3
|
import { AssociateMemberToGroupCommand, } from "./commands/AssociateMemberToGroupCommand";
|
|
4
4
|
import { AssumeImpersonationRoleCommand, } from "./commands/AssumeImpersonationRoleCommand";
|
|
5
5
|
import { CancelMailboxExportJobCommand, } from "./commands/CancelMailboxExportJobCommand";
|
|
6
|
-
import { CreateAliasCommand } from "./commands/CreateAliasCommand";
|
|
6
|
+
import { CreateAliasCommand, } from "./commands/CreateAliasCommand";
|
|
7
7
|
import { CreateAvailabilityConfigurationCommand, } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
8
|
-
import { CreateGroupCommand } from "./commands/CreateGroupCommand";
|
|
8
|
+
import { CreateGroupCommand, } from "./commands/CreateGroupCommand";
|
|
9
9
|
import { CreateIdentityCenterApplicationCommand, } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
10
10
|
import { CreateImpersonationRoleCommand, } from "./commands/CreateImpersonationRoleCommand";
|
|
11
11
|
import { CreateMobileDeviceAccessRuleCommand, } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
12
12
|
import { CreateOrganizationCommand, } from "./commands/CreateOrganizationCommand";
|
|
13
13
|
import { CreateResourceCommand, } from "./commands/CreateResourceCommand";
|
|
14
|
-
import { CreateUserCommand } from "./commands/CreateUserCommand";
|
|
14
|
+
import { CreateUserCommand, } from "./commands/CreateUserCommand";
|
|
15
15
|
import { DeleteAccessControlRuleCommand, } from "./commands/DeleteAccessControlRuleCommand";
|
|
16
|
-
import { DeleteAliasCommand } from "./commands/DeleteAliasCommand";
|
|
16
|
+
import { DeleteAliasCommand, } from "./commands/DeleteAliasCommand";
|
|
17
17
|
import { DeleteAvailabilityConfigurationCommand, } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
18
18
|
import { DeleteEmailMonitoringConfigurationCommand, } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
19
|
-
import { DeleteGroupCommand } from "./commands/DeleteGroupCommand";
|
|
19
|
+
import { DeleteGroupCommand, } from "./commands/DeleteGroupCommand";
|
|
20
20
|
import { DeleteIdentityCenterApplicationCommand, } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
21
21
|
import { DeleteIdentityProviderConfigurationCommand, } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
22
22
|
import { DeleteImpersonationRoleCommand, } from "./commands/DeleteImpersonationRoleCommand";
|
|
@@ -27,7 +27,7 @@ import { DeleteOrganizationCommand, } from "./commands/DeleteOrganizationCommand
|
|
|
27
27
|
import { DeletePersonalAccessTokenCommand, } from "./commands/DeletePersonalAccessTokenCommand";
|
|
28
28
|
import { DeleteResourceCommand, } from "./commands/DeleteResourceCommand";
|
|
29
29
|
import { DeleteRetentionPolicyCommand, } from "./commands/DeleteRetentionPolicyCommand";
|
|
30
|
-
import { DeleteUserCommand } from "./commands/DeleteUserCommand";
|
|
30
|
+
import { DeleteUserCommand, } from "./commands/DeleteUserCommand";
|
|
31
31
|
import { DeregisterFromWorkMailCommand, } from "./commands/DeregisterFromWorkMailCommand";
|
|
32
32
|
import { DeregisterMailDomainCommand, } from "./commands/DeregisterMailDomainCommand";
|
|
33
33
|
import { DescribeEmailMonitoringConfigurationCommand, } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
@@ -51,10 +51,10 @@ import { GetMobileDeviceAccessEffectCommand, } from "./commands/GetMobileDeviceA
|
|
|
51
51
|
import { GetMobileDeviceAccessOverrideCommand, } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
52
52
|
import { GetPersonalAccessTokenMetadataCommand, } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
53
53
|
import { ListAccessControlRulesCommand, } from "./commands/ListAccessControlRulesCommand";
|
|
54
|
-
import { ListAliasesCommand } from "./commands/ListAliasesCommand";
|
|
54
|
+
import { ListAliasesCommand, } from "./commands/ListAliasesCommand";
|
|
55
55
|
import { ListAvailabilityConfigurationsCommand, } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
56
56
|
import { ListGroupMembersCommand, } from "./commands/ListGroupMembersCommand";
|
|
57
|
-
import { ListGroupsCommand } from "./commands/ListGroupsCommand";
|
|
57
|
+
import { ListGroupsCommand, } from "./commands/ListGroupsCommand";
|
|
58
58
|
import { ListGroupsForEntityCommand, } from "./commands/ListGroupsForEntityCommand";
|
|
59
59
|
import { ListImpersonationRolesCommand, } from "./commands/ListImpersonationRolesCommand";
|
|
60
60
|
import { ListMailboxExportJobsCommand, } from "./commands/ListMailboxExportJobsCommand";
|
|
@@ -79,18 +79,18 @@ import { RegisterMailDomainCommand, } from "./commands/RegisterMailDomainCommand
|
|
|
79
79
|
import { RegisterToWorkMailCommand, } from "./commands/RegisterToWorkMailCommand";
|
|
80
80
|
import { ResetPasswordCommand, } from "./commands/ResetPasswordCommand";
|
|
81
81
|
import { StartMailboxExportJobCommand, } from "./commands/StartMailboxExportJobCommand";
|
|
82
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
82
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
83
83
|
import { TestAvailabilityConfigurationCommand, } from "./commands/TestAvailabilityConfigurationCommand";
|
|
84
84
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
85
85
|
import { UpdateAvailabilityConfigurationCommand, } from "./commands/UpdateAvailabilityConfigurationCommand";
|
|
86
86
|
import { UpdateDefaultMailDomainCommand, } from "./commands/UpdateDefaultMailDomainCommand";
|
|
87
|
-
import { UpdateGroupCommand } from "./commands/UpdateGroupCommand";
|
|
87
|
+
import { UpdateGroupCommand, } from "./commands/UpdateGroupCommand";
|
|
88
88
|
import { UpdateImpersonationRoleCommand, } from "./commands/UpdateImpersonationRoleCommand";
|
|
89
89
|
import { UpdateMailboxQuotaCommand, } from "./commands/UpdateMailboxQuotaCommand";
|
|
90
90
|
import { UpdateMobileDeviceAccessRuleCommand, } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
91
91
|
import { UpdatePrimaryEmailAddressCommand, } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
92
92
|
import { UpdateResourceCommand, } from "./commands/UpdateResourceCommand";
|
|
93
|
-
import { UpdateUserCommand } from "./commands/UpdateUserCommand";
|
|
93
|
+
import { UpdateUserCommand, } from "./commands/UpdateUserCommand";
|
|
94
94
|
import { paginateListAliases } from "./pagination/ListAliasesPaginator";
|
|
95
95
|
import { paginateListAvailabilityConfigurations } from "./pagination/ListAvailabilityConfigurationsPaginator";
|
|
96
96
|
import { paginateListGroupMembers } from "./pagination/ListGroupMembersPaginator";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultWorkMailHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
package/dist-types/WorkMail.d.ts
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AssociateDelegateToResourceCommandInput, AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
3
|
-
import { AssociateMemberToGroupCommandInput, AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
4
|
-
import { AssumeImpersonationRoleCommandInput, AssumeImpersonationRoleCommandOutput } from "./commands/AssumeImpersonationRoleCommand";
|
|
5
|
-
import { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput } from "./commands/CancelMailboxExportJobCommand";
|
|
6
|
-
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
7
|
-
import { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
8
|
-
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
9
|
-
import { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
10
|
-
import { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
11
|
-
import { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
12
|
-
import { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
13
|
-
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
14
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
15
|
-
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
16
|
-
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
17
|
-
import { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
18
|
-
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
19
|
-
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
20
|
-
import { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
21
|
-
import { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
22
|
-
import { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
23
|
-
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
24
|
-
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
25
|
-
import { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
26
|
-
import { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
27
|
-
import { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
28
|
-
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
29
|
-
import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
30
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
31
|
-
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
32
|
-
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
33
|
-
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
34
|
-
import { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
35
|
-
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
36
|
-
import { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
37
|
-
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
38
|
-
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
39
|
-
import { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
40
|
-
import { DescribeResourceCommandInput, DescribeResourceCommandOutput } from "./commands/DescribeResourceCommand";
|
|
41
|
-
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
|
|
42
|
-
import { DisassociateDelegateFromResourceCommandInput, DisassociateDelegateFromResourceCommandOutput } from "./commands/DisassociateDelegateFromResourceCommand";
|
|
43
|
-
import { DisassociateMemberFromGroupCommandInput, DisassociateMemberFromGroupCommandOutput } from "./commands/DisassociateMemberFromGroupCommand";
|
|
44
|
-
import { GetAccessControlEffectCommandInput, GetAccessControlEffectCommandOutput } from "./commands/GetAccessControlEffectCommand";
|
|
45
|
-
import { GetDefaultRetentionPolicyCommandInput, GetDefaultRetentionPolicyCommandOutput } from "./commands/GetDefaultRetentionPolicyCommand";
|
|
46
|
-
import { GetImpersonationRoleCommandInput, GetImpersonationRoleCommandOutput } from "./commands/GetImpersonationRoleCommand";
|
|
47
|
-
import { GetImpersonationRoleEffectCommandInput, GetImpersonationRoleEffectCommandOutput } from "./commands/GetImpersonationRoleEffectCommand";
|
|
48
|
-
import { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from "./commands/GetMailboxDetailsCommand";
|
|
49
|
-
import { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
50
|
-
import { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
51
|
-
import { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
52
|
-
import { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
53
|
-
import { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
54
|
-
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
55
|
-
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
56
|
-
import { ListGroupMembersCommandInput, ListGroupMembersCommandOutput } from "./commands/ListGroupMembersCommand";
|
|
57
|
-
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
58
|
-
import { ListGroupsForEntityCommandInput, ListGroupsForEntityCommandOutput } from "./commands/ListGroupsForEntityCommand";
|
|
59
|
-
import { ListImpersonationRolesCommandInput, ListImpersonationRolesCommandOutput } from "./commands/ListImpersonationRolesCommand";
|
|
60
|
-
import { ListMailboxExportJobsCommandInput, ListMailboxExportJobsCommandOutput } from "./commands/ListMailboxExportJobsCommand";
|
|
61
|
-
import { ListMailboxPermissionsCommandInput, ListMailboxPermissionsCommandOutput } from "./commands/ListMailboxPermissionsCommand";
|
|
62
|
-
import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "./commands/ListMailDomainsCommand";
|
|
63
|
-
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
64
|
-
import { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
65
|
-
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
66
|
-
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
67
|
-
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
68
|
-
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
69
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
70
|
-
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
71
|
-
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
72
|
-
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
73
|
-
import { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
74
|
-
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
75
|
-
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
76
|
-
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
77
|
-
import { PutRetentionPolicyCommandInput, PutRetentionPolicyCommandOutput } from "./commands/PutRetentionPolicyCommand";
|
|
78
|
-
import { RegisterMailDomainCommandInput, RegisterMailDomainCommandOutput } from "./commands/RegisterMailDomainCommand";
|
|
79
|
-
import { RegisterToWorkMailCommandInput, RegisterToWorkMailCommandOutput } from "./commands/RegisterToWorkMailCommand";
|
|
80
|
-
import { ResetPasswordCommandInput, ResetPasswordCommandOutput } from "./commands/ResetPasswordCommand";
|
|
81
|
-
import { StartMailboxExportJobCommandInput, StartMailboxExportJobCommandOutput } from "./commands/StartMailboxExportJobCommand";
|
|
82
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
83
|
-
import { TestAvailabilityConfigurationCommandInput, TestAvailabilityConfigurationCommandOutput } from "./commands/TestAvailabilityConfigurationCommand";
|
|
84
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
85
|
-
import { UpdateAvailabilityConfigurationCommandInput, UpdateAvailabilityConfigurationCommandOutput } from "./commands/UpdateAvailabilityConfigurationCommand";
|
|
86
|
-
import { UpdateDefaultMailDomainCommandInput, UpdateDefaultMailDomainCommandOutput } from "./commands/UpdateDefaultMailDomainCommand";
|
|
87
|
-
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
88
|
-
import { UpdateImpersonationRoleCommandInput, UpdateImpersonationRoleCommandOutput } from "./commands/UpdateImpersonationRoleCommand";
|
|
89
|
-
import { UpdateMailboxQuotaCommandInput, UpdateMailboxQuotaCommandOutput } from "./commands/UpdateMailboxQuotaCommand";
|
|
90
|
-
import { UpdateMobileDeviceAccessRuleCommandInput, UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
91
|
-
import { UpdatePrimaryEmailAddressCommandInput, UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
92
|
-
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
93
|
-
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
2
|
+
import { type AssociateDelegateToResourceCommandInput, type AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
3
|
+
import { type AssociateMemberToGroupCommandInput, type AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
4
|
+
import { type AssumeImpersonationRoleCommandInput, type AssumeImpersonationRoleCommandOutput } from "./commands/AssumeImpersonationRoleCommand";
|
|
5
|
+
import { type CancelMailboxExportJobCommandInput, type CancelMailboxExportJobCommandOutput } from "./commands/CancelMailboxExportJobCommand";
|
|
6
|
+
import { type CreateAliasCommandInput, type CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
7
|
+
import { type CreateAvailabilityConfigurationCommandInput, type CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
8
|
+
import { type CreateGroupCommandInput, type CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
9
|
+
import { type CreateIdentityCenterApplicationCommandInput, type CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
10
|
+
import { type CreateImpersonationRoleCommandInput, type CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
11
|
+
import { type CreateMobileDeviceAccessRuleCommandInput, type CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
12
|
+
import { type CreateOrganizationCommandInput, type CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
13
|
+
import { type CreateResourceCommandInput, type CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
14
|
+
import { type CreateUserCommandInput, type CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
15
|
+
import { type DeleteAccessControlRuleCommandInput, type DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
16
|
+
import { type DeleteAliasCommandInput, type DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
17
|
+
import { type DeleteAvailabilityConfigurationCommandInput, type DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
18
|
+
import { type DeleteEmailMonitoringConfigurationCommandInput, type DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
19
|
+
import { type DeleteGroupCommandInput, type DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
20
|
+
import { type DeleteIdentityCenterApplicationCommandInput, type DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
21
|
+
import { type DeleteIdentityProviderConfigurationCommandInput, type DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
22
|
+
import { type DeleteImpersonationRoleCommandInput, type DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
23
|
+
import { type DeleteMailboxPermissionsCommandInput, type DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
24
|
+
import { type DeleteMobileDeviceAccessOverrideCommandInput, type DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
25
|
+
import { type DeleteMobileDeviceAccessRuleCommandInput, type DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
26
|
+
import { type DeleteOrganizationCommandInput, type DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
27
|
+
import { type DeletePersonalAccessTokenCommandInput, type DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
28
|
+
import { type DeleteResourceCommandInput, type DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
29
|
+
import { type DeleteRetentionPolicyCommandInput, type DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
30
|
+
import { type DeleteUserCommandInput, type DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
31
|
+
import { type DeregisterFromWorkMailCommandInput, type DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
32
|
+
import { type DeregisterMailDomainCommandInput, type DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
33
|
+
import { type DescribeEmailMonitoringConfigurationCommandInput, type DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
34
|
+
import { type DescribeEntityCommandInput, type DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
35
|
+
import { type DescribeGroupCommandInput, type DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
36
|
+
import { type DescribeIdentityProviderConfigurationCommandInput, type DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
37
|
+
import { type DescribeInboundDmarcSettingsCommandInput, type DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
38
|
+
import { type DescribeMailboxExportJobCommandInput, type DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
39
|
+
import { type DescribeOrganizationCommandInput, type DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
40
|
+
import { type DescribeResourceCommandInput, type DescribeResourceCommandOutput } from "./commands/DescribeResourceCommand";
|
|
41
|
+
import { type DescribeUserCommandInput, type DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
|
|
42
|
+
import { type DisassociateDelegateFromResourceCommandInput, type DisassociateDelegateFromResourceCommandOutput } from "./commands/DisassociateDelegateFromResourceCommand";
|
|
43
|
+
import { type DisassociateMemberFromGroupCommandInput, type DisassociateMemberFromGroupCommandOutput } from "./commands/DisassociateMemberFromGroupCommand";
|
|
44
|
+
import { type GetAccessControlEffectCommandInput, type GetAccessControlEffectCommandOutput } from "./commands/GetAccessControlEffectCommand";
|
|
45
|
+
import { type GetDefaultRetentionPolicyCommandInput, type GetDefaultRetentionPolicyCommandOutput } from "./commands/GetDefaultRetentionPolicyCommand";
|
|
46
|
+
import { type GetImpersonationRoleCommandInput, type GetImpersonationRoleCommandOutput } from "./commands/GetImpersonationRoleCommand";
|
|
47
|
+
import { type GetImpersonationRoleEffectCommandInput, type GetImpersonationRoleEffectCommandOutput } from "./commands/GetImpersonationRoleEffectCommand";
|
|
48
|
+
import { type GetMailboxDetailsCommandInput, type GetMailboxDetailsCommandOutput } from "./commands/GetMailboxDetailsCommand";
|
|
49
|
+
import { type GetMailDomainCommandInput, type GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
50
|
+
import { type GetMobileDeviceAccessEffectCommandInput, type GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
51
|
+
import { type GetMobileDeviceAccessOverrideCommandInput, type GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
52
|
+
import { type GetPersonalAccessTokenMetadataCommandInput, type GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
53
|
+
import { type ListAccessControlRulesCommandInput, type ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
54
|
+
import { type ListAliasesCommandInput, type ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
55
|
+
import { type ListAvailabilityConfigurationsCommandInput, type ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
56
|
+
import { type ListGroupMembersCommandInput, type ListGroupMembersCommandOutput } from "./commands/ListGroupMembersCommand";
|
|
57
|
+
import { type ListGroupsCommandInput, type ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
58
|
+
import { type ListGroupsForEntityCommandInput, type ListGroupsForEntityCommandOutput } from "./commands/ListGroupsForEntityCommand";
|
|
59
|
+
import { type ListImpersonationRolesCommandInput, type ListImpersonationRolesCommandOutput } from "./commands/ListImpersonationRolesCommand";
|
|
60
|
+
import { type ListMailboxExportJobsCommandInput, type ListMailboxExportJobsCommandOutput } from "./commands/ListMailboxExportJobsCommand";
|
|
61
|
+
import { type ListMailboxPermissionsCommandInput, type ListMailboxPermissionsCommandOutput } from "./commands/ListMailboxPermissionsCommand";
|
|
62
|
+
import { type ListMailDomainsCommandInput, type ListMailDomainsCommandOutput } from "./commands/ListMailDomainsCommand";
|
|
63
|
+
import { type ListMobileDeviceAccessOverridesCommandInput, type ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
64
|
+
import { type ListMobileDeviceAccessRulesCommandInput, type ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
65
|
+
import { type ListOrganizationsCommandInput, type ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
66
|
+
import { type ListPersonalAccessTokensCommandInput, type ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
67
|
+
import { type ListResourceDelegatesCommandInput, type ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
68
|
+
import { type ListResourcesCommandInput, type ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
69
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
70
|
+
import { type ListUsersCommandInput, type ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
71
|
+
import { type PutAccessControlRuleCommandInput, type PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
72
|
+
import { type PutEmailMonitoringConfigurationCommandInput, type PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
73
|
+
import { type PutIdentityProviderConfigurationCommandInput, type PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
74
|
+
import { type PutInboundDmarcSettingsCommandInput, type PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
75
|
+
import { type PutMailboxPermissionsCommandInput, type PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
76
|
+
import { type PutMobileDeviceAccessOverrideCommandInput, type PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
77
|
+
import { type PutRetentionPolicyCommandInput, type PutRetentionPolicyCommandOutput } from "./commands/PutRetentionPolicyCommand";
|
|
78
|
+
import { type RegisterMailDomainCommandInput, type RegisterMailDomainCommandOutput } from "./commands/RegisterMailDomainCommand";
|
|
79
|
+
import { type RegisterToWorkMailCommandInput, type RegisterToWorkMailCommandOutput } from "./commands/RegisterToWorkMailCommand";
|
|
80
|
+
import { type ResetPasswordCommandInput, type ResetPasswordCommandOutput } from "./commands/ResetPasswordCommand";
|
|
81
|
+
import { type StartMailboxExportJobCommandInput, type StartMailboxExportJobCommandOutput } from "./commands/StartMailboxExportJobCommand";
|
|
82
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
83
|
+
import { type TestAvailabilityConfigurationCommandInput, type TestAvailabilityConfigurationCommandOutput } from "./commands/TestAvailabilityConfigurationCommand";
|
|
84
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
85
|
+
import { type UpdateAvailabilityConfigurationCommandInput, type UpdateAvailabilityConfigurationCommandOutput } from "./commands/UpdateAvailabilityConfigurationCommand";
|
|
86
|
+
import { type UpdateDefaultMailDomainCommandInput, type UpdateDefaultMailDomainCommandOutput } from "./commands/UpdateDefaultMailDomainCommand";
|
|
87
|
+
import { type UpdateGroupCommandInput, type UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
88
|
+
import { type UpdateImpersonationRoleCommandInput, type UpdateImpersonationRoleCommandOutput } from "./commands/UpdateImpersonationRoleCommand";
|
|
89
|
+
import { type UpdateMailboxQuotaCommandInput, type UpdateMailboxQuotaCommandOutput } from "./commands/UpdateMailboxQuotaCommand";
|
|
90
|
+
import { type UpdateMobileDeviceAccessRuleCommandInput, type UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
91
|
+
import { type UpdatePrimaryEmailAddressCommandInput, type UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
92
|
+
import { type UpdateResourceCommandInput, type UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
93
|
+
import { type UpdateUserCommandInput, type UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
94
94
|
import { WorkMailClient } from "./WorkMailClient";
|
|
95
95
|
export interface WorkMail {
|
|
96
96
|
/**
|
|
@@ -5,101 +5,101 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AssociateDelegateToResourceCommandInput, AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
11
|
-
import { AssociateMemberToGroupCommandInput, AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
12
|
-
import { AssumeImpersonationRoleCommandInput, AssumeImpersonationRoleCommandOutput } from "./commands/AssumeImpersonationRoleCommand";
|
|
13
|
-
import { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput } from "./commands/CancelMailboxExportJobCommand";
|
|
14
|
-
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
15
|
-
import { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
16
|
-
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
17
|
-
import { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
18
|
-
import { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
19
|
-
import { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
20
|
-
import { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
21
|
-
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
22
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
23
|
-
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
24
|
-
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
25
|
-
import { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
26
|
-
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
27
|
-
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
28
|
-
import { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
29
|
-
import { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
30
|
-
import { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
31
|
-
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
32
|
-
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
33
|
-
import { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
34
|
-
import { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
35
|
-
import { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
36
|
-
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
37
|
-
import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
38
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
39
|
-
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
40
|
-
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
41
|
-
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
42
|
-
import { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
43
|
-
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
44
|
-
import { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
45
|
-
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
46
|
-
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
47
|
-
import { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
48
|
-
import { DescribeResourceCommandInput, DescribeResourceCommandOutput } from "./commands/DescribeResourceCommand";
|
|
49
|
-
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
|
|
50
|
-
import { DisassociateDelegateFromResourceCommandInput, DisassociateDelegateFromResourceCommandOutput } from "./commands/DisassociateDelegateFromResourceCommand";
|
|
51
|
-
import { DisassociateMemberFromGroupCommandInput, DisassociateMemberFromGroupCommandOutput } from "./commands/DisassociateMemberFromGroupCommand";
|
|
52
|
-
import { GetAccessControlEffectCommandInput, GetAccessControlEffectCommandOutput } from "./commands/GetAccessControlEffectCommand";
|
|
53
|
-
import { GetDefaultRetentionPolicyCommandInput, GetDefaultRetentionPolicyCommandOutput } from "./commands/GetDefaultRetentionPolicyCommand";
|
|
54
|
-
import { GetImpersonationRoleCommandInput, GetImpersonationRoleCommandOutput } from "./commands/GetImpersonationRoleCommand";
|
|
55
|
-
import { GetImpersonationRoleEffectCommandInput, GetImpersonationRoleEffectCommandOutput } from "./commands/GetImpersonationRoleEffectCommand";
|
|
56
|
-
import { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from "./commands/GetMailboxDetailsCommand";
|
|
57
|
-
import { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
58
|
-
import { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
59
|
-
import { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
60
|
-
import { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
61
|
-
import { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
62
|
-
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
63
|
-
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
64
|
-
import { ListGroupMembersCommandInput, ListGroupMembersCommandOutput } from "./commands/ListGroupMembersCommand";
|
|
65
|
-
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
66
|
-
import { ListGroupsForEntityCommandInput, ListGroupsForEntityCommandOutput } from "./commands/ListGroupsForEntityCommand";
|
|
67
|
-
import { ListImpersonationRolesCommandInput, ListImpersonationRolesCommandOutput } from "./commands/ListImpersonationRolesCommand";
|
|
68
|
-
import { ListMailboxExportJobsCommandInput, ListMailboxExportJobsCommandOutput } from "./commands/ListMailboxExportJobsCommand";
|
|
69
|
-
import { ListMailboxPermissionsCommandInput, ListMailboxPermissionsCommandOutput } from "./commands/ListMailboxPermissionsCommand";
|
|
70
|
-
import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "./commands/ListMailDomainsCommand";
|
|
71
|
-
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
72
|
-
import { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
73
|
-
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
74
|
-
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
75
|
-
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
76
|
-
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
77
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
78
|
-
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
79
|
-
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
80
|
-
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
81
|
-
import { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
82
|
-
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
83
|
-
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
84
|
-
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
85
|
-
import { PutRetentionPolicyCommandInput, PutRetentionPolicyCommandOutput } from "./commands/PutRetentionPolicyCommand";
|
|
86
|
-
import { RegisterMailDomainCommandInput, RegisterMailDomainCommandOutput } from "./commands/RegisterMailDomainCommand";
|
|
87
|
-
import { RegisterToWorkMailCommandInput, RegisterToWorkMailCommandOutput } from "./commands/RegisterToWorkMailCommand";
|
|
88
|
-
import { ResetPasswordCommandInput, ResetPasswordCommandOutput } from "./commands/ResetPasswordCommand";
|
|
89
|
-
import { StartMailboxExportJobCommandInput, StartMailboxExportJobCommandOutput } from "./commands/StartMailboxExportJobCommand";
|
|
90
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
91
|
-
import { TestAvailabilityConfigurationCommandInput, TestAvailabilityConfigurationCommandOutput } from "./commands/TestAvailabilityConfigurationCommand";
|
|
92
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
93
|
-
import { UpdateAvailabilityConfigurationCommandInput, UpdateAvailabilityConfigurationCommandOutput } from "./commands/UpdateAvailabilityConfigurationCommand";
|
|
94
|
-
import { UpdateDefaultMailDomainCommandInput, UpdateDefaultMailDomainCommandOutput } from "./commands/UpdateDefaultMailDomainCommand";
|
|
95
|
-
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
96
|
-
import { UpdateImpersonationRoleCommandInput, UpdateImpersonationRoleCommandOutput } from "./commands/UpdateImpersonationRoleCommand";
|
|
97
|
-
import { UpdateMailboxQuotaCommandInput, UpdateMailboxQuotaCommandOutput } from "./commands/UpdateMailboxQuotaCommand";
|
|
98
|
-
import { UpdateMobileDeviceAccessRuleCommandInput, UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
99
|
-
import { UpdatePrimaryEmailAddressCommandInput, UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
100
|
-
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
101
|
-
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
102
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AssociateDelegateToResourceCommandInput, AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
11
|
+
import type { AssociateMemberToGroupCommandInput, AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
12
|
+
import type { AssumeImpersonationRoleCommandInput, AssumeImpersonationRoleCommandOutput } from "./commands/AssumeImpersonationRoleCommand";
|
|
13
|
+
import type { CancelMailboxExportJobCommandInput, CancelMailboxExportJobCommandOutput } from "./commands/CancelMailboxExportJobCommand";
|
|
14
|
+
import type { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
15
|
+
import type { CreateAvailabilityConfigurationCommandInput, CreateAvailabilityConfigurationCommandOutput } from "./commands/CreateAvailabilityConfigurationCommand";
|
|
16
|
+
import type { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
17
|
+
import type { CreateIdentityCenterApplicationCommandInput, CreateIdentityCenterApplicationCommandOutput } from "./commands/CreateIdentityCenterApplicationCommand";
|
|
18
|
+
import type { CreateImpersonationRoleCommandInput, CreateImpersonationRoleCommandOutput } from "./commands/CreateImpersonationRoleCommand";
|
|
19
|
+
import type { CreateMobileDeviceAccessRuleCommandInput, CreateMobileDeviceAccessRuleCommandOutput } from "./commands/CreateMobileDeviceAccessRuleCommand";
|
|
20
|
+
import type { CreateOrganizationCommandInput, CreateOrganizationCommandOutput } from "./commands/CreateOrganizationCommand";
|
|
21
|
+
import type { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
22
|
+
import type { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
23
|
+
import type { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
24
|
+
import type { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
25
|
+
import type { DeleteAvailabilityConfigurationCommandInput, DeleteAvailabilityConfigurationCommandOutput } from "./commands/DeleteAvailabilityConfigurationCommand";
|
|
26
|
+
import type { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
27
|
+
import type { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
28
|
+
import type { DeleteIdentityCenterApplicationCommandInput, DeleteIdentityCenterApplicationCommandOutput } from "./commands/DeleteIdentityCenterApplicationCommand";
|
|
29
|
+
import type { DeleteIdentityProviderConfigurationCommandInput, DeleteIdentityProviderConfigurationCommandOutput } from "./commands/DeleteIdentityProviderConfigurationCommand";
|
|
30
|
+
import type { DeleteImpersonationRoleCommandInput, DeleteImpersonationRoleCommandOutput } from "./commands/DeleteImpersonationRoleCommand";
|
|
31
|
+
import type { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
32
|
+
import type { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
33
|
+
import type { DeleteMobileDeviceAccessRuleCommandInput, DeleteMobileDeviceAccessRuleCommandOutput } from "./commands/DeleteMobileDeviceAccessRuleCommand";
|
|
34
|
+
import type { DeleteOrganizationCommandInput, DeleteOrganizationCommandOutput } from "./commands/DeleteOrganizationCommand";
|
|
35
|
+
import type { DeletePersonalAccessTokenCommandInput, DeletePersonalAccessTokenCommandOutput } from "./commands/DeletePersonalAccessTokenCommand";
|
|
36
|
+
import type { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
37
|
+
import type { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
38
|
+
import type { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
39
|
+
import type { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
40
|
+
import type { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
41
|
+
import type { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
42
|
+
import type { DescribeEntityCommandInput, DescribeEntityCommandOutput } from "./commands/DescribeEntityCommand";
|
|
43
|
+
import type { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
44
|
+
import type { DescribeIdentityProviderConfigurationCommandInput, DescribeIdentityProviderConfigurationCommandOutput } from "./commands/DescribeIdentityProviderConfigurationCommand";
|
|
45
|
+
import type { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
46
|
+
import type { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
47
|
+
import type { DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput } from "./commands/DescribeOrganizationCommand";
|
|
48
|
+
import type { DescribeResourceCommandInput, DescribeResourceCommandOutput } from "./commands/DescribeResourceCommand";
|
|
49
|
+
import type { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
|
|
50
|
+
import type { DisassociateDelegateFromResourceCommandInput, DisassociateDelegateFromResourceCommandOutput } from "./commands/DisassociateDelegateFromResourceCommand";
|
|
51
|
+
import type { DisassociateMemberFromGroupCommandInput, DisassociateMemberFromGroupCommandOutput } from "./commands/DisassociateMemberFromGroupCommand";
|
|
52
|
+
import type { GetAccessControlEffectCommandInput, GetAccessControlEffectCommandOutput } from "./commands/GetAccessControlEffectCommand";
|
|
53
|
+
import type { GetDefaultRetentionPolicyCommandInput, GetDefaultRetentionPolicyCommandOutput } from "./commands/GetDefaultRetentionPolicyCommand";
|
|
54
|
+
import type { GetImpersonationRoleCommandInput, GetImpersonationRoleCommandOutput } from "./commands/GetImpersonationRoleCommand";
|
|
55
|
+
import type { GetImpersonationRoleEffectCommandInput, GetImpersonationRoleEffectCommandOutput } from "./commands/GetImpersonationRoleEffectCommand";
|
|
56
|
+
import type { GetMailboxDetailsCommandInput, GetMailboxDetailsCommandOutput } from "./commands/GetMailboxDetailsCommand";
|
|
57
|
+
import type { GetMailDomainCommandInput, GetMailDomainCommandOutput } from "./commands/GetMailDomainCommand";
|
|
58
|
+
import type { GetMobileDeviceAccessEffectCommandInput, GetMobileDeviceAccessEffectCommandOutput } from "./commands/GetMobileDeviceAccessEffectCommand";
|
|
59
|
+
import type { GetMobileDeviceAccessOverrideCommandInput, GetMobileDeviceAccessOverrideCommandOutput } from "./commands/GetMobileDeviceAccessOverrideCommand";
|
|
60
|
+
import type { GetPersonalAccessTokenMetadataCommandInput, GetPersonalAccessTokenMetadataCommandOutput } from "./commands/GetPersonalAccessTokenMetadataCommand";
|
|
61
|
+
import type { ListAccessControlRulesCommandInput, ListAccessControlRulesCommandOutput } from "./commands/ListAccessControlRulesCommand";
|
|
62
|
+
import type { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
63
|
+
import type { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "./commands/ListAvailabilityConfigurationsCommand";
|
|
64
|
+
import type { ListGroupMembersCommandInput, ListGroupMembersCommandOutput } from "./commands/ListGroupMembersCommand";
|
|
65
|
+
import type { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
66
|
+
import type { ListGroupsForEntityCommandInput, ListGroupsForEntityCommandOutput } from "./commands/ListGroupsForEntityCommand";
|
|
67
|
+
import type { ListImpersonationRolesCommandInput, ListImpersonationRolesCommandOutput } from "./commands/ListImpersonationRolesCommand";
|
|
68
|
+
import type { ListMailboxExportJobsCommandInput, ListMailboxExportJobsCommandOutput } from "./commands/ListMailboxExportJobsCommand";
|
|
69
|
+
import type { ListMailboxPermissionsCommandInput, ListMailboxPermissionsCommandOutput } from "./commands/ListMailboxPermissionsCommand";
|
|
70
|
+
import type { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "./commands/ListMailDomainsCommand";
|
|
71
|
+
import type { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "./commands/ListMobileDeviceAccessOverridesCommand";
|
|
72
|
+
import type { ListMobileDeviceAccessRulesCommandInput, ListMobileDeviceAccessRulesCommandOutput } from "./commands/ListMobileDeviceAccessRulesCommand";
|
|
73
|
+
import type { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "./commands/ListOrganizationsCommand";
|
|
74
|
+
import type { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "./commands/ListPersonalAccessTokensCommand";
|
|
75
|
+
import type { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "./commands/ListResourceDelegatesCommand";
|
|
76
|
+
import type { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
77
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
78
|
+
import type { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
79
|
+
import type { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
80
|
+
import type { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
81
|
+
import type { PutIdentityProviderConfigurationCommandInput, PutIdentityProviderConfigurationCommandOutput } from "./commands/PutIdentityProviderConfigurationCommand";
|
|
82
|
+
import type { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
83
|
+
import type { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
84
|
+
import type { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
85
|
+
import type { PutRetentionPolicyCommandInput, PutRetentionPolicyCommandOutput } from "./commands/PutRetentionPolicyCommand";
|
|
86
|
+
import type { RegisterMailDomainCommandInput, RegisterMailDomainCommandOutput } from "./commands/RegisterMailDomainCommand";
|
|
87
|
+
import type { RegisterToWorkMailCommandInput, RegisterToWorkMailCommandOutput } from "./commands/RegisterToWorkMailCommand";
|
|
88
|
+
import type { ResetPasswordCommandInput, ResetPasswordCommandOutput } from "./commands/ResetPasswordCommand";
|
|
89
|
+
import type { StartMailboxExportJobCommandInput, StartMailboxExportJobCommandOutput } from "./commands/StartMailboxExportJobCommand";
|
|
90
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
91
|
+
import type { TestAvailabilityConfigurationCommandInput, TestAvailabilityConfigurationCommandOutput } from "./commands/TestAvailabilityConfigurationCommand";
|
|
92
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
93
|
+
import type { UpdateAvailabilityConfigurationCommandInput, UpdateAvailabilityConfigurationCommandOutput } from "./commands/UpdateAvailabilityConfigurationCommand";
|
|
94
|
+
import type { UpdateDefaultMailDomainCommandInput, UpdateDefaultMailDomainCommandOutput } from "./commands/UpdateDefaultMailDomainCommand";
|
|
95
|
+
import type { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
96
|
+
import type { UpdateImpersonationRoleCommandInput, UpdateImpersonationRoleCommandOutput } from "./commands/UpdateImpersonationRoleCommand";
|
|
97
|
+
import type { UpdateMailboxQuotaCommandInput, UpdateMailboxQuotaCommandOutput } from "./commands/UpdateMailboxQuotaCommand";
|
|
98
|
+
import type { UpdateMobileDeviceAccessRuleCommandInput, UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
99
|
+
import type { UpdatePrimaryEmailAddressCommandInput, UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
100
|
+
import type { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
101
|
+
import type { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
102
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
103
103
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
104
104
|
export { __Client };
|
|
105
105
|
/**
|
|
@@ -208,7 +208,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
208
208
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
209
209
|
* @internal
|
|
210
210
|
*/
|
|
211
|
-
defaultUserAgentProvider?:
|
|
211
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
212
212
|
/**
|
|
213
213
|
* Default credentials provider; Not available in browser runtime.
|
|
214
214
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { WorkMailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
4
4
|
/**
|
package/dist-types/index.d.ts
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
*/
|
|
41
41
|
export * from "./WorkMailClient";
|
|
42
42
|
export * from "./WorkMail";
|
|
43
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
43
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
44
44
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
45
45
|
export type { WorkMailExtensionConfiguration } from "./extensionConfiguration";
|
|
46
46
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlRuleEffect, AccessEffect, AvailabilityProviderType, DnsRecordVerificationStatus, EntityState, EntityType, FolderName, IdentityProviderAuthenticationMode, ImpersonationRoleType, MailboxExportJobState, MemberType, MobileDeviceAccessRuleEffect, PermissionType, PersonalAccessTokenConfigurationStatus, ResourceType, RetentionAction, UserRole } from "./enums";
|
|
1
|
+
import type { AccessControlRuleEffect, AccessEffect, AvailabilityProviderType, DnsRecordVerificationStatus, EntityState, EntityType, FolderName, IdentityProviderAuthenticationMode, ImpersonationRoleType, MailboxExportJobState, MemberType, MobileDeviceAccessRuleEffect, PermissionType, PersonalAccessTokenConfigurationStatus, ResourceType, RetentionAction, UserRole } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>A rule that controls access to an WorkMail organization.</p>
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAvailabilityConfigurationsCommandInput, ListAvailabilityConfigurationsCommandOutput } from "../commands/ListAvailabilityConfigurationsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGroupMembersCommandInput, ListGroupMembersCommandOutput } from "../commands/ListGroupMembersCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGroupsForEntityCommandInput, ListGroupsForEntityCommandOutput } from "../commands/ListGroupsForEntityCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListImpersonationRolesCommandInput, ListImpersonationRolesCommandOutput } from "../commands/ListImpersonationRolesCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMailDomainsCommandInput, ListMailDomainsCommandOutput } from "../commands/ListMailDomainsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMailboxExportJobsCommandInput, ListMailboxExportJobsCommandOutput } from "../commands/ListMailboxExportJobsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMailboxPermissionsCommandInput, ListMailboxPermissionsCommandOutput } from "../commands/ListMailboxPermissionsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMobileDeviceAccessOverridesCommandInput, ListMobileDeviceAccessOverridesCommandOutput } from "../commands/ListMobileDeviceAccessOverridesCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListOrganizationsCommandInput, ListOrganizationsCommandOutput } from "../commands/ListOrganizationsCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListPersonalAccessTokensCommandInput, ListPersonalAccessTokensCommandOutput } from "../commands/ListPersonalAccessTokensCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResourceDelegatesCommandInput, ListResourceDelegatesCommandOutput } from "../commands/ListResourceDelegatesCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
3
|
-
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -624,7 +623,7 @@ export interface ClientDefaults
|
|
|
624
623
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
625
624
|
region?: string | __Provider<string>;
|
|
626
625
|
profile?: string;
|
|
627
|
-
defaultUserAgentProvider?:
|
|
626
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
628
627
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
629
628
|
maxAttempts?: number | __Provider<number>;
|
|
630
629
|
retryMode?: string | __Provider<string>;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workmail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workmail Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1020.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workmail",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|