Class: TencentCloud::Tke::V20180525::ModifyClusterAttributeResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::ModifyClusterAttributeResponse
- Defined in:
- lib/v20180525/models.rb
Overview
ModifyClusterAttribute返回参数结构体
Instance Attribute Summary collapse
- #AutoUpgradeClusterLevel ⇒ Object
- #ClusterDesc ⇒ Object
- #ClusterLevel ⇒ Object
- #ClusterName ⇒ Object
- #ClusterProperty ⇒ Object
- #ProjectId ⇒ Object
- #QGPUShareEnable ⇒ Object
- #RequestId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, clustername = nil, clusterdesc = nil, clusterlevel = nil, autoupgradeclusterlevel = nil, qgpushareenable = nil, clusterproperty = nil, requestid = nil) ⇒ ModifyClusterAttributeResponse
constructor
A new instance of ModifyClusterAttributeResponse.
Constructor Details
#initialize(projectid = nil, clustername = nil, clusterdesc = nil, clusterlevel = nil, autoupgradeclusterlevel = nil, qgpushareenable = nil, clusterproperty = nil, requestid = nil) ⇒ ModifyClusterAttributeResponse
Returns a new instance of ModifyClusterAttributeResponse.
13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 |
# File 'lib/v20180525/models.rb', line 13991 def initialize(projectid=nil, clustername=nil, clusterdesc=nil, clusterlevel=nil, autoupgradeclusterlevel=nil, qgpushareenable=nil, clusterproperty=nil, requestid=nil) @ProjectId = projectid @ClusterName = clustername @ClusterDesc = clusterdesc @ClusterLevel = clusterlevel @AutoUpgradeClusterLevel = autoupgradeclusterlevel @QGPUShareEnable = qgpushareenable @ClusterProperty = clusterproperty @RequestId = requestid end |
Instance Attribute Details
#AutoUpgradeClusterLevel ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def AutoUpgradeClusterLevel @AutoUpgradeClusterLevel end |
#ClusterDesc ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def ClusterDesc @ClusterDesc end |
#ClusterLevel ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def ClusterLevel @ClusterLevel end |
#ClusterName ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def ClusterName @ClusterName end |
#ClusterProperty ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def ClusterProperty @ClusterProperty end |
#ProjectId ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def ProjectId @ProjectId end |
#QGPUShareEnable ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def QGPUShareEnable @QGPUShareEnable end |
#RequestId ⇒ Object
13989 13990 13991 |
# File 'lib/v20180525/models.rb', line 13989 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 |
# File 'lib/v20180525/models.rb', line 14002 def deserialize(params) @ProjectId = params['ProjectId'] @ClusterName = params['ClusterName'] @ClusterDesc = params['ClusterDesc'] @ClusterLevel = params['ClusterLevel'] unless params['AutoUpgradeClusterLevel'].nil? @AutoUpgradeClusterLevel = AutoUpgradeClusterLevel.new @AutoUpgradeClusterLevel.deserialize(params['AutoUpgradeClusterLevel']) end @QGPUShareEnable = params['QGPUShareEnable'] unless params['ClusterProperty'].nil? @ClusterProperty = ClusterProperty.new @ClusterProperty.deserialize(params['ClusterProperty']) end @RequestId = params['RequestId'] end |