Class: Fog::Compute::CloudSigma::MountPoint
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::CloudSigma::MountPoint
- Defined in:
- lib/fog/cloudsigma/models/mountpoint.rb
Instance Method Summary collapse
- #drive ⇒ Object (also: #volume)
- #drive=(new_drive) ⇒ Object
Instance Method Details
#drive ⇒ Object Also known as: volume
12 13 14 15 16 |
# File 'lib/fog/cloudsigma/models/mountpoint.rb', line 12 def drive drive = attributes[:drive] drive.kind_of?(Hash) ? drive['uuid'] : drive end |
#drive=(new_drive) ⇒ Object
18 19 20 |
# File 'lib/fog/cloudsigma/models/mountpoint.rb', line 18 def drive=(new_drive) attributes[:drive] = new_drive end |