mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
810 B
Ruby
29 lines
810 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
# Remove an IP address.
|
|
#
|
|
# === Parameters
|
|
# * server_id <~String> - The ID of the server in which to remove an IP from.
|
|
# * address <~String> - The IP address to be removed.
|
|
# === Returns
|
|
# * success <~Boolean>
|
|
def remove_fixed_ip(server_id, address)
|
|
body = {
|
|
'removeFixedIp' => {
|
|
'address' => address
|
|
}
|
|
}
|
|
server_action(server_id, body).status == 202
|
|
end # def remove_fixed_ip
|
|
end # class Real
|
|
|
|
class Mock
|
|
def remove_fixed_ip(server_id, address)
|
|
true
|
|
end # def remove_fixed_ip
|
|
end # class Mock
|
|
end # class OpenStack
|
|
end # module Compute
|
|
end # module Fog
|