Sha256: e1e06942613c2e2e26e2a1b62b894068d67085f783632dd18bca99388ea773c8
Contents?: true
Size: 950 Bytes
Versions: 79
Compression:
Stored size: 950 Bytes
Contents
module Fog module Rackspace class LoadBalancers 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 => Fog::JSON.encode(data), :expects => [200, 202], :path => "loadbalancers/#{load_balancer_id}/healthmonitor", :method => 'PUT' ) end end end end end
Version data entries
79 entries across 79 versions & 12 rubygems