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
}Required capabilities:
functionsAcl:READ
Service limits for the associated project.
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
}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.
Limits
Timeout of each function call.
9
The number of CPU cores per function exectuion (i.e. function call).
Show child attributes
The amount of available memory in GB per function execution (i.e. function call).
Show child attributes
Available runtimes. For example, runtime "py313" translates to the latest version of the Python 3.13 series.
["py310", "py311", "py312", "py313"]Maximum response size of function calls.
1
Was this page helpful?