tencentcloud-sdk-dlc 1.0.323 → 1.0.324
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 +32 -6
- 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: e28a8df57b004e7bab5e19016b207decb2bcdfd0
|
4
|
+
data.tar.gz: de844b1f0260e541b82fc29fdbef24e7645d0324
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37280a37b6fb07ae6063653454c7a568efdb0a880b5640ba8d91d0edc551a00f136b772a598fcbdbee8949684f7e9c9667c9ee7a044242d5709f839689ada203
|
7
|
+
data.tar.gz: a959684aac4b73b3d389ed0a56e1ac54f4f5a010232fc155b7791a548cce9e567cedd51e3a89763993053e6339b9cf161650b15e4c6f80d48944907a8f9f1490
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.324
|
data/lib/v20210125/models.rb
CHANGED
@@ -572,10 +572,14 @@ module TencentCloud
|
|
572
572
|
# @type MaxRetries: Integer
|
573
573
|
# @param DataSource: 数据源名
|
574
574
|
# @type DataSource: String
|
575
|
+
# @param IsLocalPythonFiles: pyspark:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
576
|
+
# @type IsLocalPythonFiles: String
|
577
|
+
# @param AppPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
578
|
+
# @type AppPythonFiles: String
|
575
579
|
|
576
|
-
attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :CmdArgs, :MaxRetries, :DataSource
|
580
|
+
attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :CmdArgs, :MaxRetries, :DataSource, :IsLocalPythonFiles, :AppPythonFiles
|
577
581
|
|
578
|
-
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)
|
582
|
+
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)
|
579
583
|
@AppName = appname
|
580
584
|
@AppType = apptype
|
581
585
|
@DataEngine = dataengine
|
@@ -595,6 +599,8 @@ module TencentCloud
|
|
595
599
|
@CmdArgs = cmdargs
|
596
600
|
@MaxRetries = maxretries
|
597
601
|
@DataSource = datasource
|
602
|
+
@IsLocalPythonFiles = islocalpythonfiles
|
603
|
+
@AppPythonFiles = apppythonfiles
|
598
604
|
end
|
599
605
|
|
600
606
|
def deserialize(params)
|
@@ -617,6 +623,8 @@ module TencentCloud
|
|
617
623
|
@CmdArgs = params['CmdArgs']
|
618
624
|
@MaxRetries = params['MaxRetries']
|
619
625
|
@DataSource = params['DataSource']
|
626
|
+
@IsLocalPythonFiles = params['IsLocalPythonFiles']
|
627
|
+
@AppPythonFiles = params['AppPythonFiles']
|
620
628
|
end
|
621
629
|
end
|
622
630
|
|
@@ -2378,6 +2386,10 @@ module TencentCloud
|
|
2378
2386
|
# @type IsLocalFiles: String
|
2379
2387
|
# @param AppFiles: spark作业依赖资源,以逗号分隔
|
2380
2388
|
# @type AppFiles: String
|
2389
|
+
# @param IsLocalPythonFiles: pyspark:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
2390
|
+
# @type IsLocalPythonFiles: String
|
2391
|
+
# @param AppPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
2392
|
+
# @type AppPythonFiles: String
|
2381
2393
|
# @param CmdArgs: spark作业命令行参数
|
2382
2394
|
# @type CmdArgs: String
|
2383
2395
|
# @param MaxRetries: 只对spark流任务生效
|
@@ -2385,9 +2397,9 @@ module TencentCloud
|
|
2385
2397
|
# @param DataSource: 数据源名
|
2386
2398
|
# @type DataSource: String
|
2387
2399
|
|
2388
|
-
attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :SparkAppId, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :CmdArgs, :MaxRetries, :DataSource
|
2400
|
+
attr_accessor :AppName, :AppType, :DataEngine, :AppFile, :RoleArn, :AppDriverSize, :AppExecutorSize, :AppExecutorNums, :SparkAppId, :Eni, :IsLocal, :MainClass, :AppConf, :IsLocalJars, :AppJars, :IsLocalFiles, :AppFiles, :IsLocalPythonFiles, :AppPythonFiles, :CmdArgs, :MaxRetries, :DataSource
|
2389
2401
|
|
2390
|
-
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, cmdargs=nil, maxretries=nil, datasource=nil)
|
2402
|
+
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)
|
2391
2403
|
@AppName = appname
|
2392
2404
|
@AppType = apptype
|
2393
2405
|
@DataEngine = dataengine
|
@@ -2405,6 +2417,8 @@ module TencentCloud
|
|
2405
2417
|
@AppJars = appjars
|
2406
2418
|
@IsLocalFiles = islocalfiles
|
2407
2419
|
@AppFiles = appfiles
|
2420
|
+
@IsLocalPythonFiles = islocalpythonfiles
|
2421
|
+
@AppPythonFiles = apppythonfiles
|
2408
2422
|
@CmdArgs = cmdargs
|
2409
2423
|
@MaxRetries = maxretries
|
2410
2424
|
@DataSource = datasource
|
@@ -2428,6 +2442,8 @@ module TencentCloud
|
|
2428
2442
|
@AppJars = params['AppJars']
|
2429
2443
|
@IsLocalFiles = params['IsLocalFiles']
|
2430
2444
|
@AppFiles = params['AppFiles']
|
2445
|
+
@IsLocalPythonFiles = params['IsLocalPythonFiles']
|
2446
|
+
@AppPythonFiles = params['AppPythonFiles']
|
2431
2447
|
@CmdArgs = params['CmdArgs']
|
2432
2448
|
@MaxRetries = params['MaxRetries']
|
2433
2449
|
@DataSource = params['DataSource']
|
@@ -2809,10 +2825,16 @@ module TencentCloud
|
|
2809
2825
|
# @param DataSource: 数据源名
|
2810
2826
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2811
2827
|
# @type DataSource: String
|
2828
|
+
# @param IsLocalPythonFiles: pyspark:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
2829
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2830
|
+
# @type IsLocalPythonFiles: String
|
2831
|
+
# @param AppPythonFiles: pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
2832
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2833
|
+
# @type AppPythonFiles: String
|
2812
2834
|
|
2813
|
-
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
|
2835
|
+
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
|
2814
2836
|
|
2815
|
-
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)
|
2837
|
+
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)
|
2816
2838
|
@JobId = jobid
|
2817
2839
|
@JobName = jobname
|
2818
2840
|
@JobType = jobtype
|
@@ -2839,6 +2861,8 @@ module TencentCloud
|
|
2839
2861
|
@JobStatus = jobstatus
|
2840
2862
|
@StreamingStat = streamingstat
|
2841
2863
|
@DataSource = datasource
|
2864
|
+
@IsLocalPythonFiles = islocalpythonfiles
|
2865
|
+
@AppPythonFiles = apppythonfiles
|
2842
2866
|
end
|
2843
2867
|
|
2844
2868
|
def deserialize(params)
|
@@ -2871,6 +2895,8 @@ module TencentCloud
|
|
2871
2895
|
@StreamingStat.deserialize(params['StreamingStat'])
|
2872
2896
|
end
|
2873
2897
|
@DataSource = params['DataSource']
|
2898
|
+
@IsLocalPythonFiles = params['IsLocalPythonFiles']
|
2899
|
+
@AppPythonFiles = params['AppPythonFiles']
|
2874
2900
|
end
|
2875
2901
|
end
|
2876
2902
|
|
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.
|
4
|
+
version: 1.0.324
|
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-
|
11
|
+
date: 2022-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|