Argo CD API Client
    Preparing search index...

    Interface ArgoCdRepoCred

    Argo CD repository credential template.

    interface ArgoCdRepoCred {
        enableOCI?: boolean;
        githubAppEnterpriseBaseUrl?: string;
        githubAppId?: number;
        githubAppInstallationId?: number;
        insecure?: boolean;
        sshPrivateKey?: string;
        tlsClientCertData?: string;
        tlsClientCertKey?: string;
        type?: string;
        url?: string;
        username?: string;
    }
    Index

    Properties

    enableOCI?: boolean

    Whether server-side certificate verification is enabled for Helm repos.

    githubAppEnterpriseBaseUrl?: string

    GitHub Enterprise base URL.

    githubAppId?: number

    GitHub App ID.

    githubAppInstallationId?: number

    GitHub App installation ID.

    insecure?: boolean

    Whether TLS verification is disabled.

    sshPrivateKey?: string

    SSH private key.

    tlsClientCertData?: string

    TLS client certificate (PEM).

    tlsClientCertKey?: string

    TLS client certificate key (PEM).

    type?: string

    Repository type (git or helm).

    url?: string

    URL prefix this credential template applies to.

    username?: string

    Git username.