Sha256: bac958e457e5b512b9370621a3e146e1acf4c075606983ec3af1796e60cbab07
Contents?: true
Size: 617 Bytes
Versions: 9
Compression:
Stored size: 617 Bytes
Contents
module Fog module Linode class DNS 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
9 entries across 9 versions & 1 rubygems