Class: Fog::Compute::Openvz::Servers
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Openvz::Servers
- Defined in:
- lib/fog/openvz/models/compute/servers.rb
Instance Method Summary collapse
Instance Method Details
#all(filters = {}) ⇒ Object
10 11 12 |
# File 'lib/fog/openvz/models/compute/servers.rb', line 10 def all(filters = {}) load service.list_servers end |
#get(id) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/fog/openvz/models/compute/servers.rb', line 14 def get(id) if server = service.get_server_details(id) new server end rescue Fog::Errors::NotFound nil end |