1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ibm/models/compute/vlans.rb

29 lines
536 B
Ruby
Raw Normal View History

2012-03-24 22:20:53 -04:00
require 'fog/core/collection'
require 'fog/ibm/models/compute/vlan'
module Fog
module Compute
class IBM
class Vlans < Fog::Collection
model Fog::Compute::IBM::Vlan
def all
2012-12-22 23:26:06 +00:00
load(service.list_vlans.body['vlan'])
2012-03-24 22:20:53 -04:00
end
def get(vlan_id)
begin
2012-12-22 23:26:06 +00:00
vlan = service.list_vlans.body
2012-03-24 22:20:53 -04:00
new(vlan['vlan'].find{|vlan| vlan['id'] == vlan_id.to_s })
rescue Fog::Compute::IBM::NotFound
nil
end
end
end
end
end
end