@aws-sdk/client-opensearch 3.431.0 → 3.433.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 +24 -0
- package/dist-cjs/OpenSearch.js +6 -0
- package/dist-cjs/commands/GetDomainMaintenanceStatusCommand.js +51 -0
- package/dist-cjs/commands/ListDomainMaintenancesCommand.js +51 -0
- package/dist-cjs/commands/StartDomainMaintenanceCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +14 -2
- package/dist-cjs/pagination/ListDomainMaintenancesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +238 -3
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/GetDomainMaintenanceStatusCommand.js +47 -0
- package/dist-es/commands/ListDomainMaintenancesCommand.js +47 -0
- package/dist-es/commands/StartDomainMaintenanceCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/pagination/ListDomainMaintenancesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +229 -0
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/GetDomainMaintenanceStatusCommand.d.ts +94 -0
- package/dist-types/commands/ListDomainMaintenancesCommand.d.ts +104 -0
- package/dist-types/commands/StartDomainMaintenanceCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +219 -6
- package/dist-types/pagination/ListDomainMaintenancesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetDomainMaintenanceStatusCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDomainMaintenancesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartDomainMaintenanceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +61 -4
- package/dist-types/ts3.4/pagination/ListDomainMaintenancesPaginator.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 +36 -0
- package/package.json +31 -31
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetDomainMaintenanceStatusRequest,
|
|
11
|
+
GetDomainMaintenanceStatusResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetDomainMaintenanceStatusCommandInput
|
|
20
|
+
extends GetDomainMaintenanceStatusRequest {}
|
|
21
|
+
export interface GetDomainMaintenanceStatusCommandOutput
|
|
22
|
+
extends GetDomainMaintenanceStatusResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetDomainMaintenanceStatusCommand extends $Command<
|
|
25
|
+
GetDomainMaintenanceStatusCommandInput,
|
|
26
|
+
GetDomainMaintenanceStatusCommandOutput,
|
|
27
|
+
OpenSearchClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetDomainMaintenanceStatusCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetDomainMaintenanceStatusCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: OpenSearchClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetDomainMaintenanceStatusCommandInput,
|
|
38
|
+
GetDomainMaintenanceStatusCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListDomainMaintenancesRequest,
|
|
11
|
+
ListDomainMaintenancesResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListDomainMaintenancesCommandInput
|
|
20
|
+
extends ListDomainMaintenancesRequest {}
|
|
21
|
+
export interface ListDomainMaintenancesCommandOutput
|
|
22
|
+
extends ListDomainMaintenancesResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListDomainMaintenancesCommand extends $Command<
|
|
25
|
+
ListDomainMaintenancesCommandInput,
|
|
26
|
+
ListDomainMaintenancesCommandOutput,
|
|
27
|
+
OpenSearchClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListDomainMaintenancesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListDomainMaintenancesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: OpenSearchClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListDomainMaintenancesCommandInput,
|
|
38
|
+
ListDomainMaintenancesCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
StartDomainMaintenanceRequest,
|
|
11
|
+
StartDomainMaintenanceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartDomainMaintenanceCommandInput
|
|
20
|
+
extends StartDomainMaintenanceRequest {}
|
|
21
|
+
export interface StartDomainMaintenanceCommandOutput
|
|
22
|
+
extends StartDomainMaintenanceResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartDomainMaintenanceCommand extends $Command<
|
|
25
|
+
StartDomainMaintenanceCommandInput,
|
|
26
|
+
StartDomainMaintenanceCommandOutput,
|
|
27
|
+
OpenSearchClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartDomainMaintenanceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartDomainMaintenanceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: OpenSearchClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartDomainMaintenanceCommandInput,
|
|
38
|
+
StartDomainMaintenanceCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -29,9 +29,11 @@ export * from "./DescribeReservedInstancesCommand";
|
|
|
29
29
|
export * from "./DescribeVpcEndpointsCommand";
|
|
30
30
|
export * from "./DissociatePackageCommand";
|
|
31
31
|
export * from "./GetCompatibleVersionsCommand";
|
|
32
|
+
export * from "./GetDomainMaintenanceStatusCommand";
|
|
32
33
|
export * from "./GetPackageVersionHistoryCommand";
|
|
33
34
|
export * from "./GetUpgradeHistoryCommand";
|
|
34
35
|
export * from "./GetUpgradeStatusCommand";
|
|
36
|
+
export * from "./ListDomainMaintenancesCommand";
|
|
35
37
|
export * from "./ListDomainNamesCommand";
|
|
36
38
|
export * from "./ListDomainsForPackageCommand";
|
|
37
39
|
export * from "./ListInstanceTypeDetailsCommand";
|
|
@@ -46,6 +48,7 @@ export * from "./PurchaseReservedInstanceOfferingCommand";
|
|
|
46
48
|
export * from "./RejectInboundConnectionCommand";
|
|
47
49
|
export * from "./RemoveTagsCommand";
|
|
48
50
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
51
|
+
export * from "./StartDomainMaintenanceCommand";
|
|
49
52
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
50
53
|
export * from "./UpdateDomainConfigCommand";
|
|
51
54
|
export * from "./UpdatePackageCommand";
|
|
@@ -502,7 +502,7 @@ export interface CreateDomainRequest {
|
|
|
502
502
|
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
503
503
|
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
504
504
|
AdvancedOptions?: Record<string, string>;
|
|
505
|
-
LogPublishingOptions?: Record<LogType, LogPublishingOption
|
|
505
|
+
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
506
506
|
DomainEndpointOptions?: DomainEndpointOptions;
|
|
507
507
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
508
508
|
TagList?: Tag[];
|
|
@@ -557,7 +557,7 @@ export interface DomainStatus {
|
|
|
557
557
|
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
558
558
|
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
559
559
|
AdvancedOptions?: Record<string, string>;
|
|
560
|
-
LogPublishingOptions?: Record<LogType, LogPublishingOption
|
|
560
|
+
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
561
561
|
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
562
562
|
DomainEndpointOptions?: DomainEndpointOptions;
|
|
563
563
|
AdvancedSecurityOptions?: AdvancedSecurityOptions;
|
|
@@ -873,7 +873,7 @@ export interface VersionStatus {
|
|
|
873
873
|
Status: OptionStatus | undefined;
|
|
874
874
|
}
|
|
875
875
|
export interface LogPublishingOptionsStatus {
|
|
876
|
-
Options?: Record<LogType, LogPublishingOption
|
|
876
|
+
Options?: Partial<Record<LogType, LogPublishingOption>>;
|
|
877
877
|
Status?: OptionStatus;
|
|
878
878
|
}
|
|
879
879
|
export interface NodeToNodeEncryptionOptionsStatus {
|
|
@@ -1211,6 +1211,34 @@ export interface CompatibleVersionsMap {
|
|
|
1211
1211
|
export interface GetCompatibleVersionsResponse {
|
|
1212
1212
|
CompatibleVersions?: CompatibleVersionsMap[];
|
|
1213
1213
|
}
|
|
1214
|
+
export interface GetDomainMaintenanceStatusRequest {
|
|
1215
|
+
DomainName: string | undefined;
|
|
1216
|
+
MaintenanceId: string | undefined;
|
|
1217
|
+
}
|
|
1218
|
+
export declare const MaintenanceType: {
|
|
1219
|
+
readonly REBOOT_NODE: "REBOOT_NODE";
|
|
1220
|
+
readonly RESTART_DASHBOARD: "RESTART_DASHBOARD";
|
|
1221
|
+
readonly RESTART_SEARCH_PROCESS: "RESTART_SEARCH_PROCESS";
|
|
1222
|
+
};
|
|
1223
|
+
export type MaintenanceType =
|
|
1224
|
+
(typeof MaintenanceType)[keyof typeof MaintenanceType];
|
|
1225
|
+
export declare const MaintenanceStatus: {
|
|
1226
|
+
readonly COMPLETED: "COMPLETED";
|
|
1227
|
+
readonly FAILED: "FAILED";
|
|
1228
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1229
|
+
readonly PENDING: "PENDING";
|
|
1230
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
1231
|
+
};
|
|
1232
|
+
export type MaintenanceStatus =
|
|
1233
|
+
(typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
1234
|
+
export interface GetDomainMaintenanceStatusResponse {
|
|
1235
|
+
Status?: MaintenanceStatus;
|
|
1236
|
+
StatusMessage?: string;
|
|
1237
|
+
NodeId?: string;
|
|
1238
|
+
Action?: MaintenanceType;
|
|
1239
|
+
CreatedAt?: Date;
|
|
1240
|
+
UpdatedAt?: Date;
|
|
1241
|
+
}
|
|
1214
1242
|
export interface GetPackageVersionHistoryRequest {
|
|
1215
1243
|
PackageID: string | undefined;
|
|
1216
1244
|
MaxResults?: number;
|
|
@@ -1269,6 +1297,27 @@ export interface GetUpgradeStatusResponse {
|
|
|
1269
1297
|
StepStatus?: UpgradeStatus;
|
|
1270
1298
|
UpgradeName?: string;
|
|
1271
1299
|
}
|
|
1300
|
+
export interface ListDomainMaintenancesRequest {
|
|
1301
|
+
DomainName: string | undefined;
|
|
1302
|
+
Action?: MaintenanceType;
|
|
1303
|
+
Status?: MaintenanceStatus;
|
|
1304
|
+
MaxResults?: number;
|
|
1305
|
+
NextToken?: string;
|
|
1306
|
+
}
|
|
1307
|
+
export interface DomainMaintenanceDetails {
|
|
1308
|
+
MaintenanceId?: string;
|
|
1309
|
+
DomainName?: string;
|
|
1310
|
+
Action?: MaintenanceType;
|
|
1311
|
+
NodeId?: string;
|
|
1312
|
+
Status?: MaintenanceStatus;
|
|
1313
|
+
StatusMessage?: string;
|
|
1314
|
+
CreatedAt?: Date;
|
|
1315
|
+
UpdatedAt?: Date;
|
|
1316
|
+
}
|
|
1317
|
+
export interface ListDomainMaintenancesResponse {
|
|
1318
|
+
DomainMaintenances?: DomainMaintenanceDetails[];
|
|
1319
|
+
NextToken?: string;
|
|
1320
|
+
}
|
|
1272
1321
|
export declare const EngineType: {
|
|
1273
1322
|
readonly Elasticsearch: "Elasticsearch";
|
|
1274
1323
|
readonly OpenSearch: "OpenSearch";
|
|
@@ -1410,6 +1459,14 @@ export interface RevokeVpcEndpointAccessRequest {
|
|
|
1410
1459
|
Account: string | undefined;
|
|
1411
1460
|
}
|
|
1412
1461
|
export interface RevokeVpcEndpointAccessResponse {}
|
|
1462
|
+
export interface StartDomainMaintenanceRequest {
|
|
1463
|
+
DomainName: string | undefined;
|
|
1464
|
+
Action: MaintenanceType | undefined;
|
|
1465
|
+
NodeId?: string;
|
|
1466
|
+
}
|
|
1467
|
+
export interface StartDomainMaintenanceResponse {
|
|
1468
|
+
MaintenanceId?: string;
|
|
1469
|
+
}
|
|
1413
1470
|
export declare const ScheduleAt: {
|
|
1414
1471
|
readonly NOW: "NOW";
|
|
1415
1472
|
readonly OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW";
|
|
@@ -1438,7 +1495,7 @@ export interface UpdateDomainConfigRequest {
|
|
|
1438
1495
|
CognitoOptions?: CognitoOptions;
|
|
1439
1496
|
AdvancedOptions?: Record<string, string>;
|
|
1440
1497
|
AccessPolicies?: string;
|
|
1441
|
-
LogPublishingOptions?: Record<LogType, LogPublishingOption
|
|
1498
|
+
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
1442
1499
|
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
1443
1500
|
DomainEndpointOptions?: DomainEndpointOptions;
|
|
1444
1501
|
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDomainMaintenancesCommandInput,
|
|
4
|
+
ListDomainMaintenancesCommandOutput,
|
|
5
|
+
} from "../commands/ListDomainMaintenancesCommand";
|
|
6
|
+
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDomainMaintenances(
|
|
8
|
+
config: OpenSearchPaginationConfiguration,
|
|
9
|
+
input: ListDomainMaintenancesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDomainMaintenancesCommandOutput>;
|
|
@@ -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 "./ListDomainMaintenancesPaginator";
|
|
10
11
|
export * from "./ListDomainsForPackagePaginator";
|
|
11
12
|
export * from "./ListInstanceTypeDetailsPaginator";
|
|
12
13
|
export * from "./ListPackagesForDomainPaginator";
|
|
@@ -127,6 +127,10 @@ import {
|
|
|
127
127
|
GetCompatibleVersionsCommandInput,
|
|
128
128
|
GetCompatibleVersionsCommandOutput,
|
|
129
129
|
} from "../commands/GetCompatibleVersionsCommand";
|
|
130
|
+
import {
|
|
131
|
+
GetDomainMaintenanceStatusCommandInput,
|
|
132
|
+
GetDomainMaintenanceStatusCommandOutput,
|
|
133
|
+
} from "../commands/GetDomainMaintenanceStatusCommand";
|
|
130
134
|
import {
|
|
131
135
|
GetPackageVersionHistoryCommandInput,
|
|
132
136
|
GetPackageVersionHistoryCommandOutput,
|
|
@@ -139,6 +143,10 @@ import {
|
|
|
139
143
|
GetUpgradeStatusCommandInput,
|
|
140
144
|
GetUpgradeStatusCommandOutput,
|
|
141
145
|
} from "../commands/GetUpgradeStatusCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListDomainMaintenancesCommandInput,
|
|
148
|
+
ListDomainMaintenancesCommandOutput,
|
|
149
|
+
} from "../commands/ListDomainMaintenancesCommand";
|
|
142
150
|
import {
|
|
143
151
|
ListDomainNamesCommandInput,
|
|
144
152
|
ListDomainNamesCommandOutput,
|
|
@@ -195,6 +203,10 @@ import {
|
|
|
195
203
|
RevokeVpcEndpointAccessCommandInput,
|
|
196
204
|
RevokeVpcEndpointAccessCommandOutput,
|
|
197
205
|
} from "../commands/RevokeVpcEndpointAccessCommand";
|
|
206
|
+
import {
|
|
207
|
+
StartDomainMaintenanceCommandInput,
|
|
208
|
+
StartDomainMaintenanceCommandOutput,
|
|
209
|
+
} from "../commands/StartDomainMaintenanceCommand";
|
|
198
210
|
import {
|
|
199
211
|
StartServiceSoftwareUpdateCommandInput,
|
|
200
212
|
StartServiceSoftwareUpdateCommandOutput,
|
|
@@ -343,6 +355,10 @@ export declare const se_GetCompatibleVersionsCommand: (
|
|
|
343
355
|
input: GetCompatibleVersionsCommandInput,
|
|
344
356
|
context: __SerdeContext
|
|
345
357
|
) => Promise<__HttpRequest>;
|
|
358
|
+
export declare const se_GetDomainMaintenanceStatusCommand: (
|
|
359
|
+
input: GetDomainMaintenanceStatusCommandInput,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<__HttpRequest>;
|
|
346
362
|
export declare const se_GetPackageVersionHistoryCommand: (
|
|
347
363
|
input: GetPackageVersionHistoryCommandInput,
|
|
348
364
|
context: __SerdeContext
|
|
@@ -355,6 +371,10 @@ export declare const se_GetUpgradeStatusCommand: (
|
|
|
355
371
|
input: GetUpgradeStatusCommandInput,
|
|
356
372
|
context: __SerdeContext
|
|
357
373
|
) => Promise<__HttpRequest>;
|
|
374
|
+
export declare const se_ListDomainMaintenancesCommand: (
|
|
375
|
+
input: ListDomainMaintenancesCommandInput,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<__HttpRequest>;
|
|
358
378
|
export declare const se_ListDomainNamesCommand: (
|
|
359
379
|
input: ListDomainNamesCommandInput,
|
|
360
380
|
context: __SerdeContext
|
|
@@ -411,6 +431,10 @@ export declare const se_RevokeVpcEndpointAccessCommand: (
|
|
|
411
431
|
input: RevokeVpcEndpointAccessCommandInput,
|
|
412
432
|
context: __SerdeContext
|
|
413
433
|
) => Promise<__HttpRequest>;
|
|
434
|
+
export declare const se_StartDomainMaintenanceCommand: (
|
|
435
|
+
input: StartDomainMaintenanceCommandInput,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<__HttpRequest>;
|
|
414
438
|
export declare const se_StartServiceSoftwareUpdateCommand: (
|
|
415
439
|
input: StartServiceSoftwareUpdateCommandInput,
|
|
416
440
|
context: __SerdeContext
|
|
@@ -559,6 +583,10 @@ export declare const de_GetCompatibleVersionsCommand: (
|
|
|
559
583
|
output: __HttpResponse,
|
|
560
584
|
context: __SerdeContext
|
|
561
585
|
) => Promise<GetCompatibleVersionsCommandOutput>;
|
|
586
|
+
export declare const de_GetDomainMaintenanceStatusCommand: (
|
|
587
|
+
output: __HttpResponse,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<GetDomainMaintenanceStatusCommandOutput>;
|
|
562
590
|
export declare const de_GetPackageVersionHistoryCommand: (
|
|
563
591
|
output: __HttpResponse,
|
|
564
592
|
context: __SerdeContext
|
|
@@ -571,6 +599,10 @@ export declare const de_GetUpgradeStatusCommand: (
|
|
|
571
599
|
output: __HttpResponse,
|
|
572
600
|
context: __SerdeContext
|
|
573
601
|
) => Promise<GetUpgradeStatusCommandOutput>;
|
|
602
|
+
export declare const de_ListDomainMaintenancesCommand: (
|
|
603
|
+
output: __HttpResponse,
|
|
604
|
+
context: __SerdeContext
|
|
605
|
+
) => Promise<ListDomainMaintenancesCommandOutput>;
|
|
574
606
|
export declare const de_ListDomainNamesCommand: (
|
|
575
607
|
output: __HttpResponse,
|
|
576
608
|
context: __SerdeContext
|
|
@@ -627,6 +659,10 @@ export declare const de_RevokeVpcEndpointAccessCommand: (
|
|
|
627
659
|
output: __HttpResponse,
|
|
628
660
|
context: __SerdeContext
|
|
629
661
|
) => Promise<RevokeVpcEndpointAccessCommandOutput>;
|
|
662
|
+
export declare const de_StartDomainMaintenanceCommand: (
|
|
663
|
+
output: __HttpResponse,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<StartDomainMaintenanceCommandOutput>;
|
|
630
666
|
export declare const de_StartServiceSoftwareUpdateCommand: (
|
|
631
667
|
output: __HttpResponse,
|
|
632
668
|
context: __SerdeContext
|
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.433.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.433.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.433.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.433.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.433.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.433.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
32
|
+
"@aws-sdk/types": "3.433.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.433.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.433.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.16",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.4",
|
|
38
|
+
"@smithy/hash-node": "^2.0.12",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.12",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.18",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.6",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.8",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.8",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.12",
|
|
49
|
+
"@smithy/types": "^2.4.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.12",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
56
|
+
"@smithy/util-retry": "^2.0.5",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|