Class: Fog::Cloudstack::Compute::Networks

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

Instance Method Summary collapse

Instance Method Details

#all(filters = {}) ⇒ Object



11
12
13
14
15
# File 'lib/fog/cloudstack/models/compute/networks.rb', line 11

def all(filters={})
  options = get_filter_options(filters)
  data = service.list_networks(options)["listnetworksresponse"]["network"] || []
  load(data)
end

#get(network_id, filters = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
# File 'lib/fog/cloudstack/models/compute/networks.rb', line 17

def get(network_id, filters={})
  filter_option = get_filter_options(filters)
  options = filter_option.merge('id' => network_id)
  if data = service.list_networks(options)["listnetworksresponse"]["network"].first
    new(data)
  end
rescue Fog::Cloudstack::Compute::BadRequest
  nil
end