class Fog::OpenStack::Network::Subnets
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
# File lib/fog/openstack/network/models/subnets.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters_arg = filters)
click to toggle source
# File lib/fog/openstack/network/models/subnets.rb, line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_subnets(filters), 'subnets') end
get(subnet_id)
click to toggle source
# File lib/fog/openstack/network/models/subnets.rb, line 22 def get(subnet_id) if subnet = service.get_subnet(subnet_id).body['subnet'] new(subnet) end rescue Fog::OpenStack::Network::NotFound nil end