blob: 14252f22761e9c4cd4be33522ed448aab2a8b6f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@startuml
participant REST
participant "ACM Runtime"
participant Participants
database "ACM Database"
REST -> "ACM Runtime": Migration Precheck Automation Composition Instance
"ACM Runtime" -> "ACM Database": Read Automation Composition Instance Information
alt Automation Composition Instance exists
"ACM Runtime" -> Participants: [ASYNC] Migration Precheck AC Element Instances for this AC Instance
"ACM Runtime" -> "ACM Database": Set AC Instance and its AC Element Instances to subState MIGRATION_PRECHECKING
"ACM Runtime" -> REST: Migration Precheck of Automation Composition Instance has been requested
else
"ACM Runtime" -> REST: Automation Composition instance does not exist
end
@enduml
|