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

    Interface Request

    Represents the nebius.audit.v2.Request protobuf message.

    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

      Represents the nebius.audit.v2.Request protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.audit.v2.Request protobuf message.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.audit.v2.Request"

    Contains the fully qualified protobuf type name.

    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.

    Type Declaration

    • [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.