tencentcloud-sdk-dlc 3.0.1136 → 3.0.1138

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210125/models.rb +219 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 057a981d5954ecf70eca5d077cd302b6e030a7b5
4
- data.tar.gz: 2758599c22d1bb3358b7de527a630402208a3f72
3
+ metadata.gz: 04af64ed1dd0c1817f1aeb237a26808d17e9d93c
4
+ data.tar.gz: 19b0d5e5bb49d63d9e35a959e98745328e8129ea
5
5
  SHA512:
6
- metadata.gz: 79281bd14100248f275f6cc9c4469b0e5f6972a5e313b931d23479973abae293e505806507bb160f82d0c5d132dbee5956d82d9109c87147a31ce516454aa2d8
7
- data.tar.gz: e8817f8cc67e103bb019d8833300902e1ebfc80c654f38de22126aaff3220b46651dce6c1ae665adaddd7995175e361de33d96128ec56bcecae629204a277def
6
+ metadata.gz: 4cbd18d0684d816f2b491e0f1a0fdf500b91b9198e535478429d9ac110d180ee98f1178edaeb4844c5eb26b9e3066cda9cefd7bf5887024227a44a2b073d4e6a
7
+ data.tar.gz: cb863f83b25ebc8c0a8f739b953e9aa6a949c3c48f3e8fa4bdddf76d43ded24e4bd62c979f7e2b472ae9fd53ea228e1717342ccc9a4505b673812bff8a44c290
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1136
1
+ 3.0.1138
@@ -8726,27 +8726,74 @@ module TencentCloud
8726
8726
 
8727
8727
  # DescribeTablePartitions请求参数结构体
8728
8728
  class DescribeTablePartitionsRequest < TencentCloud::Common::AbstractModel
8729
+ # @param Catalog: 数据目录名称
8730
+ # @type Catalog: String
8731
+ # @param Database: 数据库名称
8732
+ # @type Database: String
8733
+ # @param Table: 数据表名称
8734
+ # @type Table: String
8735
+ # @param Offset: 查询偏移位置
8736
+ # @type Offset: Integer
8737
+ # @param Limit: 当次查询的数量限制
8738
+ # @type Limit: Integer
8739
+ # @param FuzzyPartition: 模糊查询的分区名称
8740
+ # @type FuzzyPartition: String
8741
+ # @param Sorts: 排序信息
8742
+ # @type Sorts: Array
8743
+ # @param Cursor: 分页查询的游标信息
8744
+ # @type Cursor: String
8729
8745
 
8746
+ attr_accessor :Catalog, :Database, :Table, :Offset, :Limit, :FuzzyPartition, :Sorts, :Cursor
8730
8747
 
8731
- def initialize()
8748
+ def initialize(catalog=nil, database=nil, table=nil, offset=nil, limit=nil, fuzzypartition=nil, sorts=nil, cursor=nil)
8749
+ @Catalog = catalog
8750
+ @Database = database
8751
+ @Table = table
8752
+ @Offset = offset
8753
+ @Limit = limit
8754
+ @FuzzyPartition = fuzzypartition
8755
+ @Sorts = sorts
8756
+ @Cursor = cursor
8732
8757
  end
8733
8758
 
8734
8759
  def deserialize(params)
8760
+ @Catalog = params['Catalog']
8761
+ @Database = params['Database']
8762
+ @Table = params['Table']
8763
+ @Offset = params['Offset']
8764
+ @Limit = params['Limit']
8765
+ @FuzzyPartition = params['FuzzyPartition']
8766
+ unless params['Sorts'].nil?
8767
+ @Sorts = []
8768
+ params['Sorts'].each do |i|
8769
+ sort_tmp = Sort.new
8770
+ sort_tmp.deserialize(i)
8771
+ @Sorts << sort_tmp
8772
+ end
8773
+ end
8774
+ @Cursor = params['Cursor']
8735
8775
  end
8736
8776
  end
8737
8777
 
8738
8778
  # DescribeTablePartitions返回参数结构体
8739
8779
  class DescribeTablePartitionsResponse < TencentCloud::Common::AbstractModel
8780
+ # @param MixedPartitions: 分区信息值
8781
+ # @type MixedPartitions: :class:`Tencentcloud::Dlc.v20210125.models.MixedTablePartitions`
8740
8782
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8741
8783
  # @type RequestId: String
8742
8784
 
8743
- attr_accessor :RequestId
8785
+ attr_accessor :MixedPartitions, :RequestId
8744
8786
 
8745
- def initialize(requestid=nil)
8787
+ def initialize(mixedpartitions=nil, requestid=nil)
8788
+ @MixedPartitions = mixedpartitions
8746
8789
  @RequestId = requestid
8747
8790
  end
8748
8791
 
8749
8792
  def deserialize(params)
