tencentcloud-sdk-dlc 1.0.225 → 1.0.226

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: 480b15f926a7904cca3ab835141cd09c43b7563d
4
- data.tar.gz: 518ce34e1142b7fdf48eecf871d843962486bad2
3
+ metadata.gz: 2b81bb9678c70bf90340ab00a0d55d84aa44b04c
4
+ data.tar.gz: ae9f5dd6207dd176bc54e655a0777e3e24738d10
5
5
  SHA512:
6
- metadata.gz: 3fd696e8a88f588ed95137515b26338b3cb1cfdcbd54abc3ae1d5011f5144e9355535f3154da7418d81ad0cf4f0e10dddedfbd065d3e4f24f65e174077f036ef
7
- data.tar.gz: 15c98a3b8d3e222c999e1aa7ac09b778d966a1eb08cd3704fb38e55537953f7db0e311a932903533c232f39935352ee77314176db4c5f532f5ec5b181661f46d
6
+ metadata.gz: 2d6833683d15f7b56823faa3a1c8ea54072a218dc5f85e85bdcfbfa8cb011aebc43da97ade8e33c3db7cf28691f6b2df1f333ef2b664c58f66dd3c14febf1ab2
7
+ data.tar.gz: 63f1e8996238ac251a7dba5540759866c8f8d2a6b511cf6a7b31372896dafaf18b0015ca1e433bfb65d1f662f2c68536853eaf5575e4abaa48e8ce5263f6d632
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.225
1
+ 1.0.226
@@ -125,7 +125,7 @@ module TencentCloud
125
125
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
126
126
  end
127
127
 
128
- # 取消任务执行
128
+ # 本接口(CancelTask),用于取消任务执行
129
129
 
130
130
  # @param request: Request instance for CancelTask.
131
131
  # @type request: :class:`Tencentcloud::dlc::V20210125::CancelTaskRequest`
@@ -269,7 +269,7 @@ module TencentCloud
269
269
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
270
270
  end
271
271
 
272
- # 批量创建任务
272
+ # 本接口(CreateTasks),用于批量创建任务
273
273
 
274
274
  # @param request: Request instance for CreateTasks.
275
275
  # @type request: :class:`Tencentcloud::dlc::V20210125::CreateTasksRequest`
@@ -533,7 +533,7 @@ module TencentCloud
533
533
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
534
534
  end
535
535
 
536
- # 查询单个表的详细信息。
536
+ # 本接口(DescribeTable),用于查询单个表的详细信息。
537
537
 
538
538
  # @param request: Request instance for DescribeTable.
539
539
  # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeTableRequest`
@@ -557,7 +557,7 @@ module TencentCloud
557
557
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
558
558
  end
559
559
 
560
- # 本接口(DescribleTables)用于查询数据表列表。
560
+ # 本接口(DescribeTables)用于查询数据表列表。
561
561
 
562
562
  # @param request: Request instance for DescribeTables.
563
563
  # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeTablesRequest`
@@ -281,16 +281,28 @@ module TencentCloud
281
281
  # @param Nullable: 是否为null
282
282
  # 注意:此字段可能返回 null,表示取不到有效值。
283
283
  # @type Nullable: String
284
+ # @param Position: 字段位置
285
+ # 注意:此字段可能返回 null,表示取不到有效值。
286
+ # @type Position: Integer
287
+ # @param CreateTime: 字段创建时间
288
+ # 注意:此字段可能返回 null,表示取不到有效值。
289
+ # @type CreateTime: String
290
+ # @param ModifiedTime: 字段修改时间
291
+ # 注意:此字段可能返回 null,表示取不到有效值。
292
+ # @type ModifiedTime: String
284
293
 
285
- attr_accessor :Name, :Type, :Comment, :Precision, :Scale, :Nullable
294
+ attr_accessor :Name, :Type, :Comment, :Precision, :Scale, :Nullable, :Position, :CreateTime, :ModifiedTime
286
295
 
287
- def initialize(name=nil, type=nil, comment=nil, precision=nil, scale=nil, nullable=nil)
296
+ def initialize(name=nil, type=nil, comment=nil, precision=nil, scale=nil, nullable=nil, position=nil, createtime=nil, modifiedtime=nil)
288
297
  @Name = name
289
298
  @Type = type
290
299
  @Comment = comment
291
300
  @Precision = precision
292
301
  @Scale = scale
293
302
  @Nullable = nullable
303
+ @Position = position
304
+ @CreateTime = createtime
305
+ @ModifiedTime = modifiedtime
294
306
  end
