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/openstack/requests/compute/add_fixed_ip.rb
Nelvin Driz 4d33ccb7a7 [openstack|compute] General Cleanup and Update
- Focus on adding additional vm actions support
- New request types are not fully tested
2012-04-30 10:34:59 +08:00

29 lines
827 B
Ruby

module Fog
module Compute
class OpenStack
class Real
# Add an IP address on a network.
#
# === Parameters
# * server_id <~String> - The ID of the server in which to add an IP to.
# * network_id <~String> - The ID of the network the IP should be on.
# === Returns
# * success <~Boolean>
def add_fixed_ip(server_id, network_id)
body = {
'addFixedIp' => {
'networkId' => network_id
}
}
server_action(server_id, body).status == 202
end # def add_fixed_ip
end # class Real
class Mock
def add_fixed_ip(server_id, network_id)
true
end # def add_fixed_ip
end # class Mock
end # class OpenStack
end # module Compute
end # module Fog