# File lib/fog/dns/models/slicehost/record.rb, line 28
        def active=(new_active)
          attributes[:active] = case new_active
          when false, 'N'
            false
          when true, 'Y'
            true
          end
        end