295
307
 
296
308
  def deserialize(params)
@@ -300,6 +312,9 @@ module TencentCloud
300
312
  @Precision = params['Precision']
301
313
  @Scale = params['Scale']
302
314
  @Nullable = params['Nullable']
315
+ @Position = params['Position']
316
+ @CreateTime = params['CreateTime']
317
+ @ModifiedTime = params['ModifiedTime']
303
318
  end
304
319
  end
305
320
 
@@ -307,7 +322,7 @@ module TencentCloud
307
322
  class CreateDatabaseRequest < TencentCloud::Common::AbstractModel
308
323
  # @param DatabaseInfo: 数据库基础信息
309
324
  # @type DatabaseInfo: :class:`Tencentcloud::Dlc.v20210125.models.DatabaseInfo`
310
- # @param DatasourceConnectionName: 数据源名称,默认为CosDataCatalog
325
+ # @param DatasourceConnectionName: 数据源名称,默认为DataLakeCatalog
311
326
  # @type DatasourceConnectionName: String
312
327
 
313
328
  attr_accessor :DatabaseInfo, :DatasourceConnectionName
@@ -475,13 +490,16 @@ module TencentCloud
475
490
  # @type DatabaseName: String
476
491
  # @param DatasourceConnectionName: 默认数据源名称。
477
492
  # @type DatasourceConnectionName: String
493
+ # @param DataEngineName: 数据引擎名称,不填提交到默认集群
494
+ # @type DataEngineName: String
478
495
 
479
- attr_accessor :Task, :DatabaseName, :DatasourceConnectionName
496
+ attr_accessor :Task, :DatabaseName, :DatasourceConnectionName, :DataEngineName
480
497
 
481
- def initialize(task=nil, databasename=nil, datasourceconnectionname=nil)
498
+ def initialize(task=nil, databasename=nil, datasourceconnectionname=nil, dataenginename=nil)
482
499
  @Task = task
483
500
  @DatabaseName = databasename
484
501
  @DatasourceConnectionName = datasourceconnectionname
502
+ @DataEngineName = dataenginename
485
503
  end
486
504
 
487
505
  def deserialize(params)
@@ -491,6 +509,7 @@ module TencentCloud
491
509
  end
492
510
  @DatabaseName = params['DatabaseName']
493
511
  @DatasourceConnectionName = params['DatasourceConnectionName']
512
+ @DataEngineName = params['DataEngineName']
494
513
  end
495
514
  end
496
515
 
@@ -572,15 +591,18 @@ module TencentCloud
572
591
  # @type DatabaseName: String
573
592
  # @param Tasks: SQL任务信息
574
593
  # @type Tasks: :class:`Tencentcloud::Dlc.v20210125.models.TasksInfo`
575
- # @param DatasourceConnectionName: 数据源名称,默认为COSDataCatalog
594
+ # @param DatasourceConnectionName: 数据源名称,默认为DataLakeCatalog
576
595
  # @type DatasourceConnectionName: String
596
+ # @param DataEngineName: 计算引擎名称,不填任务提交到默认集群
597
+ # @type DataEngineName: String
577
598
 
578
- attr_accessor :DatabaseName, :Tasks, :DatasourceConnectionName
599
+ attr_accessor :DatabaseName, :Tasks, :DatasourceConnectionName, :DataEngineName
579
600
 
580
- def initialize(databasename=nil, tasks=nil, datasourceconnectionname=nil)
601
+ def initialize(databasename=nil, tasks=nil, datasourceconnectionname=nil, dataenginename=nil)
581
602
  @DatabaseName = databasename
582
603
  @Tasks = tasks
583
604
  @DatasourceConnectionName = datasourceconnectionname
605
+ @DataEngineName = dataenginename
584
606
  end
585
607
 
586
608
  def deserialize(params)
@@ -590,6 +612,7 @@ module TencentCloud
590
612
  @Tasks.deserialize(params['Tasks'])
591
613
  end
592
614
  @DatasourceConnectionName = params['DatasourceConnectionName']
615
+ @DataEngineName = params['DataEngineName']
593
616
  end
594
617
  end
595
618
 
@@ -777,21 +800,25 @@ module TencentCloud
777
800
 
778
801
  # 数据库对象
779
802
  class DatabaseInfo < TencentCloud::Common::AbstractModel
780
- # @param DatabaseName: 数据库名称。
803
+ # @param DatabaseName: 数据库名称,长度0~128,支持数字、字母下划线,不允许数字大头,统一转换为小写。
781
804
  # @type DatabaseName: String
