Class: Fog::Compute::VirtualBox::Servers
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::VirtualBox::Servers
- Defined in:
- lib/fog/virtual_box/models/compute/servers.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'lib/fog/virtual_box/models/compute/servers.rb', line 12 def all data = connection.machines.map do |machine| { :raw => machine } end load(data) end |
#bootstrap(new_attributes = {}) ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/fog/virtual_box/models/compute/servers.rb', line 21 def bootstrap(new_attributes = {}) raise 'Not Implemented' # server = create(new_attributes) # server.start # server.wait_for { ready? } # server.setup(:password => server.password) # server end |
#get(server_id) ⇒ Object
30 31 32 33 34 35 |
# File 'lib/fog/virtual_box/models/compute/servers.rb', line 30 def get(server_id) machine = connection.find_machine(server_id) new(:raw => machine) rescue ::VirtualBox::Exceptions::ObjectNotFoundException nil end |