mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
41 lines
898 B
Ruby
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
|