# File lib/fog/dns/models/slicehost/record.rb, line 47
        def save
          raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
          requires :name, :type, :value, :zone
          options = {}
          options[:active]  = active ? 'Y' : 'N'
          options[:aux]     = description if description
          options[:ttl]     = ttl if ttl
          data = connection.create_record(type, zone.id, name, value, options)
          merge_attributes(data.body)
          true
        end