@alicloud/elasticsearch20170613 2.0.5 → 2.0.7
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/client.d.ts +3 -0
- package/dist/client.js +9 -0
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +13 -0
package/dist/client.d.ts
CHANGED
|
@@ -11910,6 +11910,7 @@ export declare class UpdateLogstashSettingsResponse extends $tea.Model {
|
|
|
11910
11910
|
}
|
|
11911
11911
|
export declare class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
11912
11912
|
endpoints?: string[];
|
|
11913
|
+
esInstanceId?: string;
|
|
11913
11914
|
/**
|
|
11914
11915
|
* @example
|
|
11915
11916
|
* ******
|
|
@@ -15050,7 +15051,9 @@ export declare class DescribeInstanceResponseBodyResult extends $tea.Model {
|
|
|
15050
15051
|
* 5601
|
|
15051
15052
|
*/
|
|
15052
15053
|
kibanaPort?: number;
|
|
15054
|
+
kibanaPrivateDomain?: string;
|
|
15053
15055
|
kibanaPrivateIPWhitelist?: string[];
|
|
15056
|
+
kibanaPrivatePort?: string;
|
|
15054
15057
|
masterConfiguration?: DescribeInstanceResponseBodyResultMasterConfiguration;
|
|
15055
15058
|
networkConfig?: DescribeInstanceResponseBodyResultNetworkConfig;
|
|
15056
15059
|
/**
|
package/dist/client.js
CHANGED
|
@@ -10496,6 +10496,7 @@ class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
|
10496
10496
|
static names() {
|
|
10497
10497
|
return {
|
|
10498
10498
|
endpoints: 'endpoints',
|
|
10499
|
+
esInstanceId: 'esInstanceId',
|
|
10499
10500
|
password: 'password',
|
|
10500
10501
|
pipelineIds: 'pipelineIds',
|
|
10501
10502
|
pipelineManagementType: 'pipelineManagementType',
|
|
@@ -10506,6 +10507,7 @@ class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
|
10506
10507
|
static types() {
|
|
10507
10508
|
return {
|
|
10508
10509
|
endpoints: { 'type': 'array', 'itemType': 'string' },
|
|
10510
|
+
esInstanceId: 'string',
|
|
10509
10511
|
password: 'string',
|
|
10510
10512
|
pipelineIds: { 'type': 'array', 'itemType': 'string' },
|
|
10511
10513
|
pipelineManagementType: 'string',
|
|
@@ -12811,7 +12813,9 @@ class DescribeInstanceResponseBodyResult extends $tea.Model {
|
|
|
12811
12813
|
kibanaDomain: 'kibanaDomain',
|
|
12812
12814
|
kibanaIPWhitelist: 'kibanaIPWhitelist',
|
|
12813
12815
|
kibanaPort: 'kibanaPort',
|
|
12816
|
+
kibanaPrivateDomain: 'kibanaPrivateDomain',
|
|
12814
12817
|
kibanaPrivateIPWhitelist: 'kibanaPrivateIPWhitelist',
|
|
12818
|
+
kibanaPrivatePort: 'kibanaPrivatePort',
|
|
12815
12819
|
masterConfiguration: 'masterConfiguration',
|
|
12816
12820
|
networkConfig: 'networkConfig',
|
|
12817
12821
|
nodeAmount: 'nodeAmount',
|
|
@@ -12869,7 +12873,9 @@ class DescribeInstanceResponseBodyResult extends $tea.Model {
|
|
|
12869
12873
|
kibanaDomain: 'string',
|
|
12870
12874
|
kibanaIPWhitelist: { 'type': 'array', 'itemType': 'string' },
|
|
12871
12875
|
kibanaPort: 'number',
|
|
12876
|
+
kibanaPrivateDomain: 'string',
|
|
12872
12877
|
kibanaPrivateIPWhitelist: { 'type': 'array', 'itemType': 'string' },
|
|
12878
|
+
kibanaPrivatePort: 'string',
|
|
12873
12879
|
masterConfiguration: DescribeInstanceResponseBodyResultMasterConfiguration,
|
|
12874
12880
|
networkConfig: DescribeInstanceResponseBodyResultNetworkConfig,
|
|
12875
12881
|
nodeAmount: 'number',
|
|
@@ -25897,6 +25903,9 @@ class Client extends openapi_client_1.default {
|
|
|
25897
25903
|
if (!tea_util_1.default.isUnset(request.endpoints)) {
|
|
25898
25904
|
body["endpoints"] = request.endpoints;
|
|
25899
25905
|
}
|
|
25906
|
+
if (!tea_util_1.default.isUnset(request.esInstanceId)) {
|
|
25907
|
+
body["esInstanceId"] = request.esInstanceId;
|
|
25908
|
+
}
|
|
25900
25909
|
if (!tea_util_1.default.isUnset(request.password)) {
|
|
25901
25910
|
body["password"] = request.password;
|
|
25902
25911
|
}
|