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>
25 lines
569 B
Ruby
25 lines
569 B
Ruby
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
class Real
|
|
def get_network(name, datacenter_name)
|
|
network = get_raw_network(name, datacenter_name)
|
|
raise(Fog::Compute::Vsphere::NotFound) unless network
|
|
network_attributes(network, datacenter_name)
|
|
end
|
|
|
|
protected
|
|
|
|
def get_raw_network(name, datacenter_name)
|
|
dc = find_raw_datacenter(datacenter_name)
|
|
dc.networkFolder.find(name)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def get_network(id)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|