RbacUserGroup
M:n User to Group relation. Replicated from Active Directory. A user can be member of multiple groups, and groups can be nested in AD but OctoSAM flattens the group membership.
erDiagram
RbacGroup ||--o{ RbacUserGroup : "RbacGroupID"
RbacUser ||--o{ RbacUserGroup : "RbacUserID"
Fields
| Field |
Type |
Description |
| ID |
numeric |
Internal ID for the RbacUserGroup entity (Primary Key) |
| RbacGroupID |
numeric |
Internal ID that references the RbacGroup entity (Foreign Key) |
| RbacUserID |
numeric |
Internal ID that references the RbacUser entity (Foreign Key) |
References
| Column Name |
Referenced Table |
Description |
| RbacGroupID |
RbacGroup |
RBAC groups |
| RbacUserID |
RbacUser |
User object for RBAC. Typically replicated from Active Directory. |