tencentcloud-sdk-nodejs-csip 4.1.158 → 4.1.165
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
|
@@ -1991,6 +1991,18 @@ export interface AccessKeyAlarmCount {
|
|
|
1991
1991
|
* 告警数量
|
|
1992
1992
|
*/
|
|
1993
1993
|
AlarmCount?: number;
|
|
1994
|
+
/**
|
|
1995
|
+
* 访问密钥状态 0 禁用 1 已启用 2 已删除
|
|
1996
|
+
*/
|
|
1997
|
+
AccessKeyStatus?: number;
|
|
1998
|
+
/**
|
|
1999
|
+
* AK创建时间
|
|
2000
|
+
*/
|
|
2001
|
+
AccessKeyCreateTime?: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* AK最后使用时间,从未使用过则返回“-”
|
|
2004
|
+
*/
|
|
2005
|
+
LastAccessTime?: string;
|
|
1994
2006
|
}
|
|
1995
2007
|
/**
|
|
1996
2008
|
* 风险规则
|
|
@@ -3484,6 +3496,14 @@ export interface AccessKeyRisk {
|
|
|
3484
3496
|
* 对应风险的查询参数
|
|
3485
3497
|
*/
|
|
3486
3498
|
QueryParam?: string;
|
|
3499
|
+
/**
|
|
3500
|
+
* 云类型 0-腾讯云 4-阿里云
|
|
3501
|
+
*/
|
|
3502
|
+
CloudType?: number;
|
|
3503
|
+
/**
|
|
3504
|
+
* 相关的AK列表,包含AK名和AK备注
|
|
3505
|
+
*/
|
|
3506
|
+
RelatedAK?: Array<AKInfo>;
|
|
3487
3507
|
}
|
|
3488
3508
|
/**
|
|
3489
3509
|
* 集团账号详情
|
|
@@ -4920,6 +4940,23 @@ export interface AccessKeyAlarm {
|
|
|
4920
4940
|
* 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
4921
4941
|
*/
|
|
4922
4942
|
CloudType?: number;
|
|
4943
|
+
/**
|
|
4944
|
+
* 告警AI分析状态
|
|
4945
|
+
-1 分析失败
|
|
4946
|
+
0 未分析
|
|
4947
|
+
1 分析中
|
|
4948
|
+
2 分析成功,真实告警
|
|
4949
|
+
3 分析成功,可疑告警
|
|
4950
|
+
*/
|
|
4951
|
+
AIStatus?: number;
|
|
4952
|
+
/**
|
|
4953
|
+
* 首次告警时间戳(秒级)
|
|
4954
|
+
*/
|
|
4955
|
+
FirstAlarmTimestamp?: number;
|
|
4956
|
+
/**
|
|
4957
|
+
* 最后告警时间戳(秒级)
|
|
4958
|
+
*/
|
|
4959
|
+
LastAlarmTimestamp?: number;
|
|
4923
4960
|
}
|
|
4924
4961
|
/**
|
|
4925
4962
|
* 多云账户统计信息
|