Class: TencentCloud::Wedata::V20210820::DescribeInLongTkeClusterListResponse

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

Overview

DescribeInLongTkeClusterList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items = nil, pageindex = nil, pagesize = nil, totalcount = nil, totalpage = nil, requestid = nil) ⇒ DescribeInLongTkeClusterListResponse

Returns a new instance of DescribeInLongTkeClusterListResponse.



11349
11350
11351
11352
11353
11354
11355
11356
# File 'lib/v20210820/models.rb', line 11349

def initialize(items=nil, pageindex=nil, pagesize=nil, totalcount=nil, totalpage=nil, requestid=nil)
  @Items = items
  @PageIndex = pageindex
  @PageSize = pagesize
  @TotalCount = totalcount
  @TotalPage = totalpage
  @RequestId = requestid
end

Instance Attribute Details

#ItemsObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def Items
  @Items
end

#PageIndexObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def PageIndex
  @PageIndex
end

#PageSizeObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def PageSize
  @PageSize
end

#RequestIdObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def TotalCount
  @TotalCount
end

#TotalPageObject

Parameters:

  • Items:

    TKE集群信息

  • PageIndex:

    页码

  • PageSize:

    每页记录数

  • TotalCount:

    总记录数

  • TotalPage:

    总页数

  • RequestId:

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



11347
11348
11349
# File 'lib/v20210820/models.rb', line 11347

def TotalPage
  @TotalPage
end

Instance Method Details

#deserialize(params) ⇒ Object



11358
11359
11360
11361
11362
11363
11364
11365
11366
11367
11368
11369
11370
11371
11372
# File 'lib/v20210820/models.rb', line 11358

def deserialize(params)
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      inlongtkedetail_tmp = InLongTkeDetail.new
      inlongtkedetail_tmp.deserialize(i)
      @Items << inlongtkedetail_tmp
    end
  end
  @PageIndex = params['PageIndex']
  @PageSize = params['PageSize']
  @TotalCount = params['TotalCount']
  @TotalPage = params['TotalPage']
  @RequestId = params['RequestId']
end