# File lib/fog/rackspace/models/dns/zone.rb, line 22 def destroy response = connection.remove_domain(identity) wait_for_job response.body['jobId'], Fog.timeout true end
# File lib/fog/rackspace/models/dns/zone.rb, line 28 def records @records ||= begin Fog::DNS::Rackspace::Records.new( :zone => self, :connection => connection ) end end
# File lib/fog/rackspace/models/dns/zone.rb, line 37 def save if identity update else create end true end