@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/elasticsearch20170613",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@alicloud/tea-typescript": "^1.7.1",
23
- "@alicloud/tea-util": "^1.4.8",
24
- "@alicloud/openapi-client": "^0.4.10",
23
+ "@alicloud/tea-util": "^1.4.9",
24
+ "@alicloud/openapi-client": "^0.4.11",
25
25
  "@alicloud/openapi-util": "^0.3.2",
26
26
  "@alicloud/endpoint-util": "^0.0.1"
27
27
  },
package/src/client.ts CHANGED
@@ -17226,6 +17226,7 @@ export class UpdateLogstashSettingsResponse extends $tea.Model {
17226
17226
 
17227
17227
  export class UpdatePipelineManagementConfigRequest extends $tea.Model {
17228
17228
  endpoints?: string[];
17229
+ esInstanceId?: string;
17229
17230
  /**
17230
17231
  * @example
17231
17232
  * ******
@@ -17250,6 +17251,7 @@ export class UpdatePipelineManagementConfigRequest extends $tea.Model {
17250
17251
  static names(): { [key: string]: string } {
17251
17252
  return {
17252
17253
  endpoints: 'endpoints',
17254
+ esInstanceId: 'esInstanceId',
17253
17255
  password: 'password',
17254
17256
  pipelineIds: 'pipelineIds',
17255
17257
  pipelineManagementType: 'pipelineManagementType',
@@ -17261,6 +17263,7 @@ export class UpdatePipelineManagementConfigRequest extends $tea.Model {
17261
17263
  static types(): { [key: string]: any } {
17262
17264
  return {
17263
17265
  endpoints: { 'type': 'array', 'itemType': 'string' },
17266
+ esInstanceId: 'string',
17264
17267
  password: 'string',
17265
17268
  pipelineIds: { 'type': 'array', 'itemType': 'string' },
17266
17269
  pipelineManagementType: 'string',
@@ -21626,7 +21629,9 @@ export class DescribeInstanceResponseBodyResult extends $tea.Model {
21626
21629
  * 5601
21627
21630
  */
21628
21631
  kibanaPort?: number;
21632
+ kibanaPrivateDomain?: string;
21629
21633
  kibanaPrivateIPWhitelist?: string[];
21634
+ kibanaPrivatePort?: string;
21630
21635
  masterConfiguration?: DescribeInstanceResponseBodyResultMasterConfiguration;
21631
21636
  networkConfig?: DescribeInstanceResponseBodyResultNetworkConfig;
21632
21637
  /**
@@ -21738,7 +21743,9 @@ export class DescribeInstanceResponseBodyResult extends $tea.Model {
21738
21743
  kibanaDomain: 'kibanaDomain',
21739
21744
  kibanaIPWhitelist: 'kibanaIPWhitelist',
21740
21745
  kibanaPort: 'kibanaPort',
21746
+ kibanaPrivateDomain: 'kibanaPrivateDomain',
21741
21747
  kibanaPrivateIPWhitelist: 'kibanaPrivateIPWhitelist',
21748
+ kibanaPrivatePort: 'kibanaPrivatePort',
21742
21749
  masterConfiguration: 'masterConfiguration',
21743
21750
  networkConfig: 'networkConfig',
21744
21751
  nodeAmount: 'nodeAmount',
@@ -21797,7 +21804,9 @@ export class DescribeInstanceResponseBodyResult extends $tea.Model {
21797
21804
  kibanaDomain: 'string',
21798
21805
  kibanaIPWhitelist: { 'type': 'array', 'itemType': 'string' },
21799
21806
  kibanaPort: 'number',
21807
+ kibanaPrivateDomain: 'string',
21800
21808
  kibanaPrivateIPWhitelist: { 'type': 'array', 'itemType': 'string' },
21809
+ kibanaPrivatePort: 'string',
21801
21810
  masterConfiguration: DescribeInstanceResponseBodyResultMasterConfiguration,
21802
21811
  networkConfig: DescribeInstanceResponseBodyResultNetworkConfig,
21803
21812
  nodeAmount: 'number',
@@ -41850,6 +41859,10 @@ export default class Client extends OpenApi {
41850
41859
  body["endpoints"] = request.endpoints;
41851
41860
  }
41852
41861
 
41862
+ if (!Util.isUnset(request.esInstanceId)) {
41863
+ body["esInstanceId"] = request.esInstanceId;
41864
+ }
41865
+
41853
41866
  if (!Util.isUnset(request.password)) {
41854
41867
  body["password"] = request.password;
41855
41868
  }