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

    Interface OperationServiceBaseClient

    Defines the low-level gRPC client for the nebius.common.v1.OperationService service.

    interface OperationServiceBaseClient {
        get(
            request: GetOperationRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Operation) => void,
        ): SurfaceCall;
        list(
            request: ListOperationsRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListOperationsResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • OperationServiceBaseClient
    Index
    • Returns the current state of the specified operation.

      Parameters

      • request: GetOperationRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Operation) => void
          • (error: ServiceError | null, response: Operation): void
          • Returns the current state of the specified operation.

            Parameters

            • error: ServiceError | null
            • response: Operation

            Returns void

      Returns SurfaceCall

    • Lists operations for the specified resource.

      Parameters

      Returns SurfaceCall