782
- # @param Comment: 数据库描述信息,长度 0~256
805
+ # @param Comment: 数据库描述信息,长度 0~500
783
806
  # 注意:此字段可能返回 null,表示取不到有效值。
784
807
  # @type Comment: String
785
808
  # @param Properties: 数据库属性列表。
786
809
  # 注意:此字段可能返回 null,表示取不到有效值。
787
810
  # @type Properties: Array
811
+ # @param Location: 数据库cos路径
812
+ # 注意:此字段可能返回 null,表示取不到有效值。
813
+ # @type Location: String
788
814
 
789
- attr_accessor :DatabaseName, :Comment, :Properties
815
+ attr_accessor :DatabaseName, :Comment, :Properties, :Location
790
816
 
791
- def initialize(databasename=nil, comment=nil, properties=nil)
817
+ def initialize(databasename=nil, comment=nil, properties=nil, location=nil)
792
818
  @DatabaseName = databasename
793
819
  @Comment = comment
794
820
  @Properties = properties
821
+ @Location = location
795
822
  end
796
823
 
797
824
  def deserialize(params)
@@ -805,6 +832,7 @@ module TencentCloud
805
832
  @Properties << property_tmp
806
833
  end
807
834
  end
835
+ @Location = params['Location']
808
836
  end
809
837
  end
810
838
 
@@ -815,7 +843,7 @@ module TencentCloud
815
843
  # @param Comment: 数据库描述信息,长度 0~256。
816
844
  # 注意:此字段可能返回 null,表示取不到有效值。
817
845
  # @type Comment: String
818
- # @param Properties: 数据库属性列表。
846
+ # @param Properties: 允许针对数据库的属性元数据信息进行指定。
819
847
  # 注意:此字段可能返回 null,表示取不到有效值。
820
848
  # @type Properties: Array
821
849
  # @param CreateTime: 数据库创建时间戳,单位:s。
@@ -994,16 +1022,22 @@ module TencentCloud
994
1022
  # @type Offset: Integer
995
1023
  # @param KeyWord: 模糊匹配,库名关键字。
996
1024
  # @type KeyWord: String
997
- # @param DatasourceConnectionName: 数据源唯名称,该名称可以通过DescribeDatasourceConnection接口查询到。默认为CosDataCatalog
1025
+ # @param DatasourceConnectionName: 数据源唯名称,该名称可以通过DescribeDatasourceConnection接口查询到。默认为DataLakeCatalog
998
1026
  # @type DatasourceConnectionName: String
1027
+ # @param Sort: 排序字段,当前版本仅支持按库名排序
1028
+ # @type Sort: String
1029
+ # @param Asc: 排序类型:false:降序(默认)、true:升序
1030
+ # @type Asc: Boolean
999
1031
 
1000
- attr_accessor :Limit, :Offset, :KeyWord, :DatasourceConnectionName
1032
+ attr_accessor :Limit, :Offset, :KeyWord, :DatasourceConnectionName, :Sort, :Asc
1001
1033
 
1002
- def initialize(limit=nil, offset=nil, keyword=nil, datasourceconnectionname=nil)
1034
+ def initialize(limit=nil, offset=nil, keyword=nil, datasourceconnectionname=nil, sort=nil, asc=nil)
1003
1035
  @Limit = limit
1004
1036
  @Offset = offset
1005
1037
  @KeyWord = keyword
1006
1038
  @DatasourceConnectionName = datasourceconnectionname
1039
+ @Sort = sort
1040
+ @Asc = asc
1007
1041
  end
1008
1042
 
1009
1043
  def deserialize(params)
@@ -1011,6 +1045,8 @@ module TencentCloud
1011
1045
  @Offset = params['Offset']
1012
1046
  @KeyWord = params['KeyWord']
1013
1047
  @DatasourceConnectionName = params['DatasourceConnectionName']
1048
+ @Sort = params['Sort']
1049
+ @Asc = params['Asc']
1014
1050
  end
1015
1051
  end
1016
1052
 
@@ -1209,17 +1245,32 @@ module TencentCloud
1209
1245
  # table-name - String - (过滤条件)数据表名称,形如:table-001。
1210
1246
  # table-id - String - (过滤条件)table id形如:12342。
1211
1247
  # @type Filters: Array
1212
- # @param DatasourceConnectionName: 指定查询的数据源名称,默认为CosDataCatalog
1248
+ # @param DatasourceConnectionName: 指定查询的数据源名称,默认为DataLakeCatalog
1213
1249
  # @type DatasourceConnectionName: String
1250
+ # @param StartTime: 起始时间:用于对更新时间的筛选
1251
+ # @type StartTime: String
1252
+ # @param EndTime: 终止时间:用于对更新时间的筛选
1253
+ # @type EndTime: String
1254
+ # @param Sort: 排序字段,支持:ModifiedTime(默认);CreateTime
1255
+ # @type Sort: String
1256
+ # @param Asc: 排序字段,false:降序(默认);true
1257
+ # @type Asc: Boolean
1258
+ # @param TableType: table type,表类型查询,可用值:EXTERNAL_TABLE,INDEX_TABLE,MANAGED_TABLE,MATERIALIZED_VIEW,TABLE,VIEW,VIRTUAL_VIEW
1259
+ # @type TableType: String
1214
1260
 
1215
- attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName
1261
+ attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName, :StartTime, :EndTime, :Sort, :Asc, :TableType
1216
1262
 
1217
- def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil)
1263
+ def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil, starttime=nil, endtime=nil, sort=nil, asc=nil, tabletype=nil)
1218
1264
  @DatabaseName = databasename
1219
1265
  @Limit = limit
1220
1266
  @Offset = offset
1221
1267
  @Filters = filters
1222
1268
  @DatasourceConnectionName = datasourceconnectionname
1269
+ @StartTime = starttime
1270
+ @EndTime = endtime
1271
+ @Sort = sort
1272
+ @Asc = asc
1273
+ @TableType = tabletype
1223
1274
  end
1224
1275
 
1225
1276
  def deserialize(params)
@@ -1235,6 +1286,11 @@ module TencentCloud
1235
1286
  end
1236
1287
  end
1237
1288
  @DatasourceConnectionName = params['DatasourceConnectionName']
1289
+ @StartTime = params['StartTime']
1290
+ @EndTime = params['EndTime']
1291
+ @Sort = params['Sort']
1292
+ @Asc = params['Asc']
1293
+ @TableType = params['TableType']
1238
1294
  end
1239
1295
  end
1240
1296
 
@@ -1279,8 +1335,10 @@ module TencentCloud
1279
1335
  # task-id - String - (任务ID准确过滤)task-id取值形如:e386471f-139a-4e59-877f-50ece8135b99。
1280
1336
  # task-state - String - (任务状态过滤)取值范围 0(初始化), 1(运行中), 2(成功), -1(失败)。
1281
1337
  # task-sql-keyword - String - (SQL语句关键字模糊过滤)取值形如:DROP TABLE。
1338
+ # task-operator- string (子uin过滤)
1339
+ # task-type -string (任务类型过滤)分导入任务和sql任务
1282
1340
  # @type Filters: Array
1283
- # @param SortBy: 排序字段,支持如下字段类型,create-time
1341
+ # @param SortBy: 排序字段,支持如下字段类型,create-time(创建时间,默认)、update-time(更新时间)
1284
1342
  # @type SortBy: String
1285
1343
  # @param Sorting: 排序方式,desc表示正序,asc表示反序, 默认为asc。
1286
1344
  # @type Sorting: String
@@ -1288,10 +1346,12 @@ module TencentCloud
1288
1346
  # @type StartTime: String
1289
1347
  # @param EndTime: 结束时间点,格式为yyyy-mm-dd HH:MM:SS时间跨度在(0,30天],支持最近45天数据查询。默认为当前时刻
1290
1348
  # @type EndTime: String
1349
+ # @param DataEngineName: 支持计算资源名字筛选
1350
+ # @type DataEngineName: String
1291
1351
 
1292
- attr_accessor :Limit, :Offset, :Filters, :SortBy, :Sorting, :StartTime, :EndTime
1352
+ attr_accessor :Limit, :Offset, :Filters, :SortBy, :Sorting, :StartTime, :EndTime, :DataEngineName
1293
1353
 
1294
- def initialize(limit=nil, offset=nil, filters=nil, sortby=nil, sorting=nil, starttime=nil, endtime=nil)
1354
+ def initialize(limit=nil, offset=nil, filters=nil, sortby=nil, sorting=nil, starttime=nil, endtime=nil, dataenginename=nil)
1295
1355
  @Limit = limit
1296
1356
  @Offset = offset
1297
1357
  @Filters = filters
@@ -1299,6 +1359,7 @@ module TencentCloud
1299
1359
  @Sorting = sorting
1300
1360
  @StartTime = starttime
1301
1361
  @EndTime = endtime
