alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
46 lines (45 loc) • 812 B
TypeScript
/**
* SAP Hana specific connection credential options.
*/
export interface SapConnectionCredentialsOptions {
/**
* Database host.
*/
host?: string;
/**
* Database host port.
*/
port?: number;
/**
* Database username.
*/
username?: string;
/**
* Database password.
*/
password?: string;
/**
* Database name to connect to.
*/
database?: string;
/**
* Encrypt database connection
*/
encrypt?: boolean;
/**
* Validate database certificate
*/
sslValidateCertificate?: boolean;
/**
* Key for encrypted connection
*/
key?: string;
/**
* Cert for encrypted connection
*/
cert?: string;
/**
* Ca for encrypted connection
*/
ca?: string;
}