Sha256: 04351620bcbbf97d7e15190fadd8ef207dc001fabb22d98ebfd70a380775d6ef
Contents?: true
Size: 737 Bytes
Versions: 35
Compression:
Stored size: 737 Bytes
Contents
module Fog module HP class DNS class Real # Delete a DNS domain # # ==== Parameters # * domain_id<~String> - UUId of domain to delete # def delete_domain(domain_id) request( :expects => 200, :method => 'DELETE', :path => "domains/#{domain_id}" ) end end class Mock def delete_domain(domain_id) response = Excon::Response.new if list_domains.body['domains'].detect { |_| _['id'] == domain_id } response.status = 202 response else raise Fog::HP::DNS::NotFound end end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems