@alicloud/elasticsearch20170613 4.0.2 → 4.1.1

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.
Files changed (83) hide show
  1. package/dist/client.d.ts +233 -226
  2. package/dist/client.js +257 -226
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/ClientNodeConfiguration.d.ts +12 -0
  5. package/dist/models/ClientNodeConfiguration.js.map +1 -1
  6. package/dist/models/CreateIndexTemplateRequest.d.ts +7 -4
  7. package/dist/models/CreateIndexTemplateRequest.js.map +1 -1
  8. package/dist/models/DescribeLogstashResponseBody.d.ts +1 -0
  9. package/dist/models/DescribeLogstashResponseBody.js +2 -0
  10. package/dist/models/DescribeLogstashResponseBody.js.map +1 -1
  11. package/dist/models/DictInfo.d.ts +16 -0
  12. package/dist/models/DictInfo.js.map +1 -1
  13. package/dist/models/ElasticDataNodeConfiguration.d.ts +23 -0
  14. package/dist/models/ElasticDataNodeConfiguration.js.map +1 -1
  15. package/dist/models/Elasticsearch.d.ts +136 -0
  16. package/dist/models/Elasticsearch.js.map +1 -1
  17. package/dist/models/GrayPublishRequest.d.ts +18 -0
  18. package/dist/models/GrayPublishRequest.js +58 -0
  19. package/dist/models/GrayPublishRequest.js.map +1 -0
  20. package/dist/models/GrayPublishResponse.d.ts +19 -0
  21. package/dist/models/GrayPublishResponse.js +69 -0
  22. package/dist/models/GrayPublishResponse.js.map +1 -0
  23. package/dist/models/GrayPublishResponseBody.d.ts +26 -0
  24. package/dist/models/GrayPublishResponseBody.js +60 -0
  25. package/dist/models/GrayPublishResponseBody.js.map +1 -0
  26. package/dist/models/KibanaNodeConfiguration.d.ts +11 -0
  27. package/dist/models/KibanaNodeConfiguration.js.map +1 -1
  28. package/dist/models/ListConnectedClustersResponseBody.d.ts +0 -18
  29. package/dist/models/ListConnectedClustersResponseBody.js.map +1 -1
  30. package/dist/models/ListLogstashResponseBody.d.ts +5 -0
  31. package/dist/models/ListLogstashResponseBody.js +2 -0
  32. package/dist/models/ListLogstashResponseBody.js.map +1 -1
  33. package/dist/models/Logstash.d.ts +108 -0
  34. package/dist/models/Logstash.js.map +1 -1
  35. package/dist/models/MasterNodeConfiguration.d.ts +12 -0
  36. package/dist/models/MasterNodeConfiguration.js.map +1 -1
  37. package/dist/models/NetworkConfig.d.ts +16 -0
  38. package/dist/models/NetworkConfig.js.map +1 -1
  39. package/dist/models/NodeInfo.d.ts +16 -0
  40. package/dist/models/NodeInfo.js.map +1 -1
  41. package/dist/models/NodeSpec.d.ts +19 -0
  42. package/dist/models/NodeSpec.js.map +1 -1
  43. package/dist/models/PaymentInfo.d.ts +16 -0
  44. package/dist/models/PaymentInfo.js.map +1 -1
  45. package/dist/models/ReadWritePolicy.d.ts +12 -0
  46. package/dist/models/ReadWritePolicy.js.map +1 -1
  47. package/dist/models/Tag.d.ts +8 -0
  48. package/dist/models/Tag.js.map +1 -1
  49. package/dist/models/WarmNodeConfiguration.d.ts +23 -0
  50. package/dist/models/WarmNodeConfiguration.js.map +1 -1
  51. package/dist/models/WhiteIpGroup.d.ts +8 -0
  52. package/dist/models/WhiteIpGroup.js.map +1 -1
  53. package/dist/models/ZoneInfo.d.ts +8 -0
  54. package/dist/models/ZoneInfo.js.map +1 -1
  55. package/dist/models/model.d.ts +3 -0
  56. package/dist/models/model.js +15 -9
  57. package/dist/models/model.js.map +1 -1
  58. package/package.json +1 -1
  59. package/src/client.ts +260 -226
  60. package/src/models/ClientNodeConfiguration.ts +12 -0
  61. package/src/models/CreateIndexTemplateRequest.ts +7 -4
  62. package/src/models/DescribeLogstashResponseBody.ts +3 -0
  63. package/src/models/DictInfo.ts +16 -0
  64. package/src/models/ElasticDataNodeConfiguration.ts +23 -0
  65. package/src/models/Elasticsearch.ts +136 -0
  66. package/src/models/GrayPublishRequest.ts +31 -0
  67. package/src/models/GrayPublishResponse.ts +40 -0
  68. package/src/models/GrayPublishResponseBody.ts +41 -0
  69. package/src/models/KibanaNodeConfiguration.ts +11 -0
  70. package/src/models/ListConnectedClustersResponseBody.ts +0 -18
  71. package/src/models/ListLogstashResponseBody.ts +7 -0
  72. package/src/models/Logstash.ts +108 -0
  73. package/src/models/MasterNodeConfiguration.ts +12 -0
  74. package/src/models/NetworkConfig.ts +16 -0
  75. package/src/models/NodeInfo.ts +16 -0
  76. package/src/models/NodeSpec.ts +19 -0
  77. package/src/models/PaymentInfo.ts +16 -0
  78. package/src/models/ReadWritePolicy.ts +12 -0
  79. package/src/models/Tag.ts +8 -0
  80. package/src/models/WarmNodeConfiguration.ts +23 -0
  81. package/src/models/WhiteIpGroup.ts +8 -0
  82. package/src/models/ZoneInfo.ts +8 -0
  83. package/src/models/model.ts +3 -0
