Class: TencentCloud::Tdmq::V20200217::DescribeRocketMQClustersResponse

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

Overview

DescribeRocketMQClusters返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterlist = nil, totalcount = nil, requestid = nil) ⇒ DescribeRocketMQClustersResponse

Returns a new instance of DescribeRocketMQClustersResponse.



5883
5884
5885
5886
5887
# File 'lib/v20200217/models.rb', line 5883

def initialize(clusterlist=nil, totalcount=nil, requestid=nil)
  @ClusterList = clusterlist
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#ClusterListObject

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

Parameters:

  • ClusterList:

    集群信息

  • TotalCount:

    总条数

  • RequestId:

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



5881
5882
5883
# File 'lib/v20200217/models.rb', line 5881

def ClusterList
  @ClusterList
end

#RequestIdObject

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

Parameters:

  • ClusterList:

    集群信息

  • TotalCount:

    总条数

  • RequestId:

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



5881
5882
5883
# File 'lib/v20200217/models.rb', line 5881

def RequestId
  @RequestId
end

#TotalCountObject

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

Parameters:

  • ClusterList:

    集群信息

  • TotalCount:

    总条数

  • RequestId:

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



5881
5882
5883
# File 'lib/v20200217/models.rb', line 5881

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
# File 'lib/v20200217/models.rb', line 5889

def deserialize(params)
  unless params['ClusterList'].nil?
    @ClusterList = []
    params['ClusterList'].each do |i|
      rocketmqclusterdetail_tmp = RocketMQClusterDetail.new
      rocketmqclusterdetail_tmp.deserialize(i)
      @ClusterList << rocketmqclusterdetail_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end