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/brightbox/requests/compute/update_firewall_rule.rb
2011-12-26 12:27:19 +00:00

13 lines
223 B
Ruby

module Fog
module Compute
class Brightbox
class Real
def update_firewall_rule(id, options)
request("put", "/1.0/firewall_rules/#{id}", [202], options)
end
end
end
end
end