tencentcloud-sdk-cls 3.0.390 → 3.0.393

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +13 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1459dd1628318128b5f29075a422c2bc8a7c46a
4
- data.tar.gz: c04fdfd1e27d71d4c901d851614d10a9427d5e85
3
+ metadata.gz: 4588befc94019f1fe9c298d2fca13d5ab0452403
4
+ data.tar.gz: 8e9ef1f25b80b6f240063667ece61e53bc23e5be
5
5
  SHA512:
6
- metadata.gz: a28fda78d3619ed1b2277713436fd261cc56b4f868a47da367435babb5acbd385205f084d80abae83d3db7a2a152bed82aa363ac22633734ee6c8e1bc2470fe4
7
- data.tar.gz: 2f597c451563dbdb5aaafc2dd68562487d007543a2301eef4157d33aceda9f35df36fc6f194dea771af1bc477d0186b92839cbc1e868662760314f9ae86342d6
6
+ metadata.gz: 0970859030812ba8aeaaaf1ba7a687eb74de01effeff1b0f94164e6c2b2daef6af3e542771f79885aef1c2ad0e003de939979df0ef24269970966bf16823b67c
7
+ data.tar.gz: b83d6206dbfdb7e82d99095adf695afafe6d4c85e5cb8d84878eae0f7e5376d782570d728bce6c4f5f25ccb356141603089693b558d1372e93679c37cbb43549
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.390
1
+ 3.0.393
@@ -1514,10 +1514,12 @@ module TencentCloud
1514
1514
  # @type Compress: :class:`Tencentcloud::Cls.v20201016.models.CompressInfo`
1515
1515
  # @param Content: 投递日志的内容格式配置
1516
1516
  # @type Content: :class:`Tencentcloud::Cls.v20201016.models.ContentInfo`
1517
+ # @param FilenameMode: 投递文件命名配置,0:随机数命名,1:投递时间命名,默认0(随机数命名)
1518
+ # @type FilenameMode: Integer
1517
1519
 
1518
- attr_accessor :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content
1520
+ attr_accessor :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode
1519
1521
 
1520
- def initialize(topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil)
1522
+ def initialize(topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil)
1521
1523
  @TopicId = topicid
1522
1524
  @Bucket = bucket
1523
1525
  @Prefix = prefix
@@ -1528,6 +1530,7 @@ module TencentCloud
1528
1530
  @Partition = partition
1529
1531
  @Compress = compress
1530
1532
  @Content = content
1533
+ @FilenameMode = filenamemode
1531
1534
  end
1532
1535
 
1533
1536
  def deserialize(params)
@@ -1554,6 +1557,7 @@ module TencentCloud
1554
1557
  @Content = ContentInfo.new
1555
1558
  @Content.deserialize(params['Content'])
1556
1559
  end
1560
+ @FilenameMode = params['FilenameMode']
1557
1561
  end
1558
1562
  end
1559
1563
 
@@ -3681,7 +3685,7 @@ module TencentCloud
3681
3685
  class JsonInfo < TencentCloud::Common::AbstractModel
3682
3686
  # @param EnableTag: 启用标志
3683
3687
  # @type EnableTag: Boolean
3684
- # @param MetaFields: 元数据信息列表, 可选值为 __SOURCE__、__FILENAME__、__TIMESTAMP__。
3688
+ # @param MetaFields: 元数据信息列表, 可选值为 __SOURCE__、__FILENAME__、__TIMESTAMP__、__HOSTNAME__
3685
3689
  # 注意:此字段可能返回 null,表示取不到有效值。
3686
3690
  # @type MetaFields: Array
3687
3691
 
@@ -4689,10 +4693,12 @@ module TencentCloud
4689
4693
  # @type Compress: :class:`Tencentcloud::Cls.v20201016.models.CompressInfo`
4690
4694
  # @param Content: 投递日志的内容格式配置
4691
4695
  # @type Content: :class:`Tencentcloud::Cls.v20201016.models.ContentInfo`
4696
+ # @param FilenameMode: 投递文件命名配置,0:随机数命名,1:投递时间命名,默认0(随机数命名)
4697
+ # @type FilenameMode: Integer
4692
4698
 
4693
- attr_accessor :ShipperId, :Bucket, :Prefix, :Status, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content
4699
+ attr_accessor :ShipperId, :Bucket, :Prefix, :Status, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode
4694
4700
 
4695
- def initialize(shipperid=nil, bucket=nil, prefix=nil, status=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil)
4701
+ def initialize(shipperid=nil, bucket=nil, prefix=nil, status=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil)
4696
4702
  @ShipperId = shipperid
4697
4703
  @Bucket = bucket
4698
4704
  @Prefix = prefix
@@ -4704,6 +4710,7 @@ module TencentCloud
4704
4710
  @Partition = partition
4705
4711
  @Compress = compress
4706
4712
  @Content = content
4713
+ @FilenameMode = filenamemode
4707
4714
  end
4708
4715
 
4709
4716
  def deserialize(params)
@@ -4731,6 +4738,7 @@ module TencentCloud
4731
4738
  @Content = ContentInfo.new
4732
4739
  @Content.deserialize(params['Content'])
4733
4740
  end
4741
+ @FilenameMode = params['FilenameMode']
4734
4742
  end
4735
4743
  end
4736
4744
 
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.390
4
+ version: 3.0.393
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common