@aws-sdk/client-elasticsearch-service 3.477.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/DescribeDomainAutoTunesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribePackagesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeReservedElasticsearchInstancesPaginator.js +2 -24
- package/dist-cjs/pagination/GetPackageVersionHistoryPaginator.js +2 -24
- package/dist-cjs/pagination/GetUpgradeHistoryPaginator.js +2 -24
- package/dist-cjs/pagination/ListDomainsForPackagePaginator.js +2 -24
- package/dist-cjs/pagination/ListElasticsearchInstanceTypesPaginator.js +2 -24
- package/dist-cjs/pagination/ListElasticsearchVersionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListPackagesForDomainPaginator.js +2 -24
- package/dist-es/pagination/DescribeDomainAutoTunesPaginator.js +2 -23
- package/dist-es/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.js +2 -23
- package/dist-es/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.js +2 -23
- package/dist-es/pagination/DescribePackagesPaginator.js +2 -23
- package/dist-es/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.js +2 -23
- package/dist-es/pagination/DescribeReservedElasticsearchInstancesPaginator.js +2 -23
- package/dist-es/pagination/GetPackageVersionHistoryPaginator.js +2 -23
- package/dist-es/pagination/GetUpgradeHistoryPaginator.js +2 -23
- package/dist-es/pagination/ListDomainsForPackagePaginator.js +2 -23
- package/dist-es/pagination/ListElasticsearchInstanceTypesPaginator.js +2 -23
- package/dist-es/pagination/ListElasticsearchVersionsPaginator.js +2 -23
- package/dist-es/pagination/ListPackagesForDomainPaginator.js +2 -23
- package/dist-types/pagination/DescribeDomainAutoTunesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePackagesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedElasticsearchInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/GetPackageVersionHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/GetUpgradeHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDomainsForPackagePaginator.d.ts +1 -1
- package/dist-types/pagination/ListElasticsearchInstanceTypesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListElasticsearchVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPackagesForDomainPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/DescribeDomainAutoTunesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribePackagesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeReservedElasticsearchInstancesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetPackageVersionHistoryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetUpgradeHistoryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDomainsForPackagePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListElasticsearchInstanceTypesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListElasticsearchVersionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPackagesForDomainPaginator.d.ts +3 -3
- package/package.json +5 -5
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeDomainAutoTunes = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribeDomainAutoTunesCommand_1 = require("../commands/DescribeDomainAutoTunesCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeDomainAutoTunesCommand_1.DescribeDomainAutoTunesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeDomainAutoTunes(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribeDomainAutoTunes = paginateDescribeDomainAutoTunes;
|
|
7
|
+
exports.paginateDescribeDomainAutoTunes = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribeDomainAutoTunesCommand_1.DescribeDomainAutoTunesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeInboundCrossClusterSearchConnections = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribeInboundCrossClusterSearchConnectionsCommand_1 = require("../commands/DescribeInboundCrossClusterSearchConnectionsCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeInboundCrossClusterSearchConnectionsCommand_1.DescribeInboundCrossClusterSearchConnectionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeInboundCrossClusterSearchConnections(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribeInboundCrossClusterSearchConnections = paginateDescribeInboundCrossClusterSearchConnections;
|
|
7
|
+
exports.paginateDescribeInboundCrossClusterSearchConnections = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribeInboundCrossClusterSearchConnectionsCommand_1.DescribeInboundCrossClusterSearchConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeOutboundCrossClusterSearchConnections = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribeOutboundCrossClusterSearchConnectionsCommand_1 = require("../commands/DescribeOutboundCrossClusterSearchConnectionsCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeOutboundCrossClusterSearchConnectionsCommand_1.DescribeOutboundCrossClusterSearchConnectionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeOutboundCrossClusterSearchConnections(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribeOutboundCrossClusterSearchConnections = paginateDescribeOutboundCrossClusterSearchConnections;
|
|
7
|
+
exports.paginateDescribeOutboundCrossClusterSearchConnections = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribeOutboundCrossClusterSearchConnectionsCommand_1.DescribeOutboundCrossClusterSearchConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribePackages = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribePackagesCommand_1 = require("../commands/DescribePackagesCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribePackagesCommand_1.DescribePackagesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribePackages(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribePackages = paginateDescribePackages;
|
|
7
|
+
exports.paginateDescribePackages = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribePackagesCommand_1.DescribePackagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeReservedElasticsearchInstanceOfferings = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribeReservedElasticsearchInstanceOfferingsCommand_1 = require("../commands/DescribeReservedElasticsearchInstanceOfferingsCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeReservedElasticsearchInstanceOfferingsCommand_1.DescribeReservedElasticsearchInstanceOfferingsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeReservedElasticsearchInstanceOfferings(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribeReservedElasticsearchInstanceOfferings = paginateDescribeReservedElasticsearchInstanceOfferings;
|
|
7
|
+
exports.paginateDescribeReservedElasticsearchInstanceOfferings = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribeReservedElasticsearchInstanceOfferingsCommand_1.DescribeReservedElasticsearchInstanceOfferingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeReservedElasticsearchInstances = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const DescribeReservedElasticsearchInstancesCommand_1 = require("../commands/DescribeReservedElasticsearchInstancesCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeReservedElasticsearchInstancesCommand_1.DescribeReservedElasticsearchInstancesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeReservedElasticsearchInstances(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateDescribeReservedElasticsearchInstances = paginateDescribeReservedElasticsearchInstances;
|
|
7
|
+
exports.paginateDescribeReservedElasticsearchInstances = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, DescribeReservedElasticsearchInstancesCommand_1.DescribeReservedElasticsearchInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateGetPackageVersionHistory = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const GetPackageVersionHistoryCommand_1 = require("../commands/GetPackageVersionHistoryCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new GetPackageVersionHistoryCommand_1.GetPackageVersionHistoryCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateGetPackageVersionHistory(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateGetPackageVersionHistory = paginateGetPackageVersionHistory;
|
|
7
|
+
exports.paginateGetPackageVersionHistory = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, GetPackageVersionHistoryCommand_1.GetPackageVersionHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateGetUpgradeHistory = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const GetUpgradeHistoryCommand_1 = require("../commands/GetUpgradeHistoryCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new GetUpgradeHistoryCommand_1.GetUpgradeHistoryCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateGetUpgradeHistory(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateGetUpgradeHistory = paginateGetUpgradeHistory;
|
|
7
|
+
exports.paginateGetUpgradeHistory = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, GetUpgradeHistoryCommand_1.GetUpgradeHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListDomainsForPackage = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListDomainsForPackageCommand_1 = require("../commands/ListDomainsForPackageCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListDomainsForPackageCommand_1.ListDomainsForPackageCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListDomainsForPackage(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateListDomainsForPackage = paginateListDomainsForPackage;
|
|
7
|
+
exports.paginateListDomainsForPackage = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, ListDomainsForPackageCommand_1.ListDomainsForPackageCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListElasticsearchInstanceTypes = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListElasticsearchInstanceTypesCommand_1 = require("../commands/ListElasticsearchInstanceTypesCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListElasticsearchInstanceTypesCommand_1.ListElasticsearchInstanceTypesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListElasticsearchInstanceTypes(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateListElasticsearchInstanceTypes = paginateListElasticsearchInstanceTypes;
|
|
7
|
+
exports.paginateListElasticsearchInstanceTypes = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, ListElasticsearchInstanceTypesCommand_1.ListElasticsearchInstanceTypesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListElasticsearchVersions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListElasticsearchVersionsCommand_1 = require("../commands/ListElasticsearchVersionsCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListElasticsearchVersionsCommand_1.ListElasticsearchVersionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListElasticsearchVersions(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateListElasticsearchVersions = paginateListElasticsearchVersions;
|
|
7
|
+
exports.paginateListElasticsearchVersions = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, ListElasticsearchVersionsCommand_1.ListElasticsearchVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListPackagesForDomain = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListPackagesForDomainCommand_1 = require("../commands/ListPackagesForDomainCommand");
|
|
5
6
|
const ElasticsearchServiceClient_1 = require("../ElasticsearchServiceClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListPackagesForDomainCommand_1.ListPackagesForDomainCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListPackagesForDomain(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 ElasticsearchServiceClient_1.ElasticsearchServiceClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
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.paginateListPackagesForDomain = paginateListPackagesForDomain;
|
|
7
|
+
exports.paginateListPackagesForDomain = (0, core_1.createPaginator)(ElasticsearchServiceClient_1.ElasticsearchServiceClient, ListPackagesForDomainCommand_1.ListPackagesForDomainCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeDomainAutoTunesCommand, } from "../commands/DescribeDomainAutoTunesCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeDomainAutoTunesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeDomainAutoTunes(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeDomainAutoTunes = createPaginator(ElasticsearchServiceClient, DescribeDomainAutoTunesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeInboundCrossClusterSearchConnectionsCommand, } from "../commands/DescribeInboundCrossClusterSearchConnectionsCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeInboundCrossClusterSearchConnectionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeInboundCrossClusterSearchConnections(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeInboundCrossClusterSearchConnections = createPaginator(ElasticsearchServiceClient, DescribeInboundCrossClusterSearchConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeOutboundCrossClusterSearchConnectionsCommand, } from "../commands/DescribeOutboundCrossClusterSearchConnectionsCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeOutboundCrossClusterSearchConnectionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeOutboundCrossClusterSearchConnections(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeOutboundCrossClusterSearchConnections = createPaginator(ElasticsearchServiceClient, DescribeOutboundCrossClusterSearchConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribePackagesCommand, } from "../commands/DescribePackagesCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribePackagesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribePackages(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribePackages = createPaginator(ElasticsearchServiceClient, DescribePackagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeReservedElasticsearchInstanceOfferingsCommand, } from "../commands/DescribeReservedElasticsearchInstanceOfferingsCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeReservedElasticsearchInstanceOfferingsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeReservedElasticsearchInstanceOfferings(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeReservedElasticsearchInstanceOfferings = createPaginator(ElasticsearchServiceClient, DescribeReservedElasticsearchInstanceOfferingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeReservedElasticsearchInstancesCommand, } from "../commands/DescribeReservedElasticsearchInstancesCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeReservedElasticsearchInstancesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeReservedElasticsearchInstances(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeReservedElasticsearchInstances = createPaginator(ElasticsearchServiceClient, DescribeReservedElasticsearchInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetPackageVersionHistoryCommand, } from "../commands/GetPackageVersionHistoryCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetPackageVersionHistoryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetPackageVersionHistory(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateGetPackageVersionHistory = createPaginator(ElasticsearchServiceClient, GetPackageVersionHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetUpgradeHistoryCommand, } from "../commands/GetUpgradeHistoryCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetUpgradeHistoryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetUpgradeHistory(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateGetUpgradeHistory = createPaginator(ElasticsearchServiceClient, GetUpgradeHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListDomainsForPackageCommand, } from "../commands/ListDomainsForPackageCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListDomainsForPackageCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListDomainsForPackage(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListDomainsForPackage = createPaginator(ElasticsearchServiceClient, ListDomainsForPackageCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListElasticsearchInstanceTypesCommand, } from "../commands/ListElasticsearchInstanceTypesCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListElasticsearchInstanceTypesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListElasticsearchInstanceTypes(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListElasticsearchInstanceTypes = createPaginator(ElasticsearchServiceClient, ListElasticsearchInstanceTypesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListElasticsearchVersionsCommand, } from "../commands/ListElasticsearchVersionsCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListElasticsearchVersionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListElasticsearchVersions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListElasticsearchVersions = createPaginator(ElasticsearchServiceClient, ListElasticsearchVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPackagesForDomainCommand, } from "../commands/ListPackagesForDomainCommand";
|
|
2
3
|
import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPackagesForDomainCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPackagesForDomain(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ElasticsearchServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ElasticsearchService | ElasticsearchServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPackagesForDomain = createPaginator(ElasticsearchServiceClient, ListPackagesForDomainCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainAutoTunes: (config: ElasticsearchServicePaginationConfiguration, input: DescribeDomainAutoTunesCommandInput, ...rest: any[]) => Paginator<DescribeDomainAutoTunesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInboundCrossClusterSearchConnections: (config: ElasticsearchServicePaginationConfiguration, input: DescribeInboundCrossClusterSearchConnectionsCommandInput, ...rest: any[]) => Paginator<DescribeInboundCrossClusterSearchConnectionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeOutboundCrossClusterSearchConnections: (config: ElasticsearchServicePaginationConfiguration, input: DescribeOutboundCrossClusterSearchConnectionsCommandInput, ...rest: any[]) => Paginator<DescribeOutboundCrossClusterSearchConnectionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePackages: (config: ElasticsearchServicePaginationConfiguration, input: DescribePackagesCommandInput, ...rest: any[]) => Paginator<DescribePackagesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedElasticsearchInstanceOfferings: (config: ElasticsearchServicePaginationConfiguration, input: DescribeReservedElasticsearchInstanceOfferingsCommandInput, ...rest: any[]) => Paginator<DescribeReservedElasticsearchInstanceOfferingsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedElasticsearchInstances: (config: ElasticsearchServicePaginationConfiguration, input: DescribeReservedElasticsearchInstancesCommandInput, ...rest: any[]) => Paginator<DescribeReservedElasticsearchInstancesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetPackageVersionHistory: (config: ElasticsearchServicePaginationConfiguration, input: GetPackageVersionHistoryCommandInput, ...rest: any[]) => Paginator<GetPackageVersionHistoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetUpgradeHistory: (config: ElasticsearchServicePaginationConfiguration, input: GetUpgradeHistoryCommandInput, ...rest: any[]) => Paginator<GetUpgradeHistoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainsForPackage: (config: ElasticsearchServicePaginationConfiguration, input: ListDomainsForPackageCommandInput, ...rest: any[]) => Paginator<ListDomainsForPackageCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListElasticsearchInstanceTypes: (config: ElasticsearchServicePaginationConfiguration, input: ListElasticsearchInstanceTypesCommandInput, ...rest: any[]) => Paginator<ListElasticsearchInstanceTypesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListElasticsearchVersions: (config: ElasticsearchServicePaginationConfiguration, input: ListElasticsearchVersionsCommandInput, ...rest: any[]) => Paginator<ListElasticsearchVersionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPackagesForDomain: (config: ElasticsearchServicePaginationConfiguration, input: ListPackagesForDomainCommandInput, ...rest: any[]) => Paginator<ListPackagesForDomainCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeDomainAutoTunesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeDomainAutoTunesCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainAutoTunes: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribeDomainAutoTunesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDomainAutoTunesCommandOutput>;
|
package/dist-types/ts3.4/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeInboundCrossClusterSearchConnectionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeInboundCrossClusterSearchConnectionsCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInboundCrossClusterSearchConnections: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribeInboundCrossClusterSearchConnectionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeInboundCrossClusterSearchConnectionsCommandOutput>;
|
package/dist-types/ts3.4/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeOutboundCrossClusterSearchConnectionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeOutboundCrossClusterSearchConnectionsCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeOutboundCrossClusterSearchConnections: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribeOutboundCrossClusterSearchConnectionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeOutboundCrossClusterSearchConnectionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribePackagesCommandOutput,
|
|
5
5
|
} from "../commands/DescribePackagesCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePackages: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribePackagesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribePackagesCommandOutput>;
|
package/dist-types/ts3.4/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeReservedElasticsearchInstanceOfferingsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeReservedElasticsearchInstanceOfferingsCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedElasticsearchInstanceOfferings: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribeReservedElasticsearchInstanceOfferingsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeReservedElasticsearchInstanceOfferingsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeReservedElasticsearchInstancesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeReservedElasticsearchInstancesCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedElasticsearchInstances: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: DescribeReservedElasticsearchInstancesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeReservedElasticsearchInstancesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetPackageVersionHistoryCommandOutput,
|
|
5
5
|
} from "../commands/GetPackageVersionHistoryCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetPackageVersionHistory: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: GetPackageVersionHistoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetPackageVersionHistoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetUpgradeHistoryCommandOutput,
|
|
5
5
|
} from "../commands/GetUpgradeHistoryCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetUpgradeHistory: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: GetUpgradeHistoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetUpgradeHistoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDomainsForPackageCommandOutput,
|
|
5
5
|
} from "../commands/ListDomainsForPackageCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainsForPackage: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: ListDomainsForPackageCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDomainsForPackageCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListElasticsearchInstanceTypesCommandOutput,
|
|
5
5
|
} from "../commands/ListElasticsearchInstanceTypesCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListElasticsearchInstanceTypes: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: ListElasticsearchInstanceTypesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListElasticsearchInstanceTypesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListElasticsearchVersionsCommandOutput,
|
|
5
5
|
} from "../commands/ListElasticsearchVersionsCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListElasticsearchVersions: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: ListElasticsearchVersionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListElasticsearchVersionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPackagesForDomainCommandOutput,
|
|
5
5
|
} from "../commands/ListPackagesForDomainCommand";
|
|
6
6
|
import { ElasticsearchServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPackagesForDomain: (
|
|
8
8
|
config: ElasticsearchServicePaginationConfiguration,
|
|
9
9
|
input: ListPackagesForDomainCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPackagesForDomainCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|