AutoAssignSettingsRequest Data Type

Properties
name data type constraints description
mode AutoAssignMode required
includeRegExps array of string  
excludeRegExps array of string  
includeTags array of string  
excludeTags array of string  
hvClusters array of NameAndGuid  
projects array of NameAndGuid  

Example

{
  "mode" : "ASSIGN_AND_REMOVE",
  "includeRegExps" : [ "...", "..." ],
  "excludeRegExps" : [ "...", "..." ],
  "includeTags" : [ "...", "..." ],
  "excludeTags" : [ "...", "..." ],
  "hvClusters" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ],
  "projects" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ]
}