FileserverStatus¶
- pydantic model controller.models.v1.fileserver.FileserverStatus¶
Status of a user’s file server.
- Parameters:
data (
Any
)
Show JSON schema
{ "title": "FileserverStatus", "description": "Status of a user's file server.", "type": "object", "properties": { "running": { "examples": [ true ], "title": "Whether fileserver is running", "type": "boolean" } }, "required": [ "running" ] }
- Fields:
- field running: Annotated[bool, Field(title='Whether fileserver is running', examples=[True])] [Required]¶