Class: TencentCloud::Cdb::V20170320::DescribeSlowLogDataResponse

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

Overview

DescribeSlowLogData返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeSlowLogDataResponse

Returns a new instance of DescribeSlowLogDataResponse.



8217
8218
8219
8220
8221
# File 'lib/v20170320/models.rb', line 8217

def initialize(totalcount=nil, items=nil, requestid=nil)
  @TotalCount = totalcount
  @Items = items
  @RequestId = requestid
end

Instance Attribute Details

#ItemsObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Items:

    查询到的记录。

  • RequestId:

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



8215
8216
8217
# File 'lib/v20170320/models.rb', line 8215

def Items
  @Items
end

#RequestIdObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Items:

    查询到的记录。

  • RequestId:

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



8215
8216
8217
# File 'lib/v20170320/models.rb', line 8215

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Items:

    查询到的记录。

  • RequestId:

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



8215
8216
8217
# File 'lib/v20170320/models.rb', line 8215

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
# File 'lib/v20170320/models.rb', line 8223

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Items'].nil?
    @Items = []
    params['Items'].each do |i|
      slowlogitem_tmp = SlowLogItem.new
      slowlogitem_tmp.deserialize(i)
      @Items << slowlogitem_tmp
    end
  end
  @RequestId = params['RequestId']
end