Updates from: 04/29/2022 01:07:40
Service Microsoft Docs article Related commit history on GitHub Change details
v1.0 Cloudpc Getcloudpclaunchinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/cloudpc-getcloudpclaunchinfo.md
+
+ Title: "cloudPC: getCloudPcLaunchInfo"
+description: "Get the Cloud PC launch information for the signed-in user."
+
+ms.localizationpriority: medium
++
+# cloudPC: getCloudPcLaunchInfo
+Namespace: microsoft.graph
++
+Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for the signed-in user.
+
+## Permissions
+One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+
+|Permission type|Permissions (from least to most privileged)|
+|:|:|
+|Delegated (work or school account)|CloudPC.Read.All, CloudPC.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Not supported.|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /me/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo
+```
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+
+If successful, this function returns a `200 OK` response code and a [cloudPcLaunchInfo](../resources/cloudpclaunchinfo.md) object in the response body.
+
+## Examples
+
+### Request
+<!-- {
+ "blockType": "request",
+ "name": "cloudpcthis.getcloudpclaunchinfo"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/me/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo
+```
++
+### Response
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "microsoft.graph.cloudPcLaunchInfo"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.cloudPcLaunchInfo",
+ "cloudPcId": "a20d556d-85f7-88cc-bb9c-08d9902bb7bb",
+ "cloudPcLaunchUrl": "https://rdweb-r0.wvdselfhost.microsoft.com/api/arm/weblaunch/tenants/662009bc-7732-4f6f-8726-25883518b33e/resources/662009bc-7732-4f6f-8726-25883518b33e"
+}
+```
+
v1.0 User List Cloudpcs https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/api/user-list-cloudpcs.md
+
+ Title: "List cloudPCs for user"
+description: "List the cloudPC devices that are attributed to the signed-in user."
+
+ms.localizationpriority: medium
++
+# List cloudPCs for user
+Namespace: microsoft.graph
++
+List the [cloudPC](../resources/cloudpc.md) devices that are attributed to the signed-in user.
+
+>[!NOTE]
+>This operation returns only the following properties: **id**, **displayName**, **imageDisplayName**, **servicePlanId**, **servicePlanName**, **servicePlanType**, **status**, **lastModifiedDateTime**, **aadDeviceId**, **statusDetails**, **gracePeriodEndDateTime**.
+
+## Permissions
+One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Permissions](/graph/permissions-reference).
+
+|Permission type|Permissions (from least to most privileged)|
+|:|:|
+|Delegated (work or school account)|CloudPC.Read.All, CloudPC.ReadWrite.All|
+|Delegated (personal Microsoft account)|Not supported.|
+|Application|Not supported.|
+
+## HTTP request
+
+<!-- {
+ "blockType": "ignored"
+}
+-->
+``` http
+GET /me/cloudPCs
+```
+
+## Optional query parameters
+This method supports the `$select` OData query parameter to help customize the response. For general information, see [OData query parameters](/graph/query-parameters).
+
+## Request headers
+|Name|Description|
+|:|:|
+|Authorization|Bearer {token}. Required.|
+
+## Request body
+Do not supply a request body for this method.
+
+## Response
+
+If successful, this method returns a `200 OK` response code and a collection of [cloudPC](../resources/cloudpc.md) objects in the response body.
+
+## Examples
+
+### Request
+<!-- {
+ "blockType": "request",
+ "name": "list_cloudpc"
+}
+-->
+``` http
+GET https://graph.microsoft.com/beta/me/cloudPCs
+```
++
+### Response
+<!-- {
+ "blockType": "response",
+ "truncated": true,
+ "@odata.type": "Collection(microsoft.graph.cloudPC)"
+}
+-->
+``` http
+HTTP/1.1 200 OK
+Content-Type: application/json
+
+{
+ "value": [
+ {
+ "@odata.type": "#microsoft.graph.cloudPC",
+ "aadDeviceId": "f5ff445f-7488-40f8-8ab9-ee784a9c1f33",
+ "id": "662009bc-7732-4f6f-8726-25883518ffff",
+ "displayName": "Demo-1",
+ "imageDisplayName": "Windows-10 19h1-evd",
+ "servicePlanId": "dbb9148c-ff83-4a4c-8d7f-28752e93ffff",
+ "servicePlanName": "lite",
+ "servicePlanType": "enterprise",
+ "status": "provisioned",
+ "lastModifiedDateTime": "2020-11-03T10:29:57Z",
+ "statusDetails": null,
+ "gracePeriodEndDateTime": "2020-11-010T20:00:34Z"
+ }
+ ]
+}
+```
v1.0 Cloudpc https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpc.md
Represents a cloud-managed virtual desktop. This Cloud PC is also enrolled into
|[Troubleshoot](../api/cloudpc-troubleshoot.md)|None|Troubleshoot a specific [cloudPC](../resources/cloudpc.md) object. Use this API to check the health status of the Cloud PC and the session host.| |[Restore remote action](../api/manageddevice-restorecloudpc.md)|None|Restore a Cloud PC device to a previous state from a snapshot.| |[Bulk restore remote action](../api/manageddevice-bulkrestorecloudpc.md)|[cloudPcBulkRemoteActionResult](../resources/cloudpcbulkremoteactionresult.md)|Restore multiple Cloud PC devices with a single request that includes the IDs of Intune managed devices and a restore point date and time.|
+|[List for user](../api/user-list-cloudpcs.md)|[cloudPC](../resources/cloudpc.md) collection|List the [cloudPC](../resources/cloudpc.md) devices that are attributed to the signed-in user.|
+|[Get launch info for user](../api/cloudpc-getcloudpclaunchinfo.md)|[cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md)|Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for the signed-in user.|
## Properties
v1.0 Cloudpclaunchinfo https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/cloudpclaunchinfo.md
+
+ Title: "cloudPcLaunchInfo resource type"
+description: "Contains the information to connect a cloud PC."
+
+ms.localizationpriority: medium
++
+# cloudPcLaunchInfo resource type
+
+Namespace: microsoft.graph
++
+Contains the information to connect a [cloudPC](../resources/cloudpc.md).
+
+## Properties
+|Property|Type|Description|
+|:|:|:|
+|cloudPcId|String|The unique identifier of the Cloud PC.|
+|cloudPcLaunchUrl|String|The connect URL of the Cloud PC.|
+
+## Relationships
+None.
+
+## JSON representation
+The following is a JSON representation of the resource.
+<!-- {
+ "blockType": "resource",
+ "@odata.type": "microsoft.graph.cloudPcLaunchInfo"
+}
+-->
+``` json
+{
+ "@odata.type": "#microsoft.graph.cloudPcLaunchInfo",
+ "cloudPcId": "String",
+ "cloudPcLaunchUrl": "String"
+}
+```
+
v1.0 Service Root https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/service-root.md
- Title: "Service root"
-description: "2015-10-25 14:57:30 UTC -->"
-doc_type: conceptualPageType
---
-# Service root
-
-Namespace: microsoft.graph
--
-## Methods
---
-| Method | Return Type |Description|
-|:|:--|:-|
-|[Create device](../api/device-post-devices.md) |[device](device.md)| Create a new device by posting to the devices collection.|
-|[List device](../api/device-list.md) | [device](device.md) collection |Get device object collection. |
-|[Activate directoryRole](../api/directoryrole-post-directoryroles.md) | [directoryRole](directoryrole.md) |Activate a directory role. |
-|[List directoryRole](../api/directoryrole-list.md) | [directoryRole](directoryrole.md) collection |Get directoryRole object collection. |
-|[List directoryRoleTemplate](../api/directoryroletemplate-list.md) | [directoryRoleTemplate](directoryroletemplate.md) collection |Get directoryRoleTemplate object collection. |
-|[List drive](../api/drive-list.md) | [drive](drive.md) collection |Get drive object collection. |
-|[Get drive](../api/drive-get.md) | [drive](drive.md) |Get drive object properties. |
-|[Create group](../api/group-post-groups.md) |[group](group.md)| Create a new group by posting to the groups collection.|
-|[List group](../api/group-list.md) | [group](group.md) collection |Get group object collection. |
-|[List organization](../api/organization-list.md) | [organization](organization.md) collection |Get organization object collection. |
-|[List subscribedSku](../api/subscribedsku-list.md) | [subscribedSku](subscribedsku.md) collection |Get subscribedSku object collection. |
-|[Create user](../api/user-post-users.md) |[user](user.md)| Create a new user by posting to the users collection.|
-|[List user](../api/user-list.md) | [user](user.md) collection |Get user object collection. |
-|[Create connectorGroup](../api/connectorgroup-post-connectorgroups.md) |[connectorGroup](connectorgroup.md)|Create a new connectorGroup by posting to the connectorGroups collection.|
-|[List connectorGroup](../api/connectorgroup-list.md) | [connectorGroup](connectorgroup.md) collection |Get connectorGroup object collection. |
-|[List connector](../api/connector-list.md) | [connector](connector.md) collection |Get connector object collection. |
-
-<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
-2015-10-25 14:57:30 UTC -->
-<!--
-{
- "type": "#page.annotation",
- "description": "Service root",
- "keywords": "",
- "section": "documentation",
- "tocPath": "",
- "suppressions": []
-}
>--
v1.0 User https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/beta/resources/user.md
This resource supports:
| **Outlook tasks** (deprecated)||| | [Create outlookTask](../api/outlookuser-post-tasks.md) (deprecated) | [outlookTask](outlooktask.md) | Create an Outlook task in the default task group (My Tasks) and default task folder (Tasks) in the user's mailbox. | | [List tasks](../api/outlookuser-list-tasks.md) (deprecated) | [outlookTask](outlooktask.md) collection | Get all the Outlook tasks in the user's mailbox. |
+| **Cloud PC**|||
+|[List cloudPCs](../api/user-list-cloudpcs.md)|[cloudPC](../resources/cloudpc.md) collection|List the [cloudPC](../resources/cloudpc.md) devices that are attributed to the signed-in user.|
+|[Get launch info](../api/cloudpc-getcloudpclaunchinfo.md)|[cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md)|Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for the signed-in user.|
## Properties
v1.0 Service Root https://github.com/microsoftgraph/microsoft-graph-docs/commits/main/api-reference/v1.0/resources/service-root.md
- Title: "Service root"
-description: "2015-10-25 14:57:30 UTC -->"
-
-doc_type: conceptualPageType
--
-# Service root
-
-Namespace: microsoft.graph
--
-## Methods
---
-| Method | Return Type |Description|
-|:|:--|:-|
-|[Create device](../api/device-post-devices.md) |[device](device.md)| Create a new device by posting to the devices collection.|
-|[List device](../api/device-list.md) | [device](device.md) collection |Get device object collection. |
-|[Activate directoryRole](../api/directoryrole-post-directoryroles.md) | [directoryRole](directoryrole.md) |Activate a directory role. |
-|[List directoryRole](../api/directoryrole-list.md) | [directoryRole](directoryrole.md) collection |Get directoryRole object collection. |
-|[List directoryRoleTemplate](../api/directoryroletemplate-list.md) | [directoryRoleTemplate](directoryroletemplate.md) collection |Get directoryRoleTemplate object collection. |
-|[List drive](../api/drive-list.md) | [drive](drive.md) collection |Get drive object collection. |
-|[Get drive](../api/drive-get.md) | [drive](drive.md) |Get drive object properties. |
-|[Create group](../api/group-post-groups.md) |[group](group.md)| Create a new group by posting to the groups collection.|
-|[List group](../api/group-list.md) | [group](group.md) collection |Get group object collection. |
-|[List organization](../api/organization-get.md) | [organization](organization.md) collection |Get organization object collection. |
-|[List subscribedSku](../api/subscribedsku-list.md) | [subscribedSku](subscribedsku.md) collection |Get subscribedSku object collection. |
-|[Create user](../api/user-post-users.md) |[user](user.md)| Create a new user by posting to the users collection.|
-|[List user](../api/user-list.md) | [user](user.md) collection |Get user object collection. |
-
-<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
-2015-10-25 14:57:30 UTC -->
-<!-- {
- "type": "#page.annotation",
- "description": "Service root",
- "keywords": "",
- "section": "documentation",
- "tocPath": ""
-}-->
-