mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
b70e972a58
missing: - new model tests - templates model - clone this patch includes a lot of changes and cleanups, exposing more fog collections/models and rewriting most requests it includes valuable feedback from endzyme <nick.huanca@gmail.com>
33 lines
713 B
Ruby
33 lines
713 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/vsphere/models/compute/volume'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
|
|
class Volumes < Fog::Collection
|
|
|
|
model Fog::Compute::Vsphere::Volume
|
|
|
|
attr_accessor :vm
|
|
|
|
def all(filters = {})
|
|
requires :vm
|
|
case vm
|
|
when Fog::Compute::Vsphere::Server
|
|
load connection.list_vm_volumes(vm.id)
|
|
when Fog::Compute::Vsphere::Template
|
|
load connection.list_template_volumes(vm.id)
|
|
else
|
|
raise 'volumes should have vm or template'
|
|
end
|
|
end
|
|
|
|
def get(id)
|
|
new connection.get_volume(id)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|