Class: Fog::Compute::IBM::Servers
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::IBM::Servers
- Defined in:
- lib/fog/ibm/models/compute/servers.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 |
# File 'lib/fog/ibm/models/compute/servers.rb', line 10 def all load(service.list_instances.body['instances']) end |
#get(server_id) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/fog/ibm/models/compute/servers.rb', line 14 def get(server_id) begin new(service.get_instance(server_id).body) rescue Fog::Compute::IBM::NotFound nil end end |