mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
32 lines
939 B
Ruby
32 lines
939 B
Ruby
![]() |
module Fog
|
||
|
module Rackspace
|
||
|
class LoadBalancer
|
||
|
class Real
|
||
|
def set_monitor(load_balancer_id, type, delay, timeout, attempsBeforeDeactivation, options = {})
|
||
|
data = {
|
||
|
'type' => type,
|
||
|
'delay' => delay,
|
||
|
'timeout' => timeout,
|
||
|
'attemptsBeforeDeactivation' => attempsBeforeDeactivation
|
||
|
}
|
||
|
if options.has_key? :path
|
||
|
data['path'] = options[:path]
|
||
|
end
|
||
|
if options.has_key? :body_regex
|
||
|
data['bodyRegex'] = options[:body_regex]
|
||
|
end
|
||
|
if options.has_key? :status_regex
|
||
|
data['statusRegex'] = options[:status_regex]
|
||
|
end
|
||
|
request(
|
||
|
:body => data.to_json,
|
||
|
:expects => [200, 202],
|
||
|
:path => "loadbalancers/#{load_balancer_id}/healthmonitor",
|
||
|
:method => 'PUT'
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|