@aws-sdk/client-medical-imaging 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.paginateListDICOMImportJobs = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListDICOMImportJobsCommand_1 = require("../commands/ListDICOMImportJobsCommand");
5
6
  const MedicalImagingClient_1 = require("../MedicalImagingClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListDICOMImportJobsCommand_1.ListDICOMImportJobsCommand(input), ...args);
8
- };
9
- async function* paginateListDICOMImportJobs(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 MedicalImagingClient_1.MedicalImagingClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected MedicalImaging | MedicalImagingClient");
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.paginateListDICOMImportJobs = paginateListDICOMImportJobs;
7
+ exports.paginateListDICOMImportJobs = (0, core_1.createPaginator)(MedicalImagingClient_1.MedicalImagingClient, ListDICOMImportJobsCommand_1.ListDICOMImportJobsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListDatastores = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListDatastoresCommand_1 = require("../commands/ListDatastoresCommand");
5
6
  const MedicalImagingClient_1 = require("../MedicalImagingClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListDatastoresCommand_1.ListDatastoresCommand(input), ...args);
8
- };
9
- async function* paginateListDatastores(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 MedicalImagingClient_1.MedicalImagingClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected MedicalImaging | MedicalImagingClient");
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.paginateListDatastores = paginateListDatastores;
7
+ exports.paginateListDatastores = (0, core_1.createPaginator)(MedicalImagingClient_1.MedicalImagingClient, ListDatastoresCommand_1.ListDatastoresCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListImageSetVersions = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListImageSetVersionsCommand_1 = require("../commands/ListImageSetVersionsCommand");
5
6
  const MedicalImagingClient_1 = require("../MedicalImagingClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListImageSetVersionsCommand_1.ListImageSetVersionsCommand(input), ...args);
8
- };
9
- async function* paginateListImageSetVersions(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 MedicalImagingClient_1.MedicalImagingClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected MedicalImaging | MedicalImagingClient");
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.paginateListImageSetVersions = paginateListImageSetVersions;
7
+ exports.paginateListImageSetVersions = (0, core_1.createPaginator)(MedicalImagingClient_1.MedicalImagingClient, ListImageSetVersionsCommand_1.ListImageSetVersionsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateSearchImageSets = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const SearchImageSetsCommand_1 = require("../commands/SearchImageSetsCommand");
5
6
  const MedicalImagingClient_1 = require("../MedicalImagingClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new SearchImageSetsCommand_1.SearchImageSetsCommand(input), ...args);
8
- };
9
- async function* paginateSearchImageSets(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 MedicalImagingClient_1.MedicalImagingClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected MedicalImaging | MedicalImagingClient");
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.paginateSearchImageSets = paginateSearchImageSets;
7
+ exports.paginateSearchImageSets = (0, core_1.createPaginator)(MedicalImagingClient_1.MedicalImagingClient, SearchImageSetsCommand_1.SearchImageSetsCommand, "nextToken", "nextToken", "maxResults");