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.
28533 28534 28535 28536 |
# File 'lib/v20180228/models.rb', line 28533 def initialize(filters=nil, where=nil) @Filters = filters @Where = where end |
Instance Attribute Details
#Filters ⇒ Object
28531 28532 28533 |
# File 'lib/v20180228/models.rb', line 28531 def Filters @Filters end |
#Where ⇒ Object
28531 28532 28533 |
# File 'lib/v20180228/models.rb', line 28531 def Where @Where end |
Instance Method Details
#deserialize(params) ⇒ Object
28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 |
# File 'lib/v20180228/models.rb', line 28538 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 |