Skip to main content
GET
/
functions
/
limits
Python SDK
limits = client.functions.limits()
{
  "timeoutMinutes": 9,
  "cpuCores": {
    "min": 1,
    "max": 1,
    "default": 1
  },
  "memoryGb": {
    "min": 1.5,
    "max": 1.5,
    "default": 1.5
  },
  "runtimes": [
    "py310",
    "py311",
    "py312",
    "py313"
  ],
  "responseSizeMb": 1
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Response

Limits

timeoutMinutes
integer
required

Timeout of each function call.

Example:

9

cpuCores
object
required

The number of CPU cores per function exectuion (i.e. function call).

memoryGb
object
required

The amount of available memory in GB per function execution (i.e. function call).

runtimes
string[]
required

Available runtimes. For example, runtime "py313" translates to the latest version of the Python 3.13 series.

Example:
["py310", "py311", "py312", "py313"]
responseSizeMb
integer
required

Maximum response size of function calls.

Example:

1

Last modified on April 23, 2026