tencentcloud-sdk-cls 1.0.304 → 1.0.305

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9bd2244b245a5d7f375eada427b9cd1527350917
4
- data.tar.gz: 4828ff2e9408ba0bc0e71f3ba5b042705f4bcb9a
3
+ metadata.gz: ac52399b1b83d723683eb3a59ebd2769f3ae877a
4
+ data.tar.gz: cd7683cdecc966a9547d5f476913b9035fed5780
5
5
  SHA512:
6
- metadata.gz: b7bbb0df7d09eef6299ee6f17a88a4107129e2f8ba516209e45d9dc02ab6439872e12caee48971daf6f30019436dbb3765ea5e2597491d10b4943b8d0ba2385f
7
- data.tar.gz: 9ff1773526cd953c0ba407e5532cfdf588f5358fabc4ceb6cdb0a7c903f1e926832ca6bdc15dfe68f17259e66fe2bf420ba6e32efad138ba89267e897ffac51a
6
+ metadata.gz: c23464f1226f5a40f90908caad2c40acc68f83079448b554f5bf179b004112877931343cd794181c7e3a649bbc88ae0b5e7b4e5dfbc5b66b753526fa0b689ae4
7
+ data.tar.gz: 7e08aa2ec7193c7195b455528ff1e6766cb2bbb30e896aa9d42792ef0d082a21f8ab095b3e28c70c923eeafb26216511b529d2944a7810c8a43a2863840f9b81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.304
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
 
@@ -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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.304
4
+ version: 1.0.305
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud