add Fabric read model rollback activation
Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a053ff-1d6f-7fe2-ac1c-a6eb40a42a0c
This commit is contained in:
parent
cf40c7bb4e
commit
cdff3b7e08
5 changed files with 133 additions and 0 deletions
|
|
@ -261,6 +261,17 @@ class FabricGraphIngestResult(BaseModel):
|
|||
edge_count: int
|
||||
|
||||
|
||||
class FabricGraphActivationRequest(BaseModel):
|
||||
requested_by: str = "operator"
|
||||
|
||||
|
||||
class FabricGraphActivationResult(BaseModel):
|
||||
import_run: FabricGraphImportRead
|
||||
previous_import_id: uuid.UUID | None = None
|
||||
activated: bool
|
||||
idempotent: bool
|
||||
|
||||
|
||||
class FabricGraphNodeRead(BaseModel):
|
||||
model_config = ConfigDict(from_attributes=True)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue