Class: TencentCloud::Tcaplusdb::V20190823::DescribeTablesInRecycleResponse

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

Overview

DescribeTablesInRecycle返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, tableinfos = nil, requestid = nil) ⇒ DescribeTablesInRecycleResponse

Returns a new instance of DescribeTablesInRecycleResponse.



2091
2092
2093
2094
2095
# File 'lib/v20190823/models.rb', line 2091

def initialize(totalcount=nil, tableinfos=nil, requestid=nil)
  @TotalCount = totalcount
  @TableInfos = tableinfos
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    表格数量

  • TableInfos:

    表格详情结果列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



2089
2090
2091
# File 'lib/v20190823/models.rb', line 2089

def RequestId
  @RequestId
end

#TableInfosObject

Parameters:

  • TotalCount:

    表格数量

  • TableInfos:

    表格详情结果列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



2089
2090
2091
# File 'lib/v20190823/models.rb', line 2089

def TableInfos
  @TableInfos
end

#TotalCountObject

Parameters:

  • TotalCount:

    表格数量

  • TableInfos:

    表格详情结果列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



2089
2090
2091
# File 'lib/v20190823/models.rb', line 2089

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
# File 'lib/v20190823/models.rb', line 2097

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['TableInfos'].nil?
    @TableInfos = []
    params['TableInfos'].each do |i|
      tableinfonew_tmp = TableInfoNew.new
      tableinfonew_tmp.deserialize(i)
      @TableInfos << tableinfonew_tmp
    end
  end
  @RequestId = params['RequestId']
end