tencentcloud-sdk-dlc 1.0.309 → 1.0.310

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 +35 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db46a37ef893caba72f8b728995da80ce6ceae39
4
- data.tar.gz: 7300166625e9b1c289efe6ceac0f829bff147747
3
+ metadata.gz: 6aafebf4ca37b4dd431fb14c9b86a8e759f3c7c8
4
+ data.tar.gz: d611ab825933407566d1befeeea3432e419ad969
5
5
  SHA512:
6
- metadata.gz: 3d87c32f3f2371242e4a9e3a320e3e201749445e8bc2ed509088a97c5b83fb321e031cbb3f0ab0fd4685cda86fdd019f9dbded2f62f70a82c6120d1d1cbb6368
7
- data.tar.gz: af3956323df402086602465cdcb03aff7eefd00d091c30f9d4803aa90df417c85a5611ca5694c18749a344073e11a6bbe1fcb85607c7e7d98a26863efb3be072
6
+ metadata.gz: ca8489a89764bbc6ecc5c5bf9ecf907fa7208ecc50732aaf4f4c3e69a003241a367bc6fed4bb4719581f375b3ec45bd2142a63ccb8a22c12869cec2832ef9393
7
+ data.tar.gz: 34ab2c4712f161ad463fe713437701c4a58dcda860224244d0a7bcfb505ea9d9dfdcc917a4f43b910e635ee058ef2501fe5bd67650d0ac264a2516740a97d307
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.309
1
+ 1.0.310
@@ -1397,10 +1397,12 @@ module TencentCloud
1397
1397
  # @type Asc: Boolean
1398
1398
  # @param TableType: table type,表类型查询,可用值:EXTERNAL_TABLE,INDEX_TABLE,MANAGED_TABLE,MATERIALIZED_VIEW,TABLE,VIEW,VIRTUAL_VIEW
1399
1399
  # @type TableType: String
1400
+ # @param TableFormat: 筛选字段-表格式:不传(默认)为查全部;LAKEFS:托管表;ICEBERG:非托管iceberg表;HIVE:非托管hive表;OTHER:非托管其它;
1401
+ # @type TableFormat: String
1400
1402
 
1401
- attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName, :StartTime, :EndTime, :Sort, :Asc, :TableType
1403
+ attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName, :StartTime, :EndTime, :Sort, :Asc, :TableType, :TableFormat
1402
1404
 
1403
- def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil, starttime=nil, endtime=nil, sort=nil, asc=nil, tabletype=nil)
1405
+ def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil, starttime=nil, endtime=nil, sort=nil, asc=nil, tabletype=nil, tableformat=nil)
1404
1406
  @DatabaseName = databasename
1405
1407
  @Limit = limit
1406
1408
  @Offset = offset
@@ -1411,6 +1413,7 @@ module TencentCloud
1411
1413
  @Sort = sort
1412
1414
  @Asc = asc
1413
1415
  @TableType = tabletype
1416
+ @TableFormat = tableformat
1414
1417
  end
1415
1418
 
1416
1419
  def deserialize(params)
@@ -1431,6 +1434,7 @@ module TencentCloud
1431
1434
  @Sort = params['Sort']
1432
1435
  @Asc = params['Asc']
1433
1436
  @TableType = params['TableType']
1437
+ @TableFormat = params['TableFormat']
1434
1438
  end
1435
1439
  end
1436
1440
 
@@ -2076,19 +2080,34 @@ module TencentCloud
2076
2080
  # @type Type: String
2077
2081
  # @param Comment: 对分区的描述。
2078
2082
  # @type Comment: String
2083
+ # @param Transform: 隐式分区转换策略
2084
+ # 注意:此字段可能返回 null,表示取不到有效值。
2085
+ # @type Transform: String
2086
+ # @param TransformArgs: 转换策略参数
2087
+ # 注意:此字段可能返回 null,表示取不到有效值。
2088
+ # @type TransformArgs: Array
2089
+ # @param CreateTime: 创建时间
2090
+ # 注意:此字段可能返回 null,表示取不到有效值。
2091
+ # @type CreateTime: Integer
2079
2092
 
