Class: Fog::VirtualBox::Compute::Servers

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/compute/models/virtual_box/servers.rb

Instance Attribute Summary

Attributes inherited from Collection

#connection

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #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, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



12
13
14
15
16
17
18
19
# File 'lib/fog/compute/models/virtual_box/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/compute/models/virtual_box/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/compute/models/virtual_box/servers.rb', line 30

def get(server_id)
  machine = connection.find_machine(server_id)
  new(:raw => machine)
rescue ::VirtualBox::Exceptions::ObjectNotFoundException
  nil
end