Class: TencentCloud::Cwp::V20180228::ExportVulDefencePluginEventRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportVulDefencePluginEventRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportVulDefencePluginEvent请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, where = nil) ⇒ ExportVulDefencePluginEventRequest
constructor
A new instance of ExportVulDefencePluginEventRequest.
Constructor Details
#initialize(filters = nil, where = nil) ⇒ ExportVulDefencePluginEventRequest
Returns a new instance of ExportVulDefencePluginEventRequest.
28994 28995 28996 28997 |
# File 'lib/v20180228/models.rb', line 28994 def initialize(filters=nil, where=nil) @Filters = filters @Where = where end |
Instance Attribute Details
#Filters ⇒ Object
28992 28993 28994 |
# File 'lib/v20180228/models.rb', line 28992 def Filters @Filters end |
#Where ⇒ Object
28992 28993 28994 |
# File 'lib/v20180228/models.rb', line 28992 def Where @Where end |
Instance Method Details
#deserialize(params) ⇒ Object
28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 |
# File 'lib/v20180228/models.rb', line 28999 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @Where = params['Where'] end |