Class: Fog::Compute::Ecloud::DetachedDisk

Inherits:
Ecloud::Model show all
Defined in:
lib/fog/compute/ecloud/models/detached_disk.rb

Instance Attribute Summary

Attributes inherited from Ecloud::Model

#loaded

Instance Method Summary collapse

Methods inherited from Ecloud::Model

#load_unless_loaded!, #reload

Instance Method Details

#idObject



21
22
23
# File 'lib/fog/compute/ecloud/models/detached_disk.rb', line 21

def id
  href.scan(/\d+/)[0]
end

#ready?Boolean

Returns:

  • (Boolean)


13
14
15
16
17
18
19
# File 'lib/fog/compute/ecloud/models/detached_disk.rb', line 13

def ready?
  unless status =~ /AttachInProgress|DetachInProgress/
    true
  else
    false
  end
end