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

    Interface AuditEventExportParams

    interface AuditEventExportParams {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.audit.v2.AuditEventExportParams";
        eventType: EventType;
        filter: string;
        from?: Dayjs;
        to?: Dayjs;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.audit.v2.AuditEventExportParams"
    eventType: EventType

    Type of audit event to filter by.

    filter: string

    Example: service.name = 'iam' AND resource.hierarchy.id:'container-e0t' AND regex(resource.metadata.name, '^.test.$')

    Supported filters: "=" - equals "!=" - not equals ":" - contains regex - regular expression

    Fields that can be used for filtering: action authentication.static_key_credential.id authentication.subject.service_account_id authentication.subject.tenant_user_id authentication.token_credential.masked_token project_region.name resource.hierarchy.id resource.hierarchy.name resource.metadata.id resource.metadata.name resource.metadata.type service.name type status

    from?: Dayjs

    Returns results with a timestamp greater than or equal to this value.

    to?: Dayjs

    Returns results with a timestamp lower than this value.