mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
27 lines
611 B
Ruby
27 lines
611 B
Ruby
module Fog
|
|
module DNS
|
|
class Bluebox
|
|
class Real
|
|
# Delete a zone from DNS
|
|
# ==== Parameters
|
|
# * zone_id<~Integer> - Id of zone to delete
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>: - HTTP status code will be result
|
|
def delete_zone(zone_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'DELETE',
|
|
:path => "/api/domains/#{zone_id}.xml"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_zone(zone_id)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|