Class: TencentCloud::Tke::V20180525::ModifyClusterAsGroupAttributeRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180525/models.rb

Overview

ModifyClusterAsGroupAttribute请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterid = nil, clusterasgroupattribute = nil) ⇒ ModifyClusterAsGroupAttributeRequest

Returns a new instance of ModifyClusterAsGroupAttributeRequest.



15009
15010
15011
15012
# File 'lib/v20180525/models.rb', line 15009

def initialize(clusterid=nil, clusterasgroupattribute=nil)
  @ClusterId = clusterid
  @ClusterAsGroupAttribute = clusterasgroupattribute
end

Instance Attribute Details

#ClusterAsGroupAttributeObject

Parameters:

  • ClusterId:

    集群ID

  • ClusterAsGroupAttribute:

    集群关联的伸缩组属性



15007
15008
15009
# File 'lib/v20180525/models.rb', line 15007

def ClusterAsGroupAttribute
  @ClusterAsGroupAttribute
end

#ClusterIdObject

Parameters:

  • ClusterId:

    集群ID

  • ClusterAsGroupAttribute:

    集群关联的伸缩组属性



15007
15008
15009
# File 'lib/v20180525/models.rb', line 15007

def ClusterId
  @ClusterId
end

Instance Method Details

#deserialize(params) ⇒ Object



15014
15015
15016
15017
15018
15019
15020
# File 'lib/v20180525/models.rb', line 15014

def deserialize(params)
  @ClusterId = params['ClusterId']
  unless params['ClusterAsGroupAttribute'].nil?
    @ClusterAsGroupAttribute = ClusterAsGroupAttribute.new
    @ClusterAsGroupAttribute.deserialize(params['ClusterAsGroupAttribute'])
  end
end