mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
634 B
Ruby
24 lines
634 B
Ruby
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
|