Class: Fog::Compute::CloudSigma::Vlans

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/cloudsigma/models/vlans.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
14
# File 'lib/fog/cloudsigma/models/vlans.rb', line 10

def all
  resp = service.list_vlans
  data = resp.body['objects']
  load(data)
end

#get(vlan) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/fog/cloudsigma/models/vlans.rb', line 16

def get(vlan)
  resp = service.get_vlan(vlan)
  data = resp.body
  new(data)
rescue Fog::CloudSigma::Errors::NotFound
  return nil
end