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

51 lines
1 KiB
Ruby
Raw Normal View History

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
2012-12-22 18:26:21 -05:00
service.delete_security_group(id)
true
end
def save
requires :name, :description
2012-12-22 18:26:21 -05:00
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
2012-12-22 18:26:21 -05:00
service.create_security_group_rule(id, ip_protocol, range.min, range.max, cidr, group_id)
end
def delete_rule(rule_id)
2012-12-22 18:26:21 -05:00
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