mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
827 B
Ruby
30 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
|