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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/client.rb +1 -1
- data/lib/v20201016/models.rb +58 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac52399b1b83d723683eb3a59ebd2769f3ae877a
|
4
|
+
data.tar.gz: cd7683cdecc966a9547d5f476913b9035fed5780
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23464f1226f5a40f90908caad2c40acc68f83079448b554f5bf179b004112877931343cd794181c7e3a649bbc88ae0b5e7b4e5dfbc5b66b753526fa0b689ae4
|
7
|
+
data.tar.gz: 7e08aa2ec7193c7195b455528ff1e6766cb2bbb30e896aa9d42792ef0d082a21f8ab095b3e28c70c923eeafb26216511b529d2944a7810c8a43a2863840f9b81
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.305
|
data/lib/v20201016/client.rb
CHANGED
@@ -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`
|
data/lib/v20201016/models.rb
CHANGED
@@ -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
|