Class: Fog::Compute::Openvz::Servers

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

Instance Method Summary collapse

Instance Method Details

#all(filters = {}) ⇒ Object



11
12
13
# File 'lib/fog/openvz/models/compute/servers.rb', line 11

def all(filters = {})
  load service.list_servers
end

#get(id) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/fog/openvz/models/compute/servers.rb', line 15

def get(id)
  if server = service.get_server_details(id)
    new server
  end
rescue Fog::Errors::NotFound
  nil
end