Class: TencentCloud::Tke::V20180525::DescribeClusterExtraArgsResponse

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

Overview

DescribeClusterExtraArgs返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterextraargs = nil, requestid = nil) ⇒ DescribeClusterExtraArgsResponse

Returns a new instance of DescribeClusterExtraArgsResponse.



5818
5819
5820
5821
# File 'lib/v20180525/models.rb', line 5818

def initialize(clusterextraargs=nil, requestid=nil)
  @ClusterExtraArgs = clusterextraargs
  @RequestId = requestid
end

Instance Attribute Details

#ClusterExtraArgsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ClusterExtraArgs:

    集群自定义参数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5816
5817
5818
# File 'lib/v20180525/models.rb', line 5816

def ClusterExtraArgs
  @ClusterExtraArgs
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ClusterExtraArgs:

    集群自定义参数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5816
5817
5818
# File 'lib/v20180525/models.rb', line 5816

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



5823
5824
5825
5826
5827
5828
5829
# File 'lib/v20180525/models.rb', line 5823

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