@nebius/js-sdk - v0.2.3
    Preparing search index...

    Interface ExportFilter

    interface ExportFilter {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.logging.v1.ExportFilter";
        from?: Dayjs;
        matchExpression: string;
        to?: Dayjs;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.logging.v1.ExportFilter"
    from?: Dayjs

    Start of the time range to export, ISO 8601 (e.g. 2025-12-21T20:00:00Z).

    matchExpression: string

    LogQL match expression selecting log entries to export.

    to?: Dayjs

    End of the time range to export, ISO 8601 (e.g. 2025-12-22T00:00:00Z).