Class: TencentCloud::Dbbrain::V20210527::DescribeRedisSlowLogTopSqlsResponse

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

Overview

DescribeRedisSlowLogTopSqls返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeRedisSlowLogTopSqlsResponse

Returns a new instance of DescribeRedisSlowLogTopSqlsResponse.



3789
3790
3791
3792
3793
# File 'lib/v20210527/models.rb', line 3789

def initialize(totalcount=nil, rows=nil, requestid=nil)
  @TotalCount = totalcount
  @Rows = rows
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Rows:

    慢日志 top sql 列表。

  • RequestId:

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



3787
3788
3789
# File 'lib/v20210527/models.rb', line 3787

def RequestId
  @RequestId
end

#RowsObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Rows:

    慢日志 top sql 列表。

  • RequestId:

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



3787
3788
3789
# File 'lib/v20210527/models.rb', line 3787

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • TotalCount:

    符合条件的记录总数。

  • Rows:

    慢日志 top sql 列表。

  • RequestId:

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



3787
3788
3789
# File 'lib/v20210527/models.rb', line 3787

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
# File 'lib/v20210527/models.rb', line 3795

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Rows'].nil?
    @Rows = []
    params['Rows'].each do |i|
      slowlogagg_tmp = SlowLogAgg.new
      slowlogagg_tmp.deserialize(i)
      @Rows << slowlogagg_tmp
    end
  end
  @RequestId = params['RequestId']
end