2080
- attr_accessor :Name, :Type, :Comment
2093
+ attr_accessor :Name, :Type, :Comment, :Transform, :TransformArgs, :CreateTime
2081
2094
 
2082
- def initialize(name=nil, type=nil, comment=nil)
2095
+ def initialize(name=nil, type=nil, comment=nil, transform=nil, transformargs=nil, createtime=nil)
2083
2096
  @Name = name
2084
2097
  @Type = type
2085
2098
  @Comment = comment
2099
+ @Transform = transform
2100
+ @TransformArgs = transformargs
2101
+ @CreateTime = createtime
2086
2102
  end
2087
2103
 
2088
2104
  def deserialize(params)
2089
2105
  @Name = params['Name']
2090
2106
  @Type = params['Type']
2091
2107
  @Comment = params['Comment']
2108
+ @Transform = params['Transform']
2109
+ @TransformArgs = params['TransformArgs']
2110
+ @CreateTime = params['CreateTime']
2092
2111
  end
2093
2112
  end
2094
2113
 
@@ -2131,10 +2150,16 @@ module TencentCloud
2131
2150
  # @param CreateTime: 权限创建的时间,入参不填
2132
2151
  # 注意:此字段可能返回 null,表示取不到有效值。
2133
2152
  # @type CreateTime: String
2153
+ # @param SourceId: 权限所属工作组的ID,只有当该权限的来源为工作组时才会有值。即仅当Source字段的值为WORKGROUP时该字段才有值。
2154
+ # 注意:此字段可能返回 null,表示取不到有效值。
2155
+ # @type SourceId: Integer
2156
+ # @param SourceName: 权限所属工作组的名称,只有当该权限的来源为工作组时才会有值。即仅当Source字段的值为WORKGROUP时该字段才有值。
2157
+ # 注意:此字段可能返回 null,表示取不到有效值。
2158
+ # @type SourceName: String
2134
2159
 
2135
- attr_accessor :Database, :Catalog, :Table, :Operation, :PolicyType, :Function, :View, :Column, :DataEngine, :ReAuth, :Source, :Mode, :Operator, :CreateTime
2160
+ attr_accessor :Database, :Catalog, :Table, :Operation, :PolicyType, :Function, :View, :Column, :DataEngine, :ReAuth, :Source, :Mode, :Operator, :CreateTime, :SourceId, :SourceName
2136
2161
 
2137
- def initialize(database=nil, catalog=nil, table=nil, operation=nil, policytype=nil, function=nil, view=nil, column=nil, dataengine=nil, reauth=nil, source=nil, mode=nil, operator=nil, createtime=nil)
2162
+ def initialize(database=nil, catalog=nil, table=nil, operation=nil, policytype=nil, function=nil, view=nil, column=nil, dataengine=nil, reauth=nil, source=nil, mode=nil, operator=nil, createtime=nil, sourceid=nil, sourcename=nil)
2138
2163
  @Database = database
2139
2164
  @Catalog = catalog
2140
2165
  @Table = table
@@ -2149,6 +2174,8 @@ module TencentCloud
2149
2174
  @Mode = mode
2150
2175
  @Operator = operator
2151
2176
  @CreateTime = createtime
2177
+ @SourceId = sourceid
2178
+ @SourceName = sourcename
2152
2179
  end
2153
2180
 
2154
2181
  def deserialize(params)
@@ -2166,6 +2193,8 @@ module TencentCloud
2166
2193
  @Mode = params['Mode']
2167
2194
  @Operator = params['Operator']
2168
2195
  @CreateTime = params['CreateTime']
2196
+ @SourceId = params['SourceId']
2197
+ @SourceName = params['SourceName']
2169
2198
  end
2170
2199
  end
2171
2200
 
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: 1.0.309
4
+ version: 1.0.310
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-05-10 00:00:00.000000000 Z
11
+ date: 2022-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common