Class: TencentCloud::Emr::V20190103::MultiDisk
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::MultiDisk
- Defined in:
- lib/v20190103/models.rb
Overview
多云盘参数
Instance Attribute Summary collapse
-
#Count ⇒ Object
- CLOUD_SSD:表示云SSD。
- CLOUD_PREMIUM:表示高效云盘。
- CLOUD_HSSD:表示增强型SSD云硬盘。
. -
#DiskType ⇒ Object
- CLOUD_SSD:表示云SSD。
- CLOUD_PREMIUM:表示高效云盘。
- CLOUD_HSSD:表示增强型SSD云硬盘。
. -
#Volume ⇒ Object
- CLOUD_SSD:表示云SSD。
- CLOUD_PREMIUM:表示高效云盘。
- CLOUD_HSSD:表示增强型SSD云硬盘。
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(disktype = nil, volume = nil, count = nil) ⇒ MultiDisk
constructor
A new instance of MultiDisk.
Constructor Details
#initialize(disktype = nil, volume = nil, count = nil) ⇒ MultiDisk
Returns a new instance of MultiDisk.
9623 9624 9625 9626 9627 |
# File 'lib/v20190103/models.rb', line 9623 def initialize(disktype=nil, volume=nil, count=nil) @DiskType = disktype @Volume = volume @Count = count end |
Instance Attribute Details
#Count ⇒ Object
9621 9622 9623 |
# File 'lib/v20190103/models.rb', line 9621 def Count @Count end |
#DiskType ⇒ Object
9621 9622 9623 |
# File 'lib/v20190103/models.rb', line 9621 def DiskType @DiskType end |
#Volume ⇒ Object
9621 9622 9623 |
# File 'lib/v20190103/models.rb', line 9621 def Volume @Volume end |
Instance Method Details
#deserialize(params) ⇒ Object
9629 9630 9631 9632 9633 |
# File 'lib/v20190103/models.rb', line 9629 def deserialize(params) @DiskType = params['DiskType'] @Volume = params['Volume'] @Count = params['Count'] end |