This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathuser-group-mapping.dot
47 lines (38 loc) · 1.9 KB
/
user-group-mapping.dot
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
digraph graphname{
User [label="AtmosphereUser"]
Group
Project
Identity
Credential
Provider
ProviderCredential
Application
Version
Machine [label="Provider Machine"]
Volume
InstanceSource
Instance
User->Application [label="Owner"] // edge T->P
Group->Project [label="Owner"]
User->Group [label="GroupMembership", fontcolor=darkgreen, dir="both"] // edge T->P
Group->Instance [label="InstanceMembership", fontcolor=darkgreen, dir="both"]
Group->Provider [label="ProviderMembership", fontcolor=darkgreen, dir="both"]
Group->Identity [label="IdentityMembership", fontcolor=darkgreen, dir="both"]
Group->Machine [label="MachineMembership", fontcolor=darkgreen, dir="both"]
Group->Version [label="VersionMembership", fontcolor=darkgreen, dir="both"]
Group->Application [label="ApplicationMembership", fontcolor=darkgreen, dir="both"]
ProviderCredential->Provider
Provider->Identity
Credential->Identity
Identity->Instance [label="Created by"]
Identity->Volume [label="Created by"]
Identity->Machine [label="Created by"]
Project->Application [label="ProjectApplication", fontcolor=darkgreen, dir="both"]
Project->Instance [label="ProjectInstance", fontcolor=darkgreen, dir="both"]
Project->Volume [label="ProjectVolume", fontcolor=darkgreen, dir="both"]
Instance->InstanceSource
InstanceSource->Volume
InstanceSource->Machine
Machine->Version
Version->Application
}