Class: TencentCloud::Postgres::V20170312::DescribeDedicatedClustersResponse
- Inherits:
 - 
      Common::AbstractModel
      
        
- Object
 - Common::AbstractModel
 - TencentCloud::Postgres::V20170312::DescribeDedicatedClustersResponse
 
 
- Defined in:
 - lib/v20170312/models.rb
 
Overview
DescribeDedicatedClusters返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
 - 
  
    
      #initialize(dedicatedclusterset = nil, requestid = nil)  ⇒ DescribeDedicatedClustersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DescribeDedicatedClustersResponse.
 
Constructor Details
#initialize(dedicatedclusterset = nil, requestid = nil) ⇒ DescribeDedicatedClustersResponse
Returns a new instance of DescribeDedicatedClustersResponse.
      3646 3647 3648 3649  | 
    
      # File 'lib/v20170312/models.rb', line 3646 def initialize(dedicatedclusterset=nil, requestid=nil) @DedicatedClusterSet = dedicatedclusterset @RequestId = requestid end  | 
  
Instance Attribute Details
#DedicatedClusterSet ⇒ Object
      3644 3645 3646  | 
    
      # File 'lib/v20170312/models.rb', line 3644 def DedicatedClusterSet @DedicatedClusterSet end  | 
  
#RequestId ⇒ Object
      3644 3645 3646  | 
    
      # File 'lib/v20170312/models.rb', line 3644 def RequestId @RequestId end  | 
  
Instance Method Details
#deserialize(params) ⇒ Object
      3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661  | 
    
      # File 'lib/v20170312/models.rb', line 3651 def deserialize(params) unless params['DedicatedClusterSet'].nil? @DedicatedClusterSet = [] params['DedicatedClusterSet'].each do |i| dedicatedcluster_tmp = DedicatedCluster.new dedicatedcluster_tmp.deserialize(i) @DedicatedClusterSet << dedicatedcluster_tmp end end @RequestId = params['RequestId'] end  |