Class: TencentCloud::Cdb::V20170320::InstanceAuditLogFilters

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

Overview

审计日志搜索过滤器

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type = nil, compare = nil, value = nil) ⇒ InstanceAuditLogFilters

Returns a new instance of InstanceAuditLogFilters.



9356
9357
9358
9359
9360
# File 'lib/v20170320/models.rb', line 9356

def initialize(type=nil, compare=nil, value=nil)
  @Type = type
  @Compare = compare
  @Value = value
end

Instance Attribute Details

#CompareObject

范围搜索(时间类型统一为微秒): execTime - 执行时间; lockWaitTime - 执行时间; ioWaitTime - IO等待时间; trxLivingTime - 事物持续时间; cpuTime - cpu时间; checkRows - 扫描行数; affectRows - 影响行数; sentRows - 返回行数。 WINC-包含(分词维度), WEXC-不包含(分词维度), INC - 包含, EXC - 不包含, EQS - 等于, NEQ - 不等于, RA - 范围。

Parameters:

  • Compare:

    过滤条件。支持以下条件:

  • Value:

    过滤的值。反向查询时,多个值之前是且的关系,正向查询多个值是或的关系



9354
9355
9356
# File 'lib/v20170320/models.rb', line 9354

def Compare
  @Compare
end

#TypeObject

范围搜索(时间类型统一为微秒): execTime - 执行时间; lockWaitTime - 执行时间; ioWaitTime - IO等待时间; trxLivingTime - 事物持续时间; cpuTime - cpu时间; checkRows - 扫描行数; affectRows - 影响行数; sentRows - 返回行数。 WINC-包含(分词维度), WEXC-不包含(分词维度), INC - 包含, EXC - 不包含, EQS - 等于, NEQ - 不等于, RA - 范围。

Parameters:

  • Compare:

    过滤条件。支持以下条件:

  • Value:

    过滤的值。反向查询时,多个值之前是且的关系,正向查询多个值是或的关系



9354
9355
9356
# File 'lib/v20170320/models.rb', line 9354

def Type
  @Type
end

#ValueObject

范围搜索(时间类型统一为微秒): execTime - 执行时间; lockWaitTime - 执行时间; ioWaitTime - IO等待时间; trxLivingTime - 事物持续时间; cpuTime - cpu时间; checkRows - 扫描行数; affectRows - 影响行数; sentRows - 返回行数。 WINC-包含(分词维度), WEXC-不包含(分词维度), INC - 包含, EXC - 不包含, EQS - 等于, NEQ - 不等于, RA - 范围。

Parameters:

  • Compare:

    过滤条件。支持以下条件:

  • Value:

    过滤的值。反向查询时,多个值之前是且的关系,正向查询多个值是或的关系



9354
9355
9356
# File 'lib/v20170320/models.rb', line 9354

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



9362
9363
9364
9365
9366
# File 'lib/v20170320/models.rb', line 9362

def deserialize(params)
  @Type = params['Type']
  @Compare = params['Compare']
  @Value = params['Value']
end