mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
337 B
Ruby
15 lines
337 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def remove_ssl_termination(load_balancer_id)
|
|
request(
|
|
:expects => [200, 202],
|
|
:path => "loadbalancers/#{load_balancer_id}/ssltermination",
|
|
:method => 'DELETE'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|