1362
+ @DataEngineName = dataenginename
1302
1363
  end
1303
1364
 
1304
1365
  def deserialize(params)
@@ -1316,6 +1377,7 @@ module TencentCloud
1316
1377
  @Sorting = params['Sorting']
1317
1378
  @StartTime = params['StartTime']
1318
1379
  @EndTime = params['EndTime']
1380
+ @DataEngineName = params['DataEngineName']
1319
1381
  end
1320
1382
  end
1321
1383
 
@@ -1427,15 +1489,27 @@ module TencentCloud
1427
1489
  # @type Filters: Array
1428
1490
  # @param DatasourceConnectionName: 数据库所属的数据源名称
1429
1491
  # @type DatasourceConnectionName: String
1492
+ # @param Sort: 排序字段
1493
+ # @type Sort: String
1494
+ # @param Asc: 排序规则
1495
+ # @type Asc: Boolean
1496
+ # @param StartTime: 开始时间
1497
+ # @type StartTime: String
1498
+ # @param EndTime: 结束时间
1499
+ # @type EndTime: String
1430
1500
 
1431
- attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName
1501
+ attr_accessor :DatabaseName, :Limit, :Offset, :Filters, :DatasourceConnectionName, :Sort, :Asc, :StartTime, :EndTime
1432
1502
 
1433
- def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil)
1503
+ def initialize(databasename=nil, limit=nil, offset=nil, filters=nil, datasourceconnectionname=nil, sort=nil, asc=nil, starttime=nil, endtime=nil)
1434
1504
  @DatabaseName = databasename
1435
1505
  @Limit = limit
1436
1506
  @Offset = offset
1437
1507
  @Filters = filters
1438
1508
  @DatasourceConnectionName = datasourceconnectionname
1509
+ @Sort = sort
1510
+ @Asc = asc
1511
+ @StartTime = starttime
1512
+ @EndTime = endtime
1439
1513
  end
1440
1514
 
1441
1515
  def deserialize(params)
@@ -1451,6 +1525,10 @@ module TencentCloud
1451
1525
  end
1452
1526
  end
1453
1527
  @DatasourceConnectionName = params['DatasourceConnectionName']
1528
+ @Sort = params['Sort']
1529
+ @Asc = params['Asc']
1530
+ @StartTime = params['StartTime']
1531
+ @EndTime = params['EndTime']
1454
1532
  end
1455
1533
  end
1456
1534
 
@@ -1945,19 +2023,34 @@ module TencentCloud
1945
2023
  # @param DatasourceConnectionName: 该数据表所属数据源名字
1946
2024
  # 注意:此字段可能返回 null,表示取不到有效值。
1947
2025
  # @type DatasourceConnectionName: String
2026
+ # @param TableComment: 该数据表备注
2027
+ # 注意:此字段可能返回 null,表示取不到有效值。
2028
+ # @type TableComment: String
2029
+ # @param Type: 具体类型,表or视图
2030
+ # 注意:此字段可能返回 null,表示取不到有效值。
2031
+ # @type Type: String
2032
+ # @param TableFormat: 数据格式类型,hive,iceberg等
2033
+ # 注意:此字段可能返回 null,表示取不到有效值。
2034
+ # @type TableFormat: String
1948
2035
 
1949
- attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName
2036
+ attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat
1950
2037
 
1951
- def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil)
2038
+ def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil)
1952
2039
  @DatabaseName = databasename
1953
2040
  @TableName = tablename
1954
2041
  @DatasourceConnectionName = datasourceconnectionname
2042
+ @TableComment = tablecomment
2043
+ @Type = type
2044
+ @TableFormat = tableformat
1955
2045
  end
1956
2046
 
1957
2047
  def deserialize(params)
1958
2048
  @DatabaseName = params['DatabaseName']
1959
2049
  @TableName = params['TableName']
1960
2050
  @DatasourceConnectionName = params['DatasourceConnectionName']
2051
+ @TableComment = params['TableComment']
2052
+ @Type = params['Type']
2053
+ @TableFormat = params['TableFormat']
1961
2054
  end
1962
2055
  end
1963
2056
 
@@ -2152,10 +2245,34 @@ module TencentCloud
2152
2245
  # @param ProgressDetail: 任务进度明细
2153
2246
  # 注意:此字段可能返回 null,表示取不到有效值。
2154
2247
  # @type ProgressDetail: String
