Class: TencentCloud::Tke::V20180525::ModifyClusterAsGroupAttributeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::ModifyClusterAsGroupAttributeRequest
- Defined in:
- lib/v20180525/models.rb
Overview
ModifyClusterAsGroupAttribute请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clusterid = nil, clusterasgroupattribute = nil) ⇒ ModifyClusterAsGroupAttributeRequest
constructor
A new instance of ModifyClusterAsGroupAttributeRequest.
Constructor Details
#initialize(clusterid = nil, clusterasgroupattribute = nil) ⇒ ModifyClusterAsGroupAttributeRequest
Returns a new instance of ModifyClusterAsGroupAttributeRequest.
13720 13721 13722 13723 |
# File 'lib/v20180525/models.rb', line 13720 def initialize(clusterid=nil, clusterasgroupattribute=nil) @ClusterId = clusterid @ClusterAsGroupAttribute = clusterasgroupattribute end |
Instance Attribute Details
#ClusterAsGroupAttribute ⇒ Object
13718 13719 13720 |
# File 'lib/v20180525/models.rb', line 13718 def ClusterAsGroupAttribute @ClusterAsGroupAttribute end |
#ClusterId ⇒ Object
13718 13719 13720 |
# File 'lib/v20180525/models.rb', line 13718 def ClusterId @ClusterId end |
Instance Method Details
#deserialize(params) ⇒ Object
13725 13726 13727 13728 13729 13730 13731 |
# File 'lib/v20180525/models.rb', line 13725 def deserialize(params) @ClusterId = params['ClusterId'] unless params['ClusterAsGroupAttribute'].nil? @ClusterAsGroupAttribute = ClusterAsGroupAttribute.new @ClusterAsGroupAttribute.deserialize(params['ClusterAsGroupAttribute']) end end |