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/ec2/security_groups.rb

46 lines
918 B
Ruby
Raw Normal View History

2009-09-18 11:56:42 -04:00
module Fog
module AWS
class EC2
def security_groups
Fog::AWS::EC2::SecurityGroups.new(:connection => self)
end
class SecurityGroups < Fog::Collection
attribute :group_name
model Fog::AWS::EC2::SecurityGroup
def initialize(attributes)
@group_name ||= []
super
end
def all(group_name = @group_name)
2010-01-05 01:03:24 -05:00
@group_name = group_name
if @loaded
clear
end
@loaded = true
2009-09-28 23:00:49 -04:00
data = connection.describe_security_groups(group_name).body
2009-09-18 11:56:42 -04:00
data['securityGroupInfo'].each do |security_group|
2010-01-05 01:03:24 -05:00
self << new(security_group)
2009-09-18 11:56:42 -04:00
end
2010-01-05 01:03:24 -05:00
self
2009-09-18 11:56:42 -04:00
end
def get(group_name)
2009-10-22 23:46:15 -04:00
if group_name
all(group_name).first
end
rescue Excon::Errors::BadRequest
nil
end
2009-09-18 11:56:42 -04:00
end
end
end
end