tencentcloud-sdk-dlc 3.0.605 → 3.0.606

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ce54eb7db93ee5368b9860c3bc9ab6ed528b9b2
4
- data.tar.gz: fdc27c6a3b523b2724523490a1858d91e4778b63
3
+ metadata.gz: 76356bd9a4b2e829789afd9ede565a5d29a897cc
4
+ data.tar.gz: 2c1fd36846de722ac46dda372e2b1b9391b99208
5
5
  SHA512:
6
- metadata.gz: 50a4ef7a9479ca4d48ca20fb89be1b683f82ed5012e57e1585ea506db929af5a5561b3d3390b56f0cb7b67e012710f353e46ae4983a90c04dd20c7a440de3dff
7
- data.tar.gz: 9e7bfd66f185a9a64f1ac9b2410094680d9c1190daf7646be9aa29e4e9296aa8746c23376b0401831faa187af91569f62a1360c6e6821170a78688cd033ef2ec
6
+ metadata.gz: af396fc9fb60b905984fa47c77eee9977157e7434c54996d85f8377aeca31cc9f36dc5d970c5d237825a019a0112d26336537a05f1ca276e3d66a98669244380
7
+ data.tar.gz: c1fa522cf2cb690599341c9f32e69f74ace03d67cd4bcc032b83c7cab5b93ba640f2ff5f505cdecaac971ceab7b916a8e8a177dba15378b576019e4cfaec35a3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.605
1
+ 3.0.606
@@ -677,7 +677,7 @@ module TencentCloud
677
677
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
678
678
  end
679
679
 
680
- # 本接口(CreateSparkSessionBatchSQL)用于提交Spark SQL批任务。
680
+ # 本接口(CreateSparkSessionBatchSQL)用于向Spark作业引擎提交Spark SQL批任务。
681
681
 
682
682
  # @param request: Request instance for CreateSparkSessionBatchSQL.
683
683
  # @type request: :class:`Tencentcloud::dlc::V20210125::CreateSparkSessionBatchSQLRequest`
@@ -1517,7 +1517,10 @@ module TencentCloud
1517
1517
  # @type ExecutorSize: String
1518
1518
  # @param ExecutorNumbers: 指定的Executor数量,默认为1
1519
1519
  # @type ExecutorNumbers: Integer
1520
- # @param Arguments: Session相关配置,当前支持:dlc.eni、dlc.role.arn、dlc.sql.set.config以及用户指定的配置,注:roleArn必填;
1520
+ # @param Arguments: Session相关配置,当前支持:
1521
+ # 1. dlc.eni: 用户配置的eni网关信息,可以通过该字段设置;
1522
+ # 2. dlc.role.arn: 用户配置的roleArn鉴权策略配置信息,可以通过该字段设置;
1523
+ # 3. dlc.sql.set.config: 用户配置的集群配置信息,可以通过该字段设置;
1521
1524
  # @type Arguments: Array
1522
1525
  # @param ProxyUser: 代理用户,默认为root
1523
1526
  # @type ProxyUser: String
@@ -1525,10 +1528,12 @@ module TencentCloud
1525
1528
  # @type TimeoutInSecond: Integer
1526
1529
  # @param ExecutorMaxNumbers: 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于ExecutorNumbers
1527
1530
  # @type ExecutorMaxNumbers: Integer
1531
+ # @param SparkImage: 指定spark版本名称,当前任务使用该spark镜像运行
1532
+ # @type SparkImage: String
1528
1533
 
1529
- attr_accessor :Name, :Kind, :DataEngineName, :ProgramDependentFiles, :ProgramDependentJars, :ProgramDependentPython, :ProgramArchives, :DriverSize, :ExecutorSize, :ExecutorNumbers, :Arguments, :ProxyUser, :TimeoutInSecond, :ExecutorMaxNumbers
1534
+ attr_accessor :Name, :Kind, :DataEngineName, :ProgramDependentFiles, :ProgramDependentJars, :ProgramDependentPython, :ProgramArchives, :DriverSize, :ExecutorSize, :ExecutorNumbers, :Arguments, :ProxyUser, :TimeoutInSecond, :ExecutorMaxNumbers, :SparkImage
1530
1535
 
1531
- def initialize(name=nil, kind=nil, dataenginename=nil, programdependentfiles=nil, programdependentjars=nil, programdependentpython=nil, programarchives=nil, driversize=nil, executorsize=nil, executornumbers=nil, arguments=nil, proxyuser=nil, timeoutinsecond=nil, executormaxnumbers=nil)
1536
+ def initialize(name=nil, kind=nil, dataenginename=nil, programdependentfiles=nil, programdependentjars=nil, programdependentpython=nil, programarchives=nil, driversize=nil, executorsize=nil, executornumbers=nil, arguments=nil, proxyuser=nil, timeoutinsecond=nil, executormaxnumbers=nil, sparkimage=nil)
1532
1537
  @Name = name
1533
1538
  @Kind = kind
1534
1539
  @DataEngineName = dataenginename
