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

    Interface PlatformServiceBaseClient

    Defines the low-level gRPC client for the nebius.compute.v1.PlatformService service.

    interface PlatformServiceBaseClient {
        getByName(
            request: GetByNameRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Platform) => void,
        ): SurfaceCall;
        list(
            request: ListPlatformsRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListPlatformsResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • PlatformServiceBaseClient
    Index
    • Retrieves detailed information about a specific compute platform by its parent and name.

      Parameters

      • request: GetByNameRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Platform) => void
          • (error: ServiceError | null, response: Platform): void
          • Retrieves detailed information about a specific compute platform by its parent and name.

            Parameters

            • error: ServiceError | null
            • response: Platform

            Returns void

      Returns SurfaceCall

    • Lists all compute platforms within a specified parent.

      Parameters

      Returns SurfaceCall