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/requests/compute/get_datastore.rb

26 lines
606 B
Ruby
Raw Normal View History

module Fog
module Compute
class Vsphere
class Real
def get_datastore(name, datacenter_name)
datastore = get_raw_datastore(name, datacenter_name)
raise(Fog::Compute::Vsphere::NotFound) unless datastore
datastore_attributes(datastore, datacenter_name)
end
protected
def get_raw_datastore(name, datacenter_name)
dc = find_raw_datacenter(datacenter_name)
dc.datastoreFolder.find(name)
end
end
class Mock
def get_datastore(name, datacenter_name)
end
end
end
end
end