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

    Interface ResourceAdviceServiceBaseClient

    Defines the low-level gRPC client for the nebius.capacity.v1.ResourceAdviceService service.

    interface ResourceAdviceServiceBaseClient {
        list(
            request: ListResourceAdviceRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListResourceAdviceResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • ResourceAdviceServiceBaseClient
    Index
    • Returns a list of resource advice entries for the caller's tenant. Each entry represents a unique combination of region, fabric, platform, and preset (e.g., gpu-b200-sxm / 8gpu-160vcpu-1792gb in us-central1-b) and reports current capacity availability across three allocation types: reserved, on-demand, and preemptible. Use this method to determine where and which compute instances can be launched given the tenant's quotas, capacity block groups, and the current physical capacity in data centers. Supports filtering by region, resource type, or platform.

      Parameters

      • request: ListResourceAdviceRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: ListResourceAdviceResponse) => void
          • (error: ServiceError | null, response: ListResourceAdviceResponse): void
          • Returns a list of resource advice entries for the caller's tenant. Each entry represents a unique combination of region, fabric, platform, and preset (e.g., gpu-b200-sxm / 8gpu-160vcpu-1792gb in us-central1-b) and reports current capacity availability across three allocation types: reserved, on-demand, and preemptible. Use this method to determine where and which compute instances can be launched given the tenant's quotas, capacity block groups, and the current physical capacity in data centers. Supports filtering by region, resource type, or platform.

            Parameters

            Returns void

      Returns SurfaceCall