Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 2.99 KB

File metadata and controls

69 lines (59 loc) · 2.99 KB
title evaluation resource type
description Represents an evaluation in a Security Copilot prompt.
author spunukol
ms.date 07/17/2025
ms.localizationpriority medium
ms.subservice security-copilot
doc_type resourcePageType

evaluation resource type

Namespace: microsoft.graph.security.securityCopilot

[!INCLUDE beta-disclaimer]

Represents an evaluation in a Security Copilot prompt.

Inherits from entity

Methods

Method Return type Description
List microsoft.graph.security.securityCopilot.evaluation collection Get a list of the evaluation objects and their properties.
Create microsoft.graph.security.securityCopilot.evaluation Create a new evaluation object.
Get microsoft.graph.security.securityCopilot.evaluation Read the properties and relationships of microsoft.graph.security.securityCopilot.evaluation object.

Properties

Property Type Description
completedDateTime DateTimeOffset Evaluation completion time.
createdDateTime DateTimeOffset Evaluation created time.
executionCount Int64 Evaluation execution count.
id String Represents the unique ID of the Security Copilot evaluation. Inherits from entity.
isCancelled Boolean Evaluation cancellation status.
lastModifiedDateTime DateTimeOffset Evaluation modified time.
result microsoft.graph.security.securityCopilot.evaluationResult Evaluation results collection.
runStartDateTime DateTimeOffset Evaluation Run start time.
state microsoft.graph.security.securityCopilot.evaluationState Evaluation state during poll. The possible values are: unknown, created, running, completed, cancelled, pending, deferred, waitingForInput, unknownFutureValue.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.securityCopilot.evaluation",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "runStartDateTime": "String (timestamp)",
  "completedDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "executionCount": "Integer",
  "isCancelled": "Boolean",
  "result": {
    "@odata.type": "microsoft.graph.security.securityCopilot.evaluationResult"
  },
  "state": "String"
}