tencentcloud-sdk-nodejs-csip 4.1.205 → 4.1.210
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
|
@@ -6981,48 +6981,51 @@ export interface Filter {
|
|
|
6981
6981
|
*/
|
|
6982
6982
|
export interface AIAgentAsset {
|
|
6983
6983
|
/**
|
|
6984
|
-
* ID
|
|
6984
|
+
* <p>ID 标识</p>
|
|
6985
6985
|
*/
|
|
6986
6986
|
ID?: string;
|
|
6987
6987
|
/**
|
|
6988
|
-
* agent
|
|
6988
|
+
* <p>agent 名称</p>
|
|
6989
6989
|
*/
|
|
6990
6990
|
AgentName?: string;
|
|
6991
6991
|
/**
|
|
6992
|
-
* agent
|
|
6992
|
+
* <p>agent 使用模型名称</p>
|
|
6993
6993
|
*/
|
|
6994
6994
|
AgentModel?: Array<string>;
|
|
6995
6995
|
/**
|
|
6996
|
-
*
|
|
6996
|
+
* <p>实例 ID</p>
|
|
6997
6997
|
*/
|
|
6998
6998
|
InstanceID?: string;
|
|
6999
6999
|
/**
|
|
7000
|
-
*
|
|
7000
|
+
* <p>实例名称</p>
|
|
7001
|
+
*/
|
|
7002
|
+
InstanceName?: string;
|
|
7003
|
+
/**
|
|
7004
|
+
* <p>metadata 风险列表。有如下枚举值: 1. AK_TMP 2. USER_DATA</p>
|
|
7001
7005
|
*/
|
|
7002
7006
|
MetadataRiskList?: Array<string>;
|
|
7003
7007
|
/**
|
|
7004
|
-
*
|
|
7008
|
+
* <p>首次检出时间</p>
|
|
7005
7009
|
*/
|
|
7006
7010
|
IdentityTimeFirst?: string;
|
|
7007
7011
|
/**
|
|
7008
|
-
*
|
|
7012
|
+
* <p>最近检出时间</p>
|
|
7009
7013
|
*/
|
|
7010
7014
|
IdentityTimeLast?: string;
|
|
7011
7015
|
/**
|
|
7012
|
-
*
|
|
7016
|
+
* <p>检出方式。有如下枚举值 1. FINGER 资产指纹方式检出 2. NETWORK 网络访问方式检出</p>
|
|
7013
7017
|
*/
|
|
7014
7018
|
IdentityMethod?: string;
|
|
7015
7019
|
/**
|
|
7016
|
-
*
|
|
7017
|
-
3. UNKNOWN;
|
|
7020
|
+
* <p>暴露状态。有如下枚举值。1. EXPOSED;2.UNEXPOSED;</p><ol start="3"><li>UNKNOWN;</li></ol>
|
|
7018
7021
|
*/
|
|
7019
7022
|
ExposureStatus?: string;
|
|
7020
7023
|
/**
|
|
7021
|
-
* metadata
|
|
7024
|
+
* <p>metadata 有风险时对应路径</p>
|
|
7022
7025
|
*/
|
|
7023
7026
|
MetadataRiskURL?: string;
|
|
7024
7027
|
/**
|
|
7025
|
-
*
|
|
7028
|
+
* <p>无</p>
|
|
7026
7029
|
*/
|
|
7027
7030
|
SkillState?: SkillState;
|
|
7028
7031
|
}
|