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/hp/requests/network/get_network.rb
2013-10-30 19:02:06 -04:00

49 lines
No EOL
1.5 KiB
Ruby

module Fog
module HP
class Network
class Real
# Get details for an existing network by id
#
# ==== Parameters
# * 'network_id'<~String>: - UUId for the network to get details for
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * network<~Hash>:
# * 'id'<~String>: - UUId for the network
# * 'name'<~String>: - Name of the network
# * 'tenant_id'<~String>: - TenantId that owns the network
# * 'status'<~String>: - Status of the network i.e. "ACTIVE"
# * 'subnets'<~Array>: - Subnets for the network
# * 'id'<~Integer>: - UUId for the subnet
# * 'router:external'<~Boolean>: - true or false
# * 'admin_state_up'<~Boolean>: - true or false
# * 'shared'<~Boolean>: - true or false
def get_network(network_id)
request(
:expects => 200,
:method => 'GET',
:path => "networks/#{network_id}"
)
end
end
class Mock
def get_network(network_id)
response = Excon::Response.new
if network = list_networks.body['networks'].detect {|_| _['id'] == network_id}
response.status = 200
response.body = { 'network' => network }
response
else
raise Fog::HP::Network::NotFound
end
end
end
end
end
end