@aws-sdk/client-workmail 3.476.0 → 3.478.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/pagination/ListAliasesPaginator.js +2 -24
- package/dist-cjs/pagination/ListAvailabilityConfigurationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListGroupMembersPaginator.js +2 -24
- package/dist-cjs/pagination/ListGroupsForEntityPaginator.js +2 -24
- package/dist-cjs/pagination/ListGroupsPaginator.js +2 -24
- package/dist-cjs/pagination/ListImpersonationRolesPaginator.js +2 -24
- package/dist-cjs/pagination/ListMailDomainsPaginator.js +2 -24
- package/dist-cjs/pagination/ListMailboxExportJobsPaginator.js +2 -24
- package/dist-cjs/pagination/ListMailboxPermissionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListMobileDeviceAccessOverridesPaginator.js +2 -24
- package/dist-cjs/pagination/ListOrganizationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListResourceDelegatesPaginator.js +2 -24
- package/dist-cjs/pagination/ListResourcesPaginator.js +2 -24
- package/dist-cjs/pagination/ListUsersPaginator.js +2 -24
- package/dist-es/pagination/ListAliasesPaginator.js +2 -23
- package/dist-es/pagination/ListAvailabilityConfigurationsPaginator.js +2 -23
- package/dist-es/pagination/ListGroupMembersPaginator.js +2 -23
- package/dist-es/pagination/ListGroupsForEntityPaginator.js +2 -23
- package/dist-es/pagination/ListGroupsPaginator.js +2 -23
- package/dist-es/pagination/ListImpersonationRolesPaginator.js +2 -23
- package/dist-es/pagination/ListMailDomainsPaginator.js +2 -23
- package/dist-es/pagination/ListMailboxExportJobsPaginator.js +2 -23
- package/dist-es/pagination/ListMailboxPermissionsPaginator.js +2 -23
- package/dist-es/pagination/ListMobileDeviceAccessOverridesPaginator.js +2 -23
- package/dist-es/pagination/ListOrganizationsPaginator.js +2 -23
- package/dist-es/pagination/ListResourceDelegatesPaginator.js +2 -23
- package/dist-es/pagination/ListResourcesPaginator.js +2 -23
- package/dist-es/pagination/ListUsersPaginator.js +2 -23
- 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/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/ts3.4/pagination/ListAliasesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAvailabilityConfigurationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListGroupMembersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListGroupsForEntityPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListImpersonationRolesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMailDomainsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMailboxExportJobsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMailboxPermissionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMobileDeviceAccessOverridesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListOrganizationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListResourceDelegatesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +3 -3
- package/package.json +7 -6
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListMailDomainsCommand, } from "../commands/ListMailDomainsCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListMailDomainsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListMailDomains(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListMailDomains = createPaginator(WorkMailClient, ListMailDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListMailboxExportJobsCommand, } from "../commands/ListMailboxExportJobsCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListMailboxExportJobsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListMailboxExportJobs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListMailboxExportJobs = createPaginator(WorkMailClient, ListMailboxExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListMailboxPermissionsCommand, } from "../commands/ListMailboxPermissionsCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListMailboxPermissionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListMailboxPermissions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListMailboxPermissions = createPaginator(WorkMailClient, ListMailboxPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListMobileDeviceAccessOverridesCommand, } from "../commands/ListMobileDeviceAccessOverridesCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListMobileDeviceAccessOverridesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListMobileDeviceAccessOverrides(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListMobileDeviceAccessOverrides = createPaginator(WorkMailClient, ListMobileDeviceAccessOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListOrganizationsCommand, } from "../commands/ListOrganizationsCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListOrganizationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListOrganizations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListOrganizations = createPaginator(WorkMailClient, ListOrganizationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListResourceDelegatesCommand, } from "../commands/ListResourceDelegatesCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListResourceDelegatesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListResourceDelegates(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListResourceDelegates = createPaginator(WorkMailClient, ListResourceDelegatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListResourcesCommand, } from "../commands/ListResourcesCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListResourcesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListResources(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListResources = createPaginator(WorkMailClient, ListResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListUsersCommand } from "../commands/ListUsersCommand";
|
|
2
3
|
import { WorkMailClient } from "../WorkMailClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListUsersCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListUsers(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof WorkMailClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected WorkMail | WorkMailClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListUsers = createPaginator(WorkMailClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAliases: (config: WorkMailPaginationConfiguration, input: ListAliasesCommandInput, ...rest: any[]) => Paginator<ListAliasesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAvailabilityConfigurations: (config: WorkMailPaginationConfiguration, input: ListAvailabilityConfigurationsCommandInput, ...rest: any[]) => Paginator<ListAvailabilityConfigurationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroupMembers: (config: WorkMailPaginationConfiguration, input: ListGroupMembersCommandInput, ...rest: any[]) => Paginator<ListGroupMembersCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroupsForEntity: (config: WorkMailPaginationConfiguration, input: ListGroupsForEntityCommandInput, ...rest: any[]) => Paginator<ListGroupsForEntityCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroups: (config: WorkMailPaginationConfiguration, input: ListGroupsCommandInput, ...rest: any[]) => Paginator<ListGroupsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListImpersonationRoles: (config: WorkMailPaginationConfiguration, input: ListImpersonationRolesCommandInput, ...rest: any[]) => Paginator<ListImpersonationRolesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailDomains: (config: WorkMailPaginationConfiguration, input: ListMailDomainsCommandInput, ...rest: any[]) => Paginator<ListMailDomainsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailboxExportJobs: (config: WorkMailPaginationConfiguration, input: ListMailboxExportJobsCommandInput, ...rest: any[]) => Paginator<ListMailboxExportJobsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailboxPermissions: (config: WorkMailPaginationConfiguration, input: ListMailboxPermissionsCommandInput, ...rest: any[]) => Paginator<ListMailboxPermissionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMobileDeviceAccessOverrides: (config: WorkMailPaginationConfiguration, input: ListMobileDeviceAccessOverridesCommandInput, ...rest: any[]) => Paginator<ListMobileDeviceAccessOverridesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListOrganizations: (config: WorkMailPaginationConfiguration, input: ListOrganizationsCommandInput, ...rest: any[]) => Paginator<ListOrganizationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResourceDelegates: (config: WorkMailPaginationConfiguration, input: ListResourceDelegatesCommandInput, ...rest: any[]) => Paginator<ListResourceDelegatesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResources: (config: WorkMailPaginationConfiguration, input: ListResourcesCommandInput, ...rest: any[]) => Paginator<ListResourcesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListUsers: (config: WorkMailPaginationConfiguration, input: ListUsersCommandInput, ...rest: any[]) => Paginator<ListUsersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAliasesCommandOutput,
|
|
5
5
|
} from "../commands/ListAliasesCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAliases: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListAliasesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAliasesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAvailabilityConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/ListAvailabilityConfigurationsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAvailabilityConfigurations: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListAvailabilityConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAvailabilityConfigurationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListGroupMembersCommandOutput,
|
|
5
5
|
} from "../commands/ListGroupMembersCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroupMembers: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListGroupMembersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGroupMembersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListGroupsForEntityCommandOutput,
|
|
5
5
|
} from "../commands/ListGroupsForEntityCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroupsForEntity: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListGroupsForEntityCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGroupsForEntityCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListGroupsCommandOutput,
|
|
5
5
|
} from "../commands/ListGroupsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListGroups: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListImpersonationRolesCommandOutput,
|
|
5
5
|
} from "../commands/ListImpersonationRolesCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListImpersonationRoles: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListImpersonationRolesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListImpersonationRolesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListMailDomainsCommandOutput,
|
|
5
5
|
} from "../commands/ListMailDomainsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailDomains: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListMailDomainsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMailDomainsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListMailboxExportJobsCommandOutput,
|
|
5
5
|
} from "../commands/ListMailboxExportJobsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailboxExportJobs: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListMailboxExportJobsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMailboxExportJobsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListMailboxPermissionsCommandOutput,
|
|
5
5
|
} from "../commands/ListMailboxPermissionsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMailboxPermissions: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListMailboxPermissionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMailboxPermissionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListMobileDeviceAccessOverridesCommandOutput,
|
|
5
5
|
} from "../commands/ListMobileDeviceAccessOverridesCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMobileDeviceAccessOverrides: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListMobileDeviceAccessOverridesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMobileDeviceAccessOverridesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListOrganizationsCommandOutput,
|
|
5
5
|
} from "../commands/ListOrganizationsCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListOrganizations: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListOrganizationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListOrganizationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListResourceDelegatesCommandOutput,
|
|
5
5
|
} from "../commands/ListResourceDelegatesCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResourceDelegates: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListResourceDelegatesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourceDelegatesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListResourcesCommandOutput,
|
|
5
5
|
} from "../commands/ListResourcesCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListResources: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListResourcesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourcesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListUsersCommandOutput,
|
|
5
5
|
} from "../commands/ListUsersCommand";
|
|
6
6
|
import { WorkMailPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListUsers: (
|
|
8
8
|
config: WorkMailPaginationConfiguration,
|
|
9
9
|
input: ListUsersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListUsersCommandOutput>;
|
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.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
|
+
"@aws-sdk/core": "3.477.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|