Class: TencentCloud::Cwp::V20180228::DescribeExportMachinesRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeExportMachinesRequest
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeExportMachines请求参数结构体
Instance Attribute Summary collapse
-
#Filters ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询. -
#Limit ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询. -
#MachineRegion ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询. -
#MachineType ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询. -
#Offset ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询. -
#ProjectIds ⇒ Object
- CVM:表示虚拟主机
- BM: 表示黑石物理机
- Keywords - String - 是否必填:否 - 查询关键字
- Status - String - 是否必填:否 - 客户端在线状态(OFFLINE: 离线 | ONLINE: 在线 | UNINSTALLED:未安装)
- Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版)
每个过滤条件只支持一个值,暂不支持多个值“或”关系查询.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(machinetype = nil, machineregion = nil, limit = nil, offset = nil, filters = nil, projectids = nil) ⇒ DescribeExportMachinesRequest
constructor
A new instance of DescribeExportMachinesRequest.
Constructor Details
#initialize(machinetype = nil, machineregion = nil, limit = nil, offset = nil, filters = nil, projectids = nil) ⇒ DescribeExportMachinesRequest
Returns a new instance of DescribeExportMachinesRequest.
14384 14385 14386 14387 14388 14389 14390 14391 |
# File 'lib/v20180228/models.rb', line 14384 def initialize(machinetype=nil, machineregion=nil, limit=nil, offset=nil, filters=nil, projectids=nil) @MachineType = machinetype @MachineRegion = machineregion @Limit = limit @Offset = offset @Filters = filters @ProjectIds = projectids end |
Instance Attribute Details
#Filters ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def Filters @Filters end |
#Limit ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def Limit @Limit end |
#MachineRegion ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def MachineRegion @MachineRegion end |
#MachineType ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def MachineType @MachineType end |
#Offset ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def Offset @Offset end |
#ProjectIds ⇒ Object
14382 14383 14384 |
# File 'lib/v20180228/models.rb', line 14382 def ProjectIds @ProjectIds end |
Instance Method Details
#deserialize(params) ⇒ Object
14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 |
# File 'lib/v20180228/models.rb', line 14393 def deserialize(params) @MachineType = params['MachineType'] @MachineRegion = params['MachineRegion'] @Limit = params['Limit'] @Offset = params['Offset'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @ProjectIds = params['ProjectIds'] end |