mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0ceb4c54d9
Code was not generated and missed the checks for blank identifiers or options.
15 lines
354 B
Ruby
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
|