mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0c34ca84f5
Added support for OpenStack Network Connectivity (Quantum).
44 lines
No EOL
1.3 KiB
Ruby
44 lines
No EOL
1.3 KiB
Ruby
module Fog
|
|
module Network
|
|
class OpenStack
|
|
|
|
class Real
|
|
def update_port(port_id, options = {})
|
|
data = { 'port' => {} }
|
|
|
|
vanilla_options = [:name, :fixed_ips, :admin_state_up, :device_owner,
|
|
:device_id]
|
|
vanilla_options.select{ |o| options.has_key?(o) }.each do |key|
|
|
data['port'][key] = options[key]
|
|
end
|
|
|
|
request(
|
|
:body => Fog::JSON.encode(data),
|
|
:expects => 200,
|
|
:method => 'PUT',
|
|
:path => "ports/#{port_id}.json"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def update_port(port_id, options = {})
|
|
response = Excon::Response.new
|
|
if port = list_ports.body['ports'].detect { |_| _['id'] == port_id }
|
|
port['name'] = options[:name]
|
|
port['fixed_ips'] = options[:fixed_ips]
|
|
port['admin_state_up'] = options[:admin_state_up]
|
|
port['device_owner'] = options[:device_owner]
|
|
port['device_id'] = options[:device_id]
|
|
response.body = { 'port' => port }
|
|
response.status = 200
|
|
response
|
|
else
|
|
raise Fog::Network::OpenStack::NotFound
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end |