filespace_models
LucidLink Python Library - Filespace Type Definitions
Types for filespace identity and configuration.
- class lucidlink.filespace_models.FilespaceInfo(id: str, name: str, created: str)[source]
Bases:
objectSummary information for a filespace in a workspace listing.
Returned by
Workspace.list_filespaces().- created: str
Creation timestamp (ISO 8601).
- id: str
Unique filespace identifier.
- name: str
Human-readable filespace name.
- class lucidlink.filespace_models.SyncMode(*values)[source]
Bases:
EnumControls whether changes are automatically synchronized to LucidLink services on close.
- SYNC_ALL = 'all'
(default) Automatically call
sync_all()before unlinking filespaces.
- SYNC_NONE = 'none'
Do not sync automatically — caller must call
sync_all()explicitly.