5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/fog/rackspace/requests/load_balancers/set_monitor.rb', line 5
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 => Fog::JSON.encode(data),
:expects => [200, 202],
:path => "loadbalancers/#{load_balancer_id}/healthmonitor",
:method => 'PUT'
)
end
|