tencentcloud-sdk-nodejs-lke 4.1.89 → 4.1.92

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-lke",
3
- "version": "4.1.89",
3
+ "version": "4.1.92",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3540,6 +3540,10 @@ export interface SaveDocRequest {
3540
3540
  * 是否可下载,IsRefer为true并且ReferUrlType为0时,该值才有意义
3541
3541
  */
3542
3542
  IsDownload?: boolean;
3543
+ /**
3544
+ * 重复文档处理方式,按顺序匹配第一个满足条件的方式处理
3545
+ */
3546
+ DuplicateFileHandles?: Array<DuplicateFileHandle>;
3543
3547
  }
3544
3548
  /**
3545
3549
  * RetryDocParse请求参数结构体
@@ -7286,6 +7290,19 @@ export interface CreateAttributeLabelResponse {
7286
7290
  */
7287
7291
  RequestId?: string;
7288
7292
  }
7293
+ /**
7294
+ * 重复文档处理方式
7295
+ */
7296
+ export interface DuplicateFileHandle {
7297
+ /**
7298
+ * 重复文档判断方式,1:按文档内容,即cos_hash字段判断是否重复
7299
+ */
7300
+ CheckType?: number;
7301
+ /**
7302
+ * 重复文档处理方式,1:返回报错,2:跳过,返回重复的文档业务ID
7303
+ */
7304
+ HandleType?: number;
7305
+ }
7289
7306
  /**
7290
7307
  * DescribeAppAgentList请求参数结构体
7291
7308
  */
@@ -7786,6 +7803,10 @@ export interface SaveDocResponse {
7786
7803
  * 错误链接文本
7787
7804
  */
7788
7805
  ErrorLinkText?: string;
7806
+ /**
7807
+ * 重复类型,0:未重复,其他取值请参考入参DuplicateFileHandle结构体的CheckType字段
7808
+ */
7809
+ DuplicateFileCheckType?: number;
7789
7810
  /**
7790
7811
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7791
7812
  */