package/dist/client.d.ts CHANGED
@@ -99,6 +99,8 @@ export default class Client extends OpenApi {
99
99
  */
100
100
  cancelLogstashDeletion(InstanceId: string, request: $_model.CancelLogstashDeletionRequest): Promise<$_model.CancelLogstashDeletionResponse>;
101
101
  /**
102
+ * Call CancelTask to cancel a data migration task.
103
+ *
102
104
  * @param request - CancelTaskRequest
103
105
  * @param headers - map
104
106
  * @param runtime - runtime options for this request RuntimeOptions
@@ -108,6 +110,8 @@ export default class Client extends OpenApi {
108
110
  [key: string]: string;
109
111
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CancelTaskResponse>;
110
112
  /**
113
+ * Call CancelTask to cancel a data migration task.
114
+ *
111
115
  * @param request - CancelTaskRequest
112
116
  * @returns CancelTaskResponse
113
117
  */
@@ -131,7 +135,7 @@ export default class Client extends OpenApi {
131
135
  */
132
136
  capacityPlan(request: $_model.CapacityPlanRequest): Promise<$_model.CapacityPlanResponse>;
133
137
  /**
134
- * 关闭实例的智能运维功能
138
+ * Disables the intelligent O\\&M feature for an Elasticsearch cluster.
135
139
  *
136
140
  * @param request - CloseDiagnosisRequest
137
141
  * @param headers - map
@@ -142,13 +146,15 @@ export default class Client extends OpenApi {
142
146
  [key: string]: string;
143
147
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CloseDiagnosisResponse>;
144
148
  /**
145
- * 关闭实例的智能运维功能
149
+ * Disables the intelligent O\\&M feature for an Elasticsearch cluster.
146
150
  *
147
151
  * @param request - CloseDiagnosisRequest
148
152
  * @returns CloseDiagnosisResponse
149
153
  */
150
154
  closeDiagnosis(InstanceId: string, request: $_model.CloseDiagnosisRequest): Promise<$_model.CloseDiagnosisResponse>;
151
155
  /**
156
+ * Call CloseHttps to close the HTTPS protocol.
157
+ *
152
158
  * @param request - CloseHttpsRequest
153
159
  * @param headers - map
154
160
  * @param runtime - runtime options for this request RuntimeOptions
@@ -158,6 +164,8 @@ export default class Client extends OpenApi {
158
164
  [key: string]: string;
159
165
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CloseHttpsResponse>;
160
166
  /**
167
+ * Call CloseHttps to close the HTTPS protocol.
168
+ *
161
169
  * @param request - CloseHttpsRequest
162
170
  * @returns CloseHttpsResponse
163
171
  */
@@ -271,7 +279,7 @@ export default class Client extends OpenApi {
271
279
  */
272
280
  createIndexTemplate(InstanceId: string, request: $_model.CreateIndexTemplateRequest): Promise<$_model.CreateIndexTemplateResponse>;
273
281
  /**
274
- * 创建logstash实例
282
+ * Creates a Logstash cluster.
275
283
  *
276
284
  * @param request - CreateLogstashRequest
277
285
  * @param headers - map
@@ -282,14 +290,14 @@ export default class Client extends OpenApi {
282
290
  [key: string]: string;
283
291
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CreateLogstashResponse>;
284
292
  /**
285
- * 创建logstash实例
293
+ * Creates a Logstash cluster.
286
294
  *
287
295
  * @param request - CreateLogstashRequest
288
296
  * @returns CreateLogstashResponse
289
297
  */
290
298
  createLogstash(request: $_model.CreateLogstashRequest): Promise<$_model.CreateLogstashResponse>;
291
299
  /**
292
- * 创建Logstash管道任务
300
+ * Creates a pipeline in a Logstash cluster.
293
301
  *
294
302
  * @param request - CreatePipelinesRequest
295
303
  * @param headers - map
@@ -300,13 +308,15 @@ export default class Client extends OpenApi {
300
308
  [key: string]: string;
301
309
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CreatePipelinesResponse>;
302
310
  /**
303
- * 创建Logstash管道任务
311
+ * Creates a pipeline in a Logstash cluster.
304
312
  *
305
313
  * @param request - CreatePipelinesRequest
306
314
  * @returns CreatePipelinesResponse
307
315
  */
308
316
  createPipelines(InstanceId: string, request: $_model.CreatePipelinesRequest): Promise<$_model.CreatePipelinesResponse>;
309
317
  /**
318
+ * Call CreateSnapshot to manually back up a cluster snapshot.
319
+ *
310
320
  * @param request - CreateSnapshotRequest
311
321
  * @param headers - map
312
322
  * @param runtime - runtime options for this request RuntimeOptions
@@ -316,6 +326,8 @@ export default class Client extends OpenApi {
316
326
  [key: string]: string;
317
327
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CreateSnapshotResponse>;
318
328
  /**
329
+ * Call CreateSnapshot to manually back up a cluster snapshot.
330
+ *
319
331
  * @param request - CreateSnapshotRequest
320
332
  * @returns CreateSnapshotResponse
321
333
  */
@@ -345,7 +357,7 @@ export default class Client extends OpenApi {
345
357
  */
346
358
  createVpcEndpoint(InstanceId: string, request: $_model.CreateVpcEndpointRequest): Promise<$_model.CreateVpcEndpointResponse>;
347
359
  /**
348
- * Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
360
+ * Disables one or more zones where a multi-zone Elasticsearch cluster resides and migrates the nodes in the disabled zones to other zones.
349
361
  *
350
362
  * @param request - DeactivateZonesRequest
351
363
  * @param headers - map
@@ -356,7 +368,7 @@ export default class Client extends OpenApi {
356
368
  [key: string]: string;
357
369
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeactivateZonesResponse>;
358
370
  /**
359
- * Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
371
+ * Disables one or more zones where a multi-zone Elasticsearch cluster resides and migrates the nodes in the disabled zones to other zones.
360
372
  *
361
373
  * @param request - DeactivateZonesRequest
362
374
  * @returns DeactivateZonesResponse
@@ -396,6 +408,8 @@ export default class Client extends OpenApi {
396
408
  */
397
409
  deleteComponentIndex(InstanceId: string, name: string): Promise<$_model.DeleteComponentIndexResponse>;
398
410
  /**
411
+ * Call DeleteConnectedCluster to remove the interconnected instance.
412
+ *
399
413
  * @param request - DeleteConnectedClusterRequest
400
414
  * @param headers - map
401
415
  * @param runtime - runtime options for this request RuntimeOptions
@@ -405,6 +419,8 @@ export default class Client extends OpenApi {
405
419
  [key: string]: string;
406
420
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteConnectedClusterResponse>;
407
421
  /**
422
+ * Call DeleteConnectedCluster to remove the interconnected instance.
423
+ *
408
424
  * @param request - DeleteConnectedClusterRequest
409
425
  * @returns DeleteConnectedClusterResponse
410
426
  */
@@ -428,6 +444,8 @@ export default class Client extends OpenApi {
428
444
  */
429
445
  deleteDataStream(InstanceId: string, DataStream: string, request: $_model.DeleteDataStreamRequest): Promise<$_model.DeleteDataStreamResponse>;
430
446
  /**
447
+ * You can call this operation to delete an index migration task.
448
+ *
431
449
  * @param request - DeleteDataTaskRequest
432
450
  * @param headers - map
433
451
  * @param runtime - runtime options for this request RuntimeOptions
@@ -437,6 +455,8 @@ export default class Client extends OpenApi {
437
455
  [key: string]: string;
438
456
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteDataTaskResponse>;
439
457
  /**
458
+ * You can call this operation to delete an index migration task.
459
+ *
440
460
  * @param request - DeleteDataTaskRequest
441
461
  * @returns DeleteDataTaskResponse
442
462
  */
@@ -469,7 +489,7 @@ export default class Client extends OpenApi {
469
489
  */
470
490
  deleteILMPolicy(InstanceId: string, PolicyName: string): Promise<$_model.DeleteILMPolicyResponse>;
471
491
  /**
472
- * 删除ES集群索引模版
492
+ * Deletes a top index template.
473
493
  *
474
494
  * @param headers - map
475
495
  * @param runtime - runtime options for this request RuntimeOptions
@@ -479,11 +499,13 @@ export default class Client extends OpenApi {
479
499
  [key: string]: string;
480
500
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteIndexTemplateResponse>;
481
501
  /**
482
- * 删除ES集群索引模版
502
+ * Deletes a top index template.
483
503
  * @returns DeleteIndexTemplateResponse
484
504
  */
485
505
  deleteIndexTemplate(InstanceId: string, IndexTemplate: string): Promise<$_model.DeleteIndexTemplateResponse>;
486
506
  /**
507
+ * You can call this operation to release a pay-as-you-go Elasticsearch instance. After the instance is released, the physical resources of the instance is reclaimed. The data of the instance is deleted and cannot be recovered. The disks mounted to the instance nodes and the snapshots are released.
508
+ *
487
509
  * @param request - DeleteInstanceRequest
488
510
  * @param headers - map
489
511
  * @param runtime - runtime options for this request RuntimeOptions
@@ -493,6 +515,8 @@ export default class Client extends OpenApi {
493
515
  [key: string]: string;
494
516
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteInstanceResponse>;
495
517
  /**
518
+ * You can call this operation to release a pay-as-you-go Elasticsearch instance. After the instance is released, the physical resources of the instance is reclaimed. The data of the instance is deleted and cannot be recovered. The disks mounted to the instance nodes and the snapshots are released.
519
+ *
496
520
  * @param request - DeleteInstanceRequest
497
521
  * @returns DeleteInstanceResponse
498
522
  */
@@ -540,6 +564,8 @@ export default class Client extends OpenApi {
540
564
  */
541
565
  deletePipelines(InstanceId: string, request: $_model.DeletePipelinesRequest): Promise<$_model.DeletePipelinesResponse>;
542
566
  /**
567
+ * Call DeleteSnapshotRepo to delete a cross-cluster OSS repository.
568
+ *
543
569
  * @param request - DeleteSnapshotRepoRequest
544
570
  * @param headers - map
545
571
  * @param runtime - runtime options for this request RuntimeOptions
@@ -549,12 +575,14 @@ export default class Client extends OpenApi {
549
575
  [key: string]: string;
550
576
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteSnapshotRepoResponse>;
551
577
  /**
578
+ * Call DeleteSnapshotRepo to delete a cross-cluster OSS repository.
579
+ *
552
580
  * @param request - DeleteSnapshotRepoRequest
553
581
  * @returns DeleteSnapshotRepoResponse
554
582
  */
555
583
  deleteSnapshotRepo(InstanceId: string, request: $_model.DeleteSnapshotRepoRequest): Promise<$_model.DeleteSnapshotRepoResponse>;
556
584
  /**
557
- * 删除服务账号vpc下的终端节点
585
+ * Deletes an endpoint in the VPC within the Elasticsearch service account.
558
586
  *
559
587
  * @param request - DeleteVpcEndpointRequest
560
588
  * @param headers - map
@@ -565,7 +593,7 @@ export default class Client extends OpenApi {
565
593
  [key: string]: string;
566
594
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteVpcEndpointResponse>;
567
595
  /**
568
- * 删除服务账号vpc下的终端节点
596
+ * Deletes an endpoint in the VPC within the Elasticsearch service account.
569
597
  *
570
598
  * @param request - DeleteVpcEndpointRequest
571
599
  * @returns DeleteVpcEndpointResponse
@@ -593,7 +621,7 @@ export default class Client extends OpenApi {
593
621
  */
594
622
  describeAckOperator(ClusterId: string): Promise<$_model.DescribeAckOperatorResponse>;
595
623
  /**
596
- * Queries the details of a shipper.
624
+ * Queries the detailed information of a shipper.
597
625
  *
598
626
  * @param headers - map
599
627
  * @param runtime - runtime options for this request RuntimeOptions
@@ -603,7 +631,7 @@ export default class Client extends OpenApi {
603
631
  [key: string]: string;
604
632
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeCollectorResponse>;
605
633
  /**
606
- * Queries the details of a shipper.
634
+ * Queries the detailed information of a shipper.
607
635
  * @returns DescribeCollectorResponse
608
636
  */
609
637
  describeCollector(ResId: string): Promise<$_model.DescribeCollectorResponse>;
@@ -623,6 +651,8 @@ export default class Client extends OpenApi {
623
651
  */
624
652
  describeComponentIndex(InstanceId: string, name: string): Promise<$_model.DescribeComponentIndexResponse>;
625
653
  /**
654
+ * Queries the Elasticsearch clusters that can be connected to a specified Elasticsearch cluster.
655
+ *
626
656
  * @param request - DescribeConnectableClustersRequest
627
657
  * @param headers - map
628
658
  * @param runtime - runtime options for this request RuntimeOptions
@@ -632,6 +662,8 @@ export default class Client extends OpenApi {
632
662
  [key: string]: string;
633
663
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeConnectableClustersResponse>;
634
664
  /**
665
+ * Queries the Elasticsearch clusters that can be connected to a specified Elasticsearch cluster.
666
+ *
635
667
  * @param request - DescribeConnectableClustersRequest
636
668
  * @returns DescribeConnectableClustersResponse
637
669
  */
@@ -652,6 +684,8 @@ export default class Client extends OpenApi {
652
684
  */
653
685
  describeDeprecatedTemplate(InstanceId: string, name: string): Promise<$_model.DescribeDeprecatedTemplateResponse>;
654
686
  /**
687
+ * Queries a historical intelligent O\\&M report.
688
+ *
655
689
  * @param request - DescribeDiagnoseReportRequest
656
690
  * @param headers - map
657
691
  * @param runtime - runtime options for this request RuntimeOptions
@@ -661,11 +695,15 @@ export default class Client extends OpenApi {
661
695
  [key: string]: string;
662
696
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiagnoseReportResponse>;
663
697
  /**
698
+ * Queries a historical intelligent O\\&M report.
699
+ *
664
700
  * @param request - DescribeDiagnoseReportRequest
665
701
  * @returns DescribeDiagnoseReportResponse
666
702
  */
667
703
  describeDiagnoseReport(InstanceId: string, ReportId: string, request: $_model.DescribeDiagnoseReportRequest): Promise<$_model.DescribeDiagnoseReportResponse>;
668
704
  /**
705
+ * Call DescribeDiagnosisSettings to obtain the scenario settings of intelligent maintenance.
706
+ *
669
707
  * @param request - DescribeDiagnosisSettingsRequest
670
708
  * @param headers - map
671
709
  * @param runtime - runtime options for this request RuntimeOptions
@@ -675,6 +713,8 @@ export default class Client extends OpenApi {
675
713
  [key: string]: string;
676
714
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiagnosisSettingsResponse>;
677
715
  /**
716
+ * Call DescribeDiagnosisSettings to obtain the scenario settings of intelligent maintenance.
717
+ *
678
718
  * @param request - DescribeDiagnosisSettingsRequest
679
719
  * @returns DescribeDiagnosisSettingsResponse
680
720
  */
@@ -695,7 +735,7 @@ export default class Client extends OpenApi {
695
735
  */
696
736
  describeDynamicSettings(InstanceId: string): Promise<$_model.DescribeDynamicSettingsResponse>;
697
737
  /**
698
- * Queries the health status of an Elasticsearch cluster.
738
+ * Check the health status of the cluster and whether it is running normally.
699
739
  *
700
740
  * @remarks
701
741
  * An Elasticsearch cluster can be in a health state indicated by one of the following colors:
@@ -711,7 +751,7 @@ export default class Client extends OpenApi {
711
751
  [key: string]: string;
712
752
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeElasticsearchHealthResponse>;
713
753
  /**
714
- * Queries the health status of an Elasticsearch cluster.
754
+ * Check the health status of the cluster and whether it is running normally.
715
755
  *
716
756
  * @remarks
717
757
  * An Elasticsearch cluster can be in a health state indicated by one of the following colors:
@@ -761,7 +801,7 @@ export default class Client extends OpenApi {
761
801
  */
762
802
  describeInstance(InstanceId: string): Promise<$_model.DescribeInstanceResponse>;
763
803
  /**
764
- * 获取Elasticsearch集群Kibana节点settings配置
804
+ * Get the configuration of the Kibana node for the Elasticsearch cluster.
765
805
  *
766
806
  * @param headers - map
767
807
  * @param runtime - runtime options for this request RuntimeOptions
@@ -771,12 +811,12 @@ export default class Client extends OpenApi {
771
811
  [key: string]: string;
772
812
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeKibanaSettingsResponse>;
773
813
  /**
774
- * 获取Elasticsearch集群Kibana节点settings配置
814
+ * Get the configuration of the Kibana node for the Elasticsearch cluster.
775
815
  * @returns DescribeKibanaSettingsResponse
776
816
  */
777
817
  describeKibanaSettings(InstanceId: string): Promise<$_model.DescribeKibanaSettingsResponse>;
778
818
  /**
779
- * 查看Logstash实例详情
819
+ * Queries the information about a Logstash cluster.
780
820
  *
781
821
  * @param headers - map
782
822
  * @param runtime - runtime options for this request RuntimeOptions
@@ -786,11 +826,13 @@ export default class Client extends OpenApi {
786
826
  [key: string]: string;
787
827
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeLogstashResponse>;
788
828
  /**
789
- * 查看Logstash实例详情
829
+ * Queries the information about a Logstash cluster.
790
830
  * @returns DescribeLogstashResponse
791
831
  */
792
832
  describeLogstash(InstanceId: string): Promise<$_model.DescribeLogstashResponse>;
793
833
  /**
834
+ * Queries the information about a pipeline in a Logstash cluster.
835
+ *
794
836
  * @param headers - map
795
837
  * @param runtime - runtime options for this request RuntimeOptions
796
838
  * @returns DescribePipelineResponse
@@ -799,6 +841,7 @@ export default class Client extends OpenApi {
799
841
  [key: string]: string;
800
842
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribePipelineResponse>;
801
843
  /**
844
+ * Queries the information about a pipeline in a Logstash cluster.
802
845
  * @returns DescribePipelineResponse
803
846
  */
804
847
  describePipeline(InstanceId: string, PipelineId: string): Promise<$_model.DescribePipelineResponse>;
@@ -821,6 +864,8 @@ export default class Client extends OpenApi {
821
864
  */
822
865
  describePipelineManagementConfig(InstanceId: string, request: $_model.DescribePipelineManagementConfigRequest): Promise<$_model.DescribePipelineManagementConfigResponse>;
823
866
  /**
867
+ * Get the region information of Alibaba Cloud Elasticsearch.
868
+ *
824
869
  * @param headers - map
825
870
  * @param runtime - runtime options for this request RuntimeOptions
826
871
  * @returns DescribeRegionsResponse
@@ -829,11 +874,12 @@ export default class Client extends OpenApi {
829
874
  [key: string]: string;
830
875
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeRegionsResponse>;
831
876
  /**
877
+ * Get the region information of Alibaba Cloud Elasticsearch.
832
878
  * @returns DescribeRegionsResponse
833
879
  */
834
880
  describeRegions(): Promise<$_model.DescribeRegionsResponse>;
835
881
  /**
836
- * 查看备份设置
882
+ * Get the snapshot backup settings of the cluster, backup cycle.
837
883
  *
838
884
  * @param headers - map
839
885
  * @param runtime - runtime options for this request RuntimeOptions
@@ -843,7 +889,7 @@ export default class Client extends OpenApi {
843
889
  [key: string]: string;
844
890
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeSnapshotSettingResponse>;
845
891
  /**
846
- * 查看备份设置
892
+ * Get the snapshot backup settings of the cluster, backup cycle.
847
893
  * @returns DescribeSnapshotSettingResponse
848
894
  */
849
895
  describeSnapshotSetting(InstanceId: string): Promise<$_model.DescribeSnapshotSettingResponse>;
@@ -860,7 +906,7 @@ export default class Client extends OpenApi {
860
906
  */
861
907
  describeTemplates(InstanceId: string): Promise<$_model.DescribeTemplatesResponse>;
862
908
  /**
863
- * Queries the configurations of the X-Pack Monitoring feature of a Logstash cluster.
909
+ * Queries the X-Pack Monitoring configurations of a Logstash cluster.
864
910
  *
865
911
  * @param headers - map
866
912
  * @param runtime - runtime options for this request RuntimeOptions
@@ -870,12 +916,12 @@ export default class Client extends OpenApi {
870
916
  [key: string]: string;
871
917
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeXpackMonitorConfigResponse>;
872
918
  /**
873
- * Queries the configurations of the X-Pack Monitoring feature of a Logstash cluster.
919
+ * Queries the X-Pack Monitoring configurations of a Logstash cluster.
874
920
  * @returns DescribeXpackMonitorConfigResponse
875
921
  */
876
922
  describeXpackMonitorConfig(InstanceId: string): Promise<$_model.DescribeXpackMonitorConfigResponse>;
877
923
  /**
878
- * 触发ES实例智能诊断
924
+ * Diagnoses an Elasticsearch cluster.
879
925
  *
880
926
  * @param request - DiagnoseInstanceRequest
881
927
  * @param headers - map
@@ -886,14 +932,14 @@ export default class Client extends OpenApi {
886
932
  [key: string]: string;
887
933
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DiagnoseInstanceResponse>;
888
934
  /**
889
- * 触发ES实例智能诊断
935
+ * Diagnoses an Elasticsearch cluster.
890
936
  *
891
937
  * @param request - DiagnoseInstanceRequest
892
938
  * @returns DiagnoseInstanceResponse
893
939
  */
894
940
  diagnoseInstance(InstanceId: string, request: $_model.DiagnoseInstanceRequest): Promise<$_model.DiagnoseInstanceResponse>;
895
941
  /**
896
- * 关闭kibana私网
942
+ * Disable Private Network Access of Kibana
897
943
  *
898
944
  * @param headers - map
899
945
  * @param runtime - runtime options for this request RuntimeOptions
@@ -903,7 +949,7 @@ export default class Client extends OpenApi {
903
949
  [key: string]: string;
904
950
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DisableKibanaPvlNetworkResponse>;
905
951
  /**
906
- * 关闭kibana私网
952
+ * Disable Private Network Access of Kibana
907
953
  * @returns DisableKibanaPvlNetworkResponse
908
954
  */
909
955
  disableKibanaPvlNetwork(InstanceId: string): Promise<$_model.DisableKibanaPvlNetworkResponse>;
@@ -1064,7 +1110,7 @@ export default class Client extends OpenApi {
1064
1110
  */
1065
1111
  getEmonMonitorData(ProjectId: string, request: $_model.GetEmonMonitorDataRequest): Promise<$_model.GetEmonMonitorDataResponse>;
1066
1112
  /**
1067
- * 统计OpenStore实例的存储容量和使用情况
1113
+ * View the storage capacity and usage of the OpensStore instance.
1068
1114
  *
1069
1115
  * @param headers - map
1070
1116
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1074,12 +1120,12 @@ export default class Client extends OpenApi {
1074
1120
  [key: string]: string;
1075
1121
  }, runtime: $dara.RuntimeOptions): Promise<$_model.GetOpenStoreUsageResponse>;
1076
1122
  /**
1077
- * 统计OpenStore实例的存储容量和使用情况
1123
+ * View the storage capacity and usage of the OpensStore instance.
1078
1124
  * @returns GetOpenStoreUsageResponse
1079
1125
  */
1080
1126
  getOpenStoreUsage(InstanceId: string): Promise<$_model.GetOpenStoreUsageResponse>;
1081
1127
  /**
1082
- * The maximum number of nodes.
1128
+ * Queries the configuration information about the current region.
1083
1129
  *
1084
1130
  * @param request - GetRegionConfigurationRequest
1085
1131
  * @param headers - map
@@ -1090,7 +1136,7 @@ export default class Client extends OpenApi {
1090
1136
  [key: string]: string;
1091
1137
  }, runtime: $dara.RuntimeOptions): Promise<$_model.GetRegionConfigurationResponse>;
1092
1138
  /**
1093
- * The maximum number of nodes.
1139
+ * Queries the configuration information about the current region.
1094
1140
  *
1095
1141
  * @param request - GetRegionConfigurationRequest
1096
1142
  * @returns GetRegionConfigurationResponse
@@ -1112,7 +1158,7 @@ export default class Client extends OpenApi {
1112
1158
  */
1113
1159
  getRegionalInstanceConfig(): Promise<$_model.GetRegionalInstanceConfigResponse>;
1114
1160
  /**
1115
- * ES集群可缩容节点
1161
+ * Call GetSuggestShrinkableNodes to specify the type and number of nodes to obtain the nodes that can be removed.
1116
1162
  *
1117
1163
  * @param request - GetSuggestShrinkableNodesRequest
1118
1164
  * @param headers - map
@@ -1123,14 +1169,14 @@ export default class Client extends OpenApi {
1123
1169
  [key: string]: string;
1124
1170
  }, runtime: $dara.RuntimeOptions): Promise<$_model.GetSuggestShrinkableNodesResponse>;
1125
1171
  /**
1126
- * ES集群可缩容节点
1172
+ * Call GetSuggestShrinkableNodes to specify the type and number of nodes to obtain the nodes that can be removed.
1127
1173
  *
1128
1174
  * @param request - GetSuggestShrinkableNodesRequest
1129
1175
  * @returns GetSuggestShrinkableNodesResponse
1130
1176
  */
1131
1177
  getSuggestShrinkableNodes(InstanceId: string, request: $_model.GetSuggestShrinkableNodesRequest): Promise<$_model.GetSuggestShrinkableNodesResponse>;
1132
1178
  /**
1133
- * 获取可数据迁移节点
1179
+ * Call GetTransferableNodes to specify the type and number of nodes to obtain the nodes that can be migrated.
1134
1180
  *
1135
1181
  * @param request - GetTransferableNodesRequest
1136
1182
  * @param headers - map
@@ -1141,12 +1187,30 @@ export default class Client extends OpenApi {
1141
1187
  [key: string]: string;
1142
1188
  }, runtime: $dara.RuntimeOptions): Promise<$_model.GetTransferableNodesResponse>;
1143
1189
  /**
1144
- * 获取可数据迁移节点
1190
+ * Call GetTransferableNodes to specify the type and number of nodes to obtain the nodes that can be migrated.
1145
1191
  *
1146
1192
  * @param request - GetTransferableNodesRequest
1147
1193
  * @returns GetTransferableNodesResponse
1148
1194
  */
1149
1195
  getTransferableNodes(InstanceId: string, request: $_model.GetTransferableNodesRequest): Promise<$_model.GetTransferableNodesResponse>;
1196
+ /**
1197
+ * 灰度完成继续变更
1198
+ *
1199
+ * @param request - GrayPublishRequest
1200
+ * @param headers - map
1201
+ * @param runtime - runtime options for this request RuntimeOptions
1202
+ * @returns GrayPublishResponse
1203
+ */
1204
+ grayPublishWithOptions(InstanceId: string, request: $_model.GrayPublishRequest, headers: {
1205
+ [key: string]: string;
1206
+ }, runtime: $dara.RuntimeOptions): Promise<$_model.GrayPublishResponse>;
1207
+ /**
1208
+ * 灰度完成继续变更
1209
+ *
1210
+ * @param request - GrayPublishRequest
1211
+ * @returns GrayPublishResponse
1212
+ */
1213
+ grayPublish(InstanceId: string, request: $_model.GrayPublishRequest): Promise<$_model.GrayPublishResponse>;
1150
1214
  /**
1151
1215
  * Creates a service-linked role.
1152
1216
  *
@@ -1214,7 +1278,7 @@ export default class Client extends OpenApi {
1214
1278
  */
1215
1279
  installKibanaSystemPlugin(InstanceId: string, request: $_model.InstallKibanaSystemPluginRequest): Promise<$_model.InstallKibanaSystemPluginResponse>;
1216
1280
  /**
1217
- * The returned data also contains **Headers** parameters, indicating that header information is returned.
1281
+ * Installs a plug-in.
1218
1282
  *
1219
1283
  * @remarks
1220
1284
  * ls-cn-oew1qbgl\\*\\*\\*\\*
@@ -1228,7 +1292,7 @@ export default class Client extends OpenApi {
1228
1292
  [key: string]: string;
1229
1293
  }, runtime: $dara.RuntimeOptions): Promise<$_model.InstallLogstashSystemPluginResponse>;
1230
1294
  /**
1231
- * The returned data also contains **Headers** parameters, indicating that header information is returned.
1295
+ * Installs a plug-in.
1232
1296
  *
1233
1297
  * @remarks
1234
1298
  * ls-cn-oew1qbgl\\*\\*\\*\\*
@@ -1274,6 +1338,8 @@ export default class Client extends OpenApi {
1274
1338
  */
1275
1339
  installUserPlugins(InstanceId: string, request: $_model.InstallUserPluginsRequest): Promise<$_model.InstallUserPluginsResponse>;
1276
1340
  /**
1341
+ * Call InterruptElasticsearchTask to interrupt the Alibaba cloud elasticsearch instance in the change. This parameter is valid only for instances in the initializing state. When the instance is interrupted, it enters the suspended state.
1342
+ *
1277
1343
  * @param request - InterruptElasticsearchTaskRequest
1278
1344
  * @param headers - map
1279
1345
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1283,6 +1349,8 @@ export default class Client extends OpenApi {
1283
1349
  [key: string]: string;
1284
1350
  }, runtime: $dara.RuntimeOptions): Promise<$_model.InterruptElasticsearchTaskResponse>;
1285
1351
  /**
1352
+ * Call InterruptElasticsearchTask to interrupt the Alibaba cloud elasticsearch instance in the change. This parameter is valid only for instances in the initializing state. When the instance is interrupted, it enters the suspended state.
1353
+ *
1286
1354
  * @param request - InterruptElasticsearchTaskRequest
1287
1355
  * @returns InterruptElasticsearchTaskResponse
1288
1356
  */
@@ -1324,7 +1392,7 @@ export default class Client extends OpenApi {
1324
1392
  */
1325
1393
  listAckClusters(request: $_model.ListAckClustersRequest): Promise<$_model.ListAckClustersResponse>;
1326
1394
  /**
1327
- * Queries all namespaces in a specified Container Service for Kubernetes (ACK) cluster.
1395
+ * View all namespaces of the specified Container Service for Kubernetes (ACK) cluster.
1328
1396
  *
1329
1397
  * @remarks
1330
1398
  * > When you install a shipper on an ACK cluster, you must specify a namespace. You can call this operation to query all namespaces in the ACK cluster, and select a namespace based on your business requirements.
@@ -1338,7 +1406,7 @@ export default class Client extends OpenApi {
1338
1406
  [key: string]: string;
1339
1407
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListAckNamespacesResponse>;
1340
1408
  /**
1341
- * Queries all namespaces in a specified Container Service for Kubernetes (ACK) cluster.
1409
+ * View all namespaces of the specified Container Service for Kubernetes (ACK) cluster.
1342
1410
  *
1343
1411
  * @remarks
1344
1412
  * > When you install a shipper on an ACK cluster, you must specify a namespace. You can call this operation to query all namespaces in the ACK cluster, and select a namespace based on your business requirements.
@@ -1366,7 +1434,7 @@ export default class Client extends OpenApi {
1366
1434
  */
1367
1435
  listActionRecords(InstanceId: string, request: $_model.ListActionRecordsRequest): Promise<$_model.ListActionRecordsResponse>;
1368
1436
  /**
1369
- * es-cn-tl32cpgwa002l\\*\\*\\*\\*
1437
+ * Queries the information of all the nodes in an Elasticsearch cluster.
1370
1438
  *
1371
1439
  * @param request - ListAllNodeRequest
1372
1440
  * @param headers - map
@@ -1377,14 +1445,14 @@ export default class Client extends OpenApi {
1377
1445
  [key: string]: string;
1378
1446
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListAllNodeResponse>;
1379
1447
  /**
1380
- * es-cn-tl32cpgwa002l\\*\\*\\*\\*
1448
+ * Queries the information of all the nodes in an Elasticsearch cluster.
1381
1449
  *
1382
1450
  * @param request - ListAllNodeRequest
1383
1451
  * @returns ListAllNodeResponse
1384
1452
  */
1385
1453
  listAllNode(InstanceId: string, request: $_model.ListAllNodeRequest): Promise<$_model.ListAllNodeResponse>;
1386
1454
  /**
1387
- * 实例可添加的OSS引用仓库
1455
+ * Call ListAlternativeSnapshotRepos to get the OSS reference warehouses that can be added to the current instance.
1388
1456
  *
1389
1457
  * @param request - ListAlternativeSnapshotReposRequest
1390
1458
  * @param headers - map
@@ -1395,7 +1463,7 @@ export default class Client extends OpenApi {
1395
1463
  [key: string]: string;
1396
1464
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListAlternativeSnapshotReposResponse>;
1397
1465
  /**
1398
- * 实例可添加的OSS引用仓库
1466
+ * Call ListAlternativeSnapshotRepos to get the OSS reference warehouses that can be added to the current instance.
1399
1467
  *
1400
1468
  * @param request - ListAlternativeSnapshotReposRequest
1401
1469
  * @returns ListAlternativeSnapshotReposResponse
@@ -1417,7 +1485,7 @@ export default class Client extends OpenApi {
1417
1485
  */
1418
1486
  listAvailableEsInstanceIds(InstanceId: string): Promise<$_model.ListAvailableEsInstanceIdsResponse>;
1419
1487
  /**
1420
- * Queries shippers.
1488
+ * Queries a list of shippers.
1421
1489
  *
1422
1490
  * @param request - ListCollectorsRequest
1423
1491
  * @param headers - map
@@ -1428,7 +1496,7 @@ export default class Client extends OpenApi {
1428
1496
  [key: string]: string;
1429
1497
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListCollectorsResponse>;
1430
1498
  /**
1431
- * Queries shippers.
1499
+ * Queries a list of shippers.
1432
1500
  *
1433
1501
  * @param request - ListCollectorsRequest
1434
1502
  * @returns ListCollectorsResponse
@@ -1453,7 +1521,7 @@ export default class Client extends OpenApi {
1453
1521
  */
1454
1522
  listComponentIndices(InstanceId: string, request: $_model.ListComponentIndicesRequest): Promise<$_model.ListComponentIndicesResponse>;
1455
1523
  /**
1456
- * 获取与当前实例进行网络互通的实例列表
1524
+ * Call ListConnectedClusters to query the instances that are interconnected with the current instance.
1457
1525
  *
1458
1526
  * @param headers - map
1459
1527
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1463,7 +1531,7 @@ export default class Client extends OpenApi {
1463
1531
  [key: string]: string;
1464
1532
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListConnectedClustersResponse>;
1465
1533
  /**
1466
- * 获取与当前实例进行网络互通的实例列表
1534
+ * Call ListConnectedClusters to query the instances that are interconnected with the current instance.
1467
1535
  * @returns ListConnectedClustersResponse
1468
1536
  */
1469
1537
  listConnectedClusters(InstanceId: string): Promise<$_model.ListConnectedClustersResponse>;
@@ -1486,6 +1554,8 @@ export default class Client extends OpenApi {
1486
1554
  */
1487
1555
  listDataStreams(InstanceId: string, request: $_model.ListDataStreamsRequest): Promise<$_model.ListDataStreamsResponse>;
1488
1556
  /**
1557
+ * Call ListDataTasks to obtain the information of a data migration task.
1558
+ *
1489
1559
  * @param headers - map
1490
1560
  * @param runtime - runtime options for this request RuntimeOptions
1491
1561
  * @returns ListDataTasksResponse
@@ -1494,6 +1564,7 @@ export default class Client extends OpenApi {
1494
1564
  [key: string]: string;
1495
1565
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListDataTasksResponse>;
1496
1566
  /**
1567
+ * Call ListDataTasks to obtain the information of a data migration task.
1497
1568
  * @returns ListDataTasksResponse
1498
1569
  */
1499
1570
  listDataTasks(InstanceId: string): Promise<$_model.ListDataTasksResponse>;
@@ -1552,7 +1623,7 @@ export default class Client extends OpenApi {
1552
1623
  */
1553
1624
  listDiagnoseIndices(InstanceId: string, request: $_model.ListDiagnoseIndicesRequest): Promise<$_model.ListDiagnoseIndicesResponse>;
1554
1625
  /**
1555
- * 获取集群诊断报告列表
1626
+ * Queries the historical intelligent O\\&M reports of an Elasticsearch cluster.
1556
1627
  *
1557
1628
  * @param request - ListDiagnoseReportRequest
1558
1629
  * @param headers - map
@@ -1563,14 +1634,14 @@ export default class Client extends OpenApi {
1563
1634
  [key: string]: string;
1564
1635
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListDiagnoseReportResponse>;
1565
1636
  /**
1566
- * 获取集群诊断报告列表
1637
+ * Queries the historical intelligent O\\&M reports of an Elasticsearch cluster.
1567
1638
  *
1568
1639
  * @param request - ListDiagnoseReportRequest
1569
1640
  * @returns ListDiagnoseReportResponse
1570
1641
  */
1571
1642
  listDiagnoseReport(InstanceId: string, request: $_model.ListDiagnoseReportRequest): Promise<$_model.ListDiagnoseReportResponse>;
1572
1643
  /**
1573
- * Queries the IDs of the historical intelligent O&M reports of an Elasticsearch cluster.
1644
+ * Queries the IDs of the historical intelligent O\\\\\\&M reports of an Elasticsearch cluster.
1574
1645
  *
1575
1646
  * @param request - ListDiagnoseReportIdsRequest
1576
1647
  * @param headers - map
@@ -1581,14 +1652,14 @@ export default class Client extends OpenApi {
1581
1652
  [key: string]: string;
1582
1653
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListDiagnoseReportIdsResponse>;
1583
1654
  /**
1584
- * Queries the IDs of the historical intelligent O&M reports of an Elasticsearch cluster.
1655
+ * Queries the IDs of the historical intelligent O\\\\\\&M reports of an Elasticsearch cluster.
1585
1656
  *
1586
1657
  * @param request - ListDiagnoseReportIdsRequest
1587
1658
  * @returns ListDiagnoseReportIdsResponse
1588
1659
  */
1589
1660
  listDiagnoseReportIds(InstanceId: string, request: $_model.ListDiagnoseReportIdsRequest): Promise<$_model.ListDiagnoseReportIdsResponse>;
1590
1661
  /**
1591
- * The diagnostic item is used to check whether data write requests of a cluster are accumulated. If data write requests are accumulated, a bulk rejection occurs. This may cause data loss and severely consume system resources.
1662
+ * Queries the intelligent diagnostic items of an Elasticsearch cluster.
1592
1663
  *
1593
1664
  * @param request - ListDiagnosisItemsRequest
1594
1665
  * @param headers - map
@@ -1599,13 +1670,15 @@ export default class Client extends OpenApi {
1599
1670
  [key: string]: string;
1600
1671
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListDiagnosisItemsResponse>;
1601
1672
  /**
1602
- * The diagnostic item is used to check whether data write requests of a cluster are accumulated. If data write requests are accumulated, a bulk rejection occurs. This may cause data loss and severely consume system resources.
1673
+ * Queries the intelligent diagnostic items of an Elasticsearch cluster.
1603
1674
  *
1604
1675
  * @param request - ListDiagnosisItemsRequest
1605
1676
  * @returns ListDiagnosisItemsResponse
1606
1677
  */
1607
1678
  listDiagnosisItems(request: $_model.ListDiagnosisItemsRequest): Promise<$_model.ListDiagnosisItemsResponse>;
1608
1679
  /**
1680
+ * Queries information about a dictionary.
1681
+ *
1609
1682
  * @param request - ListDictInformationRequest
1610
1683
  * @param headers - map
1611
1684
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1615,6 +1688,8 @@ export default class Client extends OpenApi {
1615
1688
  [key: string]: string;
1616
1689
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListDictInformationResponse>;
1617
1690
  /**
1691
+ * Queries information about a dictionary.
1692
+ *
1618
1693
  * @param request - ListDictInformationRequest
1619
1694
  * @returns ListDictInformationResponse
1620
1695
  */
@@ -1638,7 +1713,7 @@ export default class Client extends OpenApi {
1638
1713
  */
1639
1714
  listDicts(InstanceId: string, request: $_model.ListDictsRequest): Promise<$_model.ListDictsResponse>;
1640
1715
  /**
1641
- * 查询ecs实例
1716
+ * When you create a Beats collector, call the ListEcsInstances to obtain the list of ECS instances.
1642
1717
  *
1643
1718
  * @remarks
1644
1719
  * *Important** To call this operation, you must create the Aliyun Elasticsearch AccessingOOSRole and the system service role AliyunOOSAccessingECS 4ESRole to Elasticsearch the service account to obtain the ECS access permissions of the primary account. For more information, see [Collect ECS service logs](https://help.aliyun.com/document_detail/146446.html).
@@ -1652,7 +1727,7 @@ export default class Client extends OpenApi {
1652
1727
  [key: string]: string;
1653
1728
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListEcsInstancesResponse>;
1654
1729
  /**
1655
- * 查询ecs实例
1730
+ * When you create a Beats collector, call the ListEcsInstances to obtain the list of ECS instances.
1656
1731
  *
1657
1732
  * @remarks
1658
1733
  * *Important** To call this operation, you must create the Aliyun Elasticsearch AccessingOOSRole and the system service role AliyunOOSAccessingECS 4ESRole to Elasticsearch the service account to obtain the ECS access permissions of the primary account. For more information, see [Collect ECS service logs](https://help.aliyun.com/document_detail/146446.html).
@@ -1662,7 +1737,7 @@ export default class Client extends OpenApi {
1662
1737
  */
1663
1738
  listEcsInstances(request: $_model.ListEcsInstancesRequest): Promise<$_model.ListEcsInstancesResponse>;
1664
1739
  /**
1665
- * Queries the driver files of a Logstash cluster.
1740
+ * Queries the extended file configuration of a Logstash instance.
1666
1741
  *
1667
1742
  * @param headers - map
1668
1743
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1672,7 +1747,7 @@ export default class Client extends OpenApi {
1672
1747
  [key: string]: string;
1673
1748
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListExtendfilesResponse>;
1674
1749
  /**
1675
- * Queries the driver files of a Logstash cluster.
1750
+ * Queries the extended file configuration of a Logstash instance.
1676
1751
  * @returns ListExtendfilesResponse
1677
1752
  */
1678
1753
  listExtendfiles(InstanceId: string): Promise<$_model.ListExtendfilesResponse>;
@@ -1705,7 +1780,7 @@ export default class Client extends OpenApi {
1705
1780
  */
1706
1781
  listIndexTemplates(InstanceId: string, request: $_model.ListIndexTemplatesRequest): Promise<$_model.ListIndexTemplatesResponse>;
1707
1782
  /**
1708
- * 查询Elasticsearch实例列表
1783
+ * Queries a list of Elasticsearch clusters.
1709
1784
  *
1710
1785
  * @param request - ListInstanceRequest
1711
1786
  * @param headers - map
@@ -1716,7 +1791,7 @@ export default class Client extends OpenApi {
1716
1791
  [key: string]: string;
1717
1792
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListInstanceResponse>;
1718
1793
  /**
1719
- * 查询Elasticsearch实例列表
1794
+ * Queries a list of Elasticsearch clusters.
1720
1795
  *
1721
1796
  * @param request - ListInstanceRequest
1722
1797
  * @returns ListInstanceResponse
@@ -1741,7 +1816,7 @@ export default class Client extends OpenApi {
1741
1816
  */
1742
1817
  listInstanceHistoryEvents(request: $_model.ListInstanceHistoryEventsRequest): Promise<$_model.ListInstanceHistoryEventsResponse>;
1743
1818
  /**
1744
- * 获取当前实例先特定的索引列表
1819
+ * Queries the indexes stored on an Elasticsearch cluster.
1745
1820
  *
1746
1821
  * @param request - ListInstanceIndicesRequest
1747
1822
  * @param headers - map
@@ -1752,7 +1827,7 @@ export default class Client extends OpenApi {
1752
1827
  [key: string]: string;
1753
1828
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListInstanceIndicesResponse>;
1754
1829
  /**
1755
- * 获取当前实例先特定的索引列表
1830
+ * Queries the indexes stored on an Elasticsearch cluster.
1756
1831
  *
1757
1832
  * @param request - ListInstanceIndicesRequest
1758
1833
  * @returns ListInstanceIndicesResponse
@@ -1792,7 +1867,7 @@ export default class Client extends OpenApi {
1792
1867
  */
1793
1868
  listKibanaPvlNetwork(InstanceId: string): Promise<$_model.ListKibanaPvlNetworkResponse>;
1794
1869
  /**
1795
- * Logstash集群列表
1870
+ * Queries the information about a Logstash cluster or all Logstash clusters.
1796
1871
  *
1797
1872
  * @param request - ListLogstashRequest
1798
1873
  * @param headers - map
@@ -1803,14 +1878,14 @@ export default class Client extends OpenApi {
1803
1878
  [key: string]: string;
1804
1879
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListLogstashResponse>;
1805
1880
  /**
1806
- * Logstash集群列表
1881
+ * Queries the information about a Logstash cluster or all Logstash clusters.
1807
1882
  *
1808
1883
  * @param request - ListLogstashRequest
1809
1884
  * @returns ListLogstashResponse
1810
1885
  */
1811
1886
  listLogstash(request: $_model.ListLogstashRequest): Promise<$_model.ListLogstashResponse>;
1812
1887
  /**
1813
- * 获取Logstash日志
1888
+ * Queries the logs of a Logstash cluster.
1814
1889
  *
1815
1890
  * @param request - ListLogstashLogRequest
1816
1891
  * @param headers - map
@@ -1821,14 +1896,14 @@ export default class Client extends OpenApi {
1821
1896
  [key: string]: string;
1822
1897
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListLogstashLogResponse>;
1823
1898
  /**
1824
- * 获取Logstash日志
1899
+ * Queries the logs of a Logstash cluster.
1825
1900
  *
1826
1901
  * @param request - ListLogstashLogRequest
1827
1902
  * @returns ListLogstashLogResponse
1828
1903
  */
1829
1904
  listLogstashLog(InstanceId: string, request: $_model.ListLogstashLogRequest): Promise<$_model.ListLogstashLogResponse>;
1830
1905
  /**
1831
- * Logstash插件列表
1906
+ * Queries the information about a plug-in or all plug-ins.
1832
1907
  *
1833
1908
  * @param request - ListLogstashPluginsRequest
1834
1909
  * @param headers - map
@@ -1839,14 +1914,14 @@ export default class Client extends OpenApi {
1839
1914
  [key: string]: string;
1840
1915
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListLogstashPluginsResponse>;
1841
1916
  /**
1842
- * Logstash插件列表
1917
+ * Queries the information about a plug-in or all plug-ins.
1843
1918
  *
1844
1919
  * @param request - ListLogstashPluginsRequest
1845
1920
  * @returns ListLogstashPluginsResponse
1846
1921
  */
1847
1922
  listLogstashPlugins(InstanceId: string, request: $_model.ListLogstashPluginsRequest): Promise<$_model.ListLogstashPluginsResponse>;
1848
1923
  /**
1849
- * Queries the statuses of Elastic Compute Service (ECS) instances on which a shipper is installed.
1924
+ * The list of historical reports of Intelligent Maintenance.
1850
1925
  *
1851
1926
  * @param request - ListNodesRequest
1852
1927
  * @param headers - map
@@ -1857,14 +1932,14 @@ export default class Client extends OpenApi {
1857
1932
  [key: string]: string;
1858
1933
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListNodesResponse>;
1859
1934
  /**
1860
- * Queries the statuses of Elastic Compute Service (ECS) instances on which a shipper is installed.
1935
+ * The list of historical reports of Intelligent Maintenance.
1861
1936
  *
1862
1937
  * @param request - ListNodesRequest
1863
1938
  * @returns ListNodesResponse
1864
1939
  */
1865
1940
  listNodes(ResId: string, request: $_model.ListNodesRequest): Promise<$_model.ListNodesResponse>;
1866
1941
  /**
1867
- * ListPipeline
1942
+ * Queries a list of pipelines.
1868
1943
  *
1869
1944
  * @param request - ListPipelineRequest
1870
1945
  * @param headers - map
@@ -1875,14 +1950,14 @@ export default class Client extends OpenApi {
1875
1950
  [key: string]: string;
1876
1951
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListPipelineResponse>;
1877
1952
  /**
1878
- * ListPipeline
1953
+ * Queries a list of pipelines.
1879
1954
  *
1880
1955
  * @param request - ListPipelineRequest
1881
1956
  * @returns ListPipelineResponse
1882
1957
  */
1883
1958
  listPipeline(InstanceId: string, request: $_model.ListPipelineRequest): Promise<$_model.ListPipelineResponse>;
1884
1959
  /**
1885
- * The error message returned.
1960
+ * Queries the IDs of pipelines for a Logstash cluster.
1886
1961
  *
1887
1962
  * @param request - ListPipelineIdsRequest
1888
1963
  * @param headers - map
@@ -1893,14 +1968,14 @@ export default class Client extends OpenApi {
1893
1968
  [key: string]: string;
1894
1969
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListPipelineIdsResponse>;
1895
1970
  /**
1896
- * The error message returned.
1971
+ * Queries the IDs of pipelines for a Logstash cluster.
1897
1972
  *
1898
1973
  * @param request - ListPipelineIdsRequest
1899
1974
  * @returns ListPipelineIdsResponse
1900
1975
  */
1901
1976
  listPipelineIds(InstanceId: string, request: $_model.ListPipelineIdsRequest): Promise<$_model.ListPipelineIdsResponse>;
1902
1977
  /**
1903
- * ES系统插件列表
1978
+ * Queries the plug-ins that are installed on a specified Elasticsearch cluster.
1904
1979
  *
1905
1980
  * @param request - ListPluginsRequest
1906
1981
  * @param headers - map
@@ -1911,14 +1986,14 @@ export default class Client extends OpenApi {
1911
1986
  [key: string]: string;
1912
1987
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListPluginsResponse>;
1913
1988
  /**
1914
- * ES系统插件列表
1989
+ * Queries the plug-ins that are installed on a specified Elasticsearch cluster.
1915
1990
  *
1916
1991
  * @param request - ListPluginsRequest
1917
1992
  * @returns ListPluginsResponse
1918
1993
  */
1919
1994
  listPlugins(InstanceId: string, request: $_model.ListPluginsRequest): Promise<$_model.ListPluginsResponse>;
1920
1995
  /**
1921
- * 查看Elasticsearch集群各种类型的日志
1996
+ * Queries the logs of an Elasticsearch cluster.
1922
1997
  *
1923
1998
  * @param request - ListSearchLogRequest
1924
1999
  * @param headers - map
@@ -1929,7 +2004,7 @@ export default class Client extends OpenApi {
1929
2004
  [key: string]: string;
1930
2005
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListSearchLogResponse>;
1931
2006
  /**
1932
- * 查看Elasticsearch集群各种类型的日志
2007
+ * Queries the logs of an Elasticsearch cluster.
1933
2008
  *
1934
2009
  * @param request - ListSearchLogRequest
1935
2010
  * @returns ListSearchLogResponse
@@ -1960,7 +2035,7 @@ export default class Client extends OpenApi {
1960
2035
  */
1961
2036
  listShardRecoveries(InstanceId: string, request: $_model.ListShardRecoveriesRequest): Promise<$_model.ListShardRecoveriesResponse>;
1962
2037
  /**
1963
- * 获取跨集群索引仓库列表
2038
+ * Call the ListSnapshotReposByInstanceId to get the cross-cluster OSS repositories of the current instance.
1964
2039
  *
1965
2040
  * @param headers - map
1966
2041
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1970,12 +2045,12 @@ export default class Client extends OpenApi {
1970
2045
  [key: string]: string;
1971
2046
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListSnapshotReposByInstanceIdResponse>;
1972
2047
  /**
1973
- * 获取跨集群索引仓库列表
2048
+ * Call the ListSnapshotReposByInstanceId to get the cross-cluster OSS repositories of the current instance.
1974
2049
  * @returns ListSnapshotReposByInstanceIdResponse
1975
2050
  */
1976
2051
  listSnapshotReposByInstanceId(InstanceId: string): Promise<$_model.ListSnapshotReposByInstanceIdResponse>;
1977
2052
  /**
1978
- * 查看资源和标签关系
2053
+ * Queries the tags that are added to one or more resources.
1979
2054
  *
1980
2055
  * @param request - ListTagResourcesRequest
1981
2056
  * @param headers - map
@@ -1986,14 +2061,14 @@ export default class Client extends OpenApi {
1986
2061
  [key: string]: string;
1987
2062
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListTagResourcesResponse>;
1988
2063
  /**
1989
- * 查看资源和标签关系
2064
+ * Queries the tags that are added to one or more resources.
1990
2065
  *
1991
2066
  * @param request - ListTagResourcesRequest
1992
2067
  * @returns ListTagResourcesResponse
1993
2068
  */
1994
2069
  listTagResources(request: $_model.ListTagResourcesRequest): Promise<$_model.ListTagResourcesResponse>;
1995
2070
  /**
1996
- * 查看所有已常见的标签
2071
+ * All tags created by the user in the current region.
1997
2072
  *
1998
2073
  * @param request - ListTagsRequest
1999
2074
  * @param headers - map
@@ -2004,7 +2079,7 @@ export default class Client extends OpenApi {
2004
2079
  [key: string]: string;
2005
2080
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListTagsResponse>;
2006
2081
  /**
2007
- * 查看所有已常见的标签
2082
+ * All tags created by the user in the current region.
2008
2083
  *
2009
2084
  * @param request - ListTagsRequest
2010
2085
  * @returns ListTagsResponse
@@ -2093,21 +2168,7 @@ export default class Client extends OpenApi {
2093
2168
  */
2094
2169
  modifyElastictask(InstanceId: string, request: $_model.ModifyElastictaskRequest): Promise<$_model.ModifyElastictaskResponse>;
2095
2170
  /**
2096
- * ## RequestBody
2097
- * You must also specify the following parameters in the RequestBody parameter to specify the maintenance window information.
2098
- * | Parameter | Type | Required | Example | Description |
2099
- * | --------- | ---- | -------- | ------- | ----------- |
2100
- * | maintainStartTime | String | No | 02:00Z | The start time of the maintenance window. Specify the time in the HH:mmZ format. The time must be in UTC. |
2101
- * | maintainEndTime | String | No | 06:00Z | The end time of the maintenance window. Specify the time in the HH:mmZ format. The time must be displayed in UTC. |
2102
- * | openMaintainTime | boolean | Yes | true | Specifies whether to enable the maintenance window feature. Only **true** is supported, indicating that the feature is enabled. |
2103
- * Examples:
2104
- * ```
2105
- * {
2106
- * "openMaintainTime": true,
2107
- * "maintainStartTime": "03:00Z",
2108
- * "maintainEndTime": "04:00Z"
2109
- * }
2110
- * ```
2171
+ * Enables and modifies the maintenance window of an Elasticsearch cluster.
2111
2172
  *
2112
2173
  * @remarks
2113
2174
  * es-cn-n6w1o1x0w001c\\*\\*\\*\\*
@@ -2121,21 +2182,7 @@ export default class Client extends OpenApi {
2121
2182
  [key: string]: string;
2122
2183
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyInstanceMaintainTimeResponse>;
2123
2184
  /**
2124
- * ## RequestBody
2125
- * You must also specify the following parameters in the RequestBody parameter to specify the maintenance window information.
2126
- * | Parameter | Type | Required | Example | Description |
2127
- * | --------- | ---- | -------- | ------- | ----------- |
2128
- * | maintainStartTime | String | No | 02:00Z | The start time of the maintenance window. Specify the time in the HH:mmZ format. The time must be in UTC. |
2129
- * | maintainEndTime | String | No | 06:00Z | The end time of the maintenance window. Specify the time in the HH:mmZ format. The time must be displayed in UTC. |
2130
- * | openMaintainTime | boolean | Yes | true | Specifies whether to enable the maintenance window feature. Only **true** is supported, indicating that the feature is enabled. |
2131
- * Examples:
2132
- * ```
2133
- * {
2134
- * "openMaintainTime": true,
2135
- * "maintainStartTime": "03:00Z",
2136
- * "maintainEndTime": "04:00Z"
2137
- * }
2138
- * ```
2185
+ * Enables and modifies the maintenance window of an Elasticsearch cluster.
2139
2186
  *
2140
2187
  * @remarks
2141
2188
  * es-cn-n6w1o1x0w001c\\*\\*\\*\\*
@@ -2145,10 +2192,7 @@ export default class Client extends OpenApi {
2145
2192
  */
2146
2193
  modifyInstanceMaintainTime(InstanceId: string, request: $_model.ModifyInstanceMaintainTimeRequest): Promise<$_model.ModifyInstanceMaintainTimeResponse>;
2147
2194
  /**
2148
- * > If you want to add an IP address whitelist, you can set the modifyMode parameter only to Cover. If you set this parameter to Delete or Append, you can only update an IP address whitelist.
2149
- * * If you set the modifyMode parameter to Cover and leave the ips parameter empty, the system deletes the specified whitelist. If the whitelist specified by using the groupName parameter does not exist, the system creates such a whitelist.
2150
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
2151
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
2195
+ * Updates an IP address whitelist of an Elasticsearch cluster.
2152
2196
  *
2153
2197
  * @remarks
2154
2198
  * The ID of the cluster.
@@ -2162,10 +2206,7 @@ export default class Client extends OpenApi {
2162
2206
  [key: string]: string;
2163
2207
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyWhiteIpsResponse>;
2164
2208
  /**
2165
- * > If you want to add an IP address whitelist, you can set the modifyMode parameter only to Cover. If you set this parameter to Delete or Append, you can only update an IP address whitelist.
2166
- * * If you set the modifyMode parameter to Cover and leave the ips parameter empty, the system deletes the specified whitelist. If the whitelist specified by using the groupName parameter does not exist, the system creates such a whitelist.
2167
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
2168
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
2209
+ * Updates an IP address whitelist of an Elasticsearch cluster.
2169
2210
  *
2170
2211
  * @remarks
2171
2212
  * The ID of the cluster.
@@ -2193,6 +2234,8 @@ export default class Client extends OpenApi {
2193
2234
  */
2194
2235
  moveResourceGroup(InstanceId: string, request: $_model.MoveResourceGroupRequest): Promise<$_model.MoveResourceGroupResponse>;
2195
2236
  /**
2237
+ * Enables the intelligent O\\\\\\&M feature for an instance.
2238
+ *
2196
2239
  * @param request - OpenDiagnosisRequest
2197
2240
  * @param headers - map
2198
2241
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2202,11 +2245,15 @@ export default class Client extends OpenApi {
2202
2245
  [key: string]: string;
2203
2246
  }, runtime: $dara.RuntimeOptions): Promise<$_model.OpenDiagnosisResponse>;
2204
2247
  /**
2248
+ * Enables the intelligent O\\\\\\&M feature for an instance.
2249
+ *
2205
2250
  * @param request - OpenDiagnosisRequest
2206
2251
  * @returns OpenDiagnosisResponse
2207
2252
  */
2208
2253
  openDiagnosis(InstanceId: string, request: $_model.OpenDiagnosisRequest): Promise<$_model.OpenDiagnosisResponse>;
2209
2254
  /**
2255
+ * Call OpenHttps to enable the HTTPS protocol. Make sure that you have purchased a client node before enabling this feature.
2256
+ *
2210
2257
  * @remarks
2211
2258
  * > To ensure data security, we recommend that you enable HTTPS.
2212
2259
  *
@@ -2219,6 +2266,8 @@ export default class Client extends OpenApi {
2219
2266
  [key: string]: string;
2220
2267
  }, runtime: $dara.RuntimeOptions): Promise<$_model.OpenHttpsResponse>;
2221
2268
  /**
2269
+ * Call OpenHttps to enable the HTTPS protocol. Make sure that you have purchased a client node before enabling this feature.
2270
+ *
2222
2271
  * @remarks
2223
2272
  * > To ensure data security, we recommend that you enable HTTPS.
2224
2273
  *
@@ -2355,7 +2404,7 @@ export default class Client extends OpenApi {
2355
2404
  */
2356
2405
  restartInstance(InstanceId: string, request: $_model.RestartInstanceRequest): Promise<$_model.RestartInstanceResponse>;
2357
2406
  /**
2358
- * 重启Logstash集群
2407
+ * Restarts a specified Logstash cluster. After the cluster is restarted, it is in the activating state.
2359
2408
  *
2360
2409
  * @param request - RestartLogstashRequest
2361
2410
  * @param headers - map
@@ -2366,13 +2415,15 @@ export default class Client extends OpenApi {
2366
2415
  [key: string]: string;
2367
2416
  }, runtime: $dara.RuntimeOptions): Promise<$_model.RestartLogstashResponse>;
2368
2417
  /**
2369
- * 重启Logstash集群
2418
+ * Restarts a specified Logstash cluster. After the cluster is restarted, it is in the activating state.
2370
2419
  *
2371
2420
  * @param request - RestartLogstashRequest
2372
2421
  * @returns RestartLogstashResponse
2373
2422
  */
2374
2423
  restartLogstash(InstanceId: string, request: $_model.RestartLogstashRequest): Promise<$_model.RestartLogstashResponse>;
2375
2424
  /**
2425
+ * Call ResumeElasticsearchTask to resume interrupted change of Elasticsearch instance. After you resume or interrupt a change, the instance enters the activating state.
2426
+ *
2376
2427
  * @param request - ResumeElasticsearchTaskRequest
2377
2428
  * @param headers - map
2378
2429
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2382,6 +2433,8 @@ export default class Client extends OpenApi {
2382
2433
  [key: string]: string;
2383
2434
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ResumeElasticsearchTaskResponse>;
2384
2435
  /**
2436
+ * Call ResumeElasticsearchTask to resume interrupted change of Elasticsearch instance. After you resume or interrupt a change, the instance enters the activating state.
2437
+ *
2385
2438
  * @param request - ResumeElasticsearchTaskRequest
2386
2439
  * @returns ResumeElasticsearchTaskResponse
2387
2440
  */
@@ -2441,7 +2494,7 @@ export default class Client extends OpenApi {
2441
2494
  */
2442
2495
  runPipelines(InstanceId: string, request: $_model.RunPipelinesRequest): Promise<$_model.RunPipelinesResponse>;
2443
2496
  /**
2444
- * ES集群缩节点
2497
+ * Removes nodes from an Elasticsearch cluster.
2445
2498
  *
2446
2499
  * @param request - ShrinkNodeRequest
2447
2500
  * @param headers - map
@@ -2452,7 +2505,7 @@ export default class Client extends OpenApi {
2452
2505
  [key: string]: string;
2453
2506
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ShrinkNodeResponse>;
2454
2507
  /**
2455
- * ES集群缩节点
2508
+ * Removes nodes from an Elasticsearch cluster.
2456
2509
  *
2457
2510
  * @param request - ShrinkNodeRequest
2458
2511
  * @returns ShrinkNodeResponse
@@ -2513,7 +2566,7 @@ export default class Client extends OpenApi {
2513
2566
  */
2514
2567
  stopPipelines(InstanceId: string, request: $_model.StopPipelinesRequest): Promise<$_model.StopPipelinesResponse>;
2515
2568
  /**
2516
- * The information about the clusters and tags.
2569
+ * Adds tags to clusters.
2517
2570
  *
2518
2571
  * @param request - TagResourcesRequest
2519
2572
  * @param headers - map
@@ -2524,14 +2577,14 @@ export default class Client extends OpenApi {
2524
2577
  [key: string]: string;
2525
2578
  }, runtime: $dara.RuntimeOptions): Promise<$_model.TagResourcesResponse>;
2526
2579
  /**
2527
- * The information about the clusters and tags.
2580
+ * Adds tags to clusters.
2528
2581
  *
2529
2582
  * @param request - TagResourcesRequest
2530
2583
  * @returns TagResourcesResponse
2531
2584
  */
2532
2585
  tagResources(request: $_model.TagResourcesRequest): Promise<$_model.TagResourcesResponse>;
2533
2586
  /**
2534
- * 缩节点,数据迁移
2587
+ * Runs a data migration task for node scaling operations.
2535
2588
  *
2536
2589
  * @param request - TransferNodeRequest
2537
2590
  * @param headers - map
@@ -2542,14 +2595,14 @@ export default class Client extends OpenApi {
2542
2595
  [key: string]: string;
2543
2596
  }, runtime: $dara.RuntimeOptions): Promise<$_model.TransferNodeResponse>;
2544
2597
  /**
2545
- * 缩节点,数据迁移
2598
+ * Runs a data migration task for node scaling operations.
2546
2599
  *
2547
2600
  * @param request - TransferNodeRequest
2548
2601
  * @returns TransferNodeResponse
2549
2602
  */
2550
2603
  transferNode(InstanceId: string, request: $_model.TransferNodeRequest): Promise<$_model.TransferNodeResponse>;
2551
2604
  /**
2552
- * 开关ES集群及Kibana节点公私网访问
2605
+ * You can call this operation to enable or disable public or private network access for a Elasticsearch or Kibana cluster.
2553
2606
  *
2554
2607
  * @param request - TriggerNetworkRequest
2555
2608
  * @param headers - map
@@ -2560,14 +2613,14 @@ export default class Client extends OpenApi {
2560
2613
  [key: string]: string;
2561
2614
  }, runtime: $dara.RuntimeOptions): Promise<$_model.TriggerNetworkResponse>;
2562
2615
  /**
2563
- * 开关ES集群及Kibana节点公私网访问
2616
+ * You can call this operation to enable or disable public or private network access for a Elasticsearch or Kibana cluster.
2564
2617
  *
2565
2618
  * @param request - TriggerNetworkRequest
2566
2619
  * @returns TriggerNetworkResponse
2567
2620
  */
2568
2621
  triggerNetwork(InstanceId: string, request: $_model.TriggerNetworkRequest): Promise<$_model.TriggerNetworkResponse>;
2569
2622
  /**
2570
- * 可用区关机
2623
+ * Multi-zone Instance: Shutting down an existing availability zone is only for disaster recovery drills. Proceed with caution!
2571
2624
  *
2572
2625
  * @param request - TurnOffZoneRequest
2573
2626
  * @param headers - map
@@ -2578,14 +2631,14 @@ export default class Client extends OpenApi {
2578
2631
  [key: string]: string;
2579
2632
  }, runtime: $dara.RuntimeOptions): Promise<$_model.TurnOffZoneResponse>;
2580
2633
  /**
2581
- * 可用区关机
2634
+ * Multi-zone Instance: Shutting down an existing availability zone is only for disaster recovery drills. Proceed with caution!
2582
2635
  *
2583
2636
  * @param request - TurnOffZoneRequest
2584
2637
  * @returns TurnOffZoneResponse
2585
2638
  */
2586
2639
  turnOffZone(instanceId: string, request: $_model.TurnOffZoneRequest): Promise<$_model.TurnOffZoneResponse>;
2587
2640
  /**
2588
- * 可用区开机
2641
+ * Multi-zone Instance, reopening a zone that has been taken offline is only for disaster recovery drills. Please proceed with caution!
2589
2642
  *
2590
2643
  * @param request - TurnOnZoneRequest
2591
2644
  * @param headers - map
@@ -2596,7 +2649,7 @@ export default class Client extends OpenApi {
2596
2649
  [key: string]: string;
2597
2650
  }, runtime: $dara.RuntimeOptions): Promise<$_model.TurnOnZoneResponse>;
2598
2651
  /**
2599
- * 可用区开机
2652
+ * Multi-zone Instance, reopening a zone that has been taken offline is only for disaster recovery drills. Please proceed with caution!
2600
2653
  *
2601
2654
  * @param request - TurnOnZoneRequest
2602
2655
  * @returns TurnOnZoneResponse
@@ -2621,7 +2674,7 @@ export default class Client extends OpenApi {
2621
2674
  */
2622
2675
  uninstallKibanaPlugin(InstanceId: string, request: $_model.UninstallKibanaPluginRequest): Promise<$_model.UninstallKibanaPluginResponse>;
2623
2676
  /**
2624
- * 卸载Logstash实例已安装的插件
2677
+ * Removes one or more Logstash plug-ins.
2625
2678
  *
2626
2679
  * @param request - UninstallLogstashPluginRequest
2627
2680
  * @param headers - map
@@ -2632,7 +2685,7 @@ export default class Client extends OpenApi {
2632
2685
  [key: string]: string;
2633
2686
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UninstallLogstashPluginResponse>;
2634
2687
  /**
2635
- * 卸载Logstash实例已安装的插件
2688
+ * Removes one or more Logstash plug-ins.
2636
2689
  *
2637
2690
  * @param request - UninstallLogstashPluginRequest
2638
2691
  * @returns UninstallLogstashPluginResponse
@@ -2657,7 +2710,7 @@ export default class Client extends OpenApi {
2657
2710
  */
2658
2711
  uninstallPlugin(InstanceId: string, request: $_model.UninstallPluginRequest): Promise<$_model.UninstallPluginResponse>;
2659
2712
  /**
2660
- * 删除ES集群实例的用户可见标签
2713
+ * Deletes a user resource tag relationship.
2661
2714
  *
2662
2715
  * @remarks
2663
2716
  * When you call this operation, take note of the following items:
@@ -2674,7 +2727,7 @@ export default class Client extends OpenApi {
2674
2727
  [key: string]: string;
2675
2728
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UntagResourcesResponse>;
2676
2729
  /**
2677
- * 删除ES集群实例的用户可见标签
2730
+ * Deletes a user resource tag relationship.
2678
2731
  *
2679
2732
  * @remarks
2680
2733
  * When you call this operation, take note of the following items:
@@ -2687,7 +2740,7 @@ export default class Client extends OpenApi {
2687
2740
  */
2688
2741
  untagResources(request: $_model.UntagResourcesRequest): Promise<$_model.UntagResourcesResponse>;
2689
2742
  /**
2690
- * 修改ES集群密码
2743
+ * You can call this operation to UpdateAdminPassword the password of the elastic account of the specified Elasticsearch instance.
2691
2744
  *
2692
2745
  * @remarks
2693
2746
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -2701,7 +2754,7 @@ export default class Client extends OpenApi {
2701
2754
  [key: string]: string;
2702
2755
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateAdminPasswordResponse>;
2703
2756
  /**
2704
- * 修改ES集群密码
2757
+ * You can call this operation to UpdateAdminPassword the password of the elastic account of the specified Elasticsearch instance.
2705
2758
  *
2706
2759
  * @remarks
2707
2760
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -2835,7 +2888,7 @@ export default class Client extends OpenApi {
2835
2888
  */
2836
2889
  updateComponentIndex(InstanceId: string, name: string, request: $_model.UpdateComponentIndexRequest): Promise<$_model.UpdateComponentIndexResponse>;
2837
2890
  /**
2838
- * 修改elasticsearch实例名称名称
2891
+ * Changes the name of a specified Elasticsearch cluster.
2839
2892
  *
2840
2893
  * @param request - UpdateDescriptionRequest
2841
2894
  * @param headers - map
@@ -2846,14 +2899,14 @@ export default class Client extends OpenApi {
2846
2899
  [key: string]: string;
2847
2900
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateDescriptionResponse>;
2848
2901
  /**
2849
- * 修改elasticsearch实例名称名称
2902
+ * Changes the name of a specified Elasticsearch cluster.
2850
2903
  *
2851
2904
  * @param request - UpdateDescriptionRequest
2852
2905
  * @returns UpdateDescriptionResponse
2853
2906
  */
2854
2907
  updateDescription(InstanceId: string, request: $_model.UpdateDescriptionRequest): Promise<$_model.UpdateDescriptionResponse>;
2855
2908
  /**
2856
- * Call UpdateDiagnosisSettings to update the instance of intelligent operation&maintenance (O&M) scene settings.
2909
+ * Call UpdateDiagnosisSettings to update the instance of intelligent operation\\&maintenance (O\\&M) scene settings.
2857
2910
  *
2858
2911
  * @param request - UpdateDiagnosisSettingsRequest
2859
2912
  * @param headers - map
@@ -2864,7 +2917,7 @@ export default class Client extends OpenApi {
2864
2917
  [key: string]: string;
2865
2918
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateDiagnosisSettingsResponse>;
2866
2919
  /**
2867
- * Call UpdateDiagnosisSettings to update the instance of intelligent operation&maintenance (O&M) scene settings.
2920
+ * Call UpdateDiagnosisSettings to update the instance of intelligent operation\\&maintenance (O\\&M) scene settings.
2868
2921
  *
2869
2922
  * @param request - UpdateDiagnosisSettingsRequest
2870
2923
  * @returns UpdateDiagnosisSettingsResponse
@@ -2955,7 +3008,7 @@ export default class Client extends OpenApi {
2955
3008
  */
2956
3009
  updateExtendfiles(InstanceId: string, request: $_model.UpdateExtendfilesRequest): Promise<$_model.UpdateExtendfilesResponse>;
2957
3010
  /**
2958
- * Performs a rolling update for the IK dictionaries of an Elasticsearch cluster.
3011
+ * null
2959
3012
  *
2960
3013
  * @remarks
2961
3014
  * Before you call this operation, take note of the following items:
@@ -2971,7 +3024,7 @@ export default class Client extends OpenApi {
2971
3024
  [key: string]: string;
2972
3025
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateHotIkDictsResponse>;
2973
3026
  /**
2974
- * Performs a rolling update for the IK dictionaries of an Elasticsearch cluster.
3027
+ * null
2975
3028
  *
2976
3029
  * @remarks
2977
3030
  * Before you call this operation, take note of the following items:
@@ -3019,7 +3072,7 @@ export default class Client extends OpenApi {
3019
3072
  */
3020
3073
  updateIndexTemplate(InstanceId: string, IndexTemplate: string, request: $_model.UpdateIndexTemplateRequest): Promise<$_model.UpdateIndexTemplateResponse>;
3021
3074
  /**
3022
- * 修改ES集群节点配置
3075
+ * Updates the configurations of a cluster, such as the number of nodes, the number of roles, specifications, and disk configurations.
3023
3076
  *
3024
3077
  * @remarks
3025
3078
  * es-cn-n6w1ptcb30009\\*\\*\\*\\*
@@ -3033,7 +3086,7 @@ export default class Client extends OpenApi {
3033
3086
  [key: string]: string;
3034
3087
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateInstanceResponse>;
3035
3088
  /**
3036
- * 修改ES集群节点配置
3089
+ * Updates the configurations of a cluster, such as the number of nodes, the number of roles, specifications, and disk configurations.
3037
3090
  *
3038
3091
  * @remarks
3039
3092
  * es-cn-n6w1ptcb30009\\*\\*\\*\\*
@@ -3043,7 +3096,7 @@ export default class Client extends OpenApi {
3043
3096
  */
3044
3097
  updateInstance(InstanceId: string, request: $_model.UpdateInstanceRequest): Promise<$_model.UpdateInstanceResponse>;
3045
3098
  /**
3046
- * Call UpdateInstanceChargeType to change the billing method of a pay-as-you-go instance to subscription.
3099
+ * null
3047
3100
  *
3048
3101
  * @param request - UpdateInstanceChargeTypeRequest
3049
3102
  * @param headers - map
@@ -3054,7 +3107,7 @@ export default class Client extends OpenApi {
3054
3107
  [key: string]: string;
3055
3108
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateInstanceChargeTypeResponse>;
3056
3109
  /**
3057
- * Call UpdateInstanceChargeType to change the billing method of a pay-as-you-go instance to subscription.
3110
+ * null
3058
3111
  *
3059
3112
  * @param request - UpdateInstanceChargeTypeRequest
3060
3113
  * @returns UpdateInstanceChargeTypeResponse
@@ -3155,7 +3208,7 @@ export default class Client extends OpenApi {
3155
3208
  */
3156
3209
  updateKibanaWhiteIps(InstanceId: string, request: $_model.UpdateKibanaWhiteIpsRequest): Promise<$_model.UpdateKibanaWhiteIpsResponse>;
3157
3210
  /**
3158
- * 修改Logstash节点规格磁盘配置
3211
+ * Modifies the configuration of a specified Logstash cluster, such as the name, quota, disk size, and number of nodes.
3159
3212
  *
3160
3213
  * @param request - UpdateLogstashRequest
3161
3214
  * @param headers - map
@@ -3166,7 +3219,7 @@ export default class Client extends OpenApi {
3166
3219
  [key: string]: string;
3167
3220
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateLogstashResponse>;
3168
3221
  /**
3169
- * 修改Logstash节点规格磁盘配置
3222
+ * Modifies the configuration of a specified Logstash cluster, such as the name, quota, disk size, and number of nodes.
3170
3223
  *
3171
3224
  * @param request - UpdateLogstashRequest
3172
3225
  * @returns UpdateLogstashResponse
@@ -3215,7 +3268,7 @@ export default class Client extends OpenApi {
3215
3268
  */
3216
3269
  updateLogstashDescription(InstanceId: string, request: $_model.UpdateLogstashDescriptionRequest): Promise<$_model.UpdateLogstashDescriptionResponse>;
3217
3270
  /**
3218
- * Updates the configuration of a specified Logstash cluster.
3271
+ * Updates the configuration of the specified Logstash instance.
3219
3272
  *
3220
3273
  * @remarks
3221
3274
  * When you call this operation, take note of the following items:
@@ -3230,7 +3283,7 @@ export default class Client extends OpenApi {
3230
3283
  [key: string]: string;
3231
3284
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateLogstashSettingsResponse>;
3232
3285
  /**
3233
- * Updates the configuration of a specified Logstash cluster.
3286
+ * Updates the configuration of the specified Logstash instance.
3234
3287
  *
3235
3288
  * @remarks
3236
3289
  * When you call this operation, take note of the following items:
@@ -3241,7 +3294,7 @@ export default class Client extends OpenApi {
3241
3294
  */
3242
3295
  updateLogstashSettings(InstanceId: string, request: $_model.UpdateLogstashSettingsRequest): Promise<$_model.UpdateLogstashSettingsResponse>;
3243
3296
  /**
3244
- * 修改Logstash管道配置
3297
+ * Modifies the pipeline management method of the specified Logstash cluster.
3245
3298
  *
3246
3299
  * @param request - UpdatePipelineManagementConfigRequest
3247
3300
  * @param headers - map
@@ -3252,7 +3305,7 @@ export default class Client extends OpenApi {
3252
3305
  [key: string]: string;
3253
3306
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdatePipelineManagementConfigResponse>;
3254
3307
  /**
3255
- * 修改Logstash管道配置
3308
+ * Modifies the pipeline management method of the specified Logstash cluster.
3256
3309
  *
3257
3310
  * @param request - UpdatePipelineManagementConfigRequest
3258
3311
  * @returns UpdatePipelineManagementConfigResponse
@@ -3277,18 +3330,7 @@ export default class Client extends OpenApi {
3277
3330
  */
3278
3331
  updatePipelines(InstanceId: string, request: $_model.UpdatePipelinesRequest): Promise<$_model.UpdatePipelinesResponse>;
3279
3332
  /**
3280
- * ## RequestBody
3281
- * | Property | Type | Required | Example | Description |
3282
- * | -------- | ---- | -------- | ------- | ----------- |
3283
- * | privateNetworkIpWhiteList | List<String> | No | ["0.0.XX.XX","10.2.XX.XX","192.168.XX.XX/25"] | The list of IP address whitelists. This parameter is available if whiteIpGroup is left empty. The value of this parameter updates the IP address whitelist configurations in the Default whitelist group.
3284
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
3285
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
3286
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
3287
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3288
- * | └ ips | List<String> | No | ["0.0.0.0", "10.2.XX.XX"] | The list of IP addresses in the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3289
- * > **Notice** The addition and deletion of whitelist groups are implemented by calling modifyMode to Cover. Delete and Append cannot add or delete whitelist groups at the same time. You can only modify the IP address list in the whitelist group. Take note of the following items: - If the modifyMode parameter is set to Cover, the whitelist group is deleted if ips is empty. If groupName is not in the list of existing whitelist group names, a whitelist group is created.
3290
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
3291
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
3333
+ * You can call this operation to update the VPC private network access whitelist of a specified Elasticsearch instance UpdatePrivateNetworkWhiteIps.
3292
3334
  *
3293
3335
  * @remarks
3294
3336
  * > In the following returned example, only the parameters in the returned data list are guaranteed to be included, and the parameters not mentioned are for reference only. For more information about the parameters, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force a dependency in a program to get these parameters.
@@ -3302,18 +3344,7 @@ export default class Client extends OpenApi {
3302
3344
  [key: string]: string;
3303
3345
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdatePrivateNetworkWhiteIpsResponse>;
3304
3346
  /**
3305
- * ## RequestBody
3306
- * | Property | Type | Required | Example | Description |
3307
- * | -------- | ---- | -------- | ------- | ----------- |
3308
- * | privateNetworkIpWhiteList | List<String> | No | ["0.0.XX.XX","10.2.XX.XX","192.168.XX.XX/25"] | The list of IP address whitelists. This parameter is available if whiteIpGroup is left empty. The value of this parameter updates the IP address whitelist configurations in the Default whitelist group.
3309
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
3310
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
3311
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
3312
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3313
- * | └ ips | List<String> | No | ["0.0.0.0", "10.2.XX.XX"] | The list of IP addresses in the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3314
- * > **Notice** The addition and deletion of whitelist groups are implemented by calling modifyMode to Cover. Delete and Append cannot add or delete whitelist groups at the same time. You can only modify the IP address list in the whitelist group. Take note of the following items: - If the modifyMode parameter is set to Cover, the whitelist group is deleted if ips is empty. If groupName is not in the list of existing whitelist group names, a whitelist group is created.
3315
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
3316
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
3347
+ * You can call this operation to update the VPC private network access whitelist of a specified Elasticsearch instance UpdatePrivateNetworkWhiteIps.
3317
3348
  *
3318
3349
  * @remarks
3319
3350
  * > In the following returned example, only the parameters in the returned data list are guaranteed to be included, and the parameters not mentioned are for reference only. For more information about the parameters, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force a dependency in a program to get these parameters.
@@ -3323,7 +3354,7 @@ export default class Client extends OpenApi {
3323
3354
  */
3324
3355
  updatePrivateNetworkWhiteIps(InstanceId: string, request: $_model.UpdatePrivateNetworkWhiteIpsRequest): Promise<$_model.UpdatePrivateNetworkWhiteIpsResponse>;
3325
3356
  /**
3326
- * Call UpdatePublicNetwork to open or close the public network address of the specified elasticsearch instance.
3357
+ * null
3327
3358
  *
3328
3359
  * @remarks
3329
3360
  * When you call this operation, take note of the following items:
@@ -3338,7 +3369,7 @@ export default class Client extends OpenApi {
3338
3369
  [key: string]: string;
3339
3370
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdatePublicNetworkResponse>;
3340
3371
  /**
3341
- * Call UpdatePublicNetwork to open or close the public network address of the specified elasticsearch instance.
3372
+ * null
3342
3373
  *
3343
3374
  * @remarks
3344
3375
  * When you call this operation, take note of the following items:
@@ -3349,18 +3380,7 @@ export default class Client extends OpenApi {
3349
3380
  */
3350
3381
  updatePublicNetwork(InstanceId: string, request: $_model.UpdatePublicNetworkRequest): Promise<$_model.UpdatePublicNetworkResponse>;
3351
3382
  /**
3352
- * ## RequestBody
3353
- * | Property | Type | Required | Example | Description |
3354
- * | -------- | ---- | -------- | ------- | ----------- |
3355
- * | publicIpWhitelist | List<String> | Yes | ["0.0.0.0/0","0.0.0.0/1"] | The list of IP address whitelists. This parameter is available if whiteIpGroup is left empty. The value of this parameter updates the IP address whitelist configurations in the Default whitelist group.
3356
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
3357
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
3358
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
3359
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3360
- * | └ ips | List<String> | No | ["0.0.0.0", "10.2.XX.XX"] | The list of IP addresses in the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3361
- * > **Notice** The addition and deletion of whitelist groups are implemented by calling modifyMode to Cover. Delete and Append cannot add or delete whitelist groups at the same time. You can only modify the IP address list in the whitelist group. Take note of the following items: - If the modifyMode parameter is set to Cover, the whitelist group is deleted if ips is empty. If groupName is not in the list of existing whitelist group names, a whitelist group is created.
3362
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
3363
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
3383
+ * null
3364
3384
  *
3365
3385
  * @remarks
3366
3386
  * > In the following example, only the parameters in the returned data list are guaranteed to be included. The parameters that are not mentioned are for reference only. For more information about the parameters, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force a dependency in a program to get these parameters.
@@ -3374,18 +3394,7 @@ export default class Client extends OpenApi {
3374
3394
  [key: string]: string;
3375
3395
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdatePublicWhiteIpsResponse>;
3376
3396
  /**
3377
- * ## RequestBody
3378
- * | Property | Type | Required | Example | Description |
3379
- * | -------- | ---- | -------- | ------- | ----------- |
3380
- * | publicIpWhitelist | List<String> | Yes | ["0.0.0.0/0","0.0.0.0/1"] | The list of IP address whitelists. This parameter is available if whiteIpGroup is left empty. The value of this parameter updates the IP address whitelist configurations in the Default whitelist group.
3381
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
3382
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
3383
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
3384
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3385
- * | └ ips | List<String> | No | ["0.0.0.0", "10.2.XX.XX"] | The list of IP addresses in the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
3386
- * > **Notice** The addition and deletion of whitelist groups are implemented by calling modifyMode to Cover. Delete and Append cannot add or delete whitelist groups at the same time. You can only modify the IP address list in the whitelist group. Take note of the following items: - If the modifyMode parameter is set to Cover, the whitelist group is deleted if ips is empty. If groupName is not in the list of existing whitelist group names, a whitelist group is created.
3387
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
3388
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
3397
+ * null
3389
3398
  *
3390
3399
  * @remarks
3391
3400
  * > In the following example, only the parameters in the returned data list are guaranteed to be included. The parameters that are not mentioned are for reference only. For more information about the parameters, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force a dependency in a program to get these parameters.
@@ -3473,10 +3482,7 @@ export default class Client extends OpenApi {
3473
3482
  */
3474
3483
  updateTemplate(InstanceId: string, TemplateName: string, request: $_model.UpdateTemplateRequest): Promise<$_model.UpdateTemplateResponse>;
3475
3484
  /**
3476
- * > If you want to add an IP address whitelist, you can set the modifyMode parameter only to Cover. If you set this parameter to Delete or Append, you can only update an IP address whitelist.
3477
- * * If you set the modifyMode parameter to Cover and leave the ips parameter empty, the system deletes the specified whitelist. If the whitelist specified by using the groupName parameter does not exist, the system creates such a whitelist.
3478
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
3479
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
3485
+ * Updates a private IP address whitelist of an Elasticsearch cluster.
3480
3486
  *
3481
3487
  * @remarks
3482
3488
  * > For more information about the parameters displayed in the following sample code but not provided in the preceding tables, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force your program to obtain these parameters.
@@ -3490,10 +3496,7 @@ export default class Client extends OpenApi {
3490
3496
  [key: string]: string;
3491
3497
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateWhiteIpsResponse>;
3492
3498
  /**
3493
- * > If you want to add an IP address whitelist, you can set the modifyMode parameter only to Cover. If you set this parameter to Delete or Append, you can only update an IP address whitelist.
3494
- * * If you set the modifyMode parameter to Cover and leave the ips parameter empty, the system deletes the specified whitelist. If the whitelist specified by using the groupName parameter does not exist, the system creates such a whitelist.
3495
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
3496
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
3499
+ * Updates a private IP address whitelist of an Elasticsearch cluster.
3497
3500
  *
3498
3501
  * @remarks
3499
3502
  * > For more information about the parameters displayed in the following sample code but not provided in the preceding tables, see [ListInstance](https://help.aliyun.com/document_detail/142230.html). You cannot force your program to obtain these parameters.
@@ -3503,7 +3506,7 @@ export default class Client extends OpenApi {
3503
3506
  */
3504
3507
  updateWhiteIps(InstanceId: string, request: $_model.UpdateWhiteIpsRequest): Promise<$_model.UpdateWhiteIpsResponse>;
3505
3508
  /**
3506
- * 修改Logstash实例的X-Pack监控报警配置。
3509
+ * Updates the X-Pack monitoring and alert configuration of a Logstash cluster.
3507
3510
  *
3508
3511
  * @param request - UpdateXpackMonitorConfigRequest
3509
3512
  * @param headers - map
@@ -3514,14 +3517,14 @@ export default class Client extends OpenApi {
3514
3517
  [key: string]: string;
3515
3518
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateXpackMonitorConfigResponse>;
3516
3519
  /**
3517
- * 修改Logstash实例的X-Pack监控报警配置。
3520
+ * Updates the X-Pack monitoring and alert configuration of a Logstash cluster.
3518
3521
  *
3519
3522
  * @param request - UpdateXpackMonitorConfigRequest
3520
3523
  * @returns UpdateXpackMonitorConfigResponse
3521
3524
  */
3522
3525
  updateXpackMonitorConfig(InstanceId: string, request: $_model.UpdateXpackMonitorConfigRequest): Promise<$_model.UpdateXpackMonitorConfigResponse>;
3523
3526
  /**
3524
- * ES集群版本升级
3527
+ * Upgrades the version or kernel of an Elasticsearch cluster.
3525
3528
  *
3526
3529
  * @remarks
3527
3530
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -3535,7 +3538,7 @@ export default class Client extends OpenApi {
3535
3538
  [key: string]: string;
3536
3539
  }, runtime: $dara.RuntimeOptions): Promise<$_model.UpgradeEngineVersionResponse>;
3537
3540
  /**
3538
- * ES集群版本升级
3541
+ * Upgrades the version or kernel of an Elasticsearch cluster.
3539
3542
  *
3540
3543
  * @remarks
3541
3544
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -3569,7 +3572,7 @@ export default class Client extends OpenApi {
3569
3572
  */
3570
3573
  validateConnection(InstanceId: string, request: $_model.ValidateConnectionRequest): Promise<$_model.ValidateConnectionResponse>;
3571
3574
  /**
3572
- * 校验缩节点合法性
3575
+ * Checks whether specific nodes can be removed from a specified Elasticsearch cluster.
3573
3576
  *
3574
3577
  * @param request - ValidateShrinkNodesRequest
3575
3578
  * @param headers - map
@@ -3580,13 +3583,15 @@ export default class Client extends OpenApi {
3580
3583
  [key: string]: string;
3581
3584
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ValidateShrinkNodesResponse>;
3582
3585
  /**
3583
- * 校验缩节点合法性
3586
+ * Checks whether specific nodes can be removed from a specified Elasticsearch cluster.
3584
3587
  *
3585
3588
  * @param request - ValidateShrinkNodesRequest
3586
3589
  * @returns ValidateShrinkNodesResponse
3587
3590
  */
3588
3591
  validateShrinkNodes(InstanceId: string, request: $_model.ValidateShrinkNodesRequest): Promise<$_model.ValidateShrinkNodesResponse>;
3589
3592
  /**
3593
+ * Verify the SLR permissions of the current account.
3594
+ *
3590
3595
  * @param request - ValidateSlrPermissionRequest
3591
3596
  * @param headers - map
3592
3597
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3596,12 +3601,14 @@ export default class Client extends OpenApi {
3596
3601
  [key: string]: string;
3597
3602
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ValidateSlrPermissionResponse>;
3598
3603
  /**
3604
+ * Verify the SLR permissions of the current account.
3605
+ *
3599
3606
  * @param request - ValidateSlrPermissionRequest
3600
3607
  * @returns ValidateSlrPermissionResponse
3601
3608
  */
3602
3609
  validateSlrPermission(request: $_model.ValidateSlrPermissionRequest): Promise<$_model.ValidateSlrPermissionResponse>;
3603
3610
  /**
3604
- * 缩节点校验数据迁移合法性
3611
+ * Checks whether the data on specific nodes in a specified Elasticsearch cluster can be migrated.
3605
3612
  *
3606
3613
  * @param request - ValidateTransferableNodesRequest
3607
3614
  * @param headers - map
@@ -3612,14 +3619,14 @@ export default class Client extends OpenApi {
3612
3619
  [key: string]: string;
3613
3620
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ValidateTransferableNodesResponse>;
3614
3621
  /**
3615
- * 缩节点校验数据迁移合法性
3622
+ * Checks whether the data on specific nodes in a specified Elasticsearch cluster can be migrated.
3616
3623
  *
3617
3624
  * @param request - ValidateTransferableNodesRequest
3618
3625
  * @returns ValidateTransferableNodesResponse
3619
3626
  */
3620
3627
  validateTransferableNodes(InstanceId: string, request: $_model.ValidateTransferableNodesRequest): Promise<$_model.ValidateTransferableNodesResponse>;
3621
3628
  /**
3622
- * The configurations of dedicated master nodes.
3629
+ * Creates an Elasticsearch cluster.
3623
3630
  *
3624
3631
  * @remarks
3625
3632
  * The configurations of warm nodes.
@@ -3633,7 +3640,7 @@ export default class Client extends OpenApi {
3633
3640
  [key: string]: string;
3634
3641
  }, runtime: $dara.RuntimeOptions): Promise<$_model.CreateInstanceResponse>;
3635
3642
  /**
3636
- * The configurations of dedicated master nodes.
3643
+ * Creates an Elasticsearch cluster.
3637
3644
  *
3638
3645
  * @remarks
3639
3646
  * The configurations of warm nodes.