tencentcloud-sdk-nodejs-lke 4.1.210 → 4.1.213
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
|
@@ -3643,7 +3643,7 @@ export interface AgentKnowledge {
|
|
|
3643
3643
|
*/
|
|
3644
3644
|
export interface UpdateVarResponse {
|
|
3645
3645
|
/**
|
|
3646
|
-
*
|
|
3646
|
+
* <p>变量ID</p>
|
|
3647
3647
|
*/
|
|
3648
3648
|
VarId?: string;
|
|
3649
3649
|
/**
|
|
@@ -9961,35 +9961,35 @@ export interface KnowledgeQaPlugin {
|
|
|
9961
9961
|
*/
|
|
9962
9962
|
export interface UpdateVarRequest {
|
|
9963
9963
|
/**
|
|
9964
|
-
*
|
|
9964
|
+
* <p>应用ID,获取方法参看如何获取 <a href="https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa">BotBizId</a>。</p>
|
|
9965
9965
|
*/
|
|
9966
9966
|
AppBizId: string;
|
|
9967
9967
|
/**
|
|
9968
|
-
*
|
|
9968
|
+
* <p>变量 ID。由 CreateVar 接口生成,通过 CreateVar / DescribeVar 返回结果获取。</p>
|
|
9969
9969
|
*/
|
|
9970
9970
|
VarId: string;
|
|
9971
9971
|
/**
|
|
9972
|
-
*
|
|
9972
|
+
* <p>变量名称,最大支持50个字符,英文字母开头,支持英文数字与下划线”_” 。</p>
|
|
9973
9973
|
*/
|
|
9974
9974
|
VarName: string;
|
|
9975
9975
|
/**
|
|
9976
|
-
*
|
|
9976
|
+
* <p>参数描述</p>
|
|
9977
9977
|
*/
|
|
9978
9978
|
VarDesc?: string;
|
|
9979
9979
|
/**
|
|
9980
|
-
*
|
|
9980
|
+
* <p>变量类型</p><p>枚举值:</p><ul><li>STRING: 字符串</li><li>INT: 整形</li><li>BOOL: 布尔型</li><li>OBJECT: 对象</li><li>ARRAY_STRING: 字符串数组</li><li>ARRAY_INT: 整型数组</li><li>ARRAY_FLOAT: 浮点型数组</li><li>ARRAY_BOOL: 布尔型数组</li><li>ARRAY_OBJECT: 对象数组</li><li>FILE: 文件类型</li><li>DOCUMENT: 文档类型</li><li>IMAGE: 图片类型</li><li>AUDIO: 音频</li><li>VIDEO: 视频</li><li>ARRAY_FILE: 文件数组</li><li>ARRAY_DOCUMENT: 文档数组</li><li>ARRAY_IMAGE: 图片数组</li><li>ARRAY_AUDIO: 音频数组</li><li>ARRAY_VIDEO: 视频数组</li><li>SECRET: 秘钥</li><li>ARRAY_ARRAY: 多维数组</li></ul><p>默认值:STRING</p>
|
|
9981
9981
|
*/
|
|
9982
9982
|
VarType?: string;
|
|
9983
9983
|
/**
|
|
9984
|
-
*
|
|
9984
|
+
* <p>自定义变量默认值,<code>VarDefaultValue</code> 默认为空</p>
|
|
9985
9985
|
*/
|
|
9986
9986
|
VarDefaultValue?: string;
|
|
9987
9987
|
/**
|
|
9988
|
-
*
|
|
9988
|
+
* <p>自定义变量文件默认名称,<code>VarDefaultFileName</code> 默认为空</p>
|
|
9989
9989
|
*/
|
|
9990
9990
|
VarDefaultFileName?: string;
|
|
9991
9991
|
/**
|
|
9992
|
-
*
|
|
9992
|
+
* <p>变量模块类型</p><p>枚举值:</p><ul><li>0: API参数</li><li>1: 环境参数</li><li>2: 应用参数</li><li>3: 系统参数</li></ul>
|
|
9993
9993
|
*/
|
|
9994
9994
|
VarModuleType?: number;
|
|
9995
9995
|
}
|