Class: TencentCloud::Clb::V20180317::DescribeExclusiveClustersResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Clb::V20180317::DescribeExclusiveClustersResponse
- Defined in:
- lib/v20180317/models.rb
Overview
DescribeExclusiveClusters返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clusterset = nil, totalcount = nil, requestid = nil) ⇒ DescribeExclusiveClustersResponse
constructor
A new instance of DescribeExclusiveClustersResponse.
Constructor Details
#initialize(clusterset = nil, totalcount = nil, requestid = nil) ⇒ DescribeExclusiveClustersResponse
Returns a new instance of DescribeExclusiveClustersResponse.
3216 3217 3218 3219 3220 |
# File 'lib/v20180317/models.rb', line 3216 def initialize(clusterset=nil, totalcount=nil, requestid=nil) @ClusterSet = clusterset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ClusterSet ⇒ Object
3214 3215 3216 |
# File 'lib/v20180317/models.rb', line 3214 def ClusterSet @ClusterSet end |
#RequestId ⇒ Object
3214 3215 3216 |
# File 'lib/v20180317/models.rb', line 3214 def RequestId @RequestId end |
#TotalCount ⇒ Object
3214 3215 3216 |
# File 'lib/v20180317/models.rb', line 3214 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 |
# File 'lib/v20180317/models.rb', line 3222 def deserialize(params) unless params['ClusterSet'].nil? @ClusterSet = [] params['ClusterSet'].each do |i| cluster_tmp = Cluster.new cluster_tmp.deserialize(i) @ClusterSet << cluster_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |