@aws-sdk/client-elasticsearch-service 3.48.0 → 3.52.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/CHANGELOG.md +35 -0
- package/dist-cjs/ElasticsearchService.js +15 -0
- package/dist-cjs/commands/DescribeDomainChangeProgressCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +41 -4
- package/dist-cjs/protocols/Aws_restJson1.js +160 -2
- package/dist-es/ElasticsearchService.js +15 -0
- package/dist-es/commands/DescribeDomainChangeProgressCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +27 -0
- package/dist-es/protocols/Aws_restJson1.js +175 -0
- package/dist-types/ElasticsearchService.d.ts +8 -0
- package/dist-types/ElasticsearchServiceClient.d.ts +3 -2
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +144 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/ElasticsearchService.d.ts +5 -0
- package/dist-types/ts3.4/ElasticsearchServiceClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/DescribeDomainChangeProgressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/package.json +40 -34
|
@@ -655,6 +655,17 @@ export declare namespace AutoTuneOptionsOutput {
|
|
|
655
655
|
const filterSensitiveLog: (obj: AutoTuneOptionsOutput) => any;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
+
export interface ChangeProgressDetails {
|
|
659
|
+
|
|
660
|
+
ChangeId?: string;
|
|
661
|
+
|
|
662
|
+
Message?: string;
|
|
663
|
+
}
|
|
664
|
+
export declare namespace ChangeProgressDetails {
|
|
665
|
+
|
|
666
|
+
const filterSensitiveLog: (obj: ChangeProgressDetails) => any;
|
|
667
|
+
}
|
|
668
|
+
|
|
658
669
|
export interface VPCDerivedInfo {
|
|
659
670
|
|
|
660
671
|
VPCId?: string;
|
|
@@ -724,6 +735,8 @@ export interface ElasticsearchDomainStatus {
|
|
|
724
735
|
AdvancedSecurityOptions?: AdvancedSecurityOptions;
|
|
725
736
|
|
|
726
737
|
AutoTuneOptions?: AutoTuneOptionsOutput;
|
|
738
|
+
|
|
739
|
+
ChangeProgressDetails?: ChangeProgressDetails;
|
|
727
740
|
}
|
|
728
741
|
export declare namespace ElasticsearchDomainStatus {
|
|
729
742
|
|
|
@@ -1023,6 +1036,68 @@ export declare namespace DescribeDomainAutoTunesResponse {
|
|
|
1023
1036
|
const filterSensitiveLog: (obj: DescribeDomainAutoTunesResponse) => any;
|
|
1024
1037
|
}
|
|
1025
1038
|
|
|
1039
|
+
export interface DescribeDomainChangeProgressRequest {
|
|
1040
|
+
|
|
1041
|
+
DomainName: string | undefined;
|
|
1042
|
+
|
|
1043
|
+
ChangeId?: string;
|
|
1044
|
+
}
|
|
1045
|
+
export declare namespace DescribeDomainChangeProgressRequest {
|
|
1046
|
+
|
|
1047
|
+
const filterSensitiveLog: (obj: DescribeDomainChangeProgressRequest) => any;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
export interface ChangeProgressStage {
|
|
1051
|
+
|
|
1052
|
+
Name?: string;
|
|
1053
|
+
|
|
1054
|
+
Status?: string;
|
|
1055
|
+
|
|
1056
|
+
Description?: string;
|
|
1057
|
+
|
|
1058
|
+
LastUpdated?: Date;
|
|
1059
|
+
}
|
|
1060
|
+
export declare namespace ChangeProgressStage {
|
|
1061
|
+
|
|
1062
|
+
const filterSensitiveLog: (obj: ChangeProgressStage) => any;
|
|
1063
|
+
}
|
|
1064
|
+
export declare enum OverallChangeStatus {
|
|
1065
|
+
COMPLETED = "COMPLETED",
|
|
1066
|
+
FAILED = "FAILED",
|
|
1067
|
+
PENDING = "PENDING",
|
|
1068
|
+
PROCESSING = "PROCESSING"
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
export interface ChangeProgressStatusDetails {
|
|
1072
|
+
|
|
1073
|
+
ChangeId?: string;
|
|
1074
|
+
|
|
1075
|
+
StartTime?: Date;
|
|
1076
|
+
|
|
1077
|
+
Status?: OverallChangeStatus | string;
|
|
1078
|
+
|
|
1079
|
+
PendingProperties?: string[];
|
|
1080
|
+
|
|
1081
|
+
CompletedProperties?: string[];
|
|
1082
|
+
|
|
1083
|
+
TotalNumberOfStages?: number;
|
|
1084
|
+
|
|
1085
|
+
ChangeProgressStages?: ChangeProgressStage[];
|
|
1086
|
+
}
|
|
1087
|
+
export declare namespace ChangeProgressStatusDetails {
|
|
1088
|
+
|
|
1089
|
+
const filterSensitiveLog: (obj: ChangeProgressStatusDetails) => any;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
export interface DescribeDomainChangeProgressResponse {
|
|
1093
|
+
|
|
1094
|
+
ChangeProgressStatus?: ChangeProgressStatusDetails;
|
|
1095
|
+
}
|
|
1096
|
+
export declare namespace DescribeDomainChangeProgressResponse {
|
|
1097
|
+
|
|
1098
|
+
const filterSensitiveLog: (obj: DescribeDomainChangeProgressResponse) => any;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1026
1101
|
export interface DescribeElasticsearchDomainRequest {
|
|
1027
1102
|
|
|
1028
1103
|
DomainName: string | undefined;
|
|
@@ -1238,6 +1313,8 @@ export interface ElasticsearchDomainConfig {
|
|
|
1238
1313
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
|
|
1239
1314
|
|
|
1240
1315
|
AutoTuneOptions?: AutoTuneOptionsStatus;
|
|
1316
|
+
|
|
1317
|
+
ChangeProgressDetails?: ChangeProgressDetails;
|
|
1241
1318
|
}
|
|
1242
1319
|
export declare namespace ElasticsearchDomainConfig {
|
|
1243
1320
|
|
|
@@ -2059,6 +2136,8 @@ export interface UpgradeElasticsearchDomainResponse {
|
|
|
2059
2136
|
TargetVersion?: string;
|
|
2060
2137
|
|
|
2061
2138
|
PerformCheckOnly?: boolean;
|
|
2139
|
+
|
|
2140
|
+
ChangeProgressDetails?: ChangeProgressDetails;
|
|
2062
2141
|
}
|
|
2063
2142
|
export declare namespace UpgradeElasticsearchDomainResponse {
|
|
2064
2143
|
|
|
@@ -13,6 +13,7 @@ import { DeleteInboundCrossClusterSearchConnectionCommandInput, DeleteInboundCro
|
|
|
13
13
|
import { DeleteOutboundCrossClusterSearchConnectionCommandInput, DeleteOutboundCrossClusterSearchConnectionCommandOutput } from "../commands/DeleteOutboundCrossClusterSearchConnectionCommand";
|
|
14
14
|
import { DeletePackageCommandInput, DeletePackageCommandOutput } from "../commands/DeletePackageCommand";
|
|
15
15
|
import { DescribeDomainAutoTunesCommandInput, DescribeDomainAutoTunesCommandOutput } from "../commands/DescribeDomainAutoTunesCommand";
|
|
16
|
+
import { DescribeDomainChangeProgressCommandInput, DescribeDomainChangeProgressCommandOutput } from "../commands/DescribeDomainChangeProgressCommand";
|
|
16
17
|
import { DescribeElasticsearchDomainCommandInput, DescribeElasticsearchDomainCommandOutput } from "../commands/DescribeElasticsearchDomainCommand";
|
|
17
18
|
import { DescribeElasticsearchDomainConfigCommandInput, DescribeElasticsearchDomainConfigCommandOutput } from "../commands/DescribeElasticsearchDomainConfigCommand";
|
|
18
19
|
import { DescribeElasticsearchDomainsCommandInput, DescribeElasticsearchDomainsCommandOutput } from "../commands/DescribeElasticsearchDomainsCommand";
|
|
@@ -53,6 +54,7 @@ export declare const serializeAws_restJson1DeleteInboundCrossClusterSearchConnec
|
|
|
53
54
|
export declare const serializeAws_restJson1DeleteOutboundCrossClusterSearchConnectionCommand: (input: DeleteOutboundCrossClusterSearchConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
55
|
export declare const serializeAws_restJson1DeletePackageCommand: (input: DeletePackageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
56
|
export declare const serializeAws_restJson1DescribeDomainAutoTunesCommand: (input: DescribeDomainAutoTunesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_restJson1DescribeDomainChangeProgressCommand: (input: DescribeDomainChangeProgressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
58
|
export declare const serializeAws_restJson1DescribeElasticsearchDomainCommand: (input: DescribeElasticsearchDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
59
|
export declare const serializeAws_restJson1DescribeElasticsearchDomainConfigCommand: (input: DescribeElasticsearchDomainConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
60
|
export declare const serializeAws_restJson1DescribeElasticsearchDomainsCommand: (input: DescribeElasticsearchDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -93,6 +95,7 @@ export declare const deserializeAws_restJson1DeleteInboundCrossClusterSearchConn
|
|
|
93
95
|
export declare const deserializeAws_restJson1DeleteOutboundCrossClusterSearchConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutboundCrossClusterSearchConnectionCommandOutput>;
|
|
94
96
|
export declare const deserializeAws_restJson1DeletePackageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePackageCommandOutput>;
|
|
95
97
|
export declare const deserializeAws_restJson1DescribeDomainAutoTunesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainAutoTunesCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_restJson1DescribeDomainChangeProgressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainChangeProgressCommandOutput>;
|
|
96
99
|
export declare const deserializeAws_restJson1DescribeElasticsearchDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeElasticsearchDomainCommandOutput>;
|
|
97
100
|
export declare const deserializeAws_restJson1DescribeElasticsearchDomainConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeElasticsearchDomainConfigCommandOutput>;
|
|
98
101
|
export declare const deserializeAws_restJson1DescribeElasticsearchDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeElasticsearchDomainsCommandOutput>;
|
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.52.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.52.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.52.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.52.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.52.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.52.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.52.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.52.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.52.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.52.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.52.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.52.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.52.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.52.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.52.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.52.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.52.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.52.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.52.0",
|
|
39
|
+
"@aws-sdk/types": "3.52.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.52.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.52.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.52.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|