RunningImage#

pydantic model mobu.models.business.nublado.RunningImage#

Information about the running Jupyter lab image.

Parameters:

data (Any)

Show JSON schema
{
   "title": "RunningImage",
   "description": "Information about the running Jupyter lab image.",
   "type": "object",
   "properties": {
      "reference": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Docker reference for the image"
      },
      "description": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Human-readable description of the image"
      }
   }
}

Fields:
field description: str | None = None#
field reference: str | None = None#