@alicloud/ebs20210730 4.4.0 → 4.5.0

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 (40) hide show
  1. package/dist/client.d.ts +62 -32
  2. package/dist/client.js +155 -32
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateDiagnoseReportRequest.d.ts +51 -0
  5. package/dist/models/CreateDiagnoseReportRequest.js +70 -0
  6. package/dist/models/CreateDiagnoseReportRequest.js.map +1 -0
  7. package/dist/models/CreateDiagnoseReportResponse.d.ts +19 -0
  8. package/dist/models/CreateDiagnoseReportResponse.js +69 -0
  9. package/dist/models/CreateDiagnoseReportResponse.js.map +1 -0
  10. package/dist/models/CreateDiagnoseReportResponseBody.d.ts +23 -0
  11. package/dist/models/CreateDiagnoseReportResponseBody.js +60 -0
  12. package/dist/models/CreateDiagnoseReportResponseBody.js.map +1 -0
  13. package/dist/models/DescribeDedicatedBlockStorageClustersRequest.d.ts +25 -0
  14. package/dist/models/DescribeDedicatedBlockStorageClustersRequest.js.map +1 -1
  15. package/dist/models/DescribeDiagnoseReportRequest.d.ts +63 -0
  16. package/dist/models/DescribeDiagnoseReportRequest.js +82 -0
  17. package/dist/models/DescribeDiagnoseReportRequest.js.map +1 -0
  18. package/dist/models/DescribeDiagnoseReportResponse.d.ts +19 -0
  19. package/dist/models/DescribeDiagnoseReportResponse.js +69 -0
  20. package/dist/models/DescribeDiagnoseReportResponse.js.map +1 -0
  21. package/dist/models/DescribeDiagnoseReportResponseBody.d.ts +136 -0
  22. package/dist/models/DescribeDiagnoseReportResponseBody.js +142 -0
  23. package/dist/models/DescribeDiagnoseReportResponseBody.js.map +1 -0
  24. package/dist/models/ListReplicaEdgeSupportedResponseBody.d.ts +1 -0
  25. package/dist/models/ListReplicaEdgeSupportedResponseBody.js +2 -0
  26. package/dist/models/ListReplicaEdgeSupportedResponseBody.js.map +1 -1
  27. package/dist/models/model.d.ts +8 -0
  28. package/dist/models/model.js +22 -6
  29. package/dist/models/model.js.map +1 -1
  30. package/package.json +1 -1
  31. package/src/client.ts +176 -32
  32. package/src/models/CreateDiagnoseReportRequest.ts +76 -0
  33. package/src/models/CreateDiagnoseReportResponse.ts +40 -0
  34. package/src/models/CreateDiagnoseReportResponseBody.ts +38 -0
  35. package/src/models/DescribeDedicatedBlockStorageClustersRequest.ts +25 -0
  36. package/src/models/DescribeDiagnoseReportRequest.ts +100 -0
  37. package/src/models/DescribeDiagnoseReportResponse.ts +40 -0
  38. package/src/models/DescribeDiagnoseReportResponseBody.ts +215 -0
  39. package/src/models/ListReplicaEdgeSupportedResponseBody.ts +3 -0
  40. package/src/models/model.ts +8 -0
package/dist/client.js CHANGED
@@ -126,7 +126,7 @@ class Client extends openapi_core_1.default {
126
126
  return await this.addDiskReplicaPairWithOptions(request, runtime);
127
127
  }
