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

    Interface MaintenanceServiceBaseClient

    Defines the low-level gRPC client for the nebius.maintenance.v1alpha1.MaintenanceService service.

    interface MaintenanceServiceBaseClient {
        get(
            request: GetMaintenanceRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Maintenance) => void,
        ): SurfaceCall;
        list(
            request: ListMaintenancesRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListMaintenancesResponse,
            ) => void,
        ): SurfaceCall;
        update(
            request: UpdateMaintenanceRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: UpdateMaintenanceResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • MaintenanceServiceBaseClient
    Index
    • Returns the specified maintenance operation. To get the list of upcoming and past maintenance operations, make a [List] request.

      Parameters

      • request: GetMaintenanceRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Maintenance) => void
          • (error: ServiceError | null, response: Maintenance): void
          • Returns the specified maintenance operation. To get the list of upcoming and past maintenance operations, make a [List] request.

            Parameters

            Returns void

      Returns SurfaceCall

    • Retrieves the list of maintenance operations that belong to the specified container.

      Parameters

      Returns SurfaceCall

    • Updates the specified maintenance operation.

      Parameters

      Returns SurfaceCall