Class: Fog::Compute::Cloudstack::Servers
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Cloudstack::Servers
- Defined in:
- lib/fog/cloudstack/models/compute/servers.rb
Instance Method Summary collapse
Instance Method Details
#all(attributes = {}) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 10 def all(attributes={}) # add project id if we have one response = service.list_virtual_machines(attributes) data = response["listvirtualmachinesresponse"]["virtualmachine"] || [] load(data) end |
#bootstrap(new_attributes = {}) ⇒ Object
17 18 19 20 21 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 17 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? } server end |
#get(server_id) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 23 def get(server_id) attributes = {'id' => server_id} # add project id if we have one servers = service.list_virtual_machines(attributes)["listvirtualmachinesresponse"]["virtualmachine"] if servers.nil? || servers.empty? servers = service.list_virtual_machines('id' => server_id, 'projectid' => '-1')["listvirtualmachinesresponse"]["virtualmachine"] end unless servers.nil? || servers.empty? new(servers.first) end rescue Fog::Compute::Cloudstack::BadRequest nil end |