NotebookQuotaSettings

pydantic model gafaelfawr.config.NotebookQuotaSettings

Quota settings for the Notebook Aspect.

Parameters:

data (Any)

Show JSON schema
{
   "title": "NotebookQuotaSettings",
   "description": "Quota settings for the Notebook Aspect.",
   "type": "object",
   "properties": {
      "cpu": {
         "title": "Cpu",
         "type": "number"
      },
      "memory": {
         "title": "Memory",
         "type": "number"
      }
   },
   "required": [
      "cpu",
      "memory"
   ]
}

Fields:
field cpu: float [Required]

Maximum number of CPU equivalents.

field memory: float [Required]

Maximum memory usage in GiB.