Edit

Share via


evaluation resource type

Namespace: microsoft.graph.security.securityCopilot

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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"
}