tencentcloud-sdk-emr 3.0.1161 → 3.0.1166
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/v20190103/models.rb +16 -12
- 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: 3cf77e5a3f18a8410d0615cb45e60b6c45af4cf5
|
|
4
|
+
data.tar.gz: 244a536375ba750e0742591a09a322f67d982d8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5be2d57ea5e63a6e0161ac5c99bd6fe15abc24c58984e9854112bdb5069f5d4f7a51a0f996dd5bcafb8057d74494e6d7587bbfd084f9359ad06e16be16eb5cb
|
|
7
|
+
data.tar.gz: 25a2503ad2ceb90956b9daa16f24dfd914580826a0260e68d7dfd3b9bb1e0b10c4d2bc067382f1faa112b95e339ac59e39eed2316662dba7591970b73523deb6
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1166
|
data/lib/v20190103/models.rb
CHANGED
|
@@ -1114,10 +1114,10 @@ module TencentCloud
|
|
|
1114
1114
|
|
|
1115
1115
|
attr_accessor :Id, :ClusterId, :Ftitle, :ClusterName, :RegionId, :ZoneId, :AppId, :Uin, :ProjectId, :VpcId, :SubnetId, :Status, :AddTime, :RunTime, :Config, :MasterIp, :EmrVersion, :ChargeType, :TradeVersion, :ResourceOrderId, :IsTradeCluster, :AlarmInfo, :IsWoodpeckerCluster, :MetaDb, :Tags, :HiveMetaDb, :ServiceClass, :AliasInfo, :ProductId, :Zone, :SceneName, :SceneServiceClass, :SceneEmrVersion, :DisplayName, :VpcName, :SubnetName, :ClusterExternalServiceInfo, :UniqVpcId, :UniqSubnetId, :TopologyInfoList, :IsMultiZoneCluster, :IsCvmReplace, :ClusterTitle, :ConfigDetail, :BindFileSystemNum, :ClusterRelationInfoList, :RedisId
|
|
1116
1116
|
extend Gem::Deprecate
|
|
1117
|
-
deprecate :Ftitle, :none, 2025,
|
|
1118
|
-
deprecate :Ftitle=, :none, 2025,
|
|
1119
|
-
deprecate :Config, :none, 2025,
|
|
1120
|
-
deprecate :Config=, :none, 2025,
|
|
1117
|
+
deprecate :Ftitle, :none, 2025, 11
|
|
1118
|
+
deprecate :Ftitle=, :none, 2025, 11
|
|
1119
|
+
deprecate :Config, :none, 2025, 11
|
|
1120
|
+
deprecate :Config=, :none, 2025, 11
|
|
1121
1121
|
|
|
1122
1122
|
def initialize(id=nil, clusterid=nil, ftitle=nil, clustername=nil, regionid=nil, zoneid=nil, appid=nil, uin=nil, projectid=nil, vpcid=nil, subnetid=nil, status=nil, addtime=nil, runtime=nil, config=nil, masterip=nil, emrversion=nil, chargetype=nil, tradeversion=nil, resourceorderid=nil, istradecluster=nil, alarminfo=nil, iswoodpeckercluster=nil, metadb=nil, tags=nil, hivemetadb=nil, serviceclass=nil, aliasinfo=nil, productid=nil, zone=nil, scenename=nil, sceneserviceclass=nil, sceneemrversion=nil, displayname=nil, vpcname=nil, subnetname=nil, clusterexternalserviceinfo=nil, uniqvpcid=nil, uniqsubnetid=nil, topologyinfolist=nil, ismultizonecluster=nil, iscvmreplace=nil, clustertitle=nil, configdetail=nil, bindfilesystemnum=nil, clusterrelationinfolist=nil, redisid=nil)
|
|
1123
1123
|
@Id = id
|
|
@@ -10068,14 +10068,17 @@ module TencentCloud
|
|
|
10068
10068
|
# @type DiskType: String
|
|
10069
10069
|
# @param DefaultDiskSize: 指定磁盘大小
|
|
10070
10070
|
# @type DefaultDiskSize: Integer
|
|
10071
|
+
# @param IsSpecialDisk: 是否为特殊的数据盘,如:单副本盘
|
|
10072
|
+
# @type IsSpecialDisk: Boolean
|
|
10071
10073
|
|
|
10072
|
-
attr_accessor :Count, :Name, :DiskType, :DefaultDiskSize
|
|
10074
|
+
attr_accessor :Count, :Name, :DiskType, :DefaultDiskSize, :IsSpecialDisk
|
|
10073
10075
|
|
|
10074
|
-
def initialize(count=nil, name=nil, disktype=nil, defaultdisksize=nil)
|
|
10076
|
+
def initialize(count=nil, name=nil, disktype=nil, defaultdisksize=nil, isspecialdisk=nil)
|
|
10075
10077
|
@Count = count
|
|
10076
10078
|
@Name = name
|
|
10077
10079
|
@DiskType = disktype
|
|
10078
10080
|
@DefaultDiskSize = defaultdisksize
|
|
10081
|
+
@IsSpecialDisk = isspecialdisk
|
|
10079
10082
|
end
|
|
10080
10083
|
|
|
10081
10084
|
def deserialize(params)
|
|
@@ -10083,6 +10086,7 @@ module TencentCloud
|
|
|
10083
10086
|
@Name = params['Name']
|
|
10084
10087
|
@DiskType = params['DiskType']
|
|
10085
10088
|
@DefaultDiskSize = params['DefaultDiskSize']
|
|
10089
|
+
@IsSpecialDisk = params['IsSpecialDisk']
|
|
10086
10090
|
end
|
|
10087
10091
|
end
|
|
10088
10092
|
|
|
@@ -12967,12 +12971,12 @@ module TencentCloud
|
|
|
12967
12971
|
|
|
12968
12972
|
attr_accessor :DetectAlert, :DetetcFunctionKey, :DetetcFunctionValue, :DetetcTime, :DetectFunctionKey, :DetectFunctionValue, :DetectTime
|
|
12969
12973
|
extend Gem::Deprecate
|
|
12970
|
-
deprecate :DetetcFunctionKey, :none, 2025,
|
|
12971
|
-
deprecate :DetetcFunctionKey=, :none, 2025,
|
|
12972
|
-
deprecate :DetetcFunctionValue, :none, 2025,
|
|
12973
|
-
deprecate :DetetcFunctionValue=, :none, 2025,
|
|
12974
|
-
deprecate :DetetcTime, :none, 2025,
|
|
12975
|
-
deprecate :DetetcTime=, :none, 2025,
|
|
12974
|
+
deprecate :DetetcFunctionKey, :none, 2025, 11
|
|
12975
|
+
deprecate :DetetcFunctionKey=, :none, 2025, 11
|
|
12976
|
+
deprecate :DetetcFunctionValue, :none, 2025, 11
|
|
12977
|
+
deprecate :DetetcFunctionValue=, :none, 2025, 11
|
|
12978
|
+
deprecate :DetetcTime, :none, 2025, 11
|
|
12979
|
+
deprecate :DetetcTime=, :none, 2025, 11
|
|
12976
12980
|
|
|
12977
12981
|
def initialize(detectalert=nil, detetcfunctionkey=nil, detetcfunctionvalue=nil, detetctime=nil, detectfunctionkey=nil, detectfunctionvalue=nil, detecttime=nil)
|
|
12978
12982
|
@DetectAlert = detectalert
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-emr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1166
|
|
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-11-
|
|
11
|
+
date: 2025-11-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|