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/hp/requests/dns/create_domain.rb

38 lines
890 B
Ruby
Raw Normal View History

2013-05-03 14:31:08 -04:00
module Fog
module HP
class DNS
class Real
def create_domain(name, options)
data = options.dup
data[:name] = name
request(
:body => Fog::JSON.encode(data),
:expects => 200,
:method => 'POST',
:path => 'domains'
)
end
end
class Mock
def create_domain(name, options)
response = Excon::Response.new
response.status = 200
data = {
2013-06-05 11:11:22 -04:00
:id => SecureRandom.uuid,
:name => "domain1.com.",
:ttl => 3600,
:serial => 1351800588,
:email => "nsadmin@example.org",
:created_at=>"2012-11-01T20:09:48.094457"
2013-05-03 14:31:08 -04:00
}
response.body = data
response
end
end
end
end
end