tencentcloud-sdk-cls 1.0.303 → 1.0.306

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: 6e17768ae30304bf01d74832cc19a2b1c91c8644
4
- data.tar.gz: 9e465aae587639ddd9a3032de74134fd0ce6a307
3
+ metadata.gz: c41a0b848df34d7ae816926d17f211b467d59dd4
4
+ data.tar.gz: 408f7c34c5f9c5cd0edb98d413c9ad96cd462009
5
5
  SHA512:
6
- metadata.gz: 0d971bf84a55aeae142634f1d14af513e7aa5f0162f0d08f91a711d0e2f5b7453110b26b8f976e0f46c3264fcd759a225d61d7dae1bd135a74365ae682e3e798
7
- data.tar.gz: 9ab90ab98734405426d5863a0cafcb730ca0688e777d5d98a66ab580d397ba9ecec5df250ddf82d4e05410058f81a239fbdd6260864597d6757b336df11ce424
6
+ metadata.gz: 5a64f9ef1145d21969e864eed3bdd393c7e6ac708534debcec6aa2be092e3dda344ce743185790093a9420e66a1178e4b4d62b8c84109f6fe70dfb8f1a727729
7
+ data.tar.gz: 268ed312996238f145d8beb6c09cf5e1166b854aff71e7fa2470380261ccf2d616488f8e9f476f2fbb4d41d7396ff4725e63126db9c2c1b77e4ebc234d2e3552
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.303
1
+ 1.0.306
@@ -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,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.303
4
+ version: 1.0.306
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-26 00:00:00.000000000 Z
11
+ date: 2022-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common