tencentcloud-sdk-dlc 3.0.630 → 3.0.632

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210125/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f3e6d2b0086aff70a5e74f1e0b0af43c7f8e539
4
- data.tar.gz: e5aae13b72f54caa7160ab1eeabfc3507dcaec06
3
+ metadata.gz: f47e7aed848f699ca83be25d07888488457d455f
4
+ data.tar.gz: 0e8a67d2dff1a2745d6b3524be6cbc91545e2c5a
5
5
  SHA512:
6
- metadata.gz: ccbfd0f749b5a7304cf0690eba700a4677484e87649ead9b263d9fa3b23e7289af027ad0e4e85f66bc89ed4c1f6bd73b9ef2e82bb9a183fc9644a586d3530556
7
- data.tar.gz: a77edc0629ee04f4a7f0643004dd8ce9cdb02abfd575c6c7635cbdbffda88b1bdc2c98b0b6603b4450d6224625bbc421434c84ece0cb6e7ef79b8276d338e662
6
+ metadata.gz: 16f34b353cd74f426452b57d5f98da65808a2ee16764848ed285f29e74a4fa01cd633a76b50efd0cda4f1d4f45a76182afc50303421d7d52b166f27dfb88d2fe
7
+ data.tar.gz: 070ab3efac54f60ddd4c73c2c6dccf4fd561d3d888a357dce4ad2b77ce08a55ea5623b111d2e757171585e95bf2a6462653851d53d0a0170da52238506570fd3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.630
1
+ 3.0.632
@@ -1552,10 +1552,12 @@ module TencentCloud
1552
1552
  # @type ExecutorMaxNumbers: Integer
1553
1553
  # @param SparkImage: 指定spark版本名称,当前任务使用该spark镜像运行
1554
1554
  # @type SparkImage: String
1555
+ # @param IsInherit: 是否继承集群的资源类配置:0:自定义(默认),1:继承集群;
1556
+ # @type IsInherit: Integer
1555
1557
 
1556
- attr_accessor :Name, :Kind, :DataEngineName, :ProgramDependentFiles, :ProgramDependentJars, :ProgramDependentPython, :ProgramArchives, :DriverSize, :ExecutorSize, :ExecutorNumbers, :Arguments, :ProxyUser, :TimeoutInSecond, :ExecutorMaxNumbers, :SparkImage
1558
+ attr_accessor :Name, :Kind, :DataEngineName, :ProgramDependentFiles, :ProgramDependentJars, :ProgramDependentPython, :ProgramArchives, :DriverSize, :ExecutorSize, :ExecutorNumbers, :Arguments, :ProxyUser, :TimeoutInSecond, :ExecutorMaxNumbers, :SparkImage, :IsInherit
1557
1559
 
1558
- 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)
1560
+ 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, isinherit=nil)
1559
1561
  @Name = name
1560
1562
  @Kind = kind
1561
1563
  @DataEngineName = dataenginename
@@ -1571,6 +1573,7 @@ module TencentCloud
1571
1573
  @TimeoutInSecond = timeoutinsecond
1572
1574
  @ExecutorMaxNumbers = executormaxnumbers
1573
1575
  @SparkImage = sparkimage
1576
+ @IsInherit = isinherit
1574
1577
  end
1575
1578
 
1576
1579
  def deserialize(params)
@@ -1596,6 +1599,7 @@ module TencentCloud
1596
1599
  @TimeoutInSecond = params['TimeoutInSecond']
1597
1600
  @ExecutorMaxNumbers = params['ExecutorMaxNumbers']
1598
1601
  @SparkImage = params['SparkImage']
1602
+ @IsInherit = params['IsInherit']
1599
1603
  end
1600
1604
  end
1601
1605
 
@@ -2031,10 +2035,12 @@ module TencentCloud
2031
2035
  # 2.dlc.role.arn:用户配置的roleArn鉴权策略配置信息,可以用过该字段设置;
2032
2036
  # 3.dlc.sql.set.config:用户配置的集群配置信息,可以用过该字段设置;
2033
2037
  # @type Arguments: Array
2038
+ # @param IsInherit: 是否继承集群的资源类配置:0:自定义(默认),1:继承集群;
2039
+ # @type IsInherit: Integer
2034
2040
 
2035
- attr_accessor :DataEngineName, :ExecuteSQL, :DriverSize, :ExecutorSize, :ExecutorNumbers, :ExecutorMaxNumbers, :TimeoutInSecond, :SessionId, :SessionName, :Arguments
2041
+ attr_accessor :DataEngineName, :ExecuteSQL, :DriverSize, :ExecutorSize, :ExecutorNumbers, :ExecutorMaxNumbers, :TimeoutInSecond, :SessionId, :SessionName, :Arguments, :IsInherit
2036
2042
 
2037
- def initialize(dataenginename=nil, executesql=nil, driversize=nil, executorsize=nil, executornumbers=nil, executormaxnumbers=nil, timeoutinsecond=nil, sessionid=nil, sessionname=nil, arguments=nil)
2043
+ def initialize(dataenginename=nil, executesql=nil, driversize=nil, executorsize=nil, executornumbers=nil, executormaxnumbers=nil, timeoutinsecond=nil, sessionid=nil, sessionname=nil, arguments=nil, isinherit=nil)
2038
2044
  @DataEngineName = dataenginename
2039
2045
  @ExecuteSQL = executesql
2040
2046
  @DriverSize = driversize
@@ -2045,6 +2051,7 @@ module TencentCloud
2045
2051
  @SessionId = sessionid
2046
2052
  @SessionName = sessionname
2047
2053
  @Arguments = arguments
2054
+ @IsInherit = isinherit
2048
2055
  end
2049
2056
 
2050
2057
  def deserialize(params)
@@ -2065,6 +2072,7 @@ module TencentCloud
2065
2072
  @Arguments << kvpair_tmp
2066
2073
  end
2067
2074
  end
2075
+ @IsInherit = params['IsInherit']
2068
2076
  end
2069
2077
  end
2070
2078
 
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.630
4
+ version: 3.0.632
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-08-07 00:00:00.000000000 Z
11
+ date: 2023-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common