mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
733 B
Ruby
27 lines
733 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 = service.list_security_groups(options)["listsecuritygroupsresponse"]["securitygroup"] || []
|
|
load(data)
|
|
end
|
|
|
|
def get(security_group_id)
|
|
if security_group = service.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
|