Argo CD API Client
    Preparing search index...

    Interface ArgoCdRepository

    Argo CD repository credentials/config.

    interface ArgoCdRepository {
        enableLfs?: boolean;
        insecure?: boolean;
        insecureIgnoreHostKey?: boolean;
        name?: string;
        password?: string;
        project?: string;
        repo?: string;
        sshPrivateKey?: string;
        tlsClientCertData?: string;
        tlsClientCertKey?: string;
        type?: string;
        username?: string;
    }
    Index

    Properties

    enableLfs?: boolean

    Whether Git LFS is enabled.

    insecure?: boolean

    Whether TLS verification is disabled.

    insecureIgnoreHostKey?: boolean

    Whether SSH host key checks are disabled.

    name?: string

    Repository display name.

    password?: string

    Password for repository auth.

    project?: string

    Project this repository belongs to.

    repo?: string

    Repository URL.

    sshPrivateKey?: string

    SSH private key for repository auth.

    tlsClientCertData?: string

    TLS client certificate data.

    tlsClientCertKey?: string

    TLS client certificate key.

    type?: string

    Repository type, such as git or helm.

    username?: string

    Username for repository auth.