tencentcloud-sdk-dlc 3.0.547 → 3.0.548
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 +10 -2
- 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: 7c03a63766af59b6348215a0f9b280cae6da6cb4
|
|
4
|
+
data.tar.gz: 01cea1ccb1847448cf940256b49be7086872bf53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18e5956c394387579f6a7287301d8488ddb25e631c167a67313f411ba005204120733f752be0ab07e8eb89d225422125cceda634724876e0324e06d0a00d963a
|
|
7
|
+
data.tar.gz: d124e88059306a56714f2a8b35aee2c37574d4a70bfc9fa4508e01182a0278c1ff53a25bc2e723f9fa3e80e84c1a7de2887d7f266722bc96e3d0275143b944b4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.548
|
data/lib/v20210125/models.rb
CHANGED
|
@@ -1035,10 +1035,14 @@ module TencentCloud
|
|
|
1035
1035
|
# @type ImageVersionName: String
|
|
1036
1036
|
# @param MainClusterName: 主集群名称
|
|
1037
1037
|
# @type MainClusterName: String
|
|
1038
|
+
# @param ElasticSwitch: spark jar 包年包月集群是否开启弹性
|
|
1039
|
+
# @type ElasticSwitch: Boolean
|
|
1040
|
+
# @param ElasticLimit: spark jar 包年包月集群弹性上限
|
|
1041
|
+
# @type ElasticLimit: Integer
|
|
1038
1042
|
|
|
1039
|
-
attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName
|
|
1043
|
+
attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName, :ElasticSwitch, :ElasticLimit
|
|
1040
1044
|
|
|
1041
|
-
def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil)
|
|
1045
|
+
def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil, elasticswitch=nil, elasticlimit=nil)
|
|
1042
1046
|
@EngineType = enginetype
|
|
1043
1047
|
@DataEngineName = dataenginename
|
|
1044
1048
|
@ClusterType = clustertype
|
|
@@ -1066,6 +1070,8 @@ module TencentCloud
|
|
|
1066
1070
|
@DataEngineConfigPairs = dataengineconfigpairs
|
|
1067
1071
|
@ImageVersionName = imageversionname
|
|
1068
1072
|
@MainClusterName = mainclustername
|
|
1073
|
+
@ElasticSwitch = elasticswitch
|
|
1074
|
+
@ElasticLimit = elasticlimit
|
|
1069
1075
|
end
|
|
1070
1076
|
|
|
1071
1077
|
def deserialize(params)
|
|
@@ -1113,6 +1119,8 @@ module TencentCloud
|
|
|
1113
1119
|
end
|
|
1114
1120
|
@ImageVersionName = params['ImageVersionName']
|
|
1115
1121
|
@MainClusterName = params['MainClusterName']
|
|
1122
|
+
@ElasticSwitch = params['ElasticSwitch']
|
|
1123
|
+
@ElasticLimit = params['ElasticLimit']
|
|
1116
1124
|
end
|
|
1117
1125
|
end
|
|
1118
1126
|
|
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.548
|
|
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-04-
|
|
11
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|