RangerRowFilterPolicyItem Data Type

Properties
name data type description
rowFilterInfo RangerPolicyItemRowFilterInfo
Properties inherited from RangerPolicyItem
roles array of string
users array of string
delegateAdmin boolean
accesses array of RangerPolicyItemAccess
groups array of string
conditions array of RangerPolicyItemCondition

Example

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