@nebius/js-sdk - v0.1.4
    Preparing search index...
    interface Request {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.audit.v2.Request";
        clientIp: string;
        idempotencyId: string;
        ja3Fingerprint: string;
        parameters?: { [key: string]: any };
        requestId: string;
        traceId: string;
        userAgent: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.audit.v2.Request"
    clientIp: string

    Ip of the subject who initiated the RPC call.

    idempotencyId: string

    Unique key that the server uses to recognize subsequent retries of the same request.

    ja3Fingerprint: string

    Client Ja3 fingerprint

    parameters?: { [key: string]: any }

    Parameters of the request.

    requestId: string

    Unique identifier of the request.

    traceId: string

    A unique identifier that allows you to link calls to different services within an operation.

    userAgent: string

    User agent of the subject who initiated operation.