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 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 10 def all(attributes={}) response = service.list_virtual_machines(attributes) data = response["listvirtualmachinesresponse"]["virtualmachine"] || [] load(data) end |
#bootstrap(new_attributes = {}) ⇒ Object
16 17 18 19 20 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 16 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? } server end |
#get(server_id) ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/fog/cloudstack/models/compute/servers.rb', line 22 def get(server_id) servers = service.list_virtual_machines('id' => server_id)["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 |