1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/requests/compute/monitors_create_ping.rb

36 lines
887 B
Ruby
Raw Normal View History

2012-06-07 12:50:11 -04:00
module Fog
module Compute
class Ecloud
class Real
include Shared
def monitors_create_ping(data)
validate_data([:interval, :response_timeout, :retries, :downtime, :enabled], data)
request(
:body => generate_ping_monitor_request(data),
:expects => 201,
:method => "POST",
:headers => {},
:uri => data[:uri],
:parse => true
)
end
private
def generate_ping_monitor_request(data)
xml = Builder::XmlMarkup.new
xml.CreatePingMonitor do
xml.Interval data[:interval]
xml.ResponseTimeout data[:response_timeout]
xml.Retries data[:retries]
xml.Downtime data[:downtime]
xml.Enabled data[:enabled]
end
end
end
end
end
end