Skip to content

destiny_registry

Classes

DestinyArchiveAddedEvent

Bases: RegistryEvent

Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/kiara/models/events/destiny_registry.py
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class DestinyArchiveAddedEvent(RegistryEvent):

    event_type: Literal["destiny_archive_added"] = "destiny_archive_added"
    destiny_archive_id: uuid.UUID = Field(
        description="The unique id of this destiny archive."
    )
    destiny_archive_alias: str = Field(
        description="The alias this destiny archive was added as."
    )
    is_store: bool = Field(
        description="Whether this archive supports write operations (aka implements the 'DestinyStore' interface)."
    )
    is_default_store: bool = Field(
        description="Whether this store acts as default store."
    )

Attributes

event_type: Literal['destiny_archive_added'] = 'destiny_archive_added' instance-attribute class-attribute
destiny_archive_id: uuid.UUID = Field(description='The unique id of this destiny archive.') instance-attribute class-attribute
destiny_archive_alias: str = Field(description='The alias this destiny archive was added as.') instance-attribute class-attribute
is_store: bool = Field(description="Whether this archive supports write operations (aka implements the 'DestinyStore' interface).") instance-attribute class-attribute
is_default_store: bool = Field(description='Whether this store acts as default store.') instance-attribute class-attribute