@@ -1543,6 +1548,7 @@ module TencentCloud
1543
1548
  @ProxyUser = proxyuser
1544
1549
  @TimeoutInSecond = timeoutinsecond
1545
1550
  @ExecutorMaxNumbers = executormaxnumbers
1551
+ @SparkImage = sparkimage
1546
1552
  end
1547
1553
 
1548
1554
  def deserialize(params)
@@ -1567,6 +1573,7 @@ module TencentCloud
1567
1573
  @ProxyUser = params['ProxyUser']
1568
1574
  @TimeoutInSecond = params['TimeoutInSecond']
1569
1575
  @ExecutorMaxNumbers = params['ExecutorMaxNumbers']
1576
+ @SparkImage = params['SparkImage']
1570
1577
  end
1571
1578
  end
1572
1579
 
@@ -1843,10 +1850,12 @@ module TencentCloud
1843
1850
  # @type SessionId: String
1844
1851
  # @param IsInherit: 任务资源配置是否继承集群模板,0(默认)不继承,1:继承
1845
1852
  # @type IsInherit: Integer
1853
+ # @param IsSessionStarted: 是否使用session脚本的sql运行任务:false:否,true:是
1854
+ # @type IsSessionStarted: Boolean
1846
1855
 
1847
- 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
1856
+ 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
1848
1857
 
1849
- 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)
1858
+ 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)
1850
1859
  @AppName = appname
1851
1860
  @AppType = apptype
1852
1861
  @DataEngine = dataengine
@@ -1875,6 +1884,7 @@ module TencentCloud
1875
1884
  @AppExecutorMaxNumbers = appexecutormaxnumbers
1876
1885
  @SessionId = sessionid
1877
1886
  @IsInherit = isinherit
1887
+ @IsSessionStarted = issessionstarted
1878
1888
  end
1879
1889
 
1880
1890
  def deserialize(params)
@@ -1906,6 +1916,7 @@ module TencentCloud
1906
1916
  @AppExecutorMaxNumbers = params['AppExecutorMaxNumbers']
1907
1917
  @SessionId = params['SessionId']
1908
1918
  @IsInherit = params['IsInherit']
1919
+ @IsSessionStarted = params['IsSessionStarted']
1909
1920
  end
1910
1921
  end
1911
1922
 
@@ -1994,7 +2005,9 @@ module TencentCloud
1994
2005
  # @type SessionId: String
1995
2006
  # @param SessionName: 指定要创建的session名称
1996
2007
  # @type SessionName: String
1997
- # @param Arguments: Session相关配置,当前支持:dlc.eni、dlc.role.arn、dlc.sql.set.config以及用户指定的配置,注:roleArn必填;
2008
+ # @param Arguments: Session相关配置,当前支持:1.dlc.eni:用户配置的eni网关信息,可以用过该字段设置;
2009
+ # 2.dlc.role.arn:用户配置的roleArn鉴权策略配置信息,可以用过该字段设置;
2010
+ # 3.dlc.sql.set.config:用户配置的集群配置信息,可以用过该字段设置;
1998
2011
  # @type Arguments: Array
1999
2012
 
2000
2013
  attr_accessor :DataEngineName, :ExecuteSQL, :DriverSize, :ExecutorSize, :ExecutorNumbers, :ExecutorMaxNumbers, :TimeoutInSecond, :SessionId, :SessionName, :Arguments
@@ -6227,10 +6240,12 @@ module TencentCloud
6227
6240
  # @type SessionId: String
6228
6241
  # @param IsInherit: 任务资源配置是否继承集群配置模板:0(默认)不继承、1:继承
6229
6242
  # @type IsInherit: Integer
6243
+ # @param IsSessionStarted: 是否使用session脚本的sql运行任务:false:否,true:是
6244
+ # @type IsSessionStarted: Boolean
6230
6245
 
6231
- 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
6246
+ 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
6232
6247
 
6233
- 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)
6248
+ 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)
6234
6249
  @AppName = appname
6235
6250
  @AppType = apptype
6236
6251
  @DataEngine = dataengine
@@ -6260,6 +6275,7 @@ module TencentCloud
6260
6275
  @AppExecutorMaxNumbers = appexecutormaxnumbers
6261
6276
  @SessionId = sessionid
6262
6277
  @IsInherit = isinherit
6278
+ @IsSessionStarted = issessionstarted
6263
6279
  end
6264
6280
 
6265
6281
  def deserialize(params)
@@ -6292,6 +6308,7 @@ module TencentCloud
6292
6308
  @AppExecutorMaxNumbers = params['AppExecutorMaxNumbers']
6293
6309
  @SessionId = params['SessionId']
6294
6310
  @IsInherit = params['IsInherit']
6311
+ @IsSessionStarted = params['IsSessionStarted']
6295
6312
  end
6296
6313
  end
6297
6314
 
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.605
4
+ version: 3.0.606
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-04 00:00:00.000000000 Z
11
+ date: 2023-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common