@aws-sdk/client-opensearch 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/DescribeInboundConnectionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeOutboundConnectionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribePackagesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeReservedInstanceOfferingsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeReservedInstancesPaginator.js +2 -24
- package/dist-cjs/pagination/GetPackageVersionHistoryPaginator.js +2 -24
- package/dist-cjs/pagination/GetUpgradeHistoryPaginator.js +2 -24
- package/dist-cjs/pagination/ListDomainMaintenancesPaginator.js +2 -24
- package/dist-cjs/pagination/ListDomainsForPackagePaginator.js +2 -24
- package/dist-cjs/pagination/ListInstanceTypeDetailsPaginator.js +2 -24
- package/dist-cjs/pagination/ListPackagesForDomainPaginator.js +2 -24
- package/dist-cjs/pagination/ListScheduledActionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListVersionsPaginator.js +2 -24
- package/dist-es/pagination/DescribeDomainAutoTunesPaginator.js +2 -23
- package/dist-es/pagination/DescribeInboundConnectionsPaginator.js +2 -23
- package/dist-es/pagination/DescribeOutboundConnectionsPaginator.js +2 -23
- package/dist-es/pagination/DescribePackagesPaginator.js +2 -23
- package/dist-es/pagination/DescribeReservedInstanceOfferingsPaginator.js +2 -23
- package/dist-es/pagination/DescribeReservedInstancesPaginator.js +2 -23
- package/dist-es/pagination/GetPackageVersionHistoryPaginator.js +2 -23
- package/dist-es/pagination/GetUpgradeHistoryPaginator.js +2 -23
- package/dist-es/pagination/ListDomainMaintenancesPaginator.js +2 -23
- package/dist-es/pagination/ListDomainsForPackagePaginator.js +2 -23
- package/dist-es/pagination/ListInstanceTypeDetailsPaginator.js +2 -23
- package/dist-es/pagination/ListPackagesForDomainPaginator.js +2 -23
- package/dist-es/pagination/ListScheduledActionsPaginator.js +2 -23
- package/dist-es/pagination/ListVersionsPaginator.js +2 -23
- package/dist-types/pagination/DescribeDomainAutoTunesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInboundConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeOutboundConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePackagesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedInstanceOfferingsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedInstancesPaginator.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/ListDomainMaintenancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDomainsForPackagePaginator.d.ts +1 -1
- package/dist-types/pagination/ListInstanceTypeDetailsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPackagesForDomainPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScheduledActionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListVersionsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/DescribeDomainAutoTunesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeInboundConnectionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeOutboundConnectionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribePackagesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeReservedInstanceOfferingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeReservedInstancesPaginator.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/ListDomainMaintenancesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDomainsForPackagePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListInstanceTypeDetailsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPackagesForDomainPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListScheduledActionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListVersionsPaginator.d.ts +3 -3
- package/package.json +5 -5
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetPackageVersionHistoryCommand, } from "../commands/GetPackageVersionHistoryCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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(OpenSearchClient, GetPackageVersionHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetUpgradeHistoryCommand, } from "../commands/GetUpgradeHistoryCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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(OpenSearchClient, GetUpgradeHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListDomainMaintenancesCommand, } from "../commands/ListDomainMaintenancesCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListDomainMaintenancesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListDomainMaintenances(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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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 paginateListDomainMaintenances = createPaginator(OpenSearchClient, ListDomainMaintenancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListDomainsForPackageCommand, } from "../commands/ListDomainsForPackageCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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(OpenSearchClient, ListDomainsForPackageCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListInstanceTypeDetailsCommand, } from "../commands/ListInstanceTypeDetailsCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListInstanceTypeDetailsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListInstanceTypeDetails(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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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 paginateListInstanceTypeDetails = createPaginator(OpenSearchClient, ListInstanceTypeDetailsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListPackagesForDomainCommand, } from "../commands/ListPackagesForDomainCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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(OpenSearchClient, ListPackagesForDomainCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListScheduledActionsCommand, } from "../commands/ListScheduledActionsCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListScheduledActionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListScheduledActions(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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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 paginateListScheduledActions = createPaginator(OpenSearchClient, ListScheduledActionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListVersionsCommand, } from "../commands/ListVersionsCommand";
|
|
2
3
|
import { OpenSearchClient } from "../OpenSearchClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListVersionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListVersions(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 OpenSearchClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected OpenSearch | OpenSearchClient");
|
|
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 paginateListVersions = createPaginator(OpenSearchClient, ListVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainAutoTunes: (config: OpenSearchPaginationConfiguration, input: DescribeDomainAutoTunesCommandInput, ...rest: any[]) => Paginator<DescribeDomainAutoTunesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInboundConnections: (config: OpenSearchPaginationConfiguration, input: DescribeInboundConnectionsCommandInput, ...rest: any[]) => Paginator<DescribeInboundConnectionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeOutboundConnections: (config: OpenSearchPaginationConfiguration, input: DescribeOutboundConnectionsCommandInput, ...rest: any[]) => Paginator<DescribeOutboundConnectionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePackages: (config: OpenSearchPaginationConfiguration, input: DescribePackagesCommandInput, ...rest: any[]) => Paginator<DescribePackagesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedInstanceOfferings: (config: OpenSearchPaginationConfiguration, input: DescribeReservedInstanceOfferingsCommandInput, ...rest: any[]) => Paginator<DescribeReservedInstanceOfferingsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedInstances: (config: OpenSearchPaginationConfiguration, input: DescribeReservedInstancesCommandInput, ...rest: any[]) => Paginator<DescribeReservedInstancesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetPackageVersionHistory: (config: OpenSearchPaginationConfiguration, input: GetPackageVersionHistoryCommandInput, ...rest: any[]) => Paginator<GetPackageVersionHistoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetUpgradeHistory: (config: OpenSearchPaginationConfiguration, input: GetUpgradeHistoryCommandInput, ...rest: any[]) => Paginator<GetUpgradeHistoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainMaintenances: (config: OpenSearchPaginationConfiguration, input: ListDomainMaintenancesCommandInput, ...rest: any[]) => Paginator<ListDomainMaintenancesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainsForPackage: (config: OpenSearchPaginationConfiguration, input: ListDomainsForPackageCommandInput, ...rest: any[]) => Paginator<ListDomainsForPackageCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListInstanceTypeDetails: (config: OpenSearchPaginationConfiguration, input: ListInstanceTypeDetailsCommandInput, ...rest: any[]) => Paginator<ListInstanceTypeDetailsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPackagesForDomain: (config: OpenSearchPaginationConfiguration, input: ListPackagesForDomainCommandInput, ...rest: any[]) => Paginator<ListPackagesForDomainCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListScheduledActions: (config: OpenSearchPaginationConfiguration, input: ListScheduledActionsCommandInput, ...rest: any[]) => Paginator<ListScheduledActionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListVersions: (config: OpenSearchPaginationConfiguration, input: ListVersionsCommandInput, ...rest: any[]) => Paginator<ListVersionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeDomainAutoTunesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeDomainAutoTunesCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainAutoTunes: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribeDomainAutoTunesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDomainAutoTunesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeInboundConnectionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeInboundConnectionsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeInboundConnections: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribeInboundConnectionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeInboundConnectionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeOutboundConnectionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeOutboundConnectionsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeOutboundConnections: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribeOutboundConnectionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeOutboundConnectionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribePackagesCommandOutput,
|
|
5
5
|
} from "../commands/DescribePackagesCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePackages: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribePackagesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribePackagesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeReservedInstanceOfferingsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeReservedInstanceOfferingsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedInstanceOfferings: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribeReservedInstanceOfferingsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeReservedInstanceOfferingsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeReservedInstancesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeReservedInstancesCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeReservedInstances: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: DescribeReservedInstancesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeReservedInstancesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetPackageVersionHistoryCommandOutput,
|
|
5
5
|
} from "../commands/GetPackageVersionHistoryCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetPackageVersionHistory: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
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 { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetUpgradeHistory: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: GetUpgradeHistoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetUpgradeHistoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDomainMaintenancesCommandOutput,
|
|
5
5
|
} from "../commands/ListDomainMaintenancesCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainMaintenances: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListDomainMaintenancesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDomainMaintenancesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDomainsForPackageCommandOutput,
|
|
5
5
|
} from "../commands/ListDomainsForPackageCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDomainsForPackage: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListDomainsForPackageCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDomainsForPackageCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListInstanceTypeDetailsCommandOutput,
|
|
5
5
|
} from "../commands/ListInstanceTypeDetailsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListInstanceTypeDetails: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListInstanceTypeDetailsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListInstanceTypeDetailsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPackagesForDomainCommandOutput,
|
|
5
5
|
} from "../commands/ListPackagesForDomainCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPackagesForDomain: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListPackagesForDomainCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPackagesForDomainCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListScheduledActionsCommandOutput,
|
|
5
5
|
} from "../commands/ListScheduledActionsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListScheduledActions: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListScheduledActionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListScheduledActionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListVersionsCommandOutput,
|
|
5
5
|
} from "../commands/ListVersionsCommand";
|
|
6
6
|
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListVersions: (
|
|
8
8
|
config: OpenSearchPaginationConfiguration,
|
|
9
9
|
input: ListVersionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListVersionsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-opensearch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Opensearch 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",
|