Sha256: a867a3c76840626b942115f5a6051979e9bdcb4740017298be8a9bb7dbd6cb38

Contents?: true

Size: 934 Bytes

Versions: 5

Compression:

Stored size: 934 Bytes

Contents

module Fog
  module DNS
    class DNSimple
      class Real

        # Delete the given domain from your account. You may use
        # either the domain ID or the domain name.
        #
        # Please note that for domains which are registered with
        # DNSimple this will not delete the domain from the registry.
        #
        # ==== Parameters
        # * domain<~String> - domain name or numeric ID
        #
        def delete_domain(domain)
          request(
            :expects  => 200,
            :method   => 'DELETE',
            :path     => "/domains/#{domain}"
          )
        end

      end

      class Mock

        def delete_domain(name)
          self.data[:records].delete name
          self.data[:domains].reject! { |domain| domain["domain"]["name"] == name }

          response = Excon::Response.new
          response.status = 200
          response
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/dnsimple/requests/dns/delete_domain.rb
fog-1.21.0 lib/fog/dnsimple/requests/dns/delete_domain.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/dnsimple/requests/dns/delete_domain.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/dnsimple/requests/dns/delete_domain.rb
fog-1.20.0 lib/fog/dnsimple/requests/dns/delete_domain.rb