Class: TencentCloud::Tke::V20180525::DescribeClusterRollOutSequenceTagsResponse

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

Overview

DescribeClusterRollOutSequenceTags返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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(clustertags=nil, totalcount=nil, requestid=nil)
  @ClusterTags = clustertags
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#ClusterTagsObject

Parameters:

  • 集群发布序列标签

  • 总条目数

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



7131
7132
7133
# File 'lib/v20180525/models.rb', line 7131

def ClusterTags
  @ClusterTags
end

#RequestIdObject

Parameters:

  • 集群发布序列标签

  • 总条目数

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



7131
7132
7133
# File 'lib/v20180525/models.rb', line 7131

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • 集群发布序列标签

  • 总条目数

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



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