Class: TencentCloud::Waf::V20180125::HistogramInfo

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

Overview

直方图详细信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(count = nil, btime = nil) ⇒ HistogramInfo

Returns a new instance of HistogramInfo.



11905
11906
11907
11908
# File 'lib/v20180125/models.rb', line 11905

def initialize(count=nil, btime=nil)
  @Count = count
  @BTime = btime
end

Instance Attribute Details

#BTimeObject

Parameters:

  • Count:

    统计周期内的日志条数

  • BTime:

    按 period 取整后的 unix timestamp: 单位毫秒



11903
11904
11905
# File 'lib/v20180125/models.rb', line 11903

def BTime
  @BTime
end

#CountObject

Parameters:

  • Count:

    统计周期内的日志条数

  • BTime:

    按 period 取整后的 unix timestamp: 单位毫秒



11903
11904
11905
# File 'lib/v20180125/models.rb', line 11903

def Count
  @Count
end

Instance Method Details

#deserialize(params) ⇒ Object



11910
11911
11912
11913
# File 'lib/v20180125/models.rb', line 11910

def deserialize(params)
  @Count = params['Count']
  @BTime = params['BTime']
end