daemon_models

LucidLink Python Library - Daemon Type Definitions

Types associated with the deprecated lucidlink.Daemon API. New code should use lucidlink.Client.

class lucidlink.daemon_models.DaemonStatus(is_running: bool, is_authenticated: bool, is_linked: bool, root_path: str)[source]

Bases: object

Daemon status information.

Returned by Daemon.get_status().

is_authenticated: bool

Whether the daemon has authenticated to a workspace.

is_linked: bool

Whether the authenticated workspace has any linked filespace.

Deprecated since version Use: Workspace.linked_filespaces instead, which reports the individual links rather than a single yes/no.

is_running: bool

Whether the daemon is currently running.

root_path: str

Root path for daemon operational files.