Member Junction
    Preparing search index...

    Details logged for credential access.

    interface CredentialAccessDetails {
        durationMs?: number;
        errorMessage?: string;
        operation: "Decrypt" | "Create" | "Update" | "Delete" | "Validate";
        subsystem?: string;
        success: boolean;
    }
    Index

    Properties

    durationMs?: number

    Time taken for the operation in milliseconds.

    errorMessage?: string

    Error message if the operation failed.

    operation: "Decrypt" | "Create" | "Update" | "Delete" | "Validate"

    The type of operation performed.

    subsystem?: string

    The subsystem that accessed the credential.

    success: boolean

    Whether the operation succeeded.