@aws-sdk/client-workmail 3.974.0 → 3.978.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/index.js +48 -31
- package/dist-es/WorkMail.js +33 -1
- package/dist-types/WorkMail.d.ts +106 -1
- package/dist-types/ts3.4/WorkMail.d.ts +110 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -3618,6 +3618,36 @@ class UpdateUserCommand extends smithyClient.Command
|
|
|
3618
3618
|
.build() {
|
|
3619
3619
|
}
|
|
3620
3620
|
|
|
3621
|
+
const paginateListAliases = core.createPaginator(WorkMailClient, ListAliasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3622
|
+
|
|
3623
|
+
const paginateListAvailabilityConfigurations = core.createPaginator(WorkMailClient, ListAvailabilityConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3624
|
+
|
|
3625
|
+
const paginateListGroupMembers = core.createPaginator(WorkMailClient, ListGroupMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3626
|
+
|
|
3627
|
+
const paginateListGroupsForEntity = core.createPaginator(WorkMailClient, ListGroupsForEntityCommand, "NextToken", "NextToken", "MaxResults");
|
|
3628
|
+
|
|
3629
|
+
const paginateListGroups = core.createPaginator(WorkMailClient, ListGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3630
|
+
|
|
3631
|
+
const paginateListImpersonationRoles = core.createPaginator(WorkMailClient, ListImpersonationRolesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3632
|
+
|
|
3633
|
+
const paginateListMailboxExportJobs = core.createPaginator(WorkMailClient, ListMailboxExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3634
|
+
|
|
3635
|
+
const paginateListMailboxPermissions = core.createPaginator(WorkMailClient, ListMailboxPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3636
|
+
|
|
3637
|
+
const paginateListMailDomains = core.createPaginator(WorkMailClient, ListMailDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3638
|
+
|
|
3639
|
+
const paginateListMobileDeviceAccessOverrides = core.createPaginator(WorkMailClient, ListMobileDeviceAccessOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3640
|
+
|
|
3641
|
+
const paginateListOrganizations = core.createPaginator(WorkMailClient, ListOrganizationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3642
|
+
|
|
3643
|
+
const paginateListPersonalAccessTokens = core.createPaginator(WorkMailClient, ListPersonalAccessTokensCommand, "NextToken", "NextToken", "MaxResults");
|
|
3644
|
+
|
|
3645
|
+
const paginateListResourceDelegates = core.createPaginator(WorkMailClient, ListResourceDelegatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3646
|
+
|
|
3647
|
+
const paginateListResources = core.createPaginator(WorkMailClient, ListResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3648
|
+
|
|
3649
|
+
const paginateListUsers = core.createPaginator(WorkMailClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3650
|
+
|
|
3621
3651
|
const commands = {
|
|
3622
3652
|
AssociateDelegateToResourceCommand,
|
|
3623
3653
|
AssociateMemberToGroupCommand,
|
|
@@ -3712,39 +3742,26 @@ const commands = {
|
|
|
3712
3742
|
UpdateResourceCommand,
|
|
3713
3743
|
UpdateUserCommand,
|
|
3714
3744
|
};
|
|
3745
|
+
const paginators = {
|
|
3746
|
+
paginateListAliases,
|
|
3747
|
+
paginateListAvailabilityConfigurations,
|
|
3748
|
+
paginateListGroupMembers,
|
|
3749
|
+
paginateListGroups,
|
|
3750
|
+
paginateListGroupsForEntity,
|
|
3751
|
+
paginateListImpersonationRoles,
|
|
3752
|
+
paginateListMailboxExportJobs,
|
|
3753
|
+
paginateListMailboxPermissions,
|
|
3754
|
+
paginateListMailDomains,
|
|
3755
|
+
paginateListMobileDeviceAccessOverrides,
|
|
3756
|
+
paginateListOrganizations,
|
|
3757
|
+
paginateListPersonalAccessTokens,
|
|
3758
|
+
paginateListResourceDelegates,
|
|
3759
|
+
paginateListResources,
|
|
3760
|
+
paginateListUsers,
|
|
3761
|
+
};
|
|
3715
3762
|
class WorkMail extends WorkMailClient {
|
|
3716
3763
|
}
|
|
3717
|
-
smithyClient.createAggregatedClient(commands, WorkMail);
|
|
3718
|
-
|
|
3719
|
-
const paginateListAliases = core.createPaginator(WorkMailClient, ListAliasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3720
|
-
|
|
3721
|
-
const paginateListAvailabilityConfigurations = core.createPaginator(WorkMailClient, ListAvailabilityConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3722
|
-
|
|
3723
|
-
const paginateListGroupMembers = core.createPaginator(WorkMailClient, ListGroupMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3724
|
-
|
|
3725
|
-
const paginateListGroups = core.createPaginator(WorkMailClient, ListGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3726
|
-
|
|
3727
|
-
const paginateListGroupsForEntity = core.createPaginator(WorkMailClient, ListGroupsForEntityCommand, "NextToken", "NextToken", "MaxResults");
|
|
3728
|
-
|
|
3729
|
-
const paginateListImpersonationRoles = core.createPaginator(WorkMailClient, ListImpersonationRolesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3730
|
-
|
|
3731
|
-
const paginateListMailboxExportJobs = core.createPaginator(WorkMailClient, ListMailboxExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3732
|
-
|
|
3733
|
-
const paginateListMailboxPermissions = core.createPaginator(WorkMailClient, ListMailboxPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3734
|
-
|
|
3735
|
-
const paginateListMailDomains = core.createPaginator(WorkMailClient, ListMailDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3736
|
-
|
|
3737
|
-
const paginateListMobileDeviceAccessOverrides = core.createPaginator(WorkMailClient, ListMobileDeviceAccessOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3738
|
-
|
|
3739
|
-
const paginateListOrganizations = core.createPaginator(WorkMailClient, ListOrganizationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3740
|
-
|
|
3741
|
-
const paginateListPersonalAccessTokens = core.createPaginator(WorkMailClient, ListPersonalAccessTokensCommand, "NextToken", "NextToken", "MaxResults");
|
|
3742
|
-
|
|
3743
|
-
const paginateListResourceDelegates = core.createPaginator(WorkMailClient, ListResourceDelegatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3744
|
-
|
|
3745
|
-
const paginateListResources = core.createPaginator(WorkMailClient, ListResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3746
|
-
|
|
3747
|
-
const paginateListUsers = core.createPaginator(WorkMailClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3764
|
+
smithyClient.createAggregatedClient(commands, WorkMail, { paginators });
|
|
3748
3765
|
|
|
3749
3766
|
const AccessControlRuleEffect = {
|
|
3750
3767
|
ALLOW: "ALLOW",
|
package/dist-es/WorkMail.js
CHANGED
|
@@ -91,6 +91,21 @@ import { UpdateMobileDeviceAccessRuleCommand, } from "./commands/UpdateMobileDev
|
|
|
91
91
|
import { UpdatePrimaryEmailAddressCommand, } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
92
92
|
import { UpdateResourceCommand, } from "./commands/UpdateResourceCommand";
|
|
93
93
|
import { UpdateUserCommand } from "./commands/UpdateUserCommand";
|
|
94
|
+
import { paginateListAliases } from "./pagination/ListAliasesPaginator";
|
|
95
|
+
import { paginateListAvailabilityConfigurations } from "./pagination/ListAvailabilityConfigurationsPaginator";
|
|
96
|
+
import { paginateListGroupMembers } from "./pagination/ListGroupMembersPaginator";
|
|
97
|
+
import { paginateListGroupsForEntity } from "./pagination/ListGroupsForEntityPaginator";
|
|
98
|
+
import { paginateListGroups } from "./pagination/ListGroupsPaginator";
|
|
99
|
+
import { paginateListImpersonationRoles } from "./pagination/ListImpersonationRolesPaginator";
|
|
100
|
+
import { paginateListMailboxExportJobs } from "./pagination/ListMailboxExportJobsPaginator";
|
|
101
|
+
import { paginateListMailboxPermissions } from "./pagination/ListMailboxPermissionsPaginator";
|
|
102
|
+
import { paginateListMailDomains } from "./pagination/ListMailDomainsPaginator";
|
|
103
|
+
import { paginateListMobileDeviceAccessOverrides } from "./pagination/ListMobileDeviceAccessOverridesPaginator";
|
|
104
|
+
import { paginateListOrganizations } from "./pagination/ListOrganizationsPaginator";
|
|
105
|
+
import { paginateListPersonalAccessTokens } from "./pagination/ListPersonalAccessTokensPaginator";
|
|
106
|
+
import { paginateListResourceDelegates } from "./pagination/ListResourceDelegatesPaginator";
|
|
107
|
+
import { paginateListResources } from "./pagination/ListResourcesPaginator";
|
|
108
|
+
import { paginateListUsers } from "./pagination/ListUsersPaginator";
|
|
94
109
|
import { WorkMailClient } from "./WorkMailClient";
|
|
95
110
|
const commands = {
|
|
96
111
|
AssociateDelegateToResourceCommand,
|
|
@@ -186,6 +201,23 @@ const commands = {
|
|
|
186
201
|
UpdateResourceCommand,
|
|
187
202
|
UpdateUserCommand,
|
|
188
203
|
};
|
|
204
|
+
const paginators = {
|
|
205
|
+
paginateListAliases,
|
|
206
|
+
paginateListAvailabilityConfigurations,
|
|
207
|
+
paginateListGroupMembers,
|
|
208
|
+
paginateListGroups,
|
|
209
|
+
paginateListGroupsForEntity,
|
|
210
|
+
paginateListImpersonationRoles,
|
|
211
|
+
paginateListMailboxExportJobs,
|
|
212
|
+
paginateListMailboxPermissions,
|
|
213
|
+
paginateListMailDomains,
|
|
214
|
+
paginateListMobileDeviceAccessOverrides,
|
|
215
|
+
paginateListOrganizations,
|
|
216
|
+
paginateListPersonalAccessTokens,
|
|
217
|
+
paginateListResourceDelegates,
|
|
218
|
+
paginateListResources,
|
|
219
|
+
paginateListUsers,
|
|
220
|
+
};
|
|
189
221
|
export class WorkMail extends WorkMailClient {
|
|
190
222
|
}
|
|
191
|
-
createAggregatedClient(commands, WorkMail);
|
|
223
|
+
createAggregatedClient(commands, WorkMail, { paginators });
|
package/dist-types/WorkMail.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateDelegateToResourceCommandInput, AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
3
3
|
import { AssociateMemberToGroupCommandInput, AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
4
4
|
import { AssumeImpersonationRoleCommandInput, AssumeImpersonationRoleCommandOutput } from "./commands/AssumeImpersonationRoleCommand";
|
|
@@ -646,6 +646,111 @@ export interface WorkMail {
|
|
|
646
646
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
647
647
|
updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
648
648
|
updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
649
|
+
/**
|
|
650
|
+
* @see {@link ListAliasesCommand}
|
|
651
|
+
* @param args - command input.
|
|
652
|
+
* @param paginationConfig - optional pagination config.
|
|
653
|
+
* @returns AsyncIterable of {@link ListAliasesCommandOutput}.
|
|
654
|
+
*/
|
|
655
|
+
paginateListAliases(args: ListAliasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAliasesCommandOutput>;
|
|
656
|
+
/**
|
|
657
|
+
* @see {@link ListAvailabilityConfigurationsCommand}
|
|
658
|
+
* @param args - command input.
|
|
659
|
+
* @param paginationConfig - optional pagination config.
|
|
660
|
+
* @returns AsyncIterable of {@link ListAvailabilityConfigurationsCommandOutput}.
|
|
661
|
+
*/
|
|
662
|
+
paginateListAvailabilityConfigurations(args: ListAvailabilityConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAvailabilityConfigurationsCommandOutput>;
|
|
663
|
+
/**
|
|
664
|
+
* @see {@link ListGroupMembersCommand}
|
|
665
|
+
* @param args - command input.
|
|
666
|
+
* @param paginationConfig - optional pagination config.
|
|
667
|
+
* @returns AsyncIterable of {@link ListGroupMembersCommandOutput}.
|
|
668
|
+
*/
|
|
669
|
+
paginateListGroupMembers(args: ListGroupMembersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGroupMembersCommandOutput>;
|
|
670
|
+
/**
|
|
671
|
+
* @see {@link ListGroupsCommand}
|
|
672
|
+
* @param args - command input.
|
|
673
|
+
* @param paginationConfig - optional pagination config.
|
|
674
|
+
* @returns AsyncIterable of {@link ListGroupsCommandOutput}.
|
|
675
|
+
*/
|
|
676
|
+
paginateListGroups(args: ListGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGroupsCommandOutput>;
|
|
677
|
+
/**
|
|
678
|
+
* @see {@link ListGroupsForEntityCommand}
|
|
679
|
+
* @param args - command input.
|
|
680
|
+
* @param paginationConfig - optional pagination config.
|
|
681
|
+
* @returns AsyncIterable of {@link ListGroupsForEntityCommandOutput}.
|
|
682
|
+
*/
|
|
683
|
+
paginateListGroupsForEntity(args: ListGroupsForEntityCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGroupsForEntityCommandOutput>;
|
|
684
|
+
/**
|
|
685
|
+
* @see {@link ListImpersonationRolesCommand}
|
|
686
|
+
* @param args - command input.
|
|
687
|
+
* @param paginationConfig - optional pagination config.
|
|
688
|
+
* @returns AsyncIterable of {@link ListImpersonationRolesCommandOutput}.
|
|
689
|
+
*/
|
|
690
|
+
paginateListImpersonationRoles(args: ListImpersonationRolesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImpersonationRolesCommandOutput>;
|
|
691
|
+
/**
|
|
692
|
+
* @see {@link ListMailboxExportJobsCommand}
|
|
693
|
+
* @param args - command input.
|
|
694
|
+
* @param paginationConfig - optional pagination config.
|
|
695
|
+
* @returns AsyncIterable of {@link ListMailboxExportJobsCommandOutput}.
|
|
696
|
+
*/
|
|
697
|
+
paginateListMailboxExportJobs(args: ListMailboxExportJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMailboxExportJobsCommandOutput>;
|
|
698
|
+
/**
|
|
699
|
+
* @see {@link ListMailboxPermissionsCommand}
|
|
700
|
+
* @param args - command input.
|
|
701
|
+
* @param paginationConfig - optional pagination config.
|
|
702
|
+
* @returns AsyncIterable of {@link ListMailboxPermissionsCommandOutput}.
|
|
703
|
+
*/
|
|
704
|
+
paginateListMailboxPermissions(args: ListMailboxPermissionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMailboxPermissionsCommandOutput>;
|
|
705
|
+
/**
|
|
706
|
+
* @see {@link ListMailDomainsCommand}
|
|
707
|
+
* @param args - command input.
|
|
708
|
+
* @param paginationConfig - optional pagination config.
|
|
709
|
+
* @returns AsyncIterable of {@link ListMailDomainsCommandOutput}.
|
|
710
|
+
*/
|
|
711
|
+
paginateListMailDomains(args: ListMailDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMailDomainsCommandOutput>;
|
|
712
|
+
/**
|
|
713
|
+
* @see {@link ListMobileDeviceAccessOverridesCommand}
|
|
714
|
+
* @param args - command input.
|
|
715
|
+
* @param paginationConfig - optional pagination config.
|
|
716
|
+
* @returns AsyncIterable of {@link ListMobileDeviceAccessOverridesCommandOutput}.
|
|
717
|
+
*/
|
|
718
|
+
paginateListMobileDeviceAccessOverrides(args: ListMobileDeviceAccessOverridesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMobileDeviceAccessOverridesCommandOutput>;
|
|
719
|
+
/**
|
|
720
|
+
* @see {@link ListOrganizationsCommand}
|
|
721
|
+
* @param args - command input.
|
|
722
|
+
* @param paginationConfig - optional pagination config.
|
|
723
|
+
* @returns AsyncIterable of {@link ListOrganizationsCommandOutput}.
|
|
724
|
+
*/
|
|
725
|
+
paginateListOrganizations(args?: ListOrganizationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOrganizationsCommandOutput>;
|
|
726
|
+
/**
|
|
727
|
+
* @see {@link ListPersonalAccessTokensCommand}
|
|
728
|
+
* @param args - command input.
|
|
729
|
+
* @param paginationConfig - optional pagination config.
|
|
730
|
+
* @returns AsyncIterable of {@link ListPersonalAccessTokensCommandOutput}.
|
|
731
|
+
*/
|
|
732
|
+
paginateListPersonalAccessTokens(args: ListPersonalAccessTokensCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPersonalAccessTokensCommandOutput>;
|
|
733
|
+
/**
|
|
734
|
+
* @see {@link ListResourceDelegatesCommand}
|
|
735
|
+
* @param args - command input.
|
|
736
|
+
* @param paginationConfig - optional pagination config.
|
|
737
|
+
* @returns AsyncIterable of {@link ListResourceDelegatesCommandOutput}.
|
|
738
|
+
*/
|
|
739
|
+
paginateListResourceDelegates(args: ListResourceDelegatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceDelegatesCommandOutput>;
|
|
740
|
+
/**
|
|
741
|
+
* @see {@link ListResourcesCommand}
|
|
742
|
+
* @param args - command input.
|
|
743
|
+
* @param paginationConfig - optional pagination config.
|
|
744
|
+
* @returns AsyncIterable of {@link ListResourcesCommandOutput}.
|
|
745
|
+
*/
|
|
746
|
+
paginateListResources(args: ListResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourcesCommandOutput>;
|
|
747
|
+
/**
|
|
748
|
+
* @see {@link ListUsersCommand}
|
|
749
|
+
* @param args - command input.
|
|
750
|
+
* @param paginationConfig - optional pagination config.
|
|
751
|
+
* @returns AsyncIterable of {@link ListUsersCommandOutput}.
|
|
752
|
+
*/
|
|
753
|
+
paginateListUsers(args: ListUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUsersCommandOutput>;
|
|
649
754
|
}
|
|
650
755
|
/**
|
|
651
756
|
* <p>WorkMail is a secure, managed business email and calendaring service with support for
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateDelegateToResourceCommandInput,
|
|
4
8
|
AssociateDelegateToResourceCommandOutput,
|
|
@@ -1590,5 +1594,110 @@ export interface WorkMail {
|
|
|
1590
1594
|
options: __HttpHandlerOptions,
|
|
1591
1595
|
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
1592
1596
|
): void;
|
|
1597
|
+
paginateListAliases(
|
|
1598
|
+
args: ListAliasesCommandInput,
|
|
1599
|
+
paginationConfig?: Pick<
|
|
1600
|
+
PaginationConfiguration,
|
|
1601
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1602
|
+
>
|
|
1603
|
+
): Paginator<ListAliasesCommandOutput>;
|
|
1604
|
+
paginateListAvailabilityConfigurations(
|
|
1605
|
+
args: ListAvailabilityConfigurationsCommandInput,
|
|
1606
|
+
paginationConfig?: Pick<
|
|
1607
|
+
PaginationConfiguration,
|
|
1608
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1609
|
+
>
|
|
1610
|
+
): Paginator<ListAvailabilityConfigurationsCommandOutput>;
|
|
1611
|
+
paginateListGroupMembers(
|
|
1612
|
+
args: ListGroupMembersCommandInput,
|
|
1613
|
+
paginationConfig?: Pick<
|
|
1614
|
+
PaginationConfiguration,
|
|
1615
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1616
|
+
>
|
|
1617
|
+
): Paginator<ListGroupMembersCommandOutput>;
|
|
1618
|
+
paginateListGroups(
|
|
1619
|
+
args: ListGroupsCommandInput,
|
|
1620
|
+
paginationConfig?: Pick<
|
|
1621
|
+
PaginationConfiguration,
|
|
1622
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1623
|
+
>
|
|
1624
|
+
): Paginator<ListGroupsCommandOutput>;
|
|
1625
|
+
paginateListGroupsForEntity(
|
|
1626
|
+
args: ListGroupsForEntityCommandInput,
|
|
1627
|
+
paginationConfig?: Pick<
|
|
1628
|
+
PaginationConfiguration,
|
|
1629
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1630
|
+
>
|
|
1631
|
+
): Paginator<ListGroupsForEntityCommandOutput>;
|
|
1632
|
+
paginateListImpersonationRoles(
|
|
1633
|
+
args: ListImpersonationRolesCommandInput,
|
|
1634
|
+
paginationConfig?: Pick<
|
|
1635
|
+
PaginationConfiguration,
|
|
1636
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1637
|
+
>
|
|
1638
|
+
): Paginator<ListImpersonationRolesCommandOutput>;
|
|
1639
|
+
paginateListMailboxExportJobs(
|
|
1640
|
+
args: ListMailboxExportJobsCommandInput,
|
|
1641
|
+
paginationConfig?: Pick<
|
|
1642
|
+
PaginationConfiguration,
|
|
1643
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1644
|
+
>
|
|
1645
|
+
): Paginator<ListMailboxExportJobsCommandOutput>;
|
|
1646
|
+
paginateListMailboxPermissions(
|
|
1647
|
+
args: ListMailboxPermissionsCommandInput,
|
|
1648
|
+
paginationConfig?: Pick<
|
|
1649
|
+
PaginationConfiguration,
|
|
1650
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1651
|
+
>
|
|
1652
|
+
): Paginator<ListMailboxPermissionsCommandOutput>;
|
|
1653
|
+
paginateListMailDomains(
|
|
1654
|
+
args: ListMailDomainsCommandInput,
|
|
1655
|
+
paginationConfig?: Pick<
|
|
1656
|
+
PaginationConfiguration,
|
|
1657
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1658
|
+
>
|
|
1659
|
+
): Paginator<ListMailDomainsCommandOutput>;
|
|
1660
|
+
paginateListMobileDeviceAccessOverrides(
|
|
1661
|
+
args: ListMobileDeviceAccessOverridesCommandInput,
|
|
1662
|
+
paginationConfig?: Pick<
|
|
1663
|
+
PaginationConfiguration,
|
|
1664
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1665
|
+
>
|
|
1666
|
+
): Paginator<ListMobileDeviceAccessOverridesCommandOutput>;
|
|
1667
|
+
paginateListOrganizations(
|
|
1668
|
+
args?: ListOrganizationsCommandInput,
|
|
1669
|
+
paginationConfig?: Pick<
|
|
1670
|
+
PaginationConfiguration,
|
|
1671
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1672
|
+
>
|
|
1673
|
+
): Paginator<ListOrganizationsCommandOutput>;
|
|
1674
|
+
paginateListPersonalAccessTokens(
|
|
1675
|
+
args: ListPersonalAccessTokensCommandInput,
|
|
1676
|
+
paginationConfig?: Pick<
|
|
1677
|
+
PaginationConfiguration,
|
|
1678
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1679
|
+
>
|
|
1680
|
+
): Paginator<ListPersonalAccessTokensCommandOutput>;
|
|
1681
|
+
paginateListResourceDelegates(
|
|
1682
|
+
args: ListResourceDelegatesCommandInput,
|
|
1683
|
+
paginationConfig?: Pick<
|
|
1684
|
+
PaginationConfiguration,
|
|
1685
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1686
|
+
>
|
|
1687
|
+
): Paginator<ListResourceDelegatesCommandOutput>;
|
|
1688
|
+
paginateListResources(
|
|
1689
|
+
args: ListResourcesCommandInput,
|
|
1690
|
+
paginationConfig?: Pick<
|
|
1691
|
+
PaginationConfiguration,
|
|
1692
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1693
|
+
>
|
|
1694
|
+
): Paginator<ListResourcesCommandOutput>;
|
|
1695
|
+
paginateListUsers(
|
|
1696
|
+
args: ListUsersCommandInput,
|
|
1697
|
+
paginationConfig?: Pick<
|
|
1698
|
+
PaginationConfiguration,
|
|
1699
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1700
|
+
>
|
|
1701
|
+
): Paginator<ListUsersCommandOutput>;
|
|
1593
1702
|
}
|
|
1594
1703
|
export declare class WorkMail extends WorkMailClient implements WorkMail {}
|
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.978.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.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|