Class: TencentCloud::Cwp::V20180228::DescribeRansomDefenseStrategyListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeRansomDefenseStrategyListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeRansomDefenseStrategyList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过防勒索策略名查询
- Dirs - String - 是否必填:否 - 诱饵目录
- Status - String - 是否必填:否 - 策略状态:0关闭,1开启
- BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
. -
#Filters ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过防勒索策略名查询
- Dirs - String - 是否必填:否 - 诱饵目录
- Status - String - 是否必填:否 - 策略状态:0关闭,1开启
- BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
. -
#Limit ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过防勒索策略名查询
- Dirs - String - 是否必填:否 - 诱饵目录
- Status - String - 是否必填:否 - 策略状态:0关闭,1开启
- BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
. -
#Offset ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过防勒索策略名查询
- Dirs - String - 是否必填:否 - 诱饵目录
- Status - String - 是否必填:否 - 策略状态:0关闭,1开启
- BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
. -
#Order ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过防勒索策略名查询
- Dirs - String - 是否必填:否 - 诱饵目录
- Status - String - 是否必填:否 - 策略状态:0关闭,1开启
- BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(limit = nil, offset = nil, filters = nil, order = nil, by = nil) ⇒ DescribeRansomDefenseStrategyListRequest
constructor
A new instance of DescribeRansomDefenseStrategyListRequest.
Constructor Details
#initialize(limit = nil, offset = nil, filters = nil, order = nil, by = nil) ⇒ DescribeRansomDefenseStrategyListRequest
Returns a new instance of DescribeRansomDefenseStrategyListRequest.
19575 19576 19577 19578 19579 19580 19581 |
# File 'lib/v20180228/models.rb', line 19575 def initialize(limit=nil, offset=nil, filters=nil, order=nil, by=nil) @Limit = limit @Offset = offset @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
19573 19574 19575 |
# File 'lib/v20180228/models.rb', line 19573 def By @By end |
#Filters ⇒ Object
19573 19574 19575 |
# File 'lib/v20180228/models.rb', line 19573 def Filters @Filters end |
#Limit ⇒ Object
19573 19574 19575 |
# File 'lib/v20180228/models.rb', line 19573 def Limit @Limit end |
#Offset ⇒ Object
19573 19574 19575 |
# File 'lib/v20180228/models.rb', line 19573 def Offset @Offset end |
#Order ⇒ Object
19573 19574 19575 |
# File 'lib/v20180228/models.rb', line 19573 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 |
# File 'lib/v20180228/models.rb', line 19583 def deserialize(params) @Limit = params['Limit'] @Offset = params['Offset'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filters_tmp = Filters.new filters_tmp.deserialize(i) @Filters << filters_tmp end end @Order = params['Order'] @By = params['By'] end |