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/terremark/requests/shared/get_network.rb

35 lines
754 B
Ruby

module Fog
module Terremark
module Shared
module Real
# Get details for a Network
#
# ==== Parameters
# * network_id<~Integer> - Id of the network to look up
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# FIXME
def get_network(network_id)
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Terremark::Shared::Network.new,
:path => "network/#{network_id}"
)
end
end
module Mock
def get_network(network_id)
raise MockNotImplemented.new("Contributions welcome!")
end
end
end
end
end