OSRuleRangeDTO Data Type

Properties
name data type constraints description
type OSRuleRangeType  
protectedEntityGuid string  
directory string  
recursive boolean required
includeMountedFileSystems boolean required
filters array of OSRuleFilterDTO  

Example

{
  "type" : "INCLUDE",
  "protectedEntityGuid" : "...",
  "directory" : "...",
  "recursive" : true,
  "includeMountedFileSystems" : true,
  "filters" : [ {
    "type" : "SIZE",
    "conditions" : [ {
      "value" : "...",
      "comparator" : "NOT_EQUAL"
    }, {
      "value" : "...",
      "comparator" : "LESS"
    } ]
  }, {
    "type" : "EXTENSION",
    "conditions" : [ {
      "value" : "...",
      "comparator" : "NOT_EQUAL"
    }, {
      "value" : "...",
      "comparator" : "LESS"
    } ]
  } ]
}