tencentcloud-sdk-dlc 3.0.1065 → 3.0.1066
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 +78 -4
- 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: f95dd6958a7f68624e70b3060571ad04e6f672d5
|
4
|
+
data.tar.gz: 56a53f87e053a056f727002462aa5842ac825d06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b32b0f9cfa54ccbb7ed10221ae11a7f0066faf2315ff7d9ee5aa41e7ecf8bc0d1e8363b8b828c68ea76872bd4adca75b8f1cf02955ceaacfbd0bd41b5f3623c
|
7
|
+
data.tar.gz: f5b7f7a437bd74c6ddc0dc72cabfab001e38554ec5292666ca467ffd16ede79298806993d59678ca975db08b908e050147480952c43250543daa98d93fa815ed
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1066
|
data/lib/v20210125/models.rb
CHANGED
@@ -2453,10 +2453,12 @@ module TencentCloud
|
|
2453
2453
|
# @type IsInherit: Integer
|
2454
2454
|
# @param IsSessionStarted: 是否使用session脚本的sql运行任务:false:否,true:是
|
2455
2455
|
# @type IsSessionStarted: Boolean
|
2456
|
+
# @param DependencyPackages: 依赖包信息
|
2457
|
+
# @type DependencyPackages: Array
|
2456
2458
|
|
2457
|
-
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, :SparkImage, :SparkImageVersion, :AppExecutorMaxNumbers, :SessionId, :IsInherit, :IsSessionStarted
|
2459
|
+
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, :SparkImage, :SparkImageVersion, :AppExecutorMaxNumbers, :SessionId, :IsInherit, :IsSessionStarted, :DependencyPackages
|
2458
2460
|
|
2459
|
-
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, sparkimage=nil, sparkimageversion=nil, appexecutormaxnumbers=nil, sessionid=nil, isinherit=nil, issessionstarted=nil)
|
2461
|
+
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, sparkimage=nil, sparkimageversion=nil, appexecutormaxnumbers=nil, sessionid=nil, isinherit=nil, issessionstarted=nil, dependencypackages=nil)
|
2460
2462
|
@AppName = appname
|
2461
2463
|
@AppType = apptype
|
2462
2464
|
@DataEngine = dataengine
|
@@ -2486,6 +2488,7 @@ module TencentCloud
|
|
2486
2488
|
@SessionId = sessionid
|
2487
2489
|
@IsInherit = isinherit
|
2488
2490
|
@IsSessionStarted = issessionstarted
|
2491
|
+
@DependencyPackages = dependencypackages
|
2489
2492
|
end
|
2490
2493
|
|
2491
2494
|
def deserialize(params)
|
@@ -2518,6 +2521,14 @@ module TencentCloud
|
|
2518
2521
|
@SessionId = params['SessionId']
|
2519
2522
|
@IsInherit = params['IsInherit']
|
2520
2523
|
@IsSessionStarted = params['IsSessionStarted']
|
2524
|
+
unless params['DependencyPackages'].nil?
|
2525
|
+
@DependencyPackages = []
|
2526
|
+
params['DependencyPackages'].each do |i|
|
2527
|
+
dependencypackage_tmp = DependencyPackage.new
|
2528
|
+
dependencypackage_tmp.deserialize(i)
|
2529
|
+
@DependencyPackages << dependencypackage_tmp
|
2530
|
+
end
|
2531
|
+
end
|
2521
2532
|
end
|
2522
2533
|
end
|
2523
2534
|
|
@@ -5042,6 +5053,58 @@ module TencentCloud
|
|
5042
5053
|
end
|
5043
5054
|
end
|
5044
5055
|
|
5056
|
+
# 任务依赖包信息
|
5057
|
+
class DependencyPackage < TencentCloud::Common::AbstractModel
|
5058
|
+
# @param PackageSource: 依赖包类型
|
5059
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5060
|
+
# @type PackageSource: String
|
5061
|
+
# @param MavenPackage: 依赖包信息
|
5062
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5063
|
+
# @type MavenPackage: String
|
5064
|
+
# @param MavenRepository: 依赖包仓库
|
5065
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5066
|
+
# @type MavenRepository: String
|
5067
|
+
# @param MavenExclusion: maven包exclusion信息
|
5068
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5069
|
+
# @type MavenExclusion: String
|
5070
|
+
# @param PypiPackage: pypi包信息
|
5071
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5072
|
+
# @type PypiPackage: String
|
5073
|
+
# @param PypiIndexUrl: pypi索引地址
|
5074
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5075
|
+
# @type PypiIndexUrl: String
|
5076
|
+
# @param PackageType: 文件包的类型
|
5077
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5078
|
+
# @type PackageType: String
|
5079
|
+
# @param PackagePath: 文件包的路径
|
5080
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5081
|
+
# @type PackagePath: String
|
5082
|
+
|
5083
|
+
attr_accessor :PackageSource, :MavenPackage, :MavenRepository, :MavenExclusion, :PypiPackage, :PypiIndexUrl, :PackageType, :PackagePath
|
5084
|
+
|
5085
|
+
def initialize(packagesource=nil, mavenpackage=nil, mavenrepository=nil, mavenexclusion=nil, pypipackage=nil, pypiindexurl=nil, packagetype=nil, packagepath=nil)
|
5086
|
+
@PackageSource = packagesource
|
5087
|
+
@MavenPackage = mavenpackage
|
5088
|
+
@MavenRepository = mavenrepository
|
5089
|
+
@MavenExclusion = mavenexclusion
|
5090
|
+
@PypiPackage = pypipackage
|
5091
|
+
@PypiIndexUrl = pypiindexurl
|
5092
|
+
@PackageType = packagetype
|
5093
|
+
@PackagePath = packagepath
|
5094
|
+
end
|
5095
|
+
|
5096
|
+
def deserialize(params)
|
5097
|
+
@PackageSource = params['PackageSource']
|
5098
|
+
@MavenPackage = params['MavenPackage']
|
5099
|
+
@MavenRepository = params['MavenRepository']
|
5100
|
+
@MavenExclusion = params['MavenExclusion']
|
5101
|
+
@PypiPackage = params['PypiPackage']
|
5102
|
+
@PypiIndexUrl = params['PypiIndexUrl']
|
5103
|
+
@PackageType = params['PackageType']
|
5104
|
+
@PackagePath = params['PackagePath']
|
5105
|
+
end
|
5106
|
+
end
|
5107
|
+
|
5045
5108
|
# DescribeAdvancedStoreLocation请求参数结构体
|
5046
5109
|
class DescribeAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
|
5047
5110
|
|
@@ -10043,10 +10106,12 @@ module TencentCloud
|
|
10043
10106
|
# @type IsInherit: Integer
|
10044
10107
|
# @param IsSessionStarted: 是否使用session脚本的sql运行任务:false:否,true:是
|
10045
10108
|
# @type IsSessionStarted: Boolean
|
10109
|
+
# @param DependencyPackages: 标准引擎依赖包
|
10110
|
+
# @type DependencyPackages: Array
|
10046
10111
|
|
10047
|
-
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, :SparkImage, :SparkImageVersion, :AppExecutorMaxNumbers, :SessionId, :IsInherit, :IsSessionStarted
|
10112
|
+
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, :SparkImage, :SparkImageVersion, :AppExecutorMaxNumbers, :SessionId, :IsInherit, :IsSessionStarted, :DependencyPackages
|
10048
10113
|
|
10049
|
-
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, sparkimage=nil, sparkimageversion=nil, appexecutormaxnumbers=nil, sessionid=nil, isinherit=nil, issessionstarted=nil)
|
10114
|
+
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, sparkimage=nil, sparkimageversion=nil, appexecutormaxnumbers=nil, sessionid=nil, isinherit=nil, issessionstarted=nil, dependencypackages=nil)
|
10050
10115
|
@AppName = appname
|
10051
10116
|
@AppType = apptype
|
10052
10117
|
@DataEngine = dataengine
|
@@ -10077,6 +10142,7 @@ module TencentCloud
|
|
10077
10142
|
@SessionId = sessionid
|
10078
10143
|
@IsInherit = isinherit
|
10079
10144
|
@IsSessionStarted = issessionstarted
|
10145
|
+
@DependencyPackages = dependencypackages
|
10080
10146
|
end
|
10081
10147
|
|
10082
10148
|
def deserialize(params)
|
@@ -10110,6 +10176,14 @@ module TencentCloud
|
|
10110
10176
|
@SessionId = params['SessionId']
|
10111
10177
|
@IsInherit = params['IsInherit']
|
10112
10178
|
@IsSessionStarted = params['IsSessionStarted']
|
10179
|
+
unless params['DependencyPackages'].nil?
|
10180
|
+
@DependencyPackages = []
|
10181
|
+
params['DependencyPackages'].each do |i|
|
10182
|
+
dependencypackage_tmp = DependencyPackage.new
|
10183
|
+
dependencypackage_tmp.deserialize(i)
|
10184
|
+
@DependencyPackages << dependencypackage_tmp
|
10185
|
+
end
|
10186
|
+
end
|
10113
10187
|
end
|
10114
10188
|
end
|
10115
10189
|
|
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.1066
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|