2248
+ # @param UpdateTime: 任务结束时间
2249
+ # 注意:此字段可能返回 null,表示取不到有效值。
2250
+ # @type UpdateTime: String
2251
+ # @param DataEngineId: 计算资源id
2252
+ # 注意:此字段可能返回 null,表示取不到有效值。
2253
+ # @type DataEngineId: String
2254
+ # @param OperateUin: 执行sql的子uin
2255
+ # 注意:此字段可能返回 null,表示取不到有效值。
2256
+ # @type OperateUin: String
2257
+ # @param DataEngineName: 计算资源名字
2258
+ # 注意:此字段可能返回 null,表示取不到有效值。
2259
+ # @type DataEngineName: String
2260
+ # @param InputType: 导入类型是本地导入还是cos
2261
+ # 注意:此字段可能返回 null,表示取不到有效值。
2262
+ # @type InputType: String
2263
+ # @param InputConf: 导入配置
2264
+ # 注意:此字段可能返回 null,表示取不到有效值。
2265
+ # @type InputConf: String
2266
+ # @param DataNumber: 数据条数
2267
+ # 注意:此字段可能返回 null,表示取不到有效值。
2268
+ # @type DataNumber: Integer
2269
+ # @param CanDownload: 查询数据能不能下载
2270
+ # 注意:此字段可能返回 null,表示取不到有效值。
2271
+ # @type CanDownload: Boolean
2155
2272
 
2156
- attr_accessor :DatabaseName, :DataAmount, :Id, :UsedTime, :OutputPath, :CreateTime, :State, :SQLType, :SQL, :ResultExpired, :RowAffectInfo, :DataSet, :Error, :Percentage, :OutputMessage, :TaskType, :ProgressDetail
2273
+ attr_accessor :DatabaseName, :DataAmount, :Id, :UsedTime, :OutputPath, :CreateTime, :State, :SQLType, :SQL, :ResultExpired, :RowAffectInfo, :DataSet, :Error, :Percentage, :OutputMessage, :TaskType, :ProgressDetail, :UpdateTime, :DataEngineId, :OperateUin, :DataEngineName, :InputType, :InputConf, :DataNumber, :CanDownload
2157
2274
 
2158
- def initialize(databasename=nil, dataamount=nil, id=nil, usedtime=nil, outputpath=nil, createtime=nil, state=nil, sqltype=nil, sql=nil, resultexpired=nil, rowaffectinfo=nil, dataset=nil, error=nil, percentage=nil, outputmessage=nil, tasktype=nil, progressdetail=nil)
2275
+ def initialize(databasename=nil, dataamount=nil, id=nil, usedtime=nil, outputpath=nil, createtime=nil, state=nil, sqltype=nil, sql=nil, resultexpired=nil, rowaffectinfo=nil, dataset=nil, error=nil, percentage=nil, outputmessage=nil, tasktype=nil, progressdetail=nil, updatetime=nil, dataengineid=nil, operateuin=nil, dataenginename=nil, inputtype=nil, inputconf=nil, datanumber=nil, candownload=nil)
2159
2276
  @DatabaseName = databasename
2160
2277
  @DataAmount = dataamount
2161
2278
  @Id = id
@@ -2173,6 +2290,14 @@ module TencentCloud
2173
2290
  @OutputMessage = outputmessage
2174
2291
  @TaskType = tasktype
2175
2292
  @ProgressDetail = progressdetail
2293
+ @UpdateTime = updatetime
2294
+ @DataEngineId = dataengineid
2295
+ @OperateUin = operateuin
2296
+ @DataEngineName = dataenginename
2297
+ @InputType = inputtype
2298
+ @InputConf = inputconf
2299
+ @DataNumber = datanumber
2300
+ @CanDownload = candownload
2176
2301
  end
2177
2302
 
2178
2303
  def deserialize(params)
@@ -2193,6 +2318,14 @@ module TencentCloud
2193
2318
  @OutputMessage = params['OutputMessage']
2194
2319
  @TaskType = params['TaskType']
2195
2320
  @ProgressDetail = params['ProgressDetail']
2321
+ @UpdateTime = params['UpdateTime']
2322
+ @DataEngineId = params['DataEngineId']
2323
+ @OperateUin = params['OperateUin']
2324
+ @DataEngineName = params['DataEngineName']
2325
+ @InputType = params['InputType']
2326
+ @InputConf = params['InputConf']
2327
+ @DataNumber = params['DataNumber']
2328
+ @CanDownload = params['CanDownload']
2196
2329
  end
2197
2330
  end
2198
2331
 
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.225
4
+ version: 1.0.226
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-16 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common