1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/remove_session_persistence.rb

16 lines
344 B
Ruby
Raw Normal View History

module Fog
module Rackspace
class LoadBalancer
class Real
def remove_session_persistence(load_balancer_id)
request(
:expects => [200, 202],
:path => "loadbalancers/#{load_balancer_id}/sessionpersistence",
:method => 'DELETE'
)
end
end
end
end
end