Sha256: c952454eef39ee73a6b4b718837f69d5536f04a344ef076f1809875c7381636f
Contents?: true
Size: 495 Bytes
Versions: 1
Compression:
Stored size: 495 Bytes
Contents
require 'log4r' require 'restclient' require 'json' module VagrantPlugins module Openstack module Domain class Item attr_accessor :id, :name def initialize(id, name) @id = id @name = name end end class FloatingIP attr_accessor :ip, :pool, :instance_id def initialize(ip, pool, instance_id) @ip = ip @pool = pool @instance_id = instance_id end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-openstack-provider-0.3.0 | lib/vagrant-openstack-provider/client/domain.rb |