NotebookQuota¶
- pydantic model gafaelfawr.models.userinfo.NotebookQuota¶
Notebook Aspect quota information for a user.
- Parameters:
data (
Any
)
Show JSON schema
{ "title": "NotebookQuota", "description": "Notebook Aspect quota information for a user.", "type": "object", "properties": { "cpu": { "examples": [ 4.0 ], "title": "CPU equivalents", "type": "number" }, "memory": { "examples": [ 16.0 ], "title": "Maximum memory use (GiB)", "type": "number" } }, "required": [ "cpu", "memory" ] }
- Fields:
- field cpu: float [Required]¶
- field memory: float [Required]¶