Sha256: 0513af84ebe9567a04b3e34800e7b8241b59ff1750ab452309c548e00447044a
Contents?: true
Size: 614 Bytes
Versions: 43
Compression:
Stored size: 614 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
43 entries across 41 versions & 6 rubygems