Sha256: 5944c2e71e9d6779b6c5b1daa41bf2b0fd83bc4ece3b753b1915ecb4addbb86b
Contents?: true
Size: 737 Bytes
Versions: 43
Compression:
Stored size: 737 Bytes
Contents
module Fog module DNS class DNSMadeEasy class Real # Deletes the record with the specified id. Note that records are not modifiable for domains that are locked to a template. # # ==== Parameters # * domain<~String> - domain name # * record_id<~String> - record id # # ==== Returns # * response<~Excon::Response>: # * status<~Integer> 200 - OK, 404 - specified domain name or record id is not found def delete_record(domain, record_id) request( :expects => 200, :method => 'DELETE', :path => "/V1.2/domains/#{domain}/records/#{record_id}" ) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems