tencentcloud-sdk-dlc 3.0.396 → 3.0.398
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210125/models.rb +56 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b1a8d2c3b1e69e78110cbc99cdf2ebc1f4f9997
|
4
|
+
data.tar.gz: 668cab2937c2ad69adce450d017c35cfd7507e9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6325ba7185d1e62021018aa1b6b24353e1d92f87efbc2bc575802ac25e87cea4c7abc2fc2ec2d6d36a276a79dfe47f3517048588cfdb19970ad81ede4e0ab1b3
|
7
|
+
data.tar.gz: c8c3e45dbdb9982d993733c923b48e5f7b6a04993593c9807b82946839b1011c3aadf491c7d4db41c7a1735ca2a17a05a5ccd18528ad3b22f11ce2943a2bbeda
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.398
|
data/lib/v20210125/models.rb
CHANGED
@@ -3331,7 +3331,7 @@ module TencentCloud
|
|
3331
3331
|
class DescribeTaskResultRequest < TencentCloud::Common::AbstractModel
|
3332
3332
|
# @param TaskId: 任务唯一ID
|
3333
3333
|
# @type TaskId: String
|
3334
|
-
# @param NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回
|
3334
|
+
# @param NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
|
3335
3335
|
# @type NextToken: String
|
3336
3336
|
# @param MaxResults: 返回结果的最大行数,范围0~1000,默认为1000.
|
3337
3337
|
# @type MaxResults: Integer
|
@@ -3437,14 +3437,18 @@ module TencentCloud
|
|
3437
3437
|
# @type TaskList: Array
|
3438
3438
|
# @param TotalCount: 实例总数。
|
3439
3439
|
# @type TotalCount: Integer
|
3440
|
+
# @param TasksOverview: 任务概览信息
|
3441
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3442
|
+
# @type TasksOverview: :class:`Tencentcloud::Dlc.v20210125.models.TasksOverview`
|
3440
3443
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3441
3444
|
# @type RequestId: String
|
3442
3445
|
|
3443
|
-
attr_accessor :TaskList, :TotalCount, :RequestId
|
3446
|
+
attr_accessor :TaskList, :TotalCount, :TasksOverview, :RequestId
|
3444
3447
|
|
3445
|
-
def initialize(tasklist=nil, totalcount=nil, requestid=nil)
|
3448
|
+
def initialize(tasklist=nil, totalcount=nil, tasksoverview=nil, requestid=nil)
|
3446
3449
|
@TaskList = tasklist
|
3447
3450
|
@TotalCount = totalcount
|
3451
|
+
@TasksOverview = tasksoverview
|
3448
3452
|
@RequestId = requestid
|
3449
3453
|
end
|
3450
3454
|
|
@@ -3458,6 +3462,10 @@ module TencentCloud
|
|
3458
3462
|
end
|
3459
3463
|
end
|
3460
3464
|
@TotalCount = params['TotalCount']
|
3465
|
+
unless params['TasksOverview'].nil?
|
3466
|
+
@TasksOverview = TasksOverview.new
|
3467
|
+
@TasksOverview.deserialize(params['TasksOverview'])
|
3468
|
+
end
|
3461
3469
|
@RequestId = params['RequestId']
|
3462
3470
|
end
|
3463
3471
|
end
|
@@ -5101,7 +5109,7 @@ module TencentCloud
|
|
5101
5109
|
end
|
5102
5110
|
end
|
5103
5111
|
|
5104
|
-
#
|
5112
|
+
# 任务实例。
|
5105
5113
|
class TaskResponseInfo < TencentCloud::Common::AbstractModel
|
5106
5114
|
# @param DatabaseName: 任务所属Database的名称。
|
5107
5115
|
# @type DatabaseName: String
|
@@ -5109,7 +5117,7 @@ module TencentCloud
|
|
5109
5117
|
# @type DataAmount: Integer
|
5110
5118
|
# @param Id: 任务Id。
|
5111
5119
|
# @type Id: String
|
5112
|
-
# @param UsedTime:
|
5120
|
+
# @param UsedTime: 计算耗时,单位: ms
|
5113
5121
|
# @type UsedTime: Integer
|
5114
5122
|
# @param OutputPath: 任务输出路径。
|
5115
5123
|
# @type OutputPath: String
|
@@ -5178,10 +5186,13 @@ module TencentCloud
|
|
5178
5186
|
# @param UiUrl: spark ui url
|
5179
5187
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5180
5188
|
# @type UiUrl: String
|
5189
|
+
# @param TotalTime: 任务耗时,单位: ms
|
5190
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5191
|
+
# @type TotalTime: Integer
|
5181
5192
|
|
5182
|
-
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, :UserAlias, :SparkJobName, :SparkJobId, :SparkJobFile, :UiUrl
|
5193
|
+
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, :UserAlias, :SparkJobName, :SparkJobId, :SparkJobFile, :UiUrl, :TotalTime
|
5183
5194
|
|
5184
|
-
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, useralias=nil, sparkjobname=nil, sparkjobid=nil, sparkjobfile=nil, uiurl=nil)
|
5195
|
+
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, useralias=nil, sparkjobname=nil, sparkjobid=nil, sparkjobfile=nil, uiurl=nil, totaltime=nil)
|
5185
5196
|
@DatabaseName = databasename
|
5186
5197
|
@DataAmount = dataamount
|
5187
5198
|
@Id = id
|
@@ -5212,6 +5223,7 @@ module TencentCloud
|
|
5212
5223
|
@SparkJobId = sparkjobid
|
5213
5224
|
@SparkJobFile = sparkjobfile
|
5214
5225
|
@UiUrl = uiurl
|
5226
|
+
@TotalTime = totaltime
|
5215
5227
|
end
|
5216
5228
|
|
5217
5229
|
def deserialize(params)
|
@@ -5245,10 +5257,11 @@ module TencentCloud
|
|
5245
5257
|
@SparkJobId = params['SparkJobId']
|
5246
5258
|
@SparkJobFile = params['SparkJobFile']
|
5247
5259
|
@UiUrl = params['UiUrl']
|
5260
|
+
@TotalTime = params['TotalTime']
|
5248
5261
|
end
|
5249
5262
|
end
|
5250
5263
|
|
5251
|
-
#
|
5264
|
+
# 任务结果信息。
|
5252
5265
|
class TaskResultInfo < TencentCloud::Common::AbstractModel
|
5253
5266
|
# @param TaskId: 任务唯一ID
|
5254
5267
|
# @type TaskId: String
|
@@ -5266,7 +5279,7 @@ module TencentCloud
|
|
5266
5279
|
# @type State: Integer
|
5267
5280
|
# @param DataAmount: 扫描的数据量,单位byte
|
5268
5281
|
# @type DataAmount: Integer
|
5269
|
-
# @param UsedTime:
|
5282
|
+
# @param UsedTime: 计算耗时,单位: ms
|
5270
5283
|
# @type UsedTime: Integer
|
5271
5284
|
# @param OutputPath: 任务结果输出的COS桶地址
|
5272
5285
|
# @type OutputPath: String
|
@@ -5290,10 +5303,12 @@ module TencentCloud
|
|
5290
5303
|
# @type ProgressDetail: String
|
5291
5304
|
# @param DisplayFormat: 控制台展示格式。table:表格展示 text:文本展示
|
5292
5305
|
# @type DisplayFormat: String
|
5306
|
+
# @param TotalTime: 任务耗时,单位: ms
|
5307
|
+
# @type TotalTime: Integer
|
5293
5308
|
|
5294
|
-
attr_accessor :TaskId, :DatasourceConnectionName, :DatabaseName, :SQL, :SQLType, :State, :DataAmount, :UsedTime, :OutputPath, :CreateTime, :OutputMessage, :RowAffectInfo, :ResultSchema, :ResultSet, :NextToken, :Percentage, :ProgressDetail, :DisplayFormat
|
5309
|
+
attr_accessor :TaskId, :DatasourceConnectionName, :DatabaseName, :SQL, :SQLType, :State, :DataAmount, :UsedTime, :OutputPath, :CreateTime, :OutputMessage, :RowAffectInfo, :ResultSchema, :ResultSet, :NextToken, :Percentage, :ProgressDetail, :DisplayFormat, :TotalTime
|
5295
5310
|
|
5296
|
-
def initialize(taskid=nil, datasourceconnectionname=nil, databasename=nil, sql=nil, sqltype=nil, state=nil, dataamount=nil, usedtime=nil, outputpath=nil, createtime=nil, outputmessage=nil, rowaffectinfo=nil, resultschema=nil, resultset=nil, nexttoken=nil, percentage=nil, progressdetail=nil, displayformat=nil)
|
5311
|
+
def initialize(taskid=nil, datasourceconnectionname=nil, databasename=nil, sql=nil, sqltype=nil, state=nil, dataamount=nil, usedtime=nil, outputpath=nil, createtime=nil, outputmessage=nil, rowaffectinfo=nil, resultschema=nil, resultset=nil, nexttoken=nil, percentage=nil, progressdetail=nil, displayformat=nil, totaltime=nil)
|
5297
5312
|
@TaskId = taskid
|
5298
5313
|
@DatasourceConnectionName = datasourceconnectionname
|
5299
5314
|
@DatabaseName = databasename
|
@@ -5312,6 +5327,7 @@ module TencentCloud
|
|
5312
5327
|
@Percentage = percentage
|
5313
5328
|
@ProgressDetail = progressdetail
|
5314
5329
|
@DisplayFormat = displayformat
|
5330
|
+
@TotalTime = totaltime
|
5315
5331
|
end
|
5316
5332
|
|
5317
5333
|
def deserialize(params)
|
@@ -5340,6 +5356,7 @@ module TencentCloud
|
|
5340
5356
|
@Percentage = params['Percentage']
|
5341
5357
|
@ProgressDetail = params['ProgressDetail']
|
5342
5358
|
@DisplayFormat = params['DisplayFormat']
|
5359
|
+
@TotalTime = params['TotalTime']
|
5343
5360
|
end
|
5344
5361
|
end
|
5345
5362
|
|
@@ -5389,6 +5406,34 @@ module TencentCloud
|
|
5389
5406
|
end
|
5390
5407
|
end
|
5391
5408
|
|
5409
|
+
# 任务概览
|
5410
|
+
class TasksOverview < TencentCloud::Common::AbstractModel
|
5411
|
+
# @param TaskQueuedCount: 正在排队的任务个数
|
5412
|
+
# @type TaskQueuedCount: Integer
|
5413
|
+
# @param TaskInitCount: 初始化的任务个数
|
5414
|
+
# @type TaskInitCount: Integer
|
5415
|
+
# @param TaskRunningCount: 正在执行的任务个数
|
5416
|
+
# @type TaskRunningCount: Integer
|
5417
|
+
# @param TotalTaskCount: 当前时间范围的总任务个数
|
5418
|
+
# @type TotalTaskCount: Integer
|
5419
|
+
|
5420
|
+
attr_accessor :TaskQueuedCount, :TaskInitCount, :TaskRunningCount, :TotalTaskCount
|
5421
|
+
|
5422
|
+
def initialize(taskqueuedcount=nil, taskinitcount=nil, taskrunningcount=nil, totaltaskcount=nil)
|
5423
|
+
@TaskQueuedCount = taskqueuedcount
|
5424
|
+
@TaskInitCount = taskinitcount
|
5425
|
+
@TaskRunningCount = taskrunningcount
|
5426
|
+
@TotalTaskCount = totaltaskcount
|
5427
|
+
end
|
5428
|
+
|
5429
|
+
def deserialize(params)
|
5430
|
+
@TaskQueuedCount = params['TaskQueuedCount']
|
5431
|
+
@TaskInitCount = params['TaskInitCount']
|
5432
|
+
@TaskRunningCount = params['TaskRunningCount']
|
5433
|
+
@TotalTaskCount = params['TotalTaskCount']
|
5434
|
+
end
|
5435
|
+
end
|
5436
|
+
|
5392
5437
|
# 文本格式
|
5393
5438
|
class TextFile < TencentCloud::Common::AbstractModel
|
5394
5439
|
# @param Format: 文本类型,本参数取值为TextFile。
|
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.
|
4
|
+
version: 3.0.398
|
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-08-
|
11
|
+
date: 2022-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|