2013-03-01 18:46:56 -05:00
|
|
|
module Fog
|
|
|
|
module HP
|
|
|
|
class BlockStorage
|
|
|
|
class LB
|
|
|
|
class Real
|
2013-03-04 15:33:54 -05:00
|
|
|
def update_load_balancer_node(load_balancer_id, node_id, condition)
|
|
|
|
data = {
|
|
|
|
#ENABLED | DISABLED
|
|
|
|
"condition" => condition
|
|
|
|
}
|
|
|
|
request(
|
|
|
|
:body => Fog::JSON.encode(data),
|
|
|
|
:expects => 202,
|
|
|
|
:method => 'PUT',
|
|
|
|
:path => "loadbalancers/#{load_balancer_id}/nodes/#{node_id}"
|
|
|
|
)
|
2013-03-01 18:46:56 -05:00
|
|
|
|
2013-03-04 15:33:54 -05:00
|
|
|
end
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
|
|
|
class Mock
|
2013-03-04 15:33:54 -05:00
|
|
|
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
|
|
|
|
|
|
|
response
|
|
|
|
end
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|