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
Paul Thornthwaite 0ceb4c54d9 [Brightbox] Standardises update_firewall_rule
Code was not generated and missed the checks for blank identifiers or
options.
2012-11-02 18:55:33 +00:00

15 lines
354 B
Ruby

module Fog
module Compute
class Brightbox
class Real
def update_firewall_rule(identifier, options)
return nil if identifier.nil? || identifier == ""
return nil if options.empty? || options.nil?
request("put", "/1.0/firewall_rules/#{identifier}", [202], options)
end
end
end
end
end