Adding new state and system diagrams/pages
[policy/parent.git] / docs / clamp / acm / plantuml / system-dialogues / DeleteAcInstance.puml
1 @startuml
2 participant REST
3 participant ACM_Runtime
4 database ACM_Database
5
6 REST -> ACM_Runtime: Delete Automation Composition Instance
7
8 alt Automation Composition Instance exists
9  alt Automation Composition Instance is not in state UNDEPLOYED
10   ACM_Runtime -> REST: Automation Composition instance exists and is deployed
11  else
12   ACM_Runtime -> REST: Automation Composition instance does not exist
13  end
14 else
15  ACM_Runtime -> ACM_Database: Delete Automation Composition Instance
16  ACM_Runtime -> REST: Automation Composition Instance Deleted
17 end
18
19 @enduml