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),
|
2013-05-21 17:09:13 -04:00
|
|
|
: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
|
2013-05-21 17:09:13 -04:00
|
|
|
end
|