lib/v20191016/models.rb in tencentcloud-sdk-dbbrain-3.0.588 vs lib/v20191016/models.rb in tencentcloud-sdk-dbbrain-3.0.589
- old
+ new
@@ -2538,14 +2538,16 @@
# @type RowsSentAvg: Float
# @param LockTimeAvg: 平均锁等待时间
# @type LockTimeAvg: Float
# @param RowsExaminedAvg: 平均扫描行数
# @type RowsExaminedAvg: Float
+ # @param Md5: SOL模板的MD5值
+ # @type Md5: String
- attr_accessor :LockTime, :LockTimeMax, :LockTimeMin, :RowsExamined, :RowsExaminedMax, :RowsExaminedMin, :QueryTime, :QueryTimeMax, :QueryTimeMin, :RowsSent, :RowsSentMax, :RowsSentMin, :ExecTimes, :SqlTemplate, :SqlText, :Schema, :QueryTimeRatio, :LockTimeRatio, :RowsExaminedRatio, :RowsSentRatio, :QueryTimeAvg, :RowsSentAvg, :LockTimeAvg, :RowsExaminedAvg
+ attr_accessor :LockTime, :LockTimeMax, :LockTimeMin, :RowsExamined, :RowsExaminedMax, :RowsExaminedMin, :QueryTime, :QueryTimeMax, :QueryTimeMin, :RowsSent, :RowsSentMax, :RowsSentMin, :ExecTimes, :SqlTemplate, :SqlText, :Schema, :QueryTimeRatio, :LockTimeRatio, :RowsExaminedRatio, :RowsSentRatio, :QueryTimeAvg, :RowsSentAvg, :LockTimeAvg, :RowsExaminedAvg, :Md5
- def initialize(locktime=nil, locktimemax=nil, locktimemin=nil, rowsexamined=nil, rowsexaminedmax=nil, rowsexaminedmin=nil, querytime=nil, querytimemax=nil, querytimemin=nil, rowssent=nil, rowssentmax=nil, rowssentmin=nil, exectimes=nil, sqltemplate=nil, sqltext=nil, schema=nil, querytimeratio=nil, locktimeratio=nil, rowsexaminedratio=nil, rowssentratio=nil, querytimeavg=nil, rowssentavg=nil, locktimeavg=nil, rowsexaminedavg=nil)
+ def initialize(locktime=nil, locktimemax=nil, locktimemin=nil, rowsexamined=nil, rowsexaminedmax=nil, rowsexaminedmin=nil, querytime=nil, querytimemax=nil, querytimemin=nil, rowssent=nil, rowssentmax=nil, rowssentmin=nil, exectimes=nil, sqltemplate=nil, sqltext=nil, schema=nil, querytimeratio=nil, locktimeratio=nil, rowsexaminedratio=nil, rowssentratio=nil, querytimeavg=nil, rowssentavg=nil, locktimeavg=nil, rowsexaminedavg=nil, md5=nil)
@LockTime = locktime
@LockTimeMax = locktimemax
@LockTimeMin = locktimemin
@RowsExamined = rowsexamined
@RowsExaminedMax = rowsexaminedmax
@@ -2566,10 +2568,11 @@
@RowsSentRatio = rowssentratio
@QueryTimeAvg = querytimeavg
@RowsSentAvg = rowssentavg
@LockTimeAvg = locktimeavg
@RowsExaminedAvg = rowsexaminedavg
+ @Md5 = md5
end
def deserialize(params)
@LockTime = params['LockTime']
@LockTimeMax = params['LockTimeMax']
@@ -2593,9 +2596,10 @@
@RowsSentRatio = params['RowsSentRatio']
@QueryTimeAvg = params['QueryTimeAvg']
@RowsSentAvg = params['RowsSentAvg']
@LockTimeAvg = params['LockTimeAvg']
@RowsExaminedAvg = params['RowsExaminedAvg']
+ @Md5 = params['Md5']
end
end
# 库表空间统计数据。
class TableSpaceData < TencentCloud::Common::AbstractModel