Interface ConnectionProfileInterface

interface ConnectionProfileInterface {
    adminClientId?: string;
    adminClientRedirectUri?: string;
    allowInsecureConnection?: boolean;
    authenticationHeaderOverrides?: Record<string, string>;
    authenticationService?: string;
    deploymentType?: string;
    idmHost?: string;
    logApiKey?: string;
    logApiSecret?: string;
    password?: string;
    svcacctId?: string;
    svcacctJwk?: JwkRsa;
    svcacctName?: string;
    svcacctScope?: string;
    tenant: string;
    username?: string;
}

Properties

adminClientId?: string
adminClientRedirectUri?: string
allowInsecureConnection?: boolean
authenticationHeaderOverrides?: Record<string, string>
authenticationService?: string
deploymentType?: string
idmHost?: string
logApiKey?: string
logApiSecret?: string
password?: string
svcacctId?: string
svcacctJwk?: JwkRsa
svcacctName?: string
svcacctScope?: string
tenant: string
username?: string