Skip to content

Images

CLASS DESCRIPTION
ImageQuery

Query for a list of images.

SingleImageWithWarnings

SingleImage, with has_warnings boolean flag.

Attributes

Classes

ImageQuery pydantic-model

Bases: BaseModel

Query for a list of images.

ATTRIBUTE DESCRIPTION
type_filters

TYPE: TypeFilters

attribute_filters

TYPE: AttributeFilters

Fields:

Source code in fractal_server/app/routes/api/v2/images.py
class ImageQuery(BaseModel):
    """
    Query for a list of images.

    Attributes:
        type_filters:
        attribute_filters:
    """

    type_filters: TypeFilters = Field(default_factory=dict)
    attribute_filters: AttributeFilters = Field(default_factory=dict)

SingleImageWithWarnings pydantic-model

Bases: SingleImage

SingleImage, with has_warnings boolean flag.

Fields:

Source code in fractal_server/app/routes/api/v2/images.py
class SingleImageWithWarnings(SingleImage):
    """
    `SingleImage`, with `has_warnings` boolean flag.
    """

    has_warnings: bool | None = None

Functions: