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/hp/models/compute/security_group.rb
2013-01-07 21:01:13 +00:00

50 lines
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
service.delete_security_group(id)
true
end
def save
requires :name, :description
data = service.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
service.create_security_group_rule(id, ip_protocol, range.min, range.max, cidr, group_id)
end
def delete_rule(rule_id)
service.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