@aws-sdk/client-opensearch 3.682.0 → 3.686.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 +38 -36
package/dist-es/OpenSearch.js
CHANGED
|
@@ -6,10 +6,12 @@ import { AssociatePackageCommand, } from "./commands/AssociatePackageCommand";
|
|
|
6
6
|
import { AuthorizeVpcEndpointAccessCommand, } from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
7
7
|
import { CancelDomainConfigChangeCommand, } from "./commands/CancelDomainConfigChangeCommand";
|
|
8
8
|
import { CancelServiceSoftwareUpdateCommand, } from "./commands/CancelServiceSoftwareUpdateCommand";
|
|
9
|
+
import { CreateApplicationCommand, } from "./commands/CreateApplicationCommand";
|
|
9
10
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
10
11
|
import { CreateOutboundConnectionCommand, } from "./commands/CreateOutboundConnectionCommand";
|
|
11
12
|
import { CreatePackageCommand, } from "./commands/CreatePackageCommand";
|
|
12
13
|
import { CreateVpcEndpointCommand, } from "./commands/CreateVpcEndpointCommand";
|
|
14
|
+
import { DeleteApplicationCommand, } from "./commands/DeleteApplicationCommand";
|
|
13
15
|
import { DeleteDataSourceCommand, } from "./commands/DeleteDataSourceCommand";
|
|
14
16
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
15
17
|
import { DeleteInboundConnectionCommand, } from "./commands/DeleteInboundConnectionCommand";
|
|
@@ -32,12 +34,14 @@ import { DescribeReservedInstanceOfferingsCommand, } from "./commands/DescribeRe
|
|
|
32
34
|
import { DescribeReservedInstancesCommand, } from "./commands/DescribeReservedInstancesCommand";
|
|
33
35
|
import { DescribeVpcEndpointsCommand, } from "./commands/DescribeVpcEndpointsCommand";
|
|
34
36
|
import { DissociatePackageCommand, } from "./commands/DissociatePackageCommand";
|
|
37
|
+
import { GetApplicationCommand, } from "./commands/GetApplicationCommand";
|
|
35
38
|
import { GetCompatibleVersionsCommand, } from "./commands/GetCompatibleVersionsCommand";
|
|
36
39
|
import { GetDataSourceCommand, } from "./commands/GetDataSourceCommand";
|
|
37
40
|
import { GetDomainMaintenanceStatusCommand, } from "./commands/GetDomainMaintenanceStatusCommand";
|
|
38
41
|
import { GetPackageVersionHistoryCommand, } from "./commands/GetPackageVersionHistoryCommand";
|
|
39
42
|
import { GetUpgradeHistoryCommand, } from "./commands/GetUpgradeHistoryCommand";
|
|
40
43
|
import { GetUpgradeStatusCommand, } from "./commands/GetUpgradeStatusCommand";
|
|
44
|
+
import { ListApplicationsCommand, } from "./commands/ListApplicationsCommand";
|
|
41
45
|
import { ListDataSourcesCommand, } from "./commands/ListDataSourcesCommand";
|
|
42
46
|
import { ListDomainMaintenancesCommand, } from "./commands/ListDomainMaintenancesCommand";
|
|
43
47
|
import { ListDomainNamesCommand, } from "./commands/ListDomainNamesCommand";
|
|
@@ -56,6 +60,7 @@ import { RemoveTagsCommand } from "./commands/RemoveTagsCommand";
|
|
|
56
60
|
import { RevokeVpcEndpointAccessCommand, } from "./commands/RevokeVpcEndpointAccessCommand";
|
|
57
61
|
import { StartDomainMaintenanceCommand, } from "./commands/StartDomainMaintenanceCommand";
|
|
58
62
|
import { StartServiceSoftwareUpdateCommand, } from "./commands/StartServiceSoftwareUpdateCommand";
|
|
63
|
+
import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
59
64
|
import { UpdateDataSourceCommand, } from "./commands/UpdateDataSourceCommand";
|
|
60
65
|
import { UpdateDomainConfigCommand, } from "./commands/UpdateDomainConfigCommand";
|
|
61
66
|
import { UpdatePackageCommand, } from "./commands/UpdatePackageCommand";
|
|
@@ -71,10 +76,12 @@ const commands = {
|
|
|
71
76
|
AuthorizeVpcEndpointAccessCommand,
|
|
72
77
|
CancelDomainConfigChangeCommand,
|
|
73
78
|
CancelServiceSoftwareUpdateCommand,
|
|
79
|
+
CreateApplicationCommand,
|
|
74
80
|
CreateDomainCommand,
|
|
75
81
|
CreateOutboundConnectionCommand,
|
|
76
82
|
CreatePackageCommand,
|
|
77
83
|
CreateVpcEndpointCommand,
|
|
84
|
+
DeleteApplicationCommand,
|
|
78
85
|
DeleteDataSourceCommand,
|
|
79
86
|
DeleteDomainCommand,
|
|
80
87
|
DeleteInboundConnectionCommand,
|
|
@@ -97,12 +104,14 @@ const commands = {
|
|
|
97
104
|
DescribeReservedInstancesCommand,
|
|
98
105
|
DescribeVpcEndpointsCommand,
|
|
99
106
|
DissociatePackageCommand,
|
|
107
|
+
GetApplicationCommand,
|
|
100
108
|
GetCompatibleVersionsCommand,
|
|
101
109
|
GetDataSourceCommand,
|
|
102
110
|
GetDomainMaintenanceStatusCommand,
|
|
103
111
|
GetPackageVersionHistoryCommand,
|
|
104
112
|
GetUpgradeHistoryCommand,
|
|
105
113
|
GetUpgradeStatusCommand,
|
|
114
|
+
ListApplicationsCommand,
|
|
106
115
|
ListDataSourcesCommand,
|
|
107
116
|
ListDomainMaintenancesCommand,
|
|
108
117
|
ListDomainNamesCommand,
|
|
@@ -121,6 +130,7 @@ const commands = {
|
|
|
121
130
|
RevokeVpcEndpointAccessCommand,
|
|
122
131
|
StartDomainMaintenanceCommand,
|
|
123
132
|
StartServiceSoftwareUpdateCommand,
|
|
133
|
+
UpdateApplicationCommand,
|
|
124
134
|
UpdateDataSourceCommand,
|
|
125
135
|
UpdateDomainConfigCommand,
|
|
126
136
|
UpdatePackageCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateApplicationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonOpenSearchService", "CreateApplication", {})
|
|
17
|
+
.n("OpenSearchClient", "CreateApplicationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_CreateApplicationCommand)
|
|
20
|
+
.de(de_CreateApplicationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteApplicationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonOpenSearchService", "DeleteApplication", {})
|
|
17
|
+
.n("OpenSearchClient", "DeleteApplicationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteApplicationCommand)
|
|
20
|
+
.de(de_DeleteApplicationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetApplicationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonOpenSearchService", "GetApplication", {})
|
|
17
|
+
.n("OpenSearchClient", "GetApplicationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetApplicationCommand)
|
|
20
|
+
.de(de_GetApplicationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListApplicationsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonOpenSearchService", "ListApplications", {})
|
|
17
|
+
.n("OpenSearchClient", "ListApplicationsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListApplicationsCommand)
|
|
20
|
+
.de(de_ListApplicationsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateApplicationCommand, se_UpdateApplicationCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateApplicationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonOpenSearchService", "UpdateApplication", {})
|
|
17
|
+
.n("OpenSearchClient", "UpdateApplicationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateApplicationCommand)
|
|
20
|
+
.de(de_UpdateApplicationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { UpdateDomainConfigRequestFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { UpdateDomainConfigRequestFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_UpdateDomainConfigCommand, se_UpdateDomainConfigCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateDomainConfigCommand extends $Command
|
|
@@ -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";
|
|
@@ -177,6 +177,9 @@ export class ConflictException extends __BaseException {
|
|
|
177
177
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
|
+
export const AWSServicePrincipal = {
|
|
181
|
+
application_opensearchservice_amazonaws_com: "application.opensearchservice.amazonaws.com",
|
|
182
|
+
};
|
|
180
183
|
export const PrincipalType = {
|
|
181
184
|
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
182
185
|
AWS_SERVICE: "AWS_SERVICE",
|
|
@@ -188,6 +191,10 @@ export const DeploymentStatus = {
|
|
|
188
191
|
NOT_ELIGIBLE: "NOT_ELIGIBLE",
|
|
189
192
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
190
193
|
};
|
|
194
|
+
export const AppConfigType = {
|
|
195
|
+
OpensearchDashboardAdminGroups: "opensearchDashboards.dashboardAdmin.groups",
|
|
196
|
+
OpensearchDashboardAdminUsers: "opensearchDashboards.dashboardAdmin.users",
|
|
197
|
+
};
|
|
191
198
|
export const AutoTuneDesiredState = {
|
|
192
199
|
DISABLED: "DISABLED",
|
|
193
200
|
ENABLED: "ENABLED",
|
|
@@ -319,6 +326,15 @@ export const VolumeType = {
|
|
|
319
326
|
io1: "io1",
|
|
320
327
|
standard: "standard",
|
|
321
328
|
};
|
|
329
|
+
export const RolesKeyIdCOption = {
|
|
330
|
+
GroupId: "GroupId",
|
|
331
|
+
GroupName: "GroupName",
|
|
332
|
+
};
|
|
333
|
+
export const SubjectKeyIdCOption = {
|
|
334
|
+
Email: "Email",
|
|
335
|
+
UserId: "UserId",
|
|
336
|
+
UserName: "UserName",
|
|
337
|
+
};
|
|
322
338
|
export const IPAddressType = {
|
|
323
339
|
DUALSTACK: "dualstack",
|
|
324
340
|
IPV4: "ipv4",
|
|
@@ -506,6 +522,13 @@ export const VpcEndpointErrorCode = {
|
|
|
506
522
|
ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND",
|
|
507
523
|
SERVER_ERROR: "SERVER_ERROR",
|
|
508
524
|
};
|
|
525
|
+
export const ApplicationStatus = {
|
|
526
|
+
ACTIVE: "ACTIVE",
|
|
527
|
+
CREATING: "CREATING",
|
|
528
|
+
DELETING: "DELETING",
|
|
529
|
+
FAILED: "FAILED",
|
|
530
|
+
UPDATING: "UPDATING",
|
|
531
|
+
};
|
|
509
532
|
export const DataSourceStatus = {
|
|
510
533
|
ACTIVE: "ACTIVE",
|
|
511
534
|
DISABLED: "DISABLED",
|
|
@@ -541,28 +564,6 @@ export const ScheduledBy = {
|
|
|
541
564
|
CUSTOMER: "CUSTOMER",
|
|
542
565
|
SYSTEM: "SYSTEM",
|
|
543
566
|
};
|
|
544
|
-
export const ScheduleAt = {
|
|
545
|
-
NOW: "NOW",
|
|
546
|
-
OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW",
|
|
547
|
-
TIMESTAMP: "TIMESTAMP",
|
|
548
|
-
};
|
|
549
|
-
export const DryRunMode = {
|
|
550
|
-
Basic: "Basic",
|
|
551
|
-
Verbose: "Verbose",
|
|
552
|
-
};
|
|
553
|
-
export class SlotNotAvailableException extends __BaseException {
|
|
554
|
-
constructor(opts) {
|
|
555
|
-
super({
|
|
556
|
-
name: "SlotNotAvailableException",
|
|
557
|
-
$fault: "client",
|
|
558
|
-
...opts,
|
|
559
|
-
});
|
|
560
|
-
this.name = "SlotNotAvailableException";
|
|
561
|
-
this.$fault = "client";
|
|
562
|
-
Object.setPrototypeOf(this, SlotNotAvailableException.prototype);
|
|
563
|
-
this.SlotSuggestions = opts.SlotSuggestions;
|
|
564
|
-
}
|
|
565
|
-
}
|
|
566
567
|
export const MasterUserOptionsFilterSensitiveLog = (obj) => ({
|
|
567
568
|
...obj,
|
|
568
569
|
...(obj.MasterUserName && { MasterUserName: SENSITIVE_STRING }),
|
|
@@ -583,9 +584,3 @@ export const CreateDomainRequestFilterSensitiveLog = (obj) => ({
|
|
|
583
584
|
AdvancedSecurityOptions: AdvancedSecurityOptionsInputFilterSensitiveLog(obj.AdvancedSecurityOptions),
|
|
584
585
|
}),
|
|
585
586
|
});
|
|
586
|
-
export const UpdateDomainConfigRequestFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
...(obj.AdvancedSecurityOptions && {
|
|
589
|
-
AdvancedSecurityOptions: AdvancedSecurityOptionsInputFilterSensitiveLog(obj.AdvancedSecurityOptions),
|
|
590
|
-
}),
|
|
591
|
-
});
|
|
@@ -1 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
import { AdvancedSecurityOptionsInputFilterSensitiveLog, } from "./models_0";
|
|
2
|
+
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
3
|
+
export const ScheduleAt = {
|
|
4
|
+
NOW: "NOW",
|
|
5
|
+
OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW",
|
|
6
|
+
TIMESTAMP: "TIMESTAMP",
|
|
7
|
+
};
|
|
8
|
+
export const DryRunMode = {
|
|
9
|
+
Basic: "Basic",
|
|
10
|
+
Verbose: "Verbose",
|
|
11
|
+
};
|
|
12
|
+
export class SlotNotAvailableException extends __BaseException {
|
|
13
|
+
constructor(opts) {
|
|
14
|
+
super({
|
|
15
|
+
name: "SlotNotAvailableException",
|
|
16
|
+
$fault: "client",
|
|
17
|
+
...opts,
|
|
18
|
+
});
|
|
19
|
+
this.name = "SlotNotAvailableException";
|
|
20
|
+
this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(this, SlotNotAvailableException.prototype);
|
|
22
|
+
this.SlotSuggestions = opts.SlotSuggestions;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export const UpdateDomainConfigRequestFilterSensitiveLog = (obj) => ({
|
|
26
|
+
...obj,
|
|
27
|
+
...(obj.AdvancedSecurityOptions && {
|
|
28
|
+
AdvancedSecurityOptions: AdvancedSecurityOptionsInputFilterSensitiveLog(obj.AdvancedSecurityOptions),
|
|
29
|
+
}),
|
|
30
|
+
});
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListApplicationsCommand, } from "../commands/ListApplicationsCommand";
|
|
3
|
+
import { OpenSearchClient } from "../OpenSearchClient";
|
|
4
|
+
export const paginateListApplications = createPaginator(OpenSearchClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -7,6 +7,7 @@ export * from "./DescribeReservedInstancesPaginator";
|
|
|
7
7
|
export * from "./GetPackageVersionHistoryPaginator";
|
|
8
8
|
export * from "./GetUpgradeHistoryPaginator";
|
|
9
9
|
export * from "./Interfaces";
|
|
10
|
+
export * from "./ListApplicationsPaginator";
|
|
10
11
|
export * from "./ListDomainMaintenancesPaginator";
|
|
11
12
|
export * from "./ListDomainsForPackagePaginator";
|
|
12
13
|
export * from "./ListInstanceTypeDetailsPaginator";
|