Class: TencentCloud::Cwp::V20180228::DescribeVulStoreListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeVulStoreListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeVulStoreList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- CveId- string - 是否必填:否 - cveid
- VulCategory- string - 是否必填:否 - 漏洞分类 1 Web-CMS漏洞 ,2 应用漏洞 ,4 Linux软件漏洞,5 Windows系统漏洞
- Method- string - 是否必填:否 - 检测方法 0版本对比,1 poc检测
- SupportDefense- string - 是否必填:否 - 是否支持防御 0不支持,1支持
- FixSwitch- string - 是否必填:否 - 是否支持自动修复 0不支持,1支持
. -
#Filters ⇒ Object
- CveId- string - 是否必填:否 - cveid
- VulCategory- string - 是否必填:否 - 漏洞分类 1 Web-CMS漏洞 ,2 应用漏洞 ,4 Linux软件漏洞,5 Windows系统漏洞
- Method- string - 是否必填:否 - 检测方法 0版本对比,1 poc检测
- SupportDefense- string - 是否必填:否 - 是否支持防御 0不支持,1支持
- FixSwitch- string - 是否必填:否 - 是否支持自动修复 0不支持,1支持
. -
#Limit ⇒ Object
- CveId- string - 是否必填:否 - cveid
- VulCategory- string - 是否必填:否 - 漏洞分类 1 Web-CMS漏洞 ,2 应用漏洞 ,4 Linux软件漏洞,5 Windows系统漏洞
- Method- string - 是否必填:否 - 检测方法 0版本对比,1 poc检测
- SupportDefense- string - 是否必填:否 - 是否支持防御 0不支持,1支持
- FixSwitch- string - 是否必填:否 - 是否支持自动修复 0不支持,1支持
. -
#Offset ⇒ Object
- CveId- string - 是否必填:否 - cveid
- VulCategory- string - 是否必填:否 - 漏洞分类 1 Web-CMS漏洞 ,2 应用漏洞 ,4 Linux软件漏洞,5 Windows系统漏洞
- Method- string - 是否必填:否 - 检测方法 0版本对比,1 poc检测
- SupportDefense- string - 是否必填:否 - 是否支持防御 0不支持,1支持
- FixSwitch- string - 是否必填:否 - 是否支持自动修复 0不支持,1支持
. -
#Order ⇒ Object
- CveId- string - 是否必填:否 - cveid
- VulCategory- string - 是否必填:否 - 漏洞分类 1 Web-CMS漏洞 ,2 应用漏洞 ,4 Linux软件漏洞,5 Windows系统漏洞
- Method- string - 是否必填:否 - 检测方法 0版本对比,1 poc检测
- SupportDefense- string - 是否必填:否 - 是否支持防御 0不支持,1支持
- FixSwitch- string - 是否必填:否 - 是否支持自动修复 0不支持,1支持
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, limit = nil, offset = nil, order = nil, by = nil) ⇒ DescribeVulStoreListRequest
constructor
A new instance of DescribeVulStoreListRequest.
Constructor Details
#initialize(filters = nil, limit = nil, offset = nil, order = nil, by = nil) ⇒ DescribeVulStoreListRequest
Returns a new instance of DescribeVulStoreListRequest.
24012 24013 24014 24015 24016 24017 24018 |
# File 'lib/v20180228/models.rb', line 24012 def initialize(filters=nil, limit=nil, offset=nil, order=nil, by=nil) @Filters = filters @Limit = limit @Offset = offset @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
24010 24011 24012 |
# File 'lib/v20180228/models.rb', line 24010 def By @By end |
#Filters ⇒ Object
24010 24011 24012 |
# File 'lib/v20180228/models.rb', line 24010 def Filters @Filters end |
#Limit ⇒ Object
24010 24011 24012 |
# File 'lib/v20180228/models.rb', line 24010 def Limit @Limit end |
#Offset ⇒ Object
24010 24011 24012 |
# File 'lib/v20180228/models.rb', line 24010 def Offset @Offset end |
#Order ⇒ Object
24010 24011 24012 |
# File 'lib/v20180228/models.rb', line 24010 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 |
# File 'lib/v20180228/models.rb', line 24020 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 @Limit = params['Limit'] @Offset = params['Offset'] @Order = params['Order'] @By = params['By'] end |