tencentcloud-sdk-cls 3.0.550 → 3.0.552
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +12 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89d9debb4c3195affb12fece5254bb24d9ee6387
|
4
|
+
data.tar.gz: 81fe72874653bac757302cf8afe93810c4ff20b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc6d1c3c084e5e7ea64632385cdad57e1f39620c753f8b1701c71e446aa57683ee4ee0b2e63b2f5e5fd57c8c14906814201d9029ebcc5284f3d5a7f183e3d1fa
|
7
|
+
data.tar.gz: fc9201f942f7d57860248992bc1a9b5bd3a2803007813aee11444e52db2cb93924d83aee5a240749925f1bb20ebd9322250564d7a03ec6d62bb70726e827f492
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.552
|
data/lib/v20201016/models.rb
CHANGED
@@ -1817,10 +1817,12 @@ module TencentCloud
|
|
1817
1817
|
# @param HotPeriod: 0:关闭日志沉降。
|
1818
1818
|
# 非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
1819
1819
|
# @type HotPeriod: Integer
|
1820
|
+
# @param IsWebTracking: webtracking开关; false: 关闭 true: 开启
|
1821
|
+
# @type IsWebTracking: Boolean
|
1820
1822
|
|
1821
|
-
attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod
|
1823
|
+
attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :IsWebTracking
|
1822
1824
|
|
1823
|
-
def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil)
|
1825
|
+
def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil)
|
1824
1826
|
@LogsetId = logsetid
|
1825
1827
|
@TopicName = topicname
|
1826
1828
|
@PartitionCount = partitioncount
|
@@ -1831,6 +1833,7 @@ module TencentCloud
|
|
1831
1833
|
@Period = period
|
1832
1834
|
@Describes = describes
|
1833
1835
|
@HotPeriod = hotperiod
|
1836
|
+
@IsWebTracking = iswebtracking
|
1834
1837
|
end
|
1835
1838
|
|
1836
1839
|
def deserialize(params)
|
@@ -1851,6 +1854,7 @@ module TencentCloud
|
|
1851
1854
|
@Period = params['Period']
|
1852
1855
|
@Describes = params['Describes']
|
1853
1856
|
@HotPeriod = params['HotPeriod']
|
1857
|
+
@IsWebTracking = params['IsWebTracking']
|
1854
1858
|
end
|
1855
1859
|
end
|
1856
1860
|
|
@@ -5215,10 +5219,12 @@ module TencentCloud
|
|
5215
5219
|
# @param HotPeriod: 0:关闭日志沉降。
|
5216
5220
|
# 非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
5217
5221
|
# @type HotPeriod: Integer
|
5222
|
+
# @param IsWebTracking: webtracking开关; false: 关闭 true: 开启
|
5223
|
+
# @type IsWebTracking: Boolean
|
5218
5224
|
|
5219
|
-
attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod
|
5225
|
+
attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking
|
5220
5226
|
|
5221
|
-
def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil)
|
5227
|
+
def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil)
|
5222
5228
|
@TopicId = topicid
|
5223
5229
|
@TopicName = topicname
|
5224
5230
|
@Tags = tags
|
@@ -5228,6 +5234,7 @@ module TencentCloud
|
|
5228
5234
|
@Period = period
|
5229
5235
|
@Describes = describes
|
5230
5236
|
@HotPeriod = hotperiod
|
5237
|
+
@IsWebTracking = iswebtracking
|
5231
5238
|
end
|
5232
5239
|
|
5233
5240
|
def deserialize(params)
|
@@ -5247,6 +5254,7 @@ module TencentCloud
|
|
5247
5254
|
@Period = params['Period']
|
5248
5255
|
@Describes = params['Describes']
|
5249
5256
|
@HotPeriod = params['HotPeriod']
|
5257
|
+
@IsWebTracking = params['IsWebTracking']
|
5250
5258
|
end
|
5251
5259
|
end
|
5252
5260
|
|
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.
|
4
|
+
version: 3.0.552
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|