OBJECT

SapHanaSslInformation

Description

Information required to connect to SAP HANA database over SSL.

link GraphQL Schema definition

  • type SapHanaSslInformation {
  • # The path where the encryption key for the SAP HANA system is stored.
  • keyStorePath: String!
  • # Library path for SAP HANA crypto library (libsapcrypto.so).
  • cryptoLibPath: String!
  • # Override the hostname used to verify the server's identity.
  • hostNameInCertificate: String!
  • # Specifies whether to encrypt the database connection using SSL/TLS.
  • shouldEncrypt: Boolean!
  • # Specifies whether to validate the SSL certificate of the SAP HANA DB server.
  • shouldValidateCertificate: Boolean!
  • # Path to a trust store file that contains the public certificates of the SAP HANA
  • # DB server.
  • trustStorePath: String!
  • # The encryption provider for the SAPA HANA system.
  • encryptionProvider: SapHanaEncryptionProvider!
  • }