tencentcloud-sdk-emr 3.0.1071 → 3.0.1073
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: 29d4b01d6667fd9a5ea81fec9d49d7032c39d3a9
|
4
|
+
data.tar.gz: 5c97dc128297e9c54ca0e1c6bef8cf4a24cb0931
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7f5be3a98322474a66a05e1924a275afcc1d4b9d430cc2e477845cd524e25b197bfdfa4aa8f03ec4cad973140a8b0798eecd44630bf8cd37d835c3838eedad5
|
7
|
+
data.tar.gz: 6cc87fe92a8bdeb4f41b8239c0e0942d3bb3a7d67d3a70ca6940e83d695b9b53ec14c2238f9a84252906a0a9ee2ace3c299f353e8b00de9951dc21cc633b312f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1073
|
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
|
@@ -11957,12 +11961,12 @@ module TencentCloud
|
|
11957
11961
|
|
11958
11962
|
attr_accessor :DetectAlert, :DetetcFunctionKey, :DetetcFunctionValue, :DetetcTime, :DetectFunctionKey, :DetectFunctionValue, :DetectTime
|
11959
11963
|
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,
|
11964
|
+
deprecate :DetetcFunctionKey, :none, 2025, 6
|
11965
|
+
deprecate :DetetcFunctionKey=, :none, 2025, 6
|
11966
|
+
deprecate :DetetcFunctionValue, :none, 2025, 6
|
11967
|
+
deprecate :DetetcFunctionValue=, :none, 2025, 6
|
11968
|
+
deprecate :DetetcTime, :none, 2025, 6
|
11969
|
+
deprecate :DetetcTime=, :none, 2025, 6
|
11966
11970
|
|
11967
11971
|
def initialize(detectalert=nil, detetcfunctionkey=nil, detetcfunctionvalue=nil, detetctime=nil, detectfunctionkey=nil, detectfunctionvalue=nil, detecttime=nil)
|
11968
11972
|
@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.1073
|
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
|
+
date: 2025-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|