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/hp/requests/lb/update_load_balancer_node.rb

30 lines
669 B
Ruby
Raw Normal View History

2013-03-01 18:46:56 -05:00
module Fog
module HP
2013-03-05 11:25:30 -05:00
class LB
class Real
def update_load_balancer_node(load_balancer_id, node_id, condition)
data = {
#ENABLED | DISABLED
"condition" => condition
}
request(
:body => Fog::JSON.encode(data),
:expects => [202,204],
2013-03-05 11:25:30 -05:00
:method => 'PUT',
:path => "loadbalancers/#{load_balancer_id}/nodes/#{node_id}"
)
2013-03-01 18:46:56 -05:00
end
2013-03-05 11:25:30 -05:00
end
class Mock
def update_load_balancer_node(load_balancer_id, node_id, condition)
response = Excon::Response.new
2013-03-01 18:46:56 -05:00
2013-03-04 15:33:54 -05:00
2013-03-05 11:25:30 -05:00
response
2013-03-01 18:46:56 -05:00
end
end
end
end
end