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

    Interface ListAuditEventRequest

    interface ListAuditEventRequest {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.audit.v2.ListAuditEventRequest";
        end?: Dayjs;
        filter: string;
        pageSize: Long;
        pageToken: string;
        parentId: string;
        start?: 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.ListAuditEventRequest"
    end?: Dayjs
    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.name 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

    pageSize: Long
    pageToken: string
    parentId: string

    A tenant id must be provided

    start?: Dayjs