class Comet::MacOSCodeSignProperties

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 'Level'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @level = v
    when 'SignLocally'
      @sign_locally = v
    when 'SSHServer'
      @sshserver = Comet::SSHConnection.new
      @sshserver.from_hash(v)
    when 'CertificateName'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @certificate_name = v
    when 'AppCertificateName'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @app_certificate_name = v
    when 'AppleID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @apple_id = v
    when 'AppleIDPass'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @apple_idpass = v
    when 'AppleIDPassFormat'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @apple_idpass_format = v
    when 'CertificateFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @certificate_file = v
    when 'AppCertificateFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @app_certificate_file = v
    when 'PfxFilePassword'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @pfx_file_password = v
    when 'PfxFilePasswordFormat'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @pfx_file_password_format = v
    when 'NotaryAPIIssuerID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apiissuer_id = v
    when 'NotaryAPIKeyID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apikey_id = v
    when 'NotaryAPIKeyFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apikey_file = v
    else
      @unknown_json_fields[k] = v
    end
  end
end