We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e62e06 + 0da8412 commit 408ce48Copy full SHA for 408ce48
1 file changed
components/renku_data_services/session/models.py
@@ -75,6 +75,7 @@ class BaseSessionLauncher:
75
"""Session launcher model."""
76
77
project_id: ULID
78
+ id: ULID | None
79
name: str
80
description: str | None
81
environment: str | UnsavedEnvironment | Environment
@@ -86,6 +87,7 @@ class UnsavedSessionLauncher(BaseSessionLauncher):
86
87
"""Session launcher model that has not been persisted in the DB."""
88
89
environment: str | UnsavedEnvironment
90
+ id: ULID | None = None
91
"""When a string is passed for the environment it should be the ID of an existing environment."""
92
93
0 commit comments