NotebookQuota¶
- pydantic model controller.models.domain.gafaelfawr.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: Annotated[float, Field(title='CPU equivalents', examples=[4.0])] [Required]¶
- field memory: Annotated[float, Field(title='Maximum memory use (GiB)', examples=[16.0])] [Required]¶