videosphere
    Preparing search index...

    Interface SmbCredentials

    Plaintext SMB connection parameters used for test connections and upload auth. Values are encrypted before persistence on a ConnectedAccount.

    interface SmbCredentials {
        host: string;
        share: string;
        domain?: string;
        username: string;
        password: string;
        remotePath: string;
    }
    Index

    Properties

    host: string

    SMB server hostname or IP address.

    share: string

    Share name (without UNC prefix).

    domain?: string

    Windows domain or workgroup (optional).

    username: string

    Login username.

    password: string

    Login password.

    remotePath: string

    Directory within the share. Share root: empty string, /, or \; otherwise a path starting with / or `` (POSIX or Windows separators), without . or .. segments.