Class: TencentCloud::Cwp::V20180228::DescribeVulDefencePluginStatusRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeVulDefencePluginStatusRequest
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeVulDefencePluginStatus请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>.
-
#Filters ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>.
-
#Limit ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>.
-
#Offset ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>.
-
#Order ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, offset = nil, limit = nil, order = nil, by = nil) ⇒ DescribeVulDefencePluginStatusRequest
constructor
A new instance of DescribeVulDefencePluginStatusRequest.
Constructor Details
#initialize(filters = nil, offset = nil, limit = nil, order = nil, by = nil) ⇒ DescribeVulDefencePluginStatusRequest
Returns a new instance of DescribeVulDefencePluginStatusRequest.
23545 23546 23547 23548 23549 23550 23551 |
# File 'lib/v20180228/models.rb', line 23545 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
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>
23543 23544 23545 |
# File 'lib/v20180228/models.rb', line 23543 def By @By end |
#Filters ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>
23543 23544 23545 |
# File 'lib/v20180228/models.rb', line 23543 def Filters @Filters end |
#Limit ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>
23543 23544 23545 |
# File 'lib/v20180228/models.rb', line 23543 def Limit @Limit end |
#Offset ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>
23543 23544 23545 |
# File 'lib/v20180228/models.rb', line 23543 def Offset @Offset end |
#Order ⇒ Object
<li>Keywords - String - 是否必填:否 - 主机ip或别名筛选</li> <li>Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入</li>
23543 23544 23545 |
# File 'lib/v20180228/models.rb', line 23543 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 |
# File 'lib/v20180228/models.rb', line 23553 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 @Offset = params['Offset'] @Limit = params['Limit'] @Order = params['Order'] @By = params['By'] end |