8793
+ unless params['MixedPartitions'].nil?
8794
+ @MixedPartitions = MixedTablePartitions.new
8795
+ @MixedPartitions.deserialize(params['MixedPartitions'])
8796
+ end
8750
8797
  @RequestId = params['RequestId']
8751
8798
  end
8752
8799
  end
@@ -11170,6 +11217,42 @@ module TencentCloud
11170
11217
  end
11171
11218
  end
11172
11219
 
11220
+ # Hive表分区信息
11221
+ class HiveTablePartition < TencentCloud::Common::AbstractModel
11222
+ # @param Partition: 分区信息名称
11223
+ # @type Partition: String
11224
+ # @param Records: 分区记录数
11225
+ # @type Records: Integer
11226
+ # @param DataFileStorage: 分区数据文件存储量
11227
+ # @type DataFileStorage: Integer
11228
+ # @param CreateTime: 分区创建时间
11229
+ # @type CreateTime: String
11230
+ # @param ModifiedTime: 分区schema更新时间
11231
+ # @type ModifiedTime: String
11232
+ # @param LastAccessTime: 最后一次分区更新的访问时间
11233
+ # @type LastAccessTime: String
11234
+
11235
+ attr_accessor :Partition, :Records, :DataFileStorage, :CreateTime, :ModifiedTime, :LastAccessTime
11236
+
11237
+ def initialize(partition=nil, records=nil, datafilestorage=nil, createtime=nil, modifiedtime=nil, lastaccesstime=nil)
11238
+ @Partition = partition
11239
+ @Records = records
11240
+ @DataFileStorage = datafilestorage
11241
+ @CreateTime = createtime
11242
+ @ModifiedTime = modifiedtime
11243
+ @LastAccessTime = lastaccesstime
11244
+ end
11245
+
11246
+ def deserialize(params)
11247
+ @Partition = params['Partition']
11248
+ @Records = params['Records']
11249
+ @DataFileStorage = params['DataFileStorage']
11250
+ @CreateTime = params['CreateTime']
11251
+ @ModifiedTime = params['ModifiedTime']
11252
+ @LastAccessTime = params['LastAccessTime']
11253
+ end
11254
+ end
11255
+
11173
11256
  # 集群事件日志
11174
11257
  class HouseEventsInfo < TencentCloud::Common::AbstractModel
11175
11258
  # @param Time: 事件时间
@@ -11197,6 +11280,53 @@ module TencentCloud
11197
11280
  end
11198
11281
  end
11199
11282
 
11283
+ # Iceberg表分区信息
11284
+ class IcebergTablePartition < TencentCloud::Common::AbstractModel
11285
+ # @param Partition: 分区信息名称
11286
+ # @type Partition: String
11287
+ # @param Records: 分区记录数
11288
+ # @type Records: Integer
11289
+ # @param DataFileSize: 分区数据文件数量
11290
+ # @type DataFileSize: Integer
11291
+ # @param DataFileStorage: 分区数据文件存储量
11292
+ # @type DataFileStorage: Integer
11293
+ # @param CreateTime: 分区创建时间
11294
+ # @type CreateTime: String
11295
+ # @param UpdateTime: 分区更新时间
11296
+ # @type UpdateTime: String
11297
+ # @param LastUpdateSnapshotId: 最后一次分区更新的快照ID
11298
+ # @type LastUpdateSnapshotId: String
11299
+ # @param Location: 分区的location
11300
+ # @type Location: :class:`Tencentcloud::Dlc.v20210125.models.LocationInfo`
11301
+
11302
+ attr_accessor :Partition, :Records, :DataFileSize, :DataFileStorage, :CreateTime, :UpdateTime, :LastUpdateSnapshotId, :Location
11303
+
11304
+ def initialize(partition=nil, records=nil, datafilesize=nil, datafilestorage=nil, createtime=nil, updatetime=nil, lastupdatesnapshotid=nil, location=nil)
11305
+ @Partition = partition
11306
+ @Records = records
11307
+ @DataFileSize = datafilesize
11308
+ @DataFileStorage = datafilestorage
11309
+ @CreateTime = createtime
11310
+ @UpdateTime = updatetime
11311
+ @LastUpdateSnapshotId = lastupdatesnapshotid
11312
+ @Location = location
11313
+ end
11314
+
11315
+ def deserialize(params)
11316
+ @Partition = params['Partition']
11317
+ @Records = params['Records']
11318
+ @DataFileSize = params['DataFileSize']
11319
+ @DataFileStorage = params['DataFileStorage']
11320
+ @CreateTime = params['CreateTime']
11321
+ @UpdateTime = params['UpdateTime']
11322
+ @LastUpdateSnapshotId = params['LastUpdateSnapshotId']
11323
+ unless params['Location'].nil?
11324
+ @Location = LocationInfo.new
11325
+ @Location.deserialize(params['Location'])
11326
+ end
11327
+ end
11328
+ end
11329
+
11200
11330
  # ip端口对信息
