tencentcloud-sdk-dlc 3.0.728 → 3.0.729
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 +25 -9
- 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: 10a2dc0177b1c9939fba21fc4eba21ec82ff8d0b
|
4
|
+
data.tar.gz: bfa4efe73fa3cf90092c56da9a4558dd78394e6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18a21d326e91b01f0c8cfcd8b67615bd7bbb3d8937c63b9e0573adf2b5f923b8b85809e4fd2f387c4ff57675d0c4bd99b12e132bb9958a67c26ea81f340c5eb5
|
7
|
+
data.tar.gz: c06dc31a91e7c97814f36b215edc30c3e38959ed4efe7d88c870c1555a3e71af8987316f207c4770d9d774fea1580e410393ebfac029ee63752a7e2ef315cd1e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.729
|
data/lib/v20210125/models.rb
CHANGED
@@ -771,15 +771,19 @@ module TencentCloud
|
|
771
771
|
class CancelSparkSessionBatchSQLRequest < TencentCloud::Common::AbstractModel
|
772
772
|
# @param BatchId: 批任务唯一标识
|
773
773
|
# @type BatchId: String
|
774
|
+
# @param CustomKey: 用户自定义主键,若不为空,则使用该值进行查询
|
775
|
+
# @type CustomKey: String
|
774
776
|
|
775
|
-
attr_accessor :BatchId
|
777
|
+
attr_accessor :BatchId, :CustomKey
|
776
778
|
|
777
|
-
def initialize(batchid=nil)
|
779
|
+
def initialize(batchid=nil, customkey=nil)
|
778
780
|
@BatchId = batchid
|
781
|
+
@CustomKey = customkey
|
779
782
|
end
|
780
783
|
|
781
784
|
def deserialize(params)
|
782
785
|
@BatchId = params['BatchId']
|
786
|
+
@CustomKey = params['CustomKey']
|
783
787
|
end
|
784
788
|
end
|
785
789
|
|
@@ -2288,10 +2292,12 @@ module TencentCloud
|
|
2288
2292
|
# @type Arguments: Array
|
2289
2293
|
# @param IsInherit: 是否继承集群的资源类配置:0:不继承(默认),1:继承集群;
|
2290
2294
|
# @type IsInherit: Integer
|
2295
|
+
# @param CustomKey: 用户自定义主键,需唯一
|
2296
|
+
# @type CustomKey: String
|
2291
2297
|
|
2292
|
-
attr_accessor :DataEngineName, :ExecuteSQL, :DriverSize, :ExecutorSize, :ExecutorNumbers, :ExecutorMaxNumbers, :TimeoutInSecond, :SessionId, :SessionName, :Arguments, :IsInherit
|
2298
|
+
attr_accessor :DataEngineName, :ExecuteSQL, :DriverSize, :ExecutorSize, :ExecutorNumbers, :ExecutorMaxNumbers, :TimeoutInSecond, :SessionId, :SessionName, :Arguments, :IsInherit, :CustomKey
|
2293
2299
|
|
2294
|
-
def initialize(dataenginename=nil, executesql=nil, driversize=nil, executorsize=nil, executornumbers=nil, executormaxnumbers=nil, timeoutinsecond=nil, sessionid=nil, sessionname=nil, arguments=nil, isinherit=nil)
|
2300
|
+
def initialize(dataenginename=nil, executesql=nil, driversize=nil, executorsize=nil, executornumbers=nil, executormaxnumbers=nil, timeoutinsecond=nil, sessionid=nil, sessionname=nil, arguments=nil, isinherit=nil, customkey=nil)
|
2295
2301
|
@DataEngineName = dataenginename
|
2296
2302
|
@ExecuteSQL = executesql
|
2297
2303
|
@DriverSize = driversize
|
@@ -2303,6 +2309,7 @@ module TencentCloud
|
|
2303
2309
|
@SessionName = sessionname
|
2304
2310
|
@Arguments = arguments
|
2305
2311
|
@IsInherit = isinherit
|
2312
|
+
@CustomKey = customkey
|
2306
2313
|
end
|
2307
2314
|
|
2308
2315
|
def deserialize(params)
|
@@ -2324,6 +2331,7 @@ module TencentCloud
|
|
2324
2331
|
end
|
2325
2332
|
end
|
2326
2333
|
@IsInherit = params['IsInherit']
|
2334
|
+
@CustomKey = params['CustomKey']
|
2327
2335
|
end
|
2328
2336
|
end
|
2329
2337
|
|
@@ -6034,15 +6042,19 @@ module TencentCloud
|
|
6034
6042
|
class DescribeSparkSessionBatchSQLRequest < TencentCloud::Common::AbstractModel
|
6035
6043
|
# @param BatchId: SparkSQL唯一标识
|
6036
6044
|
# @type BatchId: String
|
6045
|
+
# @param CustomKey: 用户自定义主键, 若不为空,则按照该值查询
|
6046
|
+
# @type CustomKey: String
|
6037
6047
|
|
6038
|
-
attr_accessor :BatchId
|
6048
|
+
attr_accessor :BatchId, :CustomKey
|
6039
6049
|
|
6040
|
-
def initialize(batchid=nil)
|
6050
|
+
def initialize(batchid=nil, customkey=nil)
|
6041
6051
|
@BatchId = batchid
|
6052
|
+
@CustomKey = customkey
|
6042
6053
|
end
|
6043
6054
|
|
6044
6055
|
def deserialize(params)
|
6045
6056
|
@BatchId = params['BatchId']
|
6057
|
+
@CustomKey = params['CustomKey']
|
6046
6058
|
end
|
6047
6059
|
end
|
6048
6060
|
|
@@ -6086,15 +6098,19 @@ module TencentCloud
|
|
6086
6098
|
class DescribeSparkSessionBatchSqlLogRequest < TencentCloud::Common::AbstractModel
|
6087
6099
|
# @param BatchId: SparkSQL唯一标识
|
6088
6100
|
# @type BatchId: String
|
6101
|
+
# @param CustomKey: 用户自定义主键,若不为空,则按照该值进行查询
|
6102
|
+
# @type CustomKey: String
|
6089
6103
|
|
6090
|
-
attr_accessor :BatchId
|
6104
|
+
attr_accessor :BatchId, :CustomKey
|
6091
6105
|
|
6092
|
-
def initialize(batchid=nil)
|
6106
|
+
def initialize(batchid=nil, customkey=nil)
|
6093
6107
|
@BatchId = batchid
|
6108
|
+
@CustomKey = customkey
|
6094
6109
|
end
|
6095
6110
|
|
6096
6111
|
def deserialize(params)
|
6097
6112
|
@BatchId = params['BatchId']
|
6113
|
+
@CustomKey = params['CustomKey']
|
6098
6114
|
end
|
6099
6115
|
end
|
6100
6116
|
|
@@ -11321,7 +11337,7 @@ module TencentCloud
|
|
11321
11337
|
class UpdateUserDataEngineConfigRequest < TencentCloud::Common::AbstractModel
|
11322
11338
|
# @param DataEngineId: 引擎ID
|
11323
11339
|
# @type DataEngineId: String
|
11324
|
-
# @param DataEngineConfigPairs:
|
11340
|
+
# @param DataEngineConfigPairs: 用户自定义引擎配置项集合。该参数需要传用户需要添加的全部配置项,例如,已有配置项k1:v1,添加k2:v2,需要传[k1:v1,k2:v2]。
|
11325
11341
|
# @type DataEngineConfigPairs: Array
|
11326
11342
|
# @param SessionResourceTemplate: 作业引擎资源配置模版
|
11327
11343
|
# @type SessionResourceTemplate: :class:`Tencentcloud::Dlc.v20210125.models.SessionResourceTemplate`
|
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.729
|
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-12-
|
11
|
+
date: 2023-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|