# File lib/fog/softlayer/models/dns/domains.rb, line 23 def get(identifier) return nil if identifier.nil? || identifier == "" response = service.get_domain(identifier) data = response.body new.merge_attributes(data) rescue Excon::Errors::NotFound nil end