128
128
  /**
129
- * Enables CloudLens for EBS.
129
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
130
130
  *
131
131
  * @remarks
132
132
  * ## Usage notes
@@ -152,7 +152,7 @@ class Client extends openapi_core_1.default {
152
152
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.ApplyLensServiceResponse({}));
153
153
  }
154
154
  /**
155
- * Enables CloudLens for EBS.
155
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
156
156
  *
157
157
  * @remarks
158
158
  * ## Usage notes
@@ -212,7 +212,7 @@ class Client extends openapi_core_1.default {
212
212
  return await this.bindEnterpriseSnapshotPolicyWithOptions(request, runtime);
213
213
  }
214
214
  /**
215
- * Disables CloudLens for EBS.
215
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
216
216
  *
217
217
  * @remarks
218
218
  * ## Usage notes
@@ -238,7 +238,7 @@ class Client extends openapi_core_1.default {
238
238
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.CancelLensServiceResponse({}));
239
239
  }
240
240
  /**
241
- * Disables CloudLens for EBS.
241
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
242
242
  *
243
243
  * @remarks
244
244
  * ## Usage notes
@@ -533,6 +533,63 @@ class Client extends openapi_core_1.default {
533
533
  let runtime = new $dara.RuntimeOptions({});
534
534
  return await this.createDedicatedBlockStorageClusterWithOptions(request, runtime);
535
535
  }
536
+ /**
537
+ * Triggers a diagnostic.
538
+ *
539
+ * @param request - CreateDiagnoseReportRequest
540
+ * @param runtime - runtime options for this request RuntimeOptions
541
+ * @returns CreateDiagnoseReportResponse
542
+ */
543
+ async createDiagnoseReportWithOptions(request, runtime) {
544
+ request.validate();
545
+ let query = {};
546
+ if (!$dara.isNull(request.clientToken)) {
547
+ query["ClientToken"] = request.clientToken;
548
+ }
549
+ if (!$dara.isNull(request.diagnoseType)) {
550
+ query["DiagnoseType"] = request.diagnoseType;
551
+ }
552
+ if (!$dara.isNull(request.endTime)) {
553
+ query["EndTime"] = request.endTime;
554
+ }
555
+ if (!$dara.isNull(request.regionId)) {
556
+ query["RegionId"] = request.regionId;
557
+ }
558
+ if (!$dara.isNull(request.resourceId)) {
559
+ query["ResourceId"] = request.resourceId;
560
+ }
561
+ if (!$dara.isNull(request.resourceType)) {
562
+ query["ResourceType"] = request.resourceType;
563
+ }
564
+ if (!$dara.isNull(request.startTime)) {
565
+ query["StartTime"] = request.startTime;
566
+ }
567
+ let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
568
+ query: openapi_core_2.OpenApiUtil.query(query),
569
+ });
570
+ let params = new openapi_core_2.$OpenApiUtil.Params({
571
+ action: "CreateDiagnoseReport",
572
+ version: "2021-07-30",
573
+ protocol: "HTTPS",
574
+ pathname: "/",
575
+ method: "POST",
576
+ authType: "AK",
577
+ style: "RPC",
578
+ reqBodyType: "formData",
579
+ bodyType: "json",
580
+ });
581
+ return $dara.cast(await this.callApi(params, req, runtime), new $_model.CreateDiagnoseReportResponse({}));
582
+ }
583
+ /**
584
+ * Triggers a diagnostic.
585
+ *
586
+ * @param request - CreateDiagnoseReportRequest
587
+ * @returns CreateDiagnoseReportResponse
588
+ */
589
+ async createDiagnoseReport(request) {
590
+ let runtime = new $dara.RuntimeOptions({});
591
+ return await this.createDiagnoseReportWithOptions(request, runtime);
592
+ }
536
593
  /**
537
594
  * Creates a replication pair-consistent group.
538
595
  *
@@ -1079,7 +1136,7 @@ class Client extends openapi_core_1.default {
1079
1136
  return await this.describeAppsWithOptions(request, runtime);
1080
1137
  }
1081
1138
  /**
1082
- * Queries the details of one or more disks in a dedicated block storage cluster.
1139
+ * Queries information about cloud disks in a dedicated block storage cluster.
1083
1140
  *
1084
1141
  * @remarks
1085
1142
  * You can use one of the following methods to check the responses:
@@ -1125,7 +1182,7 @@ class Client extends openapi_core_1.default {
1125
1182
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDedicatedBlockStorageClusterDisksResponse({}));
1126
1183
  }
1127
1184
  /**
1128
- * Queries the details of one or more disks in a dedicated block storage cluster.
1185
+ * Queries information about cloud disks in a dedicated block storage cluster.
1129
1186
  *
1130
1187
  * @remarks
1131
1188
  * You can use one of the following methods to check the responses:
@@ -1143,7 +1200,7 @@ class Client extends openapi_core_1.default {
1143
1200
  return await this.describeDedicatedBlockStorageClusterDisksWithOptions(request, runtime);
1144
1201
  }
1145
1202
  /**
1146
- * Queries the dedicated block storage clusters that are created.
1203
+ * Queries dedicated clusters.
1147
1204
  *
1148
1205
  * @remarks
1149
1206
  * ## [](#)Usage notes
@@ -1213,7 +1270,7 @@ class Client extends openapi_core_1.default {
1213
1270
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDedicatedBlockStorageClustersResponse({}));
1214
1271
  }
1215
1272
  /**
1216
- * Queries the dedicated block storage clusters that are created.
1273
+ * Queries dedicated clusters.
1217
1274
  *
1218
1275
  * @remarks
1219
1276
  * ## [](#)Usage notes
@@ -1229,7 +1286,73 @@ class Client extends openapi_core_1.default {
1229
1286
  return await this.describeDedicatedBlockStorageClustersWithOptions(request, runtime);
1230
1287
  }
1231
1288
  /**
1232
- * Queries the risk events of a disk.
1289
+ * Queries diagnostic reports.
1290
+ *
1291
+ * @param request - DescribeDiagnoseReportRequest
1292
+ * @param runtime - runtime options for this request RuntimeOptions
1293
+ * @returns DescribeDiagnoseReportResponse
1294
+ */
1295
+ async describeDiagnoseReportWithOptions(request, runtime) {
1296
+ request.validate();
1297
+ let query = {};
1298
+ if (!$dara.isNull(request.clientToken)) {
1299
+ query["ClientToken"] = request.clientToken;
1300
+ }
1301
+ if (!$dara.isNull(request.diagnoseType)) {
1302
+ query["DiagnoseType"] = request.diagnoseType;
1303
+ }
1304
+ if (!$dara.isNull(request.endTime)) {
1305
+ query["EndTime"] = request.endTime;
1306
+ }
1307
+ if (!$dara.isNull(request.maxResults)) {
1308
+ query["MaxResults"] = request.maxResults;
1309
+ }
1310
+ if (!$dara.isNull(request.nextToken)) {
1311
+ query["NextToken"] = request.nextToken;
1312
+ }
1313
+ if (!$dara.isNull(request.regionId)) {
1314
+ query["RegionId"] = request.regionId;
1315
+ }
1316
+ if (!$dara.isNull(request.reportIds)) {
1317
+ query["ReportIds"] = request.reportIds;
1318
+ }
1319
+ if (!$dara.isNull(request.resourceIds)) {
1320
+ query["ResourceIds"] = request.resourceIds;
1321
+ }
1322
+ if (!$dara.isNull(request.startTime)) {
1323
+ query["StartTime"] = request.startTime;
1324
+ }
1325
+ if (!$dara.isNull(request.status)) {
1326
+ query["Status"] = request.status;
1327
+ }
1328
+ let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
1329
+ query: openapi_core_2.OpenApiUtil.query(query),
1330
+ });
1331
+ let params = new openapi_core_2.$OpenApiUtil.Params({
1332
+ action: "DescribeDiagnoseReport",
1333
+ version: "2021-07-30",
1334
+ protocol: "HTTPS",
1335
+ pathname: "/",
1336
+ method: "POST",
1337
+ authType: "AK",
1338
+ style: "RPC",
1339
+ reqBodyType: "formData",
1340
+ bodyType: "json",
1341
+ });
1342
+ return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDiagnoseReportResponse({}));
1343
+ }
1344
+ /**
1345
+ * Queries diagnostic reports.
1346
+ *
1347
+ * @param request - DescribeDiagnoseReportRequest
1348
+ * @returns DescribeDiagnoseReportResponse
1349
+ */
1350
+ async describeDiagnoseReport(request) {
1351
+ let runtime = new $dara.RuntimeOptions({});
1352
+ return await this.describeDiagnoseReportWithOptions(request, runtime);
1353
+ }
1354
+ /**
1355
+ * Queries the risk events of a disk. The operation is getting offline. Switch to the new operation DescribeEvents.
1233
1356
  *
1234
1357
  * @remarks
1235
1358
  * ## Usage notes
@@ -1283,7 +1406,7 @@ class Client extends openapi_core_1.default {
1283
1406
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDiskEventsResponse({}));
1284
1407
  }
1285
1408
  /**
1286
- * Queries the risk events of a disk.
1409
+ * Queries the risk events of a disk. The operation is getting offline. Switch to the new operation DescribeEvents.
1287
1410
  *
1288
1411
  * @remarks
1289
1412
  * ## Usage notes
@@ -1297,7 +1420,7 @@ class Client extends openapi_core_1.default {
1297
1420
  return await this.describeDiskEventsWithOptions(request, runtime);
1298
1421
  }
1299
1422
  /**
1300
- * Queries the near real-time monitoring data of a disk.
1423
+ * Queries fine-grained monitoring data of a disk.
1301
1424
  *
1302
1425
  * @remarks
1303
1426
  * ## Usage notes
@@ -1347,7 +1470,7 @@ class Client extends openapi_core_1.default {
1347
1470
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDiskMonitorDataResponse({}));
1348
1471
  }
1349
1472
  /**
1350
- * Queries the near real-time monitoring data of a disk.
1473
+ * Queries fine-grained monitoring data of a disk.
1351
1474
  *
1352
1475
  * @remarks
1353
1476
  * ## Usage notes
@@ -1363,7 +1486,7 @@ class Client extends openapi_core_1.default {
1363
1486
  return await this.describeDiskMonitorDataWithOptions(request, runtime);
1364
1487
  }
1365
1488
  /**
1366
- * Queries the near real-time monitoring data of disks. You can query only the burst performance data of ESSD AutoPL disks. The data is aggregated by hour.
1489
+ * Queries fine-grained monitoring data of multiple disks. You can query only the burst performance data of ESSD AutoPL disks. The data is aggregated by hour.
1367
1490
  *
1368
1491
  * @remarks
1369
1492
  * ## Usage notes
@@ -1414,7 +1537,7 @@ class Client extends openapi_core_1.default {
1414
1537
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDiskMonitorDataListResponse({}));
1415
1538
  }
1416
1539
  /**
1417
- * Queries the near real-time monitoring data of disks. You can query only the burst performance data of ESSD AutoPL disks. The data is aggregated by hour.
1540
+ * Queries fine-grained monitoring data of multiple disks. You can query only the burst performance data of ESSD AutoPL disks. The data is aggregated by hour.
1418
1541
  *
1419
1542
  * @remarks
1420
1543
  * ## Usage notes
@@ -1816,7 +1939,7 @@ class Client extends openapi_core_1.default {
1816
1939
  return await this.describeLensMonitorDisksWithOptions(request, runtime);
1817
1940
  }
1818
1941
  /**
1819
- * 查询用户开通ebs数据洞察服务状态
1942
+ * Queries the status of CloudLens for EBS.
1820
1943
  *
1821
1944
  * @remarks
1822
1945
  * ## Usage notes
@@ -1842,7 +1965,7 @@ class Client extends openapi_core_1.default {
1842
1965
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeLensServiceStatusResponse({}));
1843
1966
  }
1844
1967
  /**
1845
- * 查询用户开通ebs数据洞察服务状态
1968
+ * Queries the status of CloudLens for EBS.
1846
1969
  *
1847
1970
  * @remarks
1848
1971
  * ## Usage notes
@@ -2081,7 +2204,7 @@ class Client extends openapi_core_1.default {
2081
2204
  return await this.describeReplicaGroupDrillsWithOptions(request, runtime);
2082
2205
  }
2083
2206
  /**
2084
- * 查询解决方案实例默认配置
2207
+ * Queries the default configurations of a solution.
2085
2208
  *
2086
2209
  * @param request - DescribeSolutionInstanceConfigurationRequest
2087
2210
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2119,7 +2242,7 @@ class Client extends openapi_core_1.default {
2119
2242
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeSolutionInstanceConfigurationResponse({}));
2120
2243
  }
2121
2244
  /**
2122
- * 查询解决方案实例默认配置
2245
+ * Queries the default configurations of a solution.
2123
2246
  *
2124
2247
  * @param request - DescribeSolutionInstanceConfigurationRequest
2125
2248
  * @returns DescribeSolutionInstanceConfigurationResponse
@@ -2462,7 +2585,7 @@ class Client extends openapi_core_1.default {
2462
2585
  return await this.listReplicaEdgeSupportedWithOptions(request, runtime);
2463
2586
  }
2464
2587
  /**
2465
- * Centralized Role: Query Historical Reports
2588
+ * Queries historical reports of a specific application.
2466
2589
  *
2467
2590
  * @param request - ListReportsRequest
2468
2591
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2508,7 +2631,7 @@ class Client extends openapi_core_1.default {
2508
2631
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListReportsResponse({}));
2509
2632
  }
2510
2633
  /**
2511
- * Centralized Role: Query Historical Reports
2634
+ * Queries historical reports of a specific application.
2512
2635
  *
2513
2636
  * @param request - ListReportsRequest
2514
2637
  * @returns ListReportsResponse
@@ -2518,7 +2641,7 @@ class Client extends openapi_core_1.default {
2518
2641
  return await this.listReportsWithOptions(request, runtime);
2519
2642
  }
2520
2643
  /**
2521
- * Queries the tags that are added to one or more Elastic Block Storage (EBS) resources, or queries the IDs and tags of resources in a specified non-default resource group.
2644
+ * Queries the tags that are added to EBS resources, or queries the IDs and tags of resources in a non-default resource group.
2522
2645
  *
2523
2646
  * @remarks
2524
2647
  * Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
@@ -2568,7 +2691,7 @@ class Client extends openapi_core_1.default {
2568
2691
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListTagResourcesResponse({}));
2569
2692
  }
2570
2693
  /**
2571
- * Queries the tags that are added to one or more Elastic Block Storage (EBS) resources, or queries the IDs and tags of resources in a specified non-default resource group.
2694
+ * Queries the tags that are added to EBS resources, or queries the IDs and tags of resources in a non-default resource group.
2572
2695
  *
2573
2696
  * @remarks
2574
2697
  * Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
@@ -2650,7 +2773,7 @@ class Client extends openapi_core_1.default {
2650
2773
  return await this.modifyAppWithOptions(request, runtime);
2651
2774
  }
2652
2775
  /**
2653
- * 修改专属集群属性OpenApi
2776
+ * Modifies the information of a dedicated elastic block storage cluster.
2654
2777
  *
2655
2778
  * @remarks
2656
2779
  * You can call this operation to modify the information of a dedicated block storage cluster. The information includes the name and description of the cluster.
@@ -2694,7 +2817,7 @@ class Client extends openapi_core_1.default {
2694
2817
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.ModifyDedicatedBlockStorageClusterAttributeResponse({}));
2695
2818
  }
2696
2819
  /**
2697
- * 修改专属集群属性OpenApi
2820
+ * Modifies the information of a dedicated elastic block storage cluster.
2698
2821
  *
2699
2822
  * @remarks
2700
2823
  * You can call this operation to modify the information of a dedicated block storage cluster. The information includes the name and description of the cluster.
@@ -2894,7 +3017,7 @@ class Client extends openapi_core_1.default {
2894
3017
  return await this.queryDedicatedBlockStorageClusterDiskThroughputStatusWithOptions(request, runtime);
2895
3018
  }
2896
3019
  /**
2897
- * Query dedicated block storage cluster capacity trend data, includ available capacity size and total capacity size.
3020
+ * Queries the capacity trend data of a dedicated Elastic Block Storage (EBS) cluster within a specific time period, including the available capacity and total capacity.
2898
3021
  *
2899
3022
  * @remarks
2900
3023
  * Period is the time interval between data retrieval points. When set to 60 (minute interval), a maximum of 1440 data points can be returned; when set to 3600 (hour interval), a maximum of 744 data points can be returned; and when set to 86400 (day interval), a maximum of 366 data points can be returned.
@@ -2943,7 +3066,7 @@ class Client extends openapi_core_1.default {
2943
3066
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.QueryDedicatedBlockStorageClusterInventoryDataResponse({}));
2944
3067
  }
2945
3068
  /**
2946
- * Query dedicated block storage cluster capacity trend data, includ available capacity size and total capacity size.
3069
+ * Queries the capacity trend data of a dedicated Elastic Block Storage (EBS) cluster within a specific time period, including the available capacity and total capacity.
2947
3070
  *
2948
3071
  * @remarks
2949
3072
  * Period is the time interval between data retrieval points. When set to 60 (minute interval), a maximum of 1440 data points can be returned; when set to 3600 (hour interval), a maximum of 744 data points can be returned; and when set to 86400 (day interval), a maximum of 366 data points can be returned.
@@ -3192,7 +3315,7 @@ class Client extends openapi_core_1.default {
3192
3315
  return await this.setDedicatedBlockStorageClusterDiskThroughputWithOptions(request, runtime);
3193
3316
  }
3194
3317
  /**
3195
- * Enables the async replication feature for replication pairs that belong to a replication pair-consistent group. When the async replication feature is enabled for the pairs for the first time, the system first performs a full synchronization to synchronize all data from disks at the primary site (primary disks) to disks at the secondary site (secondary disks) and then periodically synchronizes incremental data based on the recovery point objective (RPO) of the replication pair-consistent group.
3318
+ * Enables the async replication feature for replication pairs that belong to a replication pair-consistent group. The first time the async replication feature is enabled for the replication pairs, the system performs a full synchronization to synchronize all data from disks at the primary site (primary disks) to disks at the secondary site (secondary disks). Then, the system periodically synchronizes incremental data based on the recovery point objective (RPO) of the replication pair-consistent group.
3196
3319
  *
3197
3320
  * @remarks
3198
3321
  * ## [](#)Usage notes
@@ -3237,7 +3360,7 @@ class Client extends openapi_core_1.default {
3237
3360
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.StartDiskReplicaGroupResponse({}));
3238
3361
  }
3239
3362
  /**
3240
- * Enables the async replication feature for replication pairs that belong to a replication pair-consistent group. When the async replication feature is enabled for the pairs for the first time, the system first performs a full synchronization to synchronize all data from disks at the primary site (primary disks) to disks at the secondary site (secondary disks) and then periodically synchronizes incremental data based on the recovery point objective (RPO) of the replication pair-consistent group.
3363
+ * Enables the async replication feature for replication pairs that belong to a replication pair-consistent group. The first time the async replication feature is enabled for the replication pairs, the system performs a full synchronization to synchronize all data from disks at the primary site (primary disks) to disks at the secondary site (secondary disks). Then, the system periodically synchronizes incremental data based on the recovery point objective (RPO) of the replication pair-consistent group.
3241
3364
  *
3242
3365
  * @remarks
3243
3366
  * ## [](#)Usage notes
@@ -3254,7 +3377,7 @@ class Client extends openapi_core_1.default {
3254
3377
  return await this.startDiskReplicaGroupWithOptions(request, runtime);
3255
3378
  }
3256
3379
  /**
3257
- * Activates a replication pair.
3380
+ * Activates the async replication feature for a specific replication pair.
3258
3381
  *
3259
3382
  * @remarks
3260
3383
  * ## [](#)Usage notes
@@ -3298,7 +3421,7 @@ class Client extends openapi_core_1.default {
3298
3421
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.StartDiskReplicaPairResponse({}));
3299
3422
  }
3300
3423
  /**
3301
- * Activates a replication pair.
3424
+ * Activates the async replication feature for a specific replication pair.
3302
3425
  *
3303
3426
  * @remarks
3304
3427
  * ## [](#)Usage notes
@@ -3781,7 +3904,7 @@ class Client extends openapi_core_1.default {
3781
3904
  return await this.updateEnterpriseSnapshotPolicyWithOptions(request, runtime);
3782
3905
  }
3783
3906
  /**
3784
- * 更新解决方案实例属性
3907
+ * Updates the attributes of a solution instance.
3785
3908
  *
3786
3909
  * @param request - UpdateSolutionInstanceAttributeRequest
3787
3910
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3822,7 +3945,7 @@ class Client extends openapi_core_1.default {
3822
3945
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.UpdateSolutionInstanceAttributeResponse({}));
3823
3946
  }
3824
3947
  /**
3825
- * 更新解决方案实例属性
3948
+ * Updates the attributes of a solution instance.
3826
3949
  *
3827
3950
  * @param request - UpdateSolutionInstanceAttributeRequest
3828
3951
  * @returns UpdateSolutionInstanceAttributeResponse