tencentcloud-sdk-emr 3.0.1072 → 3.0.1074
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 +28 -16
- 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: 768b2390b2d311e6f2245b53cd2666ab74022a2d
|
4
|
+
data.tar.gz: 798466a7054bc384a30047382b2705497635947f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc262ed03bc231f1118b600f142741690648d3de43c58e4362655f5ae8d7c9b66f122a3e320b3c40f652a741f2b5b51feed5f60568395dc3ca766abbaa79b0a9
|
7
|
+
data.tar.gz: 7ab73fa27deb89c1d137a46eb6c61ae5a61695f7393d7d6f2302c59fbd07c1b2f8a50e2b0579d4a01814fb72fa47893b8072d84738871b460ba0a540890b9f47
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1074
|
data/lib/v20190103/models.rb
CHANGED
@@ -180,20 +180,24 @@ module TencentCloud
|
|
180
180
|
# @param FailedUserList: 添加失败的用户列表
|
181
181
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
182
182
|
# @type FailedUserList: Array
|
183
|
+
# @param FlowId: 流程id。大于0表示启动了流程;等于0表示没有启动流程
|
184
|
+
# @type FlowId: Integer
|
183
185
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
184
186
|
# @type RequestId: String
|
185
187
|
|
186
|
-
attr_accessor :SuccessUserList, :FailedUserList, :RequestId
|
188
|
+
attr_accessor :SuccessUserList, :FailedUserList, :FlowId, :RequestId
|
187
189
|
|
188
|
-
def initialize(successuserlist=nil, faileduserlist=nil, requestid=nil)
|
190
|
+
def initialize(successuserlist=nil, faileduserlist=nil, flowid=nil, requestid=nil)
|
189
191
|
@SuccessUserList = successuserlist
|
190
192
|
@FailedUserList = faileduserlist
|
193
|
+
@FlowId = flowid
|
191
194
|
@RequestId = requestid
|
192
195
|
end
|
193
196
|
|
194
197
|
def deserialize(params)
|
195
198
|
@SuccessUserList = params['SuccessUserList']
|
196
199
|
@FailedUserList = params['FailedUserList']
|
200
|
+
@FlowId = params['FlowId']
|
197
201
|
@RequestId = params['RequestId']
|
198
202
|
end
|
199
203
|
end
|
@@ -1049,10 +1053,10 @@ module TencentCloud
|
|
1049
1053
|
|
1050
1054
|
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
|
1051
1055
|
extend Gem::Deprecate
|
1052
|
-
deprecate :Ftitle, :none, 2025,
|
1053
|
-
deprecate :Ftitle=, :none, 2025,
|
1054
|
-
deprecate :Config, :none, 2025,
|
1055
|
-
deprecate :Config=, :none, 2025,
|
1056
|
+
deprecate :Ftitle, :none, 2025, 6
|
1057
|
+
deprecate :Ftitle=, :none, 2025, 6
|
1058
|
+
deprecate :Config, :none, 2025, 6
|
1059
|
+
deprecate :Config=, :none, 2025, 6
|
1056
1060
|
|
1057
1061
|
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)
|
1058
1062
|
@Id = id
|
@@ -7150,16 +7154,19 @@ module TencentCloud
|
|
7150
7154
|
# @type Selected: String
|
7151
7155
|
# @param Enable: 是否开启监控
|
7152
7156
|
# @type Enable: String
|
7157
|
+
# @param SettingsJson: 事件Json模板
|
7158
|
+
# @type SettingsJson: String
|
7153
7159
|
|
7154
|
-
attr_accessor :TaskType, :Group, :Name, :TaskSettings, :Selected, :Enable
|
7160
|
+
attr_accessor :TaskType, :Group, :Name, :TaskSettings, :Selected, :Enable, :SettingsJson
|
7155
7161
|
|
7156
|
-
def initialize(tasktype=nil, group=nil, name=nil, tasksettings=nil, selected=nil, enable=nil)
|
7162
|
+
def initialize(tasktype=nil, group=nil, name=nil, tasksettings=nil, selected=nil, enable=nil, settingsjson=nil)
|
7157
7163
|
@TaskType = tasktype
|
7158
7164
|
@Group = group
|
7159
7165
|
@Name = name
|
7160
7166
|
@TaskSettings = tasksettings
|
7161
7167
|
@Selected = selected
|
7162
7168
|
@Enable = enable
|
7169
|
+
@SettingsJson = settingsjson
|
7163
7170
|
end
|
7164
7171
|
|
7165
7172
|
def deserialize(params)
|
@@ -7176,6 +7183,7 @@ module TencentCloud
|
|
7176
7183
|
end
|
7177
7184
|
@Selected = params['Selected']
|
7178
7185
|
@Enable = params['Enable']
|
7186
|
+
@SettingsJson = params['SettingsJson']
|
7179
7187
|
end
|
7180
7188
|
end
|
7181
7189
|
|
@@ -9637,16 +9645,19 @@ module TencentCloud
|
|
9637
9645
|
# @type StoreFileSize: Float
|
9638
9646
|
# @param Operation: regions,点击可跳转
|
9639
9647
|
# @type Operation: String
|
9648
|
+
# @param StoreFileNum: StoreFile数量
|
9649
|
+
# @type StoreFileNum: Float
|
9640
9650
|
|
9641
|
-
attr_accessor :Table, :ReadRequestCount, :WriteRequestCount, :MemstoreSize, :StoreFileSize, :Operation
|
9651
|
+
attr_accessor :Table, :ReadRequestCount, :WriteRequestCount, :MemstoreSize, :StoreFileSize, :Operation, :StoreFileNum
|
9642
9652
|
|
9643
|
-
def initialize(table=nil, readrequestcount=nil, writerequestcount=nil, memstoresize=nil, storefilesize=nil, operation=nil)
|
9653
|
+
def initialize(table=nil, readrequestcount=nil, writerequestcount=nil, memstoresize=nil, storefilesize=nil, operation=nil, storefilenum=nil)
|
9644
9654
|
@Table = table
|
9645
9655
|
@ReadRequestCount = readrequestcount
|
9646
9656
|
@WriteRequestCount = writerequestcount
|
9647
9657
|
@MemstoreSize = memstoresize
|
9648
9658
|
@StoreFileSize = storefilesize
|
9649
9659
|
@Operation = operation
|
9660
|
+
@StoreFileNum = storefilenum
|
9650
9661
|
end
|
9651
9662
|
|
9652
9663
|
def deserialize(params)
|
@@ -9656,6 +9667,7 @@ module TencentCloud
|
|
9656
9667
|
@MemstoreSize = params['MemstoreSize']
|
9657
9668
|
@StoreFileSize = params['StoreFileSize']
|
9658
9669
|
@Operation = params['Operation']
|
9670
|
+
@StoreFileNum = params['StoreFileNum']
|
9659
9671
|
end
|
9660
9672
|
end
|
9661
9673
|
|
@@ -11957,12 +11969,12 @@ module TencentCloud
|
|
11957
11969
|
|
11958
11970
|
attr_accessor :DetectAlert, :DetetcFunctionKey, :DetetcFunctionValue, :DetetcTime, :DetectFunctionKey, :DetectFunctionValue, :DetectTime
|
11959
11971
|
extend Gem::Deprecate
|
11960
|
-
deprecate :DetetcFunctionKey, :none, 2025,
|
11961
|
-
deprecate :DetetcFunctionKey=, :none, 2025,
|
11962
|
-
deprecate :DetetcFunctionValue, :none, 2025,
|
11963
|
-
deprecate :DetetcFunctionValue=, :none, 2025,
|
11964
|
-
deprecate :DetetcTime, :none, 2025,
|
11965
|
-
deprecate :DetetcTime=, :none, 2025,
|
11972
|
+
deprecate :DetetcFunctionKey, :none, 2025, 6
|
11973
|
+
deprecate :DetetcFunctionKey=, :none, 2025, 6
|
11974
|
+
deprecate :DetetcFunctionValue, :none, 2025, 6
|
11975
|
+
deprecate :DetetcFunctionValue=, :none, 2025, 6
|
11976
|
+
deprecate :DetetcTime, :none, 2025, 6
|
11977
|
+
deprecate :DetetcTime=, :none, 2025, 6
|
11966
11978
|
|
11967
11979
|
def initialize(detectalert=nil, detetcfunctionkey=nil, detetcfunctionvalue=nil, detetctime=nil, detectfunctionkey=nil, detectfunctionvalue=nil, detecttime=nil)
|
11968
11980
|
@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.1074
|
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-06-
|
11
|
+
date: 2025-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|