@aws-sdk/client-neptune-graph 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.
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListGraphSnapshots = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListGraphSnapshotsCommand_1 = require("../commands/ListGraphSnapshotsCommand");
5
6
  const NeptuneGraphClient_1 = require("../NeptuneGraphClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListGraphSnapshotsCommand_1.ListGraphSnapshotsCommand(input), ...args);
8
- };
9
- async function* paginateListGraphSnapshots(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 NeptuneGraphClient_1.NeptuneGraphClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected NeptuneGraph | NeptuneGraphClient");
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.paginateListGraphSnapshots = paginateListGraphSnapshots;
7
+ exports.paginateListGraphSnapshots = (0, core_1.createPaginator)(NeptuneGraphClient_1.NeptuneGraphClient, ListGraphSnapshotsCommand_1.ListGraphSnapshotsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListGraphs = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListGraphsCommand_1 = require("../commands/ListGraphsCommand");
5
6
  const NeptuneGraphClient_1 = require("../NeptuneGraphClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListGraphsCommand_1.ListGraphsCommand(input), ...args);
8
- };
9
- async function* paginateListGraphs(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 NeptuneGraphClient_1.NeptuneGraphClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected NeptuneGraph | NeptuneGraphClient");
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.paginateListGraphs = paginateListGraphs;
7
+ exports.paginateListGraphs = (0, core_1.createPaginator)(NeptuneGraphClient_1.NeptuneGraphClient, ListGraphsCommand_1.ListGraphsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListImportTasks = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListImportTasksCommand_1 = require("../commands/ListImportTasksCommand");
5
6
  const NeptuneGraphClient_1 = require("../NeptuneGraphClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListImportTasksCommand_1.ListImportTasksCommand(input), ...args);
8
- };
9
- async function* paginateListImportTasks(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 NeptuneGraphClient_1.NeptuneGraphClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected NeptuneGraph | NeptuneGraphClient");
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.paginateListImportTasks = paginateListImportTasks;
7
+ exports.paginateListImportTasks = (0, core_1.createPaginator)(NeptuneGraphClient_1.NeptuneGraphClient, ListImportTasksCommand_1.ListImportTasksCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListPrivateGraphEndpoints = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListPrivateGraphEndpointsCommand_1 = require("../commands/ListPrivateGraphEndpointsCommand");
5
6
  const NeptuneGraphClient_1 = require("../NeptuneGraphClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListPrivateGraphEndpointsCommand_1.ListPrivateGraphEndpointsCommand(input), ...args);
8
- };
9
- async function* paginateListPrivateGraphEndpoints(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 NeptuneGraphClient_1.NeptuneGraphClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected NeptuneGraph | NeptuneGraphClient");
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.paginateListPrivateGraphEndpoints = paginateListPrivateGraphEndpoints;
7
+ exports.paginateListPrivateGraphEndpoints = (0, core_1.createPaginator)(NeptuneGraphClient_1.NeptuneGraphClient, ListPrivateGraphEndpointsCommand_1.ListPrivateGraphEndpointsCommand, "nextToken", "nextToken", "maxResults");