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.
3116 3117 3118 3119 3120 |
# File 'lib/v20180317/models.rb', line 3116 def initialize(clusterset=nil, totalcount=nil, requestid=nil) @ClusterSet = clusterset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ClusterSet ⇒ Object
3114 3115 3116 |
# File 'lib/v20180317/models.rb', line 3114 def ClusterSet @ClusterSet end |
#RequestId ⇒ Object
3114 3115 3116 |
# File 'lib/v20180317/models.rb', line 3114 def RequestId @RequestId end |
#TotalCount ⇒ Object
3114 3115 3116 |
# File 'lib/v20180317/models.rb', line 3114 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 |
# File 'lib/v20180317/models.rb', line 3122 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 |