Class: TencentCloud::Tke::V20180525::DescribeClusterRollOutSequenceTagsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeClusterRollOutSequenceTagsResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeClusterRollOutSequenceTags返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(clustertags = nil, totalcount = nil, requestid = nil) ⇒ DescribeClusterRollOutSequenceTagsResponse
constructor
A new instance of DescribeClusterRollOutSequenceTagsResponse.
Constructor Details
#initialize(clustertags = nil, totalcount = nil, requestid = nil) ⇒ DescribeClusterRollOutSequenceTagsResponse
Returns a new instance of DescribeClusterRollOutSequenceTagsResponse.
7133 7134 7135 7136 7137 |
# File 'lib/v20180525/models.rb', line 7133 def initialize(=nil, totalcount=nil, requestid=nil) @ClusterTags = @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ClusterTags ⇒ Object
7131 7132 7133 |
# File 'lib/v20180525/models.rb', line 7131 def ClusterTags @ClusterTags end |
#RequestId ⇒ Object
7131 7132 7133 |
# File 'lib/v20180525/models.rb', line 7131 def RequestId @RequestId end |
#TotalCount ⇒ Object
7131 7132 7133 |
# File 'lib/v20180525/models.rb', line 7131 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 |
# File 'lib/v20180525/models.rb', line 7139 def deserialize(params) unless params['ClusterTags'].nil? @ClusterTags = [] params['ClusterTags'].each do |i| clusterrolloutsequencetag_tmp = ClusterRollOutSequenceTag.new clusterrolloutsequencetag_tmp.deserialize(i) @ClusterTags << clusterrolloutsequencetag_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |