@aws-sdk/client-inspector2 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/ListAccountPermissionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListCoveragePaginator.js +2 -24
- package/dist-cjs/pagination/ListCoverageStatisticsPaginator.js +2 -23
- package/dist-cjs/pagination/ListDelegatedAdminAccountsPaginator.js +2 -24
- package/dist-cjs/pagination/ListFiltersPaginator.js +2 -24
- package/dist-cjs/pagination/ListFindingAggregationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListFindingsPaginator.js +2 -24
- package/dist-cjs/pagination/ListMembersPaginator.js +2 -24
- package/dist-cjs/pagination/ListUsageTotalsPaginator.js +2 -24
- package/dist-cjs/pagination/SearchVulnerabilitiesPaginator.js +2 -23
- package/dist-cjs/protocols/Aws_restJson1.js +199 -526
- package/dist-es/pagination/ListAccountPermissionsPaginator.js +2 -23
- package/dist-es/pagination/ListCoveragePaginator.js +2 -23
- package/dist-es/pagination/ListCoverageStatisticsPaginator.js +2 -22
- package/dist-es/pagination/ListDelegatedAdminAccountsPaginator.js +2 -23
- package/dist-es/pagination/ListFiltersPaginator.js +2 -23
- package/dist-es/pagination/ListFindingAggregationsPaginator.js +2 -23
- package/dist-es/pagination/ListFindingsPaginator.js +2 -23
- package/dist-es/pagination/ListMembersPaginator.js +2 -23
- package/dist-es/pagination/ListUsageTotalsPaginator.js +2 -23
- package/dist-es/pagination/SearchVulnerabilitiesPaginator.js +2 -22
- package/dist-es/protocols/Aws_restJson1.js +200 -527
- package/dist-types/pagination/ListAccountPermissionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCoveragePaginator.d.ts +1 -1
- package/dist-types/pagination/ListCoverageStatisticsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDelegatedAdminAccountsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFiltersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFindingAggregationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFindingsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMembersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListUsageTotalsPaginator.d.ts +1 -1
- package/dist-types/pagination/SearchVulnerabilitiesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListAccountPermissionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCoveragePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCoverageStatisticsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDelegatedAdminAccountsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFiltersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFindingAggregationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListUsageTotalsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/SearchVulnerabilitiesPaginator.d.ts +3 -3
- package/package.json +7 -6
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccountPermissions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccountPermissionsCommand_1 = require("../commands/ListAccountPermissionsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccountPermissionsCommand_1.ListAccountPermissionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccountPermissions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccountPermissions = paginateListAccountPermissions;
|
|
7
|
+
exports.paginateListAccountPermissions = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListAccountPermissionsCommand_1.ListAccountPermissionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListCoverage = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListCoverageCommand_1 = require("../commands/ListCoverageCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListCoverageCommand_1.ListCoverageCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListCoverage(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListCoverage = paginateListCoverage;
|
|
7
|
+
exports.paginateListCoverage = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListCoverageCommand_1.ListCoverageCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListCoverageStatistics = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListCoverageStatisticsCommand_1 = require("../commands/ListCoverageStatisticsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListCoverageStatisticsCommand_1.ListCoverageStatisticsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListCoverageStatistics(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
20
|
-
}
|
|
21
|
-
yield page;
|
|
22
|
-
const prevToken = token;
|
|
23
|
-
token = page.nextToken;
|
|
24
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
25
|
-
}
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
exports.paginateListCoverageStatistics = paginateListCoverageStatistics;
|
|
7
|
+
exports.paginateListCoverageStatistics = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListCoverageStatisticsCommand_1.ListCoverageStatisticsCommand, "nextToken", "nextToken", "");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListDelegatedAdminAccounts = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListDelegatedAdminAccountsCommand_1 = require("../commands/ListDelegatedAdminAccountsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListDelegatedAdminAccountsCommand_1.ListDelegatedAdminAccountsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListDelegatedAdminAccounts(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListDelegatedAdminAccounts = paginateListDelegatedAdminAccounts;
|
|
7
|
+
exports.paginateListDelegatedAdminAccounts = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListDelegatedAdminAccountsCommand_1.ListDelegatedAdminAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFilters = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFiltersCommand_1 = require("../commands/ListFiltersCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFiltersCommand_1.ListFiltersCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFilters(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFilters = paginateListFilters;
|
|
7
|
+
exports.paginateListFilters = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListFiltersCommand_1.ListFiltersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFindingAggregations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFindingAggregationsCommand_1 = require("../commands/ListFindingAggregationsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFindingAggregationsCommand_1.ListFindingAggregationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFindingAggregations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFindingAggregations = paginateListFindingAggregations;
|
|
7
|
+
exports.paginateListFindingAggregations = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListFindingAggregationsCommand_1.ListFindingAggregationsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListFindings = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListFindingsCommand_1 = require("../commands/ListFindingsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListFindingsCommand_1.ListFindingsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListFindings(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListFindings = paginateListFindings;
|
|
7
|
+
exports.paginateListFindings = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListFindingsCommand_1.ListFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListMembers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListMembersCommand_1 = require("../commands/ListMembersCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListMembersCommand_1.ListMembersCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListMembers(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListMembers = paginateListMembers;
|
|
7
|
+
exports.paginateListMembers = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListMembersCommand_1.ListMembersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListUsageTotals = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListUsageTotalsCommand_1 = require("../commands/ListUsageTotalsCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListUsageTotalsCommand_1.ListUsageTotalsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListUsageTotals(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
input["maxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.nextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListUsageTotals = paginateListUsageTotals;
|
|
7
|
+
exports.paginateListUsageTotals = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, ListUsageTotalsCommand_1.ListUsageTotalsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateSearchVulnerabilities = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const SearchVulnerabilitiesCommand_1 = require("../commands/SearchVulnerabilitiesCommand");
|
|
5
6
|
const Inspector2Client_1 = require("../Inspector2Client");
|
|
6
|
-
|
|
7
|
-
return await client.send(new SearchVulnerabilitiesCommand_1.SearchVulnerabilitiesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateSearchVulnerabilities(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.nextToken = token;
|
|
15
|
-
if (config.client instanceof Inspector2Client_1.Inspector2Client) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected Inspector2 | Inspector2Client");
|
|
20
|
-
}
|
|
21
|
-
yield page;
|
|
22
|
-
const prevToken = token;
|
|
23
|
-
token = page.nextToken;
|
|
24
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
25
|
-
}
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
exports.paginateSearchVulnerabilities = paginateSearchVulnerabilities;
|
|
7
|
+
exports.paginateSearchVulnerabilities = (0, core_1.createPaginator)(Inspector2Client_1.Inspector2Client, SearchVulnerabilitiesCommand_1.SearchVulnerabilitiesCommand, "nextToken", "nextToken", "");
|