Class: Fog::Compute::IBM::Vlans

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

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
# File 'lib/fog/ibm/models/compute/vlans.rb', line 10

def all
  load(service.list_vlans.body['vlan'])
end

#get(vlan_id) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/fog/ibm/models/compute/vlans.rb', line 14

def get(vlan_id)
  begin
    vlan = service.list_vlans.body
    new(vlan['vlan'].find{|vlan| vlan['id'] == vlan_id.to_s })
  rescue Fog::Compute::IBM::NotFound
    nil
  end
end