diff options
author | 2024-07-04 13:22:07 +0100 | |
---|---|---|
committer | 2024-07-04 16:20:37 +0000 | |
commit | 11fadc0b343792387e5e85a785122af9a019857c (patch) | |
tree | 9185e42f7a8bc58ef23464ea563b760b9342fe92 /docs/clamp/acm/acm-states.rst | |
parent | 709ac10c7a846557e8c9d5d9d5a3e07e71efb023 (diff) |
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 <francesco.fiora@est.tech>
Diffstat (limited to 'docs/clamp/acm/acm-states.rst')
-rw-r--r-- | docs/clamp/acm/acm-states.rst | 55 |
1 files changed, 55 insertions, 0 deletions
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 |