mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
485 B
Ruby
20 lines
485 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def create_virtual_ip(load_balancer_id, type)
|
|
data = {
|
|
'type' => type,
|
|
'ipVersion' => 'IPV6'
|
|
}
|
|
request(
|
|
:body => Fog::JSON.encode(data),
|
|
:expects => [200, 202],
|
|
:method => 'POST',
|
|
:path => "loadbalancers/#{load_balancer_id}/virtualips.json"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|