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

    Interface AuditEventExportServiceBaseClient

    Defines the low-level gRPC client for the nebius.audit.v2.AuditEventExportService service.

    interface AuditEventExportServiceBaseClient {
        cancel(
            request: CancelRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Operation) => void,
        ): SurfaceCall;
        get(
            request: GetRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: AuditEventExport) => void,
        ): SurfaceCall;
        list(
            request: ListRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListAuditEventExportResponse,
            ) => void,
        ): SurfaceCall;
        start(
            request: StartRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Operation) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • AuditEventExportServiceBaseClient
    Index
    • Stop active audit events export to s3 bucket, all data written before calling this API remains in the bucket.

      Parameters

      • request: CancelRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Operation) => void
          • (error: ServiceError | null, response: Operation): void
          • Stop active audit events export to s3 bucket, all data written before calling this API remains in the bucket.

            Parameters

            • error: ServiceError | null
            • response: Operation

            Returns void

      Returns SurfaceCall

    • Returns the audit event export with the current progress status and the parameters with which it was created.

      Parameters

      • request: GetRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: AuditEventExport) => void
          • (error: ServiceError | null, response: AuditEventExport): void
          • Returns the audit event export with the current progress status and the parameters with which it was created.

            Parameters

            Returns void

      Returns SurfaceCall

    • Returns a list of exports created for a specific parent_id.

      Parameters

      Returns SurfaceCall

    • Start audit events export to s3 bucket for specific period.

      Parameters

      • request: StartRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Operation) => void
          • (error: ServiceError | null, response: Operation): void
          • Start audit events export to s3 bucket for specific period.

            Parameters

            • error: ServiceError | null
            • response: Operation

            Returns void

      Returns SurfaceCall