RangerAuditPolicyItem Data Type

Properties
name data type description
actions array of string
isAudited boolean
accessResult AccessResult
accessTypes array of string
Properties inherited from RangerPolicyItem
users array of string
conditions array of RangerPolicyItemCondition
delegateAdmin boolean
groups array of string
roles array of string
accesses array of RangerPolicyItemAccess

Example

{
  "actions" : [ "...", "..." ],
  "isAudited" : true,
  "accessResult" : "DENIED",
  "accessTypes" : [ "...", "..." ],
  "users" : [ "...", "..." ],
  "conditions" : [ {
    "values" : [ "...", "..." ],
    "type" : "..."
  }, {
    "values" : [ "...", "..." ],
    "type" : "..."
  } ],
  "delegateAdmin" : true,
  "groups" : [ "...", "..." ],
  "roles" : [ "...", "..." ],
  "accesses" : [ {
    "isAllowed" : true,
    "type" : "..."
  }, {
    "isAllowed" : true,
    "type" : "..."
  } ]
}