tencentcloud-sdk-cls 3.0.1162 → 3.0.1165

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 +16 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca655dfd1b63c970275f577ab345e1c15dc6c19f
4
- data.tar.gz: 62fe91dd847f240b490d0fa34e55296f8f26af6c
3
+ metadata.gz: 99ba6ff9b1653a95f36623577a9835d322108915
4
+ data.tar.gz: c019d17f203bda702399e479ad471b5092b33afc
5
5
  SHA512:
6
- metadata.gz: 281721ae6cf5b1519bc19d888388858d39be3f56c5a1f17452e34bcd5059be8d1b0c98536cde0ad94f9c831c5f633b6fba15dd3dfbcc44c9c36f7723a5bbda04
7
- data.tar.gz: fcf4dd275ff6e0a2b0d81f86b43b07dc57ee1c15df74b9585a264cffa9b7654d29f08940de4533f3b5a5e651b397f0dd83fc5ed669e5f7223746621cc55c15f4
6
+ metadata.gz: fb530a1d1d834caefc791cb11102b68af6b650ee1eee276ba1a74cbe9cf906cb30b3e762685ddc6bac05ed7a2c2fb8984d3f16ad1f7f803ce58b2c4a445c8720
7
+ data.tar.gz: 315027c91b498dfd5f5082ef3ca549b0f5f7eae3edb084688900984de3f935f255515205e1fdc7f9a98bf1c22e214c4a9494a48cc0412bcdd681d5399af3e77a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1162
1
+ 3.0.1165
@@ -2948,10 +2948,14 @@ module TencentCloud
2948
2948
  # @type PreviewLogStatistics: Array
2949
2949
  # @param DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
2950
2950
  # @type DataTransformType: Integer
2951
+ # @param KeepFailureLog: 保留失败日志状态,1:不保留(默认),2:保留。
2952
+ # @type KeepFailureLog: Integer
2953
+ # @param FailureLogKey: 失败日志的字段名称
2954
+ # @type FailureLogKey: String
2951
2955
 
2952
- attr_accessor :FuncType, :SrcTopicId, :Name, :EtlContent, :TaskType, :DstResources, :EnableFlag, :PreviewLogStatistics, :DataTransformType
2956
+ attr_accessor :FuncType, :SrcTopicId, :Name, :EtlContent, :TaskType, :DstResources, :EnableFlag, :PreviewLogStatistics, :DataTransformType, :KeepFailureLog, :FailureLogKey
2953
2957
 
2954
- def initialize(functype=nil, srctopicid=nil, name=nil, etlcontent=nil, tasktype=nil, dstresources=nil, enableflag=nil, previewlogstatistics=nil, datatransformtype=nil)
2958
+ def initialize(functype=nil, srctopicid=nil, name=nil, etlcontent=nil, tasktype=nil, dstresources=nil, enableflag=nil, previewlogstatistics=nil, datatransformtype=nil, keepfailurelog=nil, failurelogkey=nil)
2955
2959
  @FuncType = functype
2956
2960
  @SrcTopicId = srctopicid
2957
2961
  @Name = name
@@ -2961,6 +2965,8 @@ module TencentCloud
2961
2965
  @EnableFlag = enableflag
2962
2966
  @PreviewLogStatistics = previewlogstatistics
2963
2967
  @DataTransformType = datatransformtype
2968
+ @KeepFailureLog = keepfailurelog
2969
+ @FailureLogKey = failurelogkey
2964
2970
  end
2965
2971
 
2966
2972
  def deserialize(params)
@@ -2987,6 +2993,8 @@ module TencentCloud
2987
2993
  end
2988
2994
  end
2989
2995
  @DataTransformType = params['DataTransformType']
2996
+ @KeepFailureLog = params['KeepFailureLog']
2997
+ @FailureLogKey = params['FailureLogKey']
2990
2998
  end
2991
2999
  end
2992
3000
 
@@ -3740,10 +3748,12 @@ module TencentCloud
3740
3748
  # @type IsWebTracking: Boolean
3741
3749
  # @param Extends: 主题扩展信息
3742
3750
  # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
3751
+ # @param IsSourceFrom: 开启记录公网来源ip和服务端接收时间
3752
+ # @type IsSourceFrom: Boolean
3743
3753
 
3744
- attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :BizType, :TopicId, :IsWebTracking, :Extends
3754
+ attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :BizType, :TopicId, :IsWebTracking, :Extends, :IsSourceFrom
3745
3755
 
3746
- def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, biztype=nil, topicid=nil, iswebtracking=nil, extends=nil)
3756
+ def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, biztype=nil, topicid=nil, iswebtracking=nil, extends=nil, issourcefrom=nil)
3747
3757
  @LogsetId = logsetid
3748
3758
  @TopicName = topicname
3749
3759
  @PartitionCount = partitioncount
@@ -3758,6 +3768,7 @@ module TencentCloud
3758
3768
  @TopicId = topicid
3759
3769
  @IsWebTracking = iswebtracking
3760
3770
  @Extends = extends
3771
+ @IsSourceFrom = issourcefrom
3761
3772
  end
3762
3773
 
3763
3774
  def deserialize(params)
@@ -3785,6 +3796,7 @@ module TencentCloud
3785
3796
  @Extends = TopicExtendInfo.new
3786
3797
  @Extends.deserialize(params['Extends'])
3787
3798
  end
3799
+ @IsSourceFrom = params['IsSourceFrom']
3788
3800
  end
3789
3801
  end
3790
3802
 
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.1162
4
+ version: 3.0.1165
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-11-05 00:00:00.000000000 Z
11
+ date: 2025-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common