@alicloud/elasticsearch20170613 2.0.5 → 2.0.6

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 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
  * ******
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',
@@ -25897,6 +25899,9 @@ class Client extends openapi_client_1.default {
25897
25899
  if (!tea_util_1.default.isUnset(request.endpoints)) {
25898
25900
  body["endpoints"] = request.endpoints;
25899
25901
  }
25902
+ if (!tea_util_1.default.isUnset(request.esInstanceId)) {
25903
+ body["esInstanceId"] = request.esInstanceId;
25904
+ }
25900
25905
  if (!tea_util_1.default.isUnset(request.password)) {
25901
25906
  body["password"] = request.password;
25902
25907
  }