Class: TencentCloud::Cwp::V20180228::ExportRansomDefenseStrategyMachinesRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportRansomDefenseStrategyMachinesRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportRansomDefenseStrategyMachines请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过实例名查询
- Status - String - 是否必填:否 - 策略状态:0备份中,1备份成功,2备份失败
- LastBackupTimeBegin - String - 是否必填:否 - 最近一次备份时间开始
- LastBackupTimeEnd - String - 是否必填:否 - 最近一次备份时间结束
. -
#Filters ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过实例名查询
- Status - String - 是否必填:否 - 策略状态:0备份中,1备份成功,2备份失败
- LastBackupTimeBegin - String - 是否必填:否 - 最近一次备份时间开始
- LastBackupTimeEnd - String - 是否必填:否 - 最近一次备份时间结束
. -
#Id ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过实例名查询
- Status - String - 是否必填:否 - 策略状态:0备份中,1备份成功,2备份失败
- LastBackupTimeBegin - String - 是否必填:否 - 最近一次备份时间开始
- LastBackupTimeEnd - String - 是否必填:否 - 最近一次备份时间结束
. -
#Order ⇒ Object
- Ips - String - 是否必填:否 - 通过ip查询
- MachineNames - String - 是否必填:否 - 通过实例名查询
- Names - String - 是否必填:否 - 通过实例名查询
- Status - String - 是否必填:否 - 策略状态:0备份中,1备份成功,2备份失败
- LastBackupTimeBegin - String - 是否必填:否 - 最近一次备份时间开始
- LastBackupTimeEnd - String - 是否必填:否 - 最近一次备份时间结束
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, order = nil, by = nil, id = nil) ⇒ ExportRansomDefenseStrategyMachinesRequest
constructor
A new instance of ExportRansomDefenseStrategyMachinesRequest.
Constructor Details
#initialize(filters = nil, order = nil, by = nil, id = nil) ⇒ ExportRansomDefenseStrategyMachinesRequest
Returns a new instance of ExportRansomDefenseStrategyMachinesRequest.
28030 28031 28032 28033 28034 28035 |
# File 'lib/v20180228/models.rb', line 28030 def initialize(filters=nil, order=nil, by=nil, id=nil) @Filters = filters @Order = order @By = by @Id = id end |
Instance Attribute Details
#By ⇒ Object
28028 28029 28030 |
# File 'lib/v20180228/models.rb', line 28028 def By @By end |
#Filters ⇒ Object
28028 28029 28030 |
# File 'lib/v20180228/models.rb', line 28028 def Filters @Filters end |
#Id ⇒ Object
28028 28029 28030 |
# File 'lib/v20180228/models.rb', line 28028 def Id @Id end |
#Order ⇒ Object
28028 28029 28030 |
# File 'lib/v20180228/models.rb', line 28028 def Order @Order end |
Instance Method Details
#deserialize(params) ⇒ Object
28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 |
# File 'lib/v20180228/models.rb', line 28037 def deserialize(params) 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'] @Id = params['Id'] end |