mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
366 B
Ruby
21 lines
366 B
Ruby
module Fog
|
|
module DNS
|
|
class Dynect
|
|
class Real
|
|
|
|
# Delete a zone
|
|
#
|
|
# ==== Parameters
|
|
# * zone<~String> - zone to host
|
|
|
|
def delete_zone(zone)
|
|
request(
|
|
:expects => 200,
|
|
:method => :delete,
|
|
:path => "Zone/#{zone}"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|