11201
11331
  class IpPortPair < TencentCloud::Common::AbstractModel
11202
11332
  # @param Ip: ip信息
@@ -11581,6 +11711,26 @@ module TencentCloud
11581
11711
  end
11582
11712
  end
11583
11713
 
11714
+ # Location信息结构
11715
+ class LocationInfo < TencentCloud::Common::AbstractModel
11716
+ # @param Bucket: 桶名称
11717
+ # @type Bucket: String
11718
+ # @param DataLocation: location路径
11719
+ # @type DataLocation: String
11720
+
11721
+ attr_accessor :Bucket, :DataLocation
11722
+
11723
+ def initialize(bucket=nil, datalocation=nil)
11724
+ @Bucket = bucket
11725
+ @DataLocation = datalocation
11726
+ end
11727
+
11728
+ def deserialize(params)
11729
+ @Bucket = params['Bucket']
11730
+ @DataLocation = params['DataLocation']
11731
+ end
11732
+ end
11733
+
11584
11734
  # 元数据加锁内容
11585
11735
  class LockComponentInfo < TencentCloud::Common::AbstractModel
11586
11736
  # @param DbName: 数据库名称
@@ -11688,6 +11838,52 @@ module TencentCloud
11688
11838
  end
11689
11839
  end
11690
11840
 
11841
+ # DLC分区信息查询返回数据结构
11842
+ class MixedTablePartitions < TencentCloud::Common::AbstractModel
11843
+ # @param TableFormat: 数据表格式
11844
+ # @type TableFormat: String
11845
+ # @param TotalSize: 分区总数
11846
+ # @type TotalSize: Integer
11847
+ # @param NextCursor: 分页查询的游标信息,在获取下一页信息时需要回传到服务端
11848
+ # @type NextCursor: String
11849
+ # @param IcebergPartitions: iceberg表分区信息
11850
+ # @type IcebergPartitions: Array
11851
+ # @param HivePartitions: hive表分区信息
11852
+ # @type HivePartitions: Array
11853
+
11854
+ attr_accessor :TableFormat, :TotalSize, :NextCursor, :IcebergPartitions, :HivePartitions
11855
+
11856
+ def initialize(tableformat=nil, totalsize=nil, nextcursor=nil, icebergpartitions=nil, hivepartitions=nil)
11857
+ @TableFormat = tableformat
11858
+ @TotalSize = totalsize
11859
+ @NextCursor = nextcursor
11860
+ @IcebergPartitions = icebergpartitions
11861
+ @HivePartitions = hivepartitions
11862
+ end
11863
+
11864
+ def deserialize(params)
11865
+ @TableFormat = params['TableFormat']
11866
+ @TotalSize = params['TotalSize']
11867
+ @NextCursor = params['NextCursor']
11868
+ unless params['IcebergPartitions'].nil?
11869
+ @IcebergPartitions = []
11870
+ params['IcebergPartitions'].each do |i|
11871
+ icebergtablepartition_tmp = IcebergTablePartition.new
11872
+ icebergtablepartition_tmp.deserialize(i)
11873
+ @IcebergPartitions << icebergtablepartition_tmp
11874
+ end
11875
+ end
11876
+ unless params['HivePartitions'].nil?
11877
+ @HivePartitions = []
11878
+ params['HivePartitions'].each do |i|
11879
+ hivetablepartition_tmp = HiveTablePartition.new
11880
+ hivetablepartition_tmp.deserialize(i)
11881
+ @HivePartitions << hivetablepartition_tmp
11882
+ end
11883
+ end
11884
+ end
11885
+ end
11886
+
11691
11887
  # ModifyAdvancedStoreLocation请求参数结构体
11692
11888
  class ModifyAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
11693
11889
  # @param StoreLocation: 查询结果保存cos路径
@@ -13857,6 +14053,26 @@ module TencentCloud
13857
14053
  end
13858
14054
  end
13859
14055
 
14056
+ # 排序结构
14057
+ class Sort < TencentCloud::Common::AbstractModel
14058
+ # @param Field: 排序字段
14059
+ # @type Field: String
14060
+ # @param Asc: 是否按照ASC排序,否则DESC排序
14061
+ # @type Asc: Boolean
14062
+
14063
+ attr_accessor :Field, :Asc
14064
+
14065
+ def initialize(field=nil, asc=nil)
14066
+ @Field = field
14067
+ @Asc = asc
14068
+ end
14069
+
14070
+ def deserialize(params)
14071
+ @Field = params['Field']
14072
+ @Asc = params['Asc']
14073
+ end
14074
+ end
14075
+
13860
14076
  # spark作业详情。
13861
14077
  class SparkJobInfo < TencentCloud::Common::AbstractModel
13862
14078
  # @param JobId: spark作业ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dlc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1136
4
+ version: 3.0.1138
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-04 00:00:00.000000000 Z
11
+ date: 2025-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common