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.



2066
2067
2068
2069
2070
# File 'lib/v20190823/models.rb', line 2066

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)。定位问题时需要提供该次请求的 RequestId。



2064
2065
2066
# File 'lib/v20190823/models.rb', line 2064

def RequestId
  @RequestId
end

#TableInfosObject

Parameters:

  • TotalCount:

    表格数量

  • TableInfos:

    表格详情结果列表

  • RequestId:

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



2064
2065
2066
# File 'lib/v20190823/models.rb', line 2064

def TableInfos
  @TableInfos
end

#TotalCountObject

Parameters:

  • TotalCount:

    表格数量

  • TableInfos:

    表格详情结果列表

  • RequestId:

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



2064
2065
2066
# File 'lib/v20190823/models.rb', line 2064

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
# File 'lib/v20190823/models.rb', line 2072

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