Quotas

quotas

Methods

Get Combined Client Quotas Regional And Global -> { global_quotas, regional_quotas }
get/v2/client_quotas

Get combined client quotas, regional and global.

Parameters
client_id: number
Optional

Id of the client, if not present will be inferred from jwt.

Response fields
global_quotas: { inference_cpu_millicore_count_limit, inference_cpu_millicore_count_usage, inference_gpu_a100_count_limit, 11 more... }
Optional

Global entity quotas

regional_quotas: Array<{ baremetal_basic_count_limit, baremetal_basic_count_usage, baremetal_gpu_count_limit, 84 more... }>
Optional

Regional entity quotas. Only contains initialized quotas.

Request example
200Example
Quotas

Limits Request

quotas.limits_request

Methods

Create Request To Change Quotas ->
post/v2/limits_request

Create request to change quotas

Delete Request To Change Quotas ->
delete/v2/limits_request/{req_id}

Delete request to change quotas

Get List Of Quota Change Requests -> OffsetPage<>
get/v2/limits_request

Returns a list of sent requests to change current quotas and their statuses

Get Request To Change Quota Limits ->
get/v2/limits_request/{req_id}

Get request to change quota limits.

Domain types

LimitsRequest = { id, client_id, requested_limits, 4 more... }
Quotas

Notification Threshold

quotas.notification_threshold

Methods

Delete Client S Quota Notification Threshold ->
delete/v2/client_quotas/{client_id}/notification_threshold

Delete client's quota notification threshold

Get Client S Quota Notification Threshold ->
get/v2/client_quotas/{client_id}/notification_threshold

A quota notification threshold is necessary to send a notification warning to the client. Defaults to 80%. without their own threshold.

Update Or Create Client S Quota Notification Threshold ->
put/v2/client_quotas/{client_id}/notification_threshold

A quota notification threshold is necessary to send a notification warning to the client. Defaults to 80%.

Domain types

QuotaNotificationThreshold = { client_id, last_message, last_sending, 1 more... }