Class: TencentCloud::Tcaplusdb::V20190823::DescribeClusterTagsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DescribeClusterTagsResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DescribeClusterTags返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(rows = nil, totalcount = nil, requestid = nil) ⇒ DescribeClusterTagsResponse
constructor
A new instance of DescribeClusterTagsResponse.
Constructor Details
#initialize(rows = nil, totalcount = nil, requestid = nil) ⇒ DescribeClusterTagsResponse
Returns a new instance of DescribeClusterTagsResponse.
1529 1530 1531 1532 1533 |
# File 'lib/v20190823/models.rb', line 1529 def initialize(rows=nil, totalcount=nil, requestid=nil) @Rows = rows @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1527 1528 1529 |
# File 'lib/v20190823/models.rb', line 1527 def RequestId @RequestId end |
#Rows ⇒ Object
1527 1528 1529 |
# File 'lib/v20190823/models.rb', line 1527 def Rows @Rows end |
#TotalCount ⇒ Object
1527 1528 1529 |
# File 'lib/v20190823/models.rb', line 1527 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 |
# File 'lib/v20190823/models.rb', line 1535 def deserialize(params) unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| = TagsInfoOfCluster.new .deserialize(i) @Rows << end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |