Sha256: c6cbe19f944a6d5423723f4b56ade95054dabafb80fc32e8809ee05160b344ed
Contents?: true
Size: 827 Bytes
Versions: 125
Compression:
Stored size: 827 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
125 entries across 125 versions & 17 rubygems