tencentcloud-sdk-dlc 3.0.1116 → 3.0.1117
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 +38 -10
- 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: 39bc5408c6124ec3a1ddcc0bba60f954f4e7cf9f
|
4
|
+
data.tar.gz: 6096fa243136acd2fe241761dd58f23ee5aa8903
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db1022b4529916fa0ee3e7953ffb8a536dcc8b50d3098f46590fd2f6e1a184d742f3a797c2114371073d057629336d187064da01b688e465a1bde7f2cf6d06a8
|
7
|
+
data.tar.gz: 7fce97d464f289233c9a48ca14a9b2bc75e0d594058ddfdb60b8aede1f3a6cf13d71cff344bbb994aba9ef06f2e783ae0ab3cdad854d762d873a0e79c2bf7a7e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1117
|
data/lib/v20210125/models.rb
CHANGED
@@ -6936,15 +6936,18 @@ module TencentCloud
|
|
6936
6936
|
# @type Used: Integer
|
6937
6937
|
# @param Available: 剩余集群规格
|
6938
6938
|
# @type Available: Integer
|
6939
|
+
# @param AvailPercent: 剩余集群规格百分比
|
6940
|
+
# @type AvailPercent: Integer
|
6939
6941
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6940
6942
|
# @type RequestId: String
|
6941
6943
|
|
6942
|
-
attr_accessor :Total, :Used, :Available, :RequestId
|
6944
|
+
attr_accessor :Total, :Used, :Available, :AvailPercent, :RequestId
|
6943
6945
|
|
6944
|
-
def initialize(total=nil, used=nil, available=nil, requestid=nil)
|
6946
|
+
def initialize(total=nil, used=nil, available=nil, availpercent=nil, requestid=nil)
|
6945
6947
|
@Total = total
|
6946
6948
|
@Used = used
|
6947
6949
|
@Available = available
|
6950
|
+
@AvailPercent = availpercent
|
6948
6951
|
@RequestId = requestid
|
6949
6952
|
end
|
6950
6953
|
|
@@ -6952,6 +6955,7 @@ module TencentCloud
|
|
6952
6955
|
@Total = params['Total']
|
6953
6956
|
@Used = params['Used']
|
6954
6957
|
@Available = params['Available']
|
6958
|
+
@AvailPercent = params['AvailPercent']
|
6955
6959
|
@RequestId = params['RequestId']
|
6956
6960
|
end
|
6957
6961
|
end
|
@@ -11021,8 +11025,6 @@ module TencentCloud
|
|
11021
11025
|
|
11022
11026
|
# ListTaskJobLogDetail请求参数结构体
|
11023
11027
|
class ListTaskJobLogDetailRequest < TencentCloud::Common::AbstractModel
|
11024
|
-
# @param TaskId: 列表返回的Id
|
11025
|
-
# @type TaskId: String
|
11026
11028
|
# @param StartTime: 开始运行时间,unix时间戳(毫秒)
|
11027
11029
|
# @type StartTime: Integer
|
11028
11030
|
# @param EndTime: 结束运行时间,unix时间戳(毫秒)
|
@@ -11031,32 +11033,40 @@ module TencentCloud
|
|
11031
11033
|
# @type Limit: Integer
|
11032
11034
|
# @param Context: 下一次分页参数,第一次传空
|
11033
11035
|
# @type Context: String
|
11036
|
+
# @param TaskId: 列表返回的Id
|
11037
|
+
# @type TaskId: String
|
11034
11038
|
# @param Asc: 最近1000条日志是否升序排列,true:升序排序,false:倒序,默认false,倒序排列
|
11035
11039
|
# @type Asc: Boolean
|
11036
11040
|
# @param Filters: 预览日志的通用过滤条件
|
11037
11041
|
# @type Filters: Array
|
11038
11042
|
# @param BatchId: SparkSQL任务唯一ID
|
11039
11043
|
# @type BatchId: String
|
11044
|
+
# @param DataEngineId: 引擎id
|
11045
|
+
# @type DataEngineId: String
|
11046
|
+
# @param ResourceGroupId: 资源组id
|
11047
|
+
# @type ResourceGroupId: String
|
11040
11048
|
|
11041
|
-
attr_accessor :
|
11049
|
+
attr_accessor :StartTime, :EndTime, :Limit, :Context, :TaskId, :Asc, :Filters, :BatchId, :DataEngineId, :ResourceGroupId
|
11042
11050
|
|
11043
|
-
def initialize(
|
11044
|
-
@TaskId = taskid
|
11051
|
+
def initialize(starttime=nil, endtime=nil, limit=nil, context=nil, taskid=nil, asc=nil, filters=nil, batchid=nil, dataengineid=nil, resourcegroupid=nil)
|
11045
11052
|
@StartTime = starttime
|
11046
11053
|
@EndTime = endtime
|
11047
11054
|
@Limit = limit
|
11048
11055
|
@Context = context
|
11056
|
+
@TaskId = taskid
|
11049
11057
|
@Asc = asc
|
11050
11058
|
@Filters = filters
|
11051
11059
|
@BatchId = batchid
|
11060
|
+
@DataEngineId = dataengineid
|
11061
|
+
@ResourceGroupId = resourcegroupid
|
11052
11062
|
end
|
11053
11063
|
|
11054
11064
|
def deserialize(params)
|
11055
|
-
@TaskId = params['TaskId']
|
11056
11065
|
@StartTime = params['StartTime']
|
11057
11066
|
@EndTime = params['EndTime']
|
11058
11067
|
@Limit = params['Limit']
|
11059
11068
|
@Context = params['Context']
|
11069
|
+
@TaskId = params['TaskId']
|
11060
11070
|
@Asc = params['Asc']
|
11061
11071
|
unless params['Filters'].nil?
|
11062
11072
|
@Filters = []
|
@@ -11067,6 +11077,8 @@ module TencentCloud
|
|
11067
11077
|
end
|
11068
11078
|
end
|
11069
11079
|
@BatchId = params['BatchId']
|
11080
|
+
@DataEngineId = params['DataEngineId']
|
11081
|
+
@ResourceGroupId = params['ResourceGroupId']
|
11070
11082
|
end
|
11071
11083
|
end
|
11072
11084
|
|
@@ -13951,10 +13963,18 @@ module TencentCloud
|
|
13951
13963
|
# @param SparkMinSize: Spark类型资源组资源最小值
|
13952
13964
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
13953
13965
|
# @type SparkMinSize: Integer
|
13966
|
+
# @param PublicDomain: 自定义镜像容器镜像服务domain 名称
|
13967
|
+
# @type PublicDomain: String
|
13968
|
+
# @param RegistryId: 自定义镜像容器镜像服务tcr实例id
|
13969
|
+
# @type RegistryId: String
|
13970
|
+
# @param RegionName: 容器镜像服务tcr所在地域
|
13971
|
+
# @type RegionName: String
|
13972
|
+
# @param LaunchTime: 资源组启动耗时
|
13973
|
+
# @type LaunchTime: String
|
13954
13974
|
|
13955
|
-
attr_accessor :EngineResourceGroupId, :EngineResourceGroupName, :Creator, :ResourceGroupState, :AutoLaunch, :AutoPause, :AutoPauseTime, :DriverCuSpec, :ExecutorCuSpec, :MaxConcurrency, :MinExecutorNums, :MaxExecutorNums, :CreateTime, :UpdateTime, :NeedRestart, :DataEngineName, :DataEngineId, :DataEngineState, :AccessPointId, :AccessPointName, :AccessPointState, :ResourceGroupType, :EngineNetworkId, :NetworkConfigNames, :FrameType, :ImageType, :ImageName, :ImageVersion, :Size, :IsDefault, :ResourceGroupScene, :PythonCuSpec, :SparkSpecMode, :SparkSize, :SparkMinSize
|
13975
|
+
attr_accessor :EngineResourceGroupId, :EngineResourceGroupName, :Creator, :ResourceGroupState, :AutoLaunch, :AutoPause, :AutoPauseTime, :DriverCuSpec, :ExecutorCuSpec, :MaxConcurrency, :MinExecutorNums, :MaxExecutorNums, :CreateTime, :UpdateTime, :NeedRestart, :DataEngineName, :DataEngineId, :DataEngineState, :AccessPointId, :AccessPointName, :AccessPointState, :ResourceGroupType, :EngineNetworkId, :NetworkConfigNames, :FrameType, :ImageType, :ImageName, :ImageVersion, :Size, :IsDefault, :ResourceGroupScene, :PythonCuSpec, :SparkSpecMode, :SparkSize, :SparkMinSize, :PublicDomain, :RegistryId, :RegionName, :LaunchTime
|
13956
13976
|
|
13957
|
-
def initialize(engineresourcegroupid=nil, engineresourcegroupname=nil, creator=nil, resourcegroupstate=nil, autolaunch=nil, autopause=nil, autopausetime=nil, drivercuspec=nil, executorcuspec=nil, maxconcurrency=nil, minexecutornums=nil, maxexecutornums=nil, createtime=nil, updatetime=nil, needrestart=nil, dataenginename=nil, dataengineid=nil, dataenginestate=nil, accesspointid=nil, accesspointname=nil, accesspointstate=nil, resourcegrouptype=nil, enginenetworkid=nil, networkconfignames=nil, frametype=nil, imagetype=nil, imagename=nil, imageversion=nil, size=nil, isdefault=nil, resourcegroupscene=nil, pythoncuspec=nil, sparkspecmode=nil, sparksize=nil, sparkminsize=nil)
|
13977
|
+
def initialize(engineresourcegroupid=nil, engineresourcegroupname=nil, creator=nil, resourcegroupstate=nil, autolaunch=nil, autopause=nil, autopausetime=nil, drivercuspec=nil, executorcuspec=nil, maxconcurrency=nil, minexecutornums=nil, maxexecutornums=nil, createtime=nil, updatetime=nil, needrestart=nil, dataenginename=nil, dataengineid=nil, dataenginestate=nil, accesspointid=nil, accesspointname=nil, accesspointstate=nil, resourcegrouptype=nil, enginenetworkid=nil, networkconfignames=nil, frametype=nil, imagetype=nil, imagename=nil, imageversion=nil, size=nil, isdefault=nil, resourcegroupscene=nil, pythoncuspec=nil, sparkspecmode=nil, sparksize=nil, sparkminsize=nil, publicdomain=nil, registryid=nil, regionname=nil, launchtime=nil)
|
13958
13978
|
@EngineResourceGroupId = engineresourcegroupid
|
13959
13979
|
@EngineResourceGroupName = engineresourcegroupname
|
13960
13980
|
@Creator = creator
|
@@ -13990,6 +14010,10 @@ module TencentCloud
|
|
13990
14010
|
@SparkSpecMode = sparkspecmode
|
13991
14011
|
@SparkSize = sparksize
|
13992
14012
|
@SparkMinSize = sparkminsize
|
14013
|
+
@PublicDomain = publicdomain
|
14014
|
+
@RegistryId = registryid
|
14015
|
+
@RegionName = regionname
|
14016
|
+
@LaunchTime = launchtime
|
13993
14017
|
end
|
13994
14018
|
|
13995
14019
|
def deserialize(params)
|
@@ -14028,6 +14052,10 @@ module TencentCloud
|
|
14028
14052
|
@SparkSpecMode = params['SparkSpecMode']
|
14029
14053
|
@SparkSize = params['SparkSize']
|
14030
14054
|
@SparkMinSize = params['SparkMinSize']
|
14055
|
+
@PublicDomain = params['PublicDomain']
|
14056
|
+
@RegistryId = params['RegistryId']
|
14057
|
+
@RegionName = params['RegionName']
|
14058
|
+
@LaunchTime = params['LaunchTime']
|
14031
14059
|
end
|
14032
14060
|
end
|
14033
14061
|
|
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.1117
|
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-08-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|