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.



7038
7039
7040
7041
7042
# File 'lib/v20180525/models.rb', line 7038

def initialize(clustertags=nil, totalcount=nil, requestid=nil)
  @ClusterTags = clustertags
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#ClusterTagsObject

Parameters:

  • ClusterTags:

    集群发布序列标签

  • TotalCount:

    总条目数

  • RequestId:

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



7036
7037
7038
# File 'lib/v20180525/models.rb', line 7036

def ClusterTags
  @ClusterTags
end

#RequestIdObject

Parameters:

  • ClusterTags:

    集群发布序列标签

  • TotalCount:

    总条目数

  • RequestId:

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



7036
7037
7038
# File 'lib/v20180525/models.rb', line 7036

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • ClusterTags:

    集群发布序列标签

  • TotalCount:

    总条目数

  • RequestId:

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



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