Skip to content

Latest commit

 

History

History
165 lines (128 loc) · 5.56 KB

File metadata and controls

165 lines (128 loc) · 5.56 KB
title List provisioningPolicies
description List the properties and relationships of all Cloud PC provisioning policies.
author AshleyYangSZ
ms.localizationpriority medium
ms.subservice cloud-pc
doc_type apiPageType
ms.date 08/19/2024

List provisioningPolicies

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

List properties and relationships of the cloudPcProvisioningPolicy objects.

[!INCLUDE national-cloud-support]

Permissions

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. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

GET /deviceManagement/virtualEndpoint/provisioningPolicies

Optional query parameters

This method supports $select, $filter, and $expand OData query parameters to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of cloudPcProvisioningPolicy objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/provisioningPolicies

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
    {
      "@odata.type": "#microsoft.graph.cloudPcProvisioningPolicy",
      "description": "Description value",
      "displayName": "Display Name value",
      "domainJoinConfigurations": [
        {
          "onPremisesConnectionId": "16ee6c71-fc10-438b-88ac-daa1ccafffff",
          "type": "hybridAzureADJoin"
        },
        {
          "onPremisesConnectionId": "26e16c71-f210-438b-88ac-d481ccafffff",
          "type": "hybridAzureADJoin"
        }
      ],
      "microsoftManagedDesktop": {
          "managedType": "starterManaged",
          "profile": null
      },
      "autopatch": {
          "autopatchGroupId": "91197a0b-3a74-408d-ba88-bce3fdc4e5eb"
      },
      "autopilotConfiguration": {
          "devicePreparationProfileId": "59e5d3d2-ec68-4bfe-9693-27975b318990",
          "applicationTimeoutInMinutes": 60,
          "onFailureDeviceAccessDenied": false
      },
      "enableSingleSignOn": true,
      "id": "1d164206-bf41-4fd2-8424-a3192d39ffff",
      "imageDisplayName": "Image Display Name value",
      "imageId": "Image ID value",
      "imageType":"custom",
      "windowsSetting": {
          "locale": "en-US"
      },
      "managedBy": "windows365",
      "provisioningType": "dedicated",
      "userSettingsPersistenceConfiguration": {
          "userSettingsPersistenceEnabled": true,
          "userSettingsPersistenceStorageSizeCategory": "fourGB"
      }
    }
  ]
}