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

    Interface CapacityAllowanceServiceServer

    Handles server calls for the nebius.capacity.v1.CapacityAllowanceService service.

    interface CapacityAllowanceServiceServer {
        create: handleUnaryCall<CreateCapacityAllowanceRequest, Operation>;
        delete: handleUnaryCall<DeleteCapacityAllowanceRequest, Operation>;
        get: handleUnaryCall<GetCapacityAllowanceRequest, CapacityAllowance>;
        getByParentAndCapacityBlockGroup: handleUnaryCall<
            GetCapacityAllowanceByParentAndCapacityBlockGroupRequest,
            CapacityAllowance,
        >;
        list: handleUnaryCall<
            ListCapacityAllowancesRequest,
            ListCapacityAllowancesResponse,
        >;
        listByCapacityBlockGroup: handleUnaryCall<
            ListCapacityAllowancesByCapacityBlockGroupRequest,
            ListCapacityAllowancesResponse,
        >;
        update: handleUnaryCall<UpdateCapacityAllowanceRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • CapacityAllowanceServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.capacity.v1.CapacityAllowanceService service.

    Index
    create: handleUnaryCall<CreateCapacityAllowanceRequest, Operation>

    Creates a Capacity Allowance by project ID and Capacity Block Group NID.

    delete: handleUnaryCall<DeleteCapacityAllowanceRequest, Operation>

    Resets Capacity Allowance limit to the default value.

    Gets a Capacity Allowance by its ID.

    getByParentAndCapacityBlockGroup: handleUnaryCall<
        GetCapacityAllowanceByParentAndCapacityBlockGroupRequest,
        CapacityAllowance,
    >

    Gets a Capacity Allowance by a project and a Capacity Block Group NID. Returns non-created Capacity Allowances as well for clarity, showing the default limit.

    list: handleUnaryCall<
        ListCapacityAllowancesRequest,
        ListCapacityAllowancesResponse,
    >

    Lists project limits. Lists non-created Capacity Allowances as well for clarity, showing the default limit.

    listByCapacityBlockGroup: handleUnaryCall<
        ListCapacityAllowancesByCapacityBlockGroupRequest,
        ListCapacityAllowancesResponse,
    >

    Lists project limits for a Capacity Block Group.

    update: handleUnaryCall<UpdateCapacityAllowanceRequest, Operation>

    Updates a Capacity Allowance by project ID and Capacity Block Group NID.