RangerAuditPolicyItem Data Type

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

Example

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