assignmentFilterSupportedProperty resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Represents the information about the property which is supported in crafting the rule of AssignmentFilter.

Properties

Property Type Description
dataType String The data type of the property.
isCollection Boolean Indicates whether the property is a collection type or not.
name String Name of the property.
propertyRegexConstraint String Regex string to do validation on the property value.
supportedOperators assignmentFilterOperator collection List of all supported operators on this property.
supportedValues String collection List of all supported values for this property, empty if everything is supported.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.assignmentFilterSupportedProperty",
  "dataType": "String",
  "isCollection": true,
  "name": "String",
  "propertyRegexConstraint": "String",
  "supportedOperators": [
    "String"
  ],
  "supportedValues": [
    "String"
  ]
}