From 35a091064482a730de68a8f4b145f16436984cdc Mon Sep 17 00:00:00 2001 From: Rider Woo Date: Fri, 17 Jul 2026 00:09:52 +0800 Subject: [PATCH 1/5] Add cloudPC organization action API and related resources (#28235) * Add cloudPC organization action API and related resources Rebased onto main; squashes prior branch history into a single commit representing the net documentation changes for the Cloud PC organization action API and related resources. * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Add function-invocation form to retrieveOrganizationActionDetail HTTP request * Keep only the parameterized HTTP request form for retrieveOrganizationActionDetail * Clarify actionType is required and remove default claim * Reorder CloudManagedDesktop changelog record entries * Fix invalid CloudManagedDesktop changelog enum links * Align Cloud PC organization action examples and parameter docs * Fix CloudManagedDesktop changelog enum link targets * Fix markdown spacing before Request body heading * Update reference TOC * minor fix * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Update * Update reference TOC * Fix * Changelog fix * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * fix. * fix * Fix * Fix --------- Co-authored-by: binbwu Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Microsoft Graph DevX Tooling Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> --- .../beta/api/cloudpc-organizationaction.md | 102 ++++++++++++++++++ ...loudpc-retrieveorganizationactiondetail.md | 97 +++++++++++++++++ .../cloudpc-organizationaction-permissions.md | 12 +++ ...eveorganizationactiondetail-permissions.md | 12 +++ api-reference/beta/resources/cloudpc.md | 2 + .../cloudpcorganizationactiondetail.md | 62 +++++++++++ .../toc/device-and-app-management/toc.yml | 6 ++ api-reference/beta/toc/toc.mapping.json | 1 + changelog/Microsoft.CloudManagedDesktop.json | 56 +++++++++- concepts/whats-new-overview.md | 5 + 10 files changed, 352 insertions(+), 3 deletions(-) create mode 100644 api-reference/beta/api/cloudpc-organizationaction.md create mode 100644 api-reference/beta/api/cloudpc-retrieveorganizationactiondetail.md create mode 100644 api-reference/beta/includes/permissions/cloudpc-organizationaction-permissions.md create mode 100644 api-reference/beta/includes/permissions/cloudpc-retrieveorganizationactiondetail-permissions.md create mode 100644 api-reference/beta/resources/cloudpcorganizationactiondetail.md diff --git a/api-reference/beta/api/cloudpc-organizationaction.md b/api-reference/beta/api/cloudpc-organizationaction.md new file mode 100644 index 00000000000..654f9845cbf --- /dev/null +++ b/api-reference/beta/api/cloudpc-organizationaction.md @@ -0,0 +1,102 @@ +--- +title: "cloudPC: organizationAction" +description: "Trigger a Cloud PC organization action." +author: "sqbing" +ms.localizationpriority: medium +ms.subservice: "cloud-pc" +doc_type: apiPageType +ms.date: 02/12/2026 +--- + +# cloudPC: organizationAction + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Trigger a Cloud PC organization action. + + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/cloudpc-organizationaction-permissions.md)] + +## HTTP request + + + +To trigger a Cloud PC organization action using delegated permission: + +```http +POST /deviceManagement/virtualEndpoint/organizationAction +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| +|Content-Type|application/json. Required.| + +## Request body + +In the request body, supply a JSON representation of the parameters. + +The following table shows the parameter that you can use with this action. + +|Parameter|Type|Description| +|:---|:---|:---| +|actionType|[cloudPcOrganizationActionType](../resources/cloudpcorganizationactiondetail.md#cloudpcorganizationactiontype-values)|The action type. Possible values are `activate`, `deactivate`, and `unknownFutureValue`. Required.| + +## Response + +If successful, this method returns a `200 OK` response code and a [cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md) object in the response body. + +## Example + +### Request + +The following example shows a request. + + + +```http +POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/organizationAction +Content-Type: application/json + +{ + "actionType": "activate" +} +``` + +### Response + +The following example shows the response. + + + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.cloudPcOrganizationActionDetail", + "actionType": "activate", + "status": "inProgress", + "errorDescription": null +} +``` diff --git a/api-reference/beta/api/cloudpc-retrieveorganizationactiondetail.md b/api-reference/beta/api/cloudpc-retrieveorganizationactiondetail.md new file mode 100644 index 00000000000..7b4c0417176 --- /dev/null +++ b/api-reference/beta/api/cloudpc-retrieveorganizationactiondetail.md @@ -0,0 +1,97 @@ +--- +title: "cloudPC: retrieveOrganizationActionDetail" +description: "Retrieve a Cloud PC organization action detail." +author: "sqbing" +ms.localizationpriority: medium +ms.subservice: "cloud-pc" +doc_type: apiPageType +ms.date: 02/12/2026 +--- + +# cloudPC: retrieveOrganizationActionDetail + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Retrieve the details of a [cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md). + + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/cloudpc-retrieveorganizationactiondetail-permissions.md)] + +## HTTP request + + + +To retrieve a Cloud PC organization action detail using delegated permission: + +```http +GET /deviceManagement/virtualEndpoint/retrieveOrganizationActionDetail(actionType='{actionType}') +``` + +## Function parameters + +|Parameter|Type|Description| +|:---|:---|:---| +|actionType|[cloudPcOrganizationActionType](../resources/cloudpcorganizationactiondetail.md#cloudpcorganizationactiontype-values)|The action type. Possible values are `activate`, `deactivate`, and `unknownFutureValue`. Required.| + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## Request body + +Don't supply a request body for this method. + +## Response + +If successful, this function returns a `200 OK` response code and a [cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md) object in the response body. + +## Example + +### Request + +The following example shows a request. + + + +```http +GET https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/retrieveOrganizationActionDetail(actionType='activate') +``` + + +### Response + +The following example shows the response. + + + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.cloudPcOrganizationActionDetail", + "actionType": "activate", + "status": "inProgress", + "errorDescription": null +} +``` diff --git a/api-reference/beta/includes/permissions/cloudpc-organizationaction-permissions.md b/api-reference/beta/includes/permissions/cloudpc-organizationaction-permissions.md new file mode 100644 index 00000000000..4bde72277aa --- /dev/null +++ b/api-reference/beta/includes/permissions/cloudpc-organizationaction-permissions.md @@ -0,0 +1,12 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|CloudPC.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|Not supported.|Not supported.| + diff --git a/api-reference/beta/includes/permissions/cloudpc-retrieveorganizationactiondetail-permissions.md b/api-reference/beta/includes/permissions/cloudpc-retrieveorganizationactiondetail-permissions.md new file mode 100644 index 00000000000..4bde72277aa --- /dev/null +++ b/api-reference/beta/includes/permissions/cloudpc-retrieveorganizationactiondetail-permissions.md @@ -0,0 +1,12 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|CloudPC.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|Not supported.|Not supported.| + diff --git a/api-reference/beta/resources/cloudpc.md b/api-reference/beta/resources/cloudpc.md index 6b0efa88db4..81a58c1f358 100644 --- a/api-reference/beta/resources/cloudpc.md +++ b/api-reference/beta/resources/cloudpc.md @@ -50,6 +50,8 @@ Represents a cloud-managed virtual desktop. This Cloud PC is also enrolled in In |[Get frontline access state](../api/cloudpc-getfrontlinecloudpcaccessstate.md)|[frontlineCloudPcAccessState](#frontlinecloudpcaccessstate-values)|Get the access state of the frontline Cloud PC. The possible values are: `unassigned`, `noLicensesAvailable`, `activationFailed`, `active`, `activating`, `standbyMode`, `unknownFutureValue`. The `noLicensesAvailable` member is deprecated and stopped returning on September 30, 2024.| |[Get launch info (deprecated)](../api/cloudpc-getcloudpclaunchinfo.md)|[cloudPcLaunchInfo](../resources/cloudpclaunchinfo.md)|Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for a specific Cloud PC that belongs to the current signed-in user. This API is deprecated and will stop returning data on October 30, 2026. Going forward, use the [Retrieve launch detail](../api/cloudpc-retrievecloudpclaunchdetail.md) API.| |[Retrieve frontline Cloud PC detail](../api/cloudpc-retrievefrontlinecloudpcdetail.md)|[frontlineCloudPcDetail](../resources/frontlinecloudpcdetail.md)|Get the [frontlineCloudPcDetail](../resources/frontlinecloudpcdetail.md) of a frontline [Cloud PC](../resources/cloudpc.md).| +|[Trigger a Cloud PC organization action](../api/cloudpc-organizationaction.md)|[cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md)|Trigger a Cloud PC organization action.| +|[Retrieve a Cloud PC organization action detail](../api/cloudpc-retrieveorganizationactiondetail.md)|[cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md)|Retrieve the details of a [cloudPcOrganizationActionDetail](../resources/cloudpcorganizationactiondetail.md).| ## Properties diff --git a/api-reference/beta/resources/cloudpcorganizationactiondetail.md b/api-reference/beta/resources/cloudpcorganizationactiondetail.md new file mode 100644 index 00000000000..eaaf788cc99 --- /dev/null +++ b/api-reference/beta/resources/cloudpcorganizationactiondetail.md @@ -0,0 +1,62 @@ +--- +title: "cloudPcOrganizationActionDetail resource type" +description: "Represents the result of a Cloud PC organization action." +author: "sqbing" +ms.date: 03/31/2026 +ms.localizationpriority: medium +ms.subservice: "cloud-pc" +doc_type: resourcePageType +--- + +# cloudPcOrganizationActionDetail resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Represents the result of a Cloud PC organization action used to activate or deactivate an organization for Windows 365 for Agents. + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|actionType|[cloudPcOrganizationActionType](#cloudpcorganizationactiontype-values)|The Cloud PC organization action type. Possible values: `activate`, `deactivate`, and `unknownFutureValue`.| +|errorDescription|String|More user-friendly error details. For example, `Activation failed due to invalid billing plan`.| +|status|[cloudPcOrganizationActionStatus](#cloudpcorganizationactionstatus-values)|The Cloud PC organization action status. Possible values: `inProgress`, `succeeded`, `failed`, and `unknownFutureValue`. Default is `inProgress`.| + +### cloudPcOrganizationActionType values + +|Member|Description| +|:---|:---| +|activate|To activate the organization for Windows 365 for Agents.| +|deactivate|To deactivate the organization for Windows 365 for Agents.| +|unknownFutureValue|Evolvable enumeration sentinel value. Don't use.| + +### cloudPcOrganizationActionStatus values + +|Member|Description| +|:---|:---| +|inProgress|The Cloud PC organization action is in progress.| +|succeeded|The Cloud PC organization action succeeded.| +|failed|The Cloud PC organization action failed.| +|unknownFutureValue|Evolvable enumeration sentinel value. Don't use.| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.cloudPcOrganizationActionDetail", + "actionType": "String", + "errorDescription": "String", + "status": "String" +} +``` + diff --git a/api-reference/beta/toc/device-and-app-management/toc.yml b/api-reference/beta/toc/device-and-app-management/toc.yml index 4311b805cfb..43eb5a25257 100644 --- a/api-reference/beta/toc/device-and-app-management/toc.yml +++ b/api-reference/beta/toc/device-and-app-management/toc.yml @@ -220,6 +220,10 @@ items: href: ../../api/cloudpc-getcloudpclaunchinfo.md - name: Retrieve frontline Cloud PC detail href: ../../api/cloudpc-retrievefrontlinecloudpcdetail.md + - name: Trigger a Cloud PC organization action + href: ../../api/cloudpc-organizationaction.md + - name: Retrieve a Cloud PC organization action detail + href: ../../api/cloudpc-retrieveorganizationactiondetail.md - name: Cloud PC agent pool href: ../../resources/cloudpcagentpool.md - name: Cloud PC agent pool user assignment @@ -366,6 +370,8 @@ items: href: ../../api/cloudpconpremisesconnection-runhealthcheck.md - name: Update Active Directory domain password href: ../../api/cloudpconpremisesconnection-updateaddomainpassword.md + - name: Cloud PC organization action detail + href: ../../resources/cloudpcorganizationactiondetail.md - name: Cloud PC organization settings items: - name: Cloud PC organization settings diff --git a/api-reference/beta/toc/toc.mapping.json b/api-reference/beta/toc/toc.mapping.json index 0cdfd30f1db..15fc0fbb202 100644 --- a/api-reference/beta/toc/toc.mapping.json +++ b/api-reference/beta/toc/toc.mapping.json @@ -599,6 +599,7 @@ "cloudPcGalleryImage", "cloudPcManagedLicense", "cloudPcOnPremisesConnection", + "cloudPcOrganizationActionDetail", "cloudPcOrganizationSettings", "cloudPcPool", "cloudPcPoolAssignment", diff --git a/changelog/Microsoft.CloudManagedDesktop.json b/changelog/Microsoft.CloudManagedDesktop.json index a2c47063f12..577cd99de40 100644 --- a/changelog/Microsoft.CloudManagedDesktop.json +++ b/changelog/Microsoft.CloudManagedDesktop.json @@ -1,5 +1,55 @@ { "changelog": [ + { + "ChangeList": [ + { + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "ApiChange": "Enumeration", + "ChangedApiName": "cloudPcOrganizationActionStatus", + "ChangeType": "Addition", + "Description": "Added the [cloudPcOrganizationActionStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) enumeration type.", + "Target": "cloudPcOrganizationActionStatus" + }, + { + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "ApiChange": "Enumeration", + "ChangedApiName": "cloudPcOrganizationActionType", + "ChangeType": "Addition", + "Description": "Added the [cloudPcOrganizationActionType](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) enumeration type.", + "Target": "cloudPcOrganizationActionType" + }, + { + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "ApiChange": "Resource", + "ChangedApiName": "cloudPcOrganizationActionDetail", + "ChangeType": "Addition", + "Description": "Added the [cloudPcOrganizationActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) resource.", + "Target": "cloudPcOrganizationActionDetail" + }, + { + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "ApiChange": "Method", + "ChangedApiName": "organizationAction", + "ChangeType": "Addition", + "Description": "Added the [organizationAction](https://learn.microsoft.com/en-us/graph/api/cloudpc-organizationaction?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Target": "cloudPC" + }, + { + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "ApiChange": "Method", + "ChangedApiName": "retrieveOrganizationActionDetail", + "ChangeType": "Addition", + "Description": "Added the [retrieveOrganizationActionDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrieveorganizationactiondetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Target": "cloudPC" + } + ], + "Id": "9b2be02b-bce1-432d-be58-7dccb317e229", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2026-03-05T13:17:57.0099938Z", + "WorkloadArea": "Device and app management", + "SubArea": "Cloud PC" + }, { "ChangeList": [ { @@ -5751,7 +5801,7 @@ "ApiChange": "Member", "ChangedApiName": "remoteConnectionQualityReports", "ChangeType": "Addition", - "Description": "Added the ´remoteConnectionQualityReports´ member to the **cloudPcReportName** enumeration type.", + "Description": "Added the `remoteConnectionQualityReports` member to the **cloudPcReportName** enumeration type.", "Target": "cloudPcReportName" }, { @@ -5971,7 +6021,7 @@ "ApiChange": "Enum type", "ChangedApiName": "cloudPcReportName", "ChangeType": "Change", - "Description": "Added the ´noLicenseAvailableConnectivityFailureReport´ member to the **cloudPcReportName** enumeration type.", + "Description": "Added the `noLicenseAvailableConnectivityFailureReport` member to the **cloudPcReportName** enumeration type.", "Target": "cloudPcReportName" } ], @@ -6689,7 +6739,7 @@ "ApiChange": "Enum type", "ChangedApiName": "cloudPcReportName", "ChangeType": "Change", - "Description": "Added the ´sharedUseLicenseUsageReport´ and ´sharedUseLicenseUsageRealTimeReport´ members to the **cloudPcReportName** enumeration type.", + "Description": "Added the `sharedUseLicenseUsageReport` and `sharedUseLicenseUsageRealTimeReport` members to the **cloudPcReportName** enumeration type.", "Target": "cloudPcReportName" }, { diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index b46644c0041..26882958e23 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -37,6 +37,11 @@ For details about previous updates to Microsoft Graph, see [Microsoft Graph what Added the **vapidPublicKey**, **webPushEncryptionP256dhPublicKey**, and **webPushEncryptionSecret** properties to the [subscription](/graph/api/resources/subscription?view=graph-rest-beta&preserve-view=true) resource to support encrypted change notifications delivered to browser-native Web Push endpoints (Apple, Mozilla, FCM). Browser-based applications can now register with Microsoft Graph to receive change notifications through the W3C Push API channel without operating a public webhook. See [RFC 8291](https://www.rfc-editor.org/rfc/rfc8291.html) and [RFC 8292](https://www.rfc-editor.org/rfc/rfc8292.html) for the underlying encryption and authentication protocols. +### Device and app management | Cloud PC + +- Added support for activating or deactivating an organization for Windows 365 for Agents. Use the [cloudPC: organizationAction](/graph/api/cloudpc-organizationaction?view=graph-rest-beta&preserve-view=true) action to trigger the operation. +- Use the [cloudPC: retrieveOrganizationActionDetail](/graph/api/cloudpc-retrieveorganizationactiondetail?view=graph-rest-beta&preserve-view=true) method to retrieve the status and details of an organization action. + ### Files - Updated the [getSharePointApiUsage](/graph/api/reportroot-getsharepointapiusage?view=graph-rest-beta&preserve-view=true) method to support the optional `reportType` parameter for retrieving throttling metrics. Use `reportType='throttlingReport'` to get throttled request counts via the **throttledRequests** property on the [sharePointApiUsageDataPoint](/graph/api/resources/sharepointapiusagedatapoint?view=graph-rest-beta&preserve-view=true) resource, or use `reportType='egressReport'` (default) to get egress usage via the **usageMB** property. From c8d3563e28a4982520c66e5f5e8f3299c8583cbc Mon Sep 17 00:00:00 2001 From: "snippet-gen-pull-automation[bot]" <95501462+snippet-gen-pull-automation[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 10:11:46 -0600 Subject: [PATCH 2/5] Update reference TOC (#29300) Co-authored-by: Microsoft Graph DevX Tooling --- api-reference/beta/toc/security/toc.yml | 36 +++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/api-reference/beta/toc/security/toc.yml b/api-reference/beta/toc/security/toc.yml index 91837dc59ac..8957569b5cb 100644 --- a/api-reference/beta/toc/security/toc.yml +++ b/api-reference/beta/toc/security/toc.yml @@ -264,8 +264,6 @@ items: items: - name: Overview href: ../../resources/security-casemanagementroot.md - - name: Case management root - href: ../../resources/security-casemanagementroot.md - name: Case management entity href: ../../resources/security-casemanagement-casemanagemententity.md - name: Case @@ -304,6 +302,40 @@ items: href: ../../resources/security-casemanagement-comment.md - name: Audit log href: ../../resources/security-casemanagement-auditlog.md + - name: Activity resource details + href: ../../resources/security-casemanagement-activityresourcedetails.md + - name: Modified property + href: ../../resources/security-casemanagement-modifiedproperty.md + - name: Value property + href: ../../resources/security-casemanagement-valueproperty.md + - name: String value property + href: ../../resources/security-casemanagement-stringvalueproperty.md + - name: Boolean value property + href: ../../resources/security-casemanagement-booleanvalueproperty.md + - name: Alert counts + href: ../../resources/security-casemanagement-alertcounts.md + - name: Alert status counts + href: ../../resources/security-casemanagement-alertstatuscounts.md + - name: Incident severity counts + href: ../../resources/security-casemanagement-incidentseveritycounts.md + - name: Impacted assets counts + href: ../../resources/security-casemanagement-impactedassetscounts.md + - name: Investigation + href: ../../resources/security-casemanagement-investigation.md + - name: Custom field values + href: ../../resources/security-casemanagement-customfieldvalues.md + - name: Custom field value + href: ../../resources/security-casemanagement-customfieldvalue.md + - name: Custom field string value + href: ../../resources/security-casemanagement-customfieldstringvalue.md + - name: Custom field number value + href: ../../resources/security-casemanagement-customfieldnumbervalue.md + - name: Custom field date time value + href: ../../resources/security-casemanagement-customfielddatetimevalue.md + - name: Custom field options value + href: ../../resources/security-casemanagement-customfieldoptionsvalue.md + - name: Attachment origin + href: ../../resources/security-casemanagement-attachmentorigin.md - name: Attachment items: - name: Attachment From bf6cd50de8f2e6b7b0d270b1dd64df71e566687f Mon Sep 17 00:00:00 2001 From: "Jackson Woods (MSFT)" Date: Thu, 16 Jul 2026 09:13:13 -0700 Subject: [PATCH 3/5] SponsorOf api documentation (#29273) * SponsorOf api documentation * Apply suggestions from code review Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Update reference TOC * Fix sponsorOf API documentation issues - Remove national-cloud-support include from v1.0 user-list-sponsorof.md (GA requirement) - Add markdownlint-disable MD024 comment to both beta and v1.0 files - Fix table column alignment in Request headers tables for both files * Fix table cell spacing for aligned column style * Replace NavigationPropertyBinding with Method entries in changelog Changed ApiChange type from 'NavigationPropertyBinding' to 'Method' for the List sponsorOf API operation. This provides clearer, more customer-friendly changelog entries that describe the actual API method being added rather than technical OData binding details. --------- Co-authored-by: Jackson Woods Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Microsoft Graph DevX Tooling --- api-reference/beta/api/user-list-sponsorof.md | 148 ++++++++++++++++++ .../user-list-sponsorof-permissions.md | 12 ++ api-reference/beta/resources/user.md | 2 + api-reference/beta/toc/users/toc.yml | 2 + api-reference/v1.0/api/user-list-sponsorof.md | 146 +++++++++++++++++ .../user-list-sponsorof-permissions.md | 12 ++ api-reference/v1.0/resources/user.md | 2 + api-reference/v1.0/toc/users/toc.yml | 2 + changelog/Microsoft.DirectoryServices.json | 52 ++++++ concepts/whats-new-overview.md | 8 + 10 files changed, 386 insertions(+) create mode 100644 api-reference/beta/api/user-list-sponsorof.md create mode 100644 api-reference/beta/includes/permissions/user-list-sponsorof-permissions.md create mode 100644 api-reference/v1.0/api/user-list-sponsorof.md create mode 100644 api-reference/v1.0/includes/permissions/user-list-sponsorof-permissions.md diff --git a/api-reference/beta/api/user-list-sponsorof.md b/api-reference/beta/api/user-list-sponsorof.md new file mode 100644 index 00000000000..7b9ee51fe57 --- /dev/null +++ b/api-reference/beta/api/user-list-sponsorof.md @@ -0,0 +1,148 @@ +--- +title: "List sponsorOf" +description: "Get the list of directory objects that a user sponsors." +author: "Jackson-Woods" +ms.localizationpriority: medium +ms.subservice: entra-users +doc_type: apiPageType +ms.date: 07/08/2026 +--- + +# List sponsorOf + + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Get the directory objects that a user sponsors. Sponsored objects can include users, agent users, agent blueprints, agent blueprint principals, and agent identities. Because a group can also be a sponsor, the response includes both objects the user directly sponsors and objects the user sponsors through group membership. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/user-list-sponsorof-permissions.md)] + +## HTTP request + + +```http +GET /me/sponsorOf +GET /users/{id | userPrincipalName}/sponsorOf +``` + +## Optional query parameters + +This method supports the `$filter`, `$count`, `$select`, `$expand`, `$top`, and `$skip` [OData query parameters](/graph/query-parameters) to help customize the response. + +## Request headers + +| Header | Value | +|:--------------|:------| +| Authorization | Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts). | + +## 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 [directoryObject](../resources/directoryobject.md) objects in the response body. + +## Examples + +### Example 1: List all entities that a user sponsors + +#### Request + +The following example shows a request. + +```http +GET https://graph.microsoft.com/beta/users/025e5e3e-e5b7-4eb4-ba1f-4e5b0579f1a2/sponsorOf +``` + +#### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#directoryObjects", + "value": [ + { + "@odata.type": "#microsoft.graph.user", + "id": "87d349ed-44d7-43e1-9a83-5f2406dee5bd", + "displayName": "Guest User 1", + "userPrincipalName": "guestuser1_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + }, + { + "@odata.type": "#microsoft.graph.user", + "id": "2fe96d23-5dc6-4f35-8222-0426a8c115c6", + "displayName": "Guest User 2", + "userPrincipalName": "guestuser2_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + } + ] +} +``` + +### Example 2: List all entities that a user sponsors, filtered by type + +#### Request + +The following example shows a request that filters the sponsored objects by user type. + +```http +GET https://graph.microsoft.com/beta/users/025e5e3e-e5b7-4eb4-ba1f-4e5b0579f1a2/sponsorOf?$filter=microsoft.graph.user/userType eq 'Guest' +ConsistencyLevel: eventual +``` + +#### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/beta/$metadata#directoryObjects", + "value": [ + { + "@odata.type": "#microsoft.graph.user", + "id": "87d349ed-44d7-43e1-9a83-5f2406dee5bd", + "displayName": "Guest User 1", + "userPrincipalName": "guestuser1_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + } + ] +} +``` diff --git a/api-reference/beta/includes/permissions/user-list-sponsorof-permissions.md b/api-reference/beta/includes/permissions/user-list-sponsorof-permissions.md new file mode 100644 index 00000000000..c3b27b97975 --- /dev/null +++ b/api-reference/beta/includes/permissions/user-list-sponsorof-permissions.md @@ -0,0 +1,12 @@ +--- +description: Automatically generated file. DO NOT MODIFY +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|User.Read|User.ReadWrite, User.Read.All, User.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|User.Read.All|User.ReadWrite.All| + diff --git a/api-reference/beta/resources/user.md b/api-reference/beta/resources/user.md index 62d9a216bad..d6a8031ca9c 100644 --- a/api-reference/beta/resources/user.md +++ b/api-reference/beta/resources/user.md @@ -175,6 +175,7 @@ The [agentUser](../resources/agentuser.md) resource inherits from this resource. | **Sponsors** ||| | [Assign](../api/user-post-sponsors.md) | None | Assign a user a sponsor. | | [List](../api/user-list-sponsors.md) | [directoryObject](../resources/directoryobject.md) collection | Get the users and groups who are this user's sponsors. | +| [List sponsorOf](../api/user-list-sponsorof.md) | [directoryObject](../resources/directoryobject.md) collection | Get the directory objects that this user sponsors. | | [Remove](../api/user-delete-sponsors.md) | None | Remove a user's sponsor. | | [List invited by](../api/user-list-invitedby.md)|[directoryObject](../resources/directoryobject.md)|Get the user or service principal that invited the specified user into the tenant.| | **Teamwork** ||| @@ -408,6 +409,7 @@ For example, Cameron is an administrator of a directory for an elementary school |security|[security](security.md) |Nullable.| |settings|[userSettings](usersettings.md) | Read-only. Nullable.| |solutions|[userSolutionRoot](../resources/usersolutionroot.md)| Represents a user's custom solution entity. Read-Only. Nullable.| +|sponsorOf|[directoryObject](../resources/directoryobject.md) collection|Directory objects that this user sponsors, such as guest users, agent users, agent blueprints, agent blueprint principals, and agent identities. If the user is a member of a group that's a sponsor, the objects sponsored by that group are also included. Read-only. Nullable. Supports `$filter`, `$count`, `$select`, `$expand`, `$top`, and `$skip`.| |sponsors|[directoryObject](../resources/directoryobject.md) collection|The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports `$expand`.| |teamwork|[userTeamwork](userteamwork.md)| A container for Microsoft Teams features available for the user. Read-only. Nullable.| |todo|[todo](todo.md)|Represents the To Do services available to a user. | diff --git a/api-reference/beta/toc/users/toc.yml b/api-reference/beta/toc/users/toc.yml index d2ad64e98ae..9d9175433d7 100644 --- a/api-reference/beta/toc/users/toc.yml +++ b/api-reference/beta/toc/users/toc.yml @@ -294,6 +294,8 @@ items: href: ../../api/user-post-sponsors.md - name: List href: ../../api/user-list-sponsors.md + - name: List sponsorOf + href: ../../api/user-list-sponsorof.md - name: Remove href: ../../api/user-delete-sponsors.md - name: List invited by diff --git a/api-reference/v1.0/api/user-list-sponsorof.md b/api-reference/v1.0/api/user-list-sponsorof.md new file mode 100644 index 00000000000..98e9b456c33 --- /dev/null +++ b/api-reference/v1.0/api/user-list-sponsorof.md @@ -0,0 +1,146 @@ +--- +title: "List sponsorOf" +description: "Get the list of directory objects that a user sponsors." +author: "Jackson-Woods" +ms.localizationpriority: medium +ms.subservice: entra-users +doc_type: apiPageType +ms.date: 07/07/2026 +--- + +# List sponsorOf + + + +Namespace: microsoft.graph + +Get the directory objects that a user sponsors. Sponsored objects can include users, agent users, agent blueprints, agent blueprint principals, and agent identities. Because a group can also be a sponsor, the response includes both objects the user directly sponsors and objects the user sponsors through group membership. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/user-list-sponsorof-permissions.md)] + +## HTTP request + + +```http +GET /me/sponsorOf +GET /users/{id | userPrincipalName}/sponsorOf +``` + +## Optional query parameters + +This method supports the `$filter`, `$count`, `$select`, `$expand`, `$top`, and `$skip` [OData query parameters](/graph/query-parameters) to help customize the response. + +## Request headers + +| Header | Value | +|:--------------|:------| +| Authorization | Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts). | + +## 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 [directoryObject](../resources/directoryobject.md) objects in the response body. + +## Examples + +### Example 1: List all entities that a user sponsors + +#### Request + +The following example shows a request. + +```http +GET https://graph.microsoft.com/v1.0/users/025e5e3e-e5b7-4eb4-ba1f-4e5b0579f1a2/sponsorOf +``` + +#### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects", + "value": [ + { + "@odata.type": "#microsoft.graph.user", + "id": "87d349ed-44d7-43e1-9a83-5f2406dee5bd", + "displayName": "Guest User 1", + "userPrincipalName": "guestuser1_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + }, + { + "@odata.type": "#microsoft.graph.user", + "id": "2fe96d23-5dc6-4f35-8222-0426a8c115c6", + "displayName": "Guest User 2", + "userPrincipalName": "guestuser2_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + } + ] +} +``` + +### Example 2: List all entities that a user sponsors, filtered by type + +#### Request + +The following example shows a request that filters the sponsored objects by user type. + +```http +GET https://graph.microsoft.com/v1.0/users/025e5e3e-e5b7-4eb4-ba1f-4e5b0579f1a2/sponsorOf?$filter=microsoft.graph.user/userType eq 'Guest' +ConsistencyLevel: eventual +``` + +#### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects", + "value": [ + { + "@odata.type": "#microsoft.graph.user", + "id": "87d349ed-44d7-43e1-9a83-5f2406dee5bd", + "displayName": "Guest User 1", + "userPrincipalName": "guestuser1_example.com#EXT#@contoso.onmicrosoft.com", + "userType": "Guest" + } + ] +} +``` diff --git a/api-reference/v1.0/includes/permissions/user-list-sponsorof-permissions.md b/api-reference/v1.0/includes/permissions/user-list-sponsorof-permissions.md new file mode 100644 index 00000000000..c3b27b97975 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/user-list-sponsorof-permissions.md @@ -0,0 +1,12 @@ +--- +description: Automatically generated file. DO NOT MODIFY +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|User.Read|User.ReadWrite, User.Read.All, User.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|User.Read.All|User.ReadWrite.All| + diff --git a/api-reference/v1.0/resources/user.md b/api-reference/v1.0/resources/user.md index 079420c35da..67237e5e7c5 100644 --- a/api-reference/v1.0/resources/user.md +++ b/api-reference/v1.0/resources/user.md @@ -137,6 +137,7 @@ This resource supports: | **Sponsors** | | | | [Assign](../api/user-post-sponsors.md) | None | Assign a user a sponsor. | | [List](../api/user-list-sponsors.md) | [directoryObject](../resources/directoryobject.md) collection | Get the users and groups who are this user's sponsors. | +| [List sponsorOf](../api/user-list-sponsorof.md) | [directoryObject](../resources/directoryobject.md) collection | Get the directory objects that this user sponsors. | | [Remove](../api/user-delete-sponsors.md) | None | Remove a user's sponsor. | | **Teamwork** | | | | [List associated teams](../api/associatedteaminfo-list.md) | [associatedTeamInfo](associatedteaminfo.md) collection | Get the list of teams in Microsoft Teams that a user is associated with. | @@ -340,6 +341,7 @@ For example: Cameron is the administrator of a directory for an elementary schoo |planner|[plannerUser](planneruser.md)| Entry-point to the Planner resource that might exist for a user. Read-only.| |registeredDevices|[directoryObject](directoryobject.md) collection|Devices that are registered for the user. Read-only. Nullable. Supports `$expand` and returns up to 100 objects.| |solutions|[userSolutionRoot](../resources/usersolutionroot.md)|The identifier that relates the user to the working time schedule triggers. Read-Only. Nullable| +|sponsorOf|[directoryObject](../resources/directoryobject.md) collection|Directory objects that this user sponsors, such as guest users, agent users, agent blueprints, agent blueprint principals, and agent identities. If the user is a member of a group that's a sponsor, the objects sponsored by that group are also included. Read-only. Nullable. Supports `$filter`, `$count`, `$select`, `$expand`, `$top`, and `$skip`.| |sponsors|[directoryObject](../resources/directoryobject.md) collection|The users and groups responsible for this guest's privileges in the tenant and keeping the guest's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports `$expand`.| |teamwork|[userTeamwork](userteamwork.md)| A container for Microsoft Teams features available for the user. Read-only. Nullable.| |todo|[todo](todo.md)|Represents the To Do services available to a user. | diff --git a/api-reference/v1.0/toc/users/toc.yml b/api-reference/v1.0/toc/users/toc.yml index 7d7d56d46d5..3ef466f7e5e 100644 --- a/api-reference/v1.0/toc/users/toc.yml +++ b/api-reference/v1.0/toc/users/toc.yml @@ -230,6 +230,8 @@ items: href: ../../api/user-post-sponsors.md - name: List href: ../../api/user-list-sponsors.md + - name: List sponsorOf + href: ../../api/user-list-sponsorof.md - name: Remove href: ../../api/user-delete-sponsors.md - name: Teamwork diff --git a/changelog/Microsoft.DirectoryServices.json b/changelog/Microsoft.DirectoryServices.json index 17aa2825794..f2372da4c78 100644 --- a/changelog/Microsoft.DirectoryServices.json +++ b/changelog/Microsoft.DirectoryServices.json @@ -1,5 +1,31 @@ { "changelog": [ + { + "ChangeList": [ + { + "Id": "f1a1c4e2-9b3d-4a7e-8c2f-1d4e6a8b9c0d", + "ApiChange": "Relationship", + "ChangedApiName": "sponsorOf", + "ChangeType": "Addition", + "Description": "Added the **sponsorOf** relationship to the [user](https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-beta) resource.", + "Target": "user" + }, + { + "Id": "f1a1c4e2-9b3d-4a7e-8c2f-1d4e6a8b9c0d", + "ApiChange": "Method", + "ChangedApiName": "List sponsorOf", + "ChangeType": "Addition", + "Description": "Added the [List sponsorOf](https://learn.microsoft.com/en-us/graph/api/user-list-sponsorof?view=graph-rest-beta) method to get the directory objects that a user sponsors.", + "Target": "user" + } + ], + "Id": "f1a1c4e2-9b3d-4a7e-8c2f-1d4e6a8b9c0d", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2026-07-15T20:15:00.0000000Z", + "WorkloadArea": "Identity and access", + "SubArea": "Directory management" + }, { "ChangeList": [ { @@ -34,6 +60,32 @@ "WorkloadArea": "Groups", "SubArea": "" }, + { + "ChangeList": [ + { + "Id": "a666b616-6143-440b-823d-066b037db8b0", + "ApiChange": "Relationship", + "ChangedApiName": "sponsorOf", + "ChangeType": "Addition", + "Description": "Added the **sponsorOf** relationship to the [user](https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0) resource.", + "Target": "user" + }, + { + "Id": "a666b616-6143-440b-823d-066b037db8b0", + "ApiChange": "Method", + "ChangedApiName": "List sponsorOf", + "ChangeType": "Addition", + "Description": "Added the [List sponsorOf](https://learn.microsoft.com/en-us/graph/api/user-list-sponsorof?view=graph-rest-1.0) method to get the directory objects that a user sponsors.", + "Target": "user" + } + ], + "Id": "a666b616-6143-440b-823d-066b037db8b0", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2026-07-15T23:29:49.3051729Z", + "WorkloadArea": "Identity and access", + "SubArea": "Directory management" + }, { "ChangeList": [ { diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index 26882958e23..979bd776be1 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -26,6 +26,10 @@ For details about previous updates to Microsoft Graph, see [Microsoft Graph what - Added support for assigning sensitivity labels to cloud security groups via the **assignedLabels** property on the [group](/graph/api/resources/group) resource. For more information, see [Sensitivity labels for Microsoft 365 groups and cloud security groups](/entra/identity/users/groups-sensitivity-labels). - Added the `Group.ManageProtection.All` delegated permission as the least privilege permission for updating the **assignedLabels** property on the [group](/graph/api/resources/group) resource. App-only scenarios aren't supported. +### Identity and access | Directory management + +- Added the **sponsorOf** relationship to the [user](/graph/api/resources/user) resource type to represent the directory objects that a user sponsors. + ### Users - Added the `User.Create` permission as the least privileged permission to [create a user](/graph/api/user-post-users). @@ -49,6 +53,10 @@ Added the **vapidPublicKey**, **webPushEncryptionP256dhPublicKey**, and **webPus - Added the **allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled** property to the [onPremisesDirectorySynchronizationFeature](/graph/api/resources/onpremisesdirectorysynchronizationfeature?view=graph-rest-beta&preserve-view=true) resource. - Added the [getByUser](/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta&preserve-view=true) method to the [fileStorageContainer](/graph/api/resources/filestoragecontainer?view=graph-rest-beta&preserve-view=true) resource to retrieve a list of file storage containers owned by a user, with optional filtering by role (owner or principalOwner). +### Identity and access | Directory management + +- Added the **sponsorOf** relationship to the [user](/graph/api/resources/user?view=graph-rest-beta&preserve-view=true) resource type to represent the directory objects that a user sponsors. + ### Identity and access | Governance - Added the [Get](/graph/api/accesspackagesubject-get) and [Update](/graph/api/accesspackagesubject-update) methods to the [accessPackageSubject](/graph/api/resources/accesspackagesubject) resource type to manage the subject lifecycle of external directory users in Microsoft Entra entitlement management. From 95ebe723474aeea666313fa616d6f3a0a9cdfdb8 Mon Sep 17 00:00:00 2001 From: Pratham Rathi <35015289+PrathamRathi@users.noreply.github.com> Date: Thu, 16 Jul 2026 10:55:14 -0700 Subject: [PATCH 4/5] promote byod api (#29195) * promote byod api * remove entitlement management from upload session paths * copilot review * apply changes * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * address review comments * address comments * address comments * Fix BLOCKER: Move BYOD Upload What's New entry to GA section * Remove incorrectly added May 2026 content from What's New May 2026 content is already archived in whats-new-earlier.md and should not be in the current What's New file. * Update identitygovernance-workflowversion.md * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> * Update reference TOC * Updated files. * Add customDataProvidedResource v1.0 doc stub and changelog entry Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Add accessPackageResource changelog entry to satisfy PR validation Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fixes. * Fixes. * Fixes. * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> --------- Co-authored-by: Pratham Rathi Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> Co-authored-by: Microsoft Graph DevX Tooling Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- ...sspackageresource-delete-uploadsessions.md | 78 ++++++++++ ...cesspackageresource-list-uploadsessions.md | 137 +++++++++++++++++ ...cesspackageresource-post-uploadsessions.md | 125 ++++++++++++++++ ...omdataprovidedresourceuploadsession-get.md | 104 +++++++++++++ ...ataprovidedresourceuploadsession-update.md | 120 +++++++++++++++ ...rovidedresourceuploadsession-uploadfile.md | 120 +++++++++++++++ ...ource-delete-uploadsessions-permissions.md | 13 ++ ...esource-list-uploadsessions-permissions.md | 13 ++ ...esource-post-uploadsessions-permissions.md | 13 ++ ...edresourceuploadsession-get-permissions.md | 13 ++ ...esourceuploadsession-update-permissions.md | 13 ++ ...rceuploadsession-uploadfile-permissions.md | 13 ++ .../v1.0/resources/accesspackageresource.md | 6 +- .../resources/customdataprovidedresource.md | 82 ++++++++++ ...ovidedresourceaccessreviewuploadsession.md | 67 +++++++++ .../customdataprovidedresourcefile.md | 54 +++++++ ...esourcepayloads-accessreviewcontextdata.md | 42 ++++++ ...rcepayloads-accessreviewcontextdatabase.md | 48 ++++++ ...sourcepayloads-applydecisioncontextdata.md | 42 ++++++ ...customdataprovidedresourcepayloads-data.md | 38 +++++ ...customdataprovidedresourceuploadsession.md | 78 ++++++++++ ...ataprovidedresourceuploadsessionrequest.md | 40 +++++ .../customdataprovidedresourceuploadstats.md | 40 +++++ api-reference/v1.0/resources/enums.md | 9 ++ .../v1.0/toc/identity-and-access/toc.yml | 30 ++++ api-reference/v1.0/toc/toc.mapping.json | 6 + ...Microsoft.IdentityGovernance.Insights.json | 140 ++++++++++++++++++ concepts/whats-new-overview.md | 19 +++ 28 files changed, 1502 insertions(+), 1 deletion(-) create mode 100644 api-reference/v1.0/api/accesspackageresource-delete-uploadsessions.md create mode 100644 api-reference/v1.0/api/accesspackageresource-list-uploadsessions.md create mode 100644 api-reference/v1.0/api/accesspackageresource-post-uploadsessions.md create mode 100644 api-reference/v1.0/api/customdataprovidedresourceuploadsession-get.md create mode 100644 api-reference/v1.0/api/customdataprovidedresourceuploadsession-update.md create mode 100644 api-reference/v1.0/api/customdataprovidedresourceuploadsession-uploadfile.md create mode 100644 api-reference/v1.0/includes/permissions/accesspackageresource-delete-uploadsessions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/accesspackageresource-list-uploadsessions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/customdataprovidedresource-post-uploadsessions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-update-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-uploadfile-permissions.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresource.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourceaccessreviewuploadsession.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourcefile.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourcepayloads-applydecisioncontextdata.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourcepayloads-data.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourceuploadsession.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourceuploadsessionrequest.md create mode 100644 api-reference/v1.0/resources/customdataprovidedresourceuploadstats.md diff --git a/api-reference/v1.0/api/accesspackageresource-delete-uploadsessions.md b/api-reference/v1.0/api/accesspackageresource-delete-uploadsessions.md new file mode 100644 index 00000000000..df8cd4773a0 --- /dev/null +++ b/api-reference/v1.0/api/accesspackageresource-delete-uploadsessions.md @@ -0,0 +1,78 @@ +--- +title: "Delete customDataProvidedResourceUploadSession" +description: "Delete a customDataProvidedResourceUploadSession object." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# Delete customDataProvidedResourceUploadSession + +Namespace: microsoft.graph + +Delete a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/accesspackageresource-delete-uploadsessions-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## Request body + +Don't supply a request body for this method. + +## Response + +If successful, this method returns a `204 No Content` response code. + +## Examples + +### Request + +The following example shows a request. + +``` http +DELETE https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +``` + +### Response + +The following example shows the response. + +``` http +HTTP/1.1 204 No Content +``` diff --git a/api-reference/v1.0/api/accesspackageresource-list-uploadsessions.md b/api-reference/v1.0/api/accesspackageresource-list-uploadsessions.md new file mode 100644 index 00000000000..b61ee87e082 --- /dev/null +++ b/api-reference/v1.0/api/accesspackageresource-list-uploadsessions.md @@ -0,0 +1,137 @@ +--- +title: "List customDataProvidedResourceUploadSession objects" +description: "Get a list of the customDataProvidedResourceUploadSession objects and their properties." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# List customDataProvidedResourceUploadSession objects + +Namespace: microsoft.graph + +Get a list of the [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) objects and their properties. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/accesspackageresource-list-uploadsessions-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions +``` + +## Optional query parameters + +This method supports the `$expand`, `$filter`, `$top`, `$skip`, `$orderby`, `$count` OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters). + +The following example queries for nested `$filter` and `$orderby` are supported for the **files** relationship of type [customDataProvidedResourceFile](../resources/customdataprovidedresourcefile.md). + +|Property|Operators|Example| +|:---|:---|:---| +|name|`eq`, `ne`|`$expand=files($filter=name eq 'building-a-access.csv')`| +|size|`eq`, `ne`, `gt`, `ge`, `lt`, `le`|`$expand=files($filter=size gt 1000000)`| +|uploadedDateTime|`eq`, `ne`, `gt`, `ge`, `lt`, `le`|`$expand=files($filter=uploadedDateTime ge 2026-01-01T00:00:00Z)`| + +The **name**, **size**, and **uploadedDateTime** properties also support `$orderby` as shown in the following examples. + +Get an upload session with files sorted by **uploadedDateTime**: + +```http +GET /identityGovernance/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions?$expand=files($orderby=uploadedDateTime desc) +``` + +Get an upload session with files filtered by **size** (larger than 1 MB): + +```http +GET /identityGovernance/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions?$expand=files($filter=size gt 1000000) +``` + +Get an upload session with files sorted by **name**: + +```http +GET /identityGovernance/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions?$expand=files($orderby=name asc) +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## 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 [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) objects in the response body. + +## Examples + +### Request + +The following example shows a request. + +``` http +GET https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions +``` + +### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identityGovernance/entitlementManagement/catalogs('3c9f2b1e-8a4d-4e7f-9d2a-6b3e1c7f5a9d')/resources('15eeb4df-bd15-4d8b-9679-e75791dbc1d9')/uploadSessions", + "value": [ + { + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "2fa3bc17-de50-4f48-91f0-dd4aede5c424", + "referenceId": "6ddffb12-922b-4825-93c3-9457dc2c1f81", + "status": "complete", + "isUploadDone": true, + "createdDateTime": "2026-03-24T21:34:56.220345Z", + "stats": { + "filesUploaded": 1, + "totalBytesUploaded": 10331 + }, + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "a89003b1-d457-4b8a-b060-42a3b6ad6c44", + "reviewInstanceId": "6ddffb12-922b-4825-93c3-9457dc2c1f81" + } + } + ] +} +``` diff --git a/api-reference/v1.0/api/accesspackageresource-post-uploadsessions.md b/api-reference/v1.0/api/accesspackageresource-post-uploadsessions.md new file mode 100644 index 00000000000..ad758db8265 --- /dev/null +++ b/api-reference/v1.0/api/accesspackageresource-post-uploadsessions.md @@ -0,0 +1,125 @@ +--- +title: "Create customDataProvidedResourceUploadSession" +description: "Create a new customDataProvidedResourceUploadSession object." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# Create customDataProvidedResourceUploadSession + +Namespace: microsoft.graph + +Create a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object. Only one upload session is allowed per reference instance (for example, access review instance) and [accessPackageResource](../resources/accesspackageresource.md) pair. Once you create an upload session, upload files, and complete the session, the data is processed and you cannot create another upload session for that same pair. If you encounter errors with files uploaded or need to start fresh, you can [delete the active upload session](../api/accesspackageresource-delete-uploadsessions.md) to create a new one. + +The following table lists the derived types of [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) that can be created. Specify the `@odata.type` in the request body to indicate the derived type. + +|Derived type|Description| +|:---|:---| +|[customDataProvidedResourceAccessReviewUploadSession](../resources/customdataprovidedresourceaccessreviewuploadsession.md)|An upload session for access review scenarios.| + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresource-post-uploadsessions-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| +|Content-Type|application/json. Required.| + +## Request body + +In the request body, supply a JSON representation of a [customDataProvidedResourceUploadSessionRequest](../resources/customdataprovidedresourceuploadsessionrequest.md) object, and set the `@odata.type` property to the [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) derived type that you want to create. For access review scenarios, set `@odata.type` to `#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession`. + +You can specify the following properties when creating a **customDataProvidedResourceUploadSession**. + +|Property|Type|Description| +|:---|:---|:---| +|data|[microsoft.graph.customDataProvidedResourcePayloads.data](../resources/customdataprovidedresourcepayloads-data.md)|Contains information about the context for which data is being uploaded. For access review scenarios, use [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData](../resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md). Required.| + +## Response + +If successful, this method returns a `201 Created` response code and a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object in the response body. + +## Examples + +### Request + +The following example shows a request. + + +``` http +POST https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions +Content-Type: application/json + +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "9e4b1c6f-2a3d-4f8e-9b7a-5c1e2d3f4a6b", + "reviewInstanceId": "15eeb4df-8a4d-4f8e-9b7a-6b3e1c7f5a9d" + } +} +``` + +### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +``` http +HTTP/1.1 201 Created +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identityGovernance/entitlementManagement/catalogs('3c9f2b1e-8a4d-4e7f-9d2a-6b3e1c7f5a9d')/resources('15eeb4df-bd15-4d8b-9679-e75791dbc1d9')/uploadSessions/$entity", + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "0b64df22-1a83-472c-9556-6c3dc41742b9", + "referenceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8", + "status": "active", + "isUploadDone": false, + "createdDateTime": "2026-04-01T18:24:07.148406Z", + "stats": { + "filesUploaded": 0, + "totalBytesUploaded": 0 + }, + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "f5744a40-bca0-4506-a286-a8afac513d1c", + "reviewInstanceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8" + }, + "files": [] +} +``` diff --git a/api-reference/v1.0/api/customdataprovidedresourceuploadsession-get.md b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-get.md new file mode 100644 index 00000000000..f4433054f85 --- /dev/null +++ b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-get.md @@ -0,0 +1,104 @@ +--- +title: "Get customDataProvidedResourceUploadSession" +description: "Read the properties and relationships of customDataProvidedResourceUploadSession object." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# Get customDataProvidedResourceUploadSession + +Namespace: microsoft.graph + +Read the properties and relationships of a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +``` + +## Optional query parameters + +This method supports the `$expand` 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. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## Request body + +Don't supply a request body for this method. + +## Response + +If successful, this method returns a `200 OK` response code and a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object in the response body. + +## Examples + +### Request + +The following example shows a request. + +``` http +GET https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +``` + +### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identityGovernance/entitlementManagement/catalogs('3c9f2b1e-8a4d-4e7f-9d2a-6b3e1c7f5a9d')/resources('15eeb4df-bd15-4d8b-9679-e75791dbc1d9')/uploadSessions/$entity", + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "0b64df22-1a83-472c-9556-6c3dc41742b9", + "referenceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8", + "status": "active", + "isUploadDone": false, + "createdDateTime": "2026-04-01T18:24:07.1484627Z", + "stats": { + "filesUploaded": 0, + "totalBytesUploaded": 0 + }, + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "f5744a40-bca0-4506-a286-a8afac513d1c", + "reviewInstanceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8" + } +} +``` diff --git a/api-reference/v1.0/api/customdataprovidedresourceuploadsession-update.md b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-update.md new file mode 100644 index 00000000000..6b9bbd12a00 --- /dev/null +++ b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-update.md @@ -0,0 +1,120 @@ +--- +title: "Update customDataProvidedResourceUploadSession" +description: "Update the properties of a customDataProvidedResourceUploadSession object." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# Update customDataProvidedResourceUploadSession + +Namespace: microsoft.graph + +Update the properties of a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) created for an [accessPackageResource](../resources/accesspackageresource.md) object. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresourceuploadsession-update-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| +|Content-Type|application/json. Required.| + +## Request body + +[!INCLUDE [table-intro](../../includes/update-property-table-intro.md)] + + +|Property|Type|Description| +|:---|:---|:---| +|isUploadDone|Boolean|Whether the upload session is completed. Required.| + + +## Response + +If successful, this method returns a `200 OK` response code and an updated [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object in the response body. The only allowed update is to set **isUploadDone** to `true`. + +## Examples + +### Request + +The following example shows a request. + +``` http +PATCH https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId} +Content-Type: application/json + +{ + "isUploadDone": true +} +``` + +### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identityGovernance/entitlementManagement/catalogs('3c9f2b1e-8a4d-4e7f-9d2a-6b3e1c7f5a9d')/resources('15eeb4df-bd15-4d8b-9679-e75791dbc1d9')/uploadSessions/$entity", + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "0b64df22-1a83-472c-9556-6c3dc41742b9", + "referenceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8", + "status": "complete", + "isUploadDone": true, + "createdDateTime": "2026-04-01T18:24:07.1484627Z", + "stats": { + "filesUploaded": 1, + "totalBytesUploaded": 2394 + }, + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "f5744a40-bca0-4506-a286-a8afac513d1c", + "reviewInstanceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8" + }, + "files": [ + { + "id": "22125c79-b0fe-4553-8229-6556d85b2561", + "name": "generated_test_data_20.csv", + "size": 2394, + "uploadedDateTime": "2026-04-01T18:42:07.7890258Z" + } + ] +} +``` diff --git a/api-reference/v1.0/api/customdataprovidedresourceuploadsession-uploadfile.md b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-uploadfile.md new file mode 100644 index 00000000000..d2b71273ec9 --- /dev/null +++ b/api-reference/v1.0/api/customdataprovidedresourceuploadsession-uploadfile.md @@ -0,0 +1,120 @@ +--- +title: "customDataProvidedResourceUploadSession: uploadFile" +description: "Upload a file in a customDataProvidedResourceUploadSession" +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: apiPageType +--- + +# customDataProvidedResourceUploadSession: uploadFile + +Namespace: microsoft.graph + +Upload a file in a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) created for an [accessPackageResource](../resources/accesspackageresource.md). + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresourceuploadsession-uploadfile-permissions.md)] + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] + +## HTTP request + + +``` http +POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId}/uploadFile +``` + +## Request headers + +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| +|Content-Type|multipart/form-data; boundary={your-boundary}. Required.| + +## Request body + +The body can contain a multipart message as shown in the example. +The columns in the CSV should match the following required properties: `principalId`, `principalType`, `permissionId`, `permissionName`, `permissionDescription`, `permissionType`. + +## Response + +If successful, this action returns a `200 OK` response code and a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) in the response body. + +## Examples + +### Request + +The following example shows a request. + +```http +POST https://graph.microsoft.com/v1.0/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalogId}/resources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId}/uploadFile +Content-Type: multipart/form-data; boundary=MyPartBoundary198374 + +--MyPartBoundary198374 +Content-Disposition: form-data; name="file"; filename="building-access-data.csv" +Content-Type: application/octet-stream + +principalId,principalType,permissionId,permissionName,permissionDescription,permissionType +550e8400-e29b-41d4-a716-446655440000,user,6ba7b810-9dad-11d1-80b4-00c04fd430c8,Access,Physical access to building,Physical +7c9e6679-7425-40de-944b-e07fc1f90ae7,user,6ba7b810-9dad-11d1-80b4-00c04fd430c9,Reserve,Book conference room,Administrative +--MyPartBoundary198374-- +``` + +### Response + +The following example shows the response. +>**Note:** The response object shown here might be shortened for readability. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "0b64df22-1a83-472c-9556-6c3dc41742b9", + "referenceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8", + "status": "active", + "isUploadDone": false, + "createdDateTime": "2026-04-01T18:24:07.1484627Z", + "stats": { + "filesUploaded": 1, + "totalBytesUploaded": 198374 + }, + "data": { + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "f5744a40-bca0-4506-a286-a8afac513d1c", + "reviewInstanceId": "ca24f9b9-5917-4971-9b5b-07aae0aa74e8" + }, + "files": [ + { + "id": "22125c79-b0fe-4553-8229-6556d85b2561", + "name": "valid.csv", + "size": 198374, + "uploadedDateTime": "2026-04-01T18:42:07.7890258Z" + } + ] +} +``` diff --git a/api-reference/v1.0/includes/permissions/accesspackageresource-delete-uploadsessions-permissions.md b/api-reference/v1.0/includes/permissions/accesspackageresource-delete-uploadsessions-permissions.md new file mode 100644 index 00000000000..1c4947c72e4 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/accesspackageresource-delete-uploadsessions-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.ReadWrite.All|Not available.| + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] diff --git a/api-reference/v1.0/includes/permissions/accesspackageresource-list-uploadsessions-permissions.md b/api-reference/v1.0/includes/permissions/accesspackageresource-list-uploadsessions-permissions.md new file mode 100644 index 00000000000..c6e7822e6aa --- /dev/null +++ b/api-reference/v1.0/includes/permissions/accesspackageresource-list-uploadsessions-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.Read.All|EntitlementManagement.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.Read.All|EntitlementManagement.ReadWrite.All| + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] diff --git a/api-reference/v1.0/includes/permissions/customdataprovidedresource-post-uploadsessions-permissions.md b/api-reference/v1.0/includes/permissions/customdataprovidedresource-post-uploadsessions-permissions.md new file mode 100644 index 00000000000..1c4947c72e4 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/customdataprovidedresource-post-uploadsessions-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.ReadWrite.All|Not available.| + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] diff --git a/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md new file mode 100644 index 00000000000..86bc294dced --- /dev/null +++ b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.Read.All|EntitlementManagement.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.Read.All|EntitlementManagement.ReadWrite.All| + +[!INCLUDE [rbac-entitlement-catalog-reader-read](../rbac-for-apis/rbac-entitlement-management-catalog-reader-apis-read.md)] diff --git a/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-update-permissions.md b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-update-permissions.md new file mode 100644 index 00000000000..1c4947c72e4 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-update-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.ReadWrite.All|Not available.| + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] diff --git a/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-uploadfile-permissions.md b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-uploadfile-permissions.md new file mode 100644 index 00000000000..1c4947c72e4 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/customdataprovidedresourceuploadsession-uploadfile-permissions.md @@ -0,0 +1,13 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|EntitlementManagement.ReadWrite.All|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|EntitlementManagement.ReadWrite.All|Not available.| + +[!INCLUDE [rbac-entitlement-catalog-owner-write](../rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)] diff --git a/api-reference/v1.0/resources/accesspackageresource.md b/api-reference/v1.0/resources/accesspackageresource.md index ee2e86ff7a0..ba8a9e22113 100644 --- a/api-reference/v1.0/resources/accesspackageresource.md +++ b/api-reference/v1.0/resources/accesspackageresource.md @@ -12,7 +12,7 @@ ms.date: 07/22/2024 Namespace: microsoft.graph -In [Microsoft Entra entitlement management](entitlementmanagement-overview.md), an access package resource is a reference to a resource associated with an access package catalog. The roles for the access package resource can be used in one or more access packages. To request to associate a resource with an access package catalog, or remove a resource from a catalog, create an [accessPackageResourceRequest](accesspackageresourcerequest.md). +In [Microsoft Entra entitlement management](entitlementmanagement-overview.md), an access package resource is a reference to a resource associated with an access package catalog for which an access package can be configured to provide access. This can be a group, an app, a SharePoint Online site, or an external application represented by [customDataProvidedResource](customdataprovidedresource.md). To request an access package resource, or remove a resource from an access package, create an [accessPackageResourceRequest](accesspackageresourcerequest.md). ## Methods @@ -20,6 +20,9 @@ In [Microsoft Entra entitlement management](entitlementmanagement-overview.md), |:-------------|:------------|:------------| | [List](../api/accesspackagecatalog-list-resources.md) | [accessPackageResource](accesspackageresource.md) collection | Retrieve a list of accessPackageResource objects in a catalog. | | [Refresh](../api/accesspackageresource-refresh.md)|None|Refresh the resource information from the originSystem.| +| [List uploadSessions](../api/accesspackageresource-list-uploadsessions.md) | [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) collection | Get a list of the upload sessions created on an accessPackageResource. | +| [Create customDataProvidedResourceUploadSession](../api/accesspackageresource-post-uploadsessions.md) | [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) | Create a new upload session on an accessPackageResource. | +| [Delete customDataProvidedResourceUploadSession](../api/accesspackageresource-delete-uploadsessions.md) | None | Delete an upload session from an accessPackageResource. | ## Properties @@ -41,6 +44,7 @@ In [Microsoft Entra entitlement management](entitlementmanagement-overview.md), |environment|[accessPackageResourceEnvironment](../resources/accesspackageresourceenvironment.md)|Contains the environment information for the resource. This can be set using either the `@odata.bind` annotation or the environment's *originId*.Supports `$expand`.| |roles|[accessPackageResourceRole](accesspackageresourcerole.md) collection| Read-only. Nullable. Supports `$expand`.| |scopes|[accessPackageResourceScope](accesspackageresourcescope.md) collection| Read-only. Nullable. Supports `$expand`.| +|uploadSessions|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) collection|The upload sessions for uploading external access data to this resource through the Bring Your Own Data (BYOD) flow.| ## JSON representation diff --git a/api-reference/v1.0/resources/customdataprovidedresource.md b/api-reference/v1.0/resources/customdataprovidedresource.md new file mode 100644 index 00000000000..47a549d95c2 --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresource.md @@ -0,0 +1,82 @@ +--- +title: "customDataProvidedResource resource type" +description: "Represents an external application whose access data is provided through the Bring Your Own Data (BYOD) flow for access reviews." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResource resource type + +Namespace: microsoft.graph + +Represents an external application whose access data is provided through the Bring Your Own Data (BYOD) flow for catalog user access reviews. The **originSystem** of a customDataProvidedResource is always `CustomDataProvidedResource`. + +Inherits from [accessPackageResource](../resources/accesspackageresource.md). + +For more information, see [Include custom data provided resource in the catalog for catalog user Access Reviews](/entra/id-governance/custom-data-resource-access-reviews). + +## Methods + +|Method|Return type|Description| +|:---|:---|:---| +|[List uploadSessions](../api/accesspackageresource-list-uploadsessions.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) collection|Get a list of the upload sessions created on a customDataProvidedResource.| +|[Create customDataProvidedResourceUploadSession](../api/accesspackageresource-post-uploadsessions.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md)|Create a new upload session on a customDataProvidedResource.| +|[Delete customDataProvidedResourceUploadSession](../api/accesspackageresource-delete-uploadsessions.md)|None|Delete an upload session from a customDataProvidedResource.| + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|attributes|[accessPackageResourceAttribute](../resources/accesspackageresourceattribute.md) collection|Contains information about the attributes to be collected from the requestor and sent to the resource application. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|createdDateTime|DateTimeOffset|The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|description|String|A description for the resource. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|displayName|String|The display name of the resource, such as the application name, group name, or site name. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|id|String|Read-only. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|modifiedDateTime|DateTimeOffset|The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Read-only. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|notificationEndpointConfiguration|[customExtensionEndpointConfiguration](../resources/customextensionendpointconfiguration.md)|The endpoint configuration of the logic app that is triggered when the access review for this resource goes into an initializing state.| +|originId|String|The unique identifier of the resource in the origin system. For a Microsoft Entra group, this is the identifier of the group. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|originSystem|String|The type of the resource in the origin system. For a customDataProvidedResource, the value is always `CustomDataProvidedResource`. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| + +## Relationships + +|Relationship|Type|Description| +|:---|:---|:---| +|environment|[accessPackageResourceEnvironment](../resources/accesspackageresourceenvironment.md)|Contains the environment information for the resource. This can be set using either the `@odata.bind` annotation or the environment's *originId*. Supports `$expand`. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|roles|[accessPackageResourceRole](../resources/accesspackageresourcerole.md) collection|Read-only. Nullable. Supports `$expand`. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|scopes|[accessPackageResourceScope](../resources/accesspackageresourcescope.md) collection|Read-only. Nullable. Supports `$expand`. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| +|uploadSessions|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) collection|The upload sessions for uploading external access data to this resource through the Bring Your Own Data (BYOD) flow. Inherited from [accessPackageResource](../resources/accesspackageresource.md).| + +## JSON representation + +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResource", + "id": "String (identifier)", + "attributes": [ + { + "@odata.type": "microsoft.graph.accessPackageResourceAttribute" + } + ], + "displayName": "String", + "description": "String", + "originId": "String", + "originSystem": "String", + "createdDateTime": "String (timestamp)", + "modifiedDateTime": "String (timestamp)", + "notificationEndpointConfiguration": { + "@odata.type": "microsoft.graph.customExtensionEndpointConfiguration" + } +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourceaccessreviewuploadsession.md b/api-reference/v1.0/resources/customdataprovidedresourceaccessreviewuploadsession.md new file mode 100644 index 00000000000..eabd9a430fc --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourceaccessreviewuploadsession.md @@ -0,0 +1,67 @@ +--- +title: "customDataProvidedResourceAccessReviewUploadSession resource type" +description: "Represents a concrete upload session for access review scenarios on a custom data provided resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResourceAccessReviewUploadSession resource type + +Namespace: microsoft.graph + +Represents an upload session for access review scenarios on an [accessPackageResource](../resources/accesspackageresource.md). Use this type when uploading external access data for access reviews via the Bring Your Own Data (BYOD) flow. + +Inherits from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md). + +## Methods + +This derived type supports the same methods as the base [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) resource. For the list of supported operations, see the base type documentation. + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|createdDateTime|DateTimeOffset|DateTime when the upload session was created. Read-only. Supports `$orderby`. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|data|[microsoft.graph.customDataProvidedResourcePayloads.data](../resources/customdataprovidedresourcepayloads-data.md)|An object containing the context for which this data is being uploaded. For access review upload sessions, this is of type [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData](../resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md). Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|id|String|Unique identifier of the upload session. Read-only. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|isUploadDone|Boolean|Indicates if all the necessary files have been uploaded to this session. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|referenceId|String|The ID of the context for which data is being uploaded, for example, the access review instance ID. Supports `$filter (eq)`. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|stats|[customDataProvidedResourceUploadStats](../resources/customdataprovidedresourceuploadstats.md)|Metadata about the files uploaded in this upload session thus far. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| +|status|customDataProvidedResourceUploadStatus|Status of the upload session. The possible values are: `active`, `complete`, `expired`, `unknownFutureValue`. Supports `$filter (eq)`. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| + +## Relationships + +|Relationship|Type|Description| +|:---|:---|:---| +|files|[customDataProvidedResourceFile](../resources/customdataprovidedresourcefile.md) collection|The files uploaded during this upload session. Supports `$expand` and `$expand` with nested `$filter` and `$orderby`. Inherited from [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md).| + +## JSON representation + +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession", + "id": "String (identifier)", + "status": "String", + "isUploadDone": "Boolean", + "stats": { + "@odata.type": "microsoft.graph.customDataProvidedResourceUploadStats" + }, + "createdDateTime": "String (timestamp)", + "referenceId": "String", + "data": { + "@odata.type": "microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData" + } +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourcefile.md b/api-reference/v1.0/resources/customdataprovidedresourcefile.md new file mode 100644 index 00000000000..89b4c45f2df --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourcefile.md @@ -0,0 +1,54 @@ +--- +title: "customDataProvidedResourceFile resource type" +description: "Represents a file that is uploaded in a customDataProvidedResourceUploadSession" +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResourceFile resource type + +Namespace: microsoft.graph + +Represents a file uploaded as part of a custom data provided resource upload session for Access Reviews with bring-your-own-data (BYOD) capabilities. This resource contains metadata about uploaded CSV files including the file name, size, and upload timestamp. + +Files are uploaded via the [uploadFile](../api/customdataprovidedresourceuploadsession-uploadfile.md) action on an upload session and are accessible by expanding the **files** navigation property on a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md). + +## Methods + +This resource doesn't have direct methods. Access files through the **files** navigation property on [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) using `$expand=files`. + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|id|String|Unique identifier for the file. Read-only.| +|name|String|Name of the uploaded file, including the file extension. Required. Supports `$filter` (`eq`, `ne`) and `$orderby`.| +|size|Int64|Size of the file in bytes. Read-only. Supports `$filter` (`eq`, `ne`, `gt`, `ge`, `lt`, `le`) and `$orderby`.| +|uploadedDateTime|DateTimeOffset|Timestamp when the file was uploaded. Read-only. Supports `$filter` (`eq`, `ne`, `gt`, `ge`, `lt`, `le`) and `$orderby`.| + +## Relationships + +None. + +## JSON representation + +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceFile", + "id": "String (identifier)", + "name": "String", + "size": "Int64", + "uploadedDateTime": "String (timestamp)" +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md new file mode 100644 index 00000000000..a4bf9e52a8a --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md @@ -0,0 +1,42 @@ +--- +title: "accessReviewContextData resource type" +description: "Represents context data for access review upload session scenarios associated with a custom data provided resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# accessReviewContextData resource type + +Namespace: microsoft.graph.customDataProvidedResourcePayloads + +Represents context data for access review upload session scenarios associated with an [accessPackageResource](../resources/accesspackageresource.md). This type is used as the **data** payload when creating a [customDataProvidedResourceAccessReviewUploadSession](../resources/customdataprovidedresourceaccessreviewuploadsession.md) to specify which access review the uploaded data is for. + +Inherits from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md). + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|reviewDefinitionId|String|The unique identifier of the access review definition that this data is associated with. Inherited from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md).| +|reviewInstanceId|String|The unique identifier of the access review instance that this data is associated with. Inherited from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md).| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData", + "reviewDefinitionId": "String", + "reviewInstanceId": "String" +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md new file mode 100644 index 00000000000..2534872a77c --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md @@ -0,0 +1,48 @@ +--- +title: "accessReviewContextDataBase resource type" +description: "Represents the abstract base for access review context data associated with a custom data provided resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# accessReviewContextDataBase resource type + +Namespace: microsoft.graph.customDataProvidedResourcePayloads + +Represents the abstract base for access review context data associated with an [accessPackageResource](../resources/accesspackageresource.md). Contains the access review definition and instance identifiers that link the uploaded data to a specific review. This is an abstract type from which the following types are derived. + +- [accessReviewContextData](../resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md) +- [applyDecisionContextData](../resources/customdataprovidedresourcepayloads-applydecisioncontextdata.md) + +Inherits from [microsoft.graph.customDataProvidedResourcePayloads.data](../resources/customdataprovidedresourcepayloads-data.md). + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|reviewDefinitionId|String|The unique identifier of the access review definition that this data is associated with.| +|reviewInstanceId|String|The unique identifier of the access review instance that this data is associated with.| + +## Relationships + +None. + +## JSON representation + +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase", + "reviewDefinitionId": "String", + "reviewInstanceId": "String" +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourcepayloads-applydecisioncontextdata.md b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-applydecisioncontextdata.md new file mode 100644 index 00000000000..bb0eee66183 --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-applydecisioncontextdata.md @@ -0,0 +1,42 @@ +--- +title: "applyDecisionContextData resource type" +description: "Represents context data for applying access review decisions associated with a custom data provided resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# applyDecisionContextData resource type + +Namespace: microsoft.graph.customDataProvidedResourcePayloads + +Represents context data for the callback sent when batch apply decisions are triggered for an [accessPackageResource](../resources/accesspackageresource.md) in an access review. Contains the access review definition and instance identifiers so the callback receiver can correlate the batch apply result back to the specific review that initiated the operation. + +Inherits from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md). + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|reviewDefinitionId|String|The unique identifier of the access review definition that this data is associated with. Inherited from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md).| +|reviewInstanceId|String|The unique identifier of the access review instance that this data is associated with. Inherited from [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md).| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.applyDecisionContextData", + "reviewDefinitionId": "String", + "reviewInstanceId": "String" +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourcepayloads-data.md b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-data.md new file mode 100644 index 00000000000..c2e35c1ba62 --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourcepayloads-data.md @@ -0,0 +1,38 @@ +--- +title: "data resource type" +description: "Represents the abstract base for data payloads associated with a custom data provided resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# data resource type + +Namespace: microsoft.graph.customDataProvidedResourcePayloads + +Represents the abstract base for data payloads associated with an [accessPackageResource](../resources/accesspackageresource.md). This is an abstract type from which the following type is derived. + +- [accessReviewContextDataBase](../resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase.md) + + +## Properties +None. + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourcePayloads.data" +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourceuploadsession.md b/api-reference/v1.0/resources/customdataprovidedresourceuploadsession.md new file mode 100644 index 00000000000..d4dc2ffc8df --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourceuploadsession.md @@ -0,0 +1,78 @@ +--- +title: "customDataProvidedResourceUploadSession resource type" +description: "An upload session within which multiple files can be uploaded for this resource." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResourceUploadSession resource type + +Namespace: microsoft.graph + +Represents an upload session created on an [accessPackageResource](../resources/accesspackageresource.md). This is an abstract type from which the following type is derived. + +- [customDataProvidedResourceAccessReviewUploadSession](../resources/customdataprovidedresourceaccessreviewuploadsession.md) + +Inherits from [entity](../resources/entity.md). + +For more information, see [Include custom data provided resource in the catalog for catalog user Access Reviews](/entra/id-governance/custom-data-resource-access-reviews). + +## Methods + +|Method|Return type|Description| +|:---|:---|:---| +|[Create](../api/accesspackageresource-post-uploadsessions.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md)|Create a new object type that is derived from **customDataProvidedResourceUploadSession**.| +|[List](../api/accesspackageresource-list-uploadsessions.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) collection|Get a list of objects that are derived from **customDataProvidedResourceUploadSession** and their properties.| +|[Get](../api/customdataprovidedresourceuploadsession-get.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md)|Read the properties and relationships of an object type that is derived from **customDataProvidedResourceUploadSession**.| +|[Upload file](../api/customdataprovidedresourceuploadsession-uploadfile.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md)|Upload a file to an object that is derived from **customDataProvidedResourceUploadSession**.| +|[Update](../api/customdataprovidedresourceuploadsession-update.md)|[customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md)|Update the properties of an object type that is derived from **customDataProvidedResourceUploadSession**.| +|[Delete](../api/accesspackageresource-delete-uploadsessions.md)|None|Delete an object type that is derived from **customDataProvidedResourceUploadSession**.| + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|createdDateTime|DateTimeOffset|DateTime when the upload session was created. Read-only. Supports `$orderby`.| +|data|[microsoft.graph.customDataProvidedResourcePayloads.data](../resources/customdataprovidedresourcepayloads-data.md)|An object containing the context for which this data is being uploaded.| +|id|String|Unique identifier of the upload session. Read-only.| +|isUploadDone|Boolean|Indicates if all the necessary files have been uploaded to this session.| +|referenceId|String|The ID of the context for which data is being uploaded, for example, the Access Review instance ID. Supports `$filter (eq)`.| +|stats|[customDataProvidedResourceUploadStats](../resources/customdataprovidedresourceuploadstats.md)|Metadata about the files uploaded in this upload session thus far.| +|status|customDataProvidedResourceUploadStatus|Status of the upload session. The possible values are: `active`, `complete`, `expired`, `unknownFutureValue`. Supports `$filter (eq)`.| + +## Relationships + +|Relationship|Type|Description| +|:---|:---|:---| +|files|[customDataProvidedResourceFile](../resources/customdataprovidedresourcefile.md) collection|The files uploaded during this upload session. Supports `$expand` and `$expand` with nested `$filter` and `$orderby`.| + +## JSON representation + +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceUploadSession", + "id": "String (identifier)", + "status": "String", + "isUploadDone": "Boolean", + "stats": { + "@odata.type": "microsoft.graph.customDataProvidedResourceUploadStats" + }, + "createdDateTime": "String (timestamp)", + "referenceId": "String", + "data": { + "@odata.type": "microsoft.graph.customDataProvidedResourcePayloads.data" + } +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourceuploadsessionrequest.md b/api-reference/v1.0/resources/customdataprovidedresourceuploadsessionrequest.md new file mode 100644 index 00000000000..8f3ddbea4b3 --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourceuploadsessionrequest.md @@ -0,0 +1,40 @@ +--- +title: "customDataProvidedResourceUploadSessionRequest resource type" +description: "Request object used to create an upload session" +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResourceUploadSessionRequest resource type + +Namespace: microsoft.graph + +The request object used to create a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md). + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|data|[microsoft.graph.customDataProvidedResourcePayloads.data](../resources/customdataprovidedresourcepayloads-data.md)|An object containing the context for which this data is being uploaded. For access review upload sessions, use [microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData](../resources/customdataprovidedresourcepayloads-accessreviewcontextdata.md). Required.| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceUploadSessionRequest", + "data": { + "@odata.type": "microsoft.graph.customDataProvidedResourcePayloads.data" + } +} +``` diff --git a/api-reference/v1.0/resources/customdataprovidedresourceuploadstats.md b/api-reference/v1.0/resources/customdataprovidedresourceuploadstats.md new file mode 100644 index 00000000000..8d307595f29 --- /dev/null +++ b/api-reference/v1.0/resources/customdataprovidedresourceuploadstats.md @@ -0,0 +1,40 @@ +--- +title: "customDataProvidedResourceUploadStats resource type" +description: "Metadata related to the files that have been uploaded as part of a customDataProvidedResourceUploadSession." +author: "prathamrathi" +ms.date: 07/15/2026 +ms.localizationpriority: medium +ms.subservice: "entra-id-governance" +doc_type: resourcePageType +--- + +# customDataProvidedResourceUploadStats resource type + +Namespace: microsoft.graph + +Metadata related to the files that were uploaded as part of a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md). + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|filesUploaded|Int32|Number of files uploaded in this session.| +|totalBytesUploaded|Int64|Total bytes uploaded in this session.| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.customDataProvidedResourceUploadStats", + "filesUploaded": "Int32", + "totalBytesUploaded": "Int64" +} +``` diff --git a/api-reference/v1.0/resources/enums.md b/api-reference/v1.0/resources/enums.md index a380c9d9d51..b049850218c 100644 --- a/api-reference/v1.0/resources/enums.md +++ b/api-reference/v1.0/resources/enums.md @@ -929,6 +929,15 @@ Namespace: microsoft.graph | assignmentOneDayBeforeExpiration | | unknownFutureValue | +### customDataProvidedResourceUploadStatus values + +| Member | +| ---- | +| active | +| complete | +| expired | +| unknownFutureValue | + ### customExtensionCalloutInstanceStatus values | Member | diff --git a/api-reference/v1.0/toc/identity-and-access/toc.yml b/api-reference/v1.0/toc/identity-and-access/toc.yml index 4a8ae980f03..4816edcacb2 100644 --- a/api-reference/v1.0/toc/identity-and-access/toc.yml +++ b/api-reference/v1.0/toc/identity-and-access/toc.yml @@ -646,6 +646,12 @@ items: href: ../../api/accesspackagecatalog-list-resources.md - name: Refresh href: ../../api/accesspackageresource-refresh.md + - name: List uploadSessions + href: ../../api/accesspackageresource-list-uploadsessions.md + - name: Create customDataProvidedResourceUploadSession + href: ../../api/accesspackageresource-post-uploadsessions.md + - name: Delete customDataProvidedResourceUploadSession + href: ../../api/accesspackageresource-delete-uploadsessions.md - name: Access package resource role items: - name: Access package resource role @@ -744,6 +750,30 @@ items: href: ../../api/connectedorganization-post-internalsponsors.md - name: Remove href: ../../api/connectedorganization-delete-internalsponsors.md + - name: Custom data provided resource access review upload session + href: ../../resources/customdataprovidedresourceaccessreviewuploadsession.md + - name: Custom data provided resource file + href: ../../resources/customdataprovidedresourcefile.md + - name: Custom data provided resource upload session + items: + - name: Custom data provided resource upload session + href: ../../resources/customdataprovidedresourceuploadsession.md + - name: Create + href: ../../api/accesspackageresource-post-uploadsessions.md + - name: List + href: ../../api/accesspackageresource-list-uploadsessions.md + - name: Get + href: ../../api/customdataprovidedresourceuploadsession-get.md + - name: Upload file + href: ../../api/customdataprovidedresourceuploadsession-uploadfile.md + - name: Update + href: ../../api/customdataprovidedresourceuploadsession-update.md + - name: Delete + href: ../../api/accesspackageresource-delete-uploadsessions.md + - name: Custom data provided resource upload session request + href: ../../resources/customdataprovidedresourceuploadsessionrequest.md + - name: Custom data provided resource upload stats + href: ../../resources/customdataprovidedresourceuploadstats.md - name: End user settings items: - name: End user settings diff --git a/api-reference/v1.0/toc/toc.mapping.json b/api-reference/v1.0/toc/toc.mapping.json index 9543996f039..15e5ff6911f 100644 --- a/api-reference/v1.0/toc/toc.mapping.json +++ b/api-reference/v1.0/toc/toc.mapping.json @@ -896,6 +896,12 @@ "accessPackageSuggestion", "availableAccessPackage", "connectedOrganization", + "customDataProvidedResource", + "customDataProvidedResourceAccessReviewUploadSession", + "customDataProvidedResourceFile", + "customDataProvidedResourceUploadSession", + "customDataProvidedResourceUploadSessionRequest", + "customDataProvidedResourceUploadStats", "endUserSettings", "entitlementManagementSettings" ] diff --git a/changelog/Microsoft.IdentityGovernance.Insights.json b/changelog/Microsoft.IdentityGovernance.Insights.json index 0a9e6dabc72..3cdd227b588 100644 --- a/changelog/Microsoft.IdentityGovernance.Insights.json +++ b/changelog/Microsoft.IdentityGovernance.Insights.json @@ -1,5 +1,145 @@ { "changelog": [ + { + "ChangeList": [ + { + "Id": "faacff08-2ce3-4f6d-a724-c8c581e5c4c3", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResource", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResource](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresource) resource, a derived type of [accessPackageResource](https://learn.microsoft.com/en-us/graph/api/resources/accesspackageresource), to the v1.0 endpoint.", + "Target": "customDataProvidedResource" + }, + { + "Id": "faacff08-2ce3-4f6d-a724-c8c581e5c4c3", + "ApiChange": "Relationship", + "ChangedApiName": "catalogs", + "ChangeType": "Addition", + "Description": "Added the **catalogs** relationship to the [identityGovernance](https://learn.microsoft.com/en-us/graph/api/resources/identitygovernance) resource in v1.0.", + "Target": "identityGovernance" + } + ], + "Id": "faacff08-2ce3-4f6d-a724-c8c581e5c4c3", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2026-07-16T16:18:47.9270476Z", + "WorkloadArea": "Identity and access", + "SubArea": "Governance" + }, + { + "ChangeList": [ + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Enumeration", + "ChangedApiName": "customDataProvidedResourceUploadStatus", + "ChangeType": "Addition", + "Description": "Added the **customDataProvidedResourceUploadStatus** enumeration type to the v1.0 endpoint.", + "Target": "customDataProvidedResourceUploadStatus" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResourceUploadSession", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResourceUploadSession](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourceuploadsession) resource to the v1.0 endpoint.", + "Target": "customDataProvidedResourceUploadSession" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResourceAccessReviewUploadSession", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResourceAccessReviewUploadSession](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourceaccessreviewuploadsession) resource to the v1.0 endpoint.", + "Target": "customDataProvidedResourceAccessReviewUploadSession" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResourceFile", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResourceFile](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourcefile) resource to the v1.0 endpoint.", + "Target": "customDataProvidedResourceFile" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResourceUploadStats", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResourceUploadStats](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourceuploadstats) resource to the v1.0 endpoint.", + "Target": "customDataProvidedResourceUploadStats" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "customDataProvidedResourceUploadSessionRequest", + "ChangeType": "Addition", + "Description": "Added the [customDataProvidedResourceUploadSessionRequest](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourceuploadsessionrequest) resource to the v1.0 endpoint.", + "Target": "customDataProvidedResourceUploadSessionRequest" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "data", + "ChangeType": "Addition", + "Description": "Added the [data](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourcepayloads-data) resource to the v1.0 endpoint.", + "Target": "data" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "accessReviewContextDataBase", + "ChangeType": "Addition", + "Description": "Added the [accessReviewContextDataBase](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase) resource to the v1.0 endpoint.", + "Target": "accessReviewContextDataBase" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "accessReviewContextData", + "ChangeType": "Addition", + "Description": "Added the [accessReviewContextData](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourcepayloads-accessreviewcontextdata) resource to the v1.0 endpoint.", + "Target": "accessReviewContextData" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "applyDecisionContextData", + "ChangeType": "Addition", + "Description": "Added the [applyDecisionContextData](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourcepayloads-applydecisioncontextdata) resource to the v1.0 endpoint.", + "Target": "applyDecisionContextData" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Method", + "ChangedApiName": "uploadFile", + "ChangeType": "Addition", + "Description": "Added the [uploadFile](https://learn.microsoft.com/en-us/graph/api/customdataprovidedresourceuploadsession-uploadfile) method to the [customDataProvidedResourceUploadSession](https://learn.microsoft.com/en-us/graph/api/resources/customdataprovidedresourceuploadsession) resource in v1.0.", + "Target": "customDataProvidedResourceUploadSession" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Resource", + "ChangedApiName": "accessPackageResource", + "ChangeType": "Addition", + "Description": "Added the [accessPackageResource](https://learn.microsoft.com/en-us/graph/api/resources/accesspackageresource) resource to the v1.0 endpoint.", + "Target": "accessPackageResource" + }, + { + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "ApiChange": "Relationship", + "ChangedApiName": "uploadSessions", + "ChangeType": "Addition", + "Description": "Added the **uploadSessions** relationship to the [accessPackageResource](https://learn.microsoft.com/en-us/graph/api/resources/accesspackageresource) resource in v1.0.", + "Target": "accessPackageResource" + } + ], + "Id": "82f50cff-b5e6-45af-9831-aa5519d38852", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2026-07-16T20:35:46.7685215Z", + "WorkloadArea": "Identity and access", + "SubArea": "Governance" + }, { "ChangeList": [ { diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index 979bd776be1..6f86e96bbb8 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -35,6 +35,17 @@ For details about previous updates to Microsoft Graph, see [Microsoft Graph what - Added the `User.Create` permission as the least privileged permission to [create a user](/graph/api/user-post-users). - Added the `User.ReadUpdate.All` permission as the least privileged permission to [update a user](/graph/api/user-update). +### Identity and access | Governance + +Promoted the **Bring Your Own Data (BYOD) Upload** APIs from beta to v1.0, enabling upload of external access data for access reviews. The promoted surface includes: + +- [customDataProvidedResourceUploadSession](/graph/api/resources/customdataprovidedresourceuploadsession) base resource and [customDataProvidedResourceAccessReviewUploadSession](/graph/api/resources/customdataprovidedresourceaccessreviewuploadsession) derived type +- [customDataProvidedResourceFile](/graph/api/resources/customdataprovidedresourcefile), [customDataProvidedResourceUploadStats](/graph/api/resources/customdataprovidedresourceuploadstats), and [customDataProvidedResourceUploadSessionRequest](/graph/api/resources/customdataprovidedresourceuploadsessionrequest) resources +- Supporting resource types: [data](/graph/api/resources/customdataprovidedresourcepayloads-data), [accessReviewContextDataBase](/graph/api/resources/customdataprovidedresourcepayloads-accessreviewcontextdatabase), [accessReviewContextData](/graph/api/resources/customdataprovidedresourcepayloads-accessreviewcontextdata), and [applyDecisionContextData](/graph/api/resources/customdataprovidedresourcepayloads-applydecisioncontextdata) +- [uploadFile](/graph/api/customdataprovidedresourceuploadsession-uploadfile) action +- **uploadSessions** navigation property on [accessPackageResource](/graph/api/resources/accesspackageresource) +- [customDataProvidedResourceUploadStatus](/graph/api/resources/enums#customdataprovidedresourceuploadstatus-values) enumeration + ## July 2026: New in preview only ### Change notifications @@ -117,6 +128,14 @@ Evaluate applications in the Microsoft Entra application gallery by using the [a ### Identity and access | Directory management - Added the [deviceRegistrationPolicy](/graph/api/resources/deviceregistrationpolicy) resource type and related methods to manage the policy that controls device registration quota restrictions, additional authentication, and authorization policies for your Microsoft Entra tenant. +- Added the [Get](/graph/api/accesspackagesubject-get) and [Update](/graph/api/accesspackagesubject-update) methods to the [accessPackageSubject](/graph/api/resources/accesspackagesubject) resource type to manage the subject lifecycle of external directory users in Microsoft Entra entitlement management. +- Added the **type** property to the [accessPackageResourceRole](/graph/api/resources/accesspackageresourcerole) resource to indicate whether an Azure resource role is active or eligible, enabling PIM-based role assignments for Azure resources in access packages. +- Added the [accessPackageSuggestion](/graph/api/resources/accesspackagesuggestion) resource type and related methods for discovering suggested access packages based on related people insights and assignment history. Use the [filterByCurrentUser](/graph/api/accesspackagesuggestions-filterbycurrentuser) function to retrieve personalized suggestions. +- Added the **approverInformationVisibility** property to the [accessPackageApprovalStage](/graph/api/resources/accesspackageapprovalstage) resource to control whether approver information is visible to requestors. +- Added the [endUserSettings](/graph/api/resources/endusersettings) resource type and related methods for configuring access package suggestion behavior, including related people insight levels and approver detail visibility. +- Added workflow preview operations to the [workflow](/graph/api/resources/identitygovernance-workflow) resource type in Lifecycle Workflows, enabling you to validate tasks and run workflows in preview mode without affecting production users. +- Added the [customDataProvidedResourceUploadSession](/graph/api/resources/customdataprovidedresourceuploadsession) resource type and related methods for uploading external access data (Bring Your Own Data) for access reviews. +- Added the [customDataProvidedResource](/graph/api/resources/customdataprovidedresource) resource type, an access package resource that represents an external application whose access data is provided through the Bring Your Own Data (BYOD) flow for catalog user access reviews. ### Identity and access | Identity and sign-in From 872144e0ed17ab8b58ea1c42b9f1463d90f1834b Mon Sep 17 00:00:00 2001 From: johnnyjiang1 Date: Fri, 17 Jul 2026 01:56:40 +0800 Subject: [PATCH 5/5] Service plan api v1.0 promotion (#29017) * Service plan api v1.0 promotion * Apply fixes to suggestions from code reviewers * Apply fixes to suggestions from code reviewers * Update virtualendpoint-list-serviceplans.md * Update cloudpcserviceplan.md * Update cloudpcserviceplan.md * Apply suggestions from code review Co-authored-by: MSFT-Andrea * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: MSFT-Andrea * Update reference TOC * Update toc.mapping.json * Update reference TOC * Apply suggestions from code review Co-authored-by: MSFT-Andrea * Update toc.mapping.json * Update reference TOC * changelog fix. * changelog fixes. * Fixes. * Fix- changelog * changelog * Changelog * Fix invalid changelog links - remove links to non-existent docs and fix typo in getSharedUseLicenseUsageReport URL * Apply suggestions from code review Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> * What's new fix. --------- Co-authored-by: MSFT-Andrea Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Microsoft Graph DevX Tooling Co-authored-by: Danipocket <88507770+Danipocket@users.noreply.github.com> --- .../api/virtualendpoint-list-serviceplans.md | 4 +- .../beta/resources/cloudpcserviceplan.md | 4 +- .../beta/resources/virtualendpoint.md | 2 +- .../api/virtualendpoint-list-serviceplans.md | 95 ++ ...lendpoint-list-serviceplans-permissions.md | 11 + .../v1.0/resources/cloudpcserviceplan.md | 60 + .../v1.0/resources/virtualendpoint.md | 2 + .../toc/device-and-app-management/toc.yml | 6 + api-reference/v1.0/toc/toc.mapping.json | 1 + changelog/Microsoft.CloudManagedDesktop.json | 1094 +++++++++-------- concepts/whats-new-overview.md | 10 +- 11 files changed, 749 insertions(+), 540 deletions(-) create mode 100644 api-reference/v1.0/api/virtualendpoint-list-serviceplans.md create mode 100644 api-reference/v1.0/includes/permissions/virtualendpoint-list-serviceplans-permissions.md create mode 100644 api-reference/v1.0/resources/cloudpcserviceplan.md diff --git a/api-reference/beta/api/virtualendpoint-list-serviceplans.md b/api-reference/beta/api/virtualendpoint-list-serviceplans.md index 564ab5e1baf..12cacf7a36c 100644 --- a/api-reference/beta/api/virtualendpoint-list-serviceplans.md +++ b/api-reference/beta/api/virtualendpoint-list-serviceplans.md @@ -14,9 +14,9 @@ Namespace: microsoft.graph [!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] -List the currently available service plans that an organization can purchase for their Cloud PCs. +List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs. -For examples of currently available service plans, see [Windows 365 compare plans and pricing](https://www.microsoft.com/windows-365/business/compare-plans-pricing). Currently, Microsoft Graph API is available for Windows 365 Enterprise. +For examples of currently available service plans, see [Windows 365 compare plans and pricing](https://www.microsoft.com/windows-365/business/compare-plans-pricing). Currently, the Microsoft Graph API is available for Windows 365 Enterprise. [!INCLUDE [national-cloud-support](../../includes/global-us-l4.md)] diff --git a/api-reference/beta/resources/cloudpcserviceplan.md b/api-reference/beta/resources/cloudpcserviceplan.md index 8eaf1453aab..4617e3c72e6 100644 --- a/api-reference/beta/resources/cloudpcserviceplan.md +++ b/api-reference/beta/resources/cloudpcserviceplan.md @@ -22,7 +22,7 @@ For examples of currently available service plans, see [Windows 365 compare plan |Method|Return type|Description| |:---|:---|:---| -|[List](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List the currently available service plans that the organization can purchase for the Cloud PCs.| +|[List](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs.| ## Properties @@ -33,7 +33,7 @@ For examples of currently available service plans, see [Windows 365 compare plan |provisioningType|[cloudPcProvisioningType](../resources/cloudpcprovisioningpolicy.md#cloudpcprovisioningtype-values)|Specifies the type of license used when provisioning Cloud PCs. By default, the license type is `dedicated`. The possible values are: `dedicated`, `shared`, `unknownFutureValue`, `sharedByUser`, `sharedByEntraGroup`, `reserve`. Use the `Prefer: include-unknown-enum-members` request header to get the following values from this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `sharedByUser`, `sharedByEntraGroup`, `reserve`. The `shared` member is deprecated and will stop returning on April 30, 2027; going forward, use the `sharedByUser` member.| |ramInGB|Int32|The size of the RAM in GB. Read-only.| |supportedSolution|[cloudPcManagementService](../resources/cloudpconpremisesconnection.md#cloudpcmanagementservice-values)|The supported service or solution for the region. The possible values are: `windows365`, `devBox`, `rpaBox`, `microsoft365Opal`, `microsoft365BizChat`, `unknownFutureValue`. Read-only.| -|storageInGB|Int32|The size of the OS Disk in GB. Read-only.| +|storageInGB|Int32|The size of the operating system disk in GB. Read-only.| |type|[cloudPcServicePlanType](#cloudpcserviceplantype-values)|The type of the service plan. The possible values are: `enterprise`, `business`, `unknownFutureValue`. Read-only.| |userProfileInGB|Int32|The size of the user profile disk in GB. Read-only.| |vCpuCount|Int32|The number of vCPUs. Read-only.| diff --git a/api-reference/beta/resources/virtualendpoint.md b/api-reference/beta/resources/virtualendpoint.md index 9a2d4926b91..b5c008b5831 100644 --- a/api-reference/beta/resources/virtualendpoint.md +++ b/api-reference/beta/resources/virtualendpoint.md @@ -37,7 +37,7 @@ Inherits from [entity](../resources/entity.md). |[Create user setting](../api/virtualendpoint-post-usersettings.md)|[cloudPcUserSetting](../resources/cloudpcusersetting.md)|Create a new cloudPcUserSetting object.| |[List audit events](../api/virtualendpoint-list-auditevents.md)|[cloudPcAuditEvent](../resources/cloudpcauditevent.md) collection|List properties and relationships of the [cloudPcAuditEvent](../resources/cloudpcauditevent.md) objects.| |[List supported regions](../api/virtualendpoint-list-supportedregions.md)|[cloudPcSupportedRegion](../resources/cloudpcsupportedregion.md) collection|List properties and relationships of the [cloudPcSupportedRegion](../resources/cloudpcsupportedregion.md) objects.| -|[List service plans](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List properties and relationships of the [cloudPcServicePlan](../resources/cloudpcserviceplan.md) objects.| +|[List service plans](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs.| |[List external partners](../api/virtualendpoint-list-externalpartners.md)|[cloudPcExternalPartner](../resources/cloudpcexternalpartner.md) collection|Get a list of the [cloudPcExternalPartner](../resources/cloudpcexternalpartner.md) objects and their properties.| |[Create external partner](../api/virtualendpoint-post-externalpartners.md)|[cloudPcExternalPartner](../resources/cloudpcexternalpartner.md)|Create a new [cloudPcExternalPartner](../resources/cloudpcexternalpartner.md) object.| |[List frontline service plans](../api/virtualendpoint-list-frontlineserviceplans.md) |[cloudPcFrontLineServicePlan](../resources/cloudpcfrontlineserviceplan.md) collection|Get a list of the [cloudPcFrontLineServicePlan](../resources/cloudpcfrontlineserviceplan.md) objects and their properties.| diff --git a/api-reference/v1.0/api/virtualendpoint-list-serviceplans.md b/api-reference/v1.0/api/virtualendpoint-list-serviceplans.md new file mode 100644 index 00000000000..8f59e8ef418 --- /dev/null +++ b/api-reference/v1.0/api/virtualendpoint-list-serviceplans.md @@ -0,0 +1,95 @@ +--- +title: "List servicePlans" +description: "List the currently available service plans that an organization can purchase for their Cloud PCs." +author: "johnnyjiang1" +ms.localizationpriority: medium +ms.subservice: "cloud-pc" +doc_type: apiPageType +ms.date: 06/08/2026 +--- + +# List servicePlans + +Namespace: microsoft.graph + +List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs. + +For examples of currently available service plans, see [Windows 365 compare plans and pricing](https://www.microsoft.com/windows-365/business/compare-plans-pricing). Currently, the Microsoft Graph API is available for Windows 365 Enterprise. + +## 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](/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). + + +[!INCLUDE [permissions-table](../includes/permissions/virtualendpoint-list-serviceplans-permissions.md)] + +## HTTP request + + + +```http +GET /deviceManagement/virtualEndpoint/servicePlans +``` + +## Optional query parameters + +This method doesn't support OData query parameters to customize the response. For general information, see [OData query parameters](/graph/query-parameters). + +## Request headers + +| Name | Description | +| :------------ | :------------------------ | +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## 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 [cloudPcServicePlan](../resources/cloudpcserviceplan.md) objects in the response body. + +## Example + +### Request +The following example shows a request. + + +```msgraph-interactive +GET https://graph.microsoft.com/v1.0/deviceManagement/virtualEndpoint/servicePlans +``` + +### Response +The following example shows the response. + + +```http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "value": [ + { + "@odata.type": "#microsoft.graph.cloudPcServicePlan", + "id": "dea1edd3-edd3-dea1-d3ed-a1ded3eda1de", + "displayName": "Cloud PC - Level 1 - 1vCPU/2GB", + "vCpuCount": 1, + "ramInGB": 2, + "storageInGB": 64 + } + ] +} +``` diff --git a/api-reference/v1.0/includes/permissions/virtualendpoint-list-serviceplans-permissions.md b/api-reference/v1.0/includes/permissions/virtualendpoint-list-serviceplans-permissions.md new file mode 100644 index 00000000000..1a8dccc7f27 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/virtualendpoint-list-serviceplans-permissions.md @@ -0,0 +1,11 @@ +--- +description: "Automatically generated file. DO NOT MODIFY" +ms.topic: include +ms.localizationpriority: medium +--- + +|Permission type|Least privileged permissions|Higher privileged permissions| +|:---|:---|:---| +|Delegated (work or school account)|CloudPC.Read.All|CloudPC.ReadWrite.All| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|CloudPC.Read.All|CloudPC.ReadWrite.All| diff --git a/api-reference/v1.0/resources/cloudpcserviceplan.md b/api-reference/v1.0/resources/cloudpcserviceplan.md new file mode 100644 index 00000000000..e7420e0fa57 --- /dev/null +++ b/api-reference/v1.0/resources/cloudpcserviceplan.md @@ -0,0 +1,60 @@ +--- +title: "cloudPcServicePlan resource type" +description: "Represents a Windows 365 service plan that can be purchased and configured for a Cloud PC." +author: "johnnyjiang1" +ms.localizationpriority: medium +ms.subservice: "cloud-pc" +doc_type: resourcePageType +ms.date: 06/08/2026 +--- + +# cloudPcServicePlan resource type + +Namespace: microsoft.graph + +Represents a Windows 365 service plan that can be purchased and configured for a Cloud PC. + +For examples of currently available service plans, see [Windows 365 compare plans and pricing](https://www.microsoft.com/windows-365/business/compare-plans-pricing). Currently, the Microsoft Graph API is available for Windows 365 Enterprise. + +## Methods + +|Method|Return type|Description| +|:---|:---|:---| +|[List](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs.| + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|displayName|String|The name for the service plan. Read-only.| +|id|String|Unique identifier for the service plan. Read-only.| +|ramInGB|Int32|The size of the RAM in GB. Read-only.| +|storageInGB|Int32|The size of the operating system disk in GB. Read-only.| +|vCpuCount|Int32|The number of vCPUs. Read-only.| + +## Relationships + +None. + +## JSON representation + +The following JSON representation shows the resource type. + + +``` json +{ + "@odata.type": "#microsoft.graph.cloudPcServicePlan", + "displayName": "String", + "id": "String (identifier)", + "ramInGB": "Int32", + "storageInGB": "Int32", + "vCpuCount": "Int32" +} +``` diff --git a/api-reference/v1.0/resources/virtualendpoint.md b/api-reference/v1.0/resources/virtualendpoint.md index 3efa4eb8685..86fe8d85c7f 100644 --- a/api-reference/v1.0/resources/virtualendpoint.md +++ b/api-reference/v1.0/resources/virtualendpoint.md @@ -28,6 +28,7 @@ Inherits from [entity](../resources/entity.md). |[List deviceImages](../api/virtualendpoint-list-deviceimages.md)|[cloudPcDeviceImage](../resources/cloudpcdeviceimage.md) collection|List the properties and relationships of [cloudPcDeviceImage](../resources/cloudpcdeviceimage.md) objects (operating system images) uploaded to Cloud PC.| |[List galleryImages](../api/virtualendpoint-list-galleryimages.md)|[cloudPcGalleryImage](../resources/cloudpcgalleryimage.md) collection|List the properties and relationships of [cloudPcGalleryImage](../resources/cloudpcgalleryimage.md) objects.| |[List provisioningPolicies](../api/virtualendpoint-list-provisioningpolicies.md)|[cloudPcProvisioningPolicy](../resources/cloudpcprovisioningpolicy.md) collection|List properties and relationships of the [cloudPcProvisioningPolicy](../resources/cloudpcprovisioningpolicy.md) objects.| +|[List service plans](../api/virtualendpoint-list-serviceplans.md)|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|List the currently available [service plans](../resources/cloudpcserviceplan.md) that an organization can purchase for their Cloud PCs.| |[List userSettings](../api/virtualendpoint-list-usersettings.md)|[cloudPcUserSetting](../resources/cloudpcusersetting.md) collection|Get a list of [cloudPcUserSetting](../resources/cloudpcusersetting.md) objects and their properties.| |[Create cloudPcDeviceImage](../api/virtualendpoint-post-deviceimages.md)|[cloudPcDeviceImage](../resources/cloudpcdeviceimage.md)|Create a new [cloudPcDeviceImage](../resources/cloudpcdeviceimage.md) object.| |[Create cloudPcProvisioningPolicy](../api/virtualendpoint-post-provisioningpolicies.md)|[cloudPcProvisioningPolicy](../resources/cloudpcprovisioningpolicy.md)|Create a new [cloudPcProvisioningPolicy](../resources/cloudpcprovisioningpolicy.md) object.| @@ -51,6 +52,7 @@ Inherits from [entity](../resources/entity.md). |onPremisesConnections|[cloudPcOnPremisesConnection](../resources/cloudpconpremisesconnection.md) collection|A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs.| |provisioningPolicies|[cloudPcProvisioningPolicy](../resources/cloudpcprovisioningpolicy.md) collection|A collection of Cloud PC provisioning policies.| |report|[cloudPcReport](../resources/cloudpcreport.md)|Cloud PC-related reports. Read-only.| +|servicePlans|[cloudPcServicePlan](../resources/cloudpcserviceplan.md) collection|A collection of Cloud PC service plans.| |userSettings|[cloudPcUserSetting](../resources/cloudpcusersetting.md) collection|A collection of Cloud PC user settings. | ## JSON representation diff --git a/api-reference/v1.0/toc/device-and-app-management/toc.yml b/api-reference/v1.0/toc/device-and-app-management/toc.yml index 462adf89b84..4171ba2e7f4 100644 --- a/api-reference/v1.0/toc/device-and-app-management/toc.yml +++ b/api-reference/v1.0/toc/device-and-app-management/toc.yml @@ -165,6 +165,12 @@ items: href: ../../resources/cloudpcreport.md - name: Retrieve Cloud PC recommendation reports href: ../../api/cloudpcreport-retrievecloudpcrecommendationreports.md + - name: Cloud PC service plan + items: + - name: Cloud PC service plan + href: ../../resources/cloudpcserviceplan.md + - name: List + href: ../../api/virtualendpoint-list-serviceplans.md - name: Cloud PC user setting items: - name: Cloud PC user setting diff --git a/api-reference/v1.0/toc/toc.mapping.json b/api-reference/v1.0/toc/toc.mapping.json index 15e5ff6911f..27a7f7488c2 100644 --- a/api-reference/v1.0/toc/toc.mapping.json +++ b/api-reference/v1.0/toc/toc.mapping.json @@ -475,6 +475,7 @@ "cloudPcGalleryImage", "cloudPcProvisioningPolicy", "cloudPcReport", + "cloudPcServicePlan", "cloudPcUserSetting" ], "complexTypes": [ diff --git a/changelog/Microsoft.CloudManagedDesktop.json b/changelog/Microsoft.CloudManagedDesktop.json index 577cd99de40..42630f971cf 100644 --- a/changelog/Microsoft.CloudManagedDesktop.json +++ b/changelog/Microsoft.CloudManagedDesktop.json @@ -1,5 +1,31 @@ { "changelog": [ + { + "ChangeList": [ + { + "Id": "1d8ecff7-b00e-4385-8b7a-81819b66c86b", + "ApiChange": "Resource", + "ChangedApiName": "cloudPcServicePlan", + "ChangeType": "Addition", + "Description": "Added the [cloudPcServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcserviceplan?view=graph-rest-1.0) resource and an associated method.", + "Target": "cloudPcServicePlan" + }, + { + "Id": "1d8ecff7-b00e-4385-8b7a-81819b66c86b", + "ApiChange": "Relationship", + "ChangedApiName": "servicePlans", + "ChangeType": "Addition", + "Description": "Added the **servicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", + "Target": "virtualEndpoint" + } + ], + "Id": "1d8ecff7-b00e-4385-8b7a-81819b66c86b", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2026-07-16T07:43:44.9898073Z", + "WorkloadArea": "Device and app management", + "SubArea": "Cloud PC" + }, { "ChangeList": [ { @@ -7,7 +33,7 @@ "ApiChange": "Enumeration", "ChangedApiName": "cloudPcOrganizationActionStatus", "ChangeType": "Addition", - "Description": "Added the [cloudPcOrganizationActionStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) enumeration type.", + "Description": "Added the **cloudPcOrganizationActionStatus** enumeration type.", "Target": "cloudPcOrganizationActionStatus" }, { @@ -15,7 +41,7 @@ "ApiChange": "Enumeration", "ChangedApiName": "cloudPcOrganizationActionType", "ChangeType": "Addition", - "Description": "Added the [cloudPcOrganizationActionType](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) enumeration type.", + "Description": "Added the **cloudPcOrganizationActionType** enumeration type.", "Target": "cloudPcOrganizationActionType" }, { @@ -23,7 +49,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOrganizationActionDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcOrganizationActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationactiondetail?view=graph-rest-beta) resource.", + "Description": "Added the **cloudPcOrganizationActionDetail** resource.", "Target": "cloudPcOrganizationActionDetail" }, { @@ -31,7 +57,7 @@ "ApiChange": "Method", "ChangedApiName": "organizationAction", "ChangeType": "Addition", - "Description": "Added the [organizationAction](https://learn.microsoft.com/en-us/graph/api/cloudpc-organizationaction?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **organizationAction** method to the **cloudPC** resource.", "Target": "cloudPC" }, { @@ -39,7 +65,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveOrganizationActionDetail", "ChangeType": "Addition", - "Description": "Added the [retrieveOrganizationActionDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrieveorganizationactiondetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **retrieveOrganizationActionDetail** method to the **cloudPC** resource.", "Target": "cloudPC" } ], @@ -57,7 +83,7 @@ "ApiChange": "Property", "ChangedApiName": "lastLogoffDateTime", "ChangeType": "Addition", - "Description": "Added the **lastLogoffDateTime** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **lastLogoffDateTime** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -75,7 +101,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcNotificationSetting", "ChangeType": "Deprecation", - "Description": "Deprecated the [cloudPcNotificationSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcNotificationSetting?view=graph-rest-beta) resource. This resource will stop returning data on July 14, 2026.", + "Description": "Deprecated the [cloudPcNotificationSetting](https://learn.microsoft.com/graph/api/resources/cloudpcnotificationsetting?view=graph-rest-beta) resource. This resource will stop returning data on July 14, 2026.", "Target": "cloudPcNotificationSetting" }, { @@ -83,7 +109,7 @@ "ApiChange": "Property", "ChangedApiName": "notificationSetting", "ChangeType": "Deprecation", - "Description": "Deprecated the **notificationSetting** property on [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcUserSetting?view=graph-rest-beta) resource. This property will stop returning data on July 14, 2026.", + "Description": "Deprecated the **notificationSetting** property on [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource. This property will stop returning data on July 14, 2026.", "Target": "cloudPcUserSetting" } ], @@ -101,7 +127,7 @@ "ApiChange": "Property", "ChangedApiName": "isForceUserLogoffEnabled", "ChangeType": "Addition", - "Description": "Added the **isForceUserLogoffEnabled** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcpolicyscheduledapplyactiondetail?view=graph-rest-beta) resource.", + "Description": "Added the **isForceUserLogoffEnabled** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/graph/api/resources/cloudpcpolicyscheduledapplyactiondetail?view=graph-rest-beta) resource.", "Target": "cloudPcPolicyScheduledApplyActionDetail" }, { @@ -109,7 +135,7 @@ "ApiChange": "Parameter", "ChangedApiName": "isForceUserLogoffEnabled", "ChangeType": "Addition", - "Description": "Added the **isForceUserLogoffEnabled** parameter to the [apply](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method.", + "Description": "Added the **isForceUserLogoffEnabled** parameter to the [apply](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method.", "Target": "apply" }, { @@ -117,7 +143,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPolicyPendingApplyStatusResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcPolicyPendingApplyStatusResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcpolicypendingapplystatusresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcPolicyPendingApplyStatusResult](https://learn.microsoft.com/graph/api/resources/cloudpcpolicypendingapplystatusresult?view=graph-rest-beta) resource type.", "Target": "cloudPcPolicyPendingApplyStatusResult" }, { @@ -125,7 +151,7 @@ "ApiChange": "Method", "ChangedApiName": "retrievePolicyUpdateStatusResult", "ChangeType": "Addition", - "Description": "Added the [retrievePolicyUpdateStatusResult](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-retrievepolicyupdatestatusresult?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the [retrievePolicyUpdateStatusResult](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-retrievepolicyupdatestatusresult?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -159,7 +185,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAutomaticDiscoveredAppDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcAutomaticDiscoveredAppDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAutomaticDiscoveredAppDetail?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcAutomaticDiscoveredAppDetail](https://learn.microsoft.com/graph/api/resources/cloudpcautomaticdiscoveredappdetail?view=graph-rest-beta) resource.", "Target": "cloudPcAutomaticDiscoveredAppDetail" }, { @@ -167,7 +193,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcFilePathAppDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcFilePathAppDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFilePathAppDetail?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcFilePathAppDetail](https://learn.microsoft.com/graph/api/resources/cloudpcfilepathappdetail?view=graph-rest-beta) resource.", "Target": "cloudPcFilePathAppDetail" } ], @@ -525,7 +551,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPool", "ChangeType": "Addition", - "Description": "Added the [cloudPcPool](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcPool?view=graph-rest-beta) resource and associated methods.", + "Description": "Added the [cloudPcPool](https://learn.microsoft.com/graph/api/resources/cloudpcpool?view=graph-rest-beta) resource and associated methods.", "Target": "cloudPcPool" }, { @@ -533,7 +559,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPool", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPool](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPool?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPool](https://learn.microsoft.com/graph/api/resources/cloudpcagentpool?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPool" }, { @@ -541,7 +567,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPoolAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcPoolAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcPoolAssignment?view=graph-rest-beta) resource and associated methods.", + "Description": "Added the [cloudPcPoolAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcpoolassignment?view=graph-rest-beta) resource and associated methods.", "Target": "cloudPcPoolAssignment" }, { @@ -549,7 +575,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPoolUserAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolUserAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolUserAssignment?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPoolUserAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcagentpooluserassignment?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPoolUserAssignment" }, { @@ -557,7 +583,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcConfiguration" }, { @@ -565,7 +591,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcNetworkConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcNetworkConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcNetworkConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcNetworkConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcnetworkconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcNetworkConfiguration" }, { @@ -573,7 +599,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcMicrosoftHostedNetworkConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcMicrosoftHostedNetworkConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcMicrosoftHostedNetworkConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcMicrosoftHostedNetworkConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcmicrosofthostednetworkconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcMicrosoftHostedNetworkConfiguration" }, { @@ -581,7 +607,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcRegionGroupConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcRegionGroupConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRegionGroupConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcRegionGroupConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcregiongroupconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcRegionGroupConfiguration" }, { @@ -589,7 +615,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPoolBillingConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolBillingConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolBillingConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPoolBillingConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcagentpoolbillingconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPoolBillingConfiguration" }, { @@ -597,7 +623,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPoolScalingPolicy", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolScalingPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolScalingPolicy?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPoolScalingPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcagentpoolscalingpolicy?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPoolScalingPolicy" }, { @@ -605,7 +631,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPoolSessionUsage", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolSessionUsage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolSessionUsage?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPoolSessionUsage](https://learn.microsoft.com/graph/api/resources/cloudpcagentpoolsessionusage?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPoolSessionUsage" }, { @@ -613,7 +639,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPoolCapabilityConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcPoolCapabilityConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcPoolCapabilityConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcPoolCapabilityConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcpoolcapabilityconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcPoolCapabilityConfiguration" }, { @@ -621,7 +647,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentPoolCapabilityConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolCapabilityConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolCapabilityConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentPoolCapabilityConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcagentpoolcapabilityconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentPoolCapabilityConfiguration" }, { @@ -629,7 +655,7 @@ "ApiChange": "Enumeration", "ChangedApiName": "cloudPcAgentPoolBillingType", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentPoolBillingType](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentPoolBillingConfiguration?view=graph-rest-beta#cloudpcagentpoolbillingtype-values) enumeration type.", + "Description": "Added the [cloudPcAgentPoolBillingType](https://learn.microsoft.com/graph/api/resources/cloudpcagentpoolbillingconfiguration?view=graph-rest-beta#cloudpcagentpoolbillingtype-values) enumeration type.", "Target": "cloudPcAgentPoolBillingType" }, { @@ -637,7 +663,7 @@ "ApiChange": "Relationship", "ChangedApiName": "cloudPcPools", "ChangeType": "Addition", - "Description": "Added the **cloudPcPools** navigation property to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Added the **cloudPcPools** navigation property to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -645,7 +671,7 @@ "ApiChange": "Relationship", "ChangedApiName": "cloudPcPools", "ChangeType": "Addition", - "Description": "Added the **cloudPcPools** navigation property to the [user](https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-beta) resource.", + "Description": "Added the **cloudPcPools** navigation property to the [user](https://learn.microsoft.com/graph/api/resources/user?view=graph-rest-beta) resource.", "Target": "user" } ], @@ -663,7 +689,7 @@ "ApiChange": "Method", "ChangedApiName": "updateAdDomainPassword", "ChangeType": "Addition", - "Description": "Added the [updateAdDomainPassword](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-1.0) resource.", + "Description": "Added the [updateAdDomainPassword](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -671,7 +697,7 @@ "ApiChange": "Property", "ChangedApiName": "inUseByCloudPc", "ChangeType": "Addition", - "Description": "Added the **inUseByCloudPc** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-1.0) resource.", + "Description": "Added the **inUseByCloudPc** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -679,7 +705,7 @@ "ApiChange": "Property", "ChangedApiName": "healthCheckPaused", "ChangeType": "Addition", - "Description": "Added the **healthCheckPaused** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-1.0) resource.", + "Description": "Added the **healthCheckPaused** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -687,7 +713,7 @@ "ApiChange": "Property", "ChangedApiName": "scopeIds", "ChangeType": "Addition", - "Description": "Added the **scopeIds** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-1.0) resource.", + "Description": "Added the **scopeIds** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -705,7 +731,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionSubnetIpDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionSubnetIpDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnectionsubnetipdetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionSubnetIpDetail](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionsubnetipdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcOnPremisesConnectionSubnetIpDetail" }, { @@ -713,7 +739,7 @@ "ApiChange": "Property", "ChangedApiName": "subnetPrivateIpDetail", "ChangeType": "Addition", - "Description": "Added the **subnetPrivateIpDetail** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **subnetPrivateIpDetail** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -749,7 +775,7 @@ "ApiChange": "Property", "ChangedApiName": "scopeIds", "ChangeType": "Addition", - "Description": "Added the **scopeIds** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-beta) resource.", + "Description": "Added the **scopeIds** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -767,7 +793,7 @@ "ApiChange": "Property", "ChangedApiName": "osVersionNumber", "ChangeType": "Addition", - "Description": "Added the **osVersionNumber** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-1.0) resource.", + "Description": "Added the **osVersionNumber** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-1.0) resource.", "Target": "cloudPcDeviceImage" }, { @@ -775,7 +801,7 @@ "ApiChange": "Property", "ChangedApiName": "sizeInGB", "ChangeType": "Addition", - "Description": "Added the **sizeInGB** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-1.0) resource.", + "Description": "Added the **sizeInGB** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-1.0) resource.", "Target": "cloudPcDeviceImage" }, { @@ -783,7 +809,7 @@ "ApiChange": "Property", "ChangedApiName": "osVersionNumber", "ChangeType": "Addition", - "Description": "Added the **osVersionNumber** property to the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcgalleryimage?view=graph-rest-1.0) resource.", + "Description": "Added the **osVersionNumber** property to the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-1.0) resource.", "Target": "cloudPcGalleryImage" } ], @@ -859,7 +885,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartnerActionReport", "ChangeType": "Addition", - "Description": "Added the [cloudPcExternalPartnerActionReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartnerActionReport?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcExternalPartnerActionReport](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartneractionreport?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartnerActionReport" }, { @@ -867,7 +893,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartnerActionResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcExternalPartnerActionResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartnerActionResult?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcExternalPartnerActionResult](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartneractionresult?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartnerActionResult" }, { @@ -875,7 +901,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartnerAgentSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcExternalPartnerAgentSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartnerAgentSetting?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcExternalPartnerAgentSetting](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartneragentsetting?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartnerAgentSetting" }, { @@ -883,7 +909,7 @@ "ApiChange": "Property", "ChangedApiName": "agentSetting", "ChangeType": "Addition", - "Description": "Added the **agentSetting** property to the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the **agentSetting** property to the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" }, { @@ -891,7 +917,7 @@ "ApiChange": "Method", "ChangedApiName": "configureAgent", "ChangeType": "Addition", - "Description": "Added the [configureAgent](https://learn.microsoft.com/en-us/graph/api/cloudPcExternalPartner-configureAgent?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the [configureAgent](https://learn.microsoft.com/graph/api/cloudpcexternalpartner-configureagent?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" }, { @@ -899,7 +925,7 @@ "ApiChange": "Method", "ChangedApiName": "deployAgent", "ChangeType": "Addition", - "Description": "Added the [deployAgent](https://learn.microsoft.com/en-us/graph/api/cloudPcExternalPartner-deployAgent?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the [deployAgent](https://learn.microsoft.com/graph/api/cloudpcexternalpartner-deployagent?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" }, { @@ -907,7 +933,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveActionReports", "ChangeType": "Addition", - "Description": "Added the [retrieveActionReports](https://learn.microsoft.com/en-us/graph/api/cloudPcExternalPartner-retrieveActionReports?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveActionReports](https://learn.microsoft.com/graph/api/cloudpcexternalpartner-retrieveactionreports?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" }, { @@ -915,7 +941,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveDeployAgentActionResults", "ChangeType": "Addition", - "Description": "Added the [retrieveDeployAgentActionResults](https://learn.microsoft.com/en-us/graph/api/cloudPcExternalPartner-retrieveDeployAgentActionResults?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveDeployAgentActionResults](https://learn.microsoft.com/graph/api/cloudpcexternalpartner-retrievedeployagentactionresults?view=graph-rest-beta) method to the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" } ], @@ -933,7 +959,7 @@ "ApiChange": "Method", "ChangedApiName": "retryUpload", "ChangeType": "Addition", - "Description": "Added the [retryUpload](https://learn.microsoft.com/en-us/graph/api/cloudpcdeviceimage-retryupload?view=graph-rest-beta) method to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the [retryUpload](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-retryupload?view=graph-rest-beta) method to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -941,7 +967,7 @@ "ApiChange": "Method", "ChangedApiName": "reupload", "ChangeType": "Deprecation", - "Description": "Deprecated the [reupload](https://learn.microsoft.com/en-us/graph/api/cloudpcdeviceimage-reupload?view=graph-rest-beta) method on the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource. Going forward, use the [retryUpload](https://learn.microsoft.com/en-us/graph/api/cloudpcdeviceimage-retryupload?view=graph-rest-beta) API instead.", + "Description": "Deprecated the [reupload](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-reupload?view=graph-rest-beta) method on the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource. Going forward, use the [retryUpload](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-retryupload?view=graph-rest-beta) API instead.", "Target": "cloudPcDeviceImage" } ], @@ -1021,7 +1047,7 @@ "ApiChange": "Property", "ChangedApiName": "category", "ChangeType": "Addition", - "Description": "Added the **category** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcSourceDeviceImage?view=graph-rest-beta) resource.", + "Description": "Added the **category** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcSourceDeviceImage" } ], @@ -1039,7 +1065,7 @@ "ApiChange": "Method", "ChangedApiName": "retry", "ChangeType": "Addition", - "Description": "Added the [retry](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-retry?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the [retry](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-retry?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -1047,7 +1073,7 @@ "ApiChange": "Property", "ChangedApiName": "applicationTimeoutInMinutes", "ChangeType": "Change", - "Description": "Updated the supported value range for the **applicationTimeoutInMinutes** property on [cloudPcAutopilotConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAutopilotConfiguration?view=graph-rest-beta) from 10–360 to 30–360.", + "Description": "Updated the supported value range for the **applicationTimeoutInMinutes** property on [cloudPcAutopilotConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcautopilotconfiguration?view=graph-rest-beta) from 10–360 to 30–360.", "Target": "cloudPcAutopilotConfiguration" } ], @@ -1081,7 +1107,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovision", "ChangeType": "Addition", - "Description": "Added the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-1.0) resource.", + "Description": "Added the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-1.0) resource.", "Target": "cloudPC" } ], @@ -1107,7 +1133,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcReport", "ChangeType": "Addition", - "Description": "Added the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReport?view=graph-rest-1.0) resource.", + "Description": "Added the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-1.0) resource.", "Target": "cloudPcReport" }, { @@ -1115,7 +1141,7 @@ "ApiChange": "Relationship", "ChangedApiName": "report", "ChangeType": "Addition", - "Description": "Added the **report** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **report** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -1123,7 +1149,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcRecommendationReports", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReport-retrieveCloudPcRecommendationReports?view=graph-rest-1.0) method to the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReport?view=graph-rest-1.0) resource.", + "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreport-retrievecloudpcrecommendationreports?view=graph-rest-1.0) method to the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-1.0) resource.", "Target": "cloudPcReport" } ], @@ -1141,7 +1167,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcLaunchDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchdetail?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcLaunchDetail](https://learn.microsoft.com/graph/api/resources/cloudpclaunchdetail?view=graph-rest-1.0) resource type.", "Target": "cloudPcLaunchDetail" }, { @@ -1149,7 +1175,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcLaunchDetail", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-1.0) resource.", + "Description": "Added the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-1.0) resource.", "Target": "cloudPC" } ], @@ -1175,7 +1201,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcClientAppUsageReport", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcClientAppUsageReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreport-retrievecloudpcclientappusagereport?view=graph-rest-beta) method to the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreport?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcClientAppUsageReport](https://learn.microsoft.com/graph/api/cloudpcreport-retrievecloudpcclientappusagereport?view=graph-rest-beta) method to the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-beta) resource.", "Target": "cloudPcReport" } ], @@ -1193,7 +1219,7 @@ "ApiChange": "Property", "ChangedApiName": "sessionStartDateTime", "ChangeType": "Addition", - "Description": "Added the **sessionStartDateTime** property to the [cloudPcFrontlineSharedDeviceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcfrontlineshareddevicedetail?view=graph-rest-beta) resource.", + "Description": "Added the **sessionStartDateTime** property to the [cloudPcFrontlineSharedDeviceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineshareddevicedetail?view=graph-rest-beta) resource.", "Target": "cloudPcFrontlineSharedDeviceDetail" } ], @@ -1219,7 +1245,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPCUserSettingsPersistenceDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingspersistencedetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistencedetail?view=graph-rest-beta) resource type.", "Target": "cloudPCUserSettingsPersistenceDetail" }, { @@ -1227,7 +1253,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPCUserSettingsPersistenceProfile", "ChangeType": "Addition", - "Description": "Added the [cloudPCUserSettingsPersistenceProfile](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingspersistenceprofile?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPCUserSettingsPersistenceProfile](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistenceprofile?view=graph-rest-beta) resource type.", "Target": "cloudPCUserSettingsPersistenceProfile" }, { @@ -1235,7 +1261,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPCUserSettingsPersistenceUsageResult", "ChangeType": "Addition", - "Description": "Added the [cloudPCUserSettingsPersistenceUsageResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingspersistenceusageresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPCUserSettingsPersistenceUsageResult](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistenceusageresult?view=graph-rest-beta) resource type.", "Target": "cloudPCUserSettingsPersistenceUsageResult" }, { @@ -1243,7 +1269,7 @@ "ApiChange": "Method", "ChangedApiName": "batchCleanupUserSettingsPersistenceProfile", "ChangeType": "Addition", - "Description": "Added the [batchCleanupUserSettingsPersistenceProfile](https://learn.microsoft.com/en-us/graph/api/cloudpcusersettingspersistencedetail-batchcleanupusersettingspersistenceprofile?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPCUserSettingsPersistenceDetail?view=graph-rest-beta) resource.", + "Description": "Added the [batchCleanupUserSettingsPersistenceProfile](https://learn.microsoft.com/graph/api/cloudpcusersettingspersistencedetail-batchcleanupusersettingspersistenceprofile?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistencedetail?view=graph-rest-beta) resource.", "Target": "cloudPCUserSettingsPersistenceDetail" }, { @@ -1251,7 +1277,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveUserSettingsPersistenceProfiles", "ChangeType": "Addition", - "Description": "Added the [retrieveUserSettingsPersistenceProfiles](https://learn.microsoft.com/en-us/graph/api/cloudpcusersettingspersistencedetail-retrieveusersettingspersistenceprofiles?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPCUserSettingsPersistenceDetail?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveUserSettingsPersistenceProfiles](https://learn.microsoft.com/graph/api/cloudpcusersettingspersistencedetail-retrieveusersettingspersistenceprofiles?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistencedetail?view=graph-rest-beta) resource.", "Target": "cloudPCUserSettingsPersistenceDetail" }, { @@ -1259,7 +1285,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveUserSettingsPersistenceProfileUsage", "ChangeType": "Addition", - "Description": "Added the [retrieveUserSettingsPersistenceProfileUsage](https://learn.microsoft.com/en-us/graph/api/cloudpcusersettingspersistencedetail-retrieveusersettingspersistenceprofileusage?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPCUserSettingsPersistenceDetail?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveUserSettingsPersistenceProfileUsage](https://learn.microsoft.com/graph/api/cloudpcusersettingspersistencedetail-retrieveusersettingspersistenceprofileusage?view=graph-rest-beta) method to the [cloudPCUserSettingsPersistenceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistencedetail?view=graph-rest-beta) resource.", "Target": "cloudPCUserSettingsPersistenceDetail" }, { @@ -1267,7 +1293,7 @@ "ApiChange": "Relationship", "ChangedApiName": "userSettingsPersistenceDetail", "ChangeType": "Addition", - "Description": "Added the **userSettingsPersistenceDetail** relationship to the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-beta) resource.", + "Description": "Added the **userSettingsPersistenceDetail** relationship to the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicyAssignment" } ], @@ -1317,7 +1343,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcReport", "ChangeType": "Addition", - "Description": "Added the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReport?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-beta) resource.", "Target": "cloudPcReport" }, { @@ -1325,7 +1351,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcReports", "ChangeType": "Deprecation", - "Description": "Deprecated the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource. This resource is deprecated and will stop returning data on December 31, 2026. Going forward, use the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReport?view=graph-rest-beta) resource instead.", + "Description": "Deprecated the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource. This resource is deprecated and will stop returning data on December 31, 2026. Going forward, use the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-beta) resource instead.", "Target": "cloudPcReports" }, { @@ -1333,7 +1359,7 @@ "ApiChange": "Relationship", "ChangedApiName": "report", "ChangeType": "Addition", - "Description": "Added the **report** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Added the **report** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -1341,7 +1367,7 @@ "ApiChange": "Relationship", "ChangedApiName": "reports", "ChangeType": "Deprecation", - "Description": "Deprecated the **reports** relationship from the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Deprecated the **reports** relationship from the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -1349,7 +1375,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcRecommendationReports", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReport-retrieveCloudPcRecommendationReports?view=graph-rest-beta) method to the [cloudPcReport](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReport?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreport-retrievecloudpcrecommendationreports?view=graph-rest-beta) method to the [cloudPcReport](https://learn.microsoft.com/graph/api/resources/cloudpcreport?view=graph-rest-beta) resource.", "Target": "cloudPcReport" }, { @@ -1357,7 +1383,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcRecommendationReports", "ChangeType": "Deprecation", - "Description": "Deprecated the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-retrieveCloudPcRecommendationReports?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on December 31, 2025. Going forward, use the [cloudPcReport: retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReport-retrieveCloudPcRecommendationReports?view=graph-rest-beta) API.", + "Description": "Deprecated the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpcrecommendationreports?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on December 31, 2025. Going forward, use the [cloudPcReport: retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreport-retrievecloudpcrecommendationreports?view=graph-rest-beta) API.", "Target": "cloudPcReports" } ], @@ -1383,7 +1409,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserSettingsPersistenceConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserSettingsPersistenceConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingspersistenceconfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcUserSettingsPersistenceConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingspersistenceconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcUserSettingsPersistenceConfiguration" }, { @@ -1391,7 +1417,7 @@ "ApiChange": "Property", "ChangedApiName": "userSettingsPersistenceConfiguration", "ChangeType": "Addition", - "Description": "Added the **userSettingsPersistenceConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **userSettingsPersistenceConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -1435,7 +1461,7 @@ "ApiChange": "Resource", "ChangedApiName": "frontlineCloudPcDetail", "ChangeType": "Addition", - "Description": "Added the [frontlineCloudPcDetail](https://learn.microsoft.com/en-us/graph/api/resources/frontlinecloudpcdetail?view=graph-rest-beta) resource type.", + "Description": "Added the [frontlineCloudPcDetail](https://learn.microsoft.com/graph/api/resources/frontlinecloudpcdetail?view=graph-rest-beta) resource type.", "Target": "frontlineCloudPcDetail" }, { @@ -1443,7 +1469,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPC", "ChangeType": "Deprecation", - "Description": "Deprecated the **frontlineCloudPcAvailability** property of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Deprecated the **frontlineCloudPcAvailability** property of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -1451,7 +1477,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveFrontlineCloudPcDetail", "ChangeType": "Addition", - "Description": "Added the [retrieveFrontlineCloudPcDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievefrontlinecloudpcdetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveFrontlineCloudPcDetail](https://learn.microsoft.com/graph/api/cloudpc-retrievefrontlinecloudpcdetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -1493,7 +1519,7 @@ "ApiChange": "Method", "ChangedApiName": "importSnapshot", "ChangeType": "Addition", - "Description": "Added the [importSnapshot](https://learn.microsoft.com/en-us/graph/api/cloudpcsnapshot-importsnapshot?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the [importSnapshot](https://learn.microsoft.com/graph/api/cloudpcsnapshot-importsnapshot?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" }, { @@ -1501,7 +1527,7 @@ "ApiChange": "Method", "ChangedApiName": "purgeImportedSnapshot", "ChangeType": "Addition", - "Description": "Added the [purgeImportedSnapshot](https://learn.microsoft.com/en-us/graph/api/cloudpcsnapshot-purgeImportedSnapshot?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the [purgeImportedSnapshot](https://learn.microsoft.com/graph/api/cloudpcsnapshot-purgeimportedsnapshot?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" }, { @@ -1509,7 +1535,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveSnapshotImportResults", "ChangeType": "Addition", - "Description": "Added the [retrieveSnapshotImportResults](https://learn.microsoft.com/en-us/graph/api/cloudpcsnapshot-retrievesnapshotimportresults?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveSnapshotImportResults](https://learn.microsoft.com/graph/api/cloudpcsnapshot-retrievesnapshotimportresults?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" }, { @@ -1567,7 +1593,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcLaunchDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchdetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcLaunchDetail](https://learn.microsoft.com/graph/api/resources/cloudpclaunchdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcLaunchDetail" }, { @@ -1575,7 +1601,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcLaunchInfo", "ChangeType": "Deprecation", - "Description": "Deprecated the [cloudPcLaunchInfo](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource type. The **cloudPcLaunchInfo** resource is deprecated and will stop returning data on October 30, 2026. Going forward, use the [cloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchdetail?view=graph-rest-beta) API.", + "Description": "Deprecated the [cloudPcLaunchInfo](https://learn.microsoft.com/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource type. The **cloudPcLaunchInfo** resource is deprecated and will stop returning data on October 30, 2026. Going forward, use the [cloudPcLaunchDetail](https://learn.microsoft.com/graph/api/resources/cloudpclaunchdetail?view=graph-rest-beta) API.", "Target": "cloudPC" }, { @@ -1583,7 +1609,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcLaunchDetail", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -1591,7 +1617,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcLaunchInfo", "ChangeType": "Deprecation", - "Description": "Deprecated the [getCloudPcLaunchInfo](https://learn.microsoft.com/en-us/graph/api/cloudpc-getCloudPcLaunchInfo?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on October 30, 2026. Going forward, use the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-beta) API.", + "Description": "Deprecated the [getCloudPcLaunchInfo](https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on October 30, 2026. Going forward, use the [retrieveCloudPcLaunchDetail](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-beta) API.", "Target": "cloudPC" } ], @@ -1609,7 +1635,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartner", "ChangeType": "Addition", - "Description": "Added the [cloudPcExternalPartner](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartner?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcExternalPartner](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartner?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartner" }, { @@ -1617,7 +1643,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartnerSetting", "ChangeType": "Deprecation", - "Description": "Deprecated the [cloudPcExternalPartnerSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcExternalPartnerSetting?view=graph-rest-beta) resource.", + "Description": "Deprecated the [cloudPcExternalPartnerSetting](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartnersetting?view=graph-rest-beta) resource.", "Target": "cloudPcExternalPartnerSetting" }, { @@ -1625,7 +1651,7 @@ "ApiChange": "Relationship", "ChangedApiName": "externalPartners", "ChangeType": "Addition", - "Description": "Added the **externalPartners** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **externalPartners** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -1678,7 +1704,7 @@ "ApiChange": "Resource", "Target": "cloudPcManagedLicense", "ChangeType": "Addition", - "Description": "Added the [cloudPcManagedLicense](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcmanagedlicense?view=graph-rest-beta) resource and a supported method." + "Description": "Added the [cloudPcManagedLicense](https://learn.microsoft.com/graph/api/resources/cloudpcmanagedlicense?view=graph-rest-beta) resource and a supported method." }, { "Id": "4a7b1b7c-4a7b-4a7b-4a7b-4a7b1b7c4a7b", @@ -1702,7 +1728,7 @@ "ApiChange": "Relationship", "Target": "virtualEndpoint", "ChangeType": "Addition", - "Description": "Added the **managedLicenses** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource." + "Description": "Added the **managedLicenses** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource." } ], "Id": "4a7b1b7c-4a7b-4a7b-4a7b-4a7b1b7c4a7b", @@ -1727,7 +1753,7 @@ "ApiChange": "Property", "ChangedApiName": "createdBy", "ChangeType": "Addition", - "Description": "Added the **createdBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **createdBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -1735,7 +1761,7 @@ "ApiChange": "Property", "ChangedApiName": "createdDateTime", "ChangeType": "Addition", - "Description": "Added the **createdDateTime** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **createdDateTime** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -1743,7 +1769,7 @@ "ApiChange": "Property", "ChangedApiName": "lastModifiedBy", "ChangeType": "Addition", - "Description": "Added the **lastModifiedBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **lastModifiedBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -1751,7 +1777,7 @@ "ApiChange": "Property", "ChangedApiName": "lastModifiedDateTime", "ChangeType": "Addition", - "Description": "Added the **lastModifiedDateTime** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **lastModifiedDateTime** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -1769,7 +1795,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcConnectionSettings", "ChangeType": "Addition", - "Description": "Added the [cloudPcConnectionSettings](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcConnectionSettings?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcConnectionSettings](https://learn.microsoft.com/graph/api/resources/cloudpcconnectionsettings?view=graph-rest-beta) resource.", "Target": "cloudPcConnectionSettings" }, { @@ -1777,7 +1803,7 @@ "ApiChange": "Property", "ChangedApiName": "connectionSettings", "ChangeType": "Addition", - "Description": "Added the **connectionSettings** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **connectionSettings** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -1795,7 +1821,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcEntraGroupDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcEntraGroupDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcEntraGroupDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcEntraGroupDetail](https://learn.microsoft.com/graph/api/resources/cloudpcentragroupdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcEntraGroupDetail" }, { @@ -1803,7 +1829,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcEntraUserDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcEntraUserDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcEntraUserDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcEntraUserDetail](https://learn.microsoft.com/graph/api/resources/cloudpcentrauserdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcEntraUserDetail" }, { @@ -1811,7 +1837,7 @@ "ApiChange": "Property", "ChangedApiName": "groupDetail", "ChangeType": "Addition", - "Description": "Added the **groupDetail** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **groupDetail** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -1819,7 +1845,7 @@ "ApiChange": "Property", "ChangedApiName": "userDetail", "ChangeType": "Addition", - "Description": "Added the **userDetail** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **userDetail** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -2055,7 +2081,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcCloudApp", "ChangeType": "Addition", - "Description": "Added the [cloudPcCloudApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudApp?view=graph-rest-beta) resource type and associated methods.", + "Description": "Added the [cloudPcCloudApp](https://learn.microsoft.com/graph/api/resources/cloudpccloudapp?view=graph-rest-beta) resource type and associated methods.", "Target": "cloudPcCloudApp" }, { @@ -2063,7 +2089,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDiscoveredApp", "ChangeType": "Addition", - "Description": "Added the [cloudPcDiscoveredApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDiscoveredApp?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDiscoveredApp](https://learn.microsoft.com/graph/api/resources/cloudpcdiscoveredapp?view=graph-rest-beta) resource type.", "Target": "cloudPcDiscoveredApp" }, { @@ -2071,7 +2097,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcCloudAppDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcCloudAppDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudAppDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcCloudAppDetail](https://learn.microsoft.com/graph/api/resources/cloudpccloudappdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcCloudAppDetail" }, { @@ -2079,7 +2105,7 @@ "ApiChange": "Method", "ChangedApiName": "publish", "ChangeType": "Addition", - "Description": "Added the [publish](https://learn.microsoft.com/en-us/graph/api/cloudPcCloudApp-publish?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudApp?view=graph-rest-beta) resource.", + "Description": "Added the [publish](https://learn.microsoft.com/graph/api/cloudpccloudapp-publish?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/graph/api/resources/cloudpccloudapp?view=graph-rest-beta) resource.", "Target": "cloudPcCloudApp" }, { @@ -2087,7 +2113,7 @@ "ApiChange": "Method", "ChangedApiName": "unpublish", "ChangeType": "Addition", - "Description": "Added the [unpublish](https://learn.microsoft.com/en-us/graph/api/cloudPcCloudApp-unpublish?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudApp?view=graph-rest-beta) resource.", + "Description": "Added the [unpublish](https://learn.microsoft.com/graph/api/cloudpccloudapp-unpublish?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/graph/api/resources/cloudpccloudapp?view=graph-rest-beta) resource.", "Target": "cloudPcCloudApp" }, { @@ -2095,7 +2121,7 @@ "ApiChange": "Method", "ChangedApiName": "reset", "ChangeType": "Addition", - "Description": "Added the [reset](https://learn.microsoft.com/en-us/graph/api/cloudPcCloudApp-reset?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudApp?view=graph-rest-beta) resource.", + "Description": "Added the [reset](https://learn.microsoft.com/graph/api/cloudpccloudapp-reset?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/graph/api/resources/cloudpccloudapp?view=graph-rest-beta) resource.", "Target": "cloudPcCloudApp" }, { @@ -2103,7 +2129,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveDiscoveredApps", "ChangeType": "Addition", - "Description": "Added the [retrieveDiscoveredApps](https://learn.microsoft.com/en-us/graph/api/cloudPcCloudApp-retrieveDiscoveredApps?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCloudApp?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveDiscoveredApps](https://learn.microsoft.com/graph/api/cloudpccloudapp-retrievediscoveredapps?view=graph-rest-beta) method to the [cloudPcCloudApp](https://learn.microsoft.com/graph/api/resources/cloudpccloudapp?view=graph-rest-beta) resource.", "Target": "cloudPcCloudApp" }, { @@ -2111,7 +2137,7 @@ "ApiChange": "Property", "ChangedApiName": "userExperienceType", "ChangeType": "Addition", - "Description": "Added the **userExperienceType** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the **userExperienceType** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -2119,7 +2145,7 @@ "ApiChange": "Property", "ChangedApiName": "userExperienceType", "ChangeType": "Addition", - "Description": "Added the **userExperienceType** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **userExperienceType** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -2127,7 +2153,7 @@ "ApiChange": "Relationship", "ChangedApiName": "cloudApps", "ChangeType": "Addition", - "Description": "Added the **cloudApps** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **cloudApps** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -2145,7 +2171,7 @@ "ApiChange": "Property", "ChangedApiName": "provisioningSourceType", "ChangeType": "Addition", - "Description": "Added the **provisioningSourceType** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **provisioningSourceType** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" }, { @@ -2171,7 +2197,7 @@ "ApiChange": "Method", "ChangedApiName": "resize", "ChangeType": "Addition", - "Description": "Added the [resize](https://learn.microsoft.com/en-us/graph/api/cloudPC-resize?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-1.0) resource.", + "Description": "Added the [resize](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-1.0) resource.", "Target": "cloudPC" } ], @@ -2189,7 +2215,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcFrontlineSharedDeviceDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcFrontlineSharedDeviceDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFrontlineSharedDeviceDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcFrontlineSharedDeviceDetail](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineshareddevicedetail?view=graph-rest-beta) resource type.", "Target": "cloudPcFrontlineSharedDeviceDetail" }, { @@ -2197,7 +2223,7 @@ "ApiChange": "Property", "ChangedApiName": "sharedDeviceDetail", "ChangeType": "Addition", - "Description": "Added the **sharedDeviceDetail** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **sharedDeviceDetail** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -2205,7 +2231,7 @@ "ApiChange": "Property", "ChangedApiName": "provisionedDateTime", "ChangeType": "Addition", - "Description": "Added the **provisionedDateTime** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **provisionedDateTime** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -2223,7 +2249,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcCountByStatus", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcCountByStatus](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrieveCloudPcCountByStatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcCountByStatus](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpccountbystatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -2231,7 +2257,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcStatusSummary", "ChangeType": "Addition", - "Description": "Added the [cloudPcStatusSummary](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcStatusSummary?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcStatusSummary](https://learn.microsoft.com/graph/api/resources/cloudpcstatussummary?view=graph-rest-beta) resource type.", "Target": "cloudPcStatusSummary" } ], @@ -2289,7 +2315,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentHealthCheckDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentHealthCheckDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentHealthCheckDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentHealthCheckDetail](https://learn.microsoft.com/graph/api/resources/cloudpcagenthealthcheckdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentHealthCheckDetail" }, { @@ -2297,7 +2323,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentHealthCheckStatusDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentHealthCheckStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentHealthCheckStatusDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentHealthCheckStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpcagenthealthcheckstatusdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentHealthCheckStatusDetail" }, { @@ -2305,7 +2331,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentHealthCheckSummary", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentHealthCheckSummary](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentHealthCheckSummary?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentHealthCheckSummary](https://learn.microsoft.com/graph/api/resources/cloudpcagenthealthchecksummary?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentHealthCheckSummary" }, { @@ -2313,7 +2339,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAgentStatusDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcAgentStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAgentStatusDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAgentStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpcagentstatusdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcAgentStatusDetail" }, { @@ -2321,7 +2347,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkReinstallAgent", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkReinstallAgent](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkReinstallAgent?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkReinstallAgent](https://learn.microsoft.com/graph/api/resources/cloudpcbulkreinstallagent?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkReinstallAgent" } ], @@ -2383,7 +2409,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkResize", "ChangeType": "Deletion", - "Description": "Removed the **bulkResize** method from the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Removed the **bulkResize** method from the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -2423,7 +2449,7 @@ "ApiChange": "Method", "ChangedApiName": "List snapshots", "ChangeType": "Deletion", - "Description": "Removed the **List snapshots** method from the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Removed the **List snapshots** method from the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" } ], @@ -2509,7 +2535,7 @@ "ApiChange": "Property", "ChangedApiName": "sizeInGB", "ChangeType": "Addition", - "Description": "Added the **sizeInGB** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDeviceImage?view=graph-rest-beta) resource.", + "Description": "Added the **sizeInGB** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" } ], @@ -2543,7 +2569,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcRecommendationReports", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-retrieveCloudPcRecommendationReports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpcrecommendationreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -2551,7 +2577,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcRecommendationReports", "ChangeType": "Deprecation", - "Description": "Deprecated the [getCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-getCloudPcRecommendationReports?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on July 01, 2025. Going forward, use the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-retrievecloudpcrecommendationreports?view=graph-rest-beta) API.", + "Description": "Deprecated the [getCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource. This API is deprecated and will stop returning data on July 01, 2025. Going forward, use the [retrieveCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpcrecommendationreports?view=graph-rest-beta) API.", "Target": "cloudPcReports" } ], @@ -2569,7 +2595,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicyAutopatch", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicyAutopatch](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicyAutopatch?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcProvisioningPolicyAutopatch](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyautopatch?view=graph-rest-1.0) resource type.", "Target": "cloudPcProvisioningPolicyAutopatch" }, { @@ -2577,7 +2603,7 @@ "ApiChange": "Property", "ChangedApiName": "autopatch", "ChangeType": "Addition", - "Description": "Added the **autopatch** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-1.0) resource.", + "Description": "Added the **autopatch** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-1.0) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -2629,7 +2655,7 @@ "ApiChange": "Parameter", "ChangedApiName": "reportName", "ChangeType": "Addition", - "Description": "Added the **reportName** parameter to the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta) method.", + "Description": "Added the **reportName** parameter to the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta) method.", "Target": "retrieveCrossRegionDisasterRecoveryReport" }, { @@ -2637,7 +2663,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCrossRegionDisasterRecoveryReport", "ChangeType": "Change", - "Description": "Updated the columns supported in the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta). Removed the isCrossRegionEnabled and crossRegionHealthStatus columns, and added the enabledDRType, dRHealthStatus, and backupCloudPcStatus columns.", + "Description": "Updated the columns supported in the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta). Removed the isCrossRegionEnabled and crossRegionHealthStatus columns, and added the enabledDRType, dRHealthStatus, and backupCloudPcStatus columns.", "Target": "retrieveCrossRegionDisasterRecoveryReport" } ], @@ -2663,7 +2689,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkDisasterRecovery", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkDisasterRecovery](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkDisasterRecovery?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkDisasterRecovery](https://learn.microsoft.com/graph/api/resources/cloudpcbulkdisasterrecovery?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkDisasterRecovery" } ], @@ -2689,7 +2715,7 @@ "ApiChange": "Resource", "ChangedApiName": "licenseType", "ChangeType": "Addition", - "Description": "Added the **licenseType** property to the [cloudPcDisasterRecoveryCapability](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdisasterrecoverycapability?view=graph-rest-beta) resource type", + "Description": "Added the **licenseType** property to the [cloudPcDisasterRecoveryCapability](https://learn.microsoft.com/graph/api/resources/cloudpcdisasterrecoverycapability?view=graph-rest-beta) resource type", "Target": "cloudPcDisasterRecoveryCapability" } ], @@ -2707,7 +2733,7 @@ "ApiChange": "Method", "ChangedApiName": "cloudPcSnapshot", "ChangeType": "Deletion", - "Description": "Removed the `GET /deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshotId}` method from the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Removed the `GET /deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshotId}` method from the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" } ], @@ -2725,7 +2751,7 @@ "ApiChange": "Parameter", "ChangedApiName": "GroupBy", "ChangeType": "Addition", - "Description": "Added the **groupBy** parameter in the [retrieveCloudPcTroubleshootReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrievecloudpctroubleshootreports?view=graph-rest-beta) method.", + "Description": "Added the **groupBy** parameter in the [retrieveCloudPcTroubleshootReports](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpctroubleshootreports?view=graph-rest-beta) method.", "Target": "retrieveCloudPcTroubleshootReports" } ], @@ -2751,7 +2777,7 @@ "ApiChange": "Property", "ChangedApiName": "healthCheckStatus", "ChangeType": "Addition", - "Description": "Added the **healthCheckStatus** property to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the **healthCheckStatus** property to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" }, { @@ -2759,7 +2785,7 @@ "ApiChange": "Property", "ChangedApiName": "ignoreUnhealthySnapshots", "ChangeType": "Addition", - "Description": "Added the **ignoreUnhealthySnapshots** property to the [cloudPcBulkRestore](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkrestore?view=graph-rest-beta) resource.", + "Description": "Added the **ignoreUnhealthySnapshots** property to the [cloudPcBulkRestore](https://learn.microsoft.com/graph/api/resources/cloudpcbulkrestore?view=graph-rest-beta) resource.", "Target": "cloudPcBulkRestore" } ], @@ -2837,7 +2863,7 @@ "ApiChange": "Method", "ChangedApiName": "retrievePolicyApplyActionResult", "ChangeType": "Addition", - "Description": "Added the [retrievePolicyApplyActionResult](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-retrievepolicyapplyactionresult?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the [retrievePolicyApplyActionResult](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-retrievepolicyapplyactionresult?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -2845,7 +2871,7 @@ "ApiChange": "Method", "ChangedApiName": "retrievePolicyApplySchedule", "ChangeType": "Addition", - "Description": "Added the [retrievePolicyApplySchedule](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-retrievepolicyapplyschedule?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the [retrievePolicyApplySchedule](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-retrievepolicyapplyschedule?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -2853,7 +2879,7 @@ "ApiChange": "Method", "ChangedApiName": "schedulePolicyApplyTask", "ChangeType": "Addition", - "Description": "Added the [schedulePolicyApplyTask](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-schedulepolicyapplytask?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the [schedulePolicyApplyTask](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-schedulepolicyapplytask?view=graph-rest-beta) method to [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -2861,7 +2887,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPolicyScheduledApplyActionDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcpolicyscheduledapplyactiondetail?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/graph/api/resources/cloudpcpolicyscheduledapplyactiondetail?view=graph-rest-beta) resource.", "Target": "cloudPcPolicyScheduledApplyActionDetail" }, { @@ -2877,7 +2903,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPolicyApplyActionResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcPolicyApplyActionResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcpolicyapplyactionresult?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcPolicyApplyActionResult](https://learn.microsoft.com/graph/api/resources/cloudpcpolicyapplyactionresult?view=graph-rest-beta) resource.", "Target": "cloudPcPolicyApplyActionResult" } ], @@ -2895,7 +2921,7 @@ "ApiChange": "Property", "ChangedApiName": "activityId", "ChangeType": "Addition", - "Description": "Added the **activityId** property to the [cloudPcConnectivityEvent](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcconnectivityevent?view=graph-rest-beta) resource.", + "Description": "Added the **activityId** property to the [cloudPcConnectivityEvent](https://learn.microsoft.com/graph/api/resources/cloudpcconnectivityevent?view=graph-rest-beta) resource.", "Target": "cloudPcConnectivityEvent" } ], @@ -2913,7 +2939,7 @@ "ApiChange": "Property", "ChangedApiName": "frontlineCloudPcAvailability", "ChangeType": "Addition", - "Description": "Added the property **frontlineCloudPcAvailability** to the [cloudpc](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **frontlineCloudPcAvailability** property to the [cloudpc](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -2947,7 +2973,7 @@ "ApiChange": "Property", "ChangedApiName": "accessTier", "ChangeType": "Addition", - "Description": "Added the **accessTier** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", + "Description": "Added the **accessTier** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", "Target": "cloudPcForensicStorageAccount" }, { @@ -2955,7 +2981,7 @@ "ApiChange": "Property", "ChangedApiName": "immutableStorage", "ChangeType": "Addition", - "Description": "Added the **immutableStorage** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", + "Description": "Added the **immutableStorage** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", "Target": "cloudPcForensicStorageAccount" } ], @@ -2999,7 +3025,7 @@ "ApiChange": "Property", "ChangedApiName": "regionRestrictionDetail", "ChangeType": "Addition", - "Description": "Added the **regionRestrictionDetail** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcSupportedRegion?view=graph-rest-beta) resource.", + "Description": "Added the **regionRestrictionDetail** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", "Target": "cloudPcSupportedRegion" }, { @@ -3007,7 +3033,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSupportedRegionRestrictionDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcSupportedRegionRestrictionDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcSupportedRegionRestrictionDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcSupportedRegionRestrictionDetail](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregionrestrictiondetail?view=graph-rest-beta) resource type.", "Target": "cloudPcSupportedRegionRestrictionDetail" } ], @@ -3033,7 +3059,7 @@ "ApiChange": "Property", "ChangedApiName": "productType", "ChangeType": "Addition", - "Description": "Added the **productType** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **productType** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -3067,7 +3093,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcPerformanceReport", "ChangeType": "Deprecation", - "Description": "Deprecated the [getCloudPcPerformanceReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getCloudPcPerformanceReport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource. This API stopped returning data on December 31, 2024. Going forward, use the [retrieveCloudPcTenantMetricsReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrieveCloudPcTenantMetricsReport?view=graph-rest-beta) API.", + "Description": "Deprecated the [getCloudPcPerformanceReport](https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcperformancereport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource. This API stopped returning data on December 31, 2024. Going forward, use the [retrieveCloudPcTenantMetricsReport](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpctenantmetricsreport?view=graph-rest-beta) API.", "Target": "cloudPcReports" }, { @@ -3075,7 +3101,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcTenantMetricsReport", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcTenantMetricsReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrieveCloudPcTenantMetricsReport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcTenantMetricsReport](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpctenantmetricsreport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -3101,7 +3127,7 @@ "ApiChange": "Property", "ChangedApiName": "accessTier", "ChangeType": "Addition", - "Description": "Added the **accessTier** property to the [cloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource.", + "Description": "Added the **accessTier** property to the [cloudPcReviewStatus](https://learn.microsoft.com/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource.", "Target": "cloudPcReviewStatus" }, { @@ -3109,7 +3135,7 @@ "ApiChange": "Property", "ChangedApiName": "accessTier", "ChangeType": "Addition", - "Description": "Added the **accessTier** property to the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkCreateSnapshot?view=graph-rest-beta) resource.", + "Description": "Added the **accessTier** property to the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcbulkcreatesnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcBulkCreateSnapshot" }, { @@ -3117,7 +3143,7 @@ "ApiChange": "Property", "ChangedApiName": "storageAccountId", "ChangeType": "Addition", - "Description": "Added the **storageAccountId** property to the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkCreateSnapshot?view=graph-rest-beta) resource.", + "Description": "Added the **storageAccountId** property to the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcbulkcreatesnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcBulkCreateSnapshot" }, { @@ -3125,7 +3151,7 @@ "ApiChange": "Parameter", "ChangedApiName": "createSnapshot", "ChangeType": "Addition", - "Description": "Added the **storageAccountId** and **accessTier** parameters to the [createSnapshot](https://learn.microsoft.com/en-us/graph/api/cloudpc-createsnapshot?view=graph-rest-beta) method.", + "Description": "Added the **storageAccountId** and **accessTier** parameters to the [createSnapshot](https://learn.microsoft.com/graph/api/cloudpc-createsnapshot?view=graph-rest-beta) method.", "Target": "cloudPC" } ], @@ -3143,7 +3169,7 @@ "ApiChange": "Property", "ChangedApiName": "userInitiatedDisasterRecoveryAllowed", "ChangeType": "Addition", - "Description": "Added the **userInitiatedDisasterRecoveryAllowed** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource.", + "Description": "Added the **userInitiatedDisasterRecoveryAllowed** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/graph/api/resources/cloudpccrossregiondisasterrecoverysetting?view=graph-rest-beta) resource.", "Target": "cloudPcCrossRegionDisasterRecoverySetting" }, { @@ -3151,7 +3177,7 @@ "ApiChange": "Property", "ChangedApiName": "crossRegionDisasterRecoveryEnabled", "ChangeType": "Deprecation", - "Description": "Deprecated the **crossRegionDisasterRecoveryEnabled** property of the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource. The **crossRegionDisasterRecoveryEnabled** property is deprecated and will no longer be supported effective February 11, 2025. For scenarios where **crossRegionDisasterRecoveryEnabled** is `true`, set **disasterRecoveryType** to `crossRegion`. For scenarios where **crossRegionDisasterRecoveryEnabled** is `false`, set **disasterRecoveryType** to `notconfigured`.", + "Description": "Deprecated the **crossRegionDisasterRecoveryEnabled** property of the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/graph/api/resources/cloudpccrossregiondisasterrecoverysetting?view=graph-rest-beta) resource. The **crossRegionDisasterRecoveryEnabled** property is deprecated and will no longer be supported effective February 11, 2025. For scenarios where **crossRegionDisasterRecoveryEnabled** is `true`, set **disasterRecoveryType** to `crossRegion`. For scenarios where **crossRegionDisasterRecoveryEnabled** is `false`, set **disasterRecoveryType** to `notconfigured`.", "Target": "cloudPcCrossRegionDisasterRecoverySetting" } ], @@ -3169,7 +3195,7 @@ "ApiChange": "Property", "ChangedApiName": "disasterRecoveryType", "ChangeType": "Addition", - "Description": "Added the **disasterRecoveryType** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource.", + "Description": "Added the **disasterRecoveryType** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/graph/api/resources/cloudpccrossregiondisasterrecoverysetting?view=graph-rest-beta) resource.", "Target": "cloudPcCrossRegionDisasterRecoverySetting" }, { @@ -3245,7 +3271,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPCPerformanceReport", "ChangeType": "Addition", - "Description": "Added the [getCloudPCPerformanceReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getcloudpcperformancereport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPCPerformanceReport](https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcperformancereport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -3253,7 +3279,7 @@ "ApiChange": "Parameter", "ChangedApiName": "reportName", "ChangeType": "Addition", - "Description": "Added the **reportName** parameter to the [getInaccessibleCloudPcReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getInaccessibleCloudPcReports?view=graph-rest-beta) method.", + "Description": "Added the **reportName** parameter to the [getInaccessibleCloudPcReports](https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-beta) method.", "Target": "getInaccessibleCloudPcReports" } ], @@ -3271,7 +3297,7 @@ "ApiChange": "Method", "ChangedApiName": "retry", "ChangeType": "Addition", - "Description": "Added the [retry](https://learn.microsoft.com/en-us/graph/api/cloudpcbulkaction-retry?view=graph-rest-beta) method to the [cloudPcBulkAction](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkaction?view=graph-rest-beta) resource.", + "Description": "Added the [retry](https://learn.microsoft.com/graph/api/cloudpcbulkaction-retry?view=graph-rest-beta) method to the [cloudPcBulkAction](https://learn.microsoft.com/graph/api/resources/cloudpcbulkaction?view=graph-rest-beta) resource.", "Target": "cloudPcBulkAction" } ], @@ -3289,7 +3315,7 @@ "ApiChange": "Method", "ChangedApiName": "GET", "ChangeType": "Addition", - "Description": "Updated the [cloudPC: getCloudPcLaunchInfo](https://learn.microsoft.com/en-us/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta) method to support a new endpoint that gets the launch information for the specified Cloud PC using application permissions.", + "Description": "Updated the [cloudPC: getCloudPcLaunchInfo](https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta) method to support a new endpoint that gets the launch information for the specified Cloud PC using application permissions.", "Target": "getCloudPcLaunchInfo" }, { @@ -3297,7 +3323,7 @@ "ApiChange": "Method", "ChangedApiName": "POST", "ChangeType": "Addition", - "Description": "Updated the [cloudPC: start](https://learn.microsoft.com/en-us/graph/api/cloudpc-start?view=graph-rest-beta) method to support a new endpoint that starts the specified Cloud PC using application permissions.", + "Description": "Updated the [cloudPC: start](https://learn.microsoft.com/graph/api/cloudpc-start?view=graph-rest-beta) method to support a new endpoint that starts the specified Cloud PC using application permissions.", "Target": "start" }, { @@ -3305,7 +3331,7 @@ "ApiChange": "Method", "ChangedApiName": "POST", "ChangeType": "Addition", - "Description": "Updated the [cloudPC: stop](https://learn.microsoft.com/en-us/graph/api/cloudpc-stop?view=graph-rest-beta) method to support a new endpoint that stops the specified Cloud PC using application permissions.", + "Description": "Updated the [cloudPC: stop](https://learn.microsoft.com/graph/api/cloudpc-stop?view=graph-rest-beta) method to support a new endpoint that stops the specified Cloud PC using application permissions.", "Target": "stop" } ], @@ -3323,7 +3349,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkreprovisioncloudpc", "ChangeType": "Change", - "Description": "Change the deprecation date of [bulkRestoreCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [bulkRestoreCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3331,7 +3357,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkresize", "ChangeType": "Change", - "Description": "Change the deprecation date of [bulkresize](https://learn.microsoft.com/en-us/graph/api/cloudpc-bulkresize?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [bulkresize](https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3339,7 +3365,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkrestorecloudpc", "ChangeType": "Change", - "Description": "Change the deprecation date of [bulkrestorecloudpc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [bulkrestorecloudpc](https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3347,7 +3373,7 @@ "ApiChange": "Method", "ChangedApiName": "getcloudpcremoteactionresults", "ChangeType": "Change", - "Description": "Change the deprecation date of [getcloudpcremoteactionresults](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [getcloudpcremoteactionresults](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3355,7 +3381,7 @@ "ApiChange": "Method", "ChangedApiName": "getcloudpcreviewstatus", "ChangeType": "Change", - "Description": "Change the deprecation date of [getcloudpcreviewstatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [getcloudpcreviewstatus](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3363,7 +3389,7 @@ "ApiChange": "Method", "ChangedApiName": "setcloudpcreviewstatus", "ChangeType": "Change", - "Description": "Change the deprecation date of [setcloudpcreviewstatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method.", + "Description": "Change the deprecation date of [setcloudpcreviewstatus](https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method.", "Target": "cloudPC" }, { @@ -3371,7 +3397,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkSetCloudPcReviewStatus", "ChangeType": "Change", - "Description": "Change the deprecation date of [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method method.", + "Description": "Change the deprecation date of [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method method.", "Target": "cloudPC" }, { @@ -3379,7 +3405,7 @@ "ApiChange": "Method", "ChangedApiName": "List snapshots", "ChangeType": "Change", - "Description": "Change the deprecation date of [List snapshots](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-list-snapshots?view=graph-rest-beta) method", + "Description": "Change the deprecation date of [List snapshots](https://learn.microsoft.com/graph/api/virtualendpoint-list-snapshots?view=graph-rest-beta) method", "Target": "cloudPcSnapshot" } ], @@ -3397,7 +3423,7 @@ "ApiChange": "Method", "ChangedApiName": "apply", "ChangeType": "Addition", - "Description": "Added the **reservePercentage** to the [apply](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method.", + "Description": "Added the **reservePercentage** to the [apply](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method.", "Target": "cloudPcProvisioningPolicy" } ], @@ -3423,7 +3449,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveBulkActionStatusReport", "ChangeType": "Addition", - "Description": "Added the `retrieveBulkActionStatusReport` method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the `retrieveBulkActionStatusReport` method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -3441,7 +3467,7 @@ "ApiChange": "Property", "ChangedApiName": "healthCheckPaused", "ChangeType": "Addition", - "Description": "Added the **healthCheckPaused** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **healthCheckPaused** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -3449,7 +3475,7 @@ "ApiChange": "Property", "ChangedApiName": "inUseByCloudPc", "ChangeType": "Addition", - "Description": "Added the **inUseByCloudPc** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **inUseByCloudPc** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -3467,7 +3493,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkMove", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkMove](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkmove?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkMove](https://learn.microsoft.com/graph/api/resources/cloudpcbulkmove?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkMove" } ], @@ -3503,7 +3529,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovisionCloudPc", "ChangeType": "Deletion", - "Description": "Removed the **reprovisionCloudPc** method from the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Removed the **reprovisionCloudPc** method from the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -3511,7 +3537,7 @@ "ApiChange": "Method", "ChangedApiName": "resizeCloudPc", "ChangeType": "Deletion", - "Description": "Removed the **resizeCloudPc** method from the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Removed the **resizeCloudPc** method from the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -3519,7 +3545,7 @@ "ApiChange": "Method", "ChangedApiName": "restoreCloudPc", "ChangeType": "Deletion", - "Description": "Removed the **restoreCloudPc** method from the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Removed the **restoreCloudPc** method from the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -3537,7 +3563,7 @@ "ApiChange": "Parameter", "ChangedApiName": "getProvisionedCloudPCs", "ChangeType": "Addition", - "Description": "Enabled the `$select` query parameter for the [cloudPC: getProvisionedCloudPCs](https://learn.microsoft.com/en-us/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta) method.", + "Description": "Enabled the `$select` query parameter for the [cloudPC: getProvisionedCloudPCs](https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta) method.", "Target": "getProvisionedCloudPCs" } ], @@ -3555,7 +3581,7 @@ "ApiChange": "ComplexType", "ChangedApiName": "cloudPcNotificationSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcNotificationSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcNotificationSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcNotificationSetting](https://learn.microsoft.com/graph/api/resources/cloudpcnotificationsetting?view=graph-rest-beta) resource type.", "Target": "cloudPcNotificationSetting" }, { @@ -3563,7 +3589,7 @@ "ApiChange": "Property", "ChangedApiName": "notificationSetting", "ChangeType": "Addition", - "Description": "Added the **notificationSetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **notificationSetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" } ], @@ -3581,7 +3607,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveSnapshots", "ChangeType": "Addition", - "Description": "Added the [retrieveSnapshots](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrieveSnapshots?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveSnapshots](https://learn.microsoft.com/graph/api/cloudpc-retrievesnapshots?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -3589,7 +3615,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkCreateSnapshot", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkCreateSnapshot?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkCreateSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcbulkcreatesnapshot?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkCreateSnapshot" }, { @@ -3597,7 +3623,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkSetReviewStatus", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkSetReviewStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkSetReviewStatus?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkSetReviewStatus](https://learn.microsoft.com/graph/api/resources/cloudpcbulksetreviewstatus?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkSetReviewStatus" }, { @@ -3605,7 +3631,7 @@ "ApiChange": "Method", "ChangedApiName": "bulksetcloudpcreviewstatus", "ChangeType": "Deprecation", - "Description": "Deprecated the [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkSetReviewStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkSetReviewStatus?view=graph-rest-beta) resource.", + "Description": "Deprecated the [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkSetReviewStatus](https://learn.microsoft.com/graph/api/resources/cloudpcbulksetreviewstatus?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -3613,7 +3639,7 @@ "ApiChange": "Method", "ChangedApiName": "list_cloudpcsnapshot", "ChangeType": "Deprecation", - "Description": "Deprecated the [list_cloudpcsnapshot](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-list-snapshots?view=graph-rest-beta) method of the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource. Going forward, use the [retrieveSnapshots](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrieveSnapshots?view=graph-rest-beta) API.", + "Description": "Deprecated the [list_cloudpcsnapshot](https://learn.microsoft.com/graph/api/virtualendpoint-list-snapshots?view=graph-rest-beta) method of the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource. Going forward, use the [retrieveSnapshots](https://learn.microsoft.com/graph/api/cloudpc-retrievesnapshots?view=graph-rest-beta) API.", "Target": "cloudPcSnapshot" } ], @@ -3657,7 +3683,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAutopilotConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcAutopilotConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAutopilotConfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAutopilotConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcautopilotconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcAutopilotConfiguration" }, { @@ -3665,7 +3691,7 @@ "ApiChange": "Property", "ChangedApiName": "autopilotConfiguration", "ChangeType": "Addition", - "Description": "Added the **autopilotConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the **autopilotConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -3673,7 +3699,7 @@ "ApiChange": "Property", "ChangedApiName": "osVersionNumber", "ChangeType": "Addition", - "Description": "Added the **osVersionNumber** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **osVersionNumber** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -3681,7 +3707,7 @@ "ApiChange": "Property", "ChangedApiName": "osVersionNumber", "ChangeType": "Addition", - "Description": "Added the **osVersionNumber** property to the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource.", + "Description": "Added the **osVersionNumber** property to the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource.", "Target": "cloudPcGalleryImage" } ], @@ -3699,7 +3725,7 @@ "ApiChange": "Method", "ChangedApiName": "getShiftWorkCloudPcAccessState", "ChangeType": "Deletion", - "Description": "Removed the **getShiftWorkAccessState** method from the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/en-us/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta) API.", + "Description": "Removed the **getShiftWorkAccessState** method from the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta) API.", "Target": "cloudPC" }, { @@ -3765,7 +3791,7 @@ "ApiChange": "Method", "ChangedApiName": "getConnectionQualityReports", "ChangeType": "Deprecation", - "Description": "Deprecated the [getConnectionQualityReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta) method. Going forward, use the `retrieveConnectionQualityReports` API.", + "Description": "Deprecated the [getConnectionQualityReports](https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta) method. Going forward, use the `retrieveConnectionQualityReports` API.", "Target": "cloudPcReportName" }, { @@ -3773,7 +3799,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveConnectionQualityReports", "ChangeType": "Addition", - "Description": "Added the `retrieveConnectionQualityReports` method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the `retrieveConnectionQualityReports` method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -3791,7 +3817,7 @@ "ApiChange": "Property", "ChangedApiName": "crossRegionDisasterRecoverySetting", "ChangeType": "Addition", - "Description": "Added the **crossRegionDisasterRecoverySetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **crossRegionDisasterRecoverySetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" }, { @@ -3799,7 +3825,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcCrossRegionDisasterRecoverySetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/graph/api/resources/cloudpccrossregiondisasterrecoverysetting?view=graph-rest-beta) resource type.", "Target": "cloudPcCrossRegionDisasterRecoverySetting" }, { @@ -3807,7 +3833,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDisasterRecoveryAzureConnectionSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcDisasterRecoveryAzureConnectionSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDisasterRecoveryAzureConnectionSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDisasterRecoveryAzureConnectionSetting](https://learn.microsoft.com/graph/api/resources/cloudpcdisasterrecoveryazureconnectionsetting?view=graph-rest-beta) resource type.", "Target": "cloudPcDisasterRecoveryAzureConnectionSetting" }, { @@ -3815,7 +3841,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDisasterRecoveryMicrosoftHostedNetworkSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcDisasterRecoveryMicrosoftHostedNetworkSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDisasterRecoveryMicrosoftHostedNetworkSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDisasterRecoveryMicrosoftHostedNetworkSetting](https://learn.microsoft.com/graph/api/resources/cloudpcdisasterrecoverymicrosofthostednetworksetting?view=graph-rest-beta) resource type.", "Target": "cloudPcDisasterRecoveryMicrosoftHostedNetworkSetting" }, { @@ -3823,7 +3849,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDisasterRecoveryNetworkSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcDisasterRecoveryNetworkSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDisasterRecoveryNetworkSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDisasterRecoveryNetworkSetting](https://learn.microsoft.com/graph/api/resources/cloudpcdisasterrecoverynetworksetting?view=graph-rest-beta) resource type.", "Target": "cloudPcDisasterRecoveryNetworkSetting" } ], @@ -3841,7 +3867,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSharedUseServicePlan", "ChangeType": "Deletion", - "Description": "Removed the **cloudPcSharedUseServicePlan** resource and its supported methods. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFrontLineServicePlan?view=graph-rest-beta) resource.", + "Description": "Removed the **cloudPcSharedUseServicePlan** resource and its supported methods. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineserviceplan?view=graph-rest-beta) resource.", "Target": "cloudPcSharedUseServicePlan" }, { @@ -3849,7 +3875,7 @@ "ApiChange": "Relationship", "ChangedApiName": "sharedUseServicePlans", "ChangeType": "Deletion", - "Description": "Removed the **sharedUseServicePlans** relationship from the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource. Going forward, use the **frontLineServicePlans** relationship.", + "Description": "Removed the **sharedUseServicePlans** relationship from the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource. Going forward, use the **frontLineServicePlans** relationship.", "Target": "virtualEndpoint" } ], @@ -3885,7 +3911,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicyAutopatch", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicyAutopatch](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicyAutopatch?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcProvisioningPolicyAutopatch](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyautopatch?view=graph-rest-beta) resource type.", "Target": "cloudPcProvisioningPolicyAutopatch" }, { @@ -3893,7 +3919,7 @@ "ApiChange": "Property", "ChangedApiName": "autopatch", "ChangeType": "Addition", - "Description": "Added the **autopatch** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the **autopatch** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -3911,7 +3937,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkModifyDiskEncryptionType", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkModifyDiskEncryptionType](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkModifyDiskEncryptionType?view=graph-rest-beta) resource", + "Description": "Added the [cloudPcBulkModifyDiskEncryptionType](https://learn.microsoft.com/graph/api/resources/cloudpcbulkmodifydiskencryptiontype?view=graph-rest-beta) resource", "Target": "cloudPcBulkModifyDiskEncryptionType" }, { @@ -3927,7 +3953,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcTenantEncryptionSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcTenantEncryptionSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcTenantEncryptionSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcTenantEncryptionSetting](https://learn.microsoft.com/graph/api/resources/cloudpctenantencryptionsetting?view=graph-rest-beta) resource type.", "Target": "cloudPcTenantEncryptionSetting" }, { @@ -3935,7 +3961,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveTenantEncryptionSetting", "ChangeType": "Addition", - "Description": "Added the [retrieveTenantEncryptionSetting](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-retrievetenantencryptionsetting?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveTenantEncryptionSetting](https://learn.microsoft.com/graph/api/virtualendpoint-retrievetenantencryptionsetting?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -3961,7 +3987,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDisasterRecoveryCapability", "ChangeType": "Addition", - "Description": "Added the [cloudPcDisasterRecoveryCapability](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDisasterRecoveryCapability?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDisasterRecoveryCapability](https://learn.microsoft.com/graph/api/resources/cloudpcdisasterrecoverycapability?view=graph-rest-beta) resource type.", "Target": "cloudPcDisasterRecoveryCapability" }, { @@ -3969,7 +3995,7 @@ "ApiChange": "Property", "ChangedApiName": "disasterRecoveryCapability", "ChangeType": "Addition", - "Description": "Added the **disasterRecoveryCapability** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **disasterRecoveryCapability** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -3995,7 +4021,7 @@ "ApiChange": "Property", "ChangedApiName": "initiatedByUserPrincipalName", "ChangeType": "Addition", - "Description": "Added the **initiatedByUserPrincipalName** property to the [cloudPcBulkAction](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkAction?view=graph-rest-beta) resource.", + "Description": "Added the **initiatedByUserPrincipalName** property to the [cloudPcBulkAction](https://learn.microsoft.com/graph/api/resources/cloudpcbulkaction?view=graph-rest-beta) resource.", "Target": "cloudPcBulkAction" }, { @@ -4003,7 +4029,7 @@ "ApiChange": "Property", "ChangedApiName": "status", "ChangeType": "Addition", - "Description": "Added the **status** property to the [cloudPcBulkAction](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkAction?view=graph-rest-beta) resource.", + "Description": "Added the **status** property to the [cloudPcBulkAction](https://learn.microsoft.com/graph/api/resources/cloudpcbulkaction?view=graph-rest-beta) resource.", "Target": "cloudPcBulkAction" } ], @@ -4029,7 +4055,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCrossRegionDisasterRecoveryReport", "ChangeType": "Addition", - "Description": "Added the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCrossRegionDisasterRecoveryReport](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecrossregiondisasterrecoveryreport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -4047,7 +4073,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkDisasterRecoveryFailback", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkDisasterRecoveryFailback](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkDisasterRecoveryFailback?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkDisasterRecoveryFailback](https://learn.microsoft.com/graph/api/resources/cloudpcbulkdisasterrecoveryfailback?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkDisasterRecoveryFailback" }, { @@ -4055,7 +4081,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkDisasterRecoveryFailover", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkDisasterRecoveryFailover](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkDisasterRecoveryFailover?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkDisasterRecoveryFailover](https://learn.microsoft.com/graph/api/resources/cloudpcbulkdisasterrecoveryfailover?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkDisasterRecoveryFailover" } ], @@ -4073,7 +4099,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcRemoteActionResults", "ChangeType": "Deprecation", - "Description": "Deprecated the [getCloudPcRemoteActionResults](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method. Going forward, use the [retrieveCloudPcRemoteActionResults](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievecloudpcremoteactionresults?view=graph-rest-beta) API.", + "Description": "Deprecated the [getCloudPcRemoteActionResults](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method. Going forward, use the [retrieveCloudPcRemoteActionResults](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpcremoteactionresults?view=graph-rest-beta) API.", "Target": "managedDevice" }, { @@ -4081,7 +4107,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcRemoteActionResults", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcRemoteActionResults](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievecloudpcremoteactionresults?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcRemoteActionResults](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpcremoteactionresults?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -4107,7 +4133,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcConnectionSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcConnectionSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcConnectionSetting?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcConnectionSetting](https://learn.microsoft.com/graph/api/resources/cloudpcconnectionsetting?view=graph-rest-beta) resource.", "Target": "cloudPcConnectionSetting" }, { @@ -4115,7 +4141,7 @@ "ApiChange": "Property", "ChangedApiName": "lastModifiedDateTime", "ChangeType": "Addition", - "Description": "Added the **lastModifiedDateTime** property to the [cloudPcConnectivityResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcConnectivityResult?view=graph-rest-beta) resource.", + "Description": "Added the **lastModifiedDateTime** property to the [cloudPcConnectivityResult](https://learn.microsoft.com/graph/api/resources/cloudpcconnectivityresult?view=graph-rest-beta) resource.", "Target": "cloudPcConnectivityResult" }, { @@ -4123,7 +4149,7 @@ "ApiChange": "Property", "ChangedApiName": "statusDetail", "ChangeType": "Addition", - "Description": "Added the **statusDetail** property to the [cloudPcRemoteActionResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRemoteActionResult?view=graph-rest-beta) resource.", + "Description": "Added the **statusDetail** property to the [cloudPcRemoteActionResult](https://learn.microsoft.com/graph/api/resources/cloudpcremoteactionresult?view=graph-rest-beta) resource.", "Target": "cloudPcRemoteActionResult" }, { @@ -4131,7 +4157,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcStatusDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcStatusDetail?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpcstatusdetail?view=graph-rest-beta) resource.", "Target": "cloudPcStatusDetail" }, { @@ -4139,7 +4165,7 @@ "ApiChange": "Property", "ChangedApiName": "connectionSetting", "ChangeType": "Addition", - "Description": "Added the **connectionSetting** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **connectionSetting** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -4147,7 +4173,7 @@ "ApiChange": "Property", "ChangedApiName": "statusDetail", "ChangeType": "Addition", - "Description": "Added the **statusDetail** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **statusDetail** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -4165,7 +4191,7 @@ "ApiChange": "Property", "ChangedApiName": "deviceRegionName", "ChangeType": "Addition", - "Description": "Added the **deviceRegionName** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **deviceRegionName** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -4183,7 +4209,7 @@ "ApiChange": "Property", "ChangedApiName": "provisioningType", "ChangeType": "Deletion", - "Description": "Removed the **type** property from the [cloudPcAuditResource](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAuditResource?view=graph-rest-beta) resource. Going forward, use the **resourceType** property.", + "Description": "Removed the **type** property from the [cloudPcAuditResource](https://learn.microsoft.com/graph/api/resources/cloudpcauditresource?view=graph-rest-beta) resource. Going forward, use the **resourceType** property.", "Target": "cloudPcAuditResource" } ], @@ -4201,7 +4227,7 @@ "ApiChange": "Method", "ChangedApiName": "POST", "ChangeType": "Change", - "Description": "Removed the **format** property as a supported parameter for the [Create cloudPcExportJob](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-post-exportjobs?view=graph-rest-beta) method because the only supported format type is currently CSV. If you enter a different format type, it doesn't result in other formats of reports to download.", + "Description": "Removed the **format** property as a supported parameter for the [Create cloudPcExportJob](https://learn.microsoft.com/graph/api/cloudpcreports-post-exportjobs?view=graph-rest-beta) method because the only supported format type is currently CSV. If you enter a different format type, it doesn't result in other formats of reports to download.", "Target": "cloudPcExportJob" } ], @@ -4271,7 +4297,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveReviewStatus", "ChangeType": "Addition", - "Description": "Added the [retrieveReviewStatus](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievereviewstatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveReviewStatus](https://learn.microsoft.com/graph/api/cloudpc-retrievereviewstatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -4279,7 +4305,7 @@ "ApiChange": "Method", "ChangedApiName": "setReviewStatus", "ChangeType": "Addition", - "Description": "Added the [setReviewStatus](https://learn.microsoft.com/en-us/graph/api/cloudpc-setreviewstatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [setReviewStatus](https://learn.microsoft.com/graph/api/cloudpc-setreviewstatus?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -4287,7 +4313,7 @@ "ApiChange": "Method", "ChangedApiName": "createSnapshot", "ChangeType": "Addition", - "Description": "Added the [createSnapshot](https://learn.microsoft.com/en-us/graph/api/cloudpc-createsnapshot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [createSnapshot](https://learn.microsoft.com/graph/api/cloudpc-createsnapshot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -4295,7 +4321,7 @@ "ApiChange": "Method", "ChangedApiName": "resize", "ChangeType": "Addition", - "Description": "Added the [resize](https://learn.microsoft.com/en-us/graph/api/cloudpc-resize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [resize](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -4303,7 +4329,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcReviewStatus", "ChangeType": "Deprecation", - "Description": "Deprecated the [getCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [retrieveReviewStatus](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrievereviewstatus?view=graph-rest-beta) API.", + "Description": "Deprecated the [getCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [retrieveReviewStatus](https://learn.microsoft.com/graph/api/cloudpc-retrievereviewstatus?view=graph-rest-beta) API.", "Target": "cloudPc" }, { @@ -4311,7 +4337,7 @@ "ApiChange": "Method", "ChangedApiName": "setCloudPcReviewStatus", "ChangeType": "Deprecation", - "Description": "Deprecated the [setCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [setReviewStatus](https://learn.microsoft.com/en-us/graph/api/cloudpc-setreviewstatus?view=graph-rest-beta) API.", + "Description": "Deprecated the [setCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [setReviewStatus](https://learn.microsoft.com/graph/api/cloudpc-setreviewstatus?view=graph-rest-beta) API.", "Target": "cloudPc" }, { @@ -4319,7 +4345,7 @@ "ApiChange": "Method", "ChangedApiName": "resizeCloudPc", "ChangeType": "Deprecation", - "Description": "Deprecated the **resizeCloudPc** method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [resize](https://learn.microsoft.com/en-us/graph/api/cloudpc-resize?view=graph-rest-beta) API.", + "Description": "Deprecated the **resizeCloudPc** method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [resize](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-beta) API.", "Target": "cloudPC" }, { @@ -4327,7 +4353,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkReprovisionCloudPc", "ChangeType": "Deprecation", - "Description": "Deprecated the [bulkReprovisionCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkReprovision](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkreprovision?view=graph-rest-beta) resource.", + "Description": "Deprecated the [bulkReprovisionCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkReprovision](https://learn.microsoft.com/graph/api/resources/cloudpcbulkreprovision?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -4335,7 +4361,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkRestoreCloudPc", "ChangeType": "Deprecation", - "Description": "Deprecated the [bulkRestoreCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkRestore](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkrestore?view=graph-rest-beta) resource.", + "Description": "Deprecated the [bulkRestoreCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkRestore](https://learn.microsoft.com/graph/api/resources/cloudpcbulkrestore?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -4343,7 +4369,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkResize", "ChangeType": "Deprecation", - "Description": "Deprecated the [bulkResize](https://learn.microsoft.com/en-us/graph/api/cloudpc-bulkresize?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkResize](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkresize?view=graph-rest-beta) resource.", + "Description": "Deprecated the [bulkResize](https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta) method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [cloudPcBulkResize](https://learn.microsoft.com/graph/api/resources/cloudpcbulkresize?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -4361,7 +4387,7 @@ "ApiChange": "Property", "ChangedApiName": "allotmentDisplayName", "ChangeType": "Addition", - "Description": "Added the **allotmentDisplayName** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **allotmentDisplayName** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -4379,7 +4405,7 @@ "ApiChange": "Property", "ChangedApiName": "resourceType", "ChangeType": "Addition", - "Description": "Added the **resourceType** property to the [cloudPcAuditResource](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAuditResource?view=graph-rest-beta) resource.", + "Description": "Added the **resourceType** property to the [cloudPcAuditResource](https://learn.microsoft.com/graph/api/resources/cloudpcauditresource?view=graph-rest-beta) resource.", "Target": "cloudPcAuditResource" }, { @@ -4387,7 +4413,7 @@ "ApiChange": "Property", "ChangedApiName": "type", "ChangeType": "Deprecation", - "Description": "Deprecated the **type** property of the [cloudPcAuditResource](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcAuditResource?view=graph-rest-beta) resource. The **type** property will stop returning data on May 8, 2024. Going forward, use the **resourceType** property.", + "Description": "Deprecated the **type** property of the [cloudPcAuditResource](https://learn.microsoft.com/graph/api/resources/cloudpcauditresource?view=graph-rest-beta) resource. The **type** property will stop returning data on May 8, 2024. Going forward, use the **resourceType** property.", "Target": "cloudPcAuditResource" } ], @@ -4405,7 +4431,7 @@ "ApiChange": "Property", "ChangedApiName": "domainJoinConfiguration", "ChangeType": "Deprecation", - "Description": "Deprecated the **domainJoinConfiguration** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource. The **domainJoinConfiguration** property is deprecated and will stop returning data on May 31, 2024. Going forward, use the **domainJoinConfigurations** property.", + "Description": "Deprecated the **domainJoinConfiguration** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource. The **domainJoinConfiguration** property is deprecated and will stop returning data on May 31, 2024. Going forward, use the **domainJoinConfigurations** property.", "Target": "cloudPcProvisioningPolicy" }, { @@ -4413,7 +4439,7 @@ "ApiChange": "Property", "ChangedApiName": "onPremisesConnectionId", "ChangeType": "Deprecation", - "Description": "Deprecated the **onPremisesConnectionId** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource. The **onPremisesConnectionId** property is deprecated and will stop returning data on May 31, 2024. Going forward, use the **domainJoinConfigurations** property.", + "Description": "Deprecated the **onPremisesConnectionId** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource. The **onPremisesConnectionId** property is deprecated and will stop returning data on May 31, 2024. Going forward, use the **domainJoinConfigurations** property.", "Target": "cloudPcProvisioningPolicy" } ], @@ -4431,7 +4457,7 @@ "ApiChange": "Relationship", "ChangedApiName": "auditEvents", "ChangeType": "Addition", - "Description": "Added the **auditEvents** navigation property to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **auditEvents** navigation property to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4439,7 +4465,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAuditEvent", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditEvent](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-1.0) resource and its methods.", + "Description": "Added the [cloudPcAuditEvent](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-1.0) resource and its methods.", "Target": "cloudPcAuditEvent" }, { @@ -4447,7 +4473,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAuditActor", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditActor](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditactor?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcAuditActor](https://learn.microsoft.com/graph/api/resources/cloudpcauditactor?view=graph-rest-1.0) resource type.", "Target": "cloudPcAuditActor" }, { @@ -4455,7 +4481,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserRoleScopeTagInfo", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserRoleScopeTagInfo](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcuserrolescopetaginfo?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcUserRoleScopeTagInfo](https://learn.microsoft.com/graph/api/resources/cloudpcuserrolescopetaginfo?view=graph-rest-1.0) resource type.", "Target": "cloudPcUserRoleScopeTagInfo" }, { @@ -4463,7 +4489,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAuditResource", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditResource](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditresource?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcAuditResource](https://learn.microsoft.com/graph/api/resources/cloudpcauditresource?view=graph-rest-1.0) resource type.", "Target": "cloudPcAuditResource" }, { @@ -4471,7 +4497,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcAuditProperty", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditProperty](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditproperty?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcAuditProperty](https://learn.microsoft.com/graph/api/resources/cloudpcauditproperty?view=graph-rest-1.0) resource type.", "Target": "cloudPcAuditProperty" }, { @@ -4503,7 +4529,7 @@ "ApiChange": "Method", "ChangedApiName": "LIST", "ChangeType": "Addition", - "Description": "Added the [list](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) method to the [virtualendpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", + "Description": "Added the [list](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) method to the [virtualendpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualendpoint" } ], @@ -4521,7 +4547,7 @@ "ApiChange": "Method", "ChangedApiName": "GET", "ChangeType": "Addition", - "Description": "Added the operation that [lists](https://learn.microsoft.com/en-us/graph/api/user-list-cloudpcs?view=graph-rest-1.0) Cloud PC devices for a user to the [user](https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0) resource.", + "Description": "Added the operation that [lists](https://learn.microsoft.com/graph/api/user-list-cloudpcs?view=graph-rest-1.0) Cloud PC devices for a user to the [user](https://learn.microsoft.com/graph/api/resources/user?view=graph-rest-1.0) resource.", "Target": "user" }, { @@ -4529,7 +4555,7 @@ "ApiChange": "Relationship", "ChangedApiName": "cloudPCs", "ChangeType": "Addition", - "Description": "Added the **cloudPCs** relationship to the [user](https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0) resource.", + "Description": "Added the **cloudPCs** relationship to the [user](https://learn.microsoft.com/graph/api/resources/user?view=graph-rest-1.0) resource.", "Target": "user" } ], @@ -4555,7 +4581,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPC", "ChangeType": "Addition", - "Description": "Added the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-1.0) resource and supported methods.", + "Description": "Added the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-1.0) resource and supported methods.", "Target": "cloudPC" }, { @@ -4563,7 +4589,7 @@ "ApiChange": "Relationship", "ChangedApiName": "cloudPCs", "ChangeType": "Addition", - "Description": "Added the **cloudPCs** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **cloudPCs** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" } ], @@ -4581,7 +4607,7 @@ "ApiChange": "Relationship", "ChangedApiName": "onPremisesConnections", "ChangeType": "Addition", - "Description": "Added the **onPremisesConnections** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **onPremisesConnections** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4589,7 +4615,7 @@ "ApiChange": "Method", "ChangedApiName": "onPremisesConnections", "ChangeType": "Addition", - "Description": "Added the [List](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-v1.0) method to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", + "Description": "Added the [List](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) method to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4597,7 +4623,7 @@ "ApiChange": "Method", "ChangedApiName": "onPremisesConnections", "ChangeType": "Addition", - "Description": "Added the [Create](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-v1.0) method to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", + "Description": "Added the [Create](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) method to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4605,7 +4631,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnection", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnection?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource type.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4613,7 +4639,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionStatusDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionStatusDetail?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionstatusdetail?view=graph-rest-1.0) resource type.", "Target": "cloudPcOnPremisesConnectionStatusDetail" }, { @@ -4621,7 +4647,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionHealthCheck", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionHealthCheck?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-1.0) resource type.", "Target": "cloudPcOnPremisesConnectionHealthCheck" }, { @@ -4629,7 +4655,7 @@ "ApiChange": "Method", "ChangedApiName": "runHealthChecks", "ChangeType": "Addition", - "Description": "Added the [runHealthChecks](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", + "Description": "Added the [runHealthChecks](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-1.0) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4703,7 +4729,7 @@ "ApiChange": "Relationship", "ChangedApiName": "deviceImages", "ChangeType": "Addition", - "Description": "Added the **deviceImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **deviceImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4711,7 +4737,7 @@ "ApiChange": "Relationship", "ChangedApiName": "galleryImages", "ChangeType": "Addition", - "Description": "Added the **galleryImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **galleryImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4719,7 +4745,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDeviceImage", "ChangeType": "Addition", - "Description": "Added the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDeviceImage?view=graph-rest-1.0) resource and supported methods.", + "Description": "Added the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-1.0) resource and supported methods.", "Target": "cloudPcDeviceImage" }, { @@ -4727,7 +4753,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSourceDeviceImage ", "ChangeType": "Addition", - "Description": "Added the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcSourceDeviceImage?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-1.0) resource type.", "Target": "cloudPcSourceDeviceImage" }, { @@ -4735,7 +4761,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcGalleryImage", "ChangeType": "Addition", - "Description": "Added the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-1.0) resource and supported methods.", + "Description": "Added the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-1.0) resource and supported methods.", "Target": "cloudPcGalleryImage" } ], @@ -4801,7 +4827,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDomainJoinConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-1.0) resource type.", "Target": "cloudPcDomainJoinConfiguration" }, { @@ -4809,7 +4835,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcManagementAssignmentTarget", "ChangeType": "Addition", - "Description": "Added the [cloudPcManagementAssignmentTarget](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcmanagementassignmenttarget?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcManagementAssignmentTarget](https://learn.microsoft.com/graph/api/resources/cloudpcmanagementassignmenttarget?view=graph-rest-1.0) resource type.", "Target": "cloudPcManagementAssignmentTarget" }, { @@ -4817,7 +4843,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcManagementGroupAssignmentTarget", "ChangeType": "Addition", - "Description": "Added the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcManagementGroupAssignmentTarget?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/graph/api/resources/cloudpcmanagementgroupassignmenttarget?view=graph-rest-1.0) resource type.", "Target": "cloudPcManagementGroupAssignmentTarget" }, { @@ -4825,7 +4851,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicy", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-1.0) resource and supported methods.", + "Description": "Added the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-1.0) resource and supported methods.", "Target": "cloudPcProvisioningPolicy" }, { @@ -4833,7 +4859,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicyAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-1.0) resource type.", "Target": "cloudPcProvisioningPolicyAssignment" }, { @@ -4841,7 +4867,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcRestorePointSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcRestorePointSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRestorePointSetting?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcRestorePointSetting](https://learn.microsoft.com/graph/api/resources/cloudpcrestorepointsetting?view=graph-rest-1.0) resource type.", "Target": "cloudPcRestorePointSetting" }, { @@ -4849,7 +4875,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-1.0) resource and supported methods.", + "Description": "Added the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-1.0) resource and supported methods.", "Target": "cloudPcUserSetting" }, { @@ -4857,7 +4883,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserSettingAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserSettingAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcUserSettingAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-1.0) resource type.", "Target": "cloudPcUserSettingAssignment" }, { @@ -4865,7 +4891,7 @@ "ApiChange": "Resource", "ChangedApiName": "microsoftManagedDesktop", "ChangeType": "Addition", - "Description": "Added the [microsoftManagedDesktop](https://learn.microsoft.com/en-us/graph/api/resources/microsoftmanageddesktop?view=graph-rest-1.0) resource type.", + "Description": "Added the [microsoftManagedDesktop](https://learn.microsoft.com/graph/api/resources/microsoftmanageddesktop?view=graph-rest-1.0) resource type.", "Target": "microsoftManagedDesktop" }, { @@ -4873,7 +4899,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcWindowsSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcWindowsSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcWindowsSetting?view=graph-rest-1.0) resource type.", + "Description": "Added the [cloudPcWindowsSetting](https://learn.microsoft.com/graph/api/resources/cloudpcwindowssetting?view=graph-rest-1.0) resource type.", "Target": "cloudPcWindowsSetting" }, { @@ -4881,7 +4907,7 @@ "ApiChange": "Relationship", "ChangedApiName": "provisioningPolicies", "ChangeType": "Addition", - "Description": "Added the **provisioningPolicies** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **provisioningPolicies** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" }, { @@ -4889,7 +4915,7 @@ "ApiChange": "Relationship", "ChangedApiName": "userSettings", "ChangeType": "Addition", - "Description": "Added the **userSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-1.0) resource.", + "Description": "Added the **userSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource.", "Target": "virtualEndpoint" } ], @@ -4907,7 +4933,7 @@ "ApiChange": "Property", "ChangedApiName": "type", "ChangeType": "Deprecation", - "Description": "Deprecated the **type** property of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource. The **type** property stopped returning data on January 31, 2024. Going forward, use the **connectionType** property.", + "Description": "Deprecated the **type** property of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource. The **type** property stopped returning data on January 31, 2024. Going forward, use the **connectionType** property.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4915,7 +4941,7 @@ "ApiChange": "Property", "ChangedApiName": "connectionType", "ChangeType": "Addition", - "Description": "Added the **connectionType** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **connectionType** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4923,7 +4949,7 @@ "ApiChange": "Property", "ChangedApiName": "healthCheckStatusDetails", "ChangeType": "Deprecation", - "Description": "Deprecated the **healthCheckStatusDetails** property of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource. The **healthCheckStatusDetails** property stopped returning data on January 31, 2024. Going forward, use the **healthCheckStatusDetail** property.", + "Description": "Deprecated the **healthCheckStatusDetails** property of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource. The **healthCheckStatusDetails** property stopped returning data on January 31, 2024. Going forward, use the **healthCheckStatusDetail** property.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4931,7 +4957,7 @@ "ApiChange": "Property", "ChangedApiName": "healthCheckStatusDetail", "ChangeType": "Addition", - "Description": "Added the **healthCheckStatusDetail** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **healthCheckStatusDetail** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -4939,7 +4965,7 @@ "ApiChange": "Property", "ChangedApiName": "additionalDetails", "ChangeType": "Deprecation", - "Description": "Deprecated the **additionalDetails** property of the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionHealthCheck?view=graph-rest-beta) resource. The **additionalDetails** property stopped returning data on January 31, 2024. Going forward, use the **additionalDetail** property.", + "Description": "Deprecated the **additionalDetails** property of the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta) resource. The **additionalDetails** property stopped returning data on January 31, 2024. Going forward, use the **additionalDetail** property.", "Target": "cloudPcOnPremisesConnectionHealthCheck" }, { @@ -4947,7 +4973,7 @@ "ApiChange": "Property", "ChangedApiName": "additionalDetail", "ChangeType": "Addition", - "Description": "Added the **additionalDetail** property to the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionHealthCheck?view=graph-rest-beta) resource.", + "Description": "Added the **additionalDetail** property to the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnectionHealthCheck" }, { @@ -4955,7 +4981,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionStatusDetails", "ChangeType": "Deprecation", - "Description": "Deprecated the [cloudPcOnPremisesConnectionStatusDetails](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionStatusDetails?view=graph-rest-beta) resource. The **cloudPcOnPremisesConnectionStatusDetails** resource stopped returning data on January 31, 2024. Going forward, use the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionStatusDetail?view=graph-rest-beta) resource.", + "Description": "Deprecated the [cloudPcOnPremisesConnectionStatusDetails](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionstatusdetails?view=graph-rest-beta) resource. The **cloudPcOnPremisesConnectionStatusDetails** resource stopped returning data on January 31, 2024. Going forward, use the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionstatusdetail?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnectionStatusDetails" }, { @@ -4963,7 +4989,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionStatusDetail", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionStatusDetail?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionStatusDetail](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionstatusdetail?view=graph-rest-beta) resource type.", "Target": "cloudPcOnPremisesConnectionStatusDetail" } ], @@ -5021,7 +5047,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveCloudPcTroubleshootReports", "ChangeType": "Addition", - "Description": "Added the [retrieveCloudPcTroubleshootReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-retrieveCloudPcTroubleshootReports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveCloudPcTroubleshootReports](https://learn.microsoft.com/graph/api/cloudpcreports-retrievecloudpctroubleshootreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5065,7 +5091,7 @@ "ApiChange": "Method", "ChangedApiName": "getShiftWorkCloudPcAccessState", "ChangeType": "Change", - "Description": "Changed the deprecation date for the **getShiftWorkCloudPcAccessState** method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource to April 24, 2024. Going forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/en-us/graph/api/cloudpc-getFrontlineCloudPcAccessState?view=graph-rest-beta) API.", + "Description": "Changed the deprecation date for the **getShiftWorkCloudPcAccessState** method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource to April 24, 2024. Going forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta) API.", "Target": "cloudPC" }, { @@ -5073,7 +5099,7 @@ "ApiChange": "Method", "ChangedApiName": "getSharedUseLicenseUsageReport", "ChangeType": "Change", - "Description": "Changed the deprecation date of the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getSharedUseLicenseUsageReport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource to April 24, 2024", + "Description": "Changed the deprecation date of the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource to April 24, 2024", "Target": "cloudPcReports" }, { @@ -5081,7 +5107,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSharedUseServicePlan", "ChangeType": "Change", - "Description": "Changed the deprecation date of the **cloudPcSharedUseServicePlan** resource and related operations and methods to April 24, 2024. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFrontLineServicePlan?view=graph-rest-beta) resource and supported methods.", + "Description": "Changed the deprecation date of the **cloudPcSharedUseServicePlan** resource and related operations and methods to April 24, 2024. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineserviceplan?view=graph-rest-beta) resource and supported methods.", "Target": "cloudPcSharedUseServicePlan" } ], @@ -5115,7 +5141,7 @@ "ApiChange": "Property", "ChangedApiName": "windowsSetting", "ChangeType": "Addition", - "Description": "Added the **windowsSetting** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the **windowsSetting** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -5123,7 +5149,7 @@ "ApiChange": "Property", "ChangedApiName": "windowsSettings", "ChangeType": "Deprecation", - "Description": "Deprecated the **windowsSettings** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource. The **windowsSettings** property will stop returning data on January 31, 2024. Going forward, use the **windowsSetting** property.", + "Description": "Deprecated the **windowsSettings** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource. The **windowsSettings** property will stop returning data on January 31, 2024. Going forward, use the **windowsSetting** property.", "Target": "cloudPcProvisioningPolicy" }, { @@ -5131,7 +5157,7 @@ "ApiChange": "Property", "ChangedApiName": "domainJoinType", "ChangeType": "Addition", - "Description": "Added the **domainJoinType** property to the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDomainJoinConfiguration?view=graph-rest-beta) resource.", + "Description": "Added the **domainJoinType** property to the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-beta) resource.", "Target": "cloudPcDomainJoinConfiguration" }, { @@ -5139,7 +5165,7 @@ "ApiChange": "Property", "ChangedApiName": "type", "ChangeType": "Deprecation", - "Description": "Deprecated the **type** property of the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcDomainJoinConfiguration?view=graph-rest-beta) resource. The **type** property will stop returning data on January 31, 2024. Going forward, use the **domainJoinType** property.", + "Description": "Deprecated the **type** property of the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-beta) resource. The **type** property will stop returning data on January 31, 2024. Going forward, use the **domainJoinType** property.", "Target": "cloudPcDomainJoinConfiguration" }, { @@ -5147,7 +5173,7 @@ "ApiChange": "Property", "ChangedApiName": "managedType", "ChangeType": "Addition", - "Description": "Added the **managedType** property to the [microsoftManagedDesktop](https://learn.microsoft.com/en-us/graph/api/resources/microsoftManagedDesktop?view=graph-rest-beta) resource.", + "Description": "Added the **managedType** property to the [microsoftManagedDesktop](https://learn.microsoft.com/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource.", "Target": "microsoftManagedDesktop" }, { @@ -5155,7 +5181,7 @@ "ApiChange": "Property", "ChangedApiName": "type", "ChangeType": "Deprecation", - "Description": "Deprecated the **type** property of the [microsoftManagedDesktop](https://learn.microsoft.com/en-us/graph/api/resources/microsoftManagedDesktop?view=graph-rest-beta) resource. The **type** property will stop returning data on January 31, 2024. Going forward, use the **managedType** property.", + "Description": "Deprecated the **type** property of the [microsoftManagedDesktop](https://learn.microsoft.com/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource. The **type** property will stop returning data on January 31, 2024. Going forward, use the **managedType** property.", "Target": "microsoftManagedDesktop" }, { @@ -5163,7 +5189,7 @@ "ApiChange": "Property", "ChangedApiName": "frequencyType", "ChangeType": "Addition", - "Description": "Added the **frequencyType** property to the [cloudPcRestorePointSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRestorePointSetting?view=graph-rest-beta) resource.", + "Description": "Added the **frequencyType** property to the [cloudPcRestorePointSetting](https://learn.microsoft.com/graph/api/resources/cloudpcrestorepointsetting?view=graph-rest-beta) resource.", "Target": "cloudPcRestorePointSetting" }, { @@ -5171,7 +5197,7 @@ "ApiChange": "Property", "ChangedApiName": "frequencyInHours", "ChangeType": "Deprecation", - "Description": "Deprecated the **frequencyInHours** property of the [cloudPcRestorePointSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRestorePointSetting?view=graph-rest-beta) resource. The **frequencyInHours** property will stop returning data on January 31, 2024. Going forward, use the **frequencyType** property.", + "Description": "Deprecated the **frequencyInHours** property of the [cloudPcRestorePointSetting](https://learn.microsoft.com/graph/api/resources/cloudpcrestorepointsetting?view=graph-rest-beta) resource. The **frequencyInHours** property will stop returning data on January 31, 2024. Going forward, use the **frequencyType** property.", "Target": "cloudPcRestorePointSetting" }, { @@ -5179,7 +5205,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcWindowsSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcWindowsSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcWindowsSetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcWindowsSetting](https://learn.microsoft.com/graph/api/resources/cloudpcwindowssetting?view=graph-rest-beta) resource type.", "Target": "cloudPcWindowsSetting" } ], @@ -5205,7 +5231,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcRecommendationReports", "ChangeType": "Addition", - "Description": "Added the [getCloudPcRecommendationReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPcRecommendationReports](https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5279,7 +5305,7 @@ "ApiChange": "Property", "ChangedApiName": "publisherName", "ChangeType": "Addition", - "Description": "Added the **publisherName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource.", + "Description": "Added the **publisherName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource.", "Target": "cloudPcGalleryImage" }, { @@ -5287,7 +5313,7 @@ "ApiChange": "Property", "ChangedApiName": "offerName", "ChangeType": "Addition", - "Description": "Added the **offerName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource.", + "Description": "Added the **offerName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource.", "Target": "cloudPcGalleryImage" }, { @@ -5295,7 +5321,7 @@ "ApiChange": "Property", "ChangedApiName": "skuName", "ChangeType": "Addition", - "Description": "Added the **skuName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource.", + "Description": "Added the **skuName** property to the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource.", "Target": "cloudPcGalleryImage" }, { @@ -5303,7 +5329,7 @@ "ApiChange": "Property", "ChangedApiName": "recommendedSku", "ChangeType": "Deprecation", - "Description": "Deprecated the **recommendedSku** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **recommendedSku** property will stop returning data on January 31, 2024.", + "Description": "Deprecated the **recommendedSku** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **recommendedSku** property will stop returning data on January 31, 2024.", "Target": "cloudPcGalleryImage" }, { @@ -5311,7 +5337,7 @@ "ApiChange": "Property", "ChangedApiName": "offer", "ChangeType": "Deprecation", - "Description": "Deprecated the **offer** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **offer** property will stop returning data on January 31, 2024. Going forward, use the **offerName** property.", + "Description": "Deprecated the **offer** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **offer** property will stop returning data on January 31, 2024. Going forward, use the **offerName** property.", "Target": "cloudPcGalleryImage" }, { @@ -5319,7 +5345,7 @@ "ApiChange": "Property", "ChangedApiName": "offerDisplayName", "ChangeType": "Deprecation", - "Description": "Deprecated the **offerDisplayName** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **offerDisplayName** property will stop returning data on January 31, 2024.", + "Description": "Deprecated the **offerDisplayName** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **offerDisplayName** property will stop returning data on January 31, 2024.", "Target": "cloudPcGalleryImage" }, { @@ -5327,7 +5353,7 @@ "ApiChange": "Property", "ChangedApiName": "publisher", "ChangeType": "Deprecation", - "Description": "Deprecated the **publisher** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **publisher** property will stop returning data on January 31, 2024. Going forward, use the **publisherName** property.", + "Description": "Deprecated the **publisher** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **publisher** property will stop returning data on January 31, 2024. Going forward, use the **publisherName** property.", "Target": "cloudPcGalleryImage" }, { @@ -5335,7 +5361,7 @@ "ApiChange": "Property", "ChangedApiName": "sku", "ChangeType": "Deprecation", - "Description": "Deprecated the **sku** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **sku** property will stop returning data on January 31, 2024. Going forward, use the **skuName** property.", + "Description": "Deprecated the **sku** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **sku** property will stop returning data on January 31, 2024. Going forward, use the **skuName** property.", "Target": "cloudPcGalleryImage" }, { @@ -5343,7 +5369,7 @@ "ApiChange": "Property", "ChangedApiName": "skuDisplayName", "ChangeType": "Deprecation", - "Description": "Deprecated the **skuDisplayName** property of the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcGalleryImage?view=graph-rest-beta) resource. The **skuDisplayName** property will stop returning data on January 31, 2024.", + "Description": "Deprecated the **skuDisplayName** property of the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource. The **skuDisplayName** property will stop returning data on January 31, 2024.", "Target": "cloudPcGalleryImage" }, { @@ -5351,7 +5377,7 @@ "ApiChange": "Property", "ChangedApiName": "errorCode", "ChangeType": "Addition", - "Description": "Added the **errorCode** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **errorCode** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -5359,7 +5385,7 @@ "ApiChange": "Property", "ChangedApiName": "statusDetails", "ChangeType": "Deprecation", - "Description": "Deprecated the **statusDetails** property of the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource. The **statusDetails** property will stop returning data on January 31, 2024. Going forward, use the **errorCode** property.", + "Description": "Deprecated the **statusDetails** property of the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource. The **statusDetails** property will stop returning data on January 31, 2024. Going forward, use the **errorCode** property.", "Target": "cloudPcDeviceImage" }, { @@ -5367,7 +5393,7 @@ "ApiChange": "Property", "ChangedApiName": "resourceId", "ChangeType": "Addition", - "Description": "Added the **resourceId** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **resourceId** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcSourceDeviceImage" }, { @@ -5375,7 +5401,7 @@ "ApiChange": "Property", "ChangedApiName": "id", "ChangeType": "Deprecation", - "Description": "Deprecated the **id** property of the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource. The **id** property will stop returning data on January 31, 2024. Going forward, use the **resourceId** property.", + "Description": "Deprecated the **id** property of the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource. The **id** property will stop returning data on January 31, 2024. Going forward, use the **resourceId** property.", "Target": "cloudPcSourceDeviceImage" } ], @@ -5393,7 +5419,7 @@ "ApiChange": "Property", "ChangedApiName": "errorMessage", "ChangeType": "Addition", - "Description": "Added the **errorMessage** property to the [cloudPcPartnerAgentInstallResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcPartnerAgentInstallResult?view=graph-rest-beta) resource.", + "Description": "Added the **errorMessage** property to the [cloudPcPartnerAgentInstallResult](https://learn.microsoft.com/graph/api/resources/cloudpcpartneragentinstallresult?view=graph-rest-beta) resource.", "Target": "cloudPcPartnerAgentInstallResult" } ], @@ -5411,7 +5437,7 @@ "ApiChange": "Method", "ChangedApiName": "getActionStatusReports", "ChangeType": "Addition", - "Description": "Added the [getActionStatusReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-getactionstatusreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getActionStatusReports](https://learn.microsoft.com/graph/api/cloudpcreports-getactionstatusreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5429,7 +5455,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcScopedPermission", "ChangeType": "Addition", - "Description": "Added the [cloudPcScopedPermission](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcScopedPermission?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcScopedPermission](https://learn.microsoft.com/graph/api/resources/cloudpcscopedpermission?view=graph-rest-beta) resource type.", "Target": "cloudPcScopedPermission" }, { @@ -5437,7 +5463,7 @@ "ApiChange": "Method", "ChangedApiName": "retrieveScopedPermissions", "ChangeType": "Addition", - "Description": "Added the [retrieveScopedPermissions](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-retrievescopedpermissions?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the [retrieveScopedPermissions](https://learn.microsoft.com/graph/api/virtualendpoint-retrievescopedpermissions?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -5455,7 +5481,7 @@ "ApiChange": "Resource", "ChangedApiName": "virtualEndpoint", "ChangeType": "Addition", - "Description": "Added the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource type.", + "Description": "Added the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-1.0) resource type.", "Target": "virtualEndpoint" } ], @@ -5473,7 +5499,7 @@ "ApiChange": "Member", "ChangedApiName": "other", "ChangeType": "Change", - "Description": "Changed the `other` member in the [cloudPcAuditActivityOperationType](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactivityoperationtype-values) enumeration to `unknownFutureValue`, with value changed from 999 to 3.", + "Description": "Changed the `other` member in the [cloudPcAuditActivityOperationType](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactivityoperationtype-values) enumeration to `unknownFutureValue`, with value changed from 999 to 3.", "Target": "cloudPcAuditActivityOperationType" }, { @@ -5481,7 +5507,7 @@ "ApiChange": "Member", "ChangedApiName": "other", "ChangeType": "Change", - "Description": "Changed the `other` member in the [cloudPcAuditActivityResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactivityresult-values) enumeration to `unknownFutureValue`, with value change from 999 to 4.", + "Description": "Changed the `other` member in the [cloudPcAuditActivityResult](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactivityresult-values) enumeration to `unknownFutureValue`, with value change from 999 to 4.", "Target": "cloudPcAuditActivityResult" }, { @@ -5489,7 +5515,7 @@ "ApiChange": "Member", "ChangedApiName": "unknown", "ChangeType": "Change", - "Description": "Changed the `unknown` member in the [cloudPcAuditActorType](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactortype-values) enumeration to `unknownFutureValue`, with value change from 999 to 3.", + "Description": "Changed the `unknown` member in the [cloudPcAuditActorType](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditactortype-values) enumeration to `unknownFutureValue`, with value change from 999 to 3.", "Target": "cloudPcAuditActorType" }, { @@ -5497,7 +5523,7 @@ "ApiChange": "Member", "ChangedApiName": "other", "ChangeType": "Change", - "Description": "Changed the `other` member in the [cloudPcAuditCategory](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditcategory-values) enumeration to `unknownFutureValue`, with value change from 999 to 1.", + "Description": "Changed the `other` member in the [cloudPcAuditCategory](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta#cloudpcauditcategory-values) enumeration to `unknownFutureValue`, with value change from 999 to 1.", "Target": "cloudPcAuditCategory" } ], @@ -5533,7 +5559,7 @@ "ApiChange": "Property", "ChangedApiName": "selfServiceEnabled", "ChangeType": "Deprecation", - "Description": "Deprecated the **selfServiceEnabled** property of the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource. The **selfServiceEnabled** property will stop returning data on December 1, 2023.", + "Description": "Deprecated the **selfServiceEnabled** property of the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource. The **selfServiceEnabled** property will stop returning data on December 1, 2023.", "Target": "cloudPcUserSetting" } ], @@ -5611,7 +5637,7 @@ "ApiChange": "Method", "ChangedApiName": "getShiftWorkCloudPcAccessState", "ChangeType": "Deprecation", - "Description": "Deprecated the getShiftWorkCloudPcAccessState method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Goind forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/en-us/graph/api/cloudpc-getFrontlineCloudPcAccessState?view=graph-rest-beta) API.", + "Description": "Deprecated the getShiftWorkCloudPcAccessState method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Goind forward, use the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta) API.", "Target": "cloudPC" }, { @@ -5619,7 +5645,7 @@ "ApiChange": "Method", "ChangedApiName": "getFrontlineCloudPcAccessState", "ChangeType": "Addition", - "Description": "Added the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/en-us/graph/api/cloudPC-getFrontlineCloudPcAccessState?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the [getFrontlineCloudPcAccessState](https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -5637,7 +5663,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSharedUseServicePlan", "ChangeType": "Deprecation", - "Description": "Deprecated the **cloudPcSharedUseServicePlan** resource and related operations and methods. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFrontLineServicePlan?view=graph-rest-beta) resource and supported methods.", + "Description": "Deprecated the **cloudPcSharedUseServicePlan** resource and related operations and methods. Going forward, use the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineserviceplan?view=graph-rest-beta) resource and supported methods.", "Target": "cloudPcSharedUseServicePlan" }, { @@ -5645,7 +5671,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcFrontLineServicePlan", "ChangeType": "Addition", - "Description": "Added the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcFrontLineServicePlan?view=graph-rest-beta) resource and supported methods.", + "Description": "Added the [cloudPcFrontLineServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcfrontlineserviceplan?view=graph-rest-beta) resource and supported methods.", "Target": "cloudPcFrontLineServicePlan" }, { @@ -5653,7 +5679,7 @@ "ApiChange": "Resource", "ChangedApiName": "frontLineServicePlans", "ChangeType": "Addition", - "Description": "Added the **frontLineServicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Added the **frontLineServicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -5679,7 +5705,7 @@ "ApiChange": "Method", "ChangedApiName": "getRawRemoteConnectionReports", "ChangeType": "Addition", - "Description": "Added the [getRawRemoteConnectionReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcReports?view=graph-rest-beta) resource.", + "Description": "Added the [getRawRemoteConnectionReports](https://learn.microsoft.com/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5697,7 +5723,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission `CloudPC.ReadWrite.All` to the following operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource: [POST](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-beta), [UPDATE](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-update?view=graph-rest-beta), [DELETE](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-beta), and [runHealthChecks](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta).", + "Description": "Added support for the application permission `CloudPC.ReadWrite.All` to the following operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource: [POST](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-beta), [UPDATE](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-beta), [DELETE](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-beta), and [runHealthChecks](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta).", "Target": "cloudPcOnPremisesConnection" } ], @@ -5749,7 +5775,7 @@ "ApiChange": "Method", "ChangedApiName": "getFrontlineReport", "ChangeType": "Addition", - "Description": "Added the [getFrontlineReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getFrontlineReport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getFrontlineReport](https://learn.microsoft.com/graph/api/cloudpcreports-getfrontlinereport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -5757,7 +5783,7 @@ "ApiChange": "Method", "ChangedApiName": "getSharedUseLicenseUsageReport", "ChangeType": "Deprecation", - "Description": "Deprecated the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getSharedUseLicenseUsageReport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Deprecated the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta) method of the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5775,7 +5801,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovisionCloudPc", "ChangeType": "Deprecation", - "Description": "Deprecated the **reprovisionCloudPc** method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Goind forward, use the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) API instead.", + "Description": "Deprecated the **reprovisionCloudPc** method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Goind forward, use the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) API instead.", "Target": "cloudPc" }, { @@ -5783,7 +5809,7 @@ "ApiChange": "Method", "ChangedApiName": "restoreCloudPc", "ChangeType": "Deprecation", - "Description": "Deprecated the **restoreCloudPc** method of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [restore](https://learn.microsoft.com/en-us/graph/api/cloudpc-restore?view=graph-rest-beta) API instead.", + "Description": "Deprecated the **restoreCloudPc** method of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource. Going forward, use the [restore](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta) API instead.", "Target": "cloudPc" } ], @@ -5809,7 +5835,7 @@ "ApiChange": "Method", "ChangedApiName": "getConnectionQualityReports", "ChangeType": "Addition", - "Description": "Added the [cloudPcReports: getConnectionQualityReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcReports: getConnectionQualityReports](https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5827,7 +5853,7 @@ "ApiChange": "Member", "ChangedApiName": "informational", "ChangeType": "Addition", - "Description": "Added the **informational** member to the [CloudPcOnPremisesConnectionStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta#cloudpconpremisesconnectionstatus-values) resource.", + "Description": "Added the **informational** member to the [CloudPcOnPremisesConnectionStatus](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta#cloudpconpremisesconnectionstatus-values) resource.", "Target": "CloudPcOnPremisesConnectionStatus" } ], @@ -5845,7 +5871,7 @@ "ApiChange": "Property", "ChangedApiName": "resetEnabled", "ChangeType": "Addition", - "Description": "Added the **resetEnabled** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **resetEnabled** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" } ], @@ -5863,7 +5889,7 @@ "ApiChange": "Method", "ChangedApiName": "getInaccessibleCloudPcReports", "ChangeType": "Addition", - "Description": "Added the [getInaccessibleCloudPcReports](https://learn.microsoft.com/en-us/graph/api/cloudPcReports-getInaccessibleCloudPcReports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getInaccessibleCloudPcReports](https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -5907,7 +5933,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcResizeValidationResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcResizeValidationResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcResizeValidationResult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcResizeValidationResult](https://learn.microsoft.com/graph/api/resources/cloudpcresizevalidationresult?view=graph-rest-beta) resource type.", "Target": "cloudPcResizeValidationResult" }, { @@ -5915,7 +5941,7 @@ "ApiChange": "Method", "ChangedApiName": "validateBulkResize", "ChangeType": "Addition", - "Description": "Added the [validateBulkResize](https://learn.microsoft.com/en-us/graph/api/cloudPC-validateBulkResize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the [validateBulkResize](https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -5933,7 +5959,7 @@ "ApiChange": "Property", "ChangedApiName": "powerState", "ChangeType": "Addition", - "Description": "Added the **powerState** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **powerState** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudpc" }, { @@ -5967,7 +5993,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkResize", "ChangeType": "Addition", - "Description": "Added the [bulkResize](https://learn.microsoft.com/en-us/graph/api/cloudPC-bulkResize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the [bulkResize](https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -5985,7 +6011,7 @@ "ApiChange": "Method", "ChangedApiName": "getProvisionedCloudPcs", "ChangeType": "Addition", - "Description": "Added the [getProvisionedCloudPcs](https://learn.microsoft.com/en-us/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getProvisionedCloudPcs](https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -6039,7 +6065,7 @@ "ApiChange": "Property", "ChangedApiName": "correlationId", "ChangeType": "Addition", - "Description": "Added the **correlationId** property to the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcOnPremisesConnectionHealthCheck?view=graph-rest-beta) resource.", + "Description": "Added the **correlationId** property to the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnectionHealthCheck" } ], @@ -6057,7 +6083,7 @@ "ApiChange": "Parameter", "ChangedApiName": "LIST", "ChangeType": "Addition", - "Description": "Enabled the `top` query parameter for the [LIST](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-beta) operation of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Enabled the `top` query parameter for the [LIST](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-beta) operation of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -6137,7 +6163,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkAction", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkAction](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkAction?view=graph-rest-beta) resource and its methods.", + "Description": "Added the [cloudPcBulkAction](https://learn.microsoft.com/graph/api/resources/cloudpcbulkaction?view=graph-rest-beta) resource and its methods.", "Target": "cloudPcBulkAction" }, { @@ -6145,7 +6171,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkActionSummary", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkActionSummary](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkActionSummary?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkActionSummary](https://learn.microsoft.com/graph/api/resources/cloudpcbulkactionsummary?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkActionSummary" }, { @@ -6153,7 +6179,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkPowerOff", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkPowerOff](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkPowerOff?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkPowerOff](https://learn.microsoft.com/graph/api/resources/cloudpcbulkpoweroff?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkPowerOff" }, { @@ -6161,7 +6187,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkPowerOn", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkPowerOn](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkPowerOn?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkPowerOn](https://learn.microsoft.com/graph/api/resources/cloudpcbulkpoweron?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkPowerOn" }, { @@ -6169,7 +6195,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkReprovision", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkReprovision](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkReprovision?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkReprovision](https://learn.microsoft.com/graph/api/resources/cloudpcbulkreprovision?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkReprovision" }, { @@ -6177,7 +6203,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkResize", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkResize](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkResize?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkResize](https://learn.microsoft.com/graph/api/resources/cloudpcbulkresize?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkResize" }, { @@ -6185,7 +6211,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkRestart", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkRestart](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkRestart?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkRestart](https://learn.microsoft.com/graph/api/resources/cloudpcbulkrestart?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkRestart" }, { @@ -6193,7 +6219,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkRestore", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkRestore](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkRestore?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkRestore](https://learn.microsoft.com/graph/api/resources/cloudpcbulkrestore?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkRestore" }, { @@ -6201,7 +6227,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkTroubleshoot", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkTroubleshoot](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcBulkTroubleshoot?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkTroubleshoot](https://learn.microsoft.com/graph/api/resources/cloudpcbulktroubleshoot?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkTroubleshoot" }, { @@ -6209,7 +6235,7 @@ "ApiChange": "Relationship", "ChangedApiName": "bulkActions", "ChangeType": "Addition", - "Description": "Added the **bulkActions** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Added the **bulkActions** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -6227,7 +6253,7 @@ "ApiChange": "Property", "ChangedApiName": "cloudPcNamingTemplate", "ChangeType": "Addition", - "Description": "Added the `cloudPcNamingTemplate` property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the `cloudPcNamingTemplate` property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -6245,7 +6271,7 @@ "ApiChange": "Resource", "ChangedApiName": "assignedUsers", "ChangeType": "Addition", - "Description": "Added the **assignedUsers** relationship to the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicyAssignment?view=graph-rest-beta) resource.", + "Description": "Added the **assignedUsers** relationship to the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicyAssignment" } ], @@ -6263,7 +6289,7 @@ "ApiChange": "Property", "ChangedApiName": "domainJoinConfigurations", "ChangeType": "Addition", - "Description": "Added the **domainJoinConfigurations** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **domainJoinConfigurations** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -6271,7 +6297,7 @@ "ApiChange": "Property", "ChangedApiName": "domainJoinConfiguration", "ChangeType": "Deprecation", - "Description": "Deprecated the **domainJoinConfiguration** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource. The **domainJoinConfiguration** property stopped returning data on June 30, 2023. Going forward, use the **domainJoinConfigurations** property.", + "Description": "Deprecated the **domainJoinConfiguration** property of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource. The **domainJoinConfiguration** property stopped returning data on June 30, 2023. Going forward, use the **domainJoinConfigurations** property.", "Target": "cloudPcProvisioningPolicy" } ], @@ -6289,7 +6315,7 @@ "ApiChange": "Property", "ChangedApiName": "ssoCheckKerberosConfigurationError", "ChangeType": "Addition", - "Description": "Added the **ssoCheckKerberosConfigurationError** member to the [cloudPcOnPremisesConnectionHealthCheckErrorType](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta#cloudpconpremisesconnectionhealthcheckerrortype-values) resource.", + "Description": "Added the **ssoCheckKerberosConfigurationError** member to the [cloudPcOnPremisesConnectionHealthCheckErrorType](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta#cloudpconpremisesconnectionhealthcheckerrortype-values) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -6307,7 +6333,7 @@ "ApiChange": "Method", "ChangedApiName": "powerOn", "ChangeType": "Addition", - "Description": "Added the [powerOn](https://learn.microsoft.com/en-us/graph/api/cloudpc-poweron?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [powerOn](https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -6315,7 +6341,7 @@ "ApiChange": "Method", "ChangedApiName": "powerOff", "ChangeType": "Addition", - "Description": "Added the [powerOff](https://learn.microsoft.com/en-us/graph/api/cloudpc-poweroff?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [powerOff](https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -6333,7 +6359,7 @@ "ApiChange": "Method", "ChangedApiName": "start", "ChangeType": "Addition", - "Description": "Added the [start](https://learn.microsoft.com/en-us/graph/api/cloudpc-start?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [start](https://learn.microsoft.com/graph/api/cloudpc-start?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -6341,7 +6367,7 @@ "ApiChange": "Method", "ChangedApiName": "stop", "ChangeType": "Addition", - "Description": "Added the [stop](https://learn.microsoft.com/en-us/graph/api/cloudpc-stop?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [stop](https://learn.microsoft.com/graph/api/cloudpc-stop?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -6359,7 +6385,7 @@ "ApiChange": "Method", "ChangedApiName": "apply", "ChangeType": "Addition", - "Description": "Added the [apply](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the [apply](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -6367,7 +6393,7 @@ "ApiChange": "Method", "ChangedApiName": "applyConfig", "ChangeType": "Addition", - "Description": "Added the [applyConfig](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the [applyConfig](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -6411,7 +6437,7 @@ "ApiChange": "Property", "ChangedApiName": "provisioningType", "ChangeType": "Addition", - "Description": "Added the **provisioningType** property to the [cloudPcServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcServicePlan?view=graph-rest-beta) resource.", + "Description": "Added the **provisioningType** property to the [cloudPcServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcserviceplan?view=graph-rest-beta) resource.", "Target": "cloudPcServicePlan" } ], @@ -6429,7 +6455,7 @@ "ApiChange": "Property", "ChangedApiName": "supportedSolution", "ChangeType": "Addition", - "Description": "Added the **supportedSolution** property to the [cloudPcServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcServicePlan?view=graph-rest-beta) resource.", + "Description": "Added the **supportedSolution** property to the [cloudPcServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcserviceplan?view=graph-rest-beta) resource.", "Target": "cloudPcServicePlan" } ], @@ -6447,7 +6473,7 @@ "ApiChange": "Property", "ChangedApiName": "windows365SwitchCompatible", "ChangeType": "Addition", - "Description": "Add the **windows365SwitchCompatible** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource.", + "Description": "Add the **windows365SwitchCompatible** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -6455,7 +6481,7 @@ "ApiChange": "Property", "ChangedApiName": "windows365SwitchNotCompatibleReason", "ChangeType": "Addition", - "Description": "Add the **windows365SwitchNotCompatibleReason** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource.", + "Description": "Add the **windows365SwitchNotCompatibleReason** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource.", "Target": "cloudPc" } ], @@ -6473,7 +6499,7 @@ "ApiChange": "Property", "ChangedApiName": "provisioningType", "ChangeType": "Addition", - "Description": "Added the **provisioningType** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **provisioningType** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPc" } ], @@ -6517,7 +6543,7 @@ "ApiChange": "Property", "ChangedApiName": "servicePlanId", "ChangeType": "Addition", - "Description": "Added the **servicePlanId** property to the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcManagementGroupAssignmentTarget?view=graph-rest-beta) resource.", + "Description": "Added the **servicePlanId** property to the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/graph/api/resources/cloudpcmanagementgroupassignmenttarget?view=graph-rest-beta) resource.", "Target": "cloudPcManagementGroupAssignmentTarget" }, { @@ -6525,7 +6551,7 @@ "ApiChange": "Property", "ChangedApiName": "provisioningType", "ChangeType": "Addition", - "Description": "Added the **provisioningType** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcProvisioningPolicy?view=graph-rest-beta) resource.", + "Description": "Added the **provisioningType** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -6541,7 +6567,7 @@ "ApiChange": "Relationship", "ChangedApiName": "sharedUseServicePlans", "ChangeType": "Addition", - "Description": "Added the **sharedUseServicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource.", + "Description": "Added the **sharedUseServicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -6559,7 +6585,7 @@ "ApiChange": "Property", "ChangedApiName": "enableSingleSignOn", "ChangeType": "Addition", - "Description": "Added the **enableSingleSignOn** property to the [cloudPcOrganizationSettings](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", + "Description": "Added the **enableSingleSignOn** property to the [cloudPcOrganizationSettings](https://learn.microsoft.com/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", "Target": "cloudPcOrganizationSettings" }, { @@ -6567,7 +6593,7 @@ "ApiChange": "Property", "ChangedApiName": "enableSingleSignOn", "ChangeType": "Addition", - "Description": "Added the **enableSingleSignOn** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **enableSingleSignOn** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -6585,7 +6611,7 @@ "ApiChange": "Property", "ChangedApiName": "snapshotType", "ChangeType": "Addition", - "Description": "Added the **snapshotType** property to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta).", + "Description": "Added the **snapshotType** property to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta).", "Target": "cloudPcSnapshot" }, { @@ -6593,7 +6619,7 @@ "ApiChange": "Property", "ChangedApiName": "expirationDateTime", "ChangeType": "Addition", - "Description": "Added the **expirationDateTime** property to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta).", + "Description": "Added the **expirationDateTime** property to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta).", "Target": "cloudPcSnapshot" }, { @@ -6661,7 +6687,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcRemoteActionCapability", "ChangeType": "Addition", - "Description": "Added the [cloudPcRemoteActionCapability](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcRemoteActionCapability?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcRemoteActionCapability](https://learn.microsoft.com/graph/api/resources/cloudpcremoteactioncapability?view=graph-rest-beta) resource type.", "Target": "cloudPcRemoteActionCapability" }, { @@ -6669,7 +6695,7 @@ "ApiChange": "Method", "ChangedApiName": "getSupportedCloudPcRemoteActions", "ChangeType": "Addition", - "Description": "Added the [getSupportedCloudPcRemoteActions](https://learn.microsoft.com/en-us/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getSupportedCloudPcRemoteActions](https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -6687,7 +6713,7 @@ "ApiChange": "Property", "ChangedApiName": "virtualNetworkLocation", "ChangeType": "Addition", - "Description": "Added the **virtualNetworkLocation** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **virtualNetworkLocation** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -6721,7 +6747,7 @@ "ApiChange": "Property", "ChangedApiName": "regionGroup", "ChangeType": "Addition", - "Description": "Added the **regionGroup** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", + "Description": "Added the **regionGroup** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", "Target": "cloudPcSupportedRegion" } ], @@ -6747,7 +6773,7 @@ "ApiChange": "Method", "ChangedApiName": "getSharedUseLicenseUsageReport", "ChangeType": "Addition", - "Description": "Added the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getSharedUseLicenseUsageReport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getSharedUseLicenseUsageReport](https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -6791,7 +6817,7 @@ "ApiChange": "Method", "ChangedApiName": "getShiftWorkCloudPcAccessState", "ChangeType": "Addition", - "Description": "Added the **getShiftWorkCloudPcAccessState** method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **getShiftWorkCloudPcAccessState** method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -6833,7 +6859,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExportJob", "ChangeType": "Addition", - "Description": "Added the [cloudPcExportJob](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcexportjob?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcExportJob](https://learn.microsoft.com/graph/api/resources/cloudpcexportjob?view=graph-rest-beta) resource.", "Target": "cloudPcExportJob" }, { @@ -6841,7 +6867,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcReports", "ChangeType": "Addition", - "Description": "Added the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -6849,7 +6875,7 @@ "ApiChange": "Relationship", "ChangedApiName": "reports", "ChangeType": "Addition", - "Description": "Added the **reports** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **reports** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -6857,7 +6883,7 @@ "ApiChange": "Method", "ChangedApiName": "getDailyAggregatedRemoteConnectionReports", "ChangeType": "Addition", - "Description": "Added the [getDailyAggregatedRemoteConnectionReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getDailyAggregatedRemoteConnectionReports](https://learn.microsoft.com/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -6865,7 +6891,7 @@ "ApiChange": "Method", "ChangedApiName": "getRemoteConnectionHistoricalReports", "ChangeType": "Addition", - "Description": "Added the [getRemoteConnectionHistoricalReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getRemoteConnectionHistoricalReports](https://learn.microsoft.com/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -6873,7 +6899,7 @@ "ApiChange": "Method", "ChangedApiName": "getTotalAggregatedRemoteConnectionReports", "ChangeType": "Addition", - "Description": "Added the [getTotalAggregatedRemoteConnectionReports](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getTotalAggregatedRemoteConnectionReports](https://learn.microsoft.com/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -6881,7 +6907,7 @@ "ApiChange": "Method", "ChangedApiName": "getRealTimeRemoteConnectionLatency", "ChangeType": "Addition", - "Description": "Added the [getRealTimeRemoteConnectionLatency](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getrealtimeremoteconnectionlatency?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getRealTimeRemoteConnectionLatency](https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionlatency?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" }, { @@ -6889,7 +6915,7 @@ "ApiChange": "Method", "ChangedApiName": "getRealTimeRemoteConnectionStatus", "ChangeType": "Addition", - "Description": "Added the [getRealTimeRemoteConnectionStatus](https://learn.microsoft.com/en-us/graph/api/cloudpcreports-getrealtimeremoteconnectionstatus?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", + "Description": "Added the [getRealTimeRemoteConnectionStatus](https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionstatus?view=graph-rest-beta) method to the [cloudPcReports](https://learn.microsoft.com/graph/api/resources/cloudpcreports?view=graph-rest-beta) resource.", "Target": "cloudPcReports" } ], @@ -6907,7 +6933,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcCrossCloudGovernmentOrganizationMapping", "ChangeType": "Addition", - "Description": "Added the [cloudPcCrossCloudGovernmentOrganizationMapping](https://learn.microsoft.com/en-us/graph/api/resources/cloudpccrosscloudgovernmentorganizationmapping?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcCrossCloudGovernmentOrganizationMapping](https://learn.microsoft.com/graph/api/resources/cloudpccrosscloudgovernmentorganizationmapping?view=graph-rest-beta) resource.", "Target": "cloudPcCrossCloudGovernmentOrganizationMapping" }, { @@ -6915,7 +6941,7 @@ "ApiChange": "Relationship", "ChangedApiName": "crossCloudGovernmentOrganizationMapping", "ChangeType": "Addition", - "Description": "Added the **crossCloudGovernmentOrganizationMapping** navigation property to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **crossCloudGovernmentOrganizationMapping** navigation property to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -6933,7 +6959,7 @@ "ApiChange": "Method", "ChangedApiName": "retryPartnerAgentInstallation", "ChangeType": "Addition", - "Description": "Added the [retryPartnerAgentInstallation](https://learn.microsoft.com/en-us/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [retryPartnerAgentInstallation](https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -6941,7 +6967,7 @@ "ApiChange": "Property", "ChangedApiName": "partnerAgentInstallResults", "ChangeType": "Addition", - "Description": "Added the **partnerAgentInstallResults** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudPC?view=graph-rest-beta) resource.", + "Description": "Added the **partnerAgentInstallResults** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -6965,7 +6991,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcPartnerAgentInstallResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcPartnerAgentInstallResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcPartnerAgentInstallResult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcPartnerAgentInstallResult](https://learn.microsoft.com/graph/api/resources/cloudpcpartneragentinstallresult?view=graph-rest-beta) resource type.", "Target": "cloudPcPartnerAgentInstallResult" } ], @@ -6983,7 +7009,7 @@ "ApiChange": "Property", "ChangedApiName": "supportedSolution", "ChangeType": "Addition", - "Description": "Added the **supportedSolution** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", + "Description": "Added the **supportedSolution** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", "Target": "cloudPcSupportedRegion" } ], @@ -7027,7 +7053,7 @@ "ApiChange": "Method", "ChangedApiName": "restore", "ChangeType": "Addition", - "Description": "Added the [restore](https://learn.microsoft.com/en-us/graph/api/cloudpc-restore?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [restore](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -7045,7 +7071,7 @@ "ApiChange": "Method", "ChangedApiName": "GET", "ChangeType": "Addition", - "Description": "Added the [get cloudPC](https://learn.microsoft.com/en-us/graph/api/cloudpc-get?view=graph-rest-beta) method.", + "Description": "Added the [get cloudPC](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-beta) method.", "Target": "user" }, { @@ -7053,7 +7079,7 @@ "ApiChange": "Method", "ChangedApiName": "reboot", "ChangeType": "Addition", - "Description": "Added the [reboot](https://learn.microsoft.com/en-us/graph/api/cloudpc-reboot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", + "Description": "Added the [reboot](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", "Target": "cloudPC" }, { @@ -7061,7 +7087,7 @@ "ApiChange": "Method", "ChangedApiName": "rename", "ChangeType": "Addition", - "Description": "Added the [rename](https://learn.microsoft.com/en-us/graph/api/cloudpc-rename?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", + "Description": "Added the [rename](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", "Target": "cloudPC" }, { @@ -7069,7 +7095,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovision", "ChangeType": "Addition", - "Description": "Added the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", + "Description": "Added the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", "Target": "cloudPC" }, { @@ -7077,7 +7103,7 @@ "ApiChange": "Method", "ChangedApiName": "troubleshoot", "ChangeType": "Addition", - "Description": "Added the [troubleshoot](https://learn.microsoft.com/en-us/graph/api/cloudpc-troubleshoot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", + "Description": "Added the [troubleshoot](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) for end-user.", "Target": "cloudPC" } ], @@ -7095,7 +7121,7 @@ "ApiChange": "Property", "ChangedApiName": "enableMEMAutoEnroll", "ChangeType": "Addition", - "Description": "Added the `enableMEMAutoEnroll` property to the [cloudPcOrganizationSettings](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", + "Description": "Added the `enableMEMAutoEnroll` property to the [cloudPcOrganizationSettings](https://learn.microsoft.com/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", "Target": "cloudPcOrganizationSettings" } ], @@ -7147,7 +7173,7 @@ "ApiChange": "Property", "ChangedApiName": "azureStorageContainerName", "ChangeType": "Addition", - "Description": "Added the **azureStorageContainerName** property to the [cloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource.", + "Description": "Added the **azureStorageContainerName** property to the [cloudPcReviewStatus](https://learn.microsoft.com/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource.", "Target": "cloudPcReviewStatus" } ], @@ -7189,7 +7215,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcConnectivityEvent", "ChangeType": "Addition", - "Description": "Added the [cloudPcConnectivityEvent](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcconnectivityevent?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcConnectivityEvent](https://learn.microsoft.com/graph/api/resources/cloudpcconnectivityevent?view=graph-rest-beta) resource type.", "Target": "cloudPcConnectivityEvent" }, { @@ -7197,7 +7223,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcConnectivityResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcConnectivityResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcconnectivityresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcConnectivityResult](https://learn.microsoft.com/graph/api/resources/cloudpcconnectivityresult?view=graph-rest-beta) resource type.", "Target": "cloudPcConnectivityResult" }, { @@ -7205,7 +7231,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcHealthCheckItem", "ChangeType": "Addition", - "Description": "Added the [cloudPcHealthCheckItem](https://learn.microsoft.com/en-us/graph/api/resources/cloudpchealthcheckitem?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcHealthCheckItem](https://learn.microsoft.com/graph/api/resources/cloudpchealthcheckitem?view=graph-rest-beta) resource type.", "Target": "cloudPcHealthCheckItem" }, { @@ -7213,7 +7239,7 @@ "ApiChange": "Property", "ChangedApiName": "connectivityResult", "ChangeType": "Addition", - "Description": "Added the **connectivityResult** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **connectivityResult** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -7221,7 +7247,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcConnectivityHistory", "ChangeType": "Addition", - "Description": "Added the [getCloudPcConnectivityHistory](https://learn.microsoft.com/en-us/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPcConnectivityHistory](https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -7247,7 +7273,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcExternalPartnerSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcExternalPartnerSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcexternalpartnersetting?view=graph-rest-beta) resource and supported methods.", + "Description": "Added the [cloudPcExternalPartnerSetting](https://learn.microsoft.com/graph/api/resources/cloudpcexternalpartnersetting?view=graph-rest-beta) resource and supported methods.", "Target": "cloudPcExternalPartnerSetting" }, { @@ -7255,7 +7281,7 @@ "ApiChange": "Relationship", "ChangedApiName": "externalPartnerSettings", "ChangeType": "Addition", - "Description": "Added the **externalPartnerSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **externalPartnerSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" } ], @@ -7273,7 +7299,7 @@ "ApiChange": "Property", "ChangedApiName": "alternateResourceUrl", "ChangeType": "Addition", - "Description": "Added the **alternateResourceUrl** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **alternateResourceUrl** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -7291,7 +7317,7 @@ "ApiChange": "Property", "ChangedApiName": "alternateResourceUrl", "ChangeType": "Addition", - "Description": "Added the **alternateResourceUrl** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **alternateResourceUrl** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7299,7 +7325,7 @@ "ApiChange": "Property", "ChangedApiName": "cloudPcGroupDisplayName", "ChangeType": "Addition", - "Description": "Added the **cloudPcGroupDisplayName** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **cloudPcGroupDisplayName** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7307,7 +7333,7 @@ "ApiChange": "Property", "ChangedApiName": "gracePeriodInHours", "ChangeType": "Addition", - "Description": "Added the **gracePeriodInHours** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **gracePeriodInHours** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7315,7 +7341,7 @@ "ApiChange": "Property", "ChangedApiName": "localAdminEnabled", "ChangeType": "Addition", - "Description": "Added the **localAdminEnabled** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **localAdminEnabled** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7323,7 +7349,7 @@ "ApiChange": "Property", "ChangedApiName": "managedBy", "ChangeType": "Addition", - "Description": "Added the **managedBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **managedBy** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" } ], @@ -7349,7 +7375,7 @@ "ApiChange": "Property", "ChangedApiName": "regionStatus", "ChangeType": "Addition", - "Description": "Added the **regionStatus** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", + "Description": "Added the **regionStatus** property to the [cloudPcSupportedRegion](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource.", "Target": "cloudPcSupportedRegion" } ], @@ -7367,7 +7393,7 @@ "ApiChange": "Method", "ChangedApiName": "updateAdDomainPassword", "ChangeType": "Deprecation", - "Description": "Deprecated the PATCH syntax for the [updateAdDomainPassword](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method.", + "Description": "Deprecated the PATCH syntax for the [updateAdDomainPassword](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method.", "Target": "updateaddomainpassword" }, { @@ -7375,7 +7401,7 @@ "ApiChange": "Method", "ChangedApiName": "updateAdDomainPassword", "ChangeType": "Addition", - "Description": "Added the POST syntax to the [updateAdDomainPassword](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method.", + "Description": "Added the POST syntax to the [updateAdDomainPassword](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method.", "Target": "updateaddomainpassword" } ], @@ -7401,7 +7427,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcReviewStatus", "ChangeType": "Addition", - "Description": "Added the [cloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcReviewStatus](https://learn.microsoft.com/graph/api/resources/cloudpcreviewstatus?view=graph-rest-beta) resource type.", "Target": "cloudPcReviewStatus" }, { @@ -7409,7 +7435,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkSetCloudPcReviewStatus", "ChangeType": "Addition", - "Description": "Added the [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [bulkSetCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -7417,7 +7443,7 @@ "ApiChange": "Method", "ChangedApiName": "setCloudPcReviewStatus", "ChangeType": "Addition", - "Description": "Added the [setCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [setCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -7425,7 +7451,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcReviewStatus", "ChangeType": "Addition", - "Description": "Added the [getCloudPcReviewStatus](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPcReviewStatus](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" } ], @@ -7443,7 +7469,7 @@ "ApiChange": "Method", "ChangedApiName": "cloudPcBulkRemoteActionResult", "ChangeType": "Addition", - "Description": "Changed the return type for the [bulkReprovisionCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method.", + "Description": "Changed the return type for the [bulkReprovisionCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method.", "Target": "bulkReprovisionCloudPc" } ], @@ -7461,7 +7487,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcLaunchInfo", "ChangeType": "Addition", - "Description": "Added the [cloudPcLaunchInfo](https://learn.microsoft.com/en-us/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcLaunchInfo](https://learn.microsoft.com/graph/api/resources/cloudpclaunchinfo?view=graph-rest-beta) resource type.", "Target": "cloudPcLaunchInfo" }, { @@ -7469,7 +7495,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcLaunchInfo", "ChangeType": "Addition", - "Description": "Added the [getCloudPcLaunchInfo](https://learn.microsoft.com/en-us/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPcLaunchInfo](https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -7477,7 +7503,7 @@ "ApiChange": "Method", "ChangedApiName": "GET", "ChangeType": "Addition", - "Description": "Added the [list](https://learn.microsoft.com/en-us/graph/api/user-list-cloudpcs?view=graph-rest-beta) operation to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [list](https://learn.microsoft.com/graph/api/user-list-cloudpcs?view=graph-rest-beta) operation to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "user" } ], @@ -7495,7 +7521,7 @@ "ApiChange": "Property", "ChangedApiName": "windowsSettings", "ChangeType": "Addition", - "Description": "Added the **windowsSettings** property to [cloudPcOrganizationSettings](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", + "Description": "Added the **windowsSettings** property to [cloudPcOrganizationSettings](https://learn.microsoft.com/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource.", "Target": "cloudPcOrganizationSettings" } ], @@ -7513,7 +7539,7 @@ "ApiChange": "Property", "ChangedApiName": "windowsSettings", "ChangeType": "Addition", - "Description": "Added the **windowsSettings** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **windowsSettings** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7521,7 +7547,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcWindowsSettings", "ChangeType": "Addition", - "Description": "Added the [cloudPcWindowsSettings](https://learn.microsoft.com/en-us/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcWindowsSettings](https://learn.microsoft.com/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource.", "Target": "cloudPcWindowsSettings" } ], @@ -7539,7 +7565,7 @@ "ApiChange": "Property", "ChangedApiName": "subscriptionDisplayName", "ChangeType": "Addition", - "Description": "Added the **subscriptionDisplayName** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **subscriptionDisplayName** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcSourceDeviceImage" }, { @@ -7547,7 +7573,7 @@ "ApiChange": "Property", "ChangedApiName": "subscriptionId", "ChangeType": "Addition", - "Description": "Added the **subscriptionId** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **subscriptionId** property to the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcSourceDeviceImage" } ], @@ -7573,7 +7599,7 @@ "ApiChange": "Property", "ChangedApiName": "managedBy", "ChangeType": "Addition", - "Description": "Added the **managedBy** property to [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **managedBy** property to [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -7581,7 +7607,7 @@ "ApiChange": "Property", "ChangedApiName": "inUse", "ChangeType": "Change", - "Description": "Changed the **inUse** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) to nullable", + "Description": "Changed the **inUse** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) to nullable", "Target": "cloudPcOnPremisesConnection" } ], @@ -7615,7 +7641,7 @@ "ApiChange": "Permission", "ChangedApiName": "RoleManagement.Read.CloudPC", "ChangeType": "Addition", - "Description": "Added support for the delegated permission of `RoleManagement.Read.CloudPC` to the read operations of the [unifiedRoleDefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta) resource.", + "Description": "Added support for the delegated permission of `RoleManagement.Read.CloudPC` to the read operations of the [unifiedRoleDefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta) resource.", "Target": "unifiedRoleDefinition" }, { @@ -7641,7 +7667,7 @@ "ApiChange": "Property", "ChangedApiName": "restorePointSetting", "ChangeType": "Addition", - "Description": "Added the **restorePointSetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **restorePointSetting** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" }, { @@ -7649,7 +7675,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcRestorePointSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcRestorePointSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcrestorepointsetting?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcRestorePointSetting](https://learn.microsoft.com/graph/api/resources/cloudpcrestorepointsetting?view=graph-rest-beta) resource.", "Target": "cloudPcRestorePointSetting" } ], @@ -7683,7 +7709,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcBulkRemoteActionResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcBulkRemoteActionResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcbulkremoteactionresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcBulkRemoteActionResult](https://learn.microsoft.com/graph/api/resources/cloudpcbulkremoteactionresult?view=graph-rest-beta) resource type.", "Target": "cloudPcBulkRemoteActionResult" }, { @@ -7691,7 +7717,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkRestoreCloudPc", "ChangeType": "Addition", - "Description": "Added the [bulkRestoreCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [bulkRestoreCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -7699,7 +7725,7 @@ "ApiChange": "Method", "ChangedApiName": "restoreCloudPc", "ChangeType": "Addition", - "Description": "Added the **restoreCloudPc** method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **restoreCloudPc** method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" } ], @@ -7717,7 +7743,7 @@ "ApiChange": "Relationship", "ChangedApiName": "organizationSettings", "ChangeType": "Addition", - "Description": "Added the **organizationSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **organizationSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -7725,7 +7751,7 @@ "ApiChange": "Property", "ChangedApiName": "userAccountType", "ChangeType": "Addition", - "Description": "Added the **userAccountType** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **userAccountType** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -7733,7 +7759,7 @@ "ApiChange": "Property", "ChangedApiName": "osVersion", "ChangeType": "Addition", - "Description": "Added the **osVersion** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **osVersion** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -7741,7 +7767,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOrganizationSettings", "ChangeType": "Addition", - "Description": "Added the [cloudPcOrganizationSettings](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOrganizationSettings](https://learn.microsoft.com/graph/api/resources/cloudpcorganizationsettings?view=graph-rest-beta) resource type.", "Target": "cloudPcOrganizationSettings" }, { @@ -7789,7 +7815,7 @@ "ApiChange": "Parameter", "ChangedApiName": "userAccountType", "ChangeType": "Addition", - "Description": "Added the **userAccountType** parameter to the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) method.", + "Description": "Added the **userAccountType** parameter to the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) method.", "Target": "reprovision" }, { @@ -7797,7 +7823,7 @@ "ApiChange": "Parameter", "ChangedApiName": "osVersion", "ChangeType": "Addition", - "Description": "Added the **osVersion** parameter to the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) method.", + "Description": "Added the **osVersion** parameter to the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) method.", "Target": "reprovision" }, { @@ -7805,7 +7831,7 @@ "ApiChange": "Method", "ChangedApiName": "changeUserAccountType", "ChangeType": "Addition", - "Description": "Added the [changeUserAccountType](https://learn.microsoft.com/en-us/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [changeUserAccountType](https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -7823,7 +7849,7 @@ "ApiChange": "Method", "ChangedApiName": "POST", "ChangeType": "Addition", - "Description": "Cloud PC provider supports [create](https://learn.microsoft.com/en-us/graph/api/rbacapplication-post-roledefinitions?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", + "Description": "Cloud PC provider supports [create](https://learn.microsoft.com/graph/api/rbacapplication-post-roledefinitions?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", "Target": "unifiedroledefinition" }, { @@ -7831,7 +7857,7 @@ "ApiChange": "Method", "ChangedApiName": "Patch", "ChangeType": "Addition", - "Description": "Cloud PC provider supports [update](https://learn.microsoft.com/en-us/graph/api/unifiedroledefinition-update?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", + "Description": "Cloud PC provider supports [update](https://learn.microsoft.com/graph/api/unifiedroledefinition-update?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", "Target": "unifiedroledefinition" }, { @@ -7839,7 +7865,7 @@ "ApiChange": "Method", "ChangedApiName": "DELETE", "ChangeType": "Addition", - "Description": "Cloud PC provider supports [delete](https://learn.microsoft.com/en-us/graph/api/unifiedroledefinition-delete?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", + "Description": "Cloud PC provider supports [delete](https://learn.microsoft.com/graph/api/unifiedroledefinition-delete?view=graph-rest-beta) operation for [unifiedroledefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", "Target": "unifiedroledefinition" }, { @@ -7847,7 +7873,7 @@ "ApiChange": "Permission", "ChangedApiName": "RoleManagement.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `RoleManagement.Read.All` to the read operations of the for [unifiedroledefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", + "Description": "Added support for the application permission of `RoleManagement.Read.All` to the read operations of the for [unifiedroledefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", "Target": "unifiedroledefinition" } ], @@ -7883,7 +7909,7 @@ "ApiChange": "Property", "ChangedApiName": "microsoftManagedDesktop", "ChangeType": "Addition", - "Description": "Added the **microsoftManagedDesktop** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **microsoftManagedDesktop** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -7891,7 +7917,7 @@ "ApiChange": "Resource", "ChangedApiName": "microsoftManagedDesktop", "ChangeType": "Addition", - "Description": "Added the [microsoftManagedDesktop](https://learn.microsoft.com/en-us/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource.", + "Description": "Added the [microsoftManagedDesktop](https://learn.microsoft.com/graph/api/resources/microsoftmanageddesktop?view=graph-rest-beta) resource.", "Target": "microsoftManagedDesktop" }, { @@ -7917,7 +7943,7 @@ "ApiChange": "Property", "ChangedApiName": "type", "ChangeType": "Addition", - "Description": "Added the **type** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the **type** property to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -7933,7 +7959,7 @@ "ApiChange": "Property", "ChangedApiName": "adDomainName", "ChangeType": "Change", - "Description": "Changed the **adDomainName** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource from required to optional.", + "Description": "Changed the **adDomainName** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource from required to optional.", "Target": "cloudPcOnPremisesConnection" }, { @@ -7941,7 +7967,7 @@ "ApiChange": "Property", "ChangedApiName": "adDomainUsername", "ChangeType": "Change", - "Description": "Changed the **adDomainUsername** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource from required to optional.", + "Description": "Changed the **adDomainUsername** property in the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource from required to optional.", "Target": "cloudPcOnPremisesConnection" } ], @@ -8065,7 +8091,7 @@ "ApiChange": "Property", "ChangedApiName": "domainJoinConfiguration", "ChangeType": "Addition", - "Description": "Added the **domainJoinConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the **domainJoinConfiguration** property to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -8073,7 +8099,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDomainJoinConfiguration", "ChangeType": "Addition", - "Description": "Added the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDomainJoinConfiguration](https://learn.microsoft.com/graph/api/resources/cloudpcdomainjoinconfiguration?view=graph-rest-beta) resource type.", "Target": "cloudPcDomainJoinConfiguration" }, { @@ -8099,7 +8125,7 @@ "ApiChange": "Relationship", "ChangedApiName": "galleryImages", "ChangeType": "Addition", - "Description": "Added the **galleryImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **galleryImages** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -8107,7 +8133,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcGalleryImage", "ChangeType": "Addition", - "Description": "Added the [cloudPcGalleryImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource type and supported methods.", + "Description": "Added the [cloudPcGalleryImage](https://learn.microsoft.com/graph/api/resources/cloudpcgalleryimage?view=graph-rest-beta) resource type and supported methods.", "Target": "cloudPcGalleryImage" }, { @@ -8133,7 +8159,7 @@ "ApiChange": "Method", "ChangedApiName": "reboot", "ChangeType": "Addition", - "Description": "Added the [reboot](https://learn.microsoft.com/en-us/graph/api/cloudpc-reboot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [reboot](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8141,7 +8167,7 @@ "ApiChange": "Method", "ChangedApiName": "rename", "ChangeType": "Addition", - "Description": "Added the [rename](https://learn.microsoft.com/en-us/graph/api/cloudpc-rename?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [rename](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8149,7 +8175,7 @@ "ApiChange": "Method", "ChangedApiName": "troubleshoot", "ChangeType": "Addition", - "Description": "Added the [troubleshoot](https://learn.microsoft.com/en-us/graph/api/cloudpc-troubleshoot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [troubleshoot](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8157,7 +8183,7 @@ "ApiChange": "Property", "ChangedApiName": "aadDeviceId", "ChangeType": "Addition", - "Description": "Added the **aadDeviceId** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **aadDeviceId** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8165,7 +8191,7 @@ "ApiChange": "Property", "ChangedApiName": "servicePlanType", "ChangeType": "Addition", - "Description": "Added the **servicePlanType** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **servicePlanType** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8173,7 +8199,7 @@ "ApiChange": "Property", "ChangedApiName": "lastRemoteActionResult", "ChangeType": "Addition", - "Description": "Added the **lastRemoteActionResult** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **lastRemoteActionResult** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8181,7 +8207,7 @@ "ApiChange": "Property", "ChangedApiName": "lastLoginResult", "ChangeType": "Addition", - "Description": "Added the **lastLoginResult** property to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **lastLoginResult** property to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -8189,7 +8215,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcLoginResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcLoginResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcloginresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcLoginResult](https://learn.microsoft.com/graph/api/resources/cloudpcloginresult?view=graph-rest-beta) resource type.", "Target": "cloudPcLoginResult" } ], @@ -8207,7 +8233,7 @@ "ApiChange": "Property", "ChangedApiName": "expirationDate", "ChangeType": "Addition", - "Description": "Added the **expirationDate** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **expirationDate** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -8215,7 +8241,7 @@ "ApiChange": "Property", "ChangedApiName": "osStatus", "ChangeType": "Addition", - "Description": "Added the **osStatus** property to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the **osStatus** property to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -8291,7 +8317,7 @@ "ApiChange": "Relationship", "ChangedApiName": "servicePlans", "ChangeType": "Addition", - "Description": "Added the **servicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **servicePlans** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -8299,7 +8325,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcServicePlan", "ChangeType": "Addition", - "Description": "Added the [cloudPcServicePlan](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcserviceplan?view=graph-rest-beta) resource type and supported method.", + "Description": "Added the [cloudPcServicePlan](https://learn.microsoft.com/graph/api/resources/cloudpcserviceplan?view=graph-rest-beta) resource type and supported method.", "Target": "cloudPcServicePlan" }, { @@ -8325,7 +8351,7 @@ "ApiChange": "Relationship", "ChangedApiName": "supportedRegions", "ChangeType": "Addition", - "Description": "Added the **supportedRegions** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **supportedRegions** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -8333,7 +8359,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSupportedRegion", "ChangeType": "Addition", - "Description": "Added the [cloudPcSupportedRegion](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource type and supported method.", + "Description": "Added the [cloudPcSupportedRegion](https://learn.microsoft.com/graph/api/resources/cloudpcsupportedregion?view=graph-rest-beta) resource type and supported method.", "Target": "cloudPcSupportedRegion" } ], @@ -8351,7 +8377,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcRemoteActionResult", "ChangeType": "Addition", - "Description": "Added the [cloudPcRemoteActionResult](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcremoteactionresult?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcRemoteActionResult](https://learn.microsoft.com/graph/api/resources/cloudpcremoteactionresult?view=graph-rest-beta) resource type.", "Target": "cloudPcRemoteActionResult" }, { @@ -8359,7 +8385,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovisionCloudPc", "ChangeType": "Addition", - "Description": "Added the **reprovisionCloudPc** method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **reprovisionCloudPc** method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -8367,7 +8393,7 @@ "ApiChange": "Method", "ChangedApiName": "getCloudPcRemoteActionResults", "ChangeType": "Addition", - "Description": "Added the [getCloudPcRemoteActionResults](https://learn.microsoft.com/en-us/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [getCloudPcRemoteActionResults](https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -8375,7 +8401,7 @@ "ApiChange": "Method", "ChangedApiName": "bulkReprovisionCloudPc", "ChangeType": "Addition", - "Description": "Added the [bulkReprovisionCloudPc](https://learn.microsoft.com/en-us/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [bulkReprovisionCloudPc](https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta) method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" }, { @@ -8415,7 +8441,7 @@ "ApiChange": "Method", "ChangedApiName": "resizeCloudPc", "ChangeType": "Addition", - "Description": "Added the **resizeCloudPc** method to the [Cloud PC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the **resizeCloudPc** method to the [Cloud PC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "managedDevice" } ], @@ -8433,7 +8459,7 @@ "ApiChange": "Method", "ChangedApiName": "endGracePeriod", "ChangeType": "Addition", - "Description": "Added the [endGracePeriod](https://learn.microsoft.com/en-us/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [endGracePeriod](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" } ], @@ -8605,7 +8631,7 @@ "ApiChange": "ComplexType", "ChangedApiName": "cloudPcAuditActor", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditActor](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditactor?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAuditActor](https://learn.microsoft.com/graph/api/resources/cloudpcauditactor?view=graph-rest-beta) resource type.", "Target": "cloudPcAuditActor" }, { @@ -8613,7 +8639,7 @@ "ApiChange": "ComplexType", "ChangedApiName": "cloudPcAuditProperty", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditProperty](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditproperty?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAuditProperty](https://learn.microsoft.com/graph/api/resources/cloudpcauditproperty?view=graph-rest-beta) resource type.", "Target": "cloudPcAuditProperty" }, { @@ -8621,7 +8647,7 @@ "ApiChange": "ComplexType", "ChangedApiName": "cloudPcAuditResource", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditResource](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditresource?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcAuditResource](https://learn.microsoft.com/graph/api/resources/cloudpcauditresource?view=graph-rest-beta) resource type.", "Target": "cloudPcAuditResource" }, { @@ -8629,7 +8655,7 @@ "ApiChange": "ComplexType", "ChangedApiName": "cloudPcUserRoleScopeTagInfo", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserRoleScopeTagInfo](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcuserrolescopetaginfo?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcUserRoleScopeTagInfo](https://learn.microsoft.com/graph/api/resources/cloudpcuserrolescopetaginfo?view=graph-rest-beta) resource type.", "Target": "cloudPcUserRoleScopeTagInfo" }, { @@ -8637,7 +8663,7 @@ "ApiChange": "EntityType", "ChangedApiName": "cloudPcAuditEvent", "ChangeType": "Addition", - "Description": "Added the [cloudPcAuditEvent](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcAuditEvent](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta) resource.", "Target": "cloudPcAuditEvent" }, { @@ -8645,7 +8671,7 @@ "ApiChange": "NavigationProperty", "ChangedApiName": "auditEvents", "ChangeType": "Addition", - "Description": "Added the **auditEvents** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **auditEvents** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -8653,7 +8679,7 @@ "ApiChange": "Function", "ChangedApiName": "getAuditActivityTypes", "ChangeType": "Addition", - "Description": "Added the [getAuditActivityTypes](https://learn.microsoft.com/en-us/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-beta) method to the [cloudPcAuditEvent](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcauditevent?view=graph-rest-beta) resource.", + "Description": "Added the [getAuditActivityTypes](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-beta) method to the [cloudPcAuditEvent](https://learn.microsoft.com/graph/api/resources/cloudpcauditevent?view=graph-rest-beta) resource.", "Target": "cloudPcAuditEvent" } ], @@ -8671,7 +8697,7 @@ "ApiChange": "Relationship", "ChangedApiName": "userSettings", "ChangeType": "Addition", - "Description": "Added the **userSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **userSettings** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -8679,7 +8705,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserSetting", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource type.", "Target": "cloudPcUserSetting" }, { @@ -8687,7 +8713,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcUserSettingAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcUserSettingAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcUserSettingAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-beta) resource type.", "Target": "cloudPcUserSettingAssignment" }, { @@ -8695,7 +8721,7 @@ "ApiChange": "Method", "ChangedApiName": "assign", "ChangeType": "Addition", - "Description": "Added the [assign](https://learn.microsoft.com/en-us/graph/api/cloudpcusersetting-assign?view=graph-rest-beta) method to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the [assign](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-beta) method to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" } ], @@ -8815,7 +8841,7 @@ "ApiChange": "Relationship", "ChangedApiName": "roleManagement", "ChangeType": "Addition", - "Description": "Added the **cloudPC** rbacApplicationMultiple navigation property to the [roleManagement](https://learn.microsoft.com/en-us/graph/api/resources/rolemanagement?view=graph-rest-beta) resource.", + "Description": "Added the **cloudPC** rbacApplicationMultiple navigation property to the [roleManagement](https://learn.microsoft.com/graph/api/resources/rolemanagement?view=graph-rest-beta) resource.", "Target": "roleManagement" }, { @@ -8823,7 +8849,7 @@ "ApiChange": "Resource", "ChangedApiName": "unifiedRoleDefinition", "ChangeType": "Change", - "Description": "Cloud PC provider supports get and list operation for [unifiedRoleDefinition](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", + "Description": "Cloud PC provider supports get and list operation for [unifiedRoleDefinition](https://learn.microsoft.com/graph/api/resources/unifiedroledefinition?view=graph-rest-beta).", "Target": "unifiedRoleDefinition" }, { @@ -8831,7 +8857,7 @@ "ApiChange": "Resource", "ChangedApiName": "unifiedRoleAssignmentMultiple", "ChangeType": "Change", - "Description": "Cloud PC provider supports get, list, create, update and delete operation for [unifiedRoleAssignmentMultiple](https://learn.microsoft.com/en-us/graph/api/resources/unifiedroleassignmentmultiple?view=graph-rest-beta).", + "Description": "Cloud PC provider supports get, list, create, update and delete operation for [unifiedRoleAssignmentMultiple](https://learn.microsoft.com/graph/api/resources/unifiedroleassignmentmultiple?view=graph-rest-beta).", "Target": "unifiedRoleAssignmentMultiple" } ], @@ -8891,7 +8917,7 @@ "ApiChange": "Property", "ChangedApiName": "createdDateTime", "ChangeType": "Addition", - "Description": "Added the **createdDateTime** property to the [cloudPcUserSetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", + "Description": "Added the **createdDateTime** property to the [cloudPcUserSetting](https://learn.microsoft.com/graph/api/resources/cloudpcusersetting?view=graph-rest-beta) resource.", "Target": "cloudPcUserSetting" }, { @@ -8899,7 +8925,7 @@ "ApiChange": "Property", "ChangedApiName": "createdDateTime", "ChangeType": "Addition", - "Description": "Added the **createdDateTime** property to the [cloudPcUserSettingAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-beta) resource.", + "Description": "Added the **createdDateTime** property to the [cloudPcUserSettingAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcusersettingassignment?view=graph-rest-beta) resource.", "Target": "cloudPcUserSettingAssignment" } ], @@ -8917,7 +8943,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcForensicStorageAccount", "ChangeType": "Addition", - "Description": "Added the [cloudPcForensicStorageAccount](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcForensicStorageAccount](https://learn.microsoft.com/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.", "Target": "cloudPcForensicStorageAccount" }, { @@ -8925,7 +8951,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSubscription", "ChangeType": "Addition", - "Description": "Added the [cloudPcSubscription](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsubscription?view=graph-rest-beta) resource.", + "Description": "Added the [cloudPcSubscription](https://learn.microsoft.com/graph/api/resources/cloudpcsubscription?view=graph-rest-beta) resource.", "Target": "cloudPcSubscription" }, { @@ -8933,7 +8959,7 @@ "ApiChange": "Method", "ChangedApiName": "getStorageAccounts", "ChangeType": "Addition", - "Description": "Added the [getStorageAccounts](https://learn.microsoft.com/en-us/graph/api/cloudpcsnapshot-getstorageaccounts?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the [getStorageAccounts](https://learn.microsoft.com/graph/api/cloudpcsnapshot-getstorageaccounts?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" }, { @@ -8941,7 +8967,7 @@ "ApiChange": "Method", "ChangedApiName": "getSubscriptions", "ChangeType": "Addition", - "Description": "Added the [getSubscriptions](https://learn.microsoft.com/en-us/graph/api/cloudpcsnapshot-getsubscriptions?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", + "Description": "Added the [getSubscriptions](https://learn.microsoft.com/graph/api/cloudpcsnapshot-getsubscriptions?view=graph-rest-beta) method to the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource.", "Target": "cloudPcSnapshot" } ], @@ -8959,7 +8985,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPc" }, { @@ -8967,7 +8993,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPCDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPCDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPCDeviceImage" }, { @@ -8975,7 +9001,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -8983,7 +9009,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.Read.All` to the read operations of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -8991,7 +9017,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.Read.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.Read.All` to the [getSourceImages](https://learn.microsoft.com/en-us/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta) method of [cloudPCDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta).", + "Description": "Added support for the application permission of `CloudPC.Read.All` to the [getSourceImages](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta) method of [cloudPCDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta).", "Target": "cloudPCDeviceImage-getSourceImages" }, { @@ -8999,7 +9025,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -9007,7 +9033,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPCDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPCDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" }, { @@ -9015,7 +9041,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -9023,7 +9049,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the read and write operations of the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -9031,7 +9057,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) method of [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta).", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) method of [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta).", "Target": "cloudPc-reprovision" }, { @@ -9039,7 +9065,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the [updateAdDomainPassword](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method of [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta).", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the [updateAdDomainPassword](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method of [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta).", "Target": "cloudpconpremisesconnection-updateaddomainpassword" }, { @@ -9047,7 +9073,7 @@ "ApiChange": "Permission", "ChangedApiName": "CloudPC.ReadWrite.All", "ChangeType": "Addition", - "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the method of [assign](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta) method of [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta).", + "Description": "Added support for the application permission of `CloudPC.ReadWrite.All` to the method of [assign](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta) method of [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta).", "Target": "cloudpcprovisioningpolicy-assign" } ], @@ -9127,7 +9153,7 @@ "ApiChange": "Resource", "ChangedApiName": "snapshots", "ChangeType": "Addition", - "Description": "Added the **snapshots** relationship to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the **snapshots** relationship to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -9135,7 +9161,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSnapshot", "ChangeType": "Addition", - "Description": "Added the [cloudPcSnapshot](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource type and supported methods.", + "Description": "Added the [cloudPcSnapshot](https://learn.microsoft.com/graph/api/resources/cloudpcsnapshot?view=graph-rest-beta) resource type and supported methods.", "Target": "cloudPcSnapshot" }, { @@ -9219,7 +9245,7 @@ "ApiChange": "Method", "ChangedApiName": "updateAdDomainPassword", "ChangeType": "Addition", - "Description": "Added the [updateAdDomainPassword](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the [updateAdDomainPassword](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" } ], @@ -9287,7 +9313,7 @@ "ApiChange": "Resource", "ChangedApiName": "virtualEndpoint", "ChangeType": "Addition", - "Description": "Added the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualEndpoint?view=graph-rest-beta) resource type.", + "Description": "Added the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource type.", "Target": "virtualEndpoint" }, { @@ -9295,7 +9321,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnection", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource type.", "Target": "cloudPcOnPremisesConnection" }, { @@ -9303,7 +9329,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcDeviceImage", "ChangeType": "Addition", - "Description": "Added the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource type.", "Target": "cloudPcDeviceImage" }, { @@ -9311,7 +9337,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPC", "ChangeType": "Addition", - "Description": "Added the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource type.", "Target": "cloudPC" }, { @@ -9319,7 +9345,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicy", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource type.", "Target": "cloudPcProvisioningPolicy" }, { @@ -9327,7 +9353,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcProvisioningPolicyAssignment", "ChangeType": "Addition", - "Description": "Added the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcProvisioningPolicyAssignment](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicyassignment?view=graph-rest-beta) resource type.", "Target": "cloudPcProvisioningPolicyAssignment" }, { @@ -9335,7 +9361,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionStatusDetails", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionStatusDetails](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnectionstatusdetails?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionStatusDetails](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionstatusdetails?view=graph-rest-beta) resource type.", "Target": "cloudPcOnPremisesConnectionStatusDetails" }, { @@ -9343,7 +9369,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcOnPremisesConnectionHealthCheck", "ChangeType": "Addition", - "Description": "Added the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcOnPremisesConnectionHealthCheck](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnectionhealthcheck?view=graph-rest-beta) resource type.", "Target": "cloudPcOnPremisesConnectionHealthCheck" }, { @@ -9351,7 +9377,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcSourceDeviceImage", "ChangeType": "Addition", - "Description": "Added the [cloudPcSourceDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcSourceDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcsourcedeviceimage?view=graph-rest-beta) resource type.", "Target": "cloudPcSourceDeviceImage" }, { @@ -9359,7 +9385,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcStatusDetails", "ChangeType": "Addition", - "Description": "Added the [cloudPcStatusDetails](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcstatusdetails?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcStatusDetails](https://learn.microsoft.com/graph/api/resources/cloudpcstatusdetails?view=graph-rest-beta) resource type.", "Target": "cloudPcStatusDetails" }, { @@ -9367,7 +9393,7 @@ "ApiChange": "Resource", "ChangedApiName": "keyValuePair", "ChangeType": "Addition", - "Description": "Added the [keyValuePair](https://learn.microsoft.com/en-us/graph/api/resources/keyvaluepair?view=graph-rest-beta) resource type.", + "Description": "Added the [keyValuePair](https://learn.microsoft.com/graph/api/resources/keyvaluepair?view=graph-rest-beta) resource type.", "Target": "keyValuePair" }, { @@ -9375,7 +9401,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcManagementAssignmentTarget", "ChangeType": "Addition", - "Description": "Added the [cloudPcManagementAssignmentTarget](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcmanagementassignmenttarget?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcManagementAssignmentTarget](https://learn.microsoft.com/graph/api/resources/cloudpcmanagementassignmenttarget?view=graph-rest-beta) resource type.", "Target": "cloudPcManagementAssignmentTarget" }, { @@ -9383,7 +9409,7 @@ "ApiChange": "Resource", "ChangedApiName": "cloudPcManagementGroupAssignmentTarget", "ChangeType": "Addition", - "Description": "Added the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcmanagementgroupassignmenttarget?view=graph-rest-beta) resource type.", + "Description": "Added the [cloudPcManagementGroupAssignmentTarget](https://learn.microsoft.com/graph/api/resources/cloudpcmanagementgroupassignmenttarget?view=graph-rest-beta) resource type.", "Target": "cloudPcManagementGroupAssignmentTarget" }, { @@ -9391,7 +9417,7 @@ "ApiChange": "Method", "ChangedApiName": "assign", "ChangeType": "Addition", - "Description": "Added the [assign](https://learn.microsoft.com/en-us/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", + "Description": "Added the [assign](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta) method to the [cloudPcProvisioningPolicy](https://learn.microsoft.com/graph/api/resources/cloudpcprovisioningpolicy?view=graph-rest-beta) resource.", "Target": "cloudPcProvisioningPolicy" }, { @@ -9399,7 +9425,7 @@ "ApiChange": "Method", "ChangedApiName": "runHealthChecks", "ChangeType": "Addition", - "Description": "Added the [runHealthChecks](https://learn.microsoft.com/en-us/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/en-us/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", + "Description": "Added the [runHealthChecks](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta) method to the [cloudPcOnPremisesConnection](https://learn.microsoft.com/graph/api/resources/cloudpconpremisesconnection?view=graph-rest-beta) resource.", "Target": "cloudPcOnPremisesConnection" }, { @@ -9407,7 +9433,7 @@ "ApiChange": "Method", "ChangedApiName": "reprovision", "ChangeType": "Addition", - "Description": "Added the [reprovision](https://learn.microsoft.com/en-us/graph/api/cloudpc-reprovision?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/en-us/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", + "Description": "Added the [reprovision](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta) method to the [cloudPC](https://learn.microsoft.com/graph/api/resources/cloudpc?view=graph-rest-beta) resource.", "Target": "cloudPC" }, { @@ -9415,7 +9441,7 @@ "ApiChange": "Method", "ChangedApiName": "getEffectivePermissions", "ChangeType": "Addition", - "Description": "Added the [getEffectivePermissions](https://learn.microsoft.com/en-us/graph/api/virtualendpoint-geteffectivepermissions?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/en-us/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", + "Description": "Added the [getEffectivePermissions](https://learn.microsoft.com/graph/api/virtualendpoint-geteffectivepermissions?view=graph-rest-beta) method to the [virtualEndpoint](https://learn.microsoft.com/graph/api/resources/virtualendpoint?view=graph-rest-beta) resource.", "Target": "virtualEndpoint" }, { @@ -9423,7 +9449,7 @@ "ApiChange": "Method", "ChangedApiName": "getSourceImages", "ChangeType": "Addition", - "Description": "Added the [getSourceImages](https://learn.microsoft.com/en-us/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta) method to the [cloudPcDeviceImage](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", + "Description": "Added the [getSourceImages](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta) method to the [cloudPcDeviceImage](https://learn.microsoft.com/graph/api/resources/cloudpcdeviceimage?view=graph-rest-beta) resource.", "Target": "cloudPcDeviceImage" } ], diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index 6f86e96bbb8..9e47d126e42 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -20,6 +20,14 @@ For details about previous updates to Microsoft Graph, see [Microsoft Graph what ## July 2026: New and generally available +### Applications | Service principal + +Evaluate applications in the Microsoft Entra application gallery by using the [applicationTemplate](/graph/api/resources/applicationtemplate) resource type, including the **riskScore** and **riskFactors** properties for risk assessment. + +### Device and app management | Cloud PC + +Added the [cloudPcServicePlan](/graph/api/resources/cloudpcserviceplan) resource type and related methods for managing Windows 365 service plans. Use the **servicePlans** relationship on [virtualEndpoint](/graph/api/resources/virtualendpoint) to discover available service plans that an organization can purchase for Cloud PCs. + ### Groups - Made the following changes to group sensitivity labels: @@ -60,7 +68,7 @@ Added the **vapidPublicKey**, **webPushEncryptionP256dhPublicKey**, and **webPus ### Files - Updated the [getSharePointApiUsage](/graph/api/reportroot-getsharepointapiusage?view=graph-rest-beta&preserve-view=true) method to support the optional `reportType` parameter for retrieving throttling metrics. Use `reportType='throttlingReport'` to get throttled request counts via the **throttledRequests** property on the [sharePointApiUsageDataPoint](/graph/api/resources/sharepointapiusagedatapoint?view=graph-rest-beta&preserve-view=true) resource, or use `reportType='egressReport'` (default) to get egress usage via the **usageMB** property. -- Added the [Upsert permissions](/graph/api/filestoragecontainer-patch-permissions?view=graph-rest-beta&preserve-view=true) API to create or update up to 10 [permission](/graph/api/resources/permission?view=graph-rest-beta&preserve-view=true) objects on a [fileStorageContainer](/graph/api/resources/filestoragecontainer?view=graph-rest-beta&preserve-view=true) in a single request. +- Added the [Upsert permissions](/graph/api/filestoragecontainer-patch-permissions) (create or update) up to 40 permissions on a [fileStorageContainer](/graph/api/resources/filestoragecontainer) in a single request. The limit increased from 10 to 40 [permission](/graph/api/resources/permission) objects per request. - Added the **allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled** property to the [onPremisesDirectorySynchronizationFeature](/graph/api/resources/onpremisesdirectorysynchronizationfeature?view=graph-rest-beta&preserve-view=true) resource. - Added the [getByUser](/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta&preserve-view=true) method to the [fileStorageContainer](/graph/api/resources/filestoragecontainer?view=graph-rest-beta&preserve-view=true) resource to retrieve a list of file storage containers owned by a user, with optional filtering by role (owner or principalOwner).