buildahcker
    Preparing search index...

    Interface SSHKeyGenConfig<T, P, S>

    interface SSHKeyGenConfig<
        T extends SSHKeyType,
        P extends string,
        S extends string,
    > {
        apkCache?: string;
        containerCache?: ContainerCache;
        logger?: Writable;
        opensshSource?: ImageOrContainer;
        outputFolder: string;
        prefix?: P;
        suffix?: S;
        types?: T[];
    }

    Type Parameters

    • T extends SSHKeyType
    • P extends string
    • S extends string
    Index

    Properties

    apkCache?: string
    containerCache?: ContainerCache
    logger?: Writable
    opensshSource?: ImageOrContainer
    outputFolder: string
    prefix?: P
    suffix?: S
    types?: T[]