tencentcloud-sdk-cls 1.0.302 → 1.0.305

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 301d981649d1fa2cc98cee1a280395aaf5b9fed9
4
- data.tar.gz: d4573fa01dfa30007ffae878f7bb94cb4f5f6ba8
3
+ metadata.gz: ac52399b1b83d723683eb3a59ebd2769f3ae877a
4
+ data.tar.gz: cd7683cdecc966a9547d5f476913b9035fed5780
5
5
  SHA512:
6
- metadata.gz: 4e21047e2e66ca3e0d22cdfd58123ade532a1f133c754be7a606314d1318e3a65755bfcae4fa9e789007fcc58b0108d0c968b851cde60debe228de49388b4657
7
- data.tar.gz: 6ab72d96cf4cf802dd0af1c543ad63a0b725c72d6857ce22f54a5efb6f5e150604008bfb670e7496fc5aa2dd7dc60c1eabedc4fbadbbcb70ce237aaa08881e57
6
+ metadata.gz: c23464f1226f5a40f90908caad2c40acc68f83079448b554f5bf179b004112877931343cd794181c7e3a649bbc88ae0b5e7b4e5dfbc5b66b753526fa0b689ae4
7
+ data.tar.gz: 7e08aa2ec7193c7195b455528ff1e6766cb2bbb30e896aa9d42792ef0d082a21f8ab095b3e28c70c923eeafb26216511b529d2944a7810c8a43a2863840f9b81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.302
1
+ 1.0.305
@@ -221,7 +221,7 @@ module TencentCloud
221
221
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
222
  end
223
223
 
224
- # 本接口用于创建日志下载任务,导出原始日志
224
+ # 本接口仅创建下载任务,任务返回的下载地址,请用户调用DescribeExports查看任务列表。其中有下载地址CosPath参数。参考文档https://cloud.tencent.com/document/product/614/56449
225
225
 
226
226
  # @param request: Request instance for CreateExport.
227
227
  # @type request: :class:`Tencentcloud::cls::V20201016::CreateExportRequest`
@@ -794,13 +794,17 @@ module TencentCloud
794
794
  # @param Json: json格式内容描述
795
795
  # 注意:此字段可能返回 null,表示取不到有效值。
796
796
  # @type Json: :class:`Tencentcloud::Cls.v20201016.models.JsonInfo`
797
+ # @param Parquet: parquet格式内容描述
798
+ # 注意:此字段可能返回 null,表示取不到有效值。
799
+ # @type Parquet: :class:`Tencentcloud::Cls.v20201016.models.ParquetInfo`
797
800
 
798
- attr_accessor :Format, :Csv, :Json
801
+ attr_accessor :Format, :Csv, :Json, :Parquet
799
802
 
800
- def initialize(format=nil, csv=nil, json=nil)
803
+ def initialize(format=nil, csv=nil, json=nil, parquet=nil)
801
804
  @Format = format
802
805
  @Csv = csv
803
806
  @Json = json
807
+ @Parquet = parquet
804
808
  end
805
809
 
806
810
  def deserialize(params)
@@ -813,6 +817,10 @@ module TencentCloud
813
817
  @Json = JsonInfo.new
814
818
  @Json.deserialize(params['Json'])
815
819
  end
820
+ unless params['Parquet'].nil?
821
+ @Parquet = ParquetInfo.new
822
+ @Parquet.deserialize(params['Parquet'])
823
+ end
816
824
  end
817
825
  end
818
826
 
@@ -1621,7 +1629,7 @@ module TencentCloud
1621
1629
  # @type AutoSplit: Boolean
1622
1630
  # @param MaxSplitPartitions: 开启自动分裂后,每个主题能够允许的最大分区数,默认值为50
1623
1631
  # @type MaxSplitPartitions: Integer
1624
- # @param StorageType: 日志主题的存储类型,可选值 hot(实时存储),cold(低频存储);默认为hot。
1632
+ # @param StorageType: 日志主题的存储类型,可选值 hot(标准存储),cold(低频存储);默认为hot。
1625
1633
  # @type StorageType: String
1626
1634
  # @param Period: 生命周期,单位天,可取值范围1~3600。取值为3640时代表永久保存
1627
1635
  # @type Period: Integer
@@ -3456,7 +3464,7 @@ module TencentCloud
3456
3464
 
3457
3465
  # DescribeTopics请求参数结构体
3458
3466
  class DescribeTopicsRequest < TencentCloud::Common::AbstractModel
