Skip to content

Commit 8624da0

Browse files
committed
merge conflict
2 parents 509db5a + 3fd8147 commit 8624da0

40 files changed

+1070
-556
lines changed

api-reference/beta/api/channel-getallretainedmessages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "channel: getAllRetainedMessages"
3-
description: "Get retained messages across all channels in a team."
3+
description: "Get all retained messages across all channels in a team."
44
author: "AgnesLiu"
55
ms.localizationpriority: medium
66
ms.subservice: "teams"
@@ -13,7 +13,7 @@ Namespace: microsoft.graph
1313

1414
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1515

16-
Get retained [messages](../resources/chatmessage.md) across all [channels](../resources/channel.md) in a [team](../resources/team.md).
16+
Get all retained [messages](../resources/chatmessage.md) across all [channels](../resources/channel.md) in a [team](../resources/team.md).
1717

1818
To learn more about how to use the Microsoft Teams export APIs to export content, see [Export content with the Microsoft Teams export APIs](/microsoftteams/export-teams-content).
1919

api-reference/beta/api/chat-getallretainedmessages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "chat: getAllRetainedMessages"
3-
description: "Get retained messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats."
3+
description: "Get all retained messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats."
44
author: "AgnesLiu"
55
ms.localizationpriority: medium
66
ms.subservice: "teams"
@@ -13,7 +13,7 @@ Namespace: microsoft.graph
1313

1414
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1515

16-
Get all retained messages from all [chats](../resources/chatmessage.md) that a user is a participant in, including one-on-one chats, group chats, and meeting chats.
16+
Get all retained [messages](../resources/chatmessage.md) from all [chats](../resources/chat.md) that a user is a participant in, including one-on-one chats, group chats, and meeting chats.
1717

1818
To learn more about how to use the Microsoft Teams export APIs to export content, see [Export content with the Microsoft Teams export APIs](/microsoftteams/export-teams-content).
1919

@@ -67,8 +67,8 @@ The following table lists examples that show how to use the `$filter` parameter.
6767

6868
|Scenario | `$filter` parameter |Possible values |
6969
|:-----------------------------------------|:---------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|
70-
|Get messages sent by user identity type |$filter=from/user/userIdentityType eq '{teamworkUserIdentityType}' |aadUser, onPremiseAadUser, anonymousGuest, federatedUser, personalMicrosoftAccountUser, skypeUser, phoneUser|
71-
|Get messages sent by application type |$filter=from/application/applicationIdentityType eq '{teamworkApplicationIdentity}' |aadApplication, bot, tenantBot, office365Connector, outgoingWebhook |
70+
|Get messages sent by user identity type |$filter=from/user/userIdentityType eq '{teamworkUserIdentityType}' |`aadUser`, `onPremiseAadUser`, `anonymousGuest`, `federatedUser`, `personalMicrosoftAccountUser`, `skypeUser`, `phoneUser`|
71+
|Get messages sent by application type |$filter=from/application/applicationIdentityType eq '{teamworkApplicationIdentity}' |`aadApplication`, `bot`, `tenantBot`, `office365Connector`, `outgoingWebhook` |
7272
|Get messages sent by user ID |$filter=from/user/id eq '{oid}' ||
7373
|Get control (system event) messages |$filter=messageType eq 'systemEventMessage' ||
7474
|Exclude control (system event) messages |$filter=messageType ne 'systemEventMessage' ||

api-reference/beta/api/cloudpcdeviceimage-get.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ Content-Type: application/json
129129
"lastModifiedDateTime": "2023-11-03T07:03:44.97Z",
130130
"status": "ready",
131131
"statusDetails": null,
132-
"errorCode": null
132+
"errorCode": null,
133+
"osVersionNumber": "10.0.22631.3593"
133134
}
134135
```

api-reference/beta/api/cloudpcgalleryimage-get.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ Content-Type: application/json
137137
"sizeInGB": 64,
138138
"startDate": "2019-11-12",
139139
"endDate": "2022-05-10",
140-
"expirationDate": "2022-11-10"
140+
"expirationDate": "2022-11-10",
141+
"osVersionNumber": "10.0.18363.720"
141142
}
142143
```

