class Fog::Compute::Ecloud::FirewallAcls
Public Instance Methods
all()
click to toggle source
# File lib/fog/ecloud/models/compute/firewall_acls.rb, line 12 def all data = service.get_firewall_acls(href).body data = data[:FirewallAcl] ? data[:FirewallAcl] : data load(data) end
get(uri)
click to toggle source
# File lib/fog/ecloud/models/compute/firewall_acls.rb, line 18 def get(uri) if data = service.get_firewall_acl(uri) new(data.body) end rescue Fog::Errors::NotFound nil end