Sha256: fe0c8fc56671e4382e7879b545f719abb2102c01fce8a35ed3056b40c8bc4546
Contents?: true
Size: 511 Bytes
Versions: 9
Compression:
Stored size: 511 Bytes
Contents
module Fog module Slicehost class DNS class Real # Delete a zone from Slicehost's 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 => "zones/#{zone_id}.xml" ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems