@aws-sdk/client-grafana 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.paginateListPermissions = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListPermissionsCommand_1 = require("../commands/ListPermissionsCommand");
5
6
  const GrafanaClient_1 = require("../GrafanaClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListPermissionsCommand_1.ListPermissionsCommand(input), ...args);
8
- };
9
- async function* paginateListPermissions(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 GrafanaClient_1.GrafanaClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Grafana | GrafanaClient");
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.paginateListPermissions = paginateListPermissions;
7
+ exports.paginateListPermissions = (0, core_1.createPaginator)(GrafanaClient_1.GrafanaClient, ListPermissionsCommand_1.ListPermissionsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListVersions = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListVersionsCommand_1 = require("../commands/ListVersionsCommand");
5
6
  const GrafanaClient_1 = require("../GrafanaClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListVersionsCommand_1.ListVersionsCommand(input), ...args);
8
- };
9
- async function* paginateListVersions(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 GrafanaClient_1.GrafanaClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Grafana | GrafanaClient");
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.paginateListVersions = paginateListVersions;
7
+ exports.paginateListVersions = (0, core_1.createPaginator)(GrafanaClient_1.GrafanaClient, ListVersionsCommand_1.ListVersionsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListWorkspaces = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListWorkspacesCommand_1 = require("../commands/ListWorkspacesCommand");
5
6
  const GrafanaClient_1 = require("../GrafanaClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListWorkspacesCommand_1.ListWorkspacesCommand(input), ...args);
8
- };
9
- async function* paginateListWorkspaces(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 GrafanaClient_1.GrafanaClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Grafana | GrafanaClient");
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.paginateListWorkspaces = paginateListWorkspaces;
7
+ exports.paginateListWorkspaces = (0, core_1.createPaginator)(GrafanaClient_1.GrafanaClient, ListWorkspacesCommand_1.ListWorkspacesCommand, "nextToken", "nextToken", "maxResults");