class Comet::VSphereConnection

def from_hash(obj)

Parameters:
  • obj (Hash) -- The complete object as a Ruby hash
def from_hash(obj)
  raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
  obj.each do |k, v|
    case k
    when 'Hostname'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @hostname = v
    when 'Https'
      @https = v
    when 'AllowInvalidCertificate'
      @allow_invalid_certificate = v
    when 'Username'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @username = v
    when 'Password'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @password = v
    when 'ThumbPrint'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @thumb_print = v
    else
      @unknown_json_fields[k] = v
    end
  end
end