Core - v1.0.0
    Preparing search index...

    Interface SqlTarget

    The part of a database connection that is safe to show.

    Deliberately a subset of SqlCredentials with the password and user left out, so a log line or a health endpoint can say which database is being reached without carrying anything that would matter if it leaked. Anything needing the full set asks for the credentials explicitly, which makes the risky call the visible one.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface SqlTarget {
        database: string;
        host: string;
    }
    Index
    database: string

    Name of the database being connected to.

    host: string

    Hostname being connected to.