Sha256: cd0e3160cc676958877b43f4359a0bfac33c1a696b8b939b5265779df504db9a
Contents?: true
Size: 829 Bytes
Versions: 14
Compression:
Stored size: 829 Bytes
Contents
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
Version data entries
14 entries across 14 versions & 1 rubygems