1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vsphere/models/compute/resource_pools.rb
Ohad Levy b70e972a58 VMWare vsphere provider refactor
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>
2012-11-14 15:31:02 +02:00

26 lines
No EOL
608 B
Ruby

require 'fog/core/collection'
require 'fog/vsphere/models/compute/resource_pool'
module Fog
module Compute
class Vsphere
class ResourcePools < Fog::Collection
model Fog::Compute::Vsphere::ResourcePool
attr_accessor :datacenter, :cluster
def all(filters = {})
load connection.list_resource_pools(filters.merge(:datacenter => datacenter, :cluster => cluster))
end
def get(id)
requires :datacenter
requires :cluster
new connection.get_resource_pool(id, cluster, datacenter)
end
end
end
end
end