tencentcloud-sdk-cls 3.0.994 → 3.0.995

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/v20201016/models.rb +15 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32fcf3c9aa1b62fe509824619e75f00cef96fd0e
4
- data.tar.gz: 5d1a1c16b4f518542a85b80656cd7ee4a31144e0
3
+ metadata.gz: cd4c525b55651c981b2937e43bda04ea12a31f44
4
+ data.tar.gz: 28334ded12e281d0d8b41fe8ad34eb20cf90f35b
5
5
  SHA512:
6
- metadata.gz: 7c1ba58f7d271de1d253caca6c4cff556f1e985cb8a4325f2b2abf99fb87dbb1313e0265a5ad87dd798f1a1f786d8fb7db2e8df01289feefc05ef260d08b659a
7
- data.tar.gz: 328ff335bc9d85e81cea58ae388d75010fcc1ea90e93b149d6cd22c49bf61b1bde8035eb335dbab64d066fe6ea671f40e630ea29c7d3a127ee496209412b2fd6
6
+ metadata.gz: ae0599cfc5d373cb4da2f7f0f07044e5ca92d92dd9b7c4fe5ec3ecd731d5475f416df28b65996b85a9287cefd21c0f4b0a6a381de485083577a61d4e57904586
7
+ data.tar.gz: 1836c8a19910335ac1250f3e51952e7dc06873c14d3abb2444417d7ed6ded32759b588809535f92eae5e9651f989d1345a1244bc38a64ec6b794385adf0ad902
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.994
1
+ 3.0.995
@@ -3539,8 +3539,9 @@ module TencentCloud
3539
3539
  # @type MaxSplitPartitions: Integer
3540
3540
  # @param StorageType: 日志主题的存储类型,可选值 hot(标准存储),cold(低频存储);默认为hot。
3541
3541
  # @type StorageType: String
3542
- # @param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600天。取值为3640时代表永久保存。
3543
- # 不传此值,默认获取该日志主题对应日志集的Period值(当获取失败时默认为30天)。
3542
+ # @param Period: 存储时间,单位天。
3543
+ # - 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
3544
+ # - 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
3544
3545
  # @type Period: Integer
3545
3546
  # @param Describes: 日志主题描述
3546
3547
  # @type Describes: String
@@ -3548,15 +3549,19 @@ module TencentCloud
3548
3549
  # 非0:开启日志沉降后标准存储的天数,HotPeriod需要大于等于7,且小于Period。
3549
3550
  # 仅在StorageType为 hot 时生效。
3550
3551
  # @type HotPeriod: Integer
3552
+ # @param TopicId: 主题自定义ID,格式为:用户自定义部分-APPID。未填写该参数时将自动生成ID。
3553
+ # - 用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符
3554
+ # - APPID可在https://console.cloud.tencent.com/developer页面查询
3555
+ # @type TopicId: String
3551
3556
  # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。默认为false。
3552
3557
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
3553
3558
  # @type IsWebTracking: Boolean
3554
3559
  # @param Extends: 日志主题扩展信息
3555
3560
  # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
3556
3561
 
3557
- attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends
3562
+ attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :TopicId, :IsWebTracking, :Extends
3558
3563
 
3559
- def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil)
3564
+ def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, topicid=nil, iswebtracking=nil, extends=nil)
3560
3565
  @LogsetId = logsetid
3561
3566
  @TopicName = topicname
3562
3567
  @PartitionCount = partitioncount
@@ -3567,6 +3572,7 @@ module TencentCloud
3567
3572
  @Period = period
3568
3573
  @Describes = describes
3569
3574
  @HotPeriod = hotperiod
3575
+ @TopicId = topicid
3570
3576
  @IsWebTracking = iswebtracking
3571
3577
  @Extends = extends
3572
3578
  end
@@ -3589,6 +3595,7 @@ module TencentCloud
3589
3595
  @Period = params['Period']
3590
3596
  @Describes = params['Describes']
3591
3597
  @HotPeriod = params['HotPeriod']
3598
+ @TopicId = params['TopicId']
3592
3599
  @IsWebTracking = params['IsWebTracking']
3593
3600
  unless params['Extends'].nil?
3594
3601
  @Extends = TopicExtendInfo.new
@@ -10703,8 +10710,8 @@ module TencentCloud
10703
10710
 
10704
10711
  attr_accessor :LogContent, :LineNum, :DstTopicId, :FailReason, :Time, :DstTopicName
10705
10712
  extend Gem::Deprecate
10706
- deprecate :DstTopicName, :none, 2025, 1
10707
- deprecate :DstTopicName=, :none, 2025, 1
10713
+ deprecate :DstTopicName, :none, 2025, 2
10714
+ deprecate :DstTopicName=, :none, 2025, 2
10708
10715
 
10709
10716
  def initialize(logcontent=nil, linenum=nil, dsttopicid=nil, failreason=nil, time=nil, dsttopicname=nil)
10710
10717
  @LogContent = logcontent
@@ -11975,8 +11982,8 @@ module TencentCloud
11975
11982
 
11976
11983
  attr_accessor :TopicId, :HashKey, :CompressType
11977
11984
  extend Gem::Deprecate
11978
- deprecate :HashKey, :none, 2025, 1
11979
- deprecate :HashKey=, :none, 2025, 1
11985
+ deprecate :HashKey, :none, 2025, 2
11986
+ deprecate :HashKey=, :none, 2025, 2
11980
11987
 
11981
11988
  def initialize(topicid=nil, hashkey=nil, compresstype=nil)
11982
11989
  @TopicId = topicid
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.994
4
+ version: 3.0.995
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-02-09 00:00:00.000000000 Z
11
+ date: 2025-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common