@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.d.ts CHANGED
@@ -40,7 +40,7 @@ export default class Client extends OpenApi {
40
40
  */
41
41
  addDiskReplicaPair(request: $_model.AddDiskReplicaPairRequest): Promise<$_model.AddDiskReplicaPairResponse>;
42
42
  /**
43
- * Enables CloudLens for EBS.
43
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
44
44
  *
45
45
  * @remarks
46
46
  * ## Usage notes
@@ -52,7 +52,7 @@ export default class Client extends OpenApi {
52
52
  */
53
53
  applyLensServiceWithOptions(runtime: $dara.RuntimeOptions): Promise<$_model.ApplyLensServiceResponse>;
54
54
  /**
55
- * Enables CloudLens for EBS.
55
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
56
56
  *
57
57
  * @remarks
58
58
  * ## Usage notes
@@ -76,7 +76,7 @@ export default class Client extends OpenApi {
76
76
  */
77
77
  bindEnterpriseSnapshotPolicy(request: $_model.BindEnterpriseSnapshotPolicyRequest): Promise<$_model.BindEnterpriseSnapshotPolicyResponse>;
78
78
  /**
79
- * Disables CloudLens for EBS.
79
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
80
80
  *
81
81
  * @remarks
82
82
  * ## Usage notes
@@ -88,7 +88,7 @@ export default class Client extends OpenApi {
88
88
  */
89
89
  cancelLensServiceWithOptions(runtime: $dara.RuntimeOptions): Promise<$_model.CancelLensServiceResponse>;
90
90
  /**
91
- * Disables CloudLens for EBS.
91
+ * Cancels Elastic Block Storage data insight (CloudLens for EBS).
92
92
  *
93
93
  * @remarks
94
94
  * ## Usage notes
@@ -185,6 +185,21 @@ export default class Client extends OpenApi {
185
185
  * @returns CreateDedicatedBlockStorageClusterResponse
186
186
  */
187
187
  createDedicatedBlockStorageCluster(request: $_model.CreateDedicatedBlockStorageClusterRequest): Promise<$_model.CreateDedicatedBlockStorageClusterResponse>;
188
+ /**
189
+ * Triggers a diagnostic.
190
+ *
191
+ * @param request - CreateDiagnoseReportRequest
192
+ * @param runtime - runtime options for this request RuntimeOptions
193
+ * @returns CreateDiagnoseReportResponse
194
+ */
195
+ createDiagnoseReportWithOptions(request: $_model.CreateDiagnoseReportRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateDiagnoseReportResponse>;
196
+ /**
197
+ * Triggers a diagnostic.
198
+ *
199
+ * @param request - CreateDiagnoseReportRequest
200
+ * @returns CreateDiagnoseReportResponse
201
+ */
202
+ createDiagnoseReport(request: $_model.CreateDiagnoseReportRequest): Promise<$_model.CreateDiagnoseReportResponse>;
188
203
  /**
189
204
  * Creates a replication pair-consistent group.
190
205
  *
@@ -366,7 +381,7 @@ export default class Client extends OpenApi {
366
381
  */
367
382
  describeApps(request: $_model.DescribeAppsRequest): Promise<$_model.DescribeAppsResponse>;
368
383
  /**
369
- * Queries the details of one or more disks in a dedicated block storage cluster.
384
+ * Queries information about cloud disks in a dedicated block storage cluster.
370
385
  *
371
386
  * @remarks
372
387
  * You can use one of the following methods to check the responses:
@@ -382,7 +397,7 @@ export default class Client extends OpenApi {
382
397
  */
383
398
  describeDedicatedBlockStorageClusterDisksWithOptions(request: $_model.DescribeDedicatedBlockStorageClusterDisksRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDedicatedBlockStorageClusterDisksResponse>;
384
399
  /**
385
- * Queries the details of one or more disks in a dedicated block storage cluster.
400
+ * Queries information about cloud disks in a dedicated block storage cluster.
386
401
  *
387
402
  * @remarks
388
403
  * You can use one of the following methods to check the responses:
@@ -397,7 +412,7 @@ export default class Client extends OpenApi {
397
412
  */
398
413
  describeDedicatedBlockStorageClusterDisks(request: $_model.DescribeDedicatedBlockStorageClusterDisksRequest): Promise<$_model.DescribeDedicatedBlockStorageClusterDisksResponse>;
399
414
  /**
400
- * Queries the dedicated block storage clusters that are created.
415
+ * Queries dedicated clusters.
401
416
  *
402
417
  * @remarks
403
418
  * ## [](#)Usage notes
@@ -411,7 +426,7 @@ export default class Client extends OpenApi {
411
426
  */
412
427
  describeDedicatedBlockStorageClustersWithOptions(request: $_model.DescribeDedicatedBlockStorageClustersRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDedicatedBlockStorageClustersResponse>;
413
428
  /**
414
- * Queries the dedicated block storage clusters that are created.
429
+ * Queries dedicated clusters.
415
430
  *
416
431
  * @remarks
417
432
  * ## [](#)Usage notes
@@ -424,7 +439,22 @@ export default class Client extends OpenApi {
424
439
  */
425
440
  describeDedicatedBlockStorageClusters(request: $_model.DescribeDedicatedBlockStorageClustersRequest): Promise<$_model.DescribeDedicatedBlockStorageClustersResponse>;
426
441
  /**
427
- * Queries the risk events of a disk.
442
+ * Queries diagnostic reports.
443
+ *
444
+ * @param request - DescribeDiagnoseReportRequest
445
+ * @param runtime - runtime options for this request RuntimeOptions
446
+ * @returns DescribeDiagnoseReportResponse
447
+ */
448
+ describeDiagnoseReportWithOptions(request: $_model.DescribeDiagnoseReportRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiagnoseReportResponse>;
449
+ /**
450
+ * Queries diagnostic reports.
451
+ *
452
+ * @param request - DescribeDiagnoseReportRequest
453
+ * @returns DescribeDiagnoseReportResponse
454
+ */
455
+ describeDiagnoseReport(request: $_model.DescribeDiagnoseReportRequest): Promise<$_model.DescribeDiagnoseReportResponse>;
456
+ /**
457
+ * Queries the risk events of a disk. The operation is getting offline. Switch to the new operation DescribeEvents.
428
458
  *
429
459
  * @remarks
430
460
  * ## Usage notes
@@ -436,7 +466,7 @@ export default class Client extends OpenApi {
436
466
  */
437
467
  describeDiskEventsWithOptions(request: $_model.DescribeDiskEventsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiskEventsResponse>;
438
468
  /**
439
- * Queries the risk events of a disk.
469
+ * Queries the risk events of a disk. The operation is getting offline. Switch to the new operation DescribeEvents.
440
470
  *
441
471
  * @remarks
442
472
  * ## Usage notes
@@ -447,7 +477,7 @@ export default class Client extends OpenApi {
447
477
  */
448
478
  describeDiskEvents(request: $_model.DescribeDiskEventsRequest): Promise<$_model.DescribeDiskEventsResponse>;
449
479
  /**
450
- * Queries the near real-time monitoring data of a disk.
480
+ * Queries fine-grained monitoring data of a disk.
451
481
  *
452
482
  * @remarks
453
483
  * ## Usage notes
@@ -461,7 +491,7 @@ export default class Client extends OpenApi {
461
491
  */
462
492
  describeDiskMonitorDataWithOptions(request: $_model.DescribeDiskMonitorDataRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiskMonitorDataResponse>;
463
493
  /**
464
- * Queries the near real-time monitoring data of a disk.
494
+ * Queries fine-grained monitoring data of a disk.
465
495
  *
466
496
  * @remarks
467
497
  * ## Usage notes
@@ -474,7 +504,7 @@ export default class Client extends OpenApi {
474
504
  */
475
505
  describeDiskMonitorData(request: $_model.DescribeDiskMonitorDataRequest): Promise<$_model.DescribeDiskMonitorDataResponse>;
476
506
  /**
477
- * 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.
507
+ * 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.
478
508
  *
479
509
  * @remarks
480
510
  * ## Usage notes
@@ -486,7 +516,7 @@ export default class Client extends OpenApi {
486
516
  */
487
517
  describeDiskMonitorDataListWithOptions(request: $_model.DescribeDiskMonitorDataListRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDiskMonitorDataListResponse>;
488
518
  /**
489
- * 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.
519
+ * 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.
490
520
  *
491
521
  * @remarks
492
522
  * ## Usage notes
@@ -609,7 +639,7 @@ export default class Client extends OpenApi {
609
639
  */
610
640
  describeLensMonitorDisks(request: $_model.DescribeLensMonitorDisksRequest): Promise<$_model.DescribeLensMonitorDisksResponse>;
611
641
  /**
612
- * 查询用户开通ebs数据洞察服务状态
642
+ * Queries the status of CloudLens for EBS.
613
643
  *
614
644
  * @remarks
615
645
  * ## Usage notes
@@ -621,7 +651,7 @@ export default class Client extends OpenApi {
621
651
  */
622
652
  describeLensServiceStatusWithOptions(runtime: $dara.RuntimeOptions): Promise<$_model.DescribeLensServiceStatusResponse>;
623
653
  /**
624
- * 查询用户开通ebs数据洞察服务状态
654
+ * Queries the status of CloudLens for EBS.
625
655
  *
626
656
  * @remarks
627
657
  * ## Usage notes
@@ -690,7 +720,7 @@ export default class Client extends OpenApi {
690
720
  */
691
721
  describeReplicaGroupDrills(request: $_model.DescribeReplicaGroupDrillsRequest): Promise<$_model.DescribeReplicaGroupDrillsResponse>;
692
722
  /**
693
- * 查询解决方案实例默认配置
723
+ * Queries the default configurations of a solution.
694
724
  *
695
725
  * @param request - DescribeSolutionInstanceConfigurationRequest
696
726
  * @param runtime - runtime options for this request RuntimeOptions
@@ -698,7 +728,7 @@ export default class Client extends OpenApi {
698
728
  */
699
729
  describeSolutionInstanceConfigurationWithOptions(request: $_model.DescribeSolutionInstanceConfigurationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeSolutionInstanceConfigurationResponse>;
700
730
  /**
701
- * 查询解决方案实例默认配置
731
+ * Queries the default configurations of a solution.
702
732
  *
703
733
  * @param request - DescribeSolutionInstanceConfigurationRequest
704
734
  * @returns DescribeSolutionInstanceConfigurationResponse
@@ -841,7 +871,7 @@ export default class Client extends OpenApi {
841
871
  */
842
872
  listReplicaEdgeSupported(request: $_model.ListReplicaEdgeSupportedRequest): Promise<$_model.ListReplicaEdgeSupportedResponse>;
843
873
  /**
844
- * Centralized Role: Query Historical Reports
874
+ * Queries historical reports of a specific application.
845
875
  *
846
876
  * @param request - ListReportsRequest
847
877
  * @param runtime - runtime options for this request RuntimeOptions
@@ -849,14 +879,14 @@ export default class Client extends OpenApi {
849
879
  */
850
880
  listReportsWithOptions(request: $_model.ListReportsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListReportsResponse>;
851
881
  /**
852
- * Centralized Role: Query Historical Reports
882
+ * Queries historical reports of a specific application.
853
883
  *
854
884
  * @param request - ListReportsRequest
855
885
  * @returns ListReportsResponse
856
886
  */
857
887
  listReports(request: $_model.ListReportsRequest): Promise<$_model.ListReportsResponse>;
858
888
  /**
859
- * 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.
889
+ * Queries the tags that are added to EBS resources, or queries the IDs and tags of resources in a non-default resource group.
860
890
  *
861
891
  * @remarks
862
892
  * Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
@@ -870,7 +900,7 @@ export default class Client extends OpenApi {
870
900
  */
871
901
  listTagResourcesWithOptions(request: $_model.ListTagResourcesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListTagResourcesResponse>;
872
902
  /**
873
- * 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.
903
+ * Queries the tags that are added to EBS resources, or queries the IDs and tags of resources in a non-default resource group.
874
904
  *
875
905
  * @remarks
876
906
  * Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
@@ -898,7 +928,7 @@ export default class Client extends OpenApi {
898
928
  */
899
929
  modifyApp(request: $_model.ModifyAppRequest): Promise<$_model.ModifyAppResponse>;
900
930
  /**
901
- * 修改专属集群属性OpenApi
931
+ * Modifies the information of a dedicated elastic block storage cluster.
902
932
  *
903
933
  * @remarks
904
934
  * 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.
@@ -909,7 +939,7 @@ export default class Client extends OpenApi {
909
939
  */
910
940
  modifyDedicatedBlockStorageClusterAttributeWithOptions(request: $_model.ModifyDedicatedBlockStorageClusterAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyDedicatedBlockStorageClusterAttributeResponse>;
911
941
  /**
912
- * 修改专属集群属性OpenApi
942
+ * Modifies the information of a dedicated elastic block storage cluster.
913
943
  *
914
944
  * @remarks
915
945
  * 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.
@@ -984,7 +1014,7 @@ export default class Client extends OpenApi {
984
1014
  */
985
1015
  queryDedicatedBlockStorageClusterDiskThroughputStatus(request: $_model.QueryDedicatedBlockStorageClusterDiskThroughputStatusRequest): Promise<$_model.QueryDedicatedBlockStorageClusterDiskThroughputStatusResponse>;
986
1016
  /**
987
- * Query dedicated block storage cluster capacity trend data, includ available capacity size and total capacity size.
1017
+ * 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.
988
1018
  *
989
1019
  * @remarks
990
1020
  * 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.
@@ -995,7 +1025,7 @@ export default class Client extends OpenApi {
995
1025
  */
996
1026
  queryDedicatedBlockStorageClusterInventoryDataWithOptions(request: $_model.QueryDedicatedBlockStorageClusterInventoryDataRequest, runtime: $dara.RuntimeOptions): Promise<$_model.QueryDedicatedBlockStorageClusterInventoryDataResponse>;
997
1027
  /**
998
- * Query dedicated block storage cluster capacity trend data, includ available capacity size and total capacity size.
1028
+ * 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.
999
1029
  *
1000
1030
  * @remarks
1001
1031
  * 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.
@@ -1107,7 +1137,7 @@ export default class Client extends OpenApi {
1107
1137
  */
1108
1138
  setDedicatedBlockStorageClusterDiskThroughput(request: $_model.SetDedicatedBlockStorageClusterDiskThroughputRequest): Promise<$_model.SetDedicatedBlockStorageClusterDiskThroughputResponse>;
1109
1139
  /**
1110
- * 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.
1140
+ * 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.
1111
1141
  *
1112
1142
  * @remarks
1113
1143
  * ## [](#)Usage notes
@@ -1122,7 +1152,7 @@ export default class Client extends OpenApi {
1122
1152
  */
1123
1153
  startDiskReplicaGroupWithOptions(request: $_model.StartDiskReplicaGroupRequest, runtime: $dara.RuntimeOptions): Promise<$_model.StartDiskReplicaGroupResponse>;
1124
1154
  /**
1125
- * 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.
1155
+ * 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.
1126
1156
  *
1127
1157
  * @remarks
1128
1158
  * ## [](#)Usage notes
@@ -1136,7 +1166,7 @@ export default class Client extends OpenApi {
1136
1166
  */
1137
1167
  startDiskReplicaGroup(request: $_model.StartDiskReplicaGroupRequest): Promise<$_model.StartDiskReplicaGroupResponse>;
1138
1168
  /**
1139
- * Activates a replication pair.
1169
+ * Activates the async replication feature for a specific replication pair.
1140
1170
  *
1141
1171
  * @remarks
1142
1172
  * ## [](#)Usage notes
@@ -1150,7 +1180,7 @@ export default class Client extends OpenApi {
1150
1180
  */
1151
1181
  startDiskReplicaPairWithOptions(request: $_model.StartDiskReplicaPairRequest, runtime: $dara.RuntimeOptions): Promise<$_model.StartDiskReplicaPairResponse>;
1152
1182
  /**
1153
- * Activates a replication pair.
1183
+ * Activates the async replication feature for a specific replication pair.
1154
1184
  *
1155
1185
  * @remarks
1156
1186
  * ## [](#)Usage notes
@@ -1331,7 +1361,7 @@ export default class Client extends OpenApi {
1331
1361
  */
1332
1362
  updateEnterpriseSnapshotPolicy(request: $_model.UpdateEnterpriseSnapshotPolicyRequest): Promise<$_model.UpdateEnterpriseSnapshotPolicyResponse>;
1333
1363
  /**
1334
- * 更新解决方案实例属性
1364
+ * Updates the attributes of a solution instance.
1335
1365
  *
1336
1366
  * @param request - UpdateSolutionInstanceAttributeRequest
1337
1367
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1339,7 +1369,7 @@ export default class Client extends OpenApi {
1339
1369
  */
1340
1370
  updateSolutionInstanceAttributeWithOptions(request: $_model.UpdateSolutionInstanceAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateSolutionInstanceAttributeResponse>;
1341
1371
  /**
1342
- * 更新解决方案实例属性
1372
+ * Updates the attributes of a solution instance.
1343
1373
  *
1344
1374
  * @param request - UpdateSolutionInstanceAttributeRequest
1345
1375
  * @returns UpdateSolutionInstanceAttributeResponse