Created
June 30, 2014 14:40
-
-
Save elight/5322a2d3200f939986c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Fog | |
module Rackspace | |
class LoadBalancers | |
class Real | |
def create_access_rule(load_balancer_id, address, type) | |
#TODO - This can actually support adding multiple access rules. | |
data = { | |
'accessList' => [ | |
{ | |
'address' => address, | |
'type' => type | |
} | |
]} | |
request( | |
:body => Fog::JSON.encode(data), | |
:expects => [200, 202], | |
:method => 'POST', | |
:path => "loadbalancers/#{load_balancer_id}/accesslist" | |
) | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment