tencentcloud-sdk-lke 3.0.1112 → 3.0.1116

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20231130/models.rb +39 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8204ef409e557a974addb3608b22a7820845a6ec
4
- data.tar.gz: 12913c7877136789af76359efc43c9a255fa70c9
3
+ metadata.gz: 37122908029578047db4949e3906ad779246240f
4
+ data.tar.gz: 80fab37b60a95790de2d4431e3266f47fe6630b4
5
5
  SHA512:
6
- metadata.gz: e3713fb5296df14ccab1f69cc05bd87e7f8263cf70f57802c99892c61c54ae8f13bf119720ff1cbe64ef4543f8543bfe5431cb7a90cc09a5f71e405d7dc99b32
7
- data.tar.gz: 677d28c2e58b8f162a561bfc9c0b1d5cf07c3f9069639fbd0cc7a6eb29d19339660609ab8244010a6f16f201a1c6f4e32f387509804c318d83d309ac769347f7
6
+ metadata.gz: 82aacbdb61e8a491370eaa3c5f9d695cfc4a6f614fc5e6ce9e6c0aee324c62af0906010794fdc9bb7aa1bf94ad72db6c264f53b76662783f5c4b60608552213d
7
+ data.tar.gz: 2b98414b1c1bdd37dd7b1f728cac66f7e8e7b6c235ba142b8082c7379de9de8c4777619e1166b6d613866c788f366127bf7dae24590e19052a162ef9c89b8150
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1112
1
+ 3.0.1116
@@ -4721,6 +4721,26 @@ module TencentCloud
4721
4721
  end
4722
4722
  end
4723
4723
 
4724
+ # 重复文档处理方式
4725
+ class DuplicateFileHandle < TencentCloud::Common::AbstractModel
4726
+ # @param CheckType: 重复文档判断方式,1:按文档内容,即cos_hash字段判断是否重复
4727
+ # @type CheckType: Integer
4728
+ # @param HandleType: 重复文档处理方式,1:返回报错,2:跳过,返回重复的文档业务ID
4729
+ # @type HandleType: Integer
4730
+
4731
+ attr_accessor :CheckType, :HandleType
4732
+
4733
+ def initialize(checktype=nil, handletype=nil)
4734
+ @CheckType = checktype
4735
+ @HandleType = handletype
4736
+ end
4737
+
4738
+ def deserialize(params)
4739
+ @CheckType = params['CheckType']
4740
+ @HandleType = params['HandleType']
4741
+ end
4742
+ end
4743
+
4724
4744
  # ExportAttributeLabel请求参数结构体
4725
4745
  class ExportAttributeLabelRequest < TencentCloud::Common::AbstractModel
4726
4746
  # @param BotBizId: 应用ID
@@ -10553,10 +10573,12 @@ module TencentCloud
10553
10573
  # @type CateBizId: String
10554
10574
  # @param IsDownload: 是否可下载,IsRefer为true并且ReferUrlType为0时,该值才有意义
10555
10575
  # @type IsDownload: Boolean
10576
+ # @param DuplicateFileHandles: 重复文档处理方式,按顺序匹配第一个满足条件的方式处理
10577
+ # @type DuplicateFileHandles: Array
10556
10578
 
10557
- attr_accessor :BotBizId, :FileName, :FileType, :CosUrl, :ETag, :CosHash, :Size, :AttrRange, :Source, :WebUrl, :AttrLabels, :ReferUrlType, :ExpireStart, :ExpireEnd, :IsRefer, :Opt, :CateBizId, :IsDownload
10579
+ attr_accessor :BotBizId, :FileName, :FileType, :CosUrl, :ETag, :CosHash, :Size, :AttrRange, :Source, :WebUrl, :AttrLabels, :ReferUrlType, :ExpireStart, :ExpireEnd, :IsRefer, :Opt, :CateBizId, :IsDownload, :DuplicateFileHandles
10558
10580
 
