Class: TencentCloud::Cwp::V20180228::DescribeFileTamperEventsRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeFileTamperEventsRequest
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeFileTamperEvents请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Status - String - 是否必填:否 - 处理状态 0 -- 待处理 1 -- 已加白 2 -- 已删除 3 - 已忽略
- ModifyTime - String - 是否必填:否 - 最近发生时间
- Uuid- String - 是否必填:否 - 主机uuid查询
- RuleCategory- string - 是否必填:否 - 规则类别 0 系统规则 1 自定义规则
- FileAction- string - 是否必填:否 - 威胁行为 read 读取文件 write 写文件
. -
#Filters ⇒ Object
- Status - String - 是否必填:否 - 处理状态 0 -- 待处理 1 -- 已加白 2 -- 已删除 3 - 已忽略
- ModifyTime - String - 是否必填:否 - 最近发生时间
- Uuid- String - 是否必填:否 - 主机uuid查询
- RuleCategory- string - 是否必填:否 - 规则类别 0 系统规则 1 自定义规则
- FileAction- string - 是否必填:否 - 威胁行为 read 读取文件 write 写文件
. -
#Limit ⇒ Object
- Status - String - 是否必填:否 - 处理状态 0 -- 待处理 1 -- 已加白 2 -- 已删除 3 - 已忽略
- ModifyTime - String - 是否必填:否 - 最近发生时间
- Uuid- String - 是否必填:否 - 主机uuid查询
- RuleCategory- string - 是否必填:否 - 规则类别 0 系统规则 1 自定义规则
- FileAction- string - 是否必填:否 - 威胁行为 read 读取文件 write 写文件
. -
#Offset ⇒ Object
- Status - String - 是否必填:否 - 处理状态 0 -- 待处理 1 -- 已加白 2 -- 已删除 3 - 已忽略
- ModifyTime - String - 是否必填:否 - 最近发生时间
- Uuid- String - 是否必填:否 - 主机uuid查询
- RuleCategory- string - 是否必填:否 - 规则类别 0 系统规则 1 自定义规则
- FileAction- string - 是否必填:否 - 威胁行为 read 读取文件 write 写文件
. -
#Order ⇒ Object
- Status - String - 是否必填:否 - 处理状态 0 -- 待处理 1 -- 已加白 2 -- 已删除 3 - 已忽略
- ModifyTime - String - 是否必填:否 - 最近发生时间
- Uuid- String - 是否必填:否 - 主机uuid查询
- RuleCategory- string - 是否必填:否 - 规则类别 0 系统规则 1 自定义规则
- FileAction- string - 是否必填:否 - 威胁行为 read 读取文件 write 写文件
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, offset = nil, limit = nil, order = nil, by = nil) ⇒ DescribeFileTamperEventsRequest
constructor
A new instance of DescribeFileTamperEventsRequest.
Constructor Details
#initialize(filters = nil, offset = nil, limit = nil, order = nil, by = nil) ⇒ DescribeFileTamperEventsRequest
Returns a new instance of DescribeFileTamperEventsRequest.
14556 14557 14558 14559 14560 14561 14562 |
# File 'lib/v20180228/models.rb', line 14556 def initialize(filters=nil, offset=nil, limit=nil, order=nil, by=nil) @Filters = filters @Offset = offset @Limit = limit @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
14554 14555 14556 |
# File 'lib/v20180228/models.rb', line 14554 def By @By end |
#Filters ⇒ Object
14554 14555 14556 |
# File 'lib/v20180228/models.rb', line 14554 def Filters @Filters end |
#Limit ⇒ Object
14554 14555 14556 |
# File 'lib/v20180228/models.rb', line 14554 def Limit @Limit end |
#Offset ⇒ Object
14554 14555 14556 |
# File 'lib/v20180228/models.rb', line 14554 def Offset @Offset end |
#Order ⇒ Object
14554 14555 14556 |
# File 'lib/v20180228/models.rb', line 14554 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 |
# File 'lib/v20180228/models.rb', line 14564 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filters_tmp = Filters.new filters_tmp.deserialize(i) @Filters << filters_tmp end end @Offset = params['Offset'] @Limit = params['Limit'] @Order = params['Order'] @By = params['By'] end |