tencentcloud-sdk-nodejs-batch 4.1.77 → 4.1.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1531,6 +1531,8 @@ export interface DescribeJobMonitorDataRequest {
|
|
|
1531
1531
|
- MemUsage:内存利用率,单位:%
|
|
1532
1532
|
- LanOuttraffic:内网出带宽,单位:Bytes/s
|
|
1533
1533
|
- LanIntraffic:内网入带宽,单位:Bytes/s
|
|
1534
|
+
- MaxDiskUsage:所有磁盘中的使用率最高的磁盘使用率,单位:%
|
|
1535
|
+
- TargetDiskUsage:指定磁盘的使用率,单位:%;配合Dimensions参数使用
|
|
1534
1536
|
*/
|
|
1535
1537
|
MetricName: string;
|
|
1536
1538
|
/**
|
|
@@ -1541,6 +1543,14 @@ export interface DescribeJobMonitorDataRequest {
|
|
|
1541
1543
|
* 查询任务实例的终止时间;如果未传入查询终止时间或传入的时间大于任务实例的终止时间(任务实例终止时间详见[任务详情](https://cloud.tencent.com/document/product/599/15905)),并且任务实例已经结束,会自动将查询终止时间调整到任务实例的终止时间;如果任务实例未结束,会自动将查询终止时间调整到当前时间。传入时间格式只支持零时区格式。
|
|
1542
1544
|
*/
|
|
1543
1545
|
EndTime?: string;
|
|
1546
|
+
/**
|
|
1547
|
+
* 查询指标的扩展参数;当前只支持TargetDiskUsage;
|
|
1548
|
+
|
|
1549
|
+
- TargetDiskUsage
|
|
1550
|
+
-支持的查询维度diskname, 维度值为磁盘挂载名,例如vdb;如果不传此参数,默认查询vdb磁盘的使用率。
|
|
1551
|
+
样例:[{"Name":"diskname", "Value":"vdb"}]
|
|
1552
|
+
*/
|
|
1553
|
+
Dimensions?: Array<Dimension>;
|
|
1544
1554
|
}
|
|
1545
1555
|
/**
|
|
1546
1556
|
* 描述了 “云自动化助手” 服务相关的信息
|
|
@@ -1624,6 +1634,19 @@ export interface DescribeJobRequest {
|
|
|
1624
1634
|
*/
|
|
1625
1635
|
JobId: string;
|
|
1626
1636
|
}
|
|
1637
|
+
/**
|
|
1638
|
+
* Job资源监控查询维度
|
|
1639
|
+
*/
|
|
1640
|
+
export interface Dimension {
|
|
1641
|
+
/**
|
|
1642
|
+
* 查询指标的维度名称
|
|
1643
|
+
*/
|
|
1644
|
+
Name: string;
|
|
1645
|
+
/**
|
|
1646
|
+
* 查询指标的维度值
|
|
1647
|
+
*/
|
|
1648
|
+
Value: string;
|
|
1649
|
+
}
|
|
1627
1650
|
/**
|
|
1628
1651
|
* 重定向信息
|
|
1629
1652
|
*/
|