10559
- def initialize(botbizid=nil, filename=nil, filetype=nil, cosurl=nil, etag=nil, coshash=nil, size=nil, attrrange=nil, source=nil, weburl=nil, attrlabels=nil, referurltype=nil, expirestart=nil, expireend=nil, isrefer=nil, opt=nil, catebizid=nil, isdownload=nil)
10581
+ def initialize(botbizid=nil, filename=nil, filetype=nil, cosurl=nil, etag=nil, coshash=nil, size=nil, attrrange=nil, source=nil, weburl=nil, attrlabels=nil, referurltype=nil, expirestart=nil, expireend=nil, isrefer=nil, opt=nil, catebizid=nil, isdownload=nil, duplicatefilehandles=nil)
10560
10582
  @BotBizId = botbizid
10561
10583
  @FileName = filename
10562
10584
  @FileType = filetype
@@ -10575,6 +10597,7 @@ module TencentCloud
10575
10597
  @Opt = opt
10576
10598
  @CateBizId = catebizid
10577
10599
  @IsDownload = isdownload
10600
+ @DuplicateFileHandles = duplicatefilehandles
10578
10601
  end
10579
10602
 
10580
10603
  def deserialize(params)
@@ -10603,6 +10626,14 @@ module TencentCloud
10603
10626
  @Opt = params['Opt']
10604
10627
  @CateBizId = params['CateBizId']
10605
10628
  @IsDownload = params['IsDownload']
10629
+ unless params['DuplicateFileHandles'].nil?
10630
+ @DuplicateFileHandles = []
10631
+ params['DuplicateFileHandles'].each do |i|
10632
+ duplicatefilehandle_tmp = DuplicateFileHandle.new
10633
+ duplicatefilehandle_tmp.deserialize(i)
10634
+ @DuplicateFileHandles << duplicatefilehandle_tmp
10635
+ end
10636
+ end
10606
10637
  end
10607
10638
  end
10608
10639
 
@@ -10616,16 +10647,19 @@ module TencentCloud
10616
10647
  # @type ErrorLink: String
10617
10648
  # @param ErrorLinkText: 错误链接文本
10618
10649
  # @type ErrorLinkText: String
10650
+ # @param DuplicateFileCheckType: 重复类型,0:未重复,其他取值请参考入参DuplicateFileHandle结构体的CheckType字段
10651
+ # @type DuplicateFileCheckType: Integer
10619
10652
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10620
10653
  # @type RequestId: String
10621
10654
 
10622
- attr_accessor :DocBizId, :ErrorMsg, :ErrorLink, :ErrorLinkText, :RequestId
10655
+ attr_accessor :DocBizId, :ErrorMsg, :ErrorLink, :ErrorLinkText, :DuplicateFileCheckType, :RequestId
10623
10656
 
10624
- def initialize(docbizid=nil, errormsg=nil, errorlink=nil, errorlinktext=nil, requestid=nil)
10657
+ def initialize(docbizid=nil, errormsg=nil, errorlink=nil, errorlinktext=nil, duplicatefilechecktype=nil, requestid=nil)
10625
10658
  @DocBizId = docbizid
10626
10659
  @ErrorMsg = errormsg
10627
10660
  @ErrorLink = errorlink
10628
10661
  @ErrorLinkText = errorlinktext
10662
+ @DuplicateFileCheckType = duplicatefilechecktype
10629
10663
  @RequestId = requestid
10630
10664
  end
10631
10665
 
@@ -10634,6 +10668,7 @@ module TencentCloud
10634
10668
  @ErrorMsg = params['ErrorMsg']
10635
10669
  @ErrorLink = params['ErrorLink']
10636
10670
  @ErrorLinkText = params['ErrorLinkText']
10671
+ @DuplicateFileCheckType = params['DuplicateFileCheckType']
10637
10672
  @RequestId = params['RequestId']
10638
10673
  end
10639
10674
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1112
4
+ version: 3.0.1116
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-29 00:00:00.000000000 Z
11
+ date: 2025-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common