Sha256: 5cb55841c05bc8a8fb9da0936498747d5a895e9399a93982b0e09d738c0e900b
Contents?: true
Size: 466 Bytes
Versions: 67
Compression:
Stored size: 466 Bytes
Contents
module Fog module DNS class DNSimple class Real # Delete the record with the given ID for the given domain. # # ==== Parameters # * domain<~String> # * record_id<~String> def delete_record(domain, record_id) request( :expects => 200, :method => "DELETE", :path => "/domains/#{domain}/records/#{record_id}" ) end end end end end
Version data entries
67 entries across 67 versions & 19 rubygems