ENUM

AccessVia

Description

AccessVia defines how an identity is getting access to sensitive data. It specifies the method through which access is granted.

link GraphQL Schema definition

  • enum AccessVia {
  • # ACCESS_TYPE_UNSPECIFIED indicates an unspecified access type.
  • ACCESS_TYPE_UNSPECIFIED
  • # DIRECT indicates direct access to the data.
  • DIRECT
  • # GROUP indicates access through a group membership.
  • GROUP
  • # ROLE indicates access through role assignment.
  • ROLE
  • }

link Require by