Insomnia-Script-SDK-Docs
    Preparing search index...

    Interface CertificateOptions

    Represents the options for constructing a certificate.

    interface CertificateOptions {
        cert?: SrcRef;
        disabled?: boolean;
        key?: SrcRef;
        matches?: string[];
        name?: string;
        passphrase?: string;
        pfx?: SrcRef;
    }
    Index

    Properties

    cert?: SrcRef

    An optional reference to the certificate source.

    disabled?: boolean

    An optional flag indicating whether the certificate is disabled.

    key?: SrcRef

    An optional reference to the private key source.

    matches?: string[]

    An optional array of strings specifying the domains that the certificate should match.

    name?: string

    An optional name for the certificate.

    passphrase?: string

    An optional passphrase for the private key or certificate.

    pfx?: SrcRef

    An optional reference to a PFX or PKCS12 certificate source.