MonoCloud Management SDK
    Preparing search index...

    Log Response: Represents an audit log entry capturing a system or security event.

    Log

    interface Log {
        actor: LogActor;
        category: LogCategories;
        client?: LogClient | null;
        code: EventCodes;
        description: string;
        details?: object;
        id: string;
        message?: string | null;
        name: string;
        request: LogRequest;
        source?: string | null;
        system: LogSystem;
        targets: LogTarget[];
        time_stamp: number;
        type: EventTypes;
    }
    Index

    Properties

    actor: LogActor

    The actor that performed the action.

    Log

    category: LogCategories

    The event category.

    Log

    client?: LogClient | null

    The client application details.

    Log

    The event code.

    Log

    description: string

    A human-readable description of the event.

    Log

    details?: object

    Log Details Response: Represents additional event-specific details associated with the log entry.

    Log

    id: string

    The unique identifier of the log entry.

    Log

    message?: string | null

    The message associated with the event.

    Log

    name: string

    The event name.

    Log

    request: LogRequest

    Request details for the event.

    Log

    source?: string | null

    The source endpoint or path that generated the event.

    Log

    system: LogSystem

    System/environment details for the event.

    Log

    targets: LogTarget[]

    The targets affected by the action.

    Log

    time_stamp: number

    Specifies the event time (in Epoch).

    Log

    The event severity/type.

    Log