mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
297 B
Ruby
20 lines
297 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def associate_address(server_id, ip_address)
|
|
body = { "addFloatingIp" => {"address" => ip_address}}
|
|
server_action(server_id, body)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|