mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
50 lines
1.1 KiB
Ruby
50 lines
1.1 KiB
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Compute
|
|
class HP
|
|
|
|
class SecurityGroup < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :description
|
|
attribute :rules
|
|
attribute :tenant_id
|
|
|
|
def destroy
|
|
requires :id
|
|
|
|
connection.delete_security_group(id)
|
|
true
|
|
end
|
|
|
|
def save
|
|
requires :name, :description
|
|
|
|
data = connection.create_security_group(name, description)
|
|
merge_attributes(data.body['security_group'])
|
|
true
|
|
end
|
|
|
|
def create_rule(range, ip_protocol = "tcp", cidr = "0.0.0.0/0", group_id=nil)
|
|
requires :id
|
|
connection.create_security_group_rule(id, ip_protocol, range.min, range.max, cidr, group_id)
|
|
end
|
|
|
|
def delete_rule(rule_id)
|
|
connection.delete_security_group_rule(rule_id)
|
|
true
|
|
end
|
|
|
|
def delete_all_rules()
|
|
self.rules.each do |rule|
|
|
delete_rule(rule['id'])
|
|
end
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|