assignmentFilterEvaluationSummary 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.

Represent result summary for assignment filter evaluation

Properties

Property Type Description
assignmentFilterId String Unique identifier for the assignment filter object
assignmentFilterLastModifiedDateTime DateTimeOffset The time the assignment filter was last modified.
assignmentFilterDisplayName String The admin defined name for assignment filter.
assignmentFilterPlatform devicePlatformType The platform for which this assignment filter is created. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue, windowsMobileApplicationManagement.
evaluationResult assignmentFilterEvaluationResult Assignment filter evaluation result. Possible values are: unknown, match, notMatch, inconclusive, failure, notEvaluated.
evaluationDateTime DateTimeOffset The time assignment filter was evaluated.
assignmentFilterType deviceAndAppManagementAssignmentFilterType Indicate filter type either include or exclude. Possible values are: none, include, exclude.
assignmentFilterTypeAndEvaluationResults assignmentFilterTypeAndEvaluationResult collection A collection of filter types and their corresponding evaluation results.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.assignmentFilterEvaluationSummary",
  "assignmentFilterId": "String",
  "assignmentFilterLastModifiedDateTime": "String (timestamp)",
  "assignmentFilterDisplayName": "String",
  "assignmentFilterPlatform": "String",
  "evaluationResult": "String",
  "evaluationDateTime": "String (timestamp)",
  "assignmentFilterType": "String",
  "assignmentFilterTypeAndEvaluationResults": [
    {
      "@odata.type": "microsoft.graph.assignmentFilterTypeAndEvaluationResult",
      "assignmentFilterType": "String",
      "evaluationResult": "String"
    }
  ]
}