tencentcloud-sdk-dlc 1.0.364 → 3.0.371
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 +25 -5
- 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: f55a2948fe72404edf107e88d1a4010b4af3c71a
|
4
|
+
data.tar.gz: 57a713058da134fffbdce4818b523dc00d1efcc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 871ff2078a8548a8a44d4197ef4b128e84b7073773343c85dc8950dfa53ce20624407a68891cc23033b261f4d59e862901b8531c090ffc1e31da1a4351993315
|
7
|
+
data.tar.gz: 4d520c255f01f9762a0f7bde305e92231090bd4607a6e59ad80b2b36a9415a9f65e7cbb873212f597a84e54a81cedaf33f78eeedea93cd93e83d61a0c444bf54
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.371
|
data/lib/v20210125/models.rb
CHANGED
@@ -4025,19 +4025,25 @@ module TencentCloud
|
|
4025
4025
|
# @type StartTime: Integer
|
4026
4026
|
# @param EndTime: 结束运行时间,unix时间戳(毫秒)
|
4027
4027
|
# @type EndTime: Integer
|
4028
|
-
# @param Limit: 分页大小,最大
|
4028
|
+
# @param Limit: 分页大小,最大1000,配合Context一起使用
|
4029
4029
|
# @type Limit: Integer
|
4030
4030
|
# @param Context: 下一次分页参数,第一次传空
|
4031
4031
|
# @type Context: String
|
4032
|
+
# @param Asc: 最近1000条日志是否升序排列,true:升序排序,false:倒序,默认false,倒序排列
|
4033
|
+
# @type Asc: Boolean
|
4034
|
+
# @param Filters: 预览日志的通用过滤条件
|
4035
|
+
# @type Filters: Array
|
4032
4036
|
|
4033
|
-
attr_accessor :TaskId, :StartTime, :EndTime, :Limit, :Context
|
4037
|
+
attr_accessor :TaskId, :StartTime, :EndTime, :Limit, :Context, :Asc, :Filters
|
4034
4038
|
|
4035
|
-
def initialize(taskid=nil, starttime=nil, endtime=nil, limit=nil, context=nil)
|
4039
|
+
def initialize(taskid=nil, starttime=nil, endtime=nil, limit=nil, context=nil, asc=nil, filters=nil)
|
4036
4040
|
@TaskId = taskid
|
4037
4041
|
@StartTime = starttime
|
4038
4042
|
@EndTime = endtime
|
4039
4043
|
@Limit = limit
|
4040
4044
|
@Context = context
|
4045
|
+
@Asc = asc
|
4046
|
+
@Filters = filters
|
4041
4047
|
end
|
4042
4048
|
|
4043
4049
|
def deserialize(params)
|
@@ -4046,6 +4052,15 @@ module TencentCloud
|
|
4046
4052
|
@EndTime = params['EndTime']
|
4047
4053
|
@Limit = params['Limit']
|
4048
4054
|
@Context = params['Context']
|
4055
|
+
@Asc = params['Asc']
|
4056
|
+
unless params['Filters'].nil?
|
4057
|
+
@Filters = []
|
4058
|
+
params['Filters'].each do |i|
|
4059
|
+
filter_tmp = Filter.new
|
4060
|
+
filter_tmp.deserialize(i)
|
4061
|
+
@Filters << filter_tmp
|
4062
|
+
end
|
4063
|
+
end
|
4049
4064
|
end
|
4050
4065
|
end
|
4051
4066
|
|
@@ -4735,10 +4750,13 @@ module TencentCloud
|
|
4735
4750
|
# @param TaskNum: 当前job正在运行或准备运行的任务个数
|
4736
4751
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4737
4752
|
# @type TaskNum: Integer
|
4753
|
+
# @param DataEngineStatus: 引擎状态:-100(默认:未知状态),-2~11:引擎正常状态;
|
4754
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4755
|
+
# @type DataEngineStatus: Integer
|
4738
4756
|
|
4739
|
-
attr_accessor :JobId, :JobName, :JobType, :DataEngine, :Eni, :IsLocal, :JobFile, :RoleArn, :MainClass, :CmdArgs, :JobConf, :IsLocalJars, :JobJars, :IsLocalFiles, :JobFiles, :JobDriverSize, :JobExecutorSize, :JobExecutorNums, :JobMaxAttempts, :JobCreator, :JobCreateTime, :JobUpdateTime, :CurrentTaskId, :JobStatus, :StreamingStat, :DataSource, :IsLocalPythonFiles, :AppPythonFiles, :IsLocalArchives, :JobArchives, :JobPythonFiles, :TaskNum
|
4757
|
+
attr_accessor :JobId, :JobName, :JobType, :DataEngine, :Eni, :IsLocal, :JobFile, :RoleArn, :MainClass, :CmdArgs, :JobConf, :IsLocalJars, :JobJars, :IsLocalFiles, :JobFiles, :JobDriverSize, :JobExecutorSize, :JobExecutorNums, :JobMaxAttempts, :JobCreator, :JobCreateTime, :JobUpdateTime, :CurrentTaskId, :JobStatus, :StreamingStat, :DataSource, :IsLocalPythonFiles, :AppPythonFiles, :IsLocalArchives, :JobArchives, :JobPythonFiles, :TaskNum, :DataEngineStatus
|
4740
4758
|
|
4741
|
-
def initialize(jobid=nil, jobname=nil, jobtype=nil, dataengine=nil, eni=nil, islocal=nil, jobfile=nil, rolearn=nil, mainclass=nil, cmdargs=nil, jobconf=nil, islocaljars=nil, jobjars=nil, islocalfiles=nil, jobfiles=nil, jobdriversize=nil, jobexecutorsize=nil, jobexecutornums=nil, jobmaxattempts=nil, jobcreator=nil, jobcreatetime=nil, jobupdatetime=nil, currenttaskid=nil, jobstatus=nil, streamingstat=nil, datasource=nil, islocalpythonfiles=nil, apppythonfiles=nil, islocalarchives=nil, jobarchives=nil, jobpythonfiles=nil, tasknum=nil)
|
4759
|
+
def initialize(jobid=nil, jobname=nil, jobtype=nil, dataengine=nil, eni=nil, islocal=nil, jobfile=nil, rolearn=nil, mainclass=nil, cmdargs=nil, jobconf=nil, islocaljars=nil, jobjars=nil, islocalfiles=nil, jobfiles=nil, jobdriversize=nil, jobexecutorsize=nil, jobexecutornums=nil, jobmaxattempts=nil, jobcreator=nil, jobcreatetime=nil, jobupdatetime=nil, currenttaskid=nil, jobstatus=nil, streamingstat=nil, datasource=nil, islocalpythonfiles=nil, apppythonfiles=nil, islocalarchives=nil, jobarchives=nil, jobpythonfiles=nil, tasknum=nil, dataenginestatus=nil)
|
4742
4760
|
@JobId = jobid
|
4743
4761
|
@JobName = jobname
|
4744
4762
|
@JobType = jobtype
|
@@ -4771,6 +4789,7 @@ module TencentCloud
|
|
4771
4789
|
@JobArchives = jobarchives
|
4772
4790
|
@JobPythonFiles = jobpythonfiles
|
4773
4791
|
@TaskNum = tasknum
|
4792
|
+
@DataEngineStatus = dataenginestatus
|
4774
4793
|
end
|
4775
4794
|
|
4776
4795
|
def deserialize(params)
|
@@ -4809,6 +4828,7 @@ module TencentCloud
|
|
4809
4828
|
@JobArchives = params['JobArchives']
|
4810
4829
|
@JobPythonFiles = params['JobPythonFiles']
|
4811
4830
|
@TaskNum = params['TaskNum']
|
4831
|
+
@DataEngineStatus = params['DataEngineStatus']
|
4812
4832
|
end
|
4813
4833
|
end
|
4814
4834
|
|
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:
|
4
|
+
version: 3.0.371
|
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-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|