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/aws/models/compute/security_groups.rb

36 lines
722 B
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
2010-09-08 17:40:02 -04:00
require 'fog/aws/models/compute/security_group'
2010-03-16 18:46:21 -04:00
2009-09-18 11:56:42 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2009-09-18 11:56:42 -04:00
class SecurityGroups < Fog::Collection
attribute :filters
2010-09-08 17:40:02 -04:00
model Fog::AWS::Compute::SecurityGroup
def initialize(attributes)
@filters ||= {}
super
end
def all(filters = @filters)
@filters = filters
data = connection.describe_security_groups(@filters).body
load(data['securityGroupInfo'])
2009-09-18 11:56:42 -04:00
end
def get(group_name)
2009-10-22 23:46:15 -04:00
if group_name
self.class.new(:connection => connection).all('group-name' => group_name).first
2009-10-22 23:46:15 -04:00
end
end
2009-09-18 11:56:42 -04:00
end
end
end
end