We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4147908 commit ce801f3Copy full SHA for ce801f3
src/databricks/labs/ucx/assessment/sequencing.py
@@ -18,12 +18,25 @@
18
@dataclass
19
class MigrationStep:
20
step_id: int
21
+ """Globally unique id."""
22
+
23
step_number: int
24
+ """The position in the migration sequence."""
25
26
object_type: str
27
+ """Object type. Together with `attr:object_id` a unique identifier."""
28
29
object_id: str
30
+ """Object id. Together with `attr:object_id` a unique identifier."""
31
32
object_name: str
33
+ """Object name, more human friendly than `attr:object_id`."""
34
35
object_owner: str
36
+ """Object owner."""
37
38
required_step_ids: list[int]
39
+ """The step ids that should be completed before this step is started."""
40
41
42
MigrationNodeKey = tuple[str, str]
0 commit comments