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.
7038 7039 7040 7041 7042 |
# File 'lib/v20180525/models.rb', line 7038 def initialize(=nil, totalcount=nil, requestid=nil) @ClusterTags = @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ClusterTags ⇒ Object
7036 7037 7038 |
# File 'lib/v20180525/models.rb', line 7036 def ClusterTags @ClusterTags end |
#RequestId ⇒ Object
7036 7037 7038 |
# File 'lib/v20180525/models.rb', line 7036 def RequestId @RequestId end |
#TotalCount ⇒ Object
7036 7037 7038 |
# File 'lib/v20180525/models.rb', line 7036 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 |
# File 'lib/v20180525/models.rb', line 7044 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 |