Class: TencentCloud::Tke::V20220501::DeleteNodePoolRequest

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

Overview

DeleteNodePool请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterid = nil, nodepoolid = nil) ⇒ DeleteNodePoolRequest

Returns a new instance of DeleteNodePoolRequest.



592
593
594
595
# File 'lib/v20220501/models.rb', line 592

def initialize(clusterid=nil, nodepoolid=nil)
  @ClusterId = clusterid
  @NodePoolId = nodepoolid
end

Instance Attribute Details

#ClusterIdObject

Parameters:

  • ClusterId:

    集群 ID

  • NodePoolId:

    节点池 ID



590
591
592
# File 'lib/v20220501/models.rb', line 590

def ClusterId
  @ClusterId
end

#NodePoolIdObject

Parameters:

  • ClusterId:

    集群 ID

  • NodePoolId:

    节点池 ID



590
591
592
# File 'lib/v20220501/models.rb', line 590

def NodePoolId
  @NodePoolId
end

Instance Method Details

#deserialize(params) ⇒ Object



597
598
599
600
# File 'lib/v20220501/models.rb', line 597

def deserialize(params)
  @ClusterId = params['ClusterId']
  @NodePoolId = params['NodePoolId']
end