Sha256: d71faf73b66ed80d6916bb67bd90ab11e4025af2826d3a16ad7ae85a26a78841
Contents?: true
Size: 616 Bytes
Versions: 111
Compression:
Stored size: 616 Bytes
Contents
module Fog module DNS class DNSMadeEasy class Real # Deletes the specified secondary entry. # # ==== Parameters # * secondary_name<~String> - secondary domain name # # ==== Returns # * response<~Excon::Response>: # * status<~Integer> 200 - OK, 404 - specified secondary entry name is not found def delete_secondary(secondary_name) request( :expects => 200, :method => 'DELETE', :path => "/V1.2/secondary/#{secondary_name}" ) end end end end end
Version data entries
111 entries across 111 versions & 19 rubygems