@aws-sdk/client-opensearch 3.682.0 → 3.683.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/README.md +47 -7
- package/dist-cjs/index.js +344 -29
- package/dist-es/OpenSearch.js +10 -0
- package/dist-es/commands/CreateApplicationCommand.js +22 -0
- package/dist-es/commands/DeleteApplicationCommand.js +22 -0
- package/dist-es/commands/GetApplicationCommand.js +22 -0
- package/dist-es/commands/ListApplicationsCommand.js +22 -0
- package/dist-es/commands/UpdateApplicationCommand.js +22 -0
- package/dist-es/commands/UpdateDomainConfigCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +23 -28
- package/dist-es/models/models_1.js +30 -1
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +191 -3
- package/dist-types/OpenSearch.d.ts +36 -0
- package/dist-types/OpenSearchClient.d.ts +7 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +2 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +140 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +14 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +90 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDomainsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +8 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +113 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +104 -0
- package/dist-types/commands/RejectInboundConnectionCommand.d.ts +2 -1
- package/dist-types/commands/RemoveTagsCommand.d.ts +1 -1
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +3 -2
- package/dist-types/commands/StartDomainMaintenanceCommand.d.ts +1 -1
- package/dist-types/commands/StartServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +126 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +18 -1
- package/dist-types/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +538 -565
- package/dist-types/models/models_1.d.ts +603 -1
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +86 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDomainMaintenanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -114
- package/dist-types/ts3.4/models/models_1.d.ts +169 -1
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdatePackageRequest, UpdatePackageResponse } from "../models/
|
|
3
|
+
import { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_1";
|
|
4
4
|
import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/
|
|
3
|
+
import { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_1";
|
|
4
4
|
import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/
|
|
3
|
+
import { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_1";
|
|
4
4
|
import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -5,10 +5,12 @@ export * from "./AssociatePackageCommand";
|
|
|
5
5
|
export * from "./AuthorizeVpcEndpointAccessCommand";
|
|
6
6
|
export * from "./CancelDomainConfigChangeCommand";
|
|
7
7
|
export * from "./CancelServiceSoftwareUpdateCommand";
|
|
8
|
+
export * from "./CreateApplicationCommand";
|
|
8
9
|
export * from "./CreateDomainCommand";
|
|
9
10
|
export * from "./CreateOutboundConnectionCommand";
|
|
10
11
|
export * from "./CreatePackageCommand";
|
|
11
12
|
export * from "./CreateVpcEndpointCommand";
|
|
13
|
+
export * from "./DeleteApplicationCommand";
|
|
12
14
|
export * from "./DeleteDataSourceCommand";
|
|
13
15
|
export * from "./DeleteDomainCommand";
|
|
14
16
|
export * from "./DeleteInboundConnectionCommand";
|
|
@@ -31,12 +33,14 @@ export * from "./DescribeReservedInstanceOfferingsCommand";
|
|
|
31
33
|
export * from "./DescribeReservedInstancesCommand";
|
|
32
34
|
export * from "./DescribeVpcEndpointsCommand";
|
|
33
35
|
export * from "./DissociatePackageCommand";
|
|
36
|
+
export * from "./GetApplicationCommand";
|
|
34
37
|
export * from "./GetCompatibleVersionsCommand";
|
|
35
38
|
export * from "./GetDataSourceCommand";
|
|
36
39
|
export * from "./GetDomainMaintenanceStatusCommand";
|
|
37
40
|
export * from "./GetPackageVersionHistoryCommand";
|
|
38
41
|
export * from "./GetUpgradeHistoryCommand";
|
|
39
42
|
export * from "./GetUpgradeStatusCommand";
|
|
43
|
+
export * from "./ListApplicationsCommand";
|
|
40
44
|
export * from "./ListDataSourcesCommand";
|
|
41
45
|
export * from "./ListDomainMaintenancesCommand";
|
|
42
46
|
export * from "./ListDomainNamesCommand";
|
|
@@ -55,6 +59,7 @@ export * from "./RemoveTagsCommand";
|
|
|
55
59
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
56
60
|
export * from "./StartDomainMaintenanceCommand";
|
|
57
61
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
62
|
+
export * from "./UpdateApplicationCommand";
|
|
58
63
|
export * from "./UpdateDataSourceCommand";
|
|
59
64
|
export * from "./UpdateDomainConfigCommand";
|
|
60
65
|
export * from "./UpdatePackageCommand";
|