Skip to content

Commit 6a597d2

Browse files
authored
Merge pull request #28629 from microsoftgraph/main
Merge to publish
2 parents 9cbf562 + dc1f6c8 commit 6a597d2

23 files changed

Lines changed: 430 additions & 27 deletions

api-reference/beta/api/channel-list-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This method supports the following [OData query parameters](/graph/query-paramet
4949
| Name | Description |
5050
|:----------|:---------------------|
5151
| [$top](/graph/query-parameters#top-parameter)| Apply `$top` to specify the number of channel messages returned per page in the response. The default page size is 20 messages. You can extend up to 50 channel messages per page. |
52-
| [$expand](/graph/query-parameters#expand) | Apply `$expand` to get the properties of channel messages that are replies. By default, a response can include up to 1,000 replies. For an operation that expands channel messages with more than 1,000 replies, use the request URL returned in `replies@odata.nextLink` to get the next page of replies. |
52+
| [$expand](/graph/query-parameters#expand) | Apply `$expand` to get the properties of channel messages that are replies. By default, a response can include up to 200 replies. For an operation that expands channel messages with more than 200 replies, use the request URL returned in `replies@odata.nextLink` to get the next page of replies. |
5353

5454
The other [OData query parameters](/graph/query-parameters) aren't currently supported.
5555

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/mail-api-overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ For example, you can get messages in the Outlook **Sent Items** folder of the si
3939
GET /me/mailFolders('SentItems')/messages?$select=sender,subject
4040
```
4141

42+
When a message is updated while open in an Outlook client, the client does not refresh the message. Users must reopen the message to view the changes.
43+
4244
## Common use cases
4345

4446
The **message** resource exposes properties such as **categories**, **conversationId**, **flag**, and **importance** that correspond to features

api-reference/beta/resources/mailbox-import-export-api-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The mailbox import and export APIs in Microsoft Graph allow your application to
1717
These APIs support access to data in users' primary mailboxes and shared mailboxes on Exchange Online. Items can be imported to the same mailbox or a different one.
1818

1919
> [!Important]
20-
> The mailbox import and export APIs in Microsoft Graph are not designed for mailbox backup and restore. For mailbox backup and restore in Microsoft 365, see [Microsoft 365 Backup](/graph/backup-storage-concept-overview).
20+
> The mailbox import and export APIs in Microsoft Graph are not designed for mailbox backup and restore. For mailbox backup and restore in Microsoft 365, see [Microsoft 365 Backup](/microsoft-365/backup/backup-overview) or the [Microsoft Graph Backup Storage overview](/graph/backup-storage-concept-overview).
2121
2222
## How to use the mailbox import and export APIs
2323

@@ -49,4 +49,4 @@ Use the mailbox import and export APIs in Microsoft Graph to import and export c
4949

5050
## Related content
5151

52-
[Import an Exchange mailbox item using the mailbox import and export APIs](/graph/import-exchange-mailbox-item)
52+
- [Import an Exchange mailbox item using the mailbox import and export APIs](/graph/import-exchange-mailbox-item)

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
```

api-reference/v1.0/api/channel-list-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This method supports the following [OData query parameters](/graph/query-paramet
4646
| Name | Description |
4747
|:----------|:---------------------|
4848
| [$top](/graph/query-parameters#top-parameter)| Apply `$top` to specify the number of channel messages returned per page in the response. The default page size is 20 messages. You can extend up to 50 channel messages per page. |
49-
| [$expand](/graph/query-parameters#expand) | Apply `$expand` to get the properties of channel messages that are replies. By default, a response can include up to 1,000 replies. For an operation that expands channel messages with more than 1,000 replies, use the request URL returned in `replies@odata.nextLink` to get the next page of replies. |
49+
| [$expand](/graph/query-parameters#expand) | Apply `$expand` to get the properties of channel messages that are replies. By default, a response can include up to 200 replies. For an operation that expands channel messages with more than 200 replies, use the request URL returned in `replies@odata.nextLink` to get the next page of replies. |
5050

5151
The other [OData query parameters](/graph/query-parameters) aren't currently supported.
5252

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
title: "Get autoAuditingConfiguration"
3+
description: "Read the properties and relationships of microsoft.graph.security.autoAuditingConfiguration object."
4+
author: "SamuelBenichou"
5+
ms.date: 03/26/2026
6+
ms.localizationpriority: medium
7+
ms.subservice: "security"
8+
doc_type: apiPageType
9+
---
10+
11+
# Get autoAuditingConfiguration
12+
13+
Namespace: microsoft.graph.security
14+
15+
16+
Get the properties and relationships of [microsoft.graph.security.autoAuditingConfiguration](../resources/security-autoauditingconfiguration.md) object.
17+
18+
## Permissions
19+
20+
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
21+
22+
<!-- {
23+
"blockType": "permissions",
24+
"name": "security-autoauditingconfiguration-get-permissions"
25+
}
26+
-->
27+
[!INCLUDE [permissions-table](../includes/permissions/security-autoauditingconfiguration-get-permissions.md)]
28+
29+
[!INCLUDE [rbac-mdi-apis](../includes/rbac-for-apis/rbac-mdi-apis.md)]
30+
31+
## HTTP request
32+
33+
<!-- {
34+
"blockType": "ignored"
35+
}
36+
-->
37+
``` http
38+
GET /security/identities/settings/autoAuditingConfiguration
39+
```
40+
41+
## Optional query parameters
42+
43+
Not supported.
44+
45+
## Request headers
46+
47+
|Name|Description|
48+
|:---|:---|
49+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
50+
51+
## Request body
52+
53+
Don't supply a request body for this method.
54+
55+
## Response
56+
57+
If successful, this method returns a `200 OK` response code and a [microsoft.graph.security.autoAuditingConfiguration](../resources/security-autoauditingconfiguration.md) object in the response body.
58+
59+
## Examples
60+
61+
### Request
62+
63+
The following example shows a request.
64+
<!-- {
65+
"blockType": "request",
66+
"name": "get_autoauditingconfiguration"
67+
}
68+
-->
69+
``` http
70+
GET https://graph.microsoft.com/v1.0/security/identities/settings/autoAuditingConfiguration
71+
```
72+
73+
74+
### Response
75+
76+
The following example shows the response.
77+
>**Note:** The response object shown here might be shortened for readability.
78+
<!-- {
79+
"blockType": "response",
80+
"truncated": true,
81+
"@odata.type": "microsoft.graph.security.autoAuditingConfiguration"
82+
}
83+
-->
84+
``` http
85+
HTTP/1.1 200 OK
86+
Content-Type: application/json
87+
88+
{
89+
"value": {
90+
"@odata.type": "#microsoft.graph.security.autoAuditingConfiguration",
91+
"isAutomatic": true
92+
}
93+
}
94+
```
95+
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
title: "Update autoAuditingConfiguration"
3+
description: "Update the properties of a autoAuditingConfiguration object."
4+
author: "SamuelBenichou"
5+
ms.date: 03/26/2026
6+
ms.localizationpriority: medium
7+
ms.subservice: "security"
8+
doc_type: apiPageType
9+
---
10+
11+
# Update autoAuditingConfiguration
12+
13+
Namespace: microsoft.graph.security
14+
15+
Update the properties of an [autoAuditingConfiguration](../resources/security-autoauditingconfiguration.md) object.
16+
17+
## Permissions
18+
19+
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
20+
21+
<!-- {
22+
"blockType": "permissions",
23+
"name": "security-autoauditingconfiguration-update-permissions"
24+
}
25+
-->
26+
[!INCLUDE [permissions-table](../includes/permissions/security-autoauditingconfiguration-update-permissions.md)]
27+
28+
[!INCLUDE [rbac-mdi-apis](../includes/rbac-for-apis/rbac-mdi-apis.md)]
29+
30+
## HTTP request
31+
32+
<!-- {
33+
"blockType": "ignored"
34+
}
35+
-->
36+
``` http
37+
PATCH /security/identities/settings/autoAuditingConfiguration
38+
```
39+
40+
## Request headers
41+
42+
|Name|Description|
43+
|:---|:---|
44+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
45+
|Content-Type|application/json. Required.|
46+
47+
## Request body
48+
49+
50+
|Property|Type|Description|
51+
|:---|:---|:---|
52+
|isAutomatic|Boolean| Required.|
53+
54+
55+
56+
## Response
57+
58+
If successful, this method returns a `200 OK` response code.
59+
60+
## Examples
61+
62+
### Request
63+
64+
The following example shows a request.
65+
<!-- {
66+
"blockType": "request",
67+
"name": "update_autoauditingconfiguration"
68+
}
69+
-->
70+
``` http
71+
PATCH https://graph.microsoft.com/v1.0/security/identities/settings/autoAuditingConfiguration
72+
Content-Type: application/json
73+
74+
{
75+
"@odata.type": "#microsoft.graph.security.autoAuditingConfiguration",
76+
"isAutomatic": true
77+
}
78+
```
79+
80+
81+
### Response
82+
83+
The following example shows the response.
84+
>**Note:** The response object shown here might be shortened for readability.
85+
<!-- {
86+
"blockType": "response",
87+
"truncated": true
88+
}
89+
-->
90+
``` http
91+
HTTP/1.1 200 OK
92+
```

api-reference/v1.0/api/security-ediscoverycustodian-post-usersources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ POST /security/cases/ediscoveryCases/{ediscoveryCaseId}/custodians/{custodianId}
4444
## Request body
4545
In the request body, supply a JSON representation of the [userSource](../resources/security-usersource.md) object.
4646

47-
You can specify the following properties when you create a **userSource**.
47+
You can specify the following properties when you create a **userSource**. For more information, see [Data sources in eDiscovery](/purview/edisc-data-sources#other-considerations).
4848

4949
|Property|Type|Description|
5050
|:---|:---|:---|

0 commit comments

Comments
 (0)