RangerPolicyItem Data Type

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

Example

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