api-reference/beta/api/cloudpcprovisioningpolicy-get.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ Content-Type: application/json
144144
"autopatch": {
145145
"autopatchGroupId": "91197a0b-3a74-408d-ba88-bce3fdc4e5eb"
146146
},
147+
"autopilotConfiguration": {
148+
"devicePreparationProfileId": "59e5d3d2-ec68-4bfe-9693-27975b318990",
149+
"applicationTimeoutInMinutes": 60,
150+
"onFailureDeviceAccessDenied": false
151+
},
147152
"enableSingleSignOn": true,
148153
"id": "1d164206-bf41-4fd2-8424-a3192d39ffff",
149154
"imageDisplayName": "Image Display Name value",
@@ -245,6 +250,11 @@ Content-Type: application/json
245250
"autopatch": {
246251
"autopatchGroupId": "91197a0b-3a74-408d-ba88-bce3fdc4e5eb"
247252
},
253+
"autopilotConfiguration": {
254+
"devicePreparationProfileId": "59e5d3d2-ec68-4bfe-9693-27975b318990",
255+
"applicationTimeoutInMinutes": 60,
256+
"onFailureDeviceAccessDenied": false
257+
},
248258
"enableSingleSignOn": true,
249259
"id": "1d164206-bf41-4fd2-8424-a3192d39ffff",
250260
"imageDisplayName": "Image Display Name value",

api-reference/beta/api/cloudpcprovisioningpolicy-update.md

Lines changed: 8 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ The following table shows the properties that can be updated for the [cloudPcPro
5151
|Property|Type|Description|
5252
|:---|:---|:---|
5353
|autopatch|[cloudPcProvisioningPolicyAutopatch](../resources/cloudpcprovisioningpolicyautopatch.md)|The specific settings for Windows Autopatch that enable its customers to experience it on Cloud PC. The settings take effect when the tenant enrolls in Windows Autopatch and the **managedType** of the **microsoftManagedDesktop** property is set as `starterManaged`.|
54+
|autopilotConfiguration|[cloudPcAutopilotConfiguration](../resources/cloudpcautopilotconfiguration.md)|The specific settings for Windows Autopilot that enable Windows 365 customers to experience it on Cloud PC.|
5455
|description|String|The provisioning policy description.|
5556
|displayName|String|The display name for the provisioning policy. |
5657
|domainJoinConfigurations|[cloudPcDomainJoinConfiguration](../resources/cloudpcdomainjoinconfiguration.md) collection|Specifies a list ordered by priority on how Cloud PCs join Microsoft Entra ID.|
@@ -74,15 +75,14 @@ If successful, this method returns a `204 No Content` response code.
7475

7576
The following example shows a request.
7677

77-
# [HTTP](#tab/http)
7878
<!-- {
7979
"blockType": "request",
8080
"name": "update_provisioningpolicy"
8181
}
8282
-->
8383

8484
``` http
85-
PATCH https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/provisioningPolicies/{id}
85+
PATCH https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/provisioningPolicies/1d164206-bf41-4fd2-8424-a3192d39ffff
8686
Content-Type: application/json
8787
8888
{
@@ -105,51 +105,22 @@ Content-Type: application/json
105105
},
106106
"autopatch": {
107107
"autopatchGroupId": "91197a0b-3a74-408d-ba88-bce3fdc4e5eb"
108+
},
109+
"autopilotConfiguration": {
110+
"devicePreparationProfileId": "59e5d3d2-ec68-4bfe-9693-27975b318990",
111+
"applicationTimeoutInMinutes": 30,
112+
"onFailureDeviceAccessDenied": false
108113
}
109114
}
110115
```
111116

112-
# [C#](#tab/csharp)
113-
[!INCLUDE [sample-code](../includes/snippets/csharp/update-provisioningpolicy-csharp-snippets.md)]
114-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
115-
116-
# [CLI](#tab/cli)
117-
[!INCLUDE [sample-code](../includes/snippets/cli/update-provisioningpolicy-cli-snippets.md)]
118-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
119-
120-
# [Go](#tab/go)
121-
[!INCLUDE [sample-code](../includes/snippets/go/update-provisioningpolicy-go-snippets.md)]
122-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
123-
124-
# [Java](#tab/java)
125-
[!INCLUDE [sample-code](../includes/snippets/java/update-provisioningpolicy-java-snippets.md)]
126-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
127-
128-
# [JavaScript](#tab/javascript)
129-
[!INCLUDE [sample-code](../includes/snippets/javascript/update-provisioningpolicy-javascript-snippets.md)]
130-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
131-
132-
# [PHP](#tab/php)
133-
[!INCLUDE [sample-code](../includes/snippets/php/update-provisioningpolicy-php-snippets.md)]
134-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
135-
136-
# [PowerShell](#tab/powershell)
137-
[!INCLUDE [sample-code](../includes/snippets/powershell/update-provisioningpolicy-powershell-snippets.md)]
138-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
139-
140-
# [Python](#tab/python)
141-
[!INCLUDE [sample-code](../includes/snippets/python/update-provisioningpolicy-python-snippets.md)]
142-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
143-
144-
---
145-
146117
### Response
147118

148119
The following example shows the response.
149120

150121
<!-- {
151122
"blockType": "response",
152-
"truncated": true,
123+
"truncated": true
153124
}
154125
-->
155126
``` http

0 commit comments

Comments
 (0)