mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
739 B
Ruby
28 lines
739 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/cloudstack/models/compute/security_group'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class Cloudstack
|
||
|
class SecurityGroups < Fog::Collection
|
||
|
|
||
|
model Fog::Compute::Cloudstack::SecurityGroup
|
||
|
|
||
|
def all(options={})
|
||
|
data = connection.list_security_groups(options)["listsecuritygroupsresponse"]["securitygroup"] || []
|
||
|
load(data)
|
||
|
end
|
||
|
|
||
|
def get(security_group_id)
|
||
|
if security_group = connection.list_security_groups('id' => security_group_id)["listsecuritygroupsresponse"]["securitygroup"].first
|
||
|
new(security_group)
|
||
|
end
|
||
|
rescue Fog::Compute::Cloudstack::BadRequest
|
||
|
nil
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|