Skip to content

Commit dc1f6c8

Browse files
authored
Merge pull request #28496 from microsoftgraph/add-sensorType-to-sensorCandidate
Add SensorTypes to SensorCandidate
2 parents 16f12cc + 52e2ea6 commit dc1f6c8

5 files changed

Lines changed: 53 additions & 10 deletions

File tree

api-reference/beta/api/security-identitycontainer-list-sensorcandidates.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ Content-Type: application/json
118118
"computerDnsName": "win-11.def.defensor.local",
119119
"senseClientVersion": "10.8780.27711.1000",
120120
"lastSeenDateTime": "2024-10-29T19:55:10.9452778Z",
121-
"domainName": "def.defensor.local"
121+
"domainName": "def.defensor.local",
122+
"sensorTypes": ["domainController", "adfs"]
122123
}
123124
]
124125
}

api-reference/beta/resources/enums-security.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,6 +1191,16 @@ Namespace: microsoft.graph.security
11911191
|jFrogArtifactory|
11921192
|unknownFutureValue|
11931193

1194+
### deviceType values
1195+
1196+
| Member |
1197+
| :--------------------------|
1198+
| domainController |
1199+
| adfs |
1200+
| adcs |
1201+
| entraConnect |
1202+
| unknownFutureValue |
1203+
11941204
<!--
11951205
{
11961206
"type": "#page.annotation",

api-reference/beta/resources/security-sensorcandidate.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ Inherits from [microsoft.graph.entity](../resources/entity.md).
2525
|[Activate](../api/security-sensorcandidate-activate.md)| None |Activate Microsoft Defender for Identity sensors.|
2626

2727
## Properties
28-
|Property|Type| Description |
29-
|:---|:---|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
30-
|computerDnsName|String| The DNS name of the computer associated with the sensor. |
31-
|domainName|String| The domain name of the sensor. |
32-
|id|String| The unique identifier for the sensor candidate. Inherited from [microsoft.graph.entity](../resources/entity.md). Inherits from [entity](../resources/entity.md) |
33-
|lastSeenDateTime|DateTimeOffset| The date and time when the sensor was last seen. |
34-
|senseClientVersion|String| The version of the Defender for Identity sensor client. Supports `$filter` (`eq`). |
28+
|Property| Type | Description |
29+
|:---|:--------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
30+
|computerDnsName| String | The DNS name of the computer associated with the sensor. |
31+
|domainName| String | The domain name of the sensor. |
32+
|id| String | The unique identifier for the sensor candidate. Inherited from [microsoft.graph.entity](../resources/entity.md). Inherits from [entity](../resources/entity.md) |
33+
|lastSeenDateTime| DateTimeOffset | The date and time when the sensor was last seen. |
34+
|senseClientVersion| String | The version of the Defender for Identity sensor client. Supports `$filter` (`eq`). |
35+
|sensorTypes| microsoft.graph.security.deviceType | The list of device type of the sensor. The possible values are: `domainController`, `adfs`,, `adcs`, `entraConnect` `unknownFutureValue`. This flagged enumeration allows multiple members to be returned simultaneously. |
36+
3537

3638
## Relationships
3739
None.
@@ -53,6 +55,7 @@ The following JSON representation shows the resource type.
5355
"computerDnsName": "String",
5456
"senseClientVersion": "String",
5557
"lastSeenDateTime": "String (timestamp)",
56-
"domainName": "String"
58+
"domainName": "String",
59+
"sensorTypes": "String"
5760
}
5861
```

changelog/Microsoft.DefenderForIdentity.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,31 @@
357357
"CreatedDateTime": "2026-01-13T12:59:27.0649263Z",
358358
"WorkloadArea": "Security",
359359
"SubArea": ""
360-
}
360+
}, {
361+
"ChangeList": [
362+
{
363+
"Id": "13cabf61-b38c-4c61-ba01-487282745e3a",
364+
"ApiChange": "Enumeration",
365+
"ChangedApiName": "deviceType",
366+
"ChangeType": "Addition",
367+
"Description": "Added the **deviceType** enumeration type.",
368+
"Target": "deviceType"
369+
},
370+
{
371+
"Id": "13cabf61-b38c-4c61-ba01-487282745e3a",
372+
"ApiChange": "Property",
373+
"ChangedApiName": "sensorTypes",
374+
"ChangeType": "Addition",
375+
"Description": "Added the **sensorTypes** property to the [sensorCandidate](https://learn.microsoft.com/en-us/graph/api/resources/security-sensorCandidate?view=graph-rest-beta) resource.",
376+
"Target": "sensorCandidate"
377+
}
378+
],
379+
"Id": "13cabf61-b38c-4c61-ba01-487282745e3a",
380+
"Cloud": "Prod",
381+
"Version": "beta",
382+
"CreatedDateTime": "2026-04-09T15:36:39.3976713Z",
383+
"WorkloadArea": "Security",
384+
"SubArea": ""
385+
}
361386
]
362387
}

concepts/whats-new-overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ Added the **createdByAppId** property to the [application](/graph/api/resources/
127127

128128
Use the **primaryEmailAddress**, **secondaryEmailAddress**, and **tertiaryEmailAddress** properties on [contact](/graph/api/resources/contact) to get or set the primary, secondary, or tertiary email address of a contact.
129129

130+
### Security | Microsoft Defender for Identity
131+
132+
Added the **sensorTypes** property to the [sensorCandidate](../api-reference/beta/resources/security-sensorcandidate.md) resource type.
133+
130134
### Teamwork and communications | Calls and online meetings
131135

132136
Added [ad hoc call](/graph/api/resources/adhoccall) support to change notifications for transcripts and recordings in Microsoft Teams. You can now subscribe to the following resources to get notified when a transcript or recording is available for an ad hoc call:

0 commit comments

Comments
 (0)