3459
- # @param Filters: <br><li> topicName按照【日志主题名称】进行过滤。类型:String必选:否<br><li> logsetName按照【日志集名称】进行过滤。类型:String必选:否<br><li> topicId按照【日志主题ID】进行过滤。类型:String必选:否<br><li> logsetId按照【日志集ID】进行过滤,可通过调用DescribeLogsets查询已创建的日志集列表或登录控制台进行查看;也可以调用CreateLogset创建新的日志集。类型:String必选:否<br><li> tagKey按照【标签键】进行过滤。类型:String必选:否<br><li> tag:tagKey按照【标签键值对】进行过滤。tagKey使用具体的标签键进行替换,例如tag:exampleKey。类型:String必选:否<br><li> storageType按照【日志主题的存储类型】进行过滤。可选值 hot(实时存储),cold(低频存储)类型:String必选:否每次请求的Filters的上限为10,Filter.Values的上限为100。
3467
+ # @param Filters: <br><li> topicName按照【日志主题名称】进行过滤。类型:String必选:否<br><li> logsetName按照【日志集名称】进行过滤。类型:String必选:否<br><li> topicId按照【日志主题ID】进行过滤。类型:String必选:否<br><li> logsetId按照【日志集ID】进行过滤,可通过调用DescribeLogsets查询已创建的日志集列表或登录控制台进行查看;也可以调用CreateLogset创建新的日志集。类型:String必选:否<br><li> tagKey按照【标签键】进行过滤。类型:String必选:否<br><li> tag:tagKey按照【标签键值对】进行过滤。tagKey使用具体的标签键进行替换,例如tag:exampleKey。类型:String必选:否<br><li> storageType按照【日志主题的存储类型】进行过滤。可选值 hot(标准存储),cold(低频存储)类型:String必选:否每次请求的Filters的上限为10,Filter.Values的上限为100。
3460
3468
  # @type Filters: Array
3461
3469
  # @param Offset: 分页的偏移量,默认值为0。
3462
3470
  # @type Offset: Integer
@@ -5185,6 +5193,54 @@ module TencentCloud
5185
5193
  end
5186
5194
  end
5187
5195
 
5196
+ # Parquet内容
5197
+ class ParquetInfo < TencentCloud::Common::AbstractModel
5198
+ # @param ParquetKeyInfo: ParquetKeyInfo数组
5199
+ # @type ParquetKeyInfo: Array
5200
+
5201
+ attr_accessor :ParquetKeyInfo
5202
+
5203
+ def initialize(parquetkeyinfo=nil)
5204
+ @ParquetKeyInfo = parquetkeyinfo
5205
+ end
5206
+
5207
+ def deserialize(params)
5208
+ unless params['ParquetKeyInfo'].nil?
5209
+ @ParquetKeyInfo = []
5210
+ params['ParquetKeyInfo'].each do |i|
5211
+ parquetkeyinfo_tmp = ParquetKeyInfo.new
5212
+ parquetkeyinfo_tmp.deserialize(i)
5213
+ @ParquetKeyInfo << parquetkeyinfo_tmp
5214
+ end
5215
+ end
5216
+ end
5217
+ end
5218
+
5219
+ # Parquet内容描述
5220
+ class ParquetKeyInfo < TencentCloud::Common::AbstractModel
5221
+ # @param KeyName: 键值名称
5222
+ # @type KeyName: String
5223
+ # @param KeyType: 数据类型,目前支持6种类型:string、boolean、int32、int64、float、double
5224
+ # @type KeyType: String
5225
+ # @param KeyNonExistingField: 解析失败赋值信息
5226
+ # 注意:此字段可能返回 null,表示取不到有效值。
5227
+ # @type KeyNonExistingField: String
5228
+
5229
+ attr_accessor :KeyName, :KeyType, :KeyNonExistingField
5230
+
5231
+ def initialize(keyname=nil, keytype=nil, keynonexistingfield=nil)
5232
+ @KeyName = keyname
5233
+ @KeyType = keytype
5234
+ @KeyNonExistingField = keynonexistingfield
5235
+ end
5236
+
5237
+ def deserialize(params)
5238
+ @KeyName = params['KeyName']
5239
+ @KeyType = params['KeyType']
5240
+ @KeyNonExistingField = params['KeyNonExistingField']
5241
+ end
5242
+ end
5243
+
5188
5244
  # 日志主题分区信息
5189
5245
  class PartitionInfo < TencentCloud::Common::AbstractModel
5190
5246
  # @param PartitionId: 分区ID
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: 1.0.302
4
+ version: 1.0.305
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-04-20 00:00:00.000000000 Z
11
+ date: 2022-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common