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

    Interface QuotaAllowanceServiceServer

    Handles server calls for the nebius.quotas.v1.QuotaAllowanceService service.

    interface QuotaAllowanceServiceServer {
        create: handleUnaryCall<CreateQuotaAllowanceRequest, Operation>;
        delete: handleUnaryCall<DeleteQuotaAllowanceRequest, Operation>;
        get: handleUnaryCall<GetQuotaAllowanceRequest, QuotaAllowance>;
        getByName: handleUnaryCall<GetByNameRequest, QuotaAllowance>;
        list: handleUnaryCall<
            ListQuotaAllowancesRequest,
            ListQuotaAllowancesResponse,
        >;
        update: handleUnaryCall<UpdateQuotaAllowanceRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • QuotaAllowanceServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.quotas.v1.QuotaAllowanceService service.

    Index
    create: handleUnaryCall<CreateQuotaAllowanceRequest, Operation>

    Creates a quota allowance for a Project. If the quota already exists, its value is replaced with the provided one.

    delete: handleUnaryCall<DeleteQuotaAllowanceRequest, Operation>

    Deletes a quota by its ID. This is used to reset the quota value. It does not remove the quota entry.

    Gets a quota allowance by its ID.

    getByName: handleUnaryCall<GetByNameRequest, QuotaAllowance>

    Gets a quota allowance for a Tenant or Project by container ID, region, and name.

    Lists quota allowances for the specified Tenant or Project.

    update: handleUnaryCall<UpdateQuotaAllowanceRequest, Operation>

    Updates a quota allowance by its ID.