class Fog::Compute::OneAndOne::Firewalls
Public Instance Methods
all()
click to toggle source
# File lib/oneandone/models/compute/firewalls.rb, line 9 def all response = service.list_firewalls load(response.body) end
get(id)
click to toggle source
# File lib/oneandone/models/compute/firewalls.rb, line 14 def get(id) response = service.get_firewall(id) new(response.body) rescue Excon::Errors::NotFound nil end