@aws-sdk/client-chime 3.282.0 → 3.288.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/ListAccountsPaginator.js +1 -8
- package/dist-cjs/pagination/ListAppInstanceAdminsPaginator.js +1 -8
- package/dist-cjs/pagination/ListAppInstanceUsersPaginator.js +1 -8
- package/dist-cjs/pagination/ListAppInstancesPaginator.js +1 -8
- package/dist-cjs/pagination/ListAttendeesPaginator.js +1 -8
- package/dist-cjs/pagination/ListBotsPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelBansPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelMembershipsForAppInstanceUserPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelMembershipsPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelMessagesPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelModeratorsPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelsModeratedByAppInstanceUserPaginator.js +1 -8
- package/dist-cjs/pagination/ListChannelsPaginator.js +1 -8
- package/dist-cjs/pagination/ListMediaCapturePipelinesPaginator.js +1 -8
- package/dist-cjs/pagination/ListMeetingsPaginator.js +1 -8
- package/dist-cjs/pagination/ListPhoneNumberOrdersPaginator.js +1 -8
- package/dist-cjs/pagination/ListPhoneNumbersPaginator.js +1 -8
- package/dist-cjs/pagination/ListProxySessionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListRoomMembershipsPaginator.js +1 -8
- package/dist-cjs/pagination/ListRoomsPaginator.js +1 -8
- package/dist-cjs/pagination/ListSipMediaApplicationsPaginator.js +1 -8
- package/dist-cjs/pagination/ListSipRulesPaginator.js +1 -8
- package/dist-cjs/pagination/ListUsersPaginator.js +1 -8
- package/dist-cjs/pagination/ListVoiceConnectorGroupsPaginator.js +1 -8
- package/dist-cjs/pagination/ListVoiceConnectorsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchAvailablePhoneNumbersPaginator.js +1 -8
- package/dist-es/pagination/ListAccountsPaginator.js +1 -8
- package/dist-es/pagination/ListAppInstanceAdminsPaginator.js +1 -8
- package/dist-es/pagination/ListAppInstanceUsersPaginator.js +1 -8
- package/dist-es/pagination/ListAppInstancesPaginator.js +1 -8
- package/dist-es/pagination/ListAttendeesPaginator.js +1 -8
- package/dist-es/pagination/ListBotsPaginator.js +1 -8
- package/dist-es/pagination/ListChannelBansPaginator.js +1 -8
- package/dist-es/pagination/ListChannelMembershipsForAppInstanceUserPaginator.js +1 -8
- package/dist-es/pagination/ListChannelMembershipsPaginator.js +1 -8
- package/dist-es/pagination/ListChannelMessagesPaginator.js +1 -8
- package/dist-es/pagination/ListChannelModeratorsPaginator.js +1 -8
- package/dist-es/pagination/ListChannelsModeratedByAppInstanceUserPaginator.js +1 -8
- package/dist-es/pagination/ListChannelsPaginator.js +1 -8
- package/dist-es/pagination/ListMediaCapturePipelinesPaginator.js +1 -8
- package/dist-es/pagination/ListMeetingsPaginator.js +1 -8
- package/dist-es/pagination/ListPhoneNumberOrdersPaginator.js +1 -8
- package/dist-es/pagination/ListPhoneNumbersPaginator.js +1 -8
- package/dist-es/pagination/ListProxySessionsPaginator.js +1 -8
- package/dist-es/pagination/ListRoomMembershipsPaginator.js +1 -8
- package/dist-es/pagination/ListRoomsPaginator.js +1 -8
- package/dist-es/pagination/ListSipMediaApplicationsPaginator.js +1 -8
- package/dist-es/pagination/ListSipRulesPaginator.js +1 -8
- package/dist-es/pagination/ListUsersPaginator.js +1 -8
- package/dist-es/pagination/ListVoiceConnectorGroupsPaginator.js +1 -8
- package/dist-es/pagination/ListVoiceConnectorsPaginator.js +1 -8
- package/dist-es/pagination/SearchAvailablePhoneNumbersPaginator.js +1 -8
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +9 -9
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccounts = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListAccountsCommand_1 = require("../commands/ListAccountsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAccountsCommand_1.ListAccountsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAccounts(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAccounts(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAccounts(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAppInstanceAdmins = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListAppInstanceAdminsCommand_1 = require("../commands/ListAppInstanceAdminsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAppInstanceAdminsCommand_1.ListAppInstanceAdminsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAppInstanceAdmins(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAppInstanceAdmins(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAppInstanceAdmins(config, input, ...additionalArgume
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAppInstanceUsers = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListAppInstanceUsersCommand_1 = require("../commands/ListAppInstanceUsersCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAppInstanceUsersCommand_1.ListAppInstanceUsersCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAppInstanceUsers(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAppInstanceUsers(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAppInstanceUsers(config, input, ...additionalArgumen
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAppInstances = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListAppInstancesCommand_1 = require("../commands/ListAppInstancesCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAppInstancesCommand_1.ListAppInstancesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAppInstances(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAppInstances(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAppInstances(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAttendees = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListAttendeesCommand_1 = require("../commands/ListAttendeesCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAttendeesCommand_1.ListAttendeesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAttendees(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAttendees(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAttendees(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListBots = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListBotsCommand_1 = require("../commands/ListBotsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListBotsCommand_1.ListBotsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listBots(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListBots(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListBots(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelBans = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelBansCommand_1 = require("../commands/ListChannelBansCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelBansCommand_1.ListChannelBansCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelBans(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelBans(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelBans(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelMembershipsForAppInstanceUser = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelMembershipsForAppInstanceUserCommand_1 = require("../commands/ListChannelMembershipsForAppInstanceUserCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelMembershipsForAppInstanceUserCommand_1.ListChannelMembershipsForAppInstanceUserCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelMembershipsForAppInstanceUser(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelMembershipsForAppInstanceUser(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelMembershipsForAppInstanceUser(config, input,
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelMemberships = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelMembershipsCommand_1 = require("../commands/ListChannelMembershipsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelMembershipsCommand_1.ListChannelMembershipsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelMemberships(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelMemberships(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelMemberships(config, input, ...additionalArgum
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelMessages = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelMessagesCommand_1 = require("../commands/ListChannelMessagesCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelMessagesCommand_1.ListChannelMessagesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelMessages(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelMessages(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelMessages(config, input, ...additionalArgument
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelModerators = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelModeratorsCommand_1 = require("../commands/ListChannelModeratorsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelModeratorsCommand_1.ListChannelModeratorsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelModerators(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelModerators(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelModerators(config, input, ...additionalArgume
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannelsModeratedByAppInstanceUser = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelsModeratedByAppInstanceUserCommand_1 = require("../commands/ListChannelsModeratedByAppInstanceUserCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelsModeratedByAppInstanceUserCommand_1.ListChannelsModeratedByAppInstanceUserCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannelsModeratedByAppInstanceUser(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannelsModeratedByAppInstanceUser(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannelsModeratedByAppInstanceUser(config, input, ..
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListChannels = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListChannelsCommand_1 = require("../commands/ListChannelsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListChannelsCommand_1.ListChannelsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listChannels(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListChannels(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListChannels(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListMediaCapturePipelines = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListMediaCapturePipelinesCommand_1 = require("../commands/ListMediaCapturePipelinesCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListMediaCapturePipelinesCommand_1.ListMediaCapturePipelinesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listMediaCapturePipelines(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListMediaCapturePipelines(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListMediaCapturePipelines(config, input, ...additionalAr
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListMeetings = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListMeetingsCommand_1 = require("../commands/ListMeetingsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListMeetingsCommand_1.ListMeetingsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listMeetings(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListMeetings(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListMeetings(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPhoneNumberOrders = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListPhoneNumberOrdersCommand_1 = require("../commands/ListPhoneNumberOrdersCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListPhoneNumberOrdersCommand_1.ListPhoneNumberOrdersCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listPhoneNumberOrders(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListPhoneNumberOrders(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListPhoneNumberOrders(config, input, ...additionalArgume
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPhoneNumbers = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListPhoneNumbersCommand_1 = require("../commands/ListPhoneNumbersCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListPhoneNumbersCommand_1.ListPhoneNumbersCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listPhoneNumbers(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListPhoneNumbers(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListPhoneNumbers(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListProxySessions = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListProxySessionsCommand_1 = require("../commands/ListProxySessionsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListProxySessionsCommand_1.ListProxySessionsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listProxySessions(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListProxySessions(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListProxySessions(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRoomMemberships = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListRoomMembershipsCommand_1 = require("../commands/ListRoomMembershipsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListRoomMembershipsCommand_1.ListRoomMembershipsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listRoomMemberships(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListRoomMemberships(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListRoomMemberships(config, input, ...additionalArgument
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRooms = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListRoomsCommand_1 = require("../commands/ListRoomsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListRoomsCommand_1.ListRoomsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listRooms(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListRooms(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListRooms(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListSipMediaApplications = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListSipMediaApplicationsCommand_1 = require("../commands/ListSipMediaApplicationsCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListSipMediaApplicationsCommand_1.ListSipMediaApplicationsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listSipMediaApplications(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListSipMediaApplications(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListSipMediaApplications(config, input, ...additionalArg
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListSipRules = void 0;
|
|
4
|
-
const Chime_1 = require("../Chime");
|
|
5
4
|
const ChimeClient_1 = require("../ChimeClient");
|
|
6
5
|
const ListSipRulesCommand_1 = require("../commands/ListSipRulesCommand");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListSipRulesCommand_1.ListSipRulesCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listSipRules(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListSipRules(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListSipRules(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
16
|
+
if (config.client instanceof ChimeClient_1.ChimeClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|