tencentcloud-sdk-dlc 1.0.353 → 1.0.354

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 +44 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d396812ab3d96a66f49f07067f631ba6aa6e9e5
4
- data.tar.gz: 23b687f131267b57883d0dcd976f07eb1b2c9131
3
+ metadata.gz: 7c99bb2b72be35a99a515da740a590a8ec366704
4
+ data.tar.gz: 80e4e9174c4139177e6320219197c934f3131545
5
5
  SHA512:
6
- metadata.gz: ec9742b14e332a99224922ec1b014a52c96c218705abe0e239ff7eb6e954bc03267e5813309daa4d44ab57c128a97871c45a455d031f9cc1427df2fc615eeaf0
7
- data.tar.gz: 6ed5669fd131a03d6d50cc1220b00b4597a22ff010c6f58f489da5cbddd40d3b983b93689585714076dc5199ac9ec53ae32f215bda8470daa9fd9e8882482f9c
6
+ metadata.gz: 3f2df356602fa34209a04ece2759ed2c9119d6b13fa8db5d509621f10b11da9f930cd3e26b0348a3a45a146f61c2613f984b7e2afd004b4e057162da12a65e9c
7
+ data.tar.gz: b2dedfe6466e2d7c5fb3df42e7b37f1c85252a3851e908bfe993ce716ed06e0506a22259bf2e60b0b85a8cc9ffc39b1338b63a4679379c34ec40cfb6612bffa6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.353
1
+ 1.0.354
@@ -1167,10 +1167,14 @@ module TencentCloud
1167
1167
  # @type IsLocalPythonFiles: String
1168
1168
  # @param AppPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
1169
1169
  # @type AppPythonFiles: String
1170
+ # @param IsLocalArchives: archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
1171
+ # @type IsLocalArchives: String
1172
+ # @param AppArchives: archives:依赖资源
1173
+ # @type AppArchives: String
1170
1174
 
1171
- attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :CmdArgs, :MaxRetries, :DataSource, :IsLocalPythonFiles, :AppPythonFiles
1175
+ attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :CmdArgs, :MaxRetries, :DataSource, :IsLocalPythonFiles, :AppPythonFiles, :IsLocalArchives, :AppArchives
1172
1176
 
1173
- def initialize(appname=nil, apptype=nil, dataengine=nil, appfile=nil, rolearn=nil, appdriversize=nil, appexecutorsize=nil, appexecutornums=nil, eni=nil, islocal=nil, mainclass=nil, appconf=nil, islocaljars=nil, appjars=nil, islocalfiles=nil, appfiles=nil, cmdargs=nil, maxretries=nil, datasource=nil, islocalpythonfiles=nil, apppythonfiles=nil)
1177
+ def initialize(appname=nil, apptype=nil, dataengine=nil, appfile=nil, rolearn=nil, appdriversize=nil, appexecutorsize=nil, appexecutornums=nil, eni=nil, islocal=nil, mainclass=nil, appconf=nil, islocaljars=nil, appjars=nil, islocalfiles=nil, appfiles=nil, cmdargs=nil, maxretries=nil, datasource=nil, islocalpythonfiles=nil, apppythonfiles=nil, islocalarchives=nil, apparchives=nil)
1174
1178
  @AppName = appname
1175
1179
  @AppType = apptype
1176
1180
  @DataEngine = dataengine
@@ -1192,6 +1196,8 @@ module TencentCloud
1192
1196
  @DataSource = datasource
1193
1197
  @IsLocalPythonFiles = islocalpythonfiles
1194
1198
  @AppPythonFiles = apppythonfiles
1199
+ @IsLocalArchives = islocalarchives
1200
+ @AppArchives = apparchives
1195
1201
  end
1196
1202
 
1197
1203
  def deserialize(params)
@@ -1216,6 +1222,8 @@ module TencentCloud
1216
1222
  @DataSource = params['DataSource']
1217
1223
  @IsLocalPythonFiles = params['IsLocalPythonFiles']
1218
1224
  @AppPythonFiles = params['AppPythonFiles']
1225
+ @IsLocalArchives = params['IsLocalArchives']
1226
+ @AppArchives = params['AppArchives']
1219
1227
  end
1220
1228
  end
1221
1229
 
@@ -2970,7 +2978,7 @@ module TencentCloud
2970
2978
  # @type SortBy: String
2971
2979
  # @param Sorting: 正序或者倒序,例如:desc
2972
2980
  # @type Sorting: String
2973
- # @param Filters: 按照该参数过滤
2981
+ # @param Filters: 按照该参数过滤,支持spark-job-name
2974
2982
  # @type Filters: Array
2975
2983
  # @param StartTime: 更新时间起始点
2976
2984
  # @type StartTime: String
@@ -4198,10 +4206,14 @@ module TencentCloud
4198
4206
  # @type MaxRetries: Integer
4199
4207
  # @param DataSource: 数据源名
4200
4208
  # @type DataSource: String
4209
+ # @param IsLocalArchives: archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
4210
+ # @type IsLocalArchives: String
4211
+ # @param AppArchives: archives:依赖资源
4212
+ # @type AppArchives: String
4201
4213
 
4202
- attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :SparkAppId, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :IsLocalPythonFiles, :AppPythonFiles, :CmdArgs, :MaxRetries, :DataSource
4214
+ attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :SparkAppId, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :IsLocalPythonFiles, :AppPythonFiles, :CmdArgs, :MaxRetries, :DataSource, :IsLocalArchives, :AppArchives
4203
4215
 
4204
- def initialize(appname=nil, apptype=nil, dataengine=nil, appfile=nil, rolearn=nil, appdriversize=nil, appexecutorsize=nil, appexecutornums=nil, sparkappid=nil, eni=nil, islocal=nil, mainclass=nil, appconf=nil, islocaljars=nil, appjars=nil, islocalfiles=nil, appfiles=nil, islocalpythonfiles=nil, apppythonfiles=nil, cmdargs=nil, maxretries=nil, datasource=nil)
4216
+ def initialize(appname=nil, apptype=nil, dataengine=nil, appfile=nil, rolearn=nil, appdriversize=nil, appexecutorsize=nil, appexecutornums=nil, sparkappid=nil, eni=nil, islocal=nil, mainclass=nil, appconf=nil, islocaljars=nil, appjars=nil, islocalfiles=nil, appfiles=nil, islocalpythonfiles=nil, apppythonfiles=nil, cmdargs=nil, maxretries=nil, datasource=nil, islocalarchives=nil, apparchives=nil)
4205
4217
  @AppName = appname
4206
4218
  @AppType = apptype
4207
4219
  @DataEngine = dataengine
@@ -4224,6 +4236,8 @@ module TencentCloud
4224
4236
  @CmdArgs = cmdargs
4225
4237
  @MaxRetries = maxretries
4226
4238
  @DataSource = datasource
4239
+ @IsLocalArchives = islocalarchives
4240
+ @AppArchives = apparchives
4227
4241
  end
4228
4242
 
4229
4243
  def deserialize(params)
@@ -4249,6 +4263,8 @@ module TencentCloud
4249
4263
  @CmdArgs = params['CmdArgs']
4250
4264
  @MaxRetries = params['MaxRetries']
4251
4265
  @DataSource = params['DataSource']
4266
+ @IsLocalArchives = params['IsLocalArchives']
4267
+ @AppArchives = params['AppArchives']
4252
4268
  end
4253
4269
  end
4254
4270
 
@@ -4670,13 +4686,25 @@ module TencentCloud
4670
4686
  # @param IsLocalPythonFiles: pyspark:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
4671
4687
  # 注意:此字段可能返回 null,表示取不到有效值。
4672
4688
  # @type IsLocalPythonFiles: String
4673
- # @param AppPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
4689
+ # @param AppPythonFiles: 注:该返回值已废弃
4674
4690
  # 注意:此字段可能返回 null,表示取不到有效值。
4675
4691
  # @type AppPythonFiles: String
4692
+ # @param IsLocalArchives: archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
4693
+ # 注意:此字段可能返回 null,表示取不到有效值。
4694
+ # @type IsLocalArchives: String
4695
+ # @param JobArchives: archives:依赖资源
4696
+ # 注意:此字段可能返回 null,表示取不到有效值。
4697
+ # @type JobArchives: String
4698
+ # @param JobPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
4699
+ # 注意:此字段可能返回 null,表示取不到有效值。
4700
+ # @type JobPythonFiles: String
4701
+ # @param TaskNum: 当前job正在运行或准备运行的任务个数
4702
+ # 注意:此字段可能返回 null,表示取不到有效值。
4703
+ # @type TaskNum: Integer
4676
4704
 
4677
- 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
4705
+ 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
4678
4706
 
4679
- 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)
4707
+ 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)
4680
4708
  @JobId = jobid
4681
4709
  @JobName = jobname
4682
4710
  @JobType = jobtype
@@ -4705,6 +4733,10 @@ module TencentCloud
4705
4733
  @DataSource = datasource
4706
4734
  @IsLocalPythonFiles = islocalpythonfiles
4707
4735
  @AppPythonFiles = apppythonfiles
4736
+ @IsLocalArchives = islocalarchives
4737
+ @JobArchives = jobarchives
4738
+ @JobPythonFiles = jobpythonfiles
4739
+ @TaskNum = tasknum
4708
4740
  end
4709
4741
 
4710
4742
  def deserialize(params)
@@ -4739,6 +4771,10 @@ module TencentCloud
4739
4771
  @DataSource = params['DataSource']
4740
4772
  @IsLocalPythonFiles = params['IsLocalPythonFiles']
4741
4773
  @AppPythonFiles = params['AppPythonFiles']
4774
+ @IsLocalArchives = params['IsLocalArchives']
4775
+ @JobArchives = params['JobArchives']
4776
+ @JobPythonFiles = params['JobPythonFiles']
4777
+ @TaskNum = params['TaskNum']
4742
4778
  end
4743
4779
  end
4744
4780
 
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.353
4
+ version: 1.0.354
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-07-11 00:00:00.000000000 Z
11
+ date: 2022-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common