Sha256: 444b12660e5478ac1ba3b76968bdf4c8472fb56590a1013605616f6ea4f798f1
Contents?: true
Size: 615 Bytes
Versions: 43
Compression:
Stored size: 615 Bytes
Contents
module Fog module DNS class Linode class Real # Delete the given domain from the list Linode hosts # # ==== Parameters # * domain_id<~Integer>: id of domain to delete # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * DATA<~Hash>: # TODO: docs def domain_delete(domain_id) request( :expects => 200, :method => 'GET', :query => { :api_action => 'domain.delete', :domainId => domain_id } ) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems