Sha256: 57585031c2146bee1290b75609d7b520defebe186738d0c4f5bde1e0585b5151
Contents?: true
Size: 772 Bytes
Versions: 30
Compression:
Stored size: 772 Bytes
Contents
module Fog module DNS class DNSimple class Real # Delete the record with the given ID for the given domain. # # ==== Parameters # * domain<~String> - domain name or numeric ID # * record_id<~String> def delete_record(domain, record_id) request( :expects => 200, :method => "DELETE", :path => "/domains/#{domain}/records/#{record_id}" ) end end class Mock def delete_record(domain, record_id) self.data[:records][domain].reject! { |record| record["record"]["id"] == record_id } response = Excon::Response.new response.status = 200 response end end end end end
Version data entries
30 entries across 30 versions & 4 rubygems