RangerPolicyItem Data Type

Subtypes
RangerDataMaskPolicyItem, RangerRowFilterPolicyItem, RangerAuditPolicyItem
Properties
name data type description
conditions array of RangerPolicyItemCondition
users array of string
delegateAdmin boolean
roles array of string
groups array of string
accesses array of RangerPolicyItemAccess

Example

{
  "conditions" : [ {
    "values" : [ "...", "..." ],
    "type" : "..."
  }, {
    "values" : [ "...", "..." ],
    "type" : "..."
  } ],
  "users" : [ "...", "..." ],
  "delegateAdmin" : true,
  "roles" : [ "...", "..." ],
  "groups" : [ "...", "..." ],
  "accesses" : [ {
    "isAllowed" : true,
    "type" : "..."
  }, {
    "isAllowed" : true,
    "type" : "..."
  } ]
}