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
- Keywords - String - 是否必填:否 - 主机ip或别名筛选
- Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入
. -
#Filters ⇒ Object
- Keywords - String - 是否必填:否 - 主机ip或别名筛选
- Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入
. -
#Limit ⇒ Object
- Keywords - String - 是否必填:否 - 主机ip或别名筛选
- Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入
. -
#Offset ⇒ Object
- Keywords - String - 是否必填:否 - 主机ip或别名筛选
- Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入
. -
#Order ⇒ Object
- Keywords - String - 是否必填:否 - 主机ip或别名筛选
- Exception - String - 是否必填:否 - 插件状态 0:正常,1:异常,2:无java进程注入
.
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.
23156 23157 23158 23159 23160 23161 23162 |
# File 'lib/v20180228/models.rb', line 23156 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
23154 23155 23156 |
# File 'lib/v20180228/models.rb', line 23154 def By @By end |
#Filters ⇒ Object
23154 23155 23156 |
# File 'lib/v20180228/models.rb', line 23154 def Filters @Filters end |
#Limit ⇒ Object
23154 23155 23156 |
# File 'lib/v20180228/models.rb', line 23154 def Limit @Limit end |
#Offset ⇒ Object
23154 23155 23156 |
# File 'lib/v20180228/models.rb', line 23154 def Offset @Offset end |
#Order ⇒ Object
23154 23155 23156 |
# File 'lib/v20180228/models.rb', line 23154 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 |
# File 'lib/v20180228/models.rb', line 23164 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 |