NotebookQuota¶
- pydantic model gafaelfawr.config.NotebookQuota¶
Quota settings for the Notebook Aspect.
- Parameters:
data (
Any
)
Show JSON schema
{ "title": "NotebookQuota", "description": "Quota settings for the Notebook Aspect.", "type": "object", "properties": { "cpu": { "description": "Maximum number of CPU equivalents", "title": "CPU limit", "type": "number" }, "memory": { "description": "Maximum memory usage in GiB", "title": "Memory limit (GiB)", "type": "number" } }, "additionalProperties": false, "required": [ "cpu", "memory" ] }
- Fields:
- field cpu: float [Required]¶
Maximum number of CPU equivalents
- field memory: float [Required]¶
Maximum memory usage in GiB