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/zerigo/requests/dns/delete_host.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

41 lines
923 B
Ruby

module Fog
module DNS
class Zerigo
class Real
# Delete a host record
#
# ==== Parameters
# * host_id<~Integer> - Id of host record to delete
# ==== Returns
# * response<~Excon::Response>:
# * 'status'<~Integer> - 200 indicates success
def delete_host(host_id)
request(
:expects => 200,
:method => 'DELETE',
:path => "/api/1.1/hosts/#{host_id}.xml"
)
end
end
class Mock # :nodoc:all
def delete_host(host_id)
host = find_host(host_id)
response = Excon::Response.new
if host
zone = find_by_zone_id(host['zone-id'])
zone['hosts'].delete(host)
response.status = 200
else
response.status = 404
end
response
end
end
end
end
end