mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
523 B
Ruby
26 lines
523 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/vsphere/models/compute/datastore'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class Vsphere
|
||
|
|
||
|
class Datastores < Fog::Collection
|
||
|
|
||
|
model Fog::Compute::Vsphere::Datastore
|
||
|
attr_accessor :datacenter
|
||
|
|
||
|
def all(filters = {})
|
||
|
load connection.list_datastores(filters.merge(:datacenter => datacenter))
|
||
|
end
|
||
|
|
||
|
def get(id)
|
||
|
requires :datacenter
|
||
|
new connection.get_datastore(id, datacenter)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|