class Bosh::OpenStackCloud::DynamicNetwork
Represents OpenStack dynamic network: where IaaS sets VM's IP
Public Class Methods
new(name, spec)
click to toggle source
Creates a new dynamic network
@param [String] name Network
name @param [Hash] spec Raw network spec
Calls superclass method
# File lib/cloud/openstack/dynamic_network.rb, line 14 def initialize(name, spec) super end
Public Instance Methods
configure(openstack, server)
click to toggle source
Configures OpenStack dynamic network. Right now it's a no-op, as dynamic networks are completely managed by OpenStack
@param [Fog::Compute::OpenStack] openstack Fog OpenStack Compute client @param [Fog::Compute::OpenStack::Server] server OpenStack server to
configure
# File lib/cloud/openstack/dynamic_network.rb, line 25 def configure(openstack, server) end