@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/src/client.ts CHANGED
@@ -252,6 +252,8 @@ export default class Client extends OpenApi {
252
252
  }
253
253
 
254
254
  /**
255
+ * Call CancelTask to cancel a data migration task.
256
+ *
255
257
  * @param request - CancelTaskRequest
256
258
  * @param headers - map
257
259
  * @param runtime - runtime options for this request RuntimeOptions
@@ -287,6 +289,8 @@ export default class Client extends OpenApi {
287
289
  }
288
290
 
289
291
  /**
292
+ * Call CancelTask to cancel a data migration task.
293
+ *
290
294
  * @param request - CancelTaskRequest
291
295
  * @returns CancelTaskResponse
292
296
  */
@@ -354,7 +358,7 @@ export default class Client extends OpenApi {
354
358
  }
355
359
 
356
360
  /**
357
- * 关闭实例的智能运维功能
361
+ * Disables the intelligent O\\&M feature for an Elasticsearch cluster.
358
362
  *
359
363
  * @param request - CloseDiagnosisRequest
360
364
  * @param headers - map
@@ -391,7 +395,7 @@ export default class Client extends OpenApi {
391
395
  }
392
396
 
393
397
  /**
394
- * 关闭实例的智能运维功能
398
+ * Disables the intelligent O\\&M feature for an Elasticsearch cluster.
395
399
  *
396
400
  * @param request - CloseDiagnosisRequest
397
401
  * @returns CloseDiagnosisResponse
@@ -403,6 +407,8 @@ export default class Client extends OpenApi {
403
407
  }
404
408
 
405
409
  /**
410
+ * Call CloseHttps to close the HTTPS protocol.
411
+ *
406
412
  * @param request - CloseHttpsRequest
407
413
  * @param headers - map
408
414
  * @param runtime - runtime options for this request RuntimeOptions
@@ -434,6 +440,8 @@ export default class Client extends OpenApi {
434
440
  }
435
441
 
436
442
  /**
443
+ * Call CloseHttps to close the HTTPS protocol.
444
+ *
437
445
  * @param request - CloseHttpsRequest
438
446
  * @returns CloseHttpsResponse
439
447
  */
@@ -780,7 +788,7 @@ export default class Client extends OpenApi {
780
788
  }
781
789
 
782
790
  /**
783
- * 创建logstash实例
791
+ * Creates a Logstash cluster.
784
792
  *
785
793
  * @param request - CreateLogstashRequest
786
794
  * @param headers - map
@@ -847,7 +855,7 @@ export default class Client extends OpenApi {
847
855
  }
848
856
 
849
857
  /**
850
- * 创建logstash实例
858
+ * Creates a Logstash cluster.
851
859
  *
852
860
  * @param request - CreateLogstashRequest
853
861
  * @returns CreateLogstashResponse
@@ -859,7 +867,7 @@ export default class Client extends OpenApi {
859
867
  }
860
868
 
861
869
  /**
862
- * 创建Logstash管道任务
870
+ * Creates a pipeline in a Logstash cluster.
863
871
  *
864
872
  * @param request - CreatePipelinesRequest
865
873
  * @param headers - map
@@ -897,7 +905,7 @@ export default class Client extends OpenApi {
897
905
  }
898
906
 
899
907
  /**
900
- * 创建Logstash管道任务
908
+ * Creates a pipeline in a Logstash cluster.
901
909
  *
902
910
  * @param request - CreatePipelinesRequest
903
911
  * @returns CreatePipelinesResponse
@@ -909,6 +917,8 @@ export default class Client extends OpenApi {
909
917
  }
910
918
 
911
919
  /**
920
+ * Call CreateSnapshot to manually back up a cluster snapshot.
921
+ *
912
922
  * @param request - CreateSnapshotRequest
913
923
  * @param headers - map
914
924
  * @param runtime - runtime options for this request RuntimeOptions
@@ -941,6 +951,8 @@ export default class Client extends OpenApi {
941
951
  }
942
952
 
943
953
  /**
954
+ * Call CreateSnapshot to manually back up a cluster snapshot.
955
+ *
944
956
  * @param request - CreateSnapshotRequest
945
957
  * @returns CreateSnapshotResponse
946
958
  */
@@ -1016,7 +1028,7 @@ export default class Client extends OpenApi {
1016
1028
  }
1017
1029
 
1018
1030
  /**
1019
- * Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
1031
+ * Disables one or more zones where a multi-zone Elasticsearch cluster resides and migrates the nodes in the disabled zones to other zones.
1020
1032
  *
1021
1033
  * @param request - DeactivateZonesRequest
1022
1034
  * @param headers - map
@@ -1050,7 +1062,7 @@ export default class Client extends OpenApi {
1050
1062
  }
1051
1063
 
1052
1064
  /**
1053
- * Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
1065
+ * Disables one or more zones where a multi-zone Elasticsearch cluster resides and migrates the nodes in the disabled zones to other zones.
1054
1066
  *
1055
1067
  * @param request - DeactivateZonesRequest
1056
1068
  * @returns DeactivateZonesResponse
@@ -1142,6 +1154,8 @@ export default class Client extends OpenApi {
1142
1154
  }
1143
1155
 
1144
1156
  /**
1157
+ * Call DeleteConnectedCluster to remove the interconnected instance.
1158
+ *
1145
1159
  * @param request - DeleteConnectedClusterRequest
1146
1160
  * @param headers - map
1147
1161
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1177,6 +1191,8 @@ export default class Client extends OpenApi {
1177
1191
  }
1178
1192
 
1179
1193
  /**
1194
+ * Call DeleteConnectedCluster to remove the interconnected instance.
1195
+ *
1180
1196
  * @param request - DeleteConnectedClusterRequest
1181
1197
  * @returns DeleteConnectedClusterResponse
1182
1198
  */
@@ -1232,6 +1248,8 @@ export default class Client extends OpenApi {
1232
1248
  }
1233
1249
 
1234
1250
  /**
1251
+ * You can call this operation to delete an index migration task.
1252
+ *
1235
1253
  * @param request - DeleteDataTaskRequest
1236
1254
  * @param headers - map
1237
1255
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1267,6 +1285,8 @@ export default class Client extends OpenApi {
1267
1285
  }
1268
1286
 
1269
1287
  /**
1288
+ * You can call this operation to delete an index migration task.
1289
+ *
1270
1290
  * @param request - DeleteDataTaskRequest
1271
1291
  * @returns DeleteDataTaskResponse
1272
1292
  */
@@ -1344,7 +1364,7 @@ export default class Client extends OpenApi {
1344
1364
  }
1345
1365
 
1346
1366
  /**
1347
- * 删除ES集群索引模版
1367
+ * Deletes a top index template.
1348
1368
  *
1349
1369
  * @param headers - map
1350
1370
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1369,7 +1389,7 @@ export default class Client extends OpenApi {
1369
1389
  }
1370
1390
 
1371
1391
  /**
1372
- * 删除ES集群索引模版
1392
+ * Deletes a top index template.
1373
1393
  * @returns DeleteIndexTemplateResponse
1374
1394
  */
1375
1395
  async deleteIndexTemplate(InstanceId: string, IndexTemplate: string): Promise<$_model.DeleteIndexTemplateResponse> {
@@ -1379,6 +1399,8 @@ export default class Client extends OpenApi {
1379
1399
  }
1380
1400
 
1381
1401
  /**
1402
+ * 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.
1403
+ *
1382
1404
  * @param request - DeleteInstanceRequest
1383
1405
  * @param headers - map
1384
1406
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1414,6 +1436,8 @@ export default class Client extends OpenApi {
1414
1436
  }
1415
1437
 
1416
1438
  /**
1439
+ * 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.
1440
+ *
1417
1441
  * @param request - DeleteInstanceRequest
1418
1442
  * @returns DeleteInstanceResponse
1419
1443
  */
@@ -1528,6 +1552,8 @@ export default class Client extends OpenApi {
1528
1552
  }
1529
1553
 
1530
1554
  /**
1555
+ * Call DeleteSnapshotRepo to delete a cross-cluster OSS repository.
1556
+ *
1531
1557
  * @param request - DeleteSnapshotRepoRequest
1532
1558
  * @param headers - map
1533
1559
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1563,6 +1589,8 @@ export default class Client extends OpenApi {
1563
1589
  }
1564
1590
 
1565
1591
  /**
1592
+ * Call DeleteSnapshotRepo to delete a cross-cluster OSS repository.
1593
+ *
1566
1594
  * @param request - DeleteSnapshotRepoRequest
1567
1595
  * @returns DeleteSnapshotRepoResponse
1568
1596
  */
@@ -1573,7 +1601,7 @@ export default class Client extends OpenApi {
1573
1601
  }
1574
1602
 
1575
1603
  /**
1576
- * 删除服务账号vpc下的终端节点
1604
+ * Deletes an endpoint in the VPC within the Elasticsearch service account.
1577
1605
  *
1578
1606
  * @param request - DeleteVpcEndpointRequest
1579
1607
  * @param headers - map
@@ -1606,7 +1634,7 @@ export default class Client extends OpenApi {
1606
1634
  }
1607
1635
 
1608
1636
  /**
1609
- * 删除服务账号vpc下的终端节点
1637
+ * Deletes an endpoint in the VPC within the Elasticsearch service account.
1610
1638
  *
1611
1639
  * @param request - DeleteVpcEndpointRequest
1612
1640
  * @returns DeleteVpcEndpointResponse
@@ -1659,7 +1687,7 @@ export default class Client extends OpenApi {
1659
1687
  }
1660
1688
 
1661
1689
  /**
1662
- * Queries the details of a shipper.
1690
+ * Queries the detailed information of a shipper.
1663
1691
  *
1664
1692
  * @param headers - map
1665
1693
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1684,7 +1712,7 @@ export default class Client extends OpenApi {
1684
1712
  }
1685
1713
 
1686
1714
  /**
1687
- * Queries the details of a shipper.
1715
+ * Queries the detailed information of a shipper.
1688
1716
  * @returns DescribeCollectorResponse
1689
1717
  */
1690
1718
  async describeCollector(ResId: string): Promise<$_model.DescribeCollectorResponse> {
@@ -1729,6 +1757,8 @@ export default class Client extends OpenApi {
1729
1757
  }
1730
1758
 
1731
1759
  /**
1760
+ * Queries the Elasticsearch clusters that can be connected to a specified Elasticsearch cluster.
1761
+ *
1732
1762
  * @param request - DescribeConnectableClustersRequest
1733
1763
  * @param headers - map
1734
1764
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1760,6 +1790,8 @@ export default class Client extends OpenApi {
1760
1790
  }
1761
1791
 
1762
1792
  /**
1793
+ * Queries the Elasticsearch clusters that can be connected to a specified Elasticsearch cluster.
1794
+ *
1763
1795
  * @param request - DescribeConnectableClustersRequest
1764
1796
  * @returns DescribeConnectableClustersResponse
1765
1797
  */
@@ -1805,6 +1837,8 @@ export default class Client extends OpenApi {
1805
1837
  }
1806
1838
 
1807
1839
  /**
1840
+ * Queries a historical intelligent O\\&M report.
1841
+ *
1808
1842
  * @param request - DescribeDiagnoseReportRequest
1809
1843
  * @param headers - map
1810
1844
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1836,6 +1870,8 @@ export default class Client extends OpenApi {
1836
1870
  }
1837
1871
 
1838
1872
  /**
1873
+ * Queries a historical intelligent O\\&M report.
1874
+ *
1839
1875
  * @param request - DescribeDiagnoseReportRequest
1840
1876
  * @returns DescribeDiagnoseReportResponse
1841
1877
  */
@@ -1846,6 +1882,8 @@ export default class Client extends OpenApi {
1846
1882
  }
1847
1883
 
1848
1884
  /**
1885
+ * Call DescribeDiagnosisSettings to obtain the scenario settings of intelligent maintenance.
1886
+ *
1849
1887
  * @param request - DescribeDiagnosisSettingsRequest
1850
1888
  * @param headers - map
1851
1889
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1877,6 +1915,8 @@ export default class Client extends OpenApi {
1877
1915
  }
1878
1916
 
1879
1917
  /**
1918
+ * Call DescribeDiagnosisSettings to obtain the scenario settings of intelligent maintenance.
1919
+ *
1880
1920
  * @param request - DescribeDiagnosisSettingsRequest
1881
1921
  * @returns DescribeDiagnosisSettingsResponse
1882
1922
  */
@@ -1922,7 +1962,7 @@ export default class Client extends OpenApi {
1922
1962
  }
1923
1963
 
1924
1964
  /**
1925
- * Queries the health status of an Elasticsearch cluster.
1965
+ * Check the health status of the cluster and whether it is running normally.
1926
1966
  *
1927
1967
  * @remarks
1928
1968
  * An Elasticsearch cluster can be in a health state indicated by one of the following colors:
@@ -1953,7 +1993,7 @@ export default class Client extends OpenApi {
1953
1993
  }
1954
1994
 
1955
1995
  /**
1956
- * Queries the health status of an Elasticsearch cluster.
1996
+ * Check the health status of the cluster and whether it is running normally.
1957
1997
  *
1958
1998
  * @remarks
1959
1999
  * An Elasticsearch cluster can be in a health state indicated by one of the following colors:
@@ -2068,7 +2108,7 @@ export default class Client extends OpenApi {
2068
2108
  }
2069
2109
 
2070
2110
  /**
2071
- * 获取Elasticsearch集群Kibana节点settings配置
2111
+ * Get the configuration of the Kibana node for the Elasticsearch cluster.
2072
2112
  *
2073
2113
  * @param headers - map
2074
2114
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2093,7 +2133,7 @@ export default class Client extends OpenApi {
2093
2133
  }
2094
2134
 
2095
2135
  /**
2096
- * 获取Elasticsearch集群Kibana节点settings配置
2136
+ * Get the configuration of the Kibana node for the Elasticsearch cluster.
2097
2137
  * @returns DescribeKibanaSettingsResponse
2098
2138
  */
2099
2139
  async describeKibanaSettings(InstanceId: string): Promise<$_model.DescribeKibanaSettingsResponse> {
@@ -2103,7 +2143,7 @@ export default class Client extends OpenApi {
2103
2143
  }
2104
2144
 
2105
2145
  /**
2106
- * 查看Logstash实例详情
2146
+ * Queries the information about a Logstash cluster.
2107
2147
  *
2108
2148
  * @param headers - map
2109
2149
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2128,7 +2168,7 @@ export default class Client extends OpenApi {
2128
2168
  }
2129
2169
 
2130
2170
  /**
2131
- * 查看Logstash实例详情
2171
+ * Queries the information about a Logstash cluster.
2132
2172
  * @returns DescribeLogstashResponse
2133
2173
  */
2134
2174
  async describeLogstash(InstanceId: string): Promise<$_model.DescribeLogstashResponse> {
@@ -2138,6 +2178,8 @@ export default class Client extends OpenApi {
2138
2178
  }
2139
2179
 
2140
2180
  /**
2181
+ * Queries the information about a pipeline in a Logstash cluster.
2182
+ *
2141
2183
  * @param headers - map
2142
2184
  * @param runtime - runtime options for this request RuntimeOptions
2143
2185
  * @returns DescribePipelineResponse
@@ -2161,6 +2203,7 @@ export default class Client extends OpenApi {
2161
2203
  }
2162
2204
 
2163
2205
  /**
2206
+ * Queries the information about a pipeline in a Logstash cluster.
2164
2207
  * @returns DescribePipelineResponse
2165
2208
  */
2166
2209
  async describePipeline(InstanceId: string, PipelineId: string): Promise<$_model.DescribePipelineResponse> {
@@ -2215,6 +2258,8 @@ export default class Client extends OpenApi {
2215
2258
  }
2216
2259
 
2217
2260
  /**
2261
+ * Get the region information of Alibaba Cloud Elasticsearch.
2262
+ *
2218
2263
  * @param headers - map
2219
2264
  * @param runtime - runtime options for this request RuntimeOptions
2220
2265
  * @returns DescribeRegionsResponse
@@ -2238,6 +2283,7 @@ export default class Client extends OpenApi {
2238
2283
  }
2239
2284
 
2240
2285
  /**
2286
+ * Get the region information of Alibaba Cloud Elasticsearch.
2241
2287
  * @returns DescribeRegionsResponse
2242
2288
  */
2243
2289
  async describeRegions(): Promise<$_model.DescribeRegionsResponse> {
@@ -2247,7 +2293,7 @@ export default class Client extends OpenApi {
2247
2293
  }
2248
2294
 
2249
2295
  /**
2250
- * 查看备份设置
2296
+ * Get the snapshot backup settings of the cluster, backup cycle.
2251
2297
  *
2252
2298
  * @param headers - map
2253
2299
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2272,7 +2318,7 @@ export default class Client extends OpenApi {
2272
2318
  }
2273
2319
 
2274
2320
  /**
2275
- * 查看备份设置
2321
+ * Get the snapshot backup settings of the cluster, backup cycle.
2276
2322
  * @returns DescribeSnapshotSettingResponse
2277
2323
  */
2278
2324
  async describeSnapshotSetting(InstanceId: string): Promise<$_model.DescribeSnapshotSettingResponse> {
@@ -2314,7 +2360,7 @@ export default class Client extends OpenApi {
2314
2360
  }
2315
2361
 
2316
2362
  /**
2317
- * Queries the configurations of the X-Pack Monitoring feature of a Logstash cluster.
2363
+ * Queries the X-Pack Monitoring configurations of a Logstash cluster.
2318
2364
  *
2319
2365
  * @param headers - map
2320
2366
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2339,7 +2385,7 @@ export default class Client extends OpenApi {
2339
2385
  }
2340
2386
 
2341
2387
  /**
2342
- * Queries the configurations of the X-Pack Monitoring feature of a Logstash cluster.
2388
+ * Queries the X-Pack Monitoring configurations of a Logstash cluster.
2343
2389
  * @returns DescribeXpackMonitorConfigResponse
2344
2390
  */
2345
2391
  async describeXpackMonitorConfig(InstanceId: string): Promise<$_model.DescribeXpackMonitorConfigResponse> {
@@ -2349,7 +2395,7 @@ export default class Client extends OpenApi {
2349
2395
  }
2350
2396
 
2351
2397
  /**
2352
- * 触发ES实例智能诊断
2398
+ * Diagnoses an Elasticsearch cluster.
2353
2399
  *
2354
2400
  * @param request - DiagnoseInstanceRequest
2355
2401
  * @param headers - map
@@ -2400,7 +2446,7 @@ export default class Client extends OpenApi {
2400
2446
  }
2401
2447
 
2402
2448
  /**
2403
- * 触发ES实例智能诊断
2449
+ * Diagnoses an Elasticsearch cluster.
2404
2450
  *
2405
2451
  * @param request - DiagnoseInstanceRequest
2406
2452
  * @returns DiagnoseInstanceResponse
@@ -2412,7 +2458,7 @@ export default class Client extends OpenApi {
2412
2458
  }
2413
2459
 
2414
2460
  /**
2415
- * 关闭kibana私网
2461
+ * Disable Private Network Access of Kibana
2416
2462
  *
2417
2463
  * @param headers - map
2418
2464
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2437,7 +2483,7 @@ export default class Client extends OpenApi {
2437
2483
  }
2438
2484
 
2439
2485
  /**
2440
- * 关闭kibana私网
2486
+ * Disable Private Network Access of Kibana
2441
2487
  * @returns DisableKibanaPvlNetworkResponse
2442
2488
  */
2443
2489
  async disableKibanaPvlNetwork(InstanceId: string): Promise<$_model.DisableKibanaPvlNetworkResponse> {
@@ -2866,7 +2912,7 @@ export default class Client extends OpenApi {
2866
2912
  }
2867
2913
 
2868
2914
  /**
2869
- * 统计OpenStore实例的存储容量和使用情况
2915
+ * View the storage capacity and usage of the OpensStore instance.
2870
2916
  *
2871
2917
  * @param headers - map
2872
2918
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2891,7 +2937,7 @@ export default class Client extends OpenApi {
2891
2937
  }
2892
2938
 
2893
2939
  /**
2894
- * 统计OpenStore实例的存储容量和使用情况
2940
+ * View the storage capacity and usage of the OpensStore instance.
2895
2941
  * @returns GetOpenStoreUsageResponse
2896
2942
  */
2897
2943
  async getOpenStoreUsage(InstanceId: string): Promise<$_model.GetOpenStoreUsageResponse> {
@@ -2901,7 +2947,7 @@ export default class Client extends OpenApi {
2901
2947
  }
2902
2948
 
2903
2949
  /**
2904
- * The maximum number of nodes.
2950
+ * Queries the configuration information about the current region.
2905
2951
  *
2906
2952
  * @param request - GetRegionConfigurationRequest
2907
2953
  * @param headers - map
@@ -2934,7 +2980,7 @@ export default class Client extends OpenApi {
2934
2980
  }
2935
2981
 
2936
2982
  /**
2937
- * The maximum number of nodes.
2983
+ * Queries the configuration information about the current region.
2938
2984
  *
2939
2985
  * @param request - GetRegionConfigurationRequest
2940
2986
  * @returns GetRegionConfigurationResponse
@@ -2981,7 +3027,7 @@ export default class Client extends OpenApi {
2981
3027
  }
2982
3028
 
2983
3029
  /**
2984
- * ES集群可缩容节点
3030
+ * Call GetSuggestShrinkableNodes to specify the type and number of nodes to obtain the nodes that can be removed.
2985
3031
  *
2986
3032
  * @param request - GetSuggestShrinkableNodesRequest
2987
3033
  * @param headers - map
@@ -3022,7 +3068,7 @@ export default class Client extends OpenApi {
3022
3068
  }
3023
3069
 
3024
3070
  /**
3025
- * ES集群可缩容节点
3071
+ * Call GetSuggestShrinkableNodes to specify the type and number of nodes to obtain the nodes that can be removed.
3026
3072
  *
3027
3073
  * @param request - GetSuggestShrinkableNodesRequest
3028
3074
  * @returns GetSuggestShrinkableNodesResponse
@@ -3034,7 +3080,7 @@ export default class Client extends OpenApi {
3034
3080
  }
3035
3081
 
3036
3082
  /**
3037
- * 获取可数据迁移节点
3083
+ * Call GetTransferableNodes to specify the type and number of nodes to obtain the nodes that can be migrated.
3038
3084
  *
3039
3085
  * @param request - GetTransferableNodesRequest
3040
3086
  * @param headers - map
@@ -3071,7 +3117,7 @@ export default class Client extends OpenApi {
3071
3117
  }
3072
3118
 
3073
3119
  /**
3074
- * 获取可数据迁移节点
3120
+ * Call GetTransferableNodes to specify the type and number of nodes to obtain the nodes that can be migrated.
3075
3121
  *
3076
3122
  * @param request - GetTransferableNodesRequest
3077
3123
  * @returns GetTransferableNodesResponse
@@ -3082,6 +3128,51 @@ export default class Client extends OpenApi {
3082
3128
  return await this.getTransferableNodesWithOptions(InstanceId, request, headers, runtime);
3083
3129
  }
3084
3130
 
3131
+ /**
3132
+ * 灰度完成继续变更
3133
+ *
3134
+ * @param request - GrayPublishRequest
3135
+ * @param headers - map
3136
+ * @param runtime - runtime options for this request RuntimeOptions
3137
+ * @returns GrayPublishResponse
3138
+ */
3139
+ async grayPublishWithOptions(InstanceId: string, request: $_model.GrayPublishRequest, headers: {[key: string ]: string}, runtime: $dara.RuntimeOptions): Promise<$_model.GrayPublishResponse> {
3140
+ request.validate();
3141
+ let query : {[key: string ]: any} = { };
3142
+ if (!$dara.isNull(request.xRequestChangeId)) {
3143
+ query["X-Request-ChangeId"] = request.xRequestChangeId;
3144
+ }
3145
+
3146
+ let req = new $OpenApiUtil.OpenApiRequest({
3147
+ headers: headers,
3148
+ query: OpenApiUtil.query(query),
3149
+ });
3150
+ let params = new $OpenApiUtil.Params({
3151
+ action: "GrayPublish",
3152
+ version: "2017-06-13",
3153
+ protocol: "HTTPS",
3154
+ pathname: `/openapi/instances/${$dara.URL.percentEncode(InstanceId)}/actions/grayPublish`,
3155
+ method: "POST",
3156
+ authType: "AK",
3157
+ style: "ROA",
3158
+ reqBodyType: "json",
3159
+ bodyType: "json",
3160
+ });
3161
+ return $dara.cast<$_model.GrayPublishResponse>(await this.callApi(params, req, runtime), new $_model.GrayPublishResponse({}));
3162
+ }
3163
+
3164
+ /**
3165
+ * 灰度完成继续变更
3166
+ *
3167
+ * @param request - GrayPublishRequest
3168
+ * @returns GrayPublishResponse
3169
+ */
3170
+ async grayPublish(InstanceId: string, request: $_model.GrayPublishRequest): Promise<$_model.GrayPublishResponse> {
3171
+ let runtime = new $dara.RuntimeOptions({ });
3172
+ let headers : {[key: string ]: string} = { };
3173
+ return await this.grayPublishWithOptions(InstanceId, request, headers, runtime);
3174
+ }
3175
+
3085
3176
  /**
3086
3177
  * Creates a service-linked role.
3087
3178
  *
@@ -3233,7 +3324,7 @@ export default class Client extends OpenApi {
3233
3324
  }
3234
3325
 
3235
3326
  /**
3236
- * The returned data also contains **Headers** parameters, indicating that header information is returned.
3327
+ * Installs a plug-in.
3237
3328
  *
3238
3329
  * @remarks
3239
3330
  * ls-cn-oew1qbgl\\*\\*\\*\\*
@@ -3270,7 +3361,7 @@ export default class Client extends OpenApi {
3270
3361
  }
3271
3362
 
3272
3363
  /**
3273
- * The returned data also contains **Headers** parameters, indicating that header information is returned.
3364
+ * Installs a plug-in.
3274
3365
  *
3275
3366
  * @remarks
3276
3367
  * ls-cn-oew1qbgl\\*\\*\\*\\*
@@ -3377,6 +3468,8 @@ export default class Client extends OpenApi {
3377
3468
  }
3378
3469
 
3379
3470
  /**
3471
+ * 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.
3472
+ *
3380
3473
  * @param request - InterruptElasticsearchTaskRequest
3381
3474
  * @param headers - map
3382
3475
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3408,6 +3501,8 @@ export default class Client extends OpenApi {
3408
3501
  }
3409
3502
 
3410
3503
  /**
3504
+ * 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.
3505
+ *
3411
3506
  * @param request - InterruptElasticsearchTaskRequest
3412
3507
  * @returns InterruptElasticsearchTaskResponse
3413
3508
  */
@@ -3516,7 +3611,7 @@ export default class Client extends OpenApi {
3516
3611
  }
3517
3612
 
3518
3613
  /**
3519
- * Queries all namespaces in a specified Container Service for Kubernetes (ACK) cluster.
3614
+ * View all namespaces of the specified Container Service for Kubernetes (ACK) cluster.
3520
3615
  *
3521
3616
  * @remarks
3522
3617
  * > 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.
@@ -3556,7 +3651,7 @@ export default class Client extends OpenApi {
3556
3651
  }
3557
3652
 
3558
3653
  /**
3559
- * Queries all namespaces in a specified Container Service for Kubernetes (ACK) cluster.
3654
+ * View all namespaces of the specified Container Service for Kubernetes (ACK) cluster.
3560
3655
  *
3561
3656
  * @remarks
3562
3657
  * > 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.
@@ -3644,7 +3739,7 @@ export default class Client extends OpenApi {
3644
3739
  }
3645
3740
 
3646
3741
  /**
3647
- * es-cn-tl32cpgwa002l\\*\\*\\*\\*
3742
+ * Queries the information of all the nodes in an Elasticsearch cluster.
3648
3743
  *
3649
3744
  * @param request - ListAllNodeRequest
3650
3745
  * @param headers - map
@@ -3677,7 +3772,7 @@ export default class Client extends OpenApi {
3677
3772
  }
3678
3773
 
3679
3774
  /**
3680
- * es-cn-tl32cpgwa002l\\*\\*\\*\\*
3775
+ * Queries the information of all the nodes in an Elasticsearch cluster.
3681
3776
  *
3682
3777
  * @param request - ListAllNodeRequest
3683
3778
  * @returns ListAllNodeResponse
@@ -3689,7 +3784,7 @@ export default class Client extends OpenApi {
3689
3784
  }
3690
3785
 
3691
3786
  /**
3692
- * 实例可添加的OSS引用仓库
3787
+ * Call ListAlternativeSnapshotRepos to get the OSS reference warehouses that can be added to the current instance.
3693
3788
  *
3694
3789
  * @param request - ListAlternativeSnapshotReposRequest
3695
3790
  * @param headers - map
@@ -3722,7 +3817,7 @@ export default class Client extends OpenApi {
3722
3817
  }
3723
3818
 
3724
3819
  /**
3725
- * 实例可添加的OSS引用仓库
3820
+ * Call ListAlternativeSnapshotRepos to get the OSS reference warehouses that can be added to the current instance.
3726
3821
  *
3727
3822
  * @param request - ListAlternativeSnapshotReposRequest
3728
3823
  * @returns ListAlternativeSnapshotReposResponse
@@ -3769,7 +3864,7 @@ export default class Client extends OpenApi {
3769
3864
  }
3770
3865
 
3771
3866
  /**
3772
- * Queries shippers.
3867
+ * Queries a list of shippers.
3773
3868
  *
3774
3869
  * @param request - ListCollectorsRequest
3775
3870
  * @param headers - map
@@ -3822,7 +3917,7 @@ export default class Client extends OpenApi {
3822
3917
  }
3823
3918
 
3824
3919
  /**
3825
- * Queries shippers.
3920
+ * Queries a list of shippers.
3826
3921
  *
3827
3922
  * @param request - ListCollectorsRequest
3828
3923
  * @returns ListCollectorsResponse
@@ -3887,7 +3982,7 @@ export default class Client extends OpenApi {
3887
3982
  }
3888
3983
 
3889
3984
  /**
3890
- * 获取与当前实例进行网络互通的实例列表
3985
+ * Call ListConnectedClusters to query the instances that are interconnected with the current instance.
3891
3986
  *
3892
3987
  * @param headers - map
3893
3988
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3912,7 +4007,7 @@ export default class Client extends OpenApi {
3912
4007
  }
3913
4008
 
3914
4009
  /**
3915
- * 获取与当前实例进行网络互通的实例列表
4010
+ * Call ListConnectedClusters to query the instances that are interconnected with the current instance.
3916
4011
  * @returns ListConnectedClustersResponse
3917
4012
  */
3918
4013
  async listConnectedClusters(InstanceId: string): Promise<$_model.ListConnectedClustersResponse> {
@@ -3971,6 +4066,8 @@ export default class Client extends OpenApi {
3971
4066
  }
3972
4067
 
3973
4068
  /**
4069
+ * Call ListDataTasks to obtain the information of a data migration task.
4070
+ *
3974
4071
  * @param headers - map
3975
4072
  * @param runtime - runtime options for this request RuntimeOptions
3976
4073
  * @returns ListDataTasksResponse
@@ -3994,6 +4091,7 @@ export default class Client extends OpenApi {
3994
4091
  }
3995
4092
 
3996
4093
  /**
4094
+ * Call ListDataTasks to obtain the information of a data migration task.
3997
4095
  * @returns ListDataTasksResponse
3998
4096
  */
3999
4097
  async listDataTasks(InstanceId: string): Promise<$_model.ListDataTasksResponse> {
@@ -4154,7 +4252,7 @@ export default class Client extends OpenApi {
4154
4252
  }
4155
4253
 
4156
4254
  /**
4157
- * 获取集群诊断报告列表
4255
+ * Queries the historical intelligent O\\&M reports of an Elasticsearch cluster.
4158
4256
  *
4159
4257
  * @param request - ListDiagnoseReportRequest
4160
4258
  * @param headers - map
@@ -4211,7 +4309,7 @@ export default class Client extends OpenApi {
4211
4309
  }
4212
4310
 
4213
4311
  /**
4214
- * 获取集群诊断报告列表
4312
+ * Queries the historical intelligent O\\&M reports of an Elasticsearch cluster.
4215
4313
  *
4216
4314
  * @param request - ListDiagnoseReportRequest
4217
4315
  * @returns ListDiagnoseReportResponse
@@ -4223,7 +4321,7 @@ export default class Client extends OpenApi {
4223
4321
  }
4224
4322
 
4225
4323
  /**
4226
- * Queries the IDs of the historical intelligent O&M reports of an Elasticsearch cluster.
4324
+ * Queries the IDs of the historical intelligent O\\\\\\&M reports of an Elasticsearch cluster.
4227
4325
  *
4228
4326
  * @param request - ListDiagnoseReportIdsRequest
4229
4327
  * @param headers - map
@@ -4276,7 +4374,7 @@ export default class Client extends OpenApi {
4276
4374
  }
4277
4375
 
4278
4376
  /**
4279
- * Queries the IDs of the historical intelligent O&M reports of an Elasticsearch cluster.
4377
+ * Queries the IDs of the historical intelligent O\\\\\\&M reports of an Elasticsearch cluster.
4280
4378
  *
4281
4379
  * @param request - ListDiagnoseReportIdsRequest
4282
4380
  * @returns ListDiagnoseReportIdsResponse
@@ -4288,7 +4386,7 @@ export default class Client extends OpenApi {
4288
4386
  }
4289
4387
 
4290
4388
  /**
4291
- * 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.
4389
+ * Queries the intelligent diagnostic items of an Elasticsearch cluster.
4292
4390
  *
4293
4391
  * @param request - ListDiagnosisItemsRequest
4294
4392
  * @param headers - map
@@ -4321,7 +4419,7 @@ export default class Client extends OpenApi {
4321
4419
  }
4322
4420
 
4323
4421
  /**
4324
- * 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.
4422
+ * Queries the intelligent diagnostic items of an Elasticsearch cluster.
4325
4423
  *
4326
4424
  * @param request - ListDiagnosisItemsRequest
4327
4425
  * @returns ListDiagnosisItemsResponse
@@ -4333,6 +4431,8 @@ export default class Client extends OpenApi {
4333
4431
  }
4334
4432
 
4335
4433
  /**
4434
+ * Queries information about a dictionary.
4435
+ *
4336
4436
  * @param request - ListDictInformationRequest
4337
4437
  * @param headers - map
4338
4438
  * @param runtime - runtime options for this request RuntimeOptions
@@ -4372,6 +4472,8 @@ export default class Client extends OpenApi {
4372
4472
  }
4373
4473
 
4374
4474
  /**
4475
+ * Queries information about a dictionary.
4476
+ *
4375
4477
  * @param request - ListDictInformationRequest
4376
4478
  * @returns ListDictInformationResponse
4377
4479
  */
@@ -4431,7 +4533,7 @@ export default class Client extends OpenApi {
4431
4533
  }
4432
4534
 
4433
4535
  /**
4434
- * 查询ecs实例
4536
+ * When you create a Beats collector, call the ListEcsInstances to obtain the list of ECS instances.
4435
4537
  *
4436
4538
  * @remarks
4437
4539
  * *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).
@@ -4487,7 +4589,7 @@ export default class Client extends OpenApi {
4487
4589
  }
4488
4590
 
4489
4591
  /**
4490
- * 查询ecs实例
4592
+ * When you create a Beats collector, call the ListEcsInstances to obtain the list of ECS instances.
4491
4593
  *
4492
4594
  * @remarks
4493
4595
  * *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).
@@ -4502,7 +4604,7 @@ export default class Client extends OpenApi {
4502
4604
  }
4503
4605
 
4504
4606
  /**
4505
- * Queries the driver files of a Logstash cluster.
4607
+ * Queries the extended file configuration of a Logstash instance.
4506
4608
  *
4507
4609
  * @param headers - map
4508
4610
  * @param runtime - runtime options for this request RuntimeOptions
@@ -4527,7 +4629,7 @@ export default class Client extends OpenApi {
4527
4629
  }
4528
4630
 
4529
4631
  /**
4530
- * Queries the driver files of a Logstash cluster.
4632
+ * Queries the extended file configuration of a Logstash instance.
4531
4633
  * @returns ListExtendfilesResponse
4532
4634
  */
4533
4635
  async listExtendfiles(InstanceId: string): Promise<$_model.ListExtendfilesResponse> {
@@ -4627,7 +4729,7 @@ export default class Client extends OpenApi {
4627
4729
  }
4628
4730
 
4629
4731
  /**
4630
- * 查询Elasticsearch实例列表
4732
+ * Queries a list of Elasticsearch clusters.
4631
4733
  *
4632
4734
  * @param request - ListInstanceRequest
4633
4735
  * @param headers - map
@@ -4704,7 +4806,7 @@ export default class Client extends OpenApi {
4704
4806
  }
4705
4807
 
4706
4808
  /**
4707
- * 查询Elasticsearch实例列表
4809
+ * Queries a list of Elasticsearch clusters.
4708
4810
  *
4709
4811
  * @param request - ListInstanceRequest
4710
4812
  * @returns ListInstanceResponse
@@ -4824,7 +4926,7 @@ export default class Client extends OpenApi {
4824
4926
  }
4825
4927
 
4826
4928
  /**
4827
- * 获取当前实例先特定的索引列表
4929
+ * Queries the indexes stored on an Elasticsearch cluster.
4828
4930
  *
4829
4931
  * @param request - ListInstanceIndicesRequest
4830
4932
  * @param headers - map
@@ -4877,7 +4979,7 @@ export default class Client extends OpenApi {
4877
4979
  }
4878
4980
 
4879
4981
  /**
4880
- * 获取当前实例先特定的索引列表
4982
+ * Queries the indexes stored on an Elasticsearch cluster.
4881
4983
  *
4882
4984
  * @param request - ListInstanceIndicesRequest
4883
4985
  * @returns ListInstanceIndicesResponse
@@ -4973,7 +5075,7 @@ export default class Client extends OpenApi {
4973
5075
  }
4974
5076
 
4975
5077
  /**
4976
- * Logstash集群列表
5078
+ * Queries the information about a Logstash cluster or all Logstash clusters.
4977
5079
  *
4978
5080
  * @param request - ListLogstashRequest
4979
5081
  * @param headers - map
@@ -5030,7 +5132,7 @@ export default class Client extends OpenApi {
5030
5132
  }
5031
5133
 
5032
5134
  /**
5033
- * Logstash集群列表
5135
+ * Queries the information about a Logstash cluster or all Logstash clusters.
5034
5136
  *
5035
5137
  * @param request - ListLogstashRequest
5036
5138
  * @returns ListLogstashResponse
@@ -5042,7 +5144,7 @@ export default class Client extends OpenApi {
5042
5144
  }
5043
5145
 
5044
5146
  /**
5045
- * 获取Logstash日志
5147
+ * Queries the logs of a Logstash cluster.
5046
5148
  *
5047
5149
  * @param request - ListLogstashLogRequest
5048
5150
  * @param headers - map
@@ -5095,7 +5197,7 @@ export default class Client extends OpenApi {
5095
5197
  }
5096
5198
 
5097
5199
  /**
5098
- * 获取Logstash日志
5200
+ * Queries the logs of a Logstash cluster.
5099
5201
  *
5100
5202
  * @param request - ListLogstashLogRequest
5101
5203
  * @returns ListLogstashLogResponse
@@ -5107,7 +5209,7 @@ export default class Client extends OpenApi {
5107
5209
  }
5108
5210
 
5109
5211
  /**
5110
- * Logstash插件列表
5212
+ * Queries the information about a plug-in or all plug-ins.
5111
5213
  *
5112
5214
  * @param request - ListLogstashPluginsRequest
5113
5215
  * @param headers - map
@@ -5152,7 +5254,7 @@ export default class Client extends OpenApi {
5152
5254
  }
5153
5255
 
5154
5256
  /**
5155
- * Logstash插件列表
5257
+ * Queries the information about a plug-in or all plug-ins.
5156
5258
  *
5157
5259
  * @param request - ListLogstashPluginsRequest
5158
5260
  * @returns ListLogstashPluginsResponse
@@ -5164,7 +5266,7 @@ export default class Client extends OpenApi {
5164
5266
  }
5165
5267
 
5166
5268
  /**
5167
- * Queries the statuses of Elastic Compute Service (ECS) instances on which a shipper is installed.
5269
+ * The list of historical reports of Intelligent Maintenance.
5168
5270
  *
5169
5271
  * @param request - ListNodesRequest
5170
5272
  * @param headers - map
@@ -5213,7 +5315,7 @@ export default class Client extends OpenApi {
5213
5315
  }
5214
5316
 
5215
5317
  /**
5216
- * Queries the statuses of Elastic Compute Service (ECS) instances on which a shipper is installed.
5318
+ * The list of historical reports of Intelligent Maintenance.
5217
5319
  *
5218
5320
  * @param request - ListNodesRequest
5219
5321
  * @returns ListNodesResponse
@@ -5225,7 +5327,7 @@ export default class Client extends OpenApi {
5225
5327
  }
5226
5328
 
5227
5329
  /**
5228
- * ListPipeline
5330
+ * Queries a list of pipelines.
5229
5331
  *
5230
5332
  * @param request - ListPipelineRequest
5231
5333
  * @param headers - map
@@ -5266,7 +5368,7 @@ export default class Client extends OpenApi {
5266
5368
  }
5267
5369
 
5268
5370
  /**
5269
- * ListPipeline
5371
+ * Queries a list of pipelines.
5270
5372
  *
5271
5373
  * @param request - ListPipelineRequest
5272
5374
  * @returns ListPipelineResponse
@@ -5278,7 +5380,7 @@ export default class Client extends OpenApi {
5278
5380
  }
5279
5381
 
5280
5382
  /**
5281
- * The error message returned.
5383
+ * Queries the IDs of pipelines for a Logstash cluster.
5282
5384
  *
5283
5385
  * @param request - ListPipelineIdsRequest
5284
5386
  * @param headers - map
@@ -5306,7 +5408,7 @@ export default class Client extends OpenApi {
5306
5408
  }
5307
5409
 
5308
5410
  /**
5309
- * The error message returned.
5411
+ * Queries the IDs of pipelines for a Logstash cluster.
5310
5412
  *
5311
5413
  * @param request - ListPipelineIdsRequest
5312
5414
  * @returns ListPipelineIdsResponse
@@ -5318,7 +5420,7 @@ export default class Client extends OpenApi {
5318
5420
  }
5319
5421
 
5320
5422
  /**
5321
- * ES系统插件列表
5423
+ * Queries the plug-ins that are installed on a specified Elasticsearch cluster.
5322
5424
  *
5323
5425
  * @param request - ListPluginsRequest
5324
5426
  * @param headers - map
@@ -5363,7 +5465,7 @@ export default class Client extends OpenApi {
5363
5465
  }
5364
5466
 
5365
5467
  /**
5366
- * ES系统插件列表
5468
+ * Queries the plug-ins that are installed on a specified Elasticsearch cluster.
5367
5469
  *
5368
5470
  * @param request - ListPluginsRequest
5369
5471
  * @returns ListPluginsResponse
@@ -5375,7 +5477,7 @@ export default class Client extends OpenApi {
5375
5477
  }
5376
5478
 
5377
5479
  /**
5378
- * 查看Elasticsearch集群各种类型的日志
5480
+ * Queries the logs of an Elasticsearch cluster.
5379
5481
  *
5380
5482
  * @param request - ListSearchLogRequest
5381
5483
  * @param headers - map
@@ -5428,7 +5530,7 @@ export default class Client extends OpenApi {
5428
5530
  }
5429
5531
 
5430
5532
  /**
5431
- * 查看Elasticsearch集群各种类型的日志
5533
+ * Queries the logs of an Elasticsearch cluster.
5432
5534
  *
5433
5535
  * @param request - ListSearchLogRequest
5434
5536
  * @returns ListSearchLogResponse
@@ -5491,7 +5593,7 @@ export default class Client extends OpenApi {
5491
5593
  }
5492
5594
 
5493
5595
  /**
5494
- * 获取跨集群索引仓库列表
5596
+ * Call the ListSnapshotReposByInstanceId to get the cross-cluster OSS repositories of the current instance.
5495
5597
  *
5496
5598
  * @param headers - map
5497
5599
  * @param runtime - runtime options for this request RuntimeOptions
@@ -5516,7 +5618,7 @@ export default class Client extends OpenApi {
5516
5618
  }
5517
5619
 
5518
5620
  /**
5519
- * 获取跨集群索引仓库列表
5621
+ * Call the ListSnapshotReposByInstanceId to get the cross-cluster OSS repositories of the current instance.
5520
5622
  * @returns ListSnapshotReposByInstanceIdResponse
5521
5623
  */
5522
5624
  async listSnapshotReposByInstanceId(InstanceId: string): Promise<$_model.ListSnapshotReposByInstanceIdResponse> {
@@ -5526,7 +5628,7 @@ export default class Client extends OpenApi {
5526
5628
  }
5527
5629
 
5528
5630
  /**
5529
- * 查看资源和标签关系
5631
+ * Queries the tags that are added to one or more resources.
5530
5632
  *
5531
5633
  * @param request - ListTagResourcesRequest
5532
5634
  * @param headers - map
@@ -5579,7 +5681,7 @@ export default class Client extends OpenApi {
5579
5681
  }
5580
5682
 
5581
5683
  /**
5582
- * 查看资源和标签关系
5684
+ * Queries the tags that are added to one or more resources.
5583
5685
  *
5584
5686
  * @param request - ListTagResourcesRequest
5585
5687
  * @returns ListTagResourcesResponse
@@ -5591,7 +5693,7 @@ export default class Client extends OpenApi {
5591
5693
  }
5592
5694
 
5593
5695
  /**
5594
- * 查看所有已常见的标签
5696
+ * All tags created by the user in the current region.
5595
5697
  *
5596
5698
  * @param request - ListTagsRequest
5597
5699
  * @param headers - map
@@ -5628,7 +5730,7 @@ export default class Client extends OpenApi {
5628
5730
  }
5629
5731
 
5630
5732
  /**
5631
- * 查看所有已常见的标签
5733
+ * All tags created by the user in the current region.
5632
5734
  *
5633
5735
  * @param request - ListTagsRequest
5634
5736
  * @returns ListTagsResponse
@@ -5831,21 +5933,7 @@ export default class Client extends OpenApi {
5831
5933
  }
5832
5934
 
5833
5935
  /**
5834
- * ## RequestBody
5835
- * You must also specify the following parameters in the RequestBody parameter to specify the maintenance window information.
5836
- * | Parameter | Type | Required | Example | Description |
5837
- * | --------- | ---- | -------- | ------- | ----------- |
5838
- * | 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. |
5839
- * | 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. |
5840
- * | openMaintainTime | boolean | Yes | true | Specifies whether to enable the maintenance window feature. Only **true** is supported, indicating that the feature is enabled. |
5841
- * Examples:
5842
- * ```
5843
- * {
5844
- * "openMaintainTime": true,
5845
- * "maintainStartTime": "03:00Z",
5846
- * "maintainEndTime": "04:00Z"
5847
- * }
5848
- * ```
5936
+ * Enables and modifies the maintenance window of an Elasticsearch cluster.
5849
5937
  *
5850
5938
  * @remarks
5851
5939
  * es-cn-n6w1o1x0w001c\\*\\*\\*\\*
@@ -5882,21 +5970,7 @@ export default class Client extends OpenApi {
5882
5970
  }
5883
5971
 
5884
5972
  /**
5885
- * ## RequestBody
5886
- * You must also specify the following parameters in the RequestBody parameter to specify the maintenance window information.
5887
- * | Parameter | Type | Required | Example | Description |
5888
- * | --------- | ---- | -------- | ------- | ----------- |
5889
- * | 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. |
5890
- * | 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. |
5891
- * | openMaintainTime | boolean | Yes | true | Specifies whether to enable the maintenance window feature. Only **true** is supported, indicating that the feature is enabled. |
5892
- * Examples:
5893
- * ```
5894
- * {
5895
- * "openMaintainTime": true,
5896
- * "maintainStartTime": "03:00Z",
5897
- * "maintainEndTime": "04:00Z"
5898
- * }
5899
- * ```
5973
+ * Enables and modifies the maintenance window of an Elasticsearch cluster.
5900
5974
  *
5901
5975
  * @remarks
5902
5976
  * es-cn-n6w1o1x0w001c\\*\\*\\*\\*
@@ -5911,10 +5985,7 @@ export default class Client extends OpenApi {
5911
5985
  }
5912
5986
 
5913
5987
  /**
5914
- * > 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.
5915
- * * 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.
5916
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
5917
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
5988
+ * Updates an IP address whitelist of an Elasticsearch cluster.
5918
5989
  *
5919
5990
  * @remarks
5920
5991
  * The ID of the cluster.
@@ -5972,10 +6043,7 @@ export default class Client extends OpenApi {
5972
6043
  }
5973
6044
 
5974
6045
  /**
5975
- * > 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.
5976
- * * 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.
5977
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
5978
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
6046
+ * Updates an IP address whitelist of an Elasticsearch cluster.
5979
6047
  *
5980
6048
  * @remarks
5981
6049
  * The ID of the cluster.
@@ -6036,6 +6104,8 @@ export default class Client extends OpenApi {
6036
6104
  }
6037
6105
 
6038
6106
  /**
6107
+ * Enables the intelligent O\\\\\\&M feature for an instance.
6108
+ *
6039
6109
  * @param request - OpenDiagnosisRequest
6040
6110
  * @param headers - map
6041
6111
  * @param runtime - runtime options for this request RuntimeOptions
@@ -6071,6 +6141,8 @@ export default class Client extends OpenApi {
6071
6141
  }
6072
6142
 
6073
6143
  /**
6144
+ * Enables the intelligent O\\\\\\&M feature for an instance.
6145
+ *
6074
6146
  * @param request - OpenDiagnosisRequest
6075
6147
  * @returns OpenDiagnosisResponse
6076
6148
  */
@@ -6081,6 +6153,8 @@ export default class Client extends OpenApi {
6081
6153
  }
6082
6154
 
6083
6155
  /**
6156
+ * Call OpenHttps to enable the HTTPS protocol. Make sure that you have purchased a client node before enabling this feature.
6157
+ *
6084
6158
  * @remarks
6085
6159
  * > To ensure data security, we recommend that you enable HTTPS.
6086
6160
  *
@@ -6115,6 +6189,8 @@ export default class Client extends OpenApi {
6115
6189
  }
6116
6190
 
6117
6191
  /**
6192
+ * Call OpenHttps to enable the HTTPS protocol. Make sure that you have purchased a client node before enabling this feature.
6193
+ *
6118
6194
  * @remarks
6119
6195
  * > To ensure data security, we recommend that you enable HTTPS.
6120
6196
  *
@@ -6453,7 +6529,7 @@ export default class Client extends OpenApi {
6453
6529
  }
6454
6530
 
6455
6531
  /**
6456
- * 重启Logstash集群
6532
+ * Restarts a specified Logstash cluster. After the cluster is restarted, it is in the activating state.
6457
6533
  *
6458
6534
  * @param request - RestartLogstashRequest
6459
6535
  * @param headers - map
@@ -6512,7 +6588,7 @@ export default class Client extends OpenApi {
6512
6588
  }
6513
6589
 
6514
6590
  /**
6515
- * 重启Logstash集群
6591
+ * Restarts a specified Logstash cluster. After the cluster is restarted, it is in the activating state.
6516
6592
  *
6517
6593
  * @param request - RestartLogstashRequest
6518
6594
  * @returns RestartLogstashResponse
@@ -6524,6 +6600,8 @@ export default class Client extends OpenApi {
6524
6600
  }
6525
6601
 
6526
6602
  /**
6603
+ * Call ResumeElasticsearchTask to resume interrupted change of Elasticsearch instance. After you resume or interrupt a change, the instance enters the activating state.
6604
+ *
6527
6605
  * @param request - ResumeElasticsearchTaskRequest
6528
6606
  * @param headers - map
6529
6607
  * @param runtime - runtime options for this request RuntimeOptions
@@ -6555,6 +6633,8 @@ export default class Client extends OpenApi {
6555
6633
  }
6556
6634
 
6557
6635
  /**
6636
+ * Call ResumeElasticsearchTask to resume interrupted change of Elasticsearch instance. After you resume or interrupt a change, the instance enters the activating state.
6637
+ *
6558
6638
  * @param request - ResumeElasticsearchTaskRequest
6559
6639
  * @returns ResumeElasticsearchTaskResponse
6560
6640
  */
@@ -6701,7 +6781,7 @@ export default class Client extends OpenApi {
6701
6781
  }
6702
6782
 
6703
6783
  /**
6704
- * ES集群缩节点
6784
+ * Removes nodes from an Elasticsearch cluster.
6705
6785
  *
6706
6786
  * @param request - ShrinkNodeRequest
6707
6787
  * @param headers - map
@@ -6747,7 +6827,7 @@ export default class Client extends OpenApi {
6747
6827
  }
6748
6828
 
6749
6829
  /**
6750
- * ES集群缩节点
6830
+ * Removes nodes from an Elasticsearch cluster.
6751
6831
  *
6752
6832
  * @param request - ShrinkNodeRequest
6753
6833
  * @returns ShrinkNodeResponse
@@ -6895,7 +6975,7 @@ export default class Client extends OpenApi {
6895
6975
  }
6896
6976
 
6897
6977
  /**
6898
- * The information about the clusters and tags.
6978
+ * Adds tags to clusters.
6899
6979
  *
6900
6980
  * @param request - TagResourcesRequest
6901
6981
  * @param headers - map
@@ -6936,7 +7016,7 @@ export default class Client extends OpenApi {
6936
7016
  }
6937
7017
 
6938
7018
  /**
6939
- * The information about the clusters and tags.
7019
+ * Adds tags to clusters.
6940
7020
  *
6941
7021
  * @param request - TagResourcesRequest
6942
7022
  * @returns TagResourcesResponse
@@ -6948,7 +7028,7 @@ export default class Client extends OpenApi {
6948
7028
  }
6949
7029
 
6950
7030
  /**
6951
- * 缩节点,数据迁移
7031
+ * Runs a data migration task for node scaling operations.
6952
7032
  *
6953
7033
  * @param request - TransferNodeRequest
6954
7034
  * @param headers - map
@@ -6986,7 +7066,7 @@ export default class Client extends OpenApi {
6986
7066
  }
6987
7067
 
6988
7068
  /**
6989
- * 缩节点,数据迁移
7069
+ * Runs a data migration task for node scaling operations.
6990
7070
  *
6991
7071
  * @param request - TransferNodeRequest
6992
7072
  * @returns TransferNodeResponse
@@ -6998,7 +7078,7 @@ export default class Client extends OpenApi {
6998
7078
  }
6999
7079
 
7000
7080
  /**
7001
- * 开关ES集群及Kibana节点公私网访问
7081
+ * You can call this operation to enable or disable public or private network access for a Elasticsearch or Kibana cluster.
7002
7082
  *
7003
7083
  * @param request - TriggerNetworkRequest
7004
7084
  * @param headers - map
@@ -7045,7 +7125,7 @@ export default class Client extends OpenApi {
7045
7125
  }
7046
7126
 
7047
7127
  /**
7048
- * 开关ES集群及Kibana节点公私网访问
7128
+ * You can call this operation to enable or disable public or private network access for a Elasticsearch or Kibana cluster.
7049
7129
  *
7050
7130
  * @param request - TriggerNetworkRequest
7051
7131
  * @returns TriggerNetworkResponse
@@ -7057,7 +7137,7 @@ export default class Client extends OpenApi {
7057
7137
  }
7058
7138
 
7059
7139
  /**
7060
- * 可用区关机
7140
+ * Multi-zone Instance: Shutting down an existing availability zone is only for disaster recovery drills. Proceed with caution!
7061
7141
  *
7062
7142
  * @param request - TurnOffZoneRequest
7063
7143
  * @param headers - map
@@ -7090,7 +7170,7 @@ export default class Client extends OpenApi {
7090
7170
  }
7091
7171
 
7092
7172
  /**
7093
- * 可用区关机
7173
+ * Multi-zone Instance: Shutting down an existing availability zone is only for disaster recovery drills. Proceed with caution!
7094
7174
  *
7095
7175
  * @param request - TurnOffZoneRequest
7096
7176
  * @returns TurnOffZoneResponse
@@ -7102,7 +7182,7 @@ export default class Client extends OpenApi {
7102
7182
  }
7103
7183
 
7104
7184
  /**
7105
- * 可用区开机
7185
+ * Multi-zone Instance, reopening a zone that has been taken offline is only for disaster recovery drills. Please proceed with caution!
7106
7186
  *
7107
7187
  * @param request - TurnOnZoneRequest
7108
7188
  * @param headers - map
@@ -7135,7 +7215,7 @@ export default class Client extends OpenApi {
7135
7215
  }
7136
7216
 
7137
7217
  /**
7138
- * 可用区开机
7218
+ * Multi-zone Instance, reopening a zone that has been taken offline is only for disaster recovery drills. Please proceed with caution!
7139
7219
  *
7140
7220
  * @param request - TurnOnZoneRequest
7141
7221
  * @returns TurnOnZoneResponse
@@ -7193,7 +7273,7 @@ export default class Client extends OpenApi {
7193
7273
  }
7194
7274
 
7195
7275
  /**
7196
- * 卸载Logstash实例已安装的插件
7276
+ * Removes one or more Logstash plug-ins.
7197
7277
  *
7198
7278
  * @param request - UninstallLogstashPluginRequest
7199
7279
  * @param headers - map
@@ -7227,7 +7307,7 @@ export default class Client extends OpenApi {
7227
7307
  }
7228
7308
 
7229
7309
  /**
7230
- * 卸载Logstash实例已安装的插件
7310
+ * Removes one or more Logstash plug-ins.
7231
7311
  *
7232
7312
  * @param request - UninstallLogstashPluginRequest
7233
7313
  * @returns UninstallLogstashPluginResponse
@@ -7289,7 +7369,7 @@ export default class Client extends OpenApi {
7289
7369
  }
7290
7370
 
7291
7371
  /**
7292
- * 删除ES集群实例的用户可见标签
7372
+ * Deletes a user resource tag relationship.
7293
7373
  *
7294
7374
  * @remarks
7295
7375
  * When you call this operation, take note of the following items:
@@ -7344,7 +7424,7 @@ export default class Client extends OpenApi {
7344
7424
  }
7345
7425
 
7346
7426
  /**
7347
- * 删除ES集群实例的用户可见标签
7427
+ * Deletes a user resource tag relationship.
7348
7428
  *
7349
7429
  * @remarks
7350
7430
  * When you call this operation, take note of the following items:
@@ -7362,7 +7442,7 @@ export default class Client extends OpenApi {
7362
7442
  }
7363
7443
 
7364
7444
  /**
7365
- * 修改ES集群密码
7445
+ * You can call this operation to UpdateAdminPassword the password of the elastic account of the specified Elasticsearch instance.
7366
7446
  *
7367
7447
  * @remarks
7368
7448
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -7404,7 +7484,7 @@ export default class Client extends OpenApi {
7404
7484
  }
7405
7485
 
7406
7486
  /**
7407
- * 修改ES集群密码
7487
+ * You can call this operation to UpdateAdminPassword the password of the elastic account of the specified Elasticsearch instance.
7408
7488
  *
7409
7489
  * @remarks
7410
7490
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -7714,7 +7794,7 @@ export default class Client extends OpenApi {
7714
7794
  }
7715
7795
 
7716
7796
  /**
7717
- * 修改elasticsearch实例名称名称
7797
+ * Changes the name of a specified Elasticsearch cluster.
7718
7798
  *
7719
7799
  * @param request - UpdateDescriptionRequest
7720
7800
  * @param headers - map
@@ -7753,7 +7833,7 @@ export default class Client extends OpenApi {
7753
7833
  }
7754
7834
 
7755
7835
  /**
7756
- * 修改elasticsearch实例名称名称
7836
+ * Changes the name of a specified Elasticsearch cluster.
7757
7837
  *
7758
7838
  * @param request - UpdateDescriptionRequest
7759
7839
  * @returns UpdateDescriptionResponse
@@ -7765,7 +7845,7 @@ export default class Client extends OpenApi {
7765
7845
  }
7766
7846
 
7767
7847
  /**
7768
- * Call UpdateDiagnosisSettings to update the instance of intelligent operation&maintenance (O&M) scene settings.
7848
+ * Call UpdateDiagnosisSettings to update the instance of intelligent operation\\&maintenance (O\\&M) scene settings.
7769
7849
  *
7770
7850
  * @param request - UpdateDiagnosisSettingsRequest
7771
7851
  * @param headers - map
@@ -7803,7 +7883,7 @@ export default class Client extends OpenApi {
7803
7883
  }
7804
7884
 
7805
7885
  /**
7806
- * Call UpdateDiagnosisSettings to update the instance of intelligent operation&maintenance (O&M) scene settings.
7886
+ * Call UpdateDiagnosisSettings to update the instance of intelligent operation\\&maintenance (O\\&M) scene settings.
7807
7887
  *
7808
7888
  * @param request - UpdateDiagnosisSettingsRequest
7809
7889
  * @returns UpdateDiagnosisSettingsResponse
@@ -8019,7 +8099,7 @@ export default class Client extends OpenApi {
8019
8099
  }
8020
8100
 
8021
8101
  /**
8022
- * Performs a rolling update for the IK dictionaries of an Elasticsearch cluster.
8102
+ * null
8023
8103
  *
8024
8104
  * @remarks
8025
8105
  * Before you call this operation, take note of the following items:
@@ -8058,7 +8138,7 @@ export default class Client extends OpenApi {
8058
8138
  }
8059
8139
 
8060
8140
  /**
8061
- * Performs a rolling update for the IK dictionaries of an Elasticsearch cluster.
8141
+ * null
8062
8142
  *
8063
8143
  * @remarks
8064
8144
  * Before you call this operation, take note of the following items:
@@ -8167,7 +8247,7 @@ export default class Client extends OpenApi {
8167
8247
  }
8168
8248
 
8169
8249
  /**
8170
- * 修改ES集群节点配置
8250
+ * Updates the configurations of a cluster, such as the number of nodes, the number of roles, specifications, and disk configurations.
8171
8251
  *
8172
8252
  * @remarks
8173
8253
  * es-cn-n6w1ptcb30009\\*\\*\\*\\*
@@ -8249,7 +8329,7 @@ export default class Client extends OpenApi {
8249
8329
  }
8250
8330
 
8251
8331
  /**
8252
- * 修改ES集群节点配置
8332
+ * Updates the configurations of a cluster, such as the number of nodes, the number of roles, specifications, and disk configurations.
8253
8333
  *
8254
8334
  * @remarks
8255
8335
  * es-cn-n6w1ptcb30009\\*\\*\\*\\*
@@ -8264,7 +8344,7 @@ export default class Client extends OpenApi {
8264
8344
  }
8265
8345
 
8266
8346
  /**
8267
- * Call UpdateInstanceChargeType to change the billing method of a pay-as-you-go instance to subscription.
8347
+ * null
8268
8348
  *
8269
8349
  * @param request - UpdateInstanceChargeTypeRequest
8270
8350
  * @param headers - map
@@ -8307,7 +8387,7 @@ export default class Client extends OpenApi {
8307
8387
  }
8308
8388
 
8309
8389
  /**
8310
- * Call UpdateInstanceChargeType to change the billing method of a pay-as-you-go instance to subscription.
8390
+ * null
8311
8391
  *
8312
8392
  * @param request - UpdateInstanceChargeTypeRequest
8313
8393
  * @returns UpdateInstanceChargeTypeResponse
@@ -8564,7 +8644,7 @@ export default class Client extends OpenApi {
8564
8644
  }
8565
8645
 
8566
8646
  /**
8567
- * 修改Logstash节点规格磁盘配置
8647
+ * Modifies the configuration of a specified Logstash cluster, such as the name, quota, disk size, and number of nodes.
8568
8648
  *
8569
8649
  * @param request - UpdateLogstashRequest
8570
8650
  * @param headers - map
@@ -8607,7 +8687,7 @@ export default class Client extends OpenApi {
8607
8687
  }
8608
8688
 
8609
8689
  /**
8610
- * 修改Logstash节点规格磁盘配置
8690
+ * Modifies the configuration of a specified Logstash cluster, such as the name, quota, disk size, and number of nodes.
8611
8691
  *
8612
8692
  * @param request - UpdateLogstashRequest
8613
8693
  * @returns UpdateLogstashResponse
@@ -8722,7 +8802,7 @@ export default class Client extends OpenApi {
8722
8802
  }
8723
8803
 
8724
8804
  /**
8725
- * Updates the configuration of a specified Logstash cluster.
8805
+ * Updates the configuration of the specified Logstash instance.
8726
8806
  *
8727
8807
  * @remarks
8728
8808
  * When you call this operation, take note of the following items:
@@ -8760,7 +8840,7 @@ export default class Client extends OpenApi {
8760
8840
  }
8761
8841
 
8762
8842
  /**
8763
- * Updates the configuration of a specified Logstash cluster.
8843
+ * Updates the configuration of the specified Logstash instance.
8764
8844
  *
8765
8845
  * @remarks
8766
8846
  * When you call this operation, take note of the following items:
@@ -8776,7 +8856,7 @@ export default class Client extends OpenApi {
8776
8856
  }
8777
8857
 
8778
8858
  /**
8779
- * 修改Logstash管道配置
8859
+ * Modifies the pipeline management method of the specified Logstash cluster.
8780
8860
  *
8781
8861
  * @param request - UpdatePipelineManagementConfigRequest
8782
8862
  * @param headers - map
@@ -8835,7 +8915,7 @@ export default class Client extends OpenApi {
8835
8915
  }
8836
8916
 
8837
8917
  /**
8838
- * 修改Logstash管道配置
8918
+ * Modifies the pipeline management method of the specified Logstash cluster.
8839
8919
  *
8840
8920
  * @param request - UpdatePipelineManagementConfigRequest
8841
8921
  * @returns UpdatePipelineManagementConfigResponse
@@ -8897,18 +8977,7 @@ export default class Client extends OpenApi {
8897
8977
  }
8898
8978
 
8899
8979
  /**
8900
- * ## RequestBody
8901
- * | Property | Type | Required | Example | Description |
8902
- * | -------- | ---- | -------- | ------- | ----------- |
8903
- * | 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.
8904
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
8905
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
8906
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
8907
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
8908
- * | └ 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. |
8909
- * > **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.
8910
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
8911
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
8980
+ * You can call this operation to update the VPC private network access whitelist of a specified Elasticsearch instance UpdatePrivateNetworkWhiteIps.
8912
8981
  *
8913
8982
  * @remarks
8914
8983
  * > 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.
@@ -8949,18 +9018,7 @@ export default class Client extends OpenApi {
8949
9018
  }
8950
9019
 
8951
9020
  /**
8952
- * ## RequestBody
8953
- * | Property | Type | Required | Example | Description |
8954
- * | -------- | ---- | -------- | ------- | ----------- |
8955
- * | 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.
8956
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
8957
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
8958
- * You cannot configure both privateNetworkIpWhiteList and whiteIpGroup. |
8959
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
8960
- * | └ 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. |
8961
- * > **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.
8962
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
8963
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
9021
+ * You can call this operation to update the VPC private network access whitelist of a specified Elasticsearch instance UpdatePrivateNetworkWhiteIps.
8964
9022
  *
8965
9023
  * @remarks
8966
9024
  * > 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.
@@ -8975,7 +9033,7 @@ export default class Client extends OpenApi {
8975
9033
  }
8976
9034
 
8977
9035
  /**
8978
- * Call UpdatePublicNetwork to open or close the public network address of the specified elasticsearch instance.
9036
+ * null
8979
9037
  *
8980
9038
  * @remarks
8981
9039
  * When you call this operation, take note of the following items:
@@ -9013,7 +9071,7 @@ export default class Client extends OpenApi {
9013
9071
  }
9014
9072
 
9015
9073
  /**
9016
- * Call UpdatePublicNetwork to open or close the public network address of the specified elasticsearch instance.
9074
+ * null
9017
9075
  *
9018
9076
  * @remarks
9019
9077
  * When you call this operation, take note of the following items:
@@ -9029,18 +9087,7 @@ export default class Client extends OpenApi {
9029
9087
  }
9030
9088
 
9031
9089
  /**
9032
- * ## RequestBody
9033
- * | Property | Type | Required | Example | Description |
9034
- * | -------- | ---- | -------- | ------- | ----------- |
9035
- * | 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.
9036
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
9037
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
9038
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
9039
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
9040
- * | └ 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. |
9041
- * > **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.
9042
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
9043
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
9090
+ * null
9044
9091
  *
9045
9092
  * @remarks
9046
9093
  * > 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.
@@ -9081,18 +9128,7 @@ export default class Client extends OpenApi {
9081
9128
  }
9082
9129
 
9083
9130
  /**
9084
- * ## RequestBody
9085
- * | Property | Type | Required | Example | Description |
9086
- * | -------- | ---- | -------- | ------- | ----------- |
9087
- * | 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.
9088
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
9089
- * | whiteIpGroup | Object | No | | You can update the whitelist configurations of an instance by using a whitelist group. You can update only one whitelist group.
9090
- * You cannot configure both publicIpWhitelist and whiteIpGroup. |
9091
- * | └ groupName | String | No | test_group_name | The group name of the whitelist group. This parameter is required if the whiteIpGroup parameter is optional. |
9092
- * | └ 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. |
9093
- * > **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.
9094
- * - If the modifyMode parameter is set to Delete, you must retain at least one IP address for the deleted ips.
9095
- * - If the modifyMode parameter is set to Append, make sure that the whitelist group name has been created. Otherwise, the NotFound error message appears.
9131
+ * null
9096
9132
  *
9097
9133
  * @remarks
9098
9134
  * > 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.
@@ -9291,10 +9327,7 @@ export default class Client extends OpenApi {
9291
9327
  }
9292
9328
 
9293
9329
  /**
9294
- * > 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.
9295
- * * 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.
9296
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
9297
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
9330
+ * Updates a private IP address whitelist of an Elasticsearch cluster.
9298
9331
  *
9299
9332
  * @remarks
9300
9333
  * > 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.
@@ -9344,10 +9377,7 @@ export default class Client extends OpenApi {
9344
9377
  }
9345
9378
 
9346
9379
  /**
9347
- * > 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.
9348
- * * 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.
9349
- * * If you set the modifyMode parameter to Delete, at least one IP address must be retained for the specified whitelist.
9350
- * * If you set the modifyMode parameter to Append, you must make sure that the specified whitelist exists. Otherwise, the system reports the NotFound error.
9380
+ * Updates a private IP address whitelist of an Elasticsearch cluster.
9351
9381
  *
9352
9382
  * @remarks
9353
9383
  * > 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.
@@ -9362,7 +9392,7 @@ export default class Client extends OpenApi {
9362
9392
  }
9363
9393
 
9364
9394
  /**
9365
- * 修改Logstash实例的X-Pack监控报警配置。
9395
+ * Updates the X-Pack monitoring and alert configuration of a Logstash cluster.
9366
9396
  *
9367
9397
  * @param request - UpdateXpackMonitorConfigRequest
9368
9398
  * @param headers - map
@@ -9413,7 +9443,7 @@ export default class Client extends OpenApi {
9413
9443
  }
9414
9444
 
9415
9445
  /**
9416
- * 修改Logstash实例的X-Pack监控报警配置。
9446
+ * Updates the X-Pack monitoring and alert configuration of a Logstash cluster.
9417
9447
  *
9418
9448
  * @param request - UpdateXpackMonitorConfigRequest
9419
9449
  * @returns UpdateXpackMonitorConfigResponse
@@ -9425,7 +9455,7 @@ export default class Client extends OpenApi {
9425
9455
  }
9426
9456
 
9427
9457
  /**
9428
- * ES集群版本升级
9458
+ * Upgrades the version or kernel of an Elasticsearch cluster.
9429
9459
  *
9430
9460
  * @remarks
9431
9461
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -9483,7 +9513,7 @@ export default class Client extends OpenApi {
9483
9513
  }
9484
9514
 
9485
9515
  /**
9486
- * ES集群版本升级
9516
+ * Upgrades the version or kernel of an Elasticsearch cluster.
9487
9517
  *
9488
9518
  * @remarks
9489
9519
  * 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
@@ -9550,7 +9580,7 @@ export default class Client extends OpenApi {
9550
9580
  }
9551
9581
 
9552
9582
  /**
9553
- * 校验缩节点合法性
9583
+ * Checks whether specific nodes can be removed from a specified Elasticsearch cluster.
9554
9584
  *
9555
9585
  * @param request - ValidateShrinkNodesRequest
9556
9586
  * @param headers - map
@@ -9592,7 +9622,7 @@ export default class Client extends OpenApi {
9592
9622
  }
9593
9623
 
9594
9624
  /**
9595
- * 校验缩节点合法性
9625
+ * Checks whether specific nodes can be removed from a specified Elasticsearch cluster.
9596
9626
  *
9597
9627
  * @param request - ValidateShrinkNodesRequest
9598
9628
  * @returns ValidateShrinkNodesResponse
@@ -9604,6 +9634,8 @@ export default class Client extends OpenApi {
9604
9634
  }
9605
9635
 
9606
9636
  /**
9637
+ * Verify the SLR permissions of the current account.
9638
+ *
9607
9639
  * @param request - ValidateSlrPermissionRequest
9608
9640
  * @param headers - map
9609
9641
  * @param runtime - runtime options for this request RuntimeOptions
@@ -9639,6 +9671,8 @@ export default class Client extends OpenApi {
9639
9671
  }
9640
9672
 
9641
9673
  /**
9674
+ * Verify the SLR permissions of the current account.
9675
+ *
9642
9676
  * @param request - ValidateSlrPermissionRequest
9643
9677
  * @returns ValidateSlrPermissionResponse
9644
9678
  */
@@ -9649,7 +9683,7 @@ export default class Client extends OpenApi {
9649
9683
  }
9650
9684
 
9651
9685
  /**
9652
- * 缩节点校验数据迁移合法性
9686
+ * Checks whether the data on specific nodes in a specified Elasticsearch cluster can be migrated.
9653
9687
  *
9654
9688
  * @param request - ValidateTransferableNodesRequest
9655
9689
  * @param headers - map
@@ -9683,7 +9717,7 @@ export default class Client extends OpenApi {
9683
9717
  }
9684
9718
 
9685
9719
  /**
9686
- * 缩节点校验数据迁移合法性
9720
+ * Checks whether the data on specific nodes in a specified Elasticsearch cluster can be migrated.
9687
9721
  *
9688
9722
  * @param request - ValidateTransferableNodesRequest
9689
9723
  * @returns ValidateTransferableNodesResponse
@@ -9695,7 +9729,7 @@ export default class Client extends OpenApi {
9695
9729
  }
9696
9730
 
9697
9731
  /**
9698
- * The configurations of dedicated master nodes.
9732
+ * Creates an Elasticsearch cluster.
9699
9733
  *
9700
9734
  * @remarks
9701
9735
  * The configurations of warm nodes.
@@ -9801,7 +9835,7 @@ export default class Client extends OpenApi {
9801
9835
  }
9802
9836
 
9803
9837
  /**
9804
- * The configurations of dedicated master nodes.
9838
+ * Creates an Elasticsearch cluster.
9805
9839
  *
9806
9840
  * @remarks
9807
9841
  * The configurations of warm nodes.