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_group.rb
2009-09-28 20:00:49 -07:00

41 lines
898 B
Ruby

module Fog
module AWS
class EC2
class SecurityGroup < Fog::Model
attribute :group_description, 'groupDescription'
attribute :group_name, 'groupName'
attribute :ip_permissions, 'ipPermissions'
attribute :owner_id, 'ownerId'
def destroy
connection.delete_security_group(@group_name)
true
end
def reload
new_attributes = security_groups.get(@group_name).attributes
merge_attributes(new_attributes)
end
def save
data = connection.create_security_group(@group_name, @group_description).body
true
end
def security_groups
@security_groups
end
private
def security_groups=(new_security_groups)
@security_groups = new_security_groups
end
end
end
end
end