blob: 13faeacf9b74d5445eafeba6faddcf6fba85fd82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@startuml
[*] --> UNDEPLOYED: Create
UNDEPLOYED --> [*]: Delete
UNDEPLOYED --> DEPLOYING: Deploy
DEPLOYING --> DEPLOYED: AC Instance\nElement DEPLOYED
DEPLOYING --> UNDEPLOYING: Undeploy
DEPLOYED --> UNDEPLOYING: Undeploy
DEPLOYED --> UPDATING: Update
DEPLOYED --> MIGRATING: Migrate
MIGRATING --> DEPLOYED: AC Instance\nElement MIGRATED
UNDEPLOYING --> UNDEPLOYED: AC Instance\nElement UNDEPLOYED
UNDEPLOYING --> UNDEPLOYED: AC Instance\nElement UNDEPLOYED
state DEPLOYED {
[*] --> LOCKED: Deploy
LOCKED --> [*]: Undeploy
LOCKED --> UNLOCKING: Unlock
UNLOCKING --> UNLOCKED: AC Instance\nElement UNLOCKED
UNLOCKED --> LOCKING: Lock
UNLOCKING --> LOCKING: Lock
LOCKING --> LOCKED: AC Instance\nElement LOCKED
}
@enduml
|