mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
536 B
Ruby
28 lines
536 B
Ruby
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
|
|
load(service.list_vlans.body['vlan'])
|
|
end
|
|
|
|
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
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|