From 11fadc0b343792387e5e85a785122af9a019857c Mon Sep 17 00:00:00 2001 From: FrancescoFioraEst Date: Thu, 4 Jul 2024 13:22:07 +0100 Subject: Update Replica support in docs Update Replica support in Messages and participant configuration. Add how States are saved in DB. Issue-ID: POLICY-5038 Change-Id: I27d5ae70c49c9640e1fc05c4af01f11293f8812d Signed-off-by: FrancescoFioraEst --- docs/clamp/acm/acm-states.rst | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'docs/clamp/acm/acm-states.rst') diff --git a/docs/clamp/acm/acm-states.rst b/docs/clamp/acm/acm-states.rst index a36825a5..a6cfc2e1 100644 --- a/docs/clamp/acm/acm-states.rst +++ b/docs/clamp/acm/acm-states.rst @@ -80,4 +80,59 @@ Delete .. image:: images/acm-states/AcInstanceStatesDelete.png +How State are saved in DB +========================= +Any state will be saved in DB as number: + +Participant Replica State +------------------------- + ++--------------------+------------+ +| ParticipantState | Database | ++====================+============+ +| ON_LINE | 0 | ++--------------------+------------+ +| OFF_LINE | 1 | ++--------------------+------------+ + + +Automation Composition Type State +--------------------------------- + ++----------------+------------+ +| AcTypeState | Database | ++================+============+ +| COMMISSIONED | 0 | ++----------------+------------+ +| PRIMING | 1 | ++----------------+------------+ +| PRIMED | 2 | ++----------------+------------+ +| DEPRIMING | 3 | ++----------------+------------+ + +Automation Composition Instance State +===================================== + ++---------------+------------+ +| DeployState | Database | ++===============+============+ +| DEPLOYED | 0 | ++---------------+------------+ +| DEPLOYING | 1 | ++---------------+------------+ +| UNDEPLOYED | 2 | ++---------------+------------+ +| UNDEPLOYING | 3 | ++---------------+------------+ +| DELETING | 4 | ++---------------+------------+ +| DELETED | 5 | ++---------------+------------+ +| UPDATING | 6 | ++---------------+------------+ +| MIGRATING | 7 | ++---------------+------------+ + + End of Document -- cgit