Class: Fog::Cloudstack::Compute::Volumes

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/cloudstack/models/compute/volumes.rb

Instance Method Summary collapse

Instance Method Details

#all(attributes = {}) ⇒ Object



10
11
12
13
14
# File 'lib/fog/cloudstack/models/compute/volumes.rb', line 10

def all(attributes = {})
  response = service.list_volumes(attributes)
  data = response["listvolumesresponse"]["volume"] || []
  load(data)
end

#get(volume_id) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/fog/cloudstack/models/compute/volumes.rb', line 16

def get(volume_id)
  if volume = service.list_volumes('id' => volume_id)["listvolumesresponse"]["volume"].first
    new(volume)
  end
rescue Fog::Cloudstack::Compute::BadRequest
  nil
end