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.



13851
13852
13853
13854
# File 'lib/v20180525/models.rb', line 13851

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

Instance Attribute Details

#ClusterAsGroupAttributeObject

Parameters:

  • ClusterId:

    集群ID

  • ClusterAsGroupAttribute:

    集群关联的伸缩组属性



13849
13850
13851
# File 'lib/v20180525/models.rb', line 13849

def ClusterAsGroupAttribute
  @ClusterAsGroupAttribute
end

#ClusterIdObject

Parameters:

  • ClusterId:

    集群ID

  • ClusterAsGroupAttribute:

    集群关联的伸缩组属性



13849
13850
13851
# File 'lib/v20180525/models.rb', line 13849

def ClusterId
  @ClusterId
end

Instance Method Details

#deserialize(params) ⇒ Object



13856
13857
13858
13859
13860
13861
13862
# File 'lib/v20180525/models.rb', line 13856

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