2011-06-15 02:10:54 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/hp/models/compute/security_group'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class HP
|
|
|
|
|
|
|
|
class SecurityGroups < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Compute::HP::SecurityGroup
|
|
|
|
|
|
|
|
def all
|
2012-12-22 18:26:21 -05:00
|
|
|
items = service.list_security_groups.body['security_groups']
|
2011-06-15 02:10:54 -04:00
|
|
|
load(items)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(security_group_id)
|
|
|
|
if security_group_id
|
2012-12-22 18:26:21 -05:00
|
|
|
sec_group = service.get_security_group(security_group_id).body['security_group']
|
2011-06-15 02:10:54 -04:00
|
|
|
new(sec_group)
|
|
|
|
end
|
|
|
|
rescue Fog::Compute::HP::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-22 18:26:21 -05:00
|
|
|
end
|