SUBJECT_ALL is a wildcard subject type that matches all subject types. It can be used with a subject named '*' to match all subjects.
from enum value: SUBJECT_ALL = 999;
SUBJECT_GROUP is a subject type for a group.
from enum value: SUBJECT_GROUP = 3;
SUBJECT_NODE is a subject type for a node.
from enum value: SUBJECT_NODE = 1;
SUBJECT_UNKNOWN is an unknown subject type.
from enum value: SUBJECT_UNKNOWN = 0;
SUBJECT_USER is a subject type for a user.
from enum value: SUBJECT_USER = 2;
Generated using TypeDoc
SubjectType is the type of a subject.
Generated
from enum v1.SubjectType