Skip to content

workflow_registry

Classes

WorkflowArchiveAddedEvent

Bases: RegistryEvent

Source code in kiara/models/events/workflow_registry.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class WorkflowArchiveAddedEvent(RegistryEvent):

    event_type: Literal["workflow_archive_added"] = "workflow_archive_added"
    workflow_archive_id: uuid.UUID = Field(
        description="The unique id of this data archive."
    )
    workflow_archive_alias: str = Field(
        description="The alias this workflow archive was added as."
    )
    is_store: bool = Field(
        description="Whether this archive supports write operations (aka implements the 'WorkflowStore' interface)."
    )
    is_default_store: bool = Field(
        description="Whether this store acts as default store."
    )

Attributes

event_type: Literal['workflow_archive_added'] = 'workflow_archive_added' class-attribute
workflow_archive_id: uuid.UUID = Field(description='The unique id of this data archive.') class-attribute
workflow_archive_alias: str = Field(description='The alias this workflow archive was added as.') class-attribute
is_store: bool = Field(description="Whether this archive supports write operations (aka implements the 'WorkflowStore' interface).") class-attribute
is_default_store: bool = Field(description='Whether this store acts as default store.') class-attribute