From f345c12e1292cf92d4adbb5f4776731315ea1eef Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:35:39 -0700 Subject: [PATCH 01/96] Add files via upload --- .../v1.0/resources/filestoragecontainer.md | 93 +++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 api-reference/v1.0/resources/filestoragecontainer.md diff --git a/api-reference/v1.0/resources/filestoragecontainer.md b/api-reference/v1.0/resources/filestoragecontainer.md new file mode 100644 index 00000000000..4a17b224448 --- /dev/null +++ b/api-reference/v1.0/resources/filestoragecontainer.md @@ -0,0 +1,93 @@ +--- +title: "fileStorageContainer resource type" +description: "Represents a location where multiple users or a group of users can store files and access them via an application." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# fileStorageContainer resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Represents a location where multiple users or a group of users can store files and access them via an application. All file system objects in a **fileStorageContainer** are returned as [driveItem](../resources/driveitem.md) resources. + + +## Methods +|Method|Return type|Description| +|:---|:---|:---| +|[List fileStorageContainers](../api/filestorage-list-containers.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Get a list of the [fileStorageContainer](../resources/filestoragecontainer.md) objects and their properties.| +|[Create fileStorageContainer](../api/filestoragecontainer-post.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Create a new [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Get fileStorageContainer](../api/filestoragecontainer-get.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Read the properties and relationships of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Update fileStorageContainer](../api/filestoragecontainer-update.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Update the properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Delete fileStorageContainer](../api/filestorage-delete-containers.md)|None|Delete a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Activate fileStorageContainer](../api/filestoragecontainer-activate.md)|None|Activate a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Get drive](../api/filestoragecontainer-get-drive.md)|[drive](../resources/drive.md)|Get the drive resource from a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[List permissions](../api/filestoragecontainer-list-permissions.md)|[permission](../resources/permission.md)| List permissions on a fileStorageContainer.| +|[Create permissions](../api/filestoragecontainer-post-permissions.md)|[permission](../resources/permission.md)|Add permission to a fileStorageContainer.| +|[Update permissions](../api/filestoragecontainer-update-permissions.md)|[permission](../resources/permission.md)|Update permission on a fileStorageContainer.| +|[Delete permissions](../api/filestoragecontainer-delete-permissions.md)|[permission](../resources/permission.md)|Delete permission from a fileStorageContainer.| +|[List fileStorageContainer custom property](../api/filestoragecontainer-list-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|List custom properties of the fileStorageContainer.| +|[Create fileStorageContainer custom property](../api/filestoragecontainer-post-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Create custom property to the fileStorageContainer.| +|[Update fileStorageContainer custom property](../api/filestoragecontainer-update-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Update custom property on a fileStorageContainer.| +|[Delete fileStorageContainer custom property](../api/filestoragecontainer-delete-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Delete custom property from a fileStorageContainer.| + +## Properties + +|Property|Type|Description| +|:---|:---|:---| +|containerTypeId|Guid|Container type ID of the fileStorageContainer. Each container must have only one container type. Read-only.| +|createdDateTime|DateTimeOffset|Date and time of the fileStorageContainer creation. Read-only.| +|customProperties|[fileStorageContainerCustomPropertyDictionary](../resources/filestoragecontainercustompropertydictionary.md)|Custom property collection for the **fileStorageContainer**. Read-write.| +|description|String|Provides a user-visible description of the **fileStorageContainer**. Read-write.| +|displayName|String|The display name of the **fileStorageContainer**. Read-write.| +|id|String|The unique stable identifier of the **filerStorageContainer**. Read-only.| +|status|fileStorageContainerStatus|Status of the **fileStorageContainer**. Containers are created as inactive and require activation. Inactive containers are subjected to automatic deletion in 24 hours.The possible values are: `inactive `, `active `. Read-only.| +|viewpoint|[fileStorageContainerViewpoint](../resources/filestoragecontainerviewpoint.md)|Data specific to the current user. Read-only.| + +## Relationships + +|Relationship|Type|Description| +|:---|:---|:---| +|drive|[drive](../resources/drive.md)|The drive of the resource fileStorageContainer. Read-only.| +|permissions|[permission](../resources/permission.md) collection|The set of permissions for users in the fileStorageContainer. Permission for each user is set by the **roles** property. The possible values are 'reader', 'writer', 'manager', and 'owner'. Read-write.| + +### roles property values + +|Value|Description| +|:---|:---| +|reader|Readers can read **fileStorageContainer** metadata and the content inside.| +|writer|Writers can read and modify **fileStorageContainer** metadata and contents inside.| +|manager|Managers can read and modify **fileStorageContainer** metadata and contents inside and manage the permissions to the container.| +|owner|Owners can read and modify **fileStorageContainer** metadata and contents inside, manage container permissions, and delete and restore containers.| + +## JSON representation +The following JSON representation shows the resource type. + +``` json +{ + "@odata.type": "#microsoft.graph.fileStorageContainer", + "id": "String (identifier)", + "displayName": "String", + "description": "String", + "containerTypeId": "Guid", + "customProperties": { + "@odata.type": "microsoft.graph.fileStorageContainerCustomPropertyDictionary" + }, + "viewpoint": { + "@odata.type": "microsoft.graph.fileStorageContainerViewpoint" + }, + "status": "String", + "createdDateTime": "String (timestamp)" +} +``` + From 612a7983aa5a3a1a28dbfb5d9937694ff80aeec1 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:37:44 -0700 Subject: [PATCH 02/96] Add files via upload --- ...toragecontainercustompropertydictionary.md | 40 +++++++++++++++++ ...filestoragecontainercustompropertyvalue.md | 44 +++++++++++++++++++ .../filestoragecontainerviewpoint.md | 41 +++++++++++++++++ 3 files changed, 125 insertions(+) create mode 100644 api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md create mode 100644 api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md create mode 100644 api-reference/v1.0/resources/filestoragecontainerviewpoint.md diff --git a/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md b/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md new file mode 100644 index 00000000000..d5e6514a728 --- /dev/null +++ b/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md @@ -0,0 +1,40 @@ +--- +title: "fileStorageContainerCustomPropertyDictionary resource type" +description: "Represents a dictionary that stores the custom properties of a fileStorageContainer in key/value pairs." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# fileStorageContainerCustomPropertyDictionary resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Represents a [dictionary](https://github.com/microsoft/api-guidelines/blob/vNext/graph/patterns/dictionary.md) that stores the custom properties of a [fileStorageContainer](../resources/filestoragecontainer.md) in key/value pairs. + +Each custom property consists of keys (custom property names) and [fileStorageContainerCustomPropertyValue](../resources/filestoragecontainercustompropertyvalue.md) values (custom property values). + + +## Properties +None. + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + + +``` json +{ + "@odata.type": "#microsoft.graph.fileStorageContainerCustomPropertyDictionary" +} +``` + diff --git a/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md new file mode 100644 index 00000000000..5c8df259af1 --- /dev/null +++ b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md @@ -0,0 +1,44 @@ +--- +title: "fileStorageContainerCustomPropertyValue resource type" +description: "Contains the custom property values stored in a fileStorageContainerCustomPropertyDictionary". +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# fileStorageContainerCustomPropertyValue resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + + +Contains the custom property values stored in a [fileStorageContainerCustomPropertyDictionary](../resources/filestoragecontainercustompropertydictionary.md) resource. + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|isSearchable|Boolean|Indicates whether the custom property is searchable. Optional. The default value is `false`.| +|value|String|Value of the custom property. Required.| + +## Relationships +None. + +## JSON representation +The following is a JSON representation of the resource type. + + +``` json +{ + "@odata.type": "#microsoft.graph.fileStorageContainerCustomPropertyValue", + "value": "String", + "isSearchable": "Boolean" +} +``` + diff --git a/api-reference/v1.0/resources/filestoragecontainerviewpoint.md b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md new file mode 100644 index 00000000000..e85dca7fe2b --- /dev/null +++ b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md @@ -0,0 +1,41 @@ +--- +title: "fileStorageContainerViewpoint resource type" +description: "Represents data specific to the current user of a fileStorageContainer". +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# fileStorageContainerViewpoint resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Represents data specific to the current user of a [fileStorageContainer](../resources/filestoragecontainer.md). + + +## Properties +|Property|Type|Description| +|:---|:---|:---| +|effectiveRole|String|The current user's effective role. Read-only.| + +## Relationships +None. + +## JSON representation +The following JSON representation shows the resource type. + + +``` json +{ + "@odata.type": "#microsoft.graph.fileStorageContainerViewpoint", + "effectiveRole": "String" +} +``` + From 80539e40e6bcd6f6c400a2762dc16bebef7015f5 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:39:46 -0700 Subject: [PATCH 03/96] Update filestoragecontainercustompropertyvalue.md --- .../v1.0/resources/filestoragecontainercustompropertyvalue.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md index 5c8df259af1..1650b65d121 100644 --- a/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md +++ b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md @@ -11,9 +11,6 @@ doc_type: resourcePageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - - Contains the custom property values stored in a [fileStorageContainerCustomPropertyDictionary](../resources/filestoragecontainercustompropertydictionary.md) resource. From 05a77d4c21fd85307c108b772d0af9a0e7708e62 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:40:32 -0700 Subject: [PATCH 04/96] Update filestoragecontainer.md --- api-reference/v1.0/resources/filestoragecontainer.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/resources/filestoragecontainer.md b/api-reference/v1.0/resources/filestoragecontainer.md index 4a17b224448..af875b1afd0 100644 --- a/api-reference/v1.0/resources/filestoragecontainer.md +++ b/api-reference/v1.0/resources/filestoragecontainer.md @@ -11,8 +11,6 @@ doc_type: resourcePageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Represents a location where multiple users or a group of users can store files and access them via an application. All file system objects in a **fileStorageContainer** are returned as [driveItem](../resources/driveitem.md) resources. From fd1242dc8613d14887ef1ef35c74f4f2167c2fd2 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:40:47 -0700 Subject: [PATCH 05/96] Update filestoragecontainercustompropertydictionary.md --- .../resources/filestoragecontainercustompropertydictionary.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md b/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md index d5e6514a728..893574e3859 100644 --- a/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md +++ b/api-reference/v1.0/resources/filestoragecontainercustompropertydictionary.md @@ -11,8 +11,6 @@ doc_type: resourcePageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Represents a [dictionary](https://github.com/microsoft/api-guidelines/blob/vNext/graph/patterns/dictionary.md) that stores the custom properties of a [fileStorageContainer](../resources/filestoragecontainer.md) in key/value pairs. Each custom property consists of keys (custom property names) and [fileStorageContainerCustomPropertyValue](../resources/filestoragecontainercustompropertyvalue.md) values (custom property values). From 53194381f56e2f6553a0d5baaef77d186daa9c3f Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:41:06 -0700 Subject: [PATCH 06/96] Update filestoragecontainerviewpoint.md --- api-reference/v1.0/resources/filestoragecontainerviewpoint.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/resources/filestoragecontainerviewpoint.md b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md index e85dca7fe2b..72fe51d4001 100644 --- a/api-reference/v1.0/resources/filestoragecontainerviewpoint.md +++ b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md @@ -11,8 +11,6 @@ doc_type: resourcePageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Represents data specific to the current user of a [fileStorageContainer](../resources/filestoragecontainer.md). From dea1beb386314a778f02e54939ad9b4cfe48e72c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:51:09 -0700 Subject: [PATCH 07/96] Add files via upload --- .../v1.0/api/filestoragecontainer-activate.md | 82 ++++++++++ ...estoragecontainer-delete-customproperty.md | 75 +++++++++ ...filestoragecontainer-delete-permissions.md | 71 +++++++++ .../api/filestoragecontainer-get-drive.md | 108 +++++++++++++ .../v1.0/api/filestoragecontainer-get.md | 80 ++++++++++ ...ilestoragecontainer-list-customproperty.md | 107 +++++++++++++ .../filestoragecontainer-list-permissions.md | 118 ++++++++++++++ ...ilestoragecontainer-post-customproperty.md | 149 ++++++++++++++++++ .../filestoragecontainer-post-permissions.md | 106 +++++++++++++ .../v1.0/api/filestoragecontainer-post.md | 103 ++++++++++++ ...filestoragecontainer-update-permissions.md | 82 ++++++++++ .../v1.0/api/filestoragecontainer-update.md | 90 +++++++++++ 12 files changed, 1171 insertions(+) create mode 100644 api-reference/v1.0/api/filestoragecontainer-activate.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-delete-permissions.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-get-drive.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-get.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-list-customproperty.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-list-permissions.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-post-customproperty.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-post-permissions.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-post.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-update-permissions.md create mode 100644 api-reference/v1.0/api/filestoragecontainer-update.md diff --git a/api-reference/v1.0/api/filestoragecontainer-activate.md b/api-reference/v1.0/api/filestoragecontainer-activate.md new file mode 100644 index 00000000000..6ab7a9223cd --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-activate.md @@ -0,0 +1,82 @@ +--- +title: "fileStorageContainer: activate" +description: "Activate a fileStorageContainer object." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# fileStorageContainer: activate + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Activate a [fileStorageContainer](../resources/filestoragecontainer.md) object. + +A **fileStorageContainer** object is created in an inactive state, as indicated by the **status** property. A container must be activated within 24 hours after creation, or it is automatically deleted. Upon activation, the value of the status property changes from `inactive` to `active`. + +A **fileStorageContainer** can be activated by calling the activate API or any API that updates or modifies the **fileStorageContainer** or its content. For example, uploading a file to a **fileStorageContainer**, adding permission to a **fileStorageContainer**, creating a custom property on a **fileStorageContainer**, or updating the properties of a **fileStorageContainer** can activate it. + + +## 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/filestoragecontainer-activate-permissions.md)] + +## HTTP request + + +``` http +POST /storage/fileStorage/containers/{containerId}/activate +``` + +## 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 action returns a `204 No Content` response code. + +## Examples + +### Request + +The following example shows a request. + + +``` http +POST https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/activate +``` + +### Response + +The following example shows the response. + + +``` http +HTTP/1.1 204 No Content +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md new file mode 100644 index 00000000000..db142e30662 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md @@ -0,0 +1,75 @@ +--- +title: "Delete custom properties from a fileStorageContainer" +description: "Delete custom properties from a fileStorageContainer" +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Delete custom properties from a fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Delete one or multiple custom properties from a [fileStorageContainer](../resources/filestoragecontainer.md) by assigning a **null** value to the 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/filestoragecontainer-delete-customproperty-permissions.md)] + +## HTTP request + + +``` http +PATCH /storage/fileStorage/containers/{containerId}/customProperties +``` + +## 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 the custom properties for deletion by setting them to null. + +## Response +If successful, this action returns a `200 OK` response code. + +## Examples + +### Request +The following example deletes multiple custom properties. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +Content-type: application/json + +{ + "clientUniqueId": null, + "color": null +} +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 Ok +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md new file mode 100644 index 00000000000..9201ad1d48a --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md @@ -0,0 +1,71 @@ +--- +title: "Delete permissions" +description: "Delete permissions from a fileStorageContainer object." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Delete permissions + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Delete permissions from a [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-delete-permissions-permissions.md)] + +## HTTP request + + +``` http +DELETE /storage/fileStorage/containers/{containerId}/permissions/{permissionId} +``` + +## Request headers +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + + +## 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/beta/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 204 No Content +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-get-drive.md b/api-reference/v1.0/api/filestoragecontainer-get-drive.md new file mode 100644 index 00000000000..884425bbe61 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-get-drive.md @@ -0,0 +1,108 @@ +--- +title: "Get drive for fileStorageContainer" +description: "Get the properties of a drive associated with a fileStorageContainer." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Get drive for fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Get the properties of a [drive](../resources/drive.md) associated with a [fileStorageContainer](../resources/filestoragecontainer.md). + +[!INCLUDE [national-cloud-support](../../includes/all-clouds.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/filestoragecontainer-get-drive-permissions.md)] + +## HTTP request + + +``` http +GET /storage/fileStorage/containers/{containerId}/drive +GET /drives/{driveId} +``` + + +## Request headers +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + + +## Response + +If successful, this method returns a `200 OK` response code and a [drive](../resources/drive.md) object in the response body. + +## Examples + +### Request +The following example shows a request. + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/drive +``` + + +### 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 + +{ + "createdDateTime": "2022-04-25T20:11:51Z", + "description": "My Application Storage Container", + "driveType": "other", + "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z", + "lastModifiedDateTime": "2022-04-25T20:11:51Z", + "name": "My Container", + "createdBy": { + "user": { + "displayName": "System Account" + } + }, + "lastModifiedBy": { + "user": { + "displayName": "System Account" + } + }, + "owner": { + "user": { + "displayName": "System Account" + } + }, + "quota": { + "deleted": 0, + "fileCount": 0, + "remaining": 0, + "state": "normal", + "total": 0, + "used": 0 + } +} +``` diff --git a/api-reference/v1.0/api/filestoragecontainer-get.md b/api-reference/v1.0/api/filestoragecontainer-get.md new file mode 100644 index 00000000000..6f82fc85298 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-get.md @@ -0,0 +1,80 @@ +--- +title: "Get fileStorageContainer" +description: "Retrieve the properties of a fileStorageContainer." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Get fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Retrieve the properties of a [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-get-permissions.md)] + +## HTTP request + + +``` http +GET /storage/fileStorage/containers/{containerId} +``` + +## Request headers +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + + +## Response + +If successful, this method returns a `200 OK` response code and a [fileStorageContainer](../resources/filestoragecontainer.md) object in the response body. + +## Examples + +### Request +The following example shows a request. + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId} +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.type": "#microsoft.graph.fileStorageContainer", + "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z", + "displayName": "My Application Storage Container", + "description": "Description of My Application Storage Container", + "containerTypeId": "91710488-5756-407f-9046-fbe5f0b4de73", + "status": "active", + "createdDateTime": "2021-11-24T15:41:52.347Z" +} +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md new file mode 100644 index 00000000000..c07884bfc22 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md @@ -0,0 +1,107 @@ +--- +title: "List fileStorageContainer custom properties" +description: "List the custom properties of a fileStorageContainer" +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# List fileStorageContainer custom properties + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +List the custom properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object. The caller can retrieve all custom properties or get a specific property by name. + +## 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/filestoragecontainer-list-customproperty-permissions.md)] + +## HTTP request + + +``` http +GET /storage/fileStorage/containers/{containerId}/customProperties +GET /storage/fileStorage/containers/{containerId}/customProperties/{propertyName} +``` + +## Request headers +|Name|Description| +|:---|:---| +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| + +## Response + +If successful, this method returns a `200 OK` response code. + +## Examples + +### Request +The following example shows how to get a custom property named `clientUniquieId`. + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties/clientUniqueId +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 Ok +Content-type: application/json + +{ + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b", + "isSearchable": true +} + +``` +### Request +The following example shows how to get all the custom properties of a **fileStorageContainer**. + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties/ +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 Ok +Content-type: application/json + +{ + "clientUniqueId": { + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b", + "isSearchable": true + }, + "color": { + "value": "purple" + } +} +``` diff --git a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md new file mode 100644 index 00000000000..c1422bfc414 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md @@ -0,0 +1,118 @@ +--- +title: "List permissions" +description: "Get the set of permissions for a fileStorageContainer." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# List permissions + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Get a list of the [permission](../resources/permission.md) objects associated with a [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-list-permissions-permissions.md)] + +## HTTP request + + +``` http +GET /storage/fileStorage/containers/{containerId}/permissions +``` + +## Optional query parameters +This method supports the `$skip`, `$top`, `$orderBy`, and `$filter` OData query parameters 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).| + +## Response + +If successful, this method returns a `200 OK` response code and a collection of [permission](../resources/permission.md) objects in the response body. + +## Examples + +### Request +The following example shows a request. + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions +``` + +### 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#Collection(microsoft.graph.permission)", + "value": [ + { + "@odata.type": "#microsoft.graph.permission", + "id": "cmVhZGVyX2k6MCMuZnxtZW1iZXJzaGlwfHJvcnlicjExMUBvdXRsb29rLmNvbQ", + "roles": ["principalOwner"], + "grantedToV2": { + "user": { + "id": "71392b2f-1765-406e-86af-5907d9bdb2ab", + "userPrincipalName": "jhan@contoso.com", + "displayName": "Jacob Hancock", + "email": "jhan@contoso.com" + } + } + }, + { + "@odata.type": "#microsoft.graph.permission", + "id": "cHJpbmNpcGFsT3duZXJfaTowIy5mfG1lbWJlcnNoaXB8ZGxpZGRlbGwyMDIyQG91dGxvb2suY29t", + "roles": ["reader"], + "grantedToV2": { + "user": { + "id": "86503198-b81b-43fe-81ee-ad45b8848ac9", + "userPrincipalName": "mnick@contoso.com", + "displayName": "Mark Nickhols", + "email": "mnick@contoso.com" + } + } + }, + { + "@odata.type": "#microsoft.graph.permission", + "id": "iZXJzaGlwfHJvcnlicjExMUBvdXRsb29rLmNvbQcJpbmNpcGFsT3duZAJfaLowIy5mfG1lbWJl", + "roles": ["writer"], + "grantedToV2": { + "user": { + "id": "0000000-b82c-23ee-51ef-ab47c8177bl0", + "userPrincipalName": "hjac@contoso.com", + "displayName": "Howard Jacobs", + "email": "hjac@contoso.com" + } + } + } + ] +} +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md new file mode 100644 index 00000000000..e0d04e8c3c3 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md @@ -0,0 +1,149 @@ +--- +title: "Add custom properties to a fileStorageContainer" +description: "Add custom properties to a fileStorageContainer" +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Add custom properties to a fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + + +Add custom properties to a [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-post-customproperty-permissions.md)] + +## HTTP request + + +``` http +PATCH /storage/fileStorage/containers/{containerId}/customProperties +``` + +## 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 [fileStorageContainerCustomPropertyDictionary](../resources/filestoragecontainercustompropertydictionary.md), which is a map with string keys and [fileStorageContainerCustomPropertyValue](../resources/filestoragecontainercustompropertyvalue.md) values. + +You can specify the following properties when you create a custom property. + +|Property|Type|Description| +|:---|:---|:---| +|value|String|The value of the custom property. Required.| +|isSearchable|Boolean|A flag to indicate whether the property is searchable. Optional. The default value is `false`.| + +## Response + +If successful, this method returns either a `200 Created` or `201 Created` response code. + +## Examples + +### Request +The following example shows how to create a custom property called `clientUniqueId` for a container. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +Content-Type: application/json + +{ + "clientUniqueId": { + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b" + } +} +``` + +### Response +The following example shows the response. By default, the property isn't searchable. + +``` http +HTTP/1.1 200 Created +``` + +### Request +The following example shows how to create a searchable custom property called `clientUniqueId` for a container. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +Content-Type: application/json + +{ + "clientUniqueId": { + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b", + "isSearchable": true + } +} +``` +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 Created +``` + +### Request +The following example shows how to create multiple custom properties for a container. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +Content-Type: application/json + +{ + "property1": { + "value": "valueOfProperty1", + "isSearchable": true + }, + "property2": { + "value": "valueOfProperty2", + "isSearchable": false + } +} +``` + +### Response +The following example shows the response. + +``` http +HTTP/1.1 201 Created +``` + + diff --git a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md new file mode 100644 index 00000000000..2b8898267a1 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md @@ -0,0 +1,106 @@ +--- +title: "Create permission" +description: "Add a permission to a fileStorageContainer." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Create permission + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Add a [permission](../resources/permission.md) to an existing [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-post-permissions-permissions.md)] + +## HTTP request + + +``` http +POST /storage/fileStorage/containers/{fileStorageContainerId}/permissions +``` + +## 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 [permission](../resources/permission.md) object with the following properties. + +| Name | Type | Description | +|:-----------:|:--------------------------------------------------------------:|----------------------------------------------------------------------------| +| roles | Collection(String) | The type of permissions. Either `reader`, `writer`, `manager`, or `owner`. | +| grantedToV2 | [sharePointIdentitySet](../resources/sharepointidentityset.md) | For user type permissions, the details of the user for this permission. | + +## Response + +If successful, this method returns a `201 Created` response code and a [permission](../resources/permission.md) object in the response body. + +## Examples + +### Request +The following example shows how to add a new user as a reader to a container. + +``` http +POST https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions +Content-type: application/json + +{ + "roles": ["reader"], + "grantedToV2": { + "user": { + "userPrincipalName": "jacob@fabrikam.com" + } + } +} +``` + +### 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.type": "#microsoft.graph.permission", + "id": "cJpbmNpcGFsT3duZAJfaLowIy5mfG1lbWJliZXJzaGlwfHJvcnlicjExMUBvdXRsb29rLmNvbQ", + "roles": ["reader"], + "grantedToV2": { + "user": { + "id": "89ea5c94-7736-4e25-95ad-3fa95f62b66e", + "userPrincipalName": "jacob@fabrikam.com", + "displayName": "Jacob Hancock", + "email": "jacob@fabrikam.com" + } + } +} +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-post.md b/api-reference/v1.0/api/filestoragecontainer-post.md new file mode 100644 index 00000000000..14ce439d03f --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-post.md @@ -0,0 +1,103 @@ +--- +title: "Create fileStorageContainer" +description: "Create a new fileStorageContainer object." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Create fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Create a new [fileStorageContainer](../resources/filestoragecontainer.md) object. + +The respective container type identified by **containerTypeId** must be enabled in the tenant. + +For delegated calls, the calling user is set as the owner of the **fileStorageContainer**. + +## 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/filestoragecontainer-post-permissions.md)] + +## HTTP request + + +``` http +POST /storage/fileStorage/containers +``` + +## 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 [fileStorageContainer](../resources/filestoragecontainer.md) object. + +You can specify the following properties when you create a **fileStorageContainer**. + +|Property|Type|Description| +|:---|:---|:---| +|displayName|String|The display name of the container. Required.| +|description|String|Provides a user-visible description of the item. Optional.| +|containerTypeId|GUID|The container type of the container instance. Required.| + +## Response + +If successful, this method returns a `201 Created` response code and a [fileStorageContainer](../resources/filestoragecontainer.md) object in the response body. + +## Examples + +### Request +The following example shows how to create a **fileStorageContainer**. + +``` http +POST https://graph.microsoft.com/beta/storage/fileStorage/containers +Content-Type: application/json + +{ + "displayName": "My Application Storage Container", + "description": "Description of My Application Storage Container", + "containerTypeId": "91710488-5756-407f-9046-fbe5f0b4de73" +} +``` +### 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.type": "#microsoft.graph.fileStorageContainer", + "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z", + "displayName": "My Application Storage Container", + "description": "Description of My Application Storage Container", + "containerTypeId": "91710488-5756-407f-9046-fbe5f0b4de73", + "status": "inactive", + "createdDateTime": "2021-11-24T15:41:52.347Z" +} + +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md new file mode 100644 index 00000000000..30a7795e436 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md @@ -0,0 +1,82 @@ +--- +title: "Update fileStoreContainer permission" +description: "Update fileStorageContainer permission." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Update fileStoreContainer permission + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Update an existing [permission](../resources/permission.md) on a [fileStorageContainer](../resources/filestoragecontainer.md) by making a PATCH request on the permission resource. Only the **roles** property can be updated. One role per user is supported. A new ID is generated for the updated permissions 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/filestoragecontainer-update-permissions-permissions.md)] + +## HTTP request + + +``` http +PATCH /storage/fileStorage/containers/{containerId}/permissions/{permissionId} +``` + +## 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 the new value for the **roles** property. + +|Permission type|Property|Type|Description| +|:---|:---|:---|:---| +|User|roles|Collection of String|Supported roles are `reader`, `writer`, `manager`, and `owner`. Required.| + + +## Response + +If successful, this method returns a `200 OK` response code. + +## Examples + +### Request +The following example shows a request. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +Content-Type: application/json + +{ + "roles": ["manager"] +} +``` +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 OK +``` + diff --git a/api-reference/v1.0/api/filestoragecontainer-update.md b/api-reference/v1.0/api/filestoragecontainer-update.md new file mode 100644 index 00000000000..521d68aa3f6 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-update.md @@ -0,0 +1,90 @@ +--- +title: "Update fileStorageContainer" + +description: "Update the properties of a fileStorageContainer object." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Update fileStorageContainer + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Update the properties of a [fileStorageContainer](../resources/filestoragecontainer.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/filestoragecontainer-update-permissions.md)] + +## HTTP request + + +``` http +PATCH /storage/fileStorage/containers/{containerId} +``` + +## 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 the new values for the **fileStorageContainer** properties. Existing properties not included in the request body maintain their previous values. To optimize performance, don't include existing values that didn't change. + +## Response +If successful, this method returns a `200 OK` response code and an updated [fileStorageContainer](../resources/filestoragecontainer.md) object in the response body. + +## Examples + +### Request +The following example shows a request. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId} +Content-Type: application/json + +{ + "displayName": "Updated Name", + "description": "Updated Description" +} +``` +### 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.type": "#microsoft.graph.fileStorageContainer", + "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z", + "displayName": "Updated Name", + "description": "Updated Description", + "containerTypeId": "91710488-5756-407f-9046-fbe5f0b4de73", + "status": "active", + "createdDateTime": "2021-11-24T15:41:52.347Z" +} +``` + From d14762df8aebc90c3e5988d2e92d7e9c9a06fec9 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:57:57 -0700 Subject: [PATCH 08/96] Add files via upload --- ...estoragecontainer-update-customproperty.md | 102 ++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 api-reference/v1.0/api/filestoragecontainer-update-customproperty.md diff --git a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md new file mode 100644 index 00000000000..778199d7170 --- /dev/null +++ b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md @@ -0,0 +1,102 @@ +--- +title: "Update custom properties of a fileStorageContainer " +description: "Update the custom properties of a fileStorageContainer" +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Update the custom properties of a fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Update one or multiple custom properties on a [fileStorageContainer](../resources/filestoragecontainer.md). Only the **value** and **isSearchable** attributes of custom properties can be updated. Only the custom properties specified in the request body are updated. If a custom property specified in the request body doesn't exist on the container, it will be created. + +Updating a custom property to a `null` value deletes the property from the container. + +The application calling this API must have read/write permissions to the **fileStorageContainer** for the respective container type. + +## 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/filestoragecontainer-update-customproperty-permissions.md)] + +## HTTP request + + +``` http +PATCH /storage/fileStorage/containers/{containerId}/customProperties +``` + +## 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 the custom properties to be updated and the new values for the relevant fields. + +The following properties on custom properties can be modified. + +|Property|Type|Description| +|:---|:---|:---| +|value|String|The value of the custom property.| +|isSearchable|Boolean|Indicates whether the property is searchable.| + +## Response + +If successful, this action returns a `200 OK` response code. + +## Examples + +### Request +The following example updates the `value` property of the custom properties `clientUniqeId` and `color`. Note that `isSearchable` for `clientUniqueId` was set to `true` before calling this API. + +``` http +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +Content-type: application/json + +{ + "clientUniqueId": { + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b" + }, + "color": { + "value": "green" + } +} +``` +### Response +The following example shows the response. + +``` http +HTTP/1.1 200 Ok + +{ + "clientUniqueId": { + "value": "c5d88310-1fc7-49be-80ca-e7d7a11e638b", + "isSearchable": true + }, + "color": { + "value": "green", + "isSearchable": false + } +} +``` + From ce5d5cdac6af936507ef3b13c0c4fa575991e3e5 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:05:14 -0700 Subject: [PATCH 09/96] Add files via upload --- .../v1.0/api/filestorage-delete-containers.md | 76 ++++++++++++++ .../v1.0/api/filestorage-list-containers.md | 98 +++++++++++++++++++ 2 files changed, 174 insertions(+) create mode 100644 api-reference/v1.0/api/filestorage-delete-containers.md create mode 100644 api-reference/v1.0/api/filestorage-list-containers.md diff --git a/api-reference/v1.0/api/filestorage-delete-containers.md b/api-reference/v1.0/api/filestorage-delete-containers.md new file mode 100644 index 00000000000..7e033d2239a --- /dev/null +++ b/api-reference/v1.0/api/filestorage-delete-containers.md @@ -0,0 +1,76 @@ +--- +title: "Delete fileStorageContainer" +description: "Delete a fileStorageContainer object." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# Delete fileStorageContainer + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Delete a [fileStorageContainer](../resources/filestoragecontainer.md) object. This method moves the **fileStorageContainer** to the recycle bin; it doesn't permanently delete it. + +## 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/filestorage-delete-containers-permissions.md)] + +## HTTP request + + +``` http +DELETE /storage/fileStorage/containers/{containerId} +``` + +## 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/beta/storage/fileStorage/containers/{containerId} +``` + + +### Response + +The following example shows the response. + +``` http +HTTP/1.1 204 No Content +``` + diff --git a/api-reference/v1.0/api/filestorage-list-containers.md b/api-reference/v1.0/api/filestorage-list-containers.md new file mode 100644 index 00000000000..99519064ca8 --- /dev/null +++ b/api-reference/v1.0/api/filestorage-list-containers.md @@ -0,0 +1,98 @@ +--- +title: "List containers" +description: "Get a list of fileStorageContainers and their properties." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: apiPageType +--- + +# List containers + + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Retrieve a list of [fileStorageContainer](../resources/filestoragecontainer.md) objects that are visible to the caller. The `containerTypeId` filter parameter is required. + +## 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/filestorage-list-containers-permissions.md)] + +## HTTP request + + +``` http +GET /storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} +GET /storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} and viewpoint/effectiveRole eq 'principalOwner' +``` + +## Query parameters + +This method required the `containerTypeId` parameter. It supports the `$expand` OData query parameter except for on the for **drive**, **permissions**, and **customProperties** properties. 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 [fileStorageContainer](../resources/filestoragecontainer.md) objects in the response body. Only a limited subset of properties is returned for each **fileStorageContainer**. + +## Examples + +### Request + +The following example enumerates all containers of a given container type. + + + +``` http +GET https://graph.microsoft.com/beta/storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} +``` + +### Response + +The following example shows the response. + +``` http +HTTP/1.1 200 OK +Content-Type: application/json + +{ + "@odata.context": "https://graph.microsoft.com/beta/storage/fileStorage/containers", + "@odata.count": 1, + "value": [ + { + "@odata.type": "#microsoft.graph.fileStorageContainer", + "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z", + "displayName": "My File Storage Container", + "containerTypeId": "e2756c4d-fa33-4452-9c36-2325686e1082", + "createdDateTime": "2021-11-24T15:41:52.347Z" + } + ] +} +``` + From 5a0c5159563b27793b34ceb210a230d11bafa7e3 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:07:39 -0700 Subject: [PATCH 10/96] Update filestorage-delete-containers.md --- api-reference/v1.0/api/filestorage-delete-containers.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestorage-delete-containers.md b/api-reference/v1.0/api/filestorage-delete-containers.md index 7e033d2239a..1262aef7208 100644 --- a/api-reference/v1.0/api/filestorage-delete-containers.md +++ b/api-reference/v1.0/api/filestorage-delete-containers.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Delete a [fileStorageContainer](../resources/filestoragecontainer.md) object. This method moves the **fileStorageContainer** to the recycle bin; it doesn't permanently delete it. ## Permissions From 7930131179c46b07b7cafd5432cdb478883909f7 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:08:50 -0700 Subject: [PATCH 11/96] Update filestorage-list-containers.md --- api-reference/v1.0/api/filestorage-list-containers.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestorage-list-containers.md b/api-reference/v1.0/api/filestorage-list-containers.md index 99519064ca8..091811759a1 100644 --- a/api-reference/v1.0/api/filestorage-list-containers.md +++ b/api-reference/v1.0/api/filestorage-list-containers.md @@ -12,8 +12,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Retrieve a list of [fileStorageContainer](../resources/filestoragecontainer.md) objects that are visible to the caller. The `containerTypeId` filter parameter is required. ## Permissions From 988386752bf4dd269130c639a9b91c82531f69db Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:09:02 -0700 Subject: [PATCH 12/96] Update filestoragecontainer-activate.md --- api-reference/v1.0/api/filestoragecontainer-activate.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-activate.md b/api-reference/v1.0/api/filestoragecontainer-activate.md index 6ab7a9223cd..a8b3e4ce744 100644 --- a/api-reference/v1.0/api/filestoragecontainer-activate.md +++ b/api-reference/v1.0/api/filestoragecontainer-activate.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Activate a [fileStorageContainer](../resources/filestoragecontainer.md) object. A **fileStorageContainer** object is created in an inactive state, as indicated by the **status** property. A container must be activated within 24 hours after creation, or it is automatically deleted. Upon activation, the value of the status property changes from `inactive` to `active`. From e16eb956722c23d3aab2a56ef7de7d174c029c9c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:09:22 -0700 Subject: [PATCH 13/96] Update filestoragecontainer-delete-customproperty.md --- .../v1.0/api/filestoragecontainer-delete-customproperty.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md index db142e30662..7eaef2425d3 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Delete one or multiple custom properties from a [fileStorageContainer](../resources/filestoragecontainer.md) by assigning a **null** value to the properties. ## Permissions From 7e7cac4f3d54fc2d7e5027e1bbeb4143ad8e66ec Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:09:35 -0700 Subject: [PATCH 14/96] Update filestoragecontainer-delete-permissions.md --- .../v1.0/api/filestoragecontainer-delete-permissions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md index 9201ad1d48a..9f9a6a00154 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md @@ -12,8 +12,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Delete permissions from a [fileStorageContainer](../resources/filestoragecontainer.md) object. From 7e70bff117ab5b700d56522d25db961cda24aaac Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:09:50 -0700 Subject: [PATCH 15/96] Update filestoragecontainer-get-drive.md --- api-reference/v1.0/api/filestoragecontainer-get-drive.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get-drive.md b/api-reference/v1.0/api/filestoragecontainer-get-drive.md index 884425bbe61..2c4bc1d96e7 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get-drive.md +++ b/api-reference/v1.0/api/filestoragecontainer-get-drive.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Get the properties of a [drive](../resources/drive.md) associated with a [fileStorageContainer](../resources/filestoragecontainer.md). [!INCLUDE [national-cloud-support](../../includes/all-clouds.md)] From ef602e9f42257b787f126d5414a5394a4e3ae8ea Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:03 -0700 Subject: [PATCH 16/96] Update filestoragecontainer-get.md --- api-reference/v1.0/api/filestoragecontainer-get.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get.md b/api-reference/v1.0/api/filestoragecontainer-get.md index 6f82fc85298..d5b7b2a061d 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get.md +++ b/api-reference/v1.0/api/filestoragecontainer-get.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Retrieve the properties of a [fileStorageContainer](../resources/filestoragecontainer.md). ## Permissions From 3a38308c6ee128e0df576eb3e7b39fdc35f6ca18 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:19 -0700 Subject: [PATCH 17/96] Update filestoragecontainer-list-customproperty.md --- .../v1.0/api/filestoragecontainer-list-customproperty.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md index c07884bfc22..7651207d9fc 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - List the custom properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object. The caller can retrieve all custom properties or get a specific property by name. ## Permissions From e48a0660557af2b433814257a920d848d8439d31 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:30 -0700 Subject: [PATCH 18/96] Update filestoragecontainer-list-permissions.md --- api-reference/v1.0/api/filestoragecontainer-list-permissions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md index c1422bfc414..49e16d2be28 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Get a list of the [permission](../resources/permission.md) objects associated with a [fileStorageContainer](../resources/filestoragecontainer.md). ## Permissions From 6b56d34d732d5a07a2fa0a75e9741146615086a3 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:42 -0700 Subject: [PATCH 19/96] Update filestoragecontainer-post-customproperty.md --- .../v1.0/api/filestoragecontainer-post-customproperty.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md index e0d04e8c3c3..558d80fb2b4 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md @@ -11,9 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - - Add custom properties to a [fileStorageContainer](../resources/filestoragecontainer.md) object. ## Permissions From f11d76d961ad50ee7f5bb854057f6188ade3b5c0 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:54 -0700 Subject: [PATCH 20/96] Update filestoragecontainer-post-permissions.md --- api-reference/v1.0/api/filestoragecontainer-post-permissions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md index 2b8898267a1..4ab7f22dbb7 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md @@ -12,8 +12,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Add a [permission](../resources/permission.md) to an existing [fileStorageContainer](../resources/filestoragecontainer.md). From fa76ec27934bac792b172856231c7f43e9f5e106 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:11:20 -0700 Subject: [PATCH 21/96] Update filestoragecontainer-post.md --- api-reference/v1.0/api/filestoragecontainer-post.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post.md b/api-reference/v1.0/api/filestoragecontainer-post.md index 14ce439d03f..0beb0a06815 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post.md +++ b/api-reference/v1.0/api/filestoragecontainer-post.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Create a new [fileStorageContainer](../resources/filestoragecontainer.md) object. The respective container type identified by **containerTypeId** must be enabled in the tenant. From 2dbf2ad4720b3fa36509a1ca8d15af3ea3d99c59 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:11:40 -0700 Subject: [PATCH 22/96] Update filestoragecontainer-update-customproperty.md --- .../v1.0/api/filestoragecontainer-update-customproperty.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md index 778199d7170..009d649d34e 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md @@ -11,8 +11,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Update one or multiple custom properties on a [fileStorageContainer](../resources/filestoragecontainer.md). Only the **value** and **isSearchable** attributes of custom properties can be updated. Only the custom properties specified in the request body are updated. If a custom property specified in the request body doesn't exist on the container, it will be created. Updating a custom property to a `null` value deletes the property from the container. From 5a6138ef409beb76cd3708247d9f7f989bf60b7f Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:11:53 -0700 Subject: [PATCH 23/96] Update filestoragecontainer-update-permissions.md --- .../v1.0/api/filestoragecontainer-update-permissions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md index 30a7795e436..43167d234c1 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md @@ -12,8 +12,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Update an existing [permission](../resources/permission.md) on a [fileStorageContainer](../resources/filestoragecontainer.md) by making a PATCH request on the permission resource. Only the **roles** property can be updated. One role per user is supported. A new ID is generated for the updated permissions object. From 027c6cbd93534cf5bb5622e335533b1a01668dcb Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:12:08 -0700 Subject: [PATCH 24/96] Update filestoragecontainer-update.md --- api-reference/v1.0/api/filestoragecontainer-update.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update.md b/api-reference/v1.0/api/filestoragecontainer-update.md index 521d68aa3f6..9fc988251bb 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update.md +++ b/api-reference/v1.0/api/filestoragecontainer-update.md @@ -13,8 +13,6 @@ doc_type: apiPageType Namespace: microsoft.graph -[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] - Update the properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object. ## Permissions From 4741306a7a9772750178e5de63cc4adcd44cbccc Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:17:40 -0700 Subject: [PATCH 25/96] Update toc.yml --- api-reference/v1.0/toc.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/api-reference/v1.0/toc.yml b/api-reference/v1.0/toc.yml index b9f819ab19b..e83f5ad9ea5 100644 --- a/api-reference/v1.0/toc.yml +++ b/api-reference/v1.0/toc.yml @@ -5082,6 +5082,39 @@ items: href: api/permission-update.md - name: Delete permission href: api/permission-delete.md + - name: File storage containers + href: resources/filestoragecontainer.md + items: + - name: List file storage containers + href: api/filestorage-list-containers.md + - name: Create file storage container + href: api/filestoragecontainer-post.md + - name: Get file storage container + href: api/filestoragecontainer-get.md + - name: Get drive + href: api/filestoragecontainer-get-drive.md + - name: Update file storage containers + href: api/filestoragecontainer-update.md + - name: Delete file storage container + href: api/filestorage-delete-containers.md + - name: Activate file storage container + href: api/filestoragecontainer-activate.md + - name: List permissions + href: api/filestoragecontainer-list-permissions.md + - name: Add permissions + href: api/filestoragecontainer-post-permissions.md + - name: Update permissions + href: api/filestoragecontainer-update-permissions.md + - name: Delete permissions + href: api/filestoragecontainer-delete-permissions.md + - name: List custom property + href: api/filestoragecontainer-list-customproperty.md + - name: Add custom property + href: api/filestoragecontainer-post-customproperty.md + - name: Update custom property + href: api/filestoragecontainer-update-customproperty.md + - name: Delete custom property + href: api/filestoragecontainer-delete-customproperty.md - name: Identity and access items: - name: Overview From a98b2f5724d39cbb3e19afee4c790286cd6f8581 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:32:59 -0700 Subject: [PATCH 26/96] Update filestorage-delete-containers.md --- api-reference/v1.0/api/filestorage-delete-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestorage-delete-containers.md b/api-reference/v1.0/api/filestorage-delete-containers.md index 1262aef7208..28d93ef8c38 100644 --- a/api-reference/v1.0/api/filestorage-delete-containers.md +++ b/api-reference/v1.0/api/filestorage-delete-containers.md @@ -56,7 +56,7 @@ The following example shows a request. } --> ``` http -DELETE https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId} +DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId} ``` From 546fe38a6a7decffb146e164633771c10660b1ce Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:33:56 -0700 Subject: [PATCH 27/96] Update filestorage-list-containers.md --- api-reference/v1.0/api/filestorage-list-containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestorage-list-containers.md b/api-reference/v1.0/api/filestorage-list-containers.md index 091811759a1..be04427d686 100644 --- a/api-reference/v1.0/api/filestorage-list-containers.md +++ b/api-reference/v1.0/api/filestorage-list-containers.md @@ -63,7 +63,7 @@ The following example enumerates all containers of a given container type. } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} ``` ### Response @@ -80,7 +80,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@odata.context": "https://graph.microsoft.com/beta/storage/fileStorage/containers", + "@odata.context": "https://graph.microsoft.com/v1.0/storage/fileStorage/containers", "@odata.count": 1, "value": [ { From b94d3af03043049415968a2e7191655ff0aa67e0 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:34:17 -0700 Subject: [PATCH 28/96] Update filestoragecontainer-activate.md --- api-reference/v1.0/api/filestoragecontainer-activate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-activate.md b/api-reference/v1.0/api/filestoragecontainer-activate.md index a8b3e4ce744..9739da8fb64 100644 --- a/api-reference/v1.0/api/filestoragecontainer-activate.md +++ b/api-reference/v1.0/api/filestoragecontainer-activate.md @@ -62,7 +62,7 @@ The following example shows a request. } --> ``` http -POST https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/activate +POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/activate ``` ### Response From aa53540e3f59c02d092663887f4ad65f82c0e0d3 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:34:47 -0700 Subject: [PATCH 29/96] Update filestoragecontainer-delete-customproperty.md --- .../v1.0/api/filestoragecontainer-delete-customproperty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md index 7eaef2425d3..00072a7ec0c 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md @@ -51,7 +51,7 @@ The following example deletes multiple custom properties. } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties Content-type: application/json { From ef8dae1bcf34ac6718675657ad387ed18cb02a1c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:35:09 -0700 Subject: [PATCH 30/96] Update filestoragecontainer-delete-permissions.md --- .../v1.0/api/filestoragecontainer-delete-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md index 9f9a6a00154..1c528eb79ad 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md @@ -53,7 +53,7 @@ The following example shows a request. } --> ``` http -DELETE https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions/{permissionId} ``` ### Response From 4f3c4d5ad03551f85321c0511cce211f588e829c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:48:19 -0700 Subject: [PATCH 31/96] Update filestoragecontainer-get-drive.md --- api-reference/v1.0/api/filestoragecontainer-get-drive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get-drive.md b/api-reference/v1.0/api/filestoragecontainer-get-drive.md index 2c4bc1d96e7..a164b5f0cb5 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get-drive.md +++ b/api-reference/v1.0/api/filestoragecontainer-get-drive.md @@ -55,7 +55,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/drive +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/drive ``` From 5af7829714beec3ea789fca00a749a24c056ec5e Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:48:36 -0700 Subject: [PATCH 32/96] Update filestoragecontainer-get.md --- api-reference/v1.0/api/filestoragecontainer-get.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get.md b/api-reference/v1.0/api/filestoragecontainer-get.md index d5b7b2a061d..8f78b15cc42 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get.md +++ b/api-reference/v1.0/api/filestoragecontainer-get.md @@ -50,7 +50,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId} +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId} ``` ### Response From 7e1761386492960d315eab5c19365de638c5adfb Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:49:04 -0700 Subject: [PATCH 33/96] Update filestoragecontainer-list-customproperty.md --- .../v1.0/api/filestoragecontainer-list-customproperty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md index 7651207d9fc..5f4a4cdf8ba 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md @@ -49,7 +49,7 @@ The following example shows how to get a custom property named `clientUniquieId` } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties/clientUniqueId +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties/clientUniqueId ``` ### Response @@ -78,7 +78,7 @@ The following example shows how to get all the custom properties of a **fileStor } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties/ +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties/ ``` ### Response From 7ddb2db030f185b7ecf6acdacdce7c42d2ab04db Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:49:28 -0700 Subject: [PATCH 34/96] Update filestoragecontainer-list-permissions.md --- .../v1.0/api/filestoragecontainer-list-permissions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md index 49e16d2be28..5e0fffc5dc0 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md @@ -52,7 +52,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions ``` ### Response @@ -69,7 +69,7 @@ HTTP/1.1 200 OK Content-Type: application/json { - "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.permission)", + "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.permission)", "value": [ { "@odata.type": "#microsoft.graph.permission", From f1d28f3fa3bb975f193571e1a7ab60effdc8e46d Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:50:00 -0700 Subject: [PATCH 35/96] Update filestoragecontainer-post-customproperty.md --- .../v1.0/api/filestoragecontainer-post-customproperty.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md index 558d80fb2b4..ecba9698f20 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md @@ -59,7 +59,7 @@ The following example shows how to create a custom property called `clientUnique } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties Content-Type: application/json { @@ -88,7 +88,7 @@ The following example shows how to create a searchable custom property called `c } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties Content-Type: application/json { @@ -117,7 +117,7 @@ The following example shows how to create multiple custom properties for a conta } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties Content-Type: application/json { From afeaa043f2f8cb73f9b48ad78e4d3c173797d973 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:50:20 -0700 Subject: [PATCH 36/96] Update filestoragecontainer-post-permissions.md --- api-reference/v1.0/api/filestoragecontainer-post-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md index 4ab7f22dbb7..01a7dce1de1 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md @@ -61,7 +61,7 @@ The following example shows how to add a new user as a reader to a container. } --> ``` http -POST https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions +POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions Content-type: application/json { From dbebaf5b2a83c731fec60d1520ff6b5eed13fb75 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:50:49 -0700 Subject: [PATCH 37/96] Update filestoragecontainer-post.md --- api-reference/v1.0/api/filestoragecontainer-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post.md b/api-reference/v1.0/api/filestoragecontainer-post.md index 0beb0a06815..536cec445ee 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post.md +++ b/api-reference/v1.0/api/filestoragecontainer-post.md @@ -65,7 +65,7 @@ The following example shows how to create a **fileStorageContainer**. } --> ``` http -POST https://graph.microsoft.com/beta/storage/fileStorage/containers +POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers Content-Type: application/json { From a6b6ed83dd41cd773e7e34e8dc5cadace4d7e147 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:51:13 -0700 Subject: [PATCH 38/96] Update filestoragecontainer-update-customproperty.md --- .../v1.0/api/filestoragecontainer-update-customproperty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md index 009d649d34e..cf210f2f75f 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md @@ -63,7 +63,7 @@ The following example updates the `value` property of the custom properties `cli } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties Content-type: application/json { From da71ebf1a43fb264c56499bdf4391d0d18f5b379 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:51:32 -0700 Subject: [PATCH 39/96] Update filestoragecontainer-update-permissions.md --- .../v1.0/api/filestoragecontainer-update-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md index 43167d234c1..c76d4475869 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md @@ -60,7 +60,7 @@ The following example shows a request. } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions/{permissionId} Content-Type: application/json { From 16dbe3edf7c8f2698964db1c6c99d676671494a4 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:22:19 -0700 Subject: [PATCH 40/96] Add files via upload --- .../filestorage-delete-containers-permissions.md | 11 +++++++++++ .../filestorage-list-containers-permissions.md | 11 +++++++++++ .../filestoragecontainer-activate-permissions.md | 11 +++++++++++ ...ragecontainer-delete-customproperty-permissions.md | 11 +++++++++++ ...storagecontainer-delete-permissions-permissions.md | 11 +++++++++++ .../filestoragecontainer-get-drive-permissions.md | 11 +++++++++++ .../filestoragecontainer-get-permissions.md | 11 +++++++++++ ...toragecontainer-list-customproperty-permissions.md | 11 +++++++++++ ...lestoragecontainer-list-permissions-permissions.md | 11 +++++++++++ ...toragecontainer-post-customproperty-permissions.md | 11 +++++++++++ ...lestoragecontainer-post-permissions-permissions.md | 11 +++++++++++ .../filestoragecontainer-post-permissions.md | 11 +++++++++++ ...ragecontainer-update-customproperty-permissions.md | 11 +++++++++++ ...storagecontainer-update-permissions-permissions.md | 11 +++++++++++ .../filestoragecontainer-update-permissions.md | 11 +++++++++++ 15 files changed, 165 insertions(+) create mode 100644 api-reference/v1.0/includes/permissions/filestorage-delete-containers-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestorage-list-containers-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-activate-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-delete-customproperty-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-delete-permissions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-get-drive-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-get-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-list-customproperty-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-list-permissions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-post-customproperty-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-update-customproperty-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions-permissions.md create mode 100644 api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions.md diff --git a/api-reference/v1.0/includes/permissions/filestorage-delete-containers-permissions.md b/api-reference/v1.0/includes/permissions/filestorage-delete-containers-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestorage-delete-containers-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestorage-list-containers-permissions.md b/api-reference/v1.0/includes/permissions/filestorage-list-containers-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestorage-list-containers-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-activate-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-activate-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-activate-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-customproperty-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-customproperty-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-customproperty-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-permissions-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-permissions-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-delete-permissions-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-get-drive-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-get-drive-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-get-drive-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-get-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-get-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-get-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-list-customproperty-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-list-customproperty-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-list-customproperty-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-list-permissions-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-list-permissions-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-list-permissions-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-post-customproperty-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-customproperty-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-customproperty-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-post-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-update-customproperty-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-customproperty-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-customproperty-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file diff --git a/api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions.md b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-permissions.md new file mode 100644 index 00000000000..e92b4c68082 --- /dev/null +++ b/api-reference/v1.0/includes/permissions/filestoragecontainer-update-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)|FileStorageContainer.Selected|Not available.| +|Delegated (personal Microsoft account)|Not supported.|Not supported.| +|Application|FileStorageContainer.Selected|Not available.| \ No newline at end of file From 8556b10db70a21a799298db7f6a623d2f7e0e5fc Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:00:37 -0700 Subject: [PATCH 41/96] Update Microsoft.FileServices.json --- changelog/Microsoft.FileServices.json | 3920 +------------------------ 1 file changed, 123 insertions(+), 3797 deletions(-) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 0e5ddec483c..198a7bfb237 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -3,3887 +3,213 @@ { "ChangeList": [ { - "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", - "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainer", - "ChangeType": "Addition", - "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource and its methods.", - "Target": "fileStorageContainer" - }, - { "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", - "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", - "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-beta) resource.", - "Target": "fileStorageContainerCustomPropertyDictionary" + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "ApiChange": "Property", + "ChangedApiName": "checkedOutBy", + "ChangeType": "Deletion", + "Description": "Removed the **checkedOutBy** property from the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-beta) resource.", + "Target": "publicationFacet" }, { - "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerCustomPropertyValue", - "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-beta) resource.", - "Target": "fileStorageContainerCustomPropertyValue" + "ChangedApiName": "recycleBin", + "ChangeType": "Deletion", + "Description": "Removed the **recycleBin** resource.", + "Target": "recycleBin" }, { - "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerViewpoint", - "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-beta) resource.", - "Target": "fileStorageContainer" + "ChangedApiName": "recycleBinItem", + "ChangeType": "Deletion", + "Description": "Removed the **recycleBinItem** resource.", + "Target": "recycleBinItem" }, { - "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", - "ApiChange": "Relationship", - "ChangedApiName": "permissions", - "ChangeType": "Addition", - "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", - "Target": "fileStorageContainer" + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "ApiChange": "Property", + "ChangedApiName": "isPersonalSite", + "ChangeType": "Deletion", + "Description": "Removed the **isPersonalSite** property from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" }, { - "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", "ApiChange": "Relationship", - "ChangedApiName": "drive", - "ChangeType": "Addition", - "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", - "Target": "fileStorageContainer" + "ChangedApiName": "recycleBin", + "ChangeType": "Deletion", + "Description": "Removed the **recycleBin** relationship from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" } ], - "Id": "a376b86e-b5eb-4d9e-8270-de3cc02af307", + "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", "Cloud": "Prod", "Version": "beta", - "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", + "CreatedDateTime": "2024-04-10T21:07:02.6635718Z", "WorkloadArea": "Files", "SubArea": "" }, { "ChangeList": [ { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "itemRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [itemRetentionLabel](https://learn.microsoft.com/en-us/graph/api/resources/itemRetentionLabel?view=graph-rest-beta) resource type.", - "Target": "itemRetentionLabel" - }, - { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "ApiChange": "Relationship", - "ChangedApiName": "retentionLabel", - "ChangeType": "Addition", - "Description": "Added the **retentionLabel** relationship to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" + "ChangedApiName": "commentAction", + "ChangeType": "Deletion", + "Description": "Removed the **commentAction** resource.", + "Target": "commentAction" }, { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "retentionLabelSettings", - "ChangeType": "Addition", - "Description": "Added the [retentionLabelSettings](https://learn.microsoft.com/en-us/graph/api/resources/retentionLabelSettings?view=graph-rest-beta) resource type.", - "Target": "retentionLabelSettings" - }, - { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "ApiChange": "Method", - "ChangedApiName": "getRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [getRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-getretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "ApiChange": "Method", - "ChangedApiName": "lockOrUnlockRecord", - "ChangeType": "Addition", - "Description": "Added the [lockOrUnlockRecord](https://learn.microsoft.com/en-us/graph/api/driveitem-lockorunlockrecord?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "ApiChange": "Method", - "ChangedApiName": "removeRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [removeRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-removeretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "ApiChange": "Method", - "ChangedApiName": "setRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [setRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-setretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "driveItem" - } - ], - "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-04-04T04:44:48.6373254Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Enum type", - "ChangedApiName": "behaviorDuringRetentionPeriod", - "ChangeType": "Addition", - "Description": "Added the **behaviorDuringRetentionPeriod** enumeration type.", - "Target": "behaviorDuringRetentionPeriod" + "ChangedApiName": "createAction", + "ChangeType": "Deletion", + "Description": "Removed the **createAction** resource.", + "Target": "createAction" }, { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "itemRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [itemRetentionLabel](https://learn.microsoft.com/en-us/graph/api/resources/itemRetentionLabel?view=graph-rest-1.0) resource type.", - "Target": "itemRetentionLabel" + "ChangedApiName": "deleteAction", + "ChangeType": "Deletion", + "Description": "Removed the **deleteAction** resource.", + "Target": "deleteAction" }, { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "retentionLabelSettings", - "ChangeType": "Addition", - "Description": "Added the [retentionLabelSettings](https://learn.microsoft.com/en-us/graph/api/resources/retentionLabelSettings?view=graph-rest-1.0) resource type.", - "Target": "retentionLabelSettings" - }, - { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Relationship", - "ChangedApiName": "retentionLabel", - "ChangeType": "Addition", - "Description": "Added the **retentionLabel** relationship to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", - "Target": "driveItem" - }, - { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Method", - "ChangedApiName": "getRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [getRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-getretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "driveItem" + "ChangedApiName": "editAction", + "ChangeType": "Deletion", + "Description": "Removed the **editAction** resource.", + "Target": "editAction" }, { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Method", - "ChangedApiName": "lockOrUnlockRecord", - "ChangeType": "Addition", - "Description": "Added the [lockOrUnlockRecord](https://learn.microsoft.com/en-us/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "driveItem" + "Id": "c9013b71-7242-49a0-be40-974079421a17", + "ApiChange": "Resource", + "ChangedApiName": "mentionAction", + "ChangeType": "Deletion", + "Description": "Removed the **mentionAction** resource.", + "Target": "mentionAction" }, { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Method", - "ChangedApiName": "removeRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [removeRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-removeretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "driveItem" + "Id": "c9013b71-7242-49a0-be40-974079421a17", + "ApiChange": "Resource", + "ChangedApiName": "moveAction", + "ChangeType": "Deletion", + "Description": "Removed the **moveAction** resource.", + "Target": "moveAction" }, - { - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "ApiChange": "Method", - "ChangedApiName": "setRetentionLabel", - "ChangeType": "Addition", - "Description": "Added the [setRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "driveItem" - } - ], - "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-11-06T04:44:48.6373254Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "d21eab90-33dc-4a10-9760-31b5b3146313", - "ApiChange": "Property", - "ChangedApiName": "checkedOutBy", - "ChangeType": "Addition", - "Description": "Added the **checkedOutBy** property to the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-beta) resource.", - "Target": "publicationFacet" - } - ], - "Id": "d21eab90-33dc-4a10-9760-31b5b3146313", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-08-31T09:24:40.9901309Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ { - "Id": "63ec4567-ba38-4767-92ab-167f2d155951", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Property", "ChangedApiName": "checkedOutBy", - "ChangeType": "Addition", - "Description": "Added the **checkedOutBy** property to the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-1.0) resource.", + "ChangeType": "Deletion", + "Description": "Removed the **checkedOutBy** property from the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-1.0) resource.", "Target": "publicationFacet" - } - ], - "Id": "63ec4567-ba38-4767-92ab-167f2d155951", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-08-31T09:24:40.9904868Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "a8d1ea6c-3868-41c8-b499-ed81848134bd", - "ApiChange": "Method", - "ChangedApiName": "permanentDelete", - "ChangeType": "Addition", - "Description": "Added the [permanentDelete](https://learn.microsoft.com/en-us/graph/api/driveitem-permanentdelete?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - } - ], - "Id": "a8d1ea6c-3868-41c8-b499-ed81848134bd", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-06-28T08:35:41.9865867Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "bb7f0809-9061-4b82-b872-249661a3d329", - "ApiChange": "Method", - "ChangedApiName": "permanentDelete", - "ChangeType": "Addition", - "Description": "Added the [permanentDelete](https://learn.microsoft.com/en-us/graph/api/driveitem-permanentdelete?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", - "Target": "driveItem" - } - ], - "Id": "bb7f0809-9061-4b82-b872-249661a3d329", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-07-27T08:35:41.9869433Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "d07006c1-a451-4fcf-b9b6-835546842783", - "ApiChange": "Method", - "ChangedApiName": "getAllSites", - "ChangeType": "Addition", - "Description": "Added the [getAllSites](https://learn.microsoft.com/en-us/graph/api/site-getallsites?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" - } - ], - "Id": "d07006c1-a451-4fcf-b9b6-835546842783", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-05-19T00:22:49.847Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "8ca9e51e-a486-41cb-af0e-105f86177d1b", - "ApiChange": "Method", - "ChangedApiName": "getAllSites", - "ChangeType": "Addition", - "Description": "Added the [getAllSites](https://learn.microsoft.com/en-us/graph/api/site-getallsites?view=graph-rest-1.0) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", - "Target": "site" - } - ], - "Id": "8ca9e51e-a486-41cb-af0e-105f86177d1b", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-05-19T00:22:49.847Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "ApiChange": "Enumeration", - "ChangedApiName": "imageTaggingChoice", - "ChangeType": "Addition", - "Description": "Added the **imageTaggingChoice** enumeration type.", - "Target": "imageTaggingChoice" }, { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "ApiChange": "Enumeration", - "ChangedApiName": "sharingCapabilities", - "ChangeType": "Addition", - "Description": "Added the **sharingCapabilities** enumeration type.", - "Target": "sharingCapabilities" - }, - { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "ApiChange": "Enumeration", - "ChangedApiName": "sharingDomainRestrictionMode", - "ChangeType": "Addition", - "Description": "Added the **sharingDomainRestrictionMode** enumeration type.", - "Target": "sharingDomainRestrictionMode" + "Id": "c9013b71-7242-49a0-be40-974079421a17", + "ApiChange": "Resource", + "ChangedApiName": "renameAction", + "ChangeType": "Deletion", + "Description": "Removed the **renameAction** resource.", + "Target": "renameAction" }, { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "idleSessionSignOut", - "ChangeType": "Addition", - "Description": "Added the [idleSessionSignOut](https://learn.microsoft.com/en-us/graph/api/resources/idleSessionSignOut?view=graph-rest-1.0) resource type.", - "Target": "idleSessionSignOut" + "ChangedApiName": "restoreAction", + "ChangeType": "Deletion", + "Description": "Removed the **restoreAction** resource.", + "Target": "restoreAction" }, { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "sharepointSettings", - "ChangeType": "Addition", - "Description": "Added the [sharepointSettings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointSettings?view=graph-rest-1.0) resource.", - "Target": "sharepointSettings" + "ChangedApiName": "shareAction", + "ChangeType": "Deletion", + "Description": "Removed the **shareAction** resource.", + "Target": "shareAction" }, { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "ApiChange": "Relationship", - "ChangedApiName": "sharepointSettings", - "ChangeType": "Addition", - "Description": "Added the **sharepointSettings** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-1.0) resource.", - "Target": "admin" - } - ], - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-05-02T17:18:06.3356617Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "a4a26d2c-47f7-4aa2-9a38-8c979cc811a1", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "ApiChange": "Resource", - "ChangedApiName": "tenantadmin-sharepoint", + "ChangedApiName": "versionAction", "ChangeType": "Deletion", - "Description": "Removed the **sharepoint** resource from the tenantAdmin subnamespace resource.", - "Target": "tenantadmin-sharepoint" + "Description": "Removed the **versionAction** resource.", + "Target": "versionAction" }, { - "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", - "ApiChange": "Relationship", - "ChangedApiName": "sharepointSettings", - "ChangeType": "Addition", - "Description": "Added the **sharepointSettings** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-beta) resource.", - "Target": "admin" + "Id": "c9013b71-7242-49a0-be40-974079421a17", + "ApiChange": "Property", + "ChangedApiName": "isPersonalSite", + "ChangeType": "Deletion", + "Description": "Removed the **isPersonalSite** property from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" } ], - "Id": "a4a26d2c-47f7-4aa2-9a38-8c979cc811a1", + "Id": "c9013b71-7242-49a0-be40-974079421a17", "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-05-02T21:52:28.1485706Z", - "WorkloadArea": "Sites and lists", + "Version": "v1.0", + "CreatedDateTime": "2024-04-10T21:07:02.6635757Z", + "WorkloadArea": "Files", "SubArea": "" }, { "ChangeList": [ { - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", - "ApiChange": "Enumeration", - "ChangedApiName": "sensitivityLabelAssignmentMethod", - "ChangeType": "Addition", - "Description": "Added the **sensitivityLabelAssignmentMethod** enumeration type.", - "Target": "sensitivityLabelAssignmentMethod" - }, - { - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "Id": "cca19c51-da79-49de-adc8-799812dba423", "ApiChange": "Resource", - "ChangedApiName": "extractSensitivityLabelsResult", + "ChangedApiName": "fileStorageContainer", "ChangeType": "Addition", - "Description": "Added the [extractSensitivityLabelsResult](https://learn.microsoft.com/graph/api/resources/extractSensitivityLabelsResult?view=graph-rest-1.0) resource type.", - "Target": "extractSensitivityLabelsResult" + "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource and its methods.", + "Target": "fileStorageContainer" }, - { - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + { "Id": "cca19c51-da79-49de-adc8-799812dba423", "ApiChange": "Resource", - "ChangedApiName": "sensitivityLabelAssignment", - "ChangeType": "Addition", - "Description": "Added the [sensitivityLabelAssignment](https://learn.microsoft.com/graph/api/resources/sensitivityLabelAssignment?view=graph-rest-1.0) resource type.", - "Target": "sensitivityLabelAssignment" - }, - { - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", - "ApiChange": "Method", - "ChangedApiName": "assignSensitivityLabel", + "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", "ChangeType": "Addition", - "Description": "Added the [assignSensitivityLabel](https://learn.microsoft.com/graph/api/driveitem-assignsensitivitylabel?view=graph-rest-1.0&tabs=http) method to the [driveItem](https://learn.microsoft.com/graph/api/driveItem-get?view=graph-rest-1.0&tabs=http) resource.", - "Target": "driveItem" + "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainerCustomPropertyDictionary" }, { - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", - "ApiChange": "Method", - "ChangedApiName": "extractSensitivityLabels", - "ChangeType": "Addition", - "Description": "Added the [extractSensitivityLabels](https://learn.microsoft.com/graph/api/driveitem-extractsensitivitylabels?view=graph-rest-1.0&tabs=http) method to the [driveItem](https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0&tabs=http) resource.", - "Target": "driveItem" - } - ], - "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2023-06-15T12:09:50.4097557Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "bb775eb6-032d-4958-946f-a5b608a5be43", - "ApiChange": "Method", - "ChangedApiName": "assignSensitivityLabel", - "ChangeType": "Addition", - "Description": "Added the [assignSensitivityLabel](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) method to the driveItem resource.", - "Target": "driveItem" - } - ], - "Id": "bb775eb6-032d-4958-946f-a5b608a5be43", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-09-02T16:49:52.2813343Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "Id": "cca19c51-da79-49de-adc8-799812dba423", "ApiChange": "Resource", - "ChangedApiName": "idleSessionSignOut", + "ChangedApiName": "fileStorageContainerCustomPropertyValue", "ChangeType": "Addition", - "Description": "Added the [idleSessionSignOut](https://learn.microsoft.com/en-us/graph/api/resources/idlesessionsignout?view=graph-rest-beta) resource type.", - "Target": "idleSessionSignOut" + "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainerCustomPropertyValue" }, { - "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", - "ApiChange": "Property", - "ChangedApiName": "idleSessionSignOut", + "Id": "cca19c51-da79-49de-adc8-799812dba423", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerViewpoint", "ChangeType": "Addition", - "Description": "Added the **idleSessionSignOut** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", - "Target": "settings" + "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" }, { - "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", - "ApiChange": "Property", - "ChangedApiName": "isLegacyAuthProtocolsEnabled", + "Id": "cca19c51-da79-49de-adc8-799812dba423", + "ApiChange": "Relationship", + "ChangedApiName": "permissions", "ChangeType": "Addition", - "Description": "Added the **isLegacyAuthProtocolsEnabled** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", - "Target": "settings" + "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" }, { - "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", - "ApiChange": "Property", - "ChangedApiName": "isRequireAcceptingUserToMatchInvitedUserEnabled", + "Id": "cca19c51-da79-49de-adc8-799812dba423", + "ApiChange": "Relationship", + "ChangedApiName": "drive", "ChangeType": "Addition", - "Description": "Added the **isRequireAcceptingUserToMatchInvitedUserEnabled** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", - "Target": "settings" + "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" } ], - "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-08-01T21:52:28.1485706Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "ApiChange": "Relationship", - "ChangedApiName": "sharepoint", - "ChangeType": "Addition", - "Description": "Added the **sharepoint** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-beta) resource.", - "Target": "admin" - }, - { - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "ApiChange": "Resource", - "ChangedApiName": "settings", - "ChangeType": "Addition", - "Description": "Added the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource type and supported methods.", - "Target": "settings" - }, - { - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "ApiChange": "EnumType", - "ChangedApiName": "imageTaggingChoice", - "ChangeType": "Addition", - "Description": "Added the **imageTaggingChoice** enumeration type.", - "Target": "imageTaggingChoice" - }, - { - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "ApiChange": "EnumType", - "ChangedApiName": "sharingCapabilities", - "ChangeType": "Addition", - "Description": "Added the **sharingCapabilities** enumeration type.", - "Target": "sharingCapabilities" - }, - { - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "ApiChange": "EnumType", - "ChangedApiName": "sharingDomainRestrictionMode", - "ChangeType": "Addition", - "Description": "Added the **sharingDomainRestrictionMode** enumeration type.", - "Target": "sharingDomainRestrictionMode" - } - ], - "Id": "87095323-a508-44c8-95b1-5583e8e14167", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-05-23T02:50:58.3570719Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", - "ApiChange": "EnumType", - "ChangedApiName": "sensitivityLabelAssignmentMethod", - "ChangeType": "Addition", - "Description": "Added the **sensitivityLabelAssignmentMethod** enumeration type.", - "Target": "sensitivityLabelAssignmentMethod" - }, - { - "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", - "ApiChange": "Resource", - "ChangedApiName": "extractSensitivityLabelsResult", - "ChangeType": "Addition", - "Description": "Added the [extractSensitivityLabelsResult](https://learn.microsoft.com/en-us/graph/api/resources/extractSensitivityLabelsResult?view=graph-rest-beta) resource type.", - "Target": "extractSensitivityLabelsResult" - }, - { - "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", - "ApiChange": "Resource", - "ChangedApiName": "sensitivityLabelAssignment", - "ChangeType": "Addition", - "Description": "Added the [sensitivityLabelAssignment](https://learn.microsoft.com/en-us/graph/api/resources/sensitivityLabelAssignment?view=graph-rest-beta) resource type.", - "Target": "sensitivityLabelAssignment" - }, - { - "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", - "ApiChange": "Method", - "ChangedApiName": "extractSensitivityLabels", - "ChangeType": "Addition", - "Description": "Added the [extractSensitivityLabels](https://learn.microsoft.com/en-us/graph/api/driveitem-extractSensitivityLabels?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - } - ], - "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-04-18T20:17:33.7017535Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Property", - "ChangedApiName": "grantedTo", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToV2** property instead.", - "Target": "permission" - }, - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentities", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToIdentitiesV2** property instead.", - "Target": "permission" - }, - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Property", - "ChangedApiName": "grantedToV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentitiesV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentity", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-1.0) resource type.", - "Target": "permission" - }, - { - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentitySet", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-1.0) resource type.", - "Target": "permission" - } - ], - "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-11-29T22:39:56.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Property", - "ChangedApiName": "grantedTo", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToV2** property instead.", - "Target": "permission" - }, - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentities", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToIdentitiesV2** property instead.", - "Target": "permission" - }, - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Property", - "ChangedApiName": "grantedToV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentitiesV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentity", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-1.0) resource type.", - "Target": "permission" - }, - { - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentitySet", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-1.0) resource type.", - "Target": "permission" - } - ], - "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-09-11T22:39:56.000Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Property", - "ChangedApiName": "grantedTo", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToV2** property instead.", - "Target": "permission" - }, - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentities", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToIdentitiesV2** property instead.", - "Target": "permission" - }, - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Property", - "ChangedApiName": "grantedToV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentitiesV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentity", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-beta) resource type.", - "Target": "permission" - }, - { - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentitySet", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-beta) resource type.", - "Target": "permission" - } - ], - "Id": "69153396-A3C3-4B9F-932C-B658C9033966", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-11-29T22:39:56.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Property", - "ChangedApiName": "grantedTo", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToV2** property instead.", - "Target": "permission" - }, - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentities", - "ChangeType": "Deprecation", - "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToIdentitiesV2** property instead.", - "Target": "permission" - }, - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Property", - "ChangedApiName": "grantedToV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Property", - "ChangedApiName": "grantedToIdentitiesV2", - "ChangeType": "Addition", - "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", - "Target": "permission" - }, - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentity", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-beta) resource type.", - "Target": "permission" - }, - { - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "ApiChange": "Resource", - "ChangedApiName": "sharePointIdentitySet", - "ChangeType": "Addition", - "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-beta) resource type.", - "Target": "permission" - } - ], - "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-11-29T22:39:56.000Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", - "ApiChange": "Resource", - "ChangedApiName": "bundle", - "ChangeType": "addition", - "Description": "Added the [bundle](https://learn.microsoft.com/en-us/graph/api/resources/bundle?view=graph-rest-1.0) resource and associated methods.", - "Target": "bundle" - }, - { - "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", - "ApiChange": "Resource", - "ChangedApiName": "album", - "ChangeType": "addition", - "Description": "Added the [album](https://learn.microsoft.com/en-us/graph/api/resources/album?view=graph-rest-1.0) resource.", - "Target": "album" - }, - { - "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", - "ApiChange": "Relationship", - "ChangedApiName": "bundles", - "ChangeType": "addition", - "Description": "Added the **bundles** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0) resource.", - "Target": "drive" - }, - { - "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", - "ApiChange": "Property", - "ChangedApiName": "bundle", - "ChangeType": "addition", - "Description": "Added the **bundle** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "driveItem" - } - ], - "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2022-03-16T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "FA782B9D-526C-403F-AA57-8144A4E736FB", - "ApiChange": "Parameter", - "ChangedApiName": "retainInheritedPermissions", - "ChangeType": "Addition", - "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "createLink" - } - ], - "Id": "FA782B9D-526C-403F-AA57-8144A4E736FB", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2023-03-02T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "26776B71-9B2E-45A3-B0CD-D6ECF7CF82C3", - "ApiChange": "Parameter", - "ChangedApiName": "retainInheritedPermissions", - "ChangeType": "Addition", - "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) action on a [listItem](https://docs.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", - "Target": "listItem" - } - ], - "Id": "26776B71-9B2E-45A3-B0CD-D6ECF7CF82C3", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2023-03-02T00:00:00.000Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "96E5DE9E-A56A-4FD1-B8E2-23BA9D180975", - "ApiChange": "Parameter", - "ChangedApiName": "retainInheritedPermissions", - "ChangeType": "Addition", - "Description": "Added the **retainInheritedPermissions** (string) parameter to the [invite](https://learn.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-beta) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", - "Target": "invite" - } - ], - "Id": "96E5DE9E-A56A-4FD1-B8E2-23BA9D180975", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2023-03-02T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "B90040F5-2D0D-4C16-BFA0-EBCD27BD5361", - "ApiChange": "Parameter", - "ChangedApiName": "retainInheritedPermissions", - "ChangeType": "Addition", - "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-1.0) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "createLink" - } - ], - "Id": "B90040F5-2D0D-4C16-BFA0-EBCD27BD5361", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2023-03-02T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "C68D4B2B-9D39-4562-92D7-1754A687EF64", - "ApiChange": "Parameter", - "ChangedApiName": "retainInheritedPermissions", - "ChangeType": "Addition", - "Description": "Added the **retainInheritedPermissions** (string) parameter to the [invite](https://docs.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-1.0) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "invite" - } - ], - "Id": "C68D4B2B-9D39-4562-92D7-1754A687EF64", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2022-01-12T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "6C5FE045-824E-411C-A316-35ECE4F6DD08", - "ApiChange": "Parameter", - "ChangedApiName": "type", - "ChangeType": "Change", - "Description": "Changed **type** (string) property in [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource from required to optional.", - "Target": "createLink" - } - ], - "Id": "6C5FE045-824E-411C-A316-35ECE4F6DD08", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-06-14T00:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "133A857A-DC2E-4A41-BCF7-D2B9BBC016AF", - "ApiChange": "Method", - "ChangedApiName": "createLink", - "ChangeType": "Addition", - "Description": "Added the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) action on a [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", - "Target": "listItem" - } - ], - "Id": "133A857A-DC2E-4A41-BCF7-D2B9BBC016AF", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-06-14T00:00:00.000Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "ApiChange": "Property", - "ChangedApiName": "media", - "ChangeType": "Addition", - "Description": "Added the **media** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "ApiChange": "Property", - "ChangedApiName": "source", - "ChangeType": "Addition", - "Description": "Added the **source** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "ApiChange": "Resource", - "ChangedApiName": "driveItemSource", - "ChangeType": "Addition", - "Description": "Added the [driveItemSource](https://learn.microsoft.com/en-us/graph/api/resources/driveItemSource?view=graph-rest-beta) resource type.", - "Target": "driveItemSource" - }, - { - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "ApiChange": "Resource", - "ChangedApiName": "media", - "ChangeType": "Addition", - "Description": "Added the [media](https://learn.microsoft.com/en-us/graph/api/resources/media?view=graph-rest-beta) resource type.", - "Target": "media" - }, - { - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "ApiChange": "Resource", - "ChangedApiName": "mediaSource", - "ChangeType": "Addition", - "Description": "Added the [mediaSource](https://learn.microsoft.com/en-us/graph/api/resources/mediaSource?view=graph-rest-beta) resource type.", - "Target": "mediaSource" - } - ], - "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-06-30T04:37:12.404Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "9601e3e1-bb2f-4b1d-b8d7-8d806b3039e2", - "ApiChange": "Method", - "ChangedApiName": "delta", - "ChangeType": "Addition", - "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/listitem-delta?view=graph-rest-beta) method to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", - "Target": "listItem" - } - ], - "Id": "9601e3e1-bb2f-4b1d-b8d7-8d806b3039e2", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2022-05-18T12:44:48Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "aa7c9c04-2a12-458f-9bd5-a46c3b2fccd4", - "ApiChange": "Relationship", - "ChangedApiName": "permissions", - "ChangeType": "Addition", - "Description": "Added the **permissions** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", - "Target": "site" - } - ], - "Id": "aa7c9c04-2a12-458f-9bd5-a46c3b2fccd4", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-02-05T01:49:05.616Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "d6b5ef23-6041-11eb-8de9-f7f8b8b7f046", - "ApiChange": "Relationship", - "ChangedApiName": "permissions", - "ChangeType": "Addition", - "Description": "Added the **permissions** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" - } - ], - "Id": "d6b38e82-6041-11eb-8de9-f7f8b8b7f046", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-01-27T01:49:05.616Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "d0ae3ac8-8d01-4235-b584-66a251ba1605", - "ApiChange": "Resource", - "ChangedApiName": "revokeGrants,permission", - "ChangeType": "Addition", - "Description": "Added the [revokeGrants](https://learn.microsoft.com/en-us/graph/api/permission-revokeGrants?view=graph-rest-beta) method to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource.", - "Target": "revokeGrants,permission" - } - ], - "Id": "d0ae3ac8-8d01-4235-b584-66a251ba1605", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2020-10-15T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Resource", - "ChangedApiName": "pendingOperations", - "ChangeType": "Addition", - "Description": "Added the [pendingOperations](https://learn.microsoft.com/en-us/graph/api/resources/pendingOperations?view=graph-rest-1.0) and [pendingContentUpdate](https://learn.microsoft.com/en-us/graph/api/resources/pendingContentUpdate?view=graph-rest-1.0) resources. The **pendingOperations** resource applies to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", - "Target": "pendingOperations,pendingContentUpdate,driveItem" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Resource", - "ChangedApiName": "restore,driveItem", - "ChangeType": "Addition", - "Description": "Added the [restore](https://learn.microsoft.com/en-us/graph/api/driveitem-restore?view=graph-rest-1.0) action to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", - "Target": "restore,driveItem" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Property", - "ChangedApiName": "orientation", - "ChangeType": "Addition", - "Description": "Added the **orientation** property to the [photo](https://learn.microsoft.com/en-us/graph/api/resources/photo?view=graph-rest-1.0) resource.", - "Target": "photo" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Property", - "ChangedApiName": "sha256Hash", - "ChangeType": "Addition", - "Description": "Added the **sha256Hash** property to the [hashes](https://learn.microsoft.com/en-us/graph/api/resources/hashes?view=graph-rest-1.0) resource.", - "Target": "hashes" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Parameter", - "ChangedApiName": "deferCommit", - "ChangeType": "Addition", - "Description": "Added the **deferCommit** parameter to the [createUploadSession](https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0) action.", - "Target": "createUploadSession" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Resource", - "ChangedApiName": "storagePlanInformation", - "ChangeType": "Addition", - "Description": "Added the [storagePlanInformation](https://learn.microsoft.com/en-us/graph/api/resources/storagePlanInformation?view=graph-rest-1.0) resource. The **storagePlanInformation** resource applies to the [quota](https://learn.microsoft.com/en-us/graph/api/resources/quota?view=graph-rest-1.0) resource.", - "Target": "storagePlanInformation,quota" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Property", - "ChangedApiName": "fileSize", - "ChangeType": "Addition", - "Description": "Added the **fileSize** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", - "Target": "driveItemUploadableProperties" - }, - { - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "ApiChange": "Property", - "ChangedApiName": "name", - "ChangeType": "Addition", - "Description": "Added the **name** property to the [contentTypeInfo](https://learn.microsoft.com/en-us/graph/api/resources/contentTypeInfo?view=graph-rest-1.0) resource.", - "Target": "contentTypeInfo" - } - ], - "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2020-06-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Resource", - "ChangedApiName": "check in,check out,driveItem", - "ChangeType": "Addition", - "Description": "Added the [check in](https://learn.microsoft.com/en-us/graph/api/driveitem-checkin?view=graph-rest-1.0) and [check out](https://learn.microsoft.com/en-us/graph/api/driveitem-checkin?view=graph-rest-1.0) actions on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "check in,check out,driveItem" - }, - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime,password,message", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime**, **password**, and **message** properties on the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-1.0) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "createLink,driveItem" - }, - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Property", - "ChangedApiName": "preventsDownload", - "ChangeType": "Addition", - "Description": "Added the **preventsDownload** property on the [sharingLink](https://learn.microsoft.com/en-us/graph/api/resources/sharinglink?view=graph-rest-1.0) resource.", - "Target": "sharingLink" - }, - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Property", - "ChangedApiName": "permission", - "ChangeType": "Addition", - "Description": "Added the **permission** property on the [sharedDriveItem](https://learn.microsoft.com/en-us/graph/api/resources/shareddriveitem?view=graph-rest-1.0) resource.", - "Target": "sharedDriveItem" - }, - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime,hasPassword,grantedToIdentities", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime**, **hasPassword**, and **grantedToIdentities** properties on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource.", - "Target": "permission" - }, - { - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime,password", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime**, and **password** properties on the [invite](https://learn.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-1.0) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", - "Target": "invite,driveItem" - } - ], - "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2020-04-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "ApiChange": "Property", - "ChangedApiName": "image,video", - "ChangeType": "Addition", - "Description": "Added **image** and **video** properties on the [remoteItem](https://learn.microsoft.com/en-us/graph/api/resources/remoteitem?view=graph-rest-1.0) resource. These properties allow you to retrieve media type thumbnails when combined with an expand function.", - "Target": "remoteItem" - }, - { - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "ApiChange": "Resource", - "ChangedApiName": "grant", - "ChangeType": "Addition", - "Description": "Added the **grant** action to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) entity.", - "Target": "permission" - }, - { - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "ApiChange": "Property", - "ChangedApiName": "following", - "ChangeType": "Addition", - "Description": "Added the **following** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0) entity.", - "Target": "drive" - }, - { - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "ApiChange": "Resource", - "ChangedApiName": "follow,driveItem", - "ChangeType": "Addition", - "Description": "Added the [follow](https://learn.microsoft.com/en-us/graph/api/driveitem-follow?view=graph-rest-1.0) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0).", - "Target": "follow,driveItem" - }, - { - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "ApiChange": "Resource", - "ChangedApiName": "unfollow,driveItem", - "ChangeType": "Addition", - "Description": "Added the [unfollow](https://learn.microsoft.com/en-us/graph/api/driveitem-unfollow?view=graph-rest-1.0) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0).", - "Target": "unfollow,driveItem" - } - ], - "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2020-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", - "ApiChange": "Resource", - "ChangedApiName": "pendingOperations", - "ChangeType": "Addition", - "Description": "Added the [pendingOperations](https://learn.microsoft.com/en-us/graph/api/resources/pendingOperations?view=graph-rest-beta) and [pendingContentUpdate](https://learn.microsoft.com/en-us/graph/api/resources/pendingContentUpdate?view=graph-rest-beta) resources. The **pendingOperations** resource applies to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "pendingOperations,pendingContentUpdate,driveItem" - }, - { - "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", - "ApiChange": "Resource", - "ChangedApiName": "restore,driveItem", - "ChangeType": "Addition", - "Description": "Added the [restore](https://learn.microsoft.com/en-us/graph/api/driveitem-restore?view=graph-rest-beta) action to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "restore,driveItem" - }, - { - "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", - "ApiChange": "Property", - "ChangedApiName": "orientation", - "ChangeType": "Addition", - "Description": "Added the **orientation** property to the [photo](https://learn.microsoft.com/en-us/graph/api/resources/photo?view=graph-rest-beta) resource.", - "Target": "photo" - }, - { - "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", - "ApiChange": "Property", - "ChangedApiName": "sha256Hash", - "ChangeType": "Addition", - "Description": "Added the **sha256Hash** property to the [hashes](https://learn.microsoft.com/en-us/graph/api/resources/hashes?view=graph-rest-beta) resource.", - "Target": "hashes" - } - ], - "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "0be72988-c58c-46e3-9037-30c09055afb0", - "ApiChange": "Resource", - "ChangedApiName": "unfollow,driveItem", - "ChangeType": "Addition", - "Description": "Added the [unfollow](https://learn.microsoft.com/en-us/graph/api/driveitem-unfollow?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", - "Target": "unfollow,driveItem" - } - ], - "Id": "0be72988-c58c-46e3-9037-30c09055afb0", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-08-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "b1301589-b835-4f01-8681-09d1a5b37f77", - "ApiChange": "Property", - "ChangedApiName": "expirationDatetime,password", - "ChangeType": "Addition", - "Description": "Added the **expirationDatetime** and **password** properties to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action.", - "Target": "createLink" - } - ], - "Id": "b1301589-b835-4f01-8681-09d1a5b37f77", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-07-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "ApiChange": "Resource", - "ChangedApiName": "bundle", - "ChangeType": "Addition", - "Description": "Added the [bundle](https://learn.microsoft.com/en-us/graph/api/resources/bundle?view=graph-rest-beta) complex type", - "Target": "bundle" - }, - { - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "ApiChange": "Resource", - "ChangedApiName": "album", - "ChangeType": "Addition", - "Description": "Added the [album](https://learn.microsoft.com/en-us/graph/api/resources/album?view=graph-rest-beta) complex type", - "Target": "album" - }, - { - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "ApiChange": "Property", - "ChangedApiName": "bundles", - "ChangeType": "Addition", - "Description": "Added the **bundles** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-beta) entity", - "Target": "drive" - }, - { - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "ApiChange": "Property", - "ChangedApiName": "bundle", - "ChangeType": "Addition", - "Description": "Added the **bundle** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", - "Target": "driveItem" - }, - { - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "ApiChange": "Resource", - "ChangedApiName": "grant", - "ChangeType": "Addition", - "Description": "Added the **grant** action to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) entity", - "Target": "permission" - } - ], - "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-05-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "48b547db-b370-4514-974e-d499d2b9e763", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime** property to the driveItem_invite DateTimeOffset type.", - "Target": "driveItem_invite" - }, - { - "Id": "48b547db-b370-4514-974e-d499d2b9e763", - "ApiChange": "Property", - "ChangedApiName": "password", - "ChangeType": "Addition", - "Description": "Added the **password** property to the driveItem_invite string type.", - "Target": "driveItem_invite" - } - ], - "Id": "48b547db-b370-4514-974e-d499d2b9e763", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "48b547db-b370-4514-974e-d499d2b9e763", - "ApiChange": "Property", - "ChangedApiName": "subscriptions", - "ChangeType": "Addition", - "Description": "Added the **subscriptions** navigation property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) entity", - "Target": "driveItem" - } - ], - "Id": "48b547db-b370-4514-974e-d499d2b9e763", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2019-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime** property to the driveItem_invite DateTimeOffset type.", - "Target": "driveItem_invite" - }, - { - "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", - "ApiChange": "Property", - "ChangedApiName": "password", - "ChangeType": "Addition", - "Description": "Added the **password** property to the driveItem_invite string type.", - "Target": "driveItem_invite" - } - ], - "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2019-02-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "deferCommit", - "ChangeType": "Addition", - "Description": "Added the **deferCommit** argument to the [createUploadSession](https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", - "Target": "createUploadSession,driveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "storagePlanInformation", - "ChangeType": "Addition", - "Description": "Added the [storagePlanInformation](https://learn.microsoft.com/en-us/graph/api/resources/storageplaninformation?view=graph-rest-beta) complex type", - "Target": "storagePlanInformation" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "storagePlanInformation", - "ChangeType": "Addition", - "Description": "Added the **storagePlanInformation** property to the [quota](https://learn.microsoft.com/en-us/graph/api/resources/quota?view=graph-rest-beta) complex type", - "Target": "quota" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "following", - "ChangeType": "Addition", - "Description": "Added the **following** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-beta) entity", - "Target": "drive" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "follow,driveItem", - "ChangeType": "Addition", - "Description": "Added the [follow](https://learn.microsoft.com/en-us/graph/api/driveitem-follow?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", - "Target": "follow,driveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "hasPassword", - "ChangeType": "Addition", - "Description": "Added the **hasPassword** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) entity", - "Target": "permission" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "preventsDownload", - "ChangeType": "Addition", - "Description": "Added the **preventsDownload** property to the [sharingLink](https://learn.microsoft.com/en-us/graph/api/resources/sharinglink?view=graph-rest-beta) complex type", - "Target": "sharingLink" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "permission", - "ChangeType": "Addition", - "Description": "Added the **permission** navigation property to the [sharedDriveItem](https://learn.microsoft.com/en-us/graph/api/resources/shareddriveitem?view=graph-rest-beta) entity", - "Target": "sharedDriveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "geolocation", - "ChangeType": "Addition", - "Description": "Added the **geolocation** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-beta) entity", - "Target": "columnDefinition" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "geolocationColumn", - "ChangeType": "Addition", - "Description": "Added the [geolocationColumn](https://learn.microsoft.com/en-us/graph/api/resources/geolocationcolumn?view=graph-rest-beta) complex type", - "Target": "geolocationColumn" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "analytics", - "ChangeType": "Addition", - "Description": "Added the **analytics** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", - "Target": "driveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "analytics", - "ChangeType": "Addition", - "Description": "Added the **analytics** property to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) entity", - "Target": "site" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "analytics", - "ChangeType": "Addition", - "Description": "Added the **analytics** property to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) entity", - "Target": "listItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "getActivitiesByInterval", - "ChangeType": "Addition", - "Description": "Added the **getActivitiesByInterval** function on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", - "Target": "driveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "getActivitiesByInterval", - "ChangeType": "Addition", - "Description": "Added the **getActivitiesByInterval** function on the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) entity", - "Target": "site" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "getActivitiesByInterval", - "ChangeType": "Addition", - "Description": "Added the **getActivitiesByInterval** function on the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) entity", - "Target": "listItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "itemAnalytics", - "ChangeType": "Addition", - "Description": "Added the [itemAnalytics](https://learn.microsoft.com/en-us/graph/api/resources/itemanalytics?view=graph-rest-beta) entity", - "Target": "itemAnalytics" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "itemActivityStat", - "ChangeType": "Addition", - "Description": "Added the [itemActivityStat](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) entity", - "Target": "itemActivityStat" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "itemActionStat", - "ChangeType": "Addition", - "Description": "Added the [itemActionStat](https://learn.microsoft.com/en-us/graph/api/resources/itemactionstat?view=graph-rest-beta) complex type", - "Target": "itemActionStat" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "accessAction", - "ChangeType": "Addition", - "Description": "Added the [accessAction](https://learn.microsoft.com/en-us/graph/api/resources/accessaction?view=graph-rest-beta) complex type", - "Target": "accessAction" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "incompleteData", - "ChangeType": "Addition", - "Description": "Added the [incompleteData](https://learn.microsoft.com/en-us/graph/api/resources/incompletedata?view=graph-rest-beta) complex type", - "Target": "incompleteData" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "access", - "ChangeType": "Addition", - "Description": "Added the **access** property to the [itemActivity](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) complex type", - "Target": "itemActivity" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Property", - "ChangedApiName": "location", - "ChangeType": "Addition", - "Description": "Added the **location** property to the [itemActivity](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) complex type", - "Target": "itemActivity" - } - ], - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2018-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "preview", - "ChangeType": "Addition", - "Description": "Added the **preview** action on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", - "Target": "driveItem" - }, - { - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "ApiChange": "Resource", - "ChangedApiName": "itemPreviewInfo", - "ChangeType": "Addition", - "Description": "Added the [itemPreviewInfo](https://learn.microsoft.com/en-us/graph/api/resources/itempreviewinfo?view=graph-rest-1.0) complex type", - "Target": "itemPreviewInfo" - } - ], - "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2018-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "itemPreviewInfo", - "ChangeType": "Addition", - "Description": "Added new complex type: [itemPreviewInfo](https://learn.microsoft.com/en-us/graph/api/resources/itempreviewinfo?view=graph-rest-beta), ", - "Target": "itemPreviewInfo" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "contentTypeInfo", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003Ename\u003C/b\u003E property to the [contentTypeInfo](https://learn.microsoft.com/en-us/graph/api/resources/contenttypeinfo?view=graph-rest-beta) complex type", - "Target": "contentTypeInfo" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "deleteAction", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003EobjectType\u003C/b\u003E property to the [deleteAction](https://learn.microsoft.com/en-us/graph/api/resources/deleteaction?view=graph-rest-beta) complex type", - "Target": "deleteAction" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "renameAction", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003EnewName\u003C/b\u003E property to the [renameAction](https://learn.microsoft.com/en-us/graph/api/resources/renameaction?view=graph-rest-beta) complex type", - "Target": "renameAction" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "sharepointIds", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003EtenantId\u003C/b\u003E property to the [sharepointIds](https://learn.microsoft.com/en-us/graph/api/resources/renameaction?view=graph-rest-beta) complex type", - "Target": "sharepointIds" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "itemActivityTimeSet", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003ElastRecordedDateTime\u003C/b\u003E property to the [itemActivityTimeSet](https://learn.microsoft.com/en-us/graph/api/resources/itemactivitytimeset?view=graph-rest-beta) complex type", - "Target": "itemActivityTimeSet" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "preview,driveItem", - "ChangeType": "Addition", - "Description": "Added the [preview](https://learn.microsoft.com/en-us/graph/api/driveitem-preview?view=graph-rest-beta) action for the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", - "Target": "preview,driveItem" - } - ], - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2018-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "baseItemVersion,driveItemVersion,listItemVersion", - "ChangeType": "Addition", - "Description": "Added new entities: [baseItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/baseitemversion?view=graph-rest-1.0), [driveItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/driveitemversion?view=graph-rest-1.0), [listItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/listitemversion?view=graph-rest-1.0), ", - "Target": "baseItemVersion,driveItemVersion,listItemVersion" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "publicationFacet", - "ChangeType": "Addition", - "Description": "Added new complex types: [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationfacet?view=graph-rest-1.0), ", - "Target": "publicationFacet" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "driveItem", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003Epublication\u003C/b\u003E property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", - "Target": "driveItem" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "driveItem", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003Eversions\u003C/b\u003E navigation property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", - "Target": "driveItem" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "listItem", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003Eversions\u003C/b\u003E navigation property to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-1.0) entity", - "Target": "listItem" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Property", - "ChangedApiName": "siteCollection", - "ChangeType": "Addition", - "Description": "Added the \u003Cb\u003Eroot\u003C/b\u003E property to the [siteCollection](https://learn.microsoft.com/en-us/graph/api/resources/sitecollection?view=graph-rest-1.0) entity", - "Target": "siteCollection" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "restoreVersion,driveItemVersion", - "ChangeType": "Addition", - "Description": "Added the [restoreVersion](https://learn.microsoft.com/en-us/graph/api/driveitemversion-restore?view=graph-rest-1.0) action for the [driveItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/driveitemversion?view=graph-rest-1.0) entity", - "Target": "restoreVersion,driveItemVersion" - }, - { - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "ApiChange": "Resource", - "ChangedApiName": "restoreVersion,listItemVersion", - "ChangeType": "Addition", - "Description": "Added the [restoreVersion](https://learn.microsoft.com/en-us/graph/api/listitemversion-restore?view=graph-rest-1.0) action for the [listItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/listitemversion?view=graph-rest-1.0) entity", - "Target": "restoreVersion,listItemVersion" - } - ], - "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2018-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "system", - "ChangeType": "Addition", - "Description": "Added the **system** property to the [Drive][Drive-beta] resource.", - "Target": "Drive,Drive-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "activities", - "ChangeType": "Addition", - "Description": "Added the **activities** relationship to the [Drive][Drive-beta] resource.", - "Target": "Drive,Drive-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "publication", - "ChangeType": "Addition", - "Description": "Added the **publication** property to the [DriveItem][DriveItem-beta] resource.", - "Target": "DriveItem,DriveItem-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "activities,versions", - "ChangeType": "Addition", - "Description": "Added the **activities** and **versions** relationships to the [DriveItem][DriveItem-beta] resource.", - "Target": "DriveItem,DriveItem-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "DriveItemVersion,DriveItemVersion-beta,ItemActivity,ItemActivity-beta", - "ChangeType": "Addition", - "Description": "Added new entities: [DriveItemVersion][DriveItemVersion-beta], [ItemActivity][ItemActivity-beta].", - "Target": "DriveItemVersion,DriveItemVersion-beta,ItemActivity,ItemActivity-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "CommentAction,CommentAction-beta,CreateAction,CreateAction-beta,DeleteAction,DeleteAction-beta,EditAction,EditAction-beta,ItemActionSet,ItemActionSet-beta,ItemActivityTimeSet,ItemActivityTimeSet-beta,MentionAction,MentionAction-beta,MoveAction,MoveAction-beta,PublicationFacet,PublicationFacet-beta,RenameAction,RenameAction-beta,RestoreAction,RestoreAction-beta,ShareAction,ShareAction-beta,VersionAction,VersionAction-beta", - "ChangeType": "Addition", - "Description": "Added new complex types: [CommentAction][CommentAction-beta], [CreateAction][CreateAction-beta], [DeleteAction][DeleteAction-beta], [EditAction][EditAction-beta], [ItemActionSet][ItemActionSet-beta], [ItemActivityTimeSet][ItemActivityTimeSet-beta], [MentionAction][MentionAction-beta], [MoveAction][MoveAction-beta], [PublicationFacet][PublicationFacet-beta], [RenameAction][RenameAction-beta], [RestoreAction][RestoreAction-beta], [ShareAction][ShareAction-beta], and [VersionAction][VersionAction-beta].", - "Target": "CommentAction,CommentAction-beta,CreateAction,CreateAction-beta,DeleteAction,DeleteAction-beta,EditAction,EditAction-beta,ItemActionSet,ItemActionSet-beta,ItemActivityTimeSet,ItemActivityTimeSet-beta,MentionAction,MentionAction-beta,MoveAction,MoveAction-beta,PublicationFacet,PublicationFacet-beta,RenameAction,RenameAction-beta,RestoreAction,RestoreAction-beta,ShareAction,ShareAction-beta,VersionAction,VersionAction-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "driveType", - "ChangeType": "Addition", - "Description": "Added the **driveType** property to the [ItemReference][ItemReference-beta] complex type.", - "Target": "ItemReference,ItemReference-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "tenantId", - "ChangeType": "Deletion", - "Description": "Removed the **tenantId** property from [SharepointIds][SharepointIds-beta] complex type.", - "Target": "SharepointIds,SharepointIds-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "CheckIn,CheckIn-beta,CheckOut,CheckOut-beta,DriveItem,DriveItem-beta", - "ChangeType": "Addition", - "Description": "Added the [CheckIn][CheckIn-beta] and [CheckOut][CheckOut-beta] actions on the [DriveItem][DriveItem-beta] resource.", - "Target": "CheckIn,CheckIn-beta,CheckOut,CheckOut-beta,DriveItem,DriveItem-beta" - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "expirationDateTime,password,message,recipients", - "ChangeType": "Addition", - "Description": "Added the **expirationDateTime**, **password**, **message**, and **recipients** properties on the [CreateLink][CreateLink-beta] action on a [DriveItem][DriveItem-beta] resource.", - "Target": "CreateLink,CreateLink-beta,DriveItem,DriveItem-beta" - } - ], - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2017-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "system", - "ChangeType": "Addition", - "Description": "Added the **system** property to the [Drive][] resource.", - "Target": "Drive," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "list", - "ChangeType": "Addition", - "Description": "Added the **list** relationship to the [Drive][] resource.", - "Target": "Drive," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "listItem", - "ChangeType": "Addition", - "Description": "Added the **listItem** relationship to the [DriveItem][] resource.", - "Target": "DriveItem," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "list,listItem", - "ChangeType": "Addition", - "Description": "Added the **list** and **listItem** relationships to the [SharedDriveItem][] resource.", - "Target": "SharedDriveItem," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Resource", - "ChangedApiName": "FolderView,", - "ChangeType": "Addition", - "Description": "Added new complex types: [FolderView][]", - "Target": "FolderView," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "view", - "ChangeType": "Addition", - "Description": "Added the **view** property to the [Folder][] complex type.", - "Target": "Folder," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "driveType", - "ChangeType": "Addition", - "Description": "Added the **driveType** property to the [ItemReference][] complex type.", - "Target": "ItemReference," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "audioBitsPerSample,audioChannels,audioFormat,audioSamplesPerSecond,fourCC,frameRate", - "ChangeType": "Addition", - "Description": "Added the **audioBitsPerSample**, **audioChannels**, **audioFormat**, **audioSamplesPerSecond**, **fourCC** and **frameRate** properties to the [Video][] complex type.", - "Target": "Video," - }, - { - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "ApiChange": "Property", - "ChangedApiName": "audioBitsPerSample,audioChannels,audioFormat,audioSamplesPerSecond,fourCC,frameRate", - "ChangeType": "Addition", - "Description": "Added the **audioBitsPerSample**, **audioChannels**, **audioFormat**, **audioSamplesPerSecond**, **fourCC** and **frameRate** properties to the [Video][Video-beta] complex type.", - "Target": "Video,Video-beta" - } - ], - "Id": "b3d225d5-c098-440d-b732-31466745c40f", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2017-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "ApiChange": "Property", - "ChangedApiName": "configuratorUrl,webHtml,sharingLink,folderView,view,folder,listItem,driveItem,list,drive", - "ChangeType": "Change", - "Description": "Added the **configuratorUrl** and **webHtml** properties to **sharingLink**. Added the **folderView** resource type and the **view** property to the **folder** resource type. Added the **listItem** navigation property to **driveItem**. Added the **list** navigation property to **drive**.", - "Target": "" - } - ], - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2017-05-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "ApiChange": "Property", - "ChangedApiName": "baseItem,driveItem", - "ChangeType": "Addition", - "Description": "Added the **baseItem** resource type, consisting of basic properties from **driveItem**.", - "Target": "" - }, - { - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "ApiChange": "Property", - "ChangedApiName": "sourceItemId,thumbnail,siteUrl,sharepointIds,sharedBy,sharedDateTime,shared,shared,remoteItem,sharepointIds,drive,itemReference,lastAccessedDateTime,fileSystemInfo,driveItem,site,sharedDriveItem,parentReference,baseItem", - "ChangeType": "Addition", - "Description": "Added the **sourceItemId** property to **thumbnail**. Added the **siteUrl** property to **sharepointIds**. Added the **sharedBy** and **sharedDateTime** properties to **shared**. Added the **shared** property to **remoteItem**. Added the **sharepointIds** property to **drive** and **itemReference**. Added **lastAccessedDateTime** to **fileSystemInfo**. Added the **driveItem** and **site** navigation properties to **sharedDriveItem**. Added the **parentReference** property to **baseItem**.", - "Target": "" - }, - { - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "ApiChange": "Resource", - "ChangedApiName": "driveItem,sharedDriveItem,baseItem,identity", - "ChangeType": "Change", - "Description": "Changed **driveItem** and **sharedDriveItem** to inherit from **baseItem**. Marked **identity** as an Open Type.", - "Target": "" - } - ], - "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2017-05-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _shared_ collection to allow accessing shared driveItems by shareId or sharing URL.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _search_ function to a drive, which allows searching for more items than just those in the drive\u0027s root folder.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added support for _createUploadSession_, which allows uploading files larger than 4 MB to OneDrive, OneDrive for Business, and SharePoint document libraries.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Property", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _sharepointIds_ property to driveItem that returns traditional SharePoint API identifiers for driveItems stored in SharePoint.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Property", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added additional properties on _remoteItem_.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added the _quickXorHash_ value for files in OneDrive for Business.", - "Target": "" - }, - { - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added scope to the _createSharingLink_ to allow creating company sharable links or anonymous sharing links.", - "Target": "" - } - ], - "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2016-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "method", - "ChangedApiName": "CreateUploadSession,driveItem", - "ChangeType": "Addition", - "Description": "Added **CreateUploadSession** method on **driveItem**, which allows large file and resumable uploads.", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "Property", - "ChangedApiName": "sharepointIds,root", - "ChangeType": "Addition", - "Description": "Added properties for tracking SharePoint IDs on items from SharePoint (**sharepointIds**) and a property to identify root folders (**root**).", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "Resource", - "ChangedApiName": "Shares", - "ChangeType": "Addition", - "Description": "Added **Shares** root collection, which can be used with shareIds or sharing links to access shared items in OneDrive and SharePoint. Returns a new type, sharedDriveItem.", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "method", - "ChangedApiName": "Invite", - "ChangeType": "Addition", - "Description": "Added **Invite** method on driveItem, which allows adding permissions to items.", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "method", - "ChangedApiName": "Search", - "ChangeType": "Addition", - "Description": "Added **Search** method on drive, which allows searching across items in the drive and shared items.", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "Property", - "ChangedApiName": "processingMetadata", - "ChangeType": "Addition", - "Description": "Added **processingMetadata** property on file complex type quickXorHash property on hashes complex type.", - "Target": "" - }, - { - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "ApiChange": "Property", - "ChangedApiName": "quickXorHash", - "ChangeType": "Addition", - "Description": "Added **quickXorHash** property on hashes complex type.", - "Target": "" - } - ], - "Id": "148856d2-071a-4251-b504-cd60ad274362", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2016-09-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _invite_ function to send a sharing invitation to an existing item. A sharing invitation creates a unique sharing link and sends an email to the recipient of the invitation that includes the sharing link. Example: POST /drive/items/{item-id}/invite.", - "Target": "" - } - ], - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2016-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _recent_ function to list a set of items that have been recently used by the signed in user. This list includes items that are in the user\u0027s drive as well as items they have access tofrom other drives. Example: GET /me/drive/recent.", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _sharedWithMe_ function to list the set of items that are shared with the current user. Example: GET /me/drive/sharedWithMe.", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _remoteItem_ type to provide a link to an item in another drive.", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _sharingInvitation_ type to provide details of any associated sharing invitation for this permission.", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _delta_ function to track changes to items in a drive. Example: GET /me/drive/items/{item-id}/delta", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "Added _copy_ that creates a copy of a _driveItem_ (including any children), under a new parent or with a new name. Example: POST /me/drive/items/{item-id}/copy.", - "Target": "" - }, - { - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "ApiChange": "Resource", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "_conflictBehavior_ instance attributes is now applicable to _driveItem_.", - "Target": "" - } - ], - "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2016-03-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "1f372c0d-a54b-4d8c-a99d-5a8fe1829dfa", - "ApiChange": "Property", - "ChangedApiName": "", - "ChangeType": "Addition", - "Description": "New _remoteItem_ property on driveItem for Microsoft accounts.", - "Target": "" - } - ], - "Id": "1f372c0d-a54b-4d8c-a99d-5a8fe1829dfa", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2016-02-01T00:00:00", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "3b921ce4-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "validation", - "ChangeType": "Addition", - "Description": "Added the **validation** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3b947f84-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "contentApprovalStatus", - "ChangeType": "Addition", - "Description": "Added the **contentApprovalStatus** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3b96e0ff-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "hyperlinkOrPicture", - "ChangeType": "Addition", - "Description": "Added the **hyperlinkOrPicture** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3b9943d2-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "isDeletable", - "ChangeType": "Addition", - "Description": "Added the **isDeletable** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3b9ba4e5-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "isReorderable", - "ChangeType": "Addition", - "Description": "Added the **isReorderable** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3b9e08b8-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "isSealed", - "ChangeType": "Addition", - "Description": "Added the **isSealed** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3ba06d0a-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "propagateChanges", - "ChangeType": "Addition", - "Description": "Added the **propagateChanges** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3ba2ce53-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "term", - "ChangeType": "Addition", - "Description": "Added the **term** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3ba52efc-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "thumbnail", - "ChangeType": "Addition", - "Description": "Added the **thumbnail** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3ba79387-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "type", - "ChangeType": "Addition", - "Description": "Added the **type** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3ba9f3c8-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "sourceColumn", - "ChangeType": "Addition", - "Description": "Added the **sourceColumn** relationship to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", - "Target": "columnDefinition" - }, - { - "Id": "3bac5752-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "associatedHubsUrls", - "ChangeType": "Addition", - "Description": "Added the **associatedHubsUrls** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3baeba51-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "documentSet", - "ChangeType": "Addition", - "Description": "Added the **documentSet** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bb11bbd-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "documentTemplate", - "ChangeType": "Addition", - "Description": "Added the **documentTemplate** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bb37e68-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "isBuiltIn", - "ChangeType": "Addition", - "Description": "Added the **isBuiltIn** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bb5e085-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Property", - "ChangedApiName": "propagateChanges", - "ChangeType": "Addition", - "Description": "Added the **propagateChanges** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bb844a3-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "base", - "ChangeType": "Addition", - "Description": "Added the **base** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bbaa58e-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "baseTypes", - "ChangeType": "Addition", - "Description": "Added the **baseTypes** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bbd0822-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "columnPositions", - "ChangeType": "Addition", - "Description": "Added the **columnPositions** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bbf6ac4-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "columns", - "ChangeType": "Addition", - "Description": "Added the **columns** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bc1cb23-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Relationship", - "ChangedApiName": "externalColumns", - "ChangeType": "Addition", - "Description": "Added the **externalColumns** relationship to [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource", - "Target": "site" - }, - { - "Id": "3bc42f02-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "columnValidation", - "ChangeType": "Addition", - "Description": "Added the [columnValidation](https://learn.microsoft.com/en-us/graph/api/resources/columnValidation?view=graph-rest-beta) resource type", - "Target": "columnValidation" - }, - { - "Id": "3bc690a5-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "contentApprovalStatusColumn", - "ChangeType": "Addition", - "Description": "Added the [contentApprovalStatusColumn](https://learn.microsoft.com/en-us/graph/api/resources/contentApprovalStatusColumn?view=graph-rest-beta) resource type", - "Target": "contentApprovalStatusColumn" - }, - { - "Id": "3bc8f384-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "displayNameLocalization", - "ChangeType": "Addition", - "Description": "Added the [displayNameLocalization](https://learn.microsoft.com/en-us/graph/api/resources/displayNameLocalization?view=graph-rest-beta) resource type", - "Target": "displayNameLocalization" - }, - { - "Id": "3bcb5608-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "documentSet", - "ChangeType": "Addition", - "Description": "Added the [documentSet](https://learn.microsoft.com/en-us/graph/api/resources/documentSet?view=graph-rest-beta) resource type", - "Target": "documentSet" - }, - { - "Id": "3bcdb7c2-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "documentSetContent", - "ChangeType": "Addition", - "Description": "Added the [documentSetContent](https://learn.microsoft.com/en-us/graph/api/resources/documentSetContent?view=graph-rest-beta) resource type", - "Target": "documentSetContent" - }, - { - "Id": "3bd01a73-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "hyperlinkOrPictureColumn", - "ChangeType": "Addition", - "Description": "Added the [hyperlinkOrPictureColumn](https://learn.microsoft.com/en-us/graph/api/resources/hyperlinkOrPictureColumn?view=graph-rest-beta) resource type", - "Target": "hyperlinkOrPictureColumn" - }, - { - "Id": "3bd27d21-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "termColumn", - "ChangeType": "Addition", - "Description": "Added the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource type", - "Target": "termColumn" - }, - { - "Id": "3bd4dfb4-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Resource", - "ChangedApiName": "thumbnailColumn", - "ChangeType": "Addition", - "Description": "Added the [thumbnailColumn](https://learn.microsoft.com/en-us/graph/api/resources/thumbnailColumn?view=graph-rest-beta) resource type", - "Target": "thumbnailColumn" - }, - { - "Id": "3bd74177-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Enum type", - "ChangedApiName": "columnTypes", - "ChangeType": "Addition", - "Description": "Added the **columnTypes** enumeration type", - "Target": "columnTypes" - }, - { - "Id": "3bd9a452-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "addCopy", - "ChangeType": "Addition", - "Description": "Added the [addCopy](https://learn.microsoft.com/en-us/graph/api/contentType-addCopy?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bdc0649-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "associateWithHubSites", - "ChangeType": "Addition", - "Description": "Added the [associateWithHubSites](https://learn.microsoft.com/en-us/graph/api/contentType-associateWithHubSites?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3bde6804-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "copyToDefaultContentLocation", - "ChangeType": "Addition", - "Description": "Added the [copyToDefaultContentLocation](https://learn.microsoft.com/en-us/graph/api/contentType-copyToDefaultContentLocation?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3be0c9bf-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "publish", - "ChangeType": "Addition", - "Description": "Added the [publish](https://learn.microsoft.com/en-us/graph/api/contentType-publish?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3be32e41-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "unpublish", - "ChangeType": "Addition", - "Description": "Added the [unpublish](https://learn.microsoft.com/en-us/graph/api/contentType-unpublish?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - }, - { - "Id": "3be58f88-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "getApplicableContentTypesForList", - "ChangeType": "Addition", - "Description": "Added the [getApplicableContentTypesForList](https://learn.microsoft.com/en-us/graph/api/site-getApplicableContentTypesForList?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource", - "Target": "site" - }, - { - "Id": "3be7f374-6b7c-11eb-83a5-b441f1c9dab3", - "ApiChange": "Method", - "ChangedApiName": "isPublished", - "ChangeType": "Addition", - "Description": "Added the [isPublished](https://learn.microsoft.com/en-us/graph/api/contentType-isPublished?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", - "Target": "contentType" - } - ], - "Id": "3b8fbbdf-6b7c-11eb-83a5-b441f1c9dab3", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-03-03T08:44:48.432Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "7a7d0aa0-8196-11eb-9fc2-269673f51d94", - "ApiChange": "Method", - "ChangedApiName": "associateWithHubSites", - "ChangeType": "Change", - "Description": "Changed the return type for the [associateWithHubSites](https://learn.microsoft.com/en-us/graph/api/contentType-associateWithHubSites?view=graph-rest-beta) method.", - "Target": "associateWithHubSites" - }, - { - "Id": "7a7f6ce8-8196-11eb-9fc2-269673f51d94", - "ApiChange": "Method", - "ChangedApiName": "copyToDefaultContentLocation", - "ChangeType": "Change", - "Description": "Changed the return type for the [copyToDefaultContentLocation](https://learn.microsoft.com/en-us/graph/api/contentType-copyToDefaultContentLocation?view=graph-rest-beta) method.", - "Target": "copyToDefaultContentLocation" - }, - { - "Id": "7a81cfec-8196-11eb-9fc2-269673f51d94", - "ApiChange": "Method", - "ChangedApiName": "publish", - "ChangeType": "Change", - "Description": "Changed the return type for the [publish](https://learn.microsoft.com/en-us/graph/api/contentType-publish?view=graph-rest-beta) method.", - "Target": "publish" - }, - { - "Id": "7a8433f7-8196-11eb-9fc2-269673f51d94", - "ApiChange": "Method", - "ChangedApiName": "unpublish", - "ChangeType": "Change", - "Description": "Changed the return type for the [unpublish](https://learn.microsoft.com/en-us/graph/api/contentType-unpublish?view=graph-rest-beta) method.", - "Target": "unpublish" - } - ], - "Id": "7a7aa807-8196-11eb-9fc2-269673f51d94", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-03-10T11:48:06.486Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "EnumType", - "ChangedApiName": "columnTypes", - "ChangeType": "Addition", - "Description": "Added the **columnTypes** enumeration type.", - "Target": "columnTypes" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "columnValidation", - "ChangeType": "Addition", - "Description": "Added the [columnValidation](https://learn.microsoft.com/en-us/graph/api/resources/columnValidation?view=graph-rest-1.0) resource type.", - "Target": "columnValidation" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "contentApprovalStatusColumn", - "ChangeType": "Addition", - "Description": "Added the [contentApprovalStatusColumn](https://learn.microsoft.com/en-us/graph/api/resources/contentApprovalStatusColumn?view=graph-rest-1.0) resource type.", - "Target": "contentApprovalStatusColumn" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "displayNameLocalization", - "ChangeType": "Addition", - "Description": "Added the [displayNameLocalization](https://learn.microsoft.com/en-us/graph/api/resources/displayNameLocalization?view=graph-rest-1.0) resource type.", - "Target": "displayNameLocalization" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "documentSet", - "ChangeType": "Addition", - "Description": "Added the [documentSet](https://learn.microsoft.com/en-us/graph/api/resources/documentSet?view=graph-rest-1.0) resource type.", - "Target": "documentSet" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "documentSetContent", - "ChangeType": "Addition", - "Description": "Added the [documentSetContent](https://learn.microsoft.com/en-us/graph/api/resources/documentSetContent?view=graph-rest-1.0) resource type.", - "Target": "documentSetContent" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "hyperlinkOrPictureColumn", - "ChangeType": "Addition", - "Description": "Added the [hyperlinkOrPictureColumn](https://learn.microsoft.com/en-us/graph/api/resources/hyperlinkOrPictureColumn?view=graph-rest-1.0) resource type.", - "Target": "hyperlinkOrPictureColumn" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "termColumn", - "ChangeType": "Addition", - "Description": "Added the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-1.0) resource type.", - "Target": "termColumn" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Resource", - "ChangedApiName": "thumbnailColumn", - "ChangeType": "Addition", - "Description": "Added the [thumbnailColumn](https://learn.microsoft.com/en-us/graph/api/resources/thumbnailColumn?view=graph-rest-1.0) resource type.", - "Target": "thumbnailColumn" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "contentApprovalStatus", - "ChangeType": "Addition", - "Description": "Added the **contentApprovalStatus** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "hyperlinkOrPicture", - "ChangeType": "Addition", - "Description": "Added the **hyperlinkOrPicture** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "isDeletable", - "ChangeType": "Addition", - "Description": "Added the **isDeletable** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "isReorderable", - "ChangeType": "Addition", - "Description": "Added the **isReorderable** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "isSealed", - "ChangeType": "Addition", - "Description": "Added the **isSealed** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "propagateChanges", - "ChangeType": "Addition", - "Description": "Added the **propagateChanges** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "term", - "ChangeType": "Addition", - "Description": "Added the **term** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "thumbnail", - "ChangeType": "Addition", - "Description": "Added the **thumbnail** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "type", - "ChangeType": "Addition", - "Description": "Added the **type** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "validation", - "ChangeType": "Addition", - "Description": "Added the **validation** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "sourceColumn", - "ChangeType": "Addition", - "Description": "Added the **sourceColumn** relationship to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", - "Target": "columnDefinition" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "associatedHubsUrls", - "ChangeType": "Addition", - "Description": "Added the **associatedHubsUrls** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "documentSet", - "ChangeType": "Addition", - "Description": "Added the **documentSet** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "documentTemplate", - "ChangeType": "Addition", - "Description": "Added the **documentTemplate** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "isBuiltIn", - "ChangeType": "Addition", - "Description": "Added the **isBuiltIn** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Property", - "ChangedApiName": "propagateChanges", - "ChangeType": "Addition", - "Description": "Added the **propagateChanges** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "base", - "ChangeType": "Addition", - "Description": "Added the **base** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "baseTypes", - "ChangeType": "Addition", - "Description": "Added the **baseTypes** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "columnPositions", - "ChangeType": "Addition", - "Description": "Added the **columnPositions** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "columns", - "ChangeType": "Addition", - "Description": "Added the **columns** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", - "Target": "contentType" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Relationship", - "ChangedApiName": "externalColumns", - "ChangeType": "Addition", - "Description": "Added the **externalColumns** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", - "Target": "site" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "addCopy", - "ChangeType": "Addition", - "Description": "Added the addCopy method to the addCopy resource.", - "Target": "addCopy" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "associateWithHubSites", - "ChangeType": "Addition", - "Description": "Added the associateWithHubSites method to the associateWithHubSites resource.", - "Target": "associateWithHubSites" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "copyToDefaultContentLocation", - "ChangeType": "Addition", - "Description": "Added the copyToDefaultContentLocation method to the copyToDefaultContentLocation resource.", - "Target": "copyToDefaultContentLocation" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "publish", - "ChangeType": "Addition", - "Description": "Added the publish method to the publish resource.", - "Target": "publish" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "unpublish", - "ChangeType": "Addition", - "Description": "Added the unpublish method to the unpublish resource.", - "Target": "unpublish" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "getApplicableContentTypesForList", - "ChangeType": "Addition", - "Description": "Added the getApplicableContentTypesForList method to the getApplicableContentTypesForList resource.", - "Target": "getApplicableContentTypesForList" - }, - { - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "ApiChange": "Method", - "ChangedApiName": "isPublished", - "ChangeType": "Addition", - "Description": "Added the isPublished method to the isPublished resource.", - "Target": "isPublished" - } - ], - "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2021-08-12T04:06:46.3068795Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "27ef62cb-2b26-486e-8c74-fd0ce1e92403", - "ApiChange": "Resource", - "ChangedApiName": "subscription", - "ChangeType": "change", - "Description": "Updated the OneDrive and SharePoint maximum subscription expiration length to 30 days.", - "Target": "subscription" - } - ], - "Id": "27ef62cb-2b26-486e-8c74-fd0ce1e92403", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-06-08T19:00:00.000Z", - "WorkloadArea": "Change notifications", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "c0ff6217-2cfb-47d3-ba44-b31b9f03b234", - "ApiChange": "Resource", - "ChangedApiName": "subscription", - "ChangeType": "change", - "Description": "Updated the OneDrive and SharePoint maximum subscription expiration length to 30 days.", - "Target": "subscription" - } - ], - "Id": "c0ff6217-2cfb-47d3-ba44-b31b9f03b234", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-06-11T19:00:00.001Z", - "WorkloadArea": "Change notifications", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "4f8f9b37-4149-42d5-80af-3b01fff10780", - "ApiChange": "Resource", - "ChangedApiName": "driveItem", - "ChangeType": "change", - "Description": "Removed SharePoint and OneDrive for Business driveItem delta limitation regarding calls targeting non-root folders.", - "Target": "driveItem" - } - ], - "Id": "4f8f9b37-4149-42d5-80af-3b01fff10780", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-06-11T20:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "6f3dd177-b9b4-45c0-8893-c65196a2e502", - "ApiChange": "Resource", - "ChangedApiName": "driveItem", - "ChangeType": "change", - "Description": "Removed SharePoint and OneDrive for Business driveItem delta limitation regarding calls targeting non-root folders.", - "Target": "driveItem" - } - ], - "Id": "6f3dd177-b9b4-45c0-8893-c65196a2e502", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-06-11T20:00:00.001Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", - "ApiChange": "Property", - "ChangedApiName": "malware", - "ChangeType": "Addition", - "Description": "Added the **malware** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", - "ApiChange": "Resource", - "ChangedApiName": "malware", - "ChangeType": "Addition", - "Description": "Added the [malware](https://learn.microsoft.com/en-us/graph/api/resources/malware?view=graph-rest-beta) resource type.", - "Target": "malware" - }, - { - "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", - "ApiChange": "Resource", - "ChangedApiName": "driveItem", - "ChangeType": "change", - "Description": "Removed the SharePoint and OneDrive for Business **driveItem** delta limitation about properties omitted by the delta query for **lastModifiedBy**.", - "Target": "driveItem" - } - ], - "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-09-07T20:00:00.001Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", - "ApiChange": "Property", - "ChangedApiName": "malware", - "ChangeType": "Addition", - "Description": "Added the **malware** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", - "Target": "driveItem" - }, - { - "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", - "ApiChange": "Resource", - "ChangedApiName": "malware", - "ChangeType": "Addition", - "Description": "Added the [malware](https://learn.microsoft.com/en-us/graph/api/resources/malware?view=graph-rest-beta) resource type.", - "Target": "malware" - }, - { - "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", - "ApiChange": "Resource", - "ChangedApiName": "driveItem", - "ChangeType": "change", - "Description": "Removed the SharePoint and OneDrive for Business **driveItem** delta limitation about properties omitted by the delta query for **lastModifiedBy**.", - "Target": "driveItem" - } - ], - "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", - "Cloud": "Prd", - "Version": "v1.0", - "CreatedDateTime": "2021-09-07T09:20:58.5352861Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "F1A3D555-2DA6-4BA2-92C8-7AC9432725A7", - "ApiChange": "Method", - "ChangedApiName": "delta", - "ChangeType": "Addition", - "Description": "Added the ability to use timestamp-based delta tokens.", - "Target": "delta" - } - ], - "Id": "F1A3D555-2DA6-4BA2-92C8-7AC9432725A7", - "Cloud": "prd", - "Version": "beta", - "CreatedDateTime": "2021-11-09T20:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "A6837885-9B04-449F-813E-CBA4C6A1D8CF", - "ApiChange": "Method", - "ChangedApiName": "delta", - "ChangeType": "Addition", - "Description": "Added the ability to use timestamp-based delta tokens.", - "Target": "delta" - } - ], - "Id": "A6837885-9B04-449F-813E-CBA4C6A1D8CF", - "Cloud": "prd", - "Version": "v1.0", - "CreatedDateTime": "2021-11-09T20:00:00.000Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", - "ApiChange": "Relationship", - "ChangedApiName": "parentTerm", - "ChangeType": "Addition", - "Description": "Added the **parentTerm** relationship to the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource.", - "Target": "termColumn" - }, - { - "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", - "ApiChange": "Relationship", - "ChangedApiName": "termSet", - "ChangeType": "Addition", - "Description": "Added the **termSet** relationship to the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource.", - "Target": "termColumn" - } - ], - "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-03-22T05:16:31.2660118Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", - "ApiChange": "Resource", - "ChangedApiName": "siteSettings", - "ChangeType": "Addition", - "Description": "Added the [siteSettings](https://learn.microsoft.com/en-us/graph/api/resources/siteSettings?view=graph-rest-beta) resource type.", - "Target": "siteSettings" - }, - { - "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", - "ApiChange": "Property", - "ChangedApiName": "settings", - "ChangeType": "Addition", - "Description": "Added the **settings** property to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" - }, - { - "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", - "ApiChange": "Method", - "ChangedApiName": "siteSettings", - "ChangeType": "Addition", - "Description": "Added the [Get siteSettings](https://learn.microsoft.com/en-us/graph/api/sitesettings-get?view=graph-rest-beta) action to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" - } - ], - "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-03-30T21:36:07.8994263Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", - "ApiChange": "Resource", - "ChangedApiName": "documentSetVersionItem", - "ChangeType": "Addition", - "Description": "Added the [documentSetVersionItem](https://learn.microsoft.com/en-us/graph/api/resources/documentSetVersionItem?view=graph-rest-beta) resource type.", - "Target": "documentSetVersionItem" - }, - { - "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", - "ApiChange": "Resource", - "ChangedApiName": "documentSetVersion", - "ChangeType": "Addition", - "Description": "Added the [documentSetVersion](https://learn.microsoft.com/en-us/graph/api/resources/documentSetVersion?view=graph-rest-beta) resource and supported methods.", - "Target": "documentSetVersion" - }, - { - "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", - "ApiChange": "Relationship", - "ChangedApiName": "documentSetVersions", - "ChangeType": "Addition", - "Description": "Added the **documentSetVersions** relationship to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listItem?view=graph-rest-beta) resource.", - "Target": "listItem" - } - ], - "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-04-25T03:24:57.6436095Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "EnumType", - "ChangedApiName": "longRunningOperationStatus", - "ChangeType": "Addition", - "Description": "Added the **longRunningOperationStatus** enumeration type.", - "Target": "longRunningOperationStatus" - }, - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "Relationship", - "ChangedApiName": "operations", - "ChangeType": "Addition", - "Description": "Added the **operations** relationship to the [list](https://learn.microsoft.com/en-us/graph/api/resources/list?view=graph-rest-1.0) resource.", - "Target": "list" - }, - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "Resource", - "ChangedApiName": "richLongRunningOperation", - "ChangeType": "Addition", - "Description": "Added the [richLongRunningOperation](https://learn.microsoft.com/en-us/graph/api/resources/richLongRunningOperation?view=graph-rest-1.0) resource and a supported method.", - "Target": "richLongRunningOperation" - }, - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "Relationship", - "ChangedApiName": "operations", - "ChangeType": "Addition", - "Description": "Added the **operations** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", - "Target": "site" - }, - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "Method", - "ChangedApiName": "addCopyFromContentTypeHub", - "ChangeType": "Addition", - "Description": "Added the addCopyFromContentTypeHub method to the contentType resource.", - "Target": "contentType" - }, - { - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "ApiChange": "Method", - "ChangedApiName": "getCompatibleHubContentTypes", - "ChangeType": "Addition", - "Description": "Added the getCompatibleHubContentTypes method to the contentType resource.", - "Target": "contentType" - } - ], - "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2022-05-03T06:10:35.3472999Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", - "ApiChange": "Resource", - "ChangedApiName": "documentSetVersionItem", - "ChangeType": "Addition", - "Description": "Added the [documentSetVersionItem](https://learn.microsoft.com/en-us/graph/api/resources/documentsetversionitem?view=graph-rest-1.0) resource type.", - "Target": "documentSetVersionItem" - }, - { - "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", - "ApiChange": "Resource", - "ChangedApiName": "documentSetVersion", - "ChangeType": "Addition", - "Description": "Added the [documentSetVersion](https://learn.microsoft.com/en-us/graph/api/resources/documentsetversion?view=graph-rest-1.0) resource and supported methods.", - "Target": "documentSetVersion" - }, - { - "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", - "ApiChange": "Relationship", - "ChangedApiName": "documentSetVersions", - "ChangeType": "Addition", - "Description": "Added the **documentSetVersions** relationship to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-1.0) resource.", - "Target": "listItem" - } - ], - "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2022-08-09T05:35:55.0887308Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "horizontalSectionLayoutType", - "ChangeType": "Addition", - "Description": "Added the **horizontalSectionLayoutType** enumeration type.", - "Target": "horizontalSectionLayoutType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "pageLayoutType", - "ChangeType": "Addition", - "Description": "Added the **pageLayoutType** enumeration type.", - "Target": "pageLayoutType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "pagePromotionType", - "ChangeType": "Addition", - "Description": "Added the **pagePromotionType** enumeration type.", - "Target": "pagePromotionType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "sectionEmphasisType", - "ChangeType": "Addition", - "Description": "Added the **sectionEmphasisType** enumeration type.", - "Target": "sectionEmphasisType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "titleAreaLayoutType", - "ChangeType": "Addition", - "Description": "Added the **titleAreaLayoutType** enumeration type.", - "Target": "titleAreaLayoutType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Enumeration", - "ChangedApiName": "titleAreaTextAlignmentType", - "ChangeType": "Addition", - "Description": "Added the **titleAreaTextAlignmentType** enumeration type.", - "Target": "titleAreaTextAlignmentType" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "metaDataKeyStringPair", - "ChangeType": "Addition", - "Description": "Added the [metaDataKeyStringPair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyStringPair?view=graph-rest-beta) resource type.", - "Target": "metaDataKeyStringPair" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "metaDataKeyValuePair", - "ChangeType": "Addition", - "Description": "Added the [metaDataKeyValuePair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyValuePair?view=graph-rest-beta) resource type.", - "Target": "metaDataKeyValuePair" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "reactionsFacet", - "ChangeType": "Addition", - "Description": "Added the [reactionsFacet](https://learn.microsoft.com/en-us/graph/api/resources/reactionsFacet?view=graph-rest-beta) resource type.", - "Target": "reactionsFacet" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "serverProcessedContent", - "ChangeType": "Addition", - "Description": "Added the [serverProcessedContent](https://learn.microsoft.com/en-us/graph/api/resources/serverProcessedContent?view=graph-rest-beta) resource type.", - "Target": "serverProcessedContent" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "sitePageData", - "ChangeType": "Deletion", - "Description": "Removed the **sitePageData** resource type.", - "Target": "sitePageData" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "titleArea", - "ChangeType": "Addition", - "Description": "Added the [titleArea](https://learn.microsoft.com/en-us/graph/api/resources/titleArea?view=graph-rest-beta) resource type.", - "Target": "titleArea" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "webPartData", - "ChangeType": "Addition", - "Description": "Added the [webPartData](https://learn.microsoft.com/en-us/graph/api/resources/webPartData?view=graph-rest-beta) resource type.", - "Target": "webPartData" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "webPartPosition", - "ChangeType": "Addition", - "Description": "Added the [webPartPosition](https://learn.microsoft.com/en-us/graph/api/resources/webPartPosition?view=graph-rest-beta) resource type.", - "Target": "webPartPosition" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "canvasLayout", - "ChangeType": "Addition", - "Description": "Added the [canvasLayout](https://learn.microsoft.com/en-us/graph/api/resources/canvasLayout?view=graph-rest-beta) resource.", - "Target": "canvasLayout" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "horizontalSection", - "ChangeType": "Addition", - "Description": "Added the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource and associated methods.", - "Target": "horizontalSection" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "horizontalSectionColumn", - "ChangeType": "Addition", - "Description": "Added the [horizontalSectionColumn](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSectionColumn?view=graph-rest-beta) resource and associated methods.", - "Target": "horizontalSectionColumn" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "pageLayout", - "ChangeType": "Addition", - "Description": "Added the **pageLayout** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "pageLayoutType", - "ChangeType": "Deletion", - "Description": "Removed the **pageLayoutType** property from the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "promotionKind", - "ChangeType": "Addition", - "Description": "Added the **promotionKind** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "reactions", - "ChangeType": "Addition", - "Description": "Added the **reactions** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "showComments", - "ChangeType": "Addition", - "Description": "Added the **showComments** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "showRecommendedPages", - "ChangeType": "Addition", - "Description": "Added the **showRecommendedPages** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "thumbnailWebUrl", - "ChangeType": "Addition", - "Description": "Added the **thumbnailWebUrl** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "titleArea", - "ChangeType": "Addition", - "Description": "Added the **titleArea** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Property", - "ChangedApiName": "webParts", - "ChangeType": "Deletion", - "Description": "Removed the **webParts** property from the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Relationship", - "ChangedApiName": "canvasLayout", - "ChangeType": "Addition", - "Description": "Added the **canvasLayout** relationship to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Relationship", - "ChangedApiName": "webParts", - "ChangeType": "Addition", - "Description": "Added the **webParts** navigation property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", - "Target": "sitePage" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "standardWebPart", - "ChangeType": "Addition", - "Description": "Added the [standardWebPart](https://learn.microsoft.com/en-us/graph/api/resources/standardWebPart?view=graph-rest-beta) resource.", - "Target": "standardWebPart" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "textWebPart", - "ChangeType": "Addition", - "Description": "Added the [textWebPart](https://learn.microsoft.com/en-us/graph/api/resources/textWebPart?view=graph-rest-beta) resource.", - "Target": "textWebPart" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Resource", - "ChangedApiName": "verticalSection", - "ChangeType": "Addition", - "Description": "Added the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource and associated methods.", - "Target": "verticalSection" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Method", - "ChangedApiName": "getPositionOfWebPart", - "ChangeType": "Addition", - "Description": "Added the getPositionOfWebPart method to the webPart resource.", - "Target": "webPart" - }, - { - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "ApiChange": "Method", - "ChangedApiName": "getWebPartsByPosition", - "ChangeType": "Addition", - "Description": "Added the getWebPartsByPosition method to the sitePage resource.", - "Target": "sitePage" - } - ], - "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2022-12-05T03:42:44.8308328Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "DELETE", - "ChangeType": "Addition", - "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/horizontalSection-delete?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", - "Target": "horizontalSection" - }, - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "POST", - "ChangeType": "Addition", - "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-post-horizontalsection?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", - "Target": "horizontalSection" - }, - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "PATCH", - "ChangeType": "Addition", - "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/horizontalSection-update?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", - "Target": "horizontalSection" - }, - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "DELETE", - "ChangeType": "Addition", - "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/verticalSection-delete?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", - "Target": "verticalSection" - }, - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "POST", - "ChangeType": "Addition", - "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-post-verticalsection?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", - "Target": "verticalSection" - }, - { - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "ApiChange": "Method", - "ChangedApiName": "PATCH", - "ChangeType": "Addition", - "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/verticalSection-update?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", - "Target": "verticalSection" - } - ], - "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-07-06T03:42:44.8308328Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "59cd1acf-d56a-4cd3-a213-643cbcc3c3ab", - "ApiChange": "Parameter", - "ChangedApiName": "sendNotification", - "ChangeType": "Addition", - "Description": "Added the `sendNotification` parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) method of [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta).", - "Target": "createLink" - } - ], - "Id": "59cd1acf-d56a-4cd3-a213-643cbcc3c3ab", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-03-01T10:39:05.8609784Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "b5aef9f7-ffc6-4018-997a-b7f5dcbfe30f", - "ApiChange": "Parameter", - "ChangedApiName": "sendNotification", - "ChangeType": "Addition", - "Description": "Added the `sendNotification` parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) method of [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta).", - "Target": "createLink" - } - ], - "Id": "b5aef9f7-ffc6-4018-997a-b7f5dcbfe30f", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-03-01T10:39:05.8609784Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "c4086413-821d-4b86-a751-830602979001", - "ApiChange": "Property", - "ChangedApiName": "containerTextWebPartId", - "ChangeType": "Addition", - "Description": "Added the **containerTextWebPartId** property to the [standardWebPart](https://learn.microsoft.com/en-us/graph/api/resources/standardWebPart?view=graph-rest-beta) resource.", - "Target": "standardWebPart" - } - ], - "Id": "c4086413-821d-4b86-a751-830602979001", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-07-05T10:39:05.8609784Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "81fad909-6e78-4228-8879-3f3589b0498e", - "ApiChange": "Resource", - "ChangedApiName": "baseSitePage", - "ChangeType": "Addition", - "Description": "Added the [baseSitePage](https://learn.microsoft.com/en-us/graph/api/resources/baseSitePage?view=graph-rest-beta) resource", - "Target": "baseSitePage" - }, - { - "Id": "d9f1c081-4b9d-47e0-af79-96b681dbd396", - "ApiChange": "Method", - "ChangedApiName": "create", - "ChangeType": "Addition", - "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-create-webpart?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", - "Target": "webPart" - }, - { - "Id": "ed32b556-30a9-4058-b00f-d9b626c1a87d", - "ApiChange": "Method", - "ChangedApiName": "update", - "ChangeType": "Addition", - "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/webpart-update?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", - "Target": "webPart" - }, - { - "Id": "fad07c95-15cf-4c32-9dee-0a14241934c5", - "ApiChange": "Method", - "ChangedApiName": "delete", - "ChangeType": "Addition", - "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/webpart-delete?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", - "Target": "webPart" - } - ], - "Id": "81fad909-6e78-4228-8879-3f3589b0498e", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2023-07-13T10:21:51.737705Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "loki", - "ChangeType": "Addition", - "Description": "Added the `loki` member to the **driveItemSourceApplication** enumeration.", - "Target": "driveItemSourceApplication" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "loop", - "ChangeType": "Addition", - "Description": "Added the `loop` member to the **driveItemSourceApplication** enumeration.", - "Target": "driveItemSourceApplication" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "other", - "ChangeType": "Addition", - "Description": "Added the `other` member to the **driveItemSourceApplication** enumeration.", - "Target": "driveItemSourceApplication" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "story", - "ChangeType": "Addition", - "Description": "Added the `story` member to the **mediaSourceContentCategory** enumeration.", - "Target": "mediaSourceContentCategory" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "profile", - "ChangeType": "Addition", - "Description": "Added the `profile` member to the **mediaSourceContentCategory** enumeration.", - "Target": "mediaSourceContentCategory" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "chat", - "ChangeType": "Addition", - "Description": "Added the `chat` member to the **mediaSourceContentCategory** enumeration.", - "Target": "mediaSourceContentCategory" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "note", - "ChangeType": "Addition", - "Description": "Added the `note` member to the **mediaSourceContentCategory** enumeration.", - "Target": "mediaSourceContentCategory" - }, - { - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "ApiChange": "Member", - "ChangedApiName": "comment", - "ChangeType": "Addition", - "Description": "Added the `comment` member to the **mediaSourceContentCategory** enumeration.", - "Target": "mediaSourceContentCategory" - } - ], - "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2024-02-08T11:42:39.4965313Z", - "WorkloadArea": "Files", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Enumeration", - "ChangedApiName": "driveItemSourceApplication", - "ChangeType": "Addition", - "Description": "Added the **driveItemSourceApplication** enumeration type.", - "Target": "driveItemSourceApplication" - }, - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Enumeration", - "ChangedApiName": "mediaSourceContentCategory", - "ChangeType": "Addition", - "Description": "Added the **mediaSourceContentCategory** enumeration type.", - "Target": "mediaSourceContentCategory" - }, - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Resource", - "ChangedApiName": "driveItemSource", - "ChangeType": "Addition", - "Description": "Added the [driveItemSource](https://learn.microsoft.com/en-us/graph/api/resources/driveItemSource?view=graph-rest-1.0) resource.", - "Target": "driveItemSource" - }, - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Property", - "ChangedApiName": "driveItemSource", - "ChangeType": "Addition", - "Description": "Added the **driveItemSource** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", - "Target": "driveItemUploadableProperties" - }, - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Property", - "ChangedApiName": "mediaSource", - "ChangeType": "Addition", - "Description": "Added the **mediaSource** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", - "Target": "driveItemUploadableProperties" - }, - { - "Id": "93315b42-882f-4215-b210-dea3a56fc469", - "ApiChange": "Resource", - "ChangedApiName": "mediaSource", - "ChangeType": "Addition", - "Description": "Added the [mediaSource](https://learn.microsoft.com/en-us/graph/api/resources/mediaSource?view=graph-rest-1.0) resource.", - "Target": "mediaSource" - } - ], - "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "Id": "cca19c51-da79-49de-adc8-799812dba423", "Cloud": "Prod", "Version": "v1.0", - "CreatedDateTime": "2024-02-08T11:42:39.4965347Z", + "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", "WorkloadArea": "Files", "SubArea": "" } From 604a2f9c1a9e80811216b20f9c09be76e84cefcd Mon Sep 17 00:00:00 2001 From: egreenberg14 <140207119+egreenberg14@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:26:10 -0700 Subject: [PATCH 42/96] Update signinactivity.md adding lastsuccessfulsignin to V1 --- api-reference/v1.0/resources/signinactivity.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api-reference/v1.0/resources/signinactivity.md b/api-reference/v1.0/resources/signinactivity.md index 10729ce90b8..04417f3e02e 100644 --- a/api-reference/v1.0/resources/signinactivity.md +++ b/api-reference/v1.0/resources/signinactivity.md @@ -21,6 +21,8 @@ Provides the last interactive or non-interactive sign-in time for a specific [us |lastSignInRequestId|String|Request identifier of the last interactive sign-in performed by this user.| |lastNonInteractiveSignInDateTime|DateTimeOffset|The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp 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'`. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| |lastNonInteractiveSignInRequestId|String|Request identifier of the last non-interactive sign-in performed by this user.| +|lastSuccessfulSignInDateTime|DateTimeOffset|The datetime of the user's most recent successful sign in activity.| +|lastSuccessfulSignInRequestId|String|The requestID of the last successful signIn.| ## JSON representation From cc22ccd5417673c362064f9dbb94a44309413155 Mon Sep 17 00:00:00 2001 From: egreenberg14 <140207119+egreenberg14@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:29:55 -0700 Subject: [PATCH 43/96] Update signinactivity.md added lastsuccessfulsignin to V1 --- api-reference/v1.0/resources/signinactivity.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api-reference/v1.0/resources/signinactivity.md b/api-reference/v1.0/resources/signinactivity.md index 04417f3e02e..4a57e4bfdb1 100644 --- a/api-reference/v1.0/resources/signinactivity.md +++ b/api-reference/v1.0/resources/signinactivity.md @@ -13,6 +13,11 @@ Namespace: microsoft.graph Provides the last interactive or non-interactive sign-in time for a specific [user](user.md). Since signInActivity describes a property of the user object, Microsoft Entra ID stores sign in activity for your users for as long as the user object exists. +Update: Effective 6/1/2024, lastsuccessfulSignInDateTime & lastSuccessfulSignInRequestID are now moved into V1. + +Note: This provides the last successful sign-in time for a specific user, regardless of whether the sign-in was interactive or non-interactive. The data isn't backfilled for this property, so 12/1/2023 is the earliest possible date when a user's sign-in activity could be captured by this property. + + ## Properties | Property | Type | Description | From 0cc065d0d3bf7e907e1dabbf89bd8c373f86428c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:48:01 -0700 Subject: [PATCH 44/96] Update Microsoft.FileServices.json Updating fileStorageContainer to v1.0 --- changelog/Microsoft.FileServices.json | 4225 ++++++++++++++++++++++++- 1 file changed, 4103 insertions(+), 122 deletions(-) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 198a7bfb237..2981bca08fe 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -1,215 +1,4196 @@ { "changelog": [ + { + "ChangeList": [ + { + "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", + "ApiChange": "Enumeration", + "ChangedApiName": "siteArchiveStatus", + "ChangeType": "Addition", + "Description": "Added the **siteArchiveStatus** enumeration type.", + "Target": "siteArchiveStatus" + }, + { + "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", + "ApiChange": "Resource", + "ChangedApiName": "siteArchivalDetails", + "ChangeType": "Addition", + "Description": "Added the [siteArchivalDetails](https://learn.microsoft.com/en-us/graph/api/resources/siteArchivalDetails?view=graph-rest-beta) resource.", + "Target": "siteArchivalDetails" + }, + { + "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", + "ApiChange": "Property", + "ChangedApiName": "archivalDetails", + "ChangeType": "Addition", + "Description": "Added the **archivalDetails** property to the [siteCollection](https://learn.microsoft.com/en-us/graph/api/resources/siteCollection?view=graph-rest-beta) resource.", + "Target": "siteCollection" + } + ], + "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2024-04-15T06:57:37.5509045Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "400279c6-8c1b-4a1d-92ff-c49987587f79", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/site-delta?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" + } + ], + "Id": "400279c6-8c1b-4a1d-92ff-c49987587f79", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2024-03-21T07:48:06.8842819Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "8fefbf46-97c3-43c7-96a9-56c1f4c24052", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/site-delta?view=graph-rest-1.0) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" + } + ], + "Id": "8fefbf46-97c3-43c7-96a9-56c1f4c24052", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2024-03-21T07:48:06.8842819Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainer", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource and its methods.", + "Target": "fileStorageContainer" + }, + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-beta) resource.", + "Target": "fileStorageContainerCustomPropertyDictionary" + }, + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerCustomPropertyValue", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-beta) resource.", + "Target": "fileStorageContainerCustomPropertyValue" + }, + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerViewpoint", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-beta) resource.", + "Target": "fileStorageContainer" + }, + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Relationship", + "ChangedApiName": "permissions", + "ChangeType": "Addition", + "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", + "Target": "fileStorageContainer" + }, + { + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", + "ApiChange": "Relationship", + "ChangedApiName": "drive", + "ChangeType": "Addition", + "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", + "Target": "fileStorageContainer" + } + ], + "Id": "a376b86e-b5eb-4d9e-8270-de3cc02af307", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Resource", + "ChangedApiName": "itemRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [itemRetentionLabel](https://learn.microsoft.com/en-us/graph/api/resources/itemRetentionLabel?view=graph-rest-beta) resource type.", + "Target": "itemRetentionLabel" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Relationship", + "ChangedApiName": "retentionLabel", + "ChangeType": "Addition", + "Description": "Added the **retentionLabel** relationship to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Resource", + "ChangedApiName": "retentionLabelSettings", + "ChangeType": "Addition", + "Description": "Added the [retentionLabelSettings](https://learn.microsoft.com/en-us/graph/api/resources/retentionLabelSettings?view=graph-rest-beta) resource type.", + "Target": "retentionLabelSettings" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Method", + "ChangedApiName": "getRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [getRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-getretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Method", + "ChangedApiName": "lockOrUnlockRecord", + "ChangeType": "Addition", + "Description": "Added the [lockOrUnlockRecord](https://learn.microsoft.com/en-us/graph/api/driveitem-lockorunlockrecord?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Method", + "ChangedApiName": "removeRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [removeRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-removeretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "ApiChange": "Method", + "ChangedApiName": "setRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [setRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-setretentionlabel?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "driveItem" + } + ], + "Id": "e5f82c50-922a-40d0-b4ca-c2f248ad4516", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-04-04T04:44:48.6373254Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Enum type", + "ChangedApiName": "behaviorDuringRetentionPeriod", + "ChangeType": "Addition", + "Description": "Added the **behaviorDuringRetentionPeriod** enumeration type.", + "Target": "behaviorDuringRetentionPeriod" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Resource", + "ChangedApiName": "itemRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [itemRetentionLabel](https://learn.microsoft.com/en-us/graph/api/resources/itemRetentionLabel?view=graph-rest-1.0) resource type.", + "Target": "itemRetentionLabel" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Resource", + "ChangedApiName": "retentionLabelSettings", + "ChangeType": "Addition", + "Description": "Added the [retentionLabelSettings](https://learn.microsoft.com/en-us/graph/api/resources/retentionLabelSettings?view=graph-rest-1.0) resource type.", + "Target": "retentionLabelSettings" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Relationship", + "ChangedApiName": "retentionLabel", + "ChangeType": "Addition", + "Description": "Added the **retentionLabel** relationship to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Method", + "ChangedApiName": "getRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [getRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-getretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Method", + "ChangedApiName": "lockOrUnlockRecord", + "ChangeType": "Addition", + "Description": "Added the [lockOrUnlockRecord](https://learn.microsoft.com/en-us/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Method", + "ChangedApiName": "removeRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [removeRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-removeretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + }, + { + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "ApiChange": "Method", + "ChangedApiName": "setRetentionLabel", + "ChangeType": "Addition", + "Description": "Added the [setRetentionLabel](https://learn.microsoft.com/en-us/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + } + ], + "Id": "7a1f574d-c348-4ce9-890b-d55b58b2d3c2", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-11-06T04:44:48.6373254Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "d21eab90-33dc-4a10-9760-31b5b3146313", + "ApiChange": "Property", + "ChangedApiName": "checkedOutBy", + "ChangeType": "Addition", + "Description": "Added the **checkedOutBy** property to the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-beta) resource.", + "Target": "publicationFacet" + } + ], + "Id": "d21eab90-33dc-4a10-9760-31b5b3146313", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-08-31T09:24:40.9901309Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "63ec4567-ba38-4767-92ab-167f2d155951", + "ApiChange": "Property", + "ChangedApiName": "checkedOutBy", + "ChangeType": "Addition", + "Description": "Added the **checkedOutBy** property to the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-1.0) resource.", + "Target": "publicationFacet" + } + ], + "Id": "63ec4567-ba38-4767-92ab-167f2d155951", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-08-31T09:24:40.9904868Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "a8d1ea6c-3868-41c8-b499-ed81848134bd", + "ApiChange": "Method", + "ChangedApiName": "permanentDelete", + "ChangeType": "Addition", + "Description": "Added the [permanentDelete](https://learn.microsoft.com/en-us/graph/api/driveitem-permanentdelete?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + } + ], + "Id": "a8d1ea6c-3868-41c8-b499-ed81848134bd", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-06-28T08:35:41.9865867Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "bb7f0809-9061-4b82-b872-249661a3d329", + "ApiChange": "Method", + "ChangedApiName": "permanentDelete", + "ChangeType": "Addition", + "Description": "Added the [permanentDelete](https://learn.microsoft.com/en-us/graph/api/driveitem-permanentdelete?view=graph-rest-1.0) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + } + ], + "Id": "bb7f0809-9061-4b82-b872-249661a3d329", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-07-27T08:35:41.9869433Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "d07006c1-a451-4fcf-b9b6-835546842783", + "ApiChange": "Method", + "ChangedApiName": "getAllSites", + "ChangeType": "Addition", + "Description": "Added the [getAllSites](https://learn.microsoft.com/en-us/graph/api/site-getallsites?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" + } + ], + "Id": "d07006c1-a451-4fcf-b9b6-835546842783", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-05-19T00:22:49.847Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "8ca9e51e-a486-41cb-af0e-105f86177d1b", + "ApiChange": "Method", + "ChangedApiName": "getAllSites", + "ChangeType": "Addition", + "Description": "Added the [getAllSites](https://learn.microsoft.com/en-us/graph/api/site-getallsites?view=graph-rest-1.0) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" + } + ], + "Id": "8ca9e51e-a486-41cb-af0e-105f86177d1b", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-05-19T00:22:49.847Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Enumeration", + "ChangedApiName": "imageTaggingChoice", + "ChangeType": "Addition", + "Description": "Added the **imageTaggingChoice** enumeration type.", + "Target": "imageTaggingChoice" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Enumeration", + "ChangedApiName": "sharingCapabilities", + "ChangeType": "Addition", + "Description": "Added the **sharingCapabilities** enumeration type.", + "Target": "sharingCapabilities" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Enumeration", + "ChangedApiName": "sharingDomainRestrictionMode", + "ChangeType": "Addition", + "Description": "Added the **sharingDomainRestrictionMode** enumeration type.", + "Target": "sharingDomainRestrictionMode" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Resource", + "ChangedApiName": "idleSessionSignOut", + "ChangeType": "Addition", + "Description": "Added the [idleSessionSignOut](https://learn.microsoft.com/en-us/graph/api/resources/idleSessionSignOut?view=graph-rest-1.0) resource type.", + "Target": "idleSessionSignOut" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Resource", + "ChangedApiName": "sharepointSettings", + "ChangeType": "Addition", + "Description": "Added the [sharepointSettings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointSettings?view=graph-rest-1.0) resource.", + "Target": "sharepointSettings" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Relationship", + "ChangedApiName": "sharepointSettings", + "ChangeType": "Addition", + "Description": "Added the **sharepointSettings** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-1.0) resource.", + "Target": "admin" + } + ], + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-05-02T17:18:06.3356617Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "a4a26d2c-47f7-4aa2-9a38-8c979cc811a1", + "ApiChange": "Resource", + "ChangedApiName": "tenantadmin-sharepoint", + "ChangeType": "Deletion", + "Description": "Removed the **sharepoint** resource from the tenantAdmin subnamespace resource.", + "Target": "tenantadmin-sharepoint" + }, + { + "Id": "5348d8d7-63da-44f6-a85b-96fe17fe342f", + "ApiChange": "Relationship", + "ChangedApiName": "sharepointSettings", + "ChangeType": "Addition", + "Description": "Added the **sharepointSettings** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-beta) resource.", + "Target": "admin" + } + ], + "Id": "a4a26d2c-47f7-4aa2-9a38-8c979cc811a1", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-05-02T21:52:28.1485706Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "ApiChange": "Enumeration", + "ChangedApiName": "sensitivityLabelAssignmentMethod", + "ChangeType": "Addition", + "Description": "Added the **sensitivityLabelAssignmentMethod** enumeration type.", + "Target": "sensitivityLabelAssignmentMethod" + }, + { + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "ApiChange": "Resource", + "ChangedApiName": "extractSensitivityLabelsResult", + "ChangeType": "Addition", + "Description": "Added the [extractSensitivityLabelsResult](https://learn.microsoft.com/graph/api/resources/extractSensitivityLabelsResult?view=graph-rest-1.0) resource type.", + "Target": "extractSensitivityLabelsResult" + }, + { + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "ApiChange": "Resource", + "ChangedApiName": "sensitivityLabelAssignment", + "ChangeType": "Addition", + "Description": "Added the [sensitivityLabelAssignment](https://learn.microsoft.com/graph/api/resources/sensitivityLabelAssignment?view=graph-rest-1.0) resource type.", + "Target": "sensitivityLabelAssignment" + }, + { + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "ApiChange": "Method", + "ChangedApiName": "assignSensitivityLabel", + "ChangeType": "Addition", + "Description": "Added the [assignSensitivityLabel](https://learn.microsoft.com/graph/api/driveitem-assignsensitivitylabel?view=graph-rest-1.0&tabs=http) method to the [driveItem](https://learn.microsoft.com/graph/api/driveItem-get?view=graph-rest-1.0&tabs=http) resource.", + "Target": "driveItem" + }, + { + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "ApiChange": "Method", + "ChangedApiName": "extractSensitivityLabels", + "ChangeType": "Addition", + "Description": "Added the [extractSensitivityLabels](https://learn.microsoft.com/graph/api/driveitem-extractsensitivitylabels?view=graph-rest-1.0&tabs=http) method to the [driveItem](https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0&tabs=http) resource.", + "Target": "driveItem" + } + ], + "Id": "e6fbdfd4-1666-480e-92d6-c0bbee33eaf8", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2023-06-15T12:09:50.4097557Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "bb775eb6-032d-4958-946f-a5b608a5be43", + "ApiChange": "Method", + "ChangedApiName": "assignSensitivityLabel", + "ChangeType": "Addition", + "Description": "Added the [assignSensitivityLabel](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) method to the driveItem resource.", + "Target": "driveItem" + } + ], + "Id": "bb775eb6-032d-4958-946f-a5b608a5be43", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-09-02T16:49:52.2813343Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "ApiChange": "Resource", + "ChangedApiName": "idleSessionSignOut", + "ChangeType": "Addition", + "Description": "Added the [idleSessionSignOut](https://learn.microsoft.com/en-us/graph/api/resources/idlesessionsignout?view=graph-rest-beta) resource type.", + "Target": "idleSessionSignOut" + }, + { + "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "ApiChange": "Property", + "ChangedApiName": "idleSessionSignOut", + "ChangeType": "Addition", + "Description": "Added the **idleSessionSignOut** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", + "Target": "settings" + }, + { + "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "ApiChange": "Property", + "ChangedApiName": "isLegacyAuthProtocolsEnabled", + "ChangeType": "Addition", + "Description": "Added the **isLegacyAuthProtocolsEnabled** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", + "Target": "settings" + }, + { + "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "ApiChange": "Property", + "ChangedApiName": "isRequireAcceptingUserToMatchInvitedUserEnabled", + "ChangeType": "Addition", + "Description": "Added the **isRequireAcceptingUserToMatchInvitedUserEnabled** property to the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource.", + "Target": "settings" + } + ], + "Id": "5e44fa6c-354b-4727-b0dd-f7fa60d058ce", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-08-01T21:52:28.1485706Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "ApiChange": "Relationship", + "ChangedApiName": "sharepoint", + "ChangeType": "Addition", + "Description": "Added the **sharepoint** navigation property to the [admin](https://learn.microsoft.com/en-us/graph/api/resources/admin?view=graph-rest-beta) resource.", + "Target": "admin" + }, + { + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "ApiChange": "Resource", + "ChangedApiName": "settings", + "ChangeType": "Addition", + "Description": "Added the [settings](https://learn.microsoft.com/en-us/graph/api/resources/sharepointsettings?view=graph-rest-beta) resource type and supported methods.", + "Target": "settings" + }, + { + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "ApiChange": "EnumType", + "ChangedApiName": "imageTaggingChoice", + "ChangeType": "Addition", + "Description": "Added the **imageTaggingChoice** enumeration type.", + "Target": "imageTaggingChoice" + }, + { + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "ApiChange": "EnumType", + "ChangedApiName": "sharingCapabilities", + "ChangeType": "Addition", + "Description": "Added the **sharingCapabilities** enumeration type.", + "Target": "sharingCapabilities" + }, + { + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "ApiChange": "EnumType", + "ChangedApiName": "sharingDomainRestrictionMode", + "ChangeType": "Addition", + "Description": "Added the **sharingDomainRestrictionMode** enumeration type.", + "Target": "sharingDomainRestrictionMode" + } + ], + "Id": "87095323-a508-44c8-95b1-5583e8e14167", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-05-23T02:50:58.3570719Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", + "ApiChange": "EnumType", + "ChangedApiName": "sensitivityLabelAssignmentMethod", + "ChangeType": "Addition", + "Description": "Added the **sensitivityLabelAssignmentMethod** enumeration type.", + "Target": "sensitivityLabelAssignmentMethod" + }, + { + "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", + "ApiChange": "Resource", + "ChangedApiName": "extractSensitivityLabelsResult", + "ChangeType": "Addition", + "Description": "Added the [extractSensitivityLabelsResult](https://learn.microsoft.com/en-us/graph/api/resources/extractSensitivityLabelsResult?view=graph-rest-beta) resource type.", + "Target": "extractSensitivityLabelsResult" + }, + { + "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", + "ApiChange": "Resource", + "ChangedApiName": "sensitivityLabelAssignment", + "ChangeType": "Addition", + "Description": "Added the [sensitivityLabelAssignment](https://learn.microsoft.com/en-us/graph/api/resources/sensitivityLabelAssignment?view=graph-rest-beta) resource type.", + "Target": "sensitivityLabelAssignment" + }, + { + "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", + "ApiChange": "Method", + "ChangedApiName": "extractSensitivityLabels", + "ChangeType": "Addition", + "Description": "Added the [extractSensitivityLabels](https://learn.microsoft.com/en-us/graph/api/driveitem-extractSensitivityLabels?view=graph-rest-beta) method to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + } + ], + "Id": "8d44ba60-d170-4c53-8a45-8bb2d96fa654", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-04-18T20:17:33.7017535Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Property", + "ChangedApiName": "grantedTo", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToV2** property instead.", + "Target": "permission" + }, + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentities", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToIdentitiesV2** property instead.", + "Target": "permission" + }, + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Property", + "ChangedApiName": "grantedToV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentitiesV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentity", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-1.0) resource type.", + "Target": "permission" + }, + { + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentitySet", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-1.0) resource type.", + "Target": "permission" + } + ], + "Id": "17EC0EF8-3292-492A-B703-FEE54D82D4D1", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-11-29T22:39:56.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Property", + "ChangedApiName": "grantedTo", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToV2** property instead.", + "Target": "permission" + }, + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentities", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. Use the **grantedToIdentitiesV2** property instead.", + "Target": "permission" + }, + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Property", + "ChangedApiName": "grantedToV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentitiesV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentity", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-1.0) resource type.", + "Target": "permission" + }, + { + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentitySet", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-1.0) resource type.", + "Target": "permission" + } + ], + "Id": "86CABADD-8EB4-4BC7-92A3-F411F0820CF2", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-09-11T22:39:56.000Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Property", + "ChangedApiName": "grantedTo", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToV2** property instead.", + "Target": "permission" + }, + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentities", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToIdentitiesV2** property instead.", + "Target": "permission" + }, + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Property", + "ChangedApiName": "grantedToV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentitiesV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentity", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-beta) resource type.", + "Target": "permission" + }, + { + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentitySet", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-beta) resource type.", + "Target": "permission" + } + ], + "Id": "69153396-A3C3-4B9F-932C-B658C9033966", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-11-29T22:39:56.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Property", + "ChangedApiName": "grantedTo", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedTo** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToV2** property instead.", + "Target": "permission" + }, + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentities", + "ChangeType": "Deprecation", + "Description": "Deprecated the **grantedToIdentities** property on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. Use the **grantedToIdentitiesV2** property instead.", + "Target": "permission" + }, + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Property", + "ChangedApiName": "grantedToV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedTo** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Property", + "ChangedApiName": "grantedToIdentitiesV2", + "ChangeType": "Addition", + "Description": "Added the **grantedToIdentitiesV2** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource. The property is of type **sharePointIdentity** and replaces the **grantedToIdentities** property, which is being deprecated.", + "Target": "permission" + }, + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentity", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentity](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentity?view=graph-rest-beta) resource type.", + "Target": "permission" + }, + { + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "ApiChange": "Resource", + "ChangedApiName": "sharePointIdentitySet", + "ChangeType": "Addition", + "Description": "Added the [sharePointIdentitySet](https://learn.microsoft.com/en-us/graph/api/resources/sharePointIdentitySet?view=graph-rest-beta) resource type.", + "Target": "permission" + } + ], + "Id": "20663176-4B94-4FD7-AAB1-CA3924ADBA6A", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-11-29T22:39:56.000Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", + "ApiChange": "Resource", + "ChangedApiName": "bundle", + "ChangeType": "addition", + "Description": "Added the [bundle](https://learn.microsoft.com/en-us/graph/api/resources/bundle?view=graph-rest-1.0) resource and associated methods.", + "Target": "bundle" + }, + { + "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", + "ApiChange": "Resource", + "ChangedApiName": "album", + "ChangeType": "addition", + "Description": "Added the [album](https://learn.microsoft.com/en-us/graph/api/resources/album?view=graph-rest-1.0) resource.", + "Target": "album" + }, + { + "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", + "ApiChange": "Relationship", + "ChangedApiName": "bundles", + "ChangeType": "addition", + "Description": "Added the **bundles** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0) resource.", + "Target": "drive" + }, + { + "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", + "ApiChange": "Property", + "ChangedApiName": "bundle", + "ChangeType": "addition", + "Description": "Added the **bundle** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "driveItem" + } + ], + "Id": "cf5f29ba-97d1-42e6-9ea3-4621ff6485b1", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2022-03-16T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "FA782B9D-526C-403F-AA57-8144A4E736FB", + "ApiChange": "Parameter", + "ChangedApiName": "retainInheritedPermissions", + "ChangeType": "Addition", + "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "createLink" + } + ], + "Id": "FA782B9D-526C-403F-AA57-8144A4E736FB", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2023-03-02T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "26776B71-9B2E-45A3-B0CD-D6ECF7CF82C3", + "ApiChange": "Parameter", + "ChangedApiName": "retainInheritedPermissions", + "ChangeType": "Addition", + "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) action on a [listItem](https://docs.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", + "Target": "listItem" + } + ], + "Id": "26776B71-9B2E-45A3-B0CD-D6ECF7CF82C3", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2023-03-02T00:00:00.000Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "96E5DE9E-A56A-4FD1-B8E2-23BA9D180975", + "ApiChange": "Parameter", + "ChangedApiName": "retainInheritedPermissions", + "ChangeType": "Addition", + "Description": "Added the **retainInheritedPermissions** (string) parameter to the [invite](https://learn.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-beta) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource.", + "Target": "invite" + } + ], + "Id": "96E5DE9E-A56A-4FD1-B8E2-23BA9D180975", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2023-03-02T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "B90040F5-2D0D-4C16-BFA0-EBCD27BD5361", + "ApiChange": "Parameter", + "ChangedApiName": "retainInheritedPermissions", + "ChangeType": "Addition", + "Description": "Added the **retainInheritedPermissions** (string) parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-1.0) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "createLink" + } + ], + "Id": "B90040F5-2D0D-4C16-BFA0-EBCD27BD5361", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2023-03-02T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "C68D4B2B-9D39-4562-92D7-1754A687EF64", + "ApiChange": "Parameter", + "ChangedApiName": "retainInheritedPermissions", + "ChangeType": "Addition", + "Description": "Added the **retainInheritedPermissions** (string) parameter to the [invite](https://docs.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-1.0) action on a [driveItem](https://docs.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "invite" + } + ], + "Id": "C68D4B2B-9D39-4562-92D7-1754A687EF64", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2022-01-12T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "6C5FE045-824E-411C-A316-35ECE4F6DD08", + "ApiChange": "Parameter", + "ChangedApiName": "type", + "ChangeType": "Change", + "Description": "Changed **type** (string) property in [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) resource from required to optional.", + "Target": "createLink" + } + ], + "Id": "6C5FE045-824E-411C-A316-35ECE4F6DD08", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-06-14T00:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "133A857A-DC2E-4A41-BCF7-D2B9BBC016AF", + "ApiChange": "Method", + "ChangedApiName": "createLink", + "ChangeType": "Addition", + "Description": "Added the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) action on a [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", + "Target": "listItem" + } + ], + "Id": "133A857A-DC2E-4A41-BCF7-D2B9BBC016AF", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-06-14T00:00:00.000Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "ApiChange": "Property", + "ChangedApiName": "media", + "ChangeType": "Addition", + "Description": "Added the **media** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "ApiChange": "Property", + "ChangedApiName": "source", + "ChangeType": "Addition", + "Description": "Added the **source** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "ApiChange": "Resource", + "ChangedApiName": "driveItemSource", + "ChangeType": "Addition", + "Description": "Added the [driveItemSource](https://learn.microsoft.com/en-us/graph/api/resources/driveItemSource?view=graph-rest-beta) resource type.", + "Target": "driveItemSource" + }, + { + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "ApiChange": "Resource", + "ChangedApiName": "media", + "ChangeType": "Addition", + "Description": "Added the [media](https://learn.microsoft.com/en-us/graph/api/resources/media?view=graph-rest-beta) resource type.", + "Target": "media" + }, + { + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "ApiChange": "Resource", + "ChangedApiName": "mediaSource", + "ChangeType": "Addition", + "Description": "Added the [mediaSource](https://learn.microsoft.com/en-us/graph/api/resources/mediaSource?view=graph-rest-beta) resource type.", + "Target": "mediaSource" + } + ], + "Id": "f6a7cc4e-7659-11eb-9758-816d298b468f", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-06-30T04:37:12.404Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "9601e3e1-bb2f-4b1d-b8d7-8d806b3039e2", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/listitem-delta?view=graph-rest-beta) method to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) resource.", + "Target": "listItem" + } + ], + "Id": "9601e3e1-bb2f-4b1d-b8d7-8d806b3039e2", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2022-05-18T12:44:48Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "58082105-0d7f-4fad-a743-769515af32b7", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/listitem-delta?view=graph-rest-1.0) method to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-1.0) resource.", + "Target": "listItem" + } + ], + "Id": "58082105-0d7f-4fad-a743-769515af32b7", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2024-04-01T12:44:48Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "aa7c9c04-2a12-458f-9bd5-a46c3b2fccd4", + "ApiChange": "Relationship", + "ChangedApiName": "permissions", + "ChangeType": "Addition", + "Description": "Added the **permissions** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" + } + ], + "Id": "aa7c9c04-2a12-458f-9bd5-a46c3b2fccd4", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-02-05T01:49:05.616Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "d6b5ef23-6041-11eb-8de9-f7f8b8b7f046", + "ApiChange": "Relationship", + "ChangedApiName": "permissions", + "ChangeType": "Addition", + "Description": "Added the **permissions** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" + } + ], + "Id": "d6b38e82-6041-11eb-8de9-f7f8b8b7f046", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-01-27T01:49:05.616Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "d0ae3ac8-8d01-4235-b584-66a251ba1605", + "ApiChange": "Resource", + "ChangedApiName": "revokeGrants,permission", + "ChangeType": "Addition", + "Description": "Added the [revokeGrants](https://learn.microsoft.com/en-us/graph/api/permission-revokeGrants?view=graph-rest-beta) method to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) resource.", + "Target": "revokeGrants,permission" + } + ], + "Id": "d0ae3ac8-8d01-4235-b584-66a251ba1605", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2020-10-15T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Resource", + "ChangedApiName": "pendingOperations", + "ChangeType": "Addition", + "Description": "Added the [pendingOperations](https://learn.microsoft.com/en-us/graph/api/resources/pendingOperations?view=graph-rest-1.0) and [pendingContentUpdate](https://learn.microsoft.com/en-us/graph/api/resources/pendingContentUpdate?view=graph-rest-1.0) resources. The **pendingOperations** resource applies to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", + "Target": "pendingOperations,pendingContentUpdate,driveItem" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Resource", + "ChangedApiName": "restore,driveItem", + "ChangeType": "Addition", + "Description": "Added the [restore](https://learn.microsoft.com/en-us/graph/api/driveitem-restore?view=graph-rest-1.0) action to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) resource.", + "Target": "restore,driveItem" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Property", + "ChangedApiName": "orientation", + "ChangeType": "Addition", + "Description": "Added the **orientation** property to the [photo](https://learn.microsoft.com/en-us/graph/api/resources/photo?view=graph-rest-1.0) resource.", + "Target": "photo" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Property", + "ChangedApiName": "sha256Hash", + "ChangeType": "Addition", + "Description": "Added the **sha256Hash** property to the [hashes](https://learn.microsoft.com/en-us/graph/api/resources/hashes?view=graph-rest-1.0) resource.", + "Target": "hashes" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Parameter", + "ChangedApiName": "deferCommit", + "ChangeType": "Addition", + "Description": "Added the **deferCommit** parameter to the [createUploadSession](https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0) action.", + "Target": "createUploadSession" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Resource", + "ChangedApiName": "storagePlanInformation", + "ChangeType": "Addition", + "Description": "Added the [storagePlanInformation](https://learn.microsoft.com/en-us/graph/api/resources/storagePlanInformation?view=graph-rest-1.0) resource. The **storagePlanInformation** resource applies to the [quota](https://learn.microsoft.com/en-us/graph/api/resources/quota?view=graph-rest-1.0) resource.", + "Target": "storagePlanInformation,quota" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Property", + "ChangedApiName": "fileSize", + "ChangeType": "Addition", + "Description": "Added the **fileSize** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", + "Target": "driveItemUploadableProperties" + }, + { + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "ApiChange": "Property", + "ChangedApiName": "name", + "ChangeType": "Addition", + "Description": "Added the **name** property to the [contentTypeInfo](https://learn.microsoft.com/en-us/graph/api/resources/contentTypeInfo?view=graph-rest-1.0) resource.", + "Target": "contentTypeInfo" + } + ], + "Id": "f444c7a3-65ae-4369-ae50-1cc83c1368d6", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2020-06-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Resource", + "ChangedApiName": "check in,check out,driveItem", + "ChangeType": "Addition", + "Description": "Added the [check in](https://learn.microsoft.com/en-us/graph/api/driveitem-checkin?view=graph-rest-1.0) and [check out](https://learn.microsoft.com/en-us/graph/api/driveitem-checkin?view=graph-rest-1.0) actions on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "check in,check out,driveItem" + }, + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime,password,message", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime**, **password**, and **message** properties on the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-1.0) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "createLink,driveItem" + }, + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Property", + "ChangedApiName": "preventsDownload", + "ChangeType": "Addition", + "Description": "Added the **preventsDownload** property on the [sharingLink](https://learn.microsoft.com/en-us/graph/api/resources/sharinglink?view=graph-rest-1.0) resource.", + "Target": "sharingLink" + }, + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Property", + "ChangedApiName": "permission", + "ChangeType": "Addition", + "Description": "Added the **permission** property on the [sharedDriveItem](https://learn.microsoft.com/en-us/graph/api/resources/shareddriveitem?view=graph-rest-1.0) resource.", + "Target": "sharedDriveItem" + }, + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime,hasPassword,grantedToIdentities", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime**, **hasPassword**, and **grantedToIdentities** properties on the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) resource.", + "Target": "permission" + }, + { + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime,password", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime**, and **password** properties on the [invite](https://learn.microsoft.com/en-us/graph/api/driveitem-invite?view=graph-rest-1.0) action on a [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) resource.", + "Target": "invite,driveItem" + } + ], + "Id": "1bf72b5c-49dc-493f-b9c4-7ba481a71bf2", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2020-04-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "ApiChange": "Property", + "ChangedApiName": "image,video", + "ChangeType": "Addition", + "Description": "Added **image** and **video** properties on the [remoteItem](https://learn.microsoft.com/en-us/graph/api/resources/remoteitem?view=graph-rest-1.0) resource. These properties allow you to retrieve media type thumbnails when combined with an expand function.", + "Target": "remoteItem" + }, + { + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "ApiChange": "Resource", + "ChangedApiName": "grant", + "ChangeType": "Addition", + "Description": "Added the **grant** action to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-1.0) entity.", + "Target": "permission" + }, + { + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "ApiChange": "Property", + "ChangedApiName": "following", + "ChangeType": "Addition", + "Description": "Added the **following** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0) entity.", + "Target": "drive" + }, + { + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "ApiChange": "Resource", + "ChangedApiName": "follow,driveItem", + "ChangeType": "Addition", + "Description": "Added the [follow](https://learn.microsoft.com/en-us/graph/api/driveitem-follow?view=graph-rest-1.0) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0).", + "Target": "follow,driveItem" + }, + { + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "ApiChange": "Resource", + "ChangedApiName": "unfollow,driveItem", + "ChangeType": "Addition", + "Description": "Added the [unfollow](https://learn.microsoft.com/en-us/graph/api/driveitem-unfollow?view=graph-rest-1.0) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0).", + "Target": "unfollow,driveItem" + } + ], + "Id": "ebde237a-60b1-44f6-a7c2-b3cbffe69085", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2020-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", + "ApiChange": "Resource", + "ChangedApiName": "pendingOperations", + "ChangeType": "Addition", + "Description": "Added the [pendingOperations](https://learn.microsoft.com/en-us/graph/api/resources/pendingOperations?view=graph-rest-beta) and [pendingContentUpdate](https://learn.microsoft.com/en-us/graph/api/resources/pendingContentUpdate?view=graph-rest-beta) resources. The **pendingOperations** resource applies to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "pendingOperations,pendingContentUpdate,driveItem" + }, + { + "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", + "ApiChange": "Resource", + "ChangedApiName": "restore,driveItem", + "ChangeType": "Addition", + "Description": "Added the [restore](https://learn.microsoft.com/en-us/graph/api/driveitem-restore?view=graph-rest-beta) action to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "restore,driveItem" + }, + { + "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", + "ApiChange": "Property", + "ChangedApiName": "orientation", + "ChangeType": "Addition", + "Description": "Added the **orientation** property to the [photo](https://learn.microsoft.com/en-us/graph/api/resources/photo?view=graph-rest-beta) resource.", + "Target": "photo" + }, + { + "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", + "ApiChange": "Property", + "ChangedApiName": "sha256Hash", + "ChangeType": "Addition", + "Description": "Added the **sha256Hash** property to the [hashes](https://learn.microsoft.com/en-us/graph/api/resources/hashes?view=graph-rest-beta) resource.", + "Target": "hashes" + } + ], + "Id": "0c88622b-27aa-42ea-a5e9-5aff70352ed3", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "0be72988-c58c-46e3-9037-30c09055afb0", + "ApiChange": "Resource", + "ChangedApiName": "unfollow,driveItem", + "ChangeType": "Addition", + "Description": "Added the [unfollow](https://learn.microsoft.com/en-us/graph/api/driveitem-unfollow?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", + "Target": "unfollow,driveItem" + } + ], + "Id": "0be72988-c58c-46e3-9037-30c09055afb0", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-08-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "b1301589-b835-4f01-8681-09d1a5b37f77", + "ApiChange": "Property", + "ChangedApiName": "expirationDatetime,password", + "ChangeType": "Addition", + "Description": "Added the **expirationDatetime** and **password** properties to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) action.", + "Target": "createLink" + } + ], + "Id": "b1301589-b835-4f01-8681-09d1a5b37f77", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-07-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "ApiChange": "Resource", + "ChangedApiName": "bundle", + "ChangeType": "Addition", + "Description": "Added the [bundle](https://learn.microsoft.com/en-us/graph/api/resources/bundle?view=graph-rest-beta) complex type", + "Target": "bundle" + }, + { + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "ApiChange": "Resource", + "ChangedApiName": "album", + "ChangeType": "Addition", + "Description": "Added the [album](https://learn.microsoft.com/en-us/graph/api/resources/album?view=graph-rest-beta) complex type", + "Target": "album" + }, + { + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "ApiChange": "Property", + "ChangedApiName": "bundles", + "ChangeType": "Addition", + "Description": "Added the **bundles** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-beta) entity", + "Target": "drive" + }, + { + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "ApiChange": "Property", + "ChangedApiName": "bundle", + "ChangeType": "Addition", + "Description": "Added the **bundle** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", + "Target": "driveItem" + }, + { + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "ApiChange": "Resource", + "ChangedApiName": "grant", + "ChangeType": "Addition", + "Description": "Added the **grant** action to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) entity", + "Target": "permission" + } + ], + "Id": "37beea5f-9c8c-423d-9f86-df1562373dc4", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-05-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "48b547db-b370-4514-974e-d499d2b9e763", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime** property to the driveItem_invite DateTimeOffset type.", + "Target": "driveItem_invite" + }, + { + "Id": "48b547db-b370-4514-974e-d499d2b9e763", + "ApiChange": "Property", + "ChangedApiName": "password", + "ChangeType": "Addition", + "Description": "Added the **password** property to the driveItem_invite string type.", + "Target": "driveItem_invite" + } + ], + "Id": "48b547db-b370-4514-974e-d499d2b9e763", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "48b547db-b370-4514-974e-d499d2b9e763", + "ApiChange": "Property", + "ChangedApiName": "subscriptions", + "ChangeType": "Addition", + "Description": "Added the **subscriptions** navigation property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-1.0) entity", + "Target": "driveItem" + } + ], + "Id": "48b547db-b370-4514-974e-d499d2b9e763", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2019-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime** property to the driveItem_invite DateTimeOffset type.", + "Target": "driveItem_invite" + }, + { + "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", + "ApiChange": "Property", + "ChangedApiName": "password", + "ChangeType": "Addition", + "Description": "Added the **password** property to the driveItem_invite string type.", + "Target": "driveItem_invite" + } + ], + "Id": "c5040d49-9511-42c3-8585-90a0bb45bb9f", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2019-02-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "deferCommit", + "ChangeType": "Addition", + "Description": "Added the **deferCommit** argument to the [createUploadSession](https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", + "Target": "createUploadSession,driveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "storagePlanInformation", + "ChangeType": "Addition", + "Description": "Added the [storagePlanInformation](https://learn.microsoft.com/en-us/graph/api/resources/storageplaninformation?view=graph-rest-beta) complex type", + "Target": "storagePlanInformation" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "storagePlanInformation", + "ChangeType": "Addition", + "Description": "Added the **storagePlanInformation** property to the [quota](https://learn.microsoft.com/en-us/graph/api/resources/quota?view=graph-rest-beta) complex type", + "Target": "quota" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "following", + "ChangeType": "Addition", + "Description": "Added the **following** navigation property to the [drive](https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-beta) entity", + "Target": "drive" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "follow,driveItem", + "ChangeType": "Addition", + "Description": "Added the [follow](https://learn.microsoft.com/en-us/graph/api/driveitem-follow?view=graph-rest-beta) action on [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta)", + "Target": "follow,driveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "hasPassword", + "ChangeType": "Addition", + "Description": "Added the **hasPassword** property to the [permission](https://learn.microsoft.com/en-us/graph/api/resources/permission?view=graph-rest-beta) entity", + "Target": "permission" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "preventsDownload", + "ChangeType": "Addition", + "Description": "Added the **preventsDownload** property to the [sharingLink](https://learn.microsoft.com/en-us/graph/api/resources/sharinglink?view=graph-rest-beta) complex type", + "Target": "sharingLink" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "permission", + "ChangeType": "Addition", + "Description": "Added the **permission** navigation property to the [sharedDriveItem](https://learn.microsoft.com/en-us/graph/api/resources/shareddriveitem?view=graph-rest-beta) entity", + "Target": "sharedDriveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "geolocation", + "ChangeType": "Addition", + "Description": "Added the **geolocation** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-beta) entity", + "Target": "columnDefinition" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "geolocationColumn", + "ChangeType": "Addition", + "Description": "Added the [geolocationColumn](https://learn.microsoft.com/en-us/graph/api/resources/geolocationcolumn?view=graph-rest-beta) complex type", + "Target": "geolocationColumn" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "analytics", + "ChangeType": "Addition", + "Description": "Added the **analytics** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", + "Target": "driveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "analytics", + "ChangeType": "Addition", + "Description": "Added the **analytics** property to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) entity", + "Target": "site" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "analytics", + "ChangeType": "Addition", + "Description": "Added the **analytics** property to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) entity", + "Target": "listItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "getActivitiesByInterval", + "ChangeType": "Addition", + "Description": "Added the **getActivitiesByInterval** function on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", + "Target": "driveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "getActivitiesByInterval", + "ChangeType": "Addition", + "Description": "Added the **getActivitiesByInterval** function on the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) entity", + "Target": "site" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "getActivitiesByInterval", + "ChangeType": "Addition", + "Description": "Added the **getActivitiesByInterval** function on the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta) entity", + "Target": "listItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "itemAnalytics", + "ChangeType": "Addition", + "Description": "Added the [itemAnalytics](https://learn.microsoft.com/en-us/graph/api/resources/itemanalytics?view=graph-rest-beta) entity", + "Target": "itemAnalytics" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "itemActivityStat", + "ChangeType": "Addition", + "Description": "Added the [itemActivityStat](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) entity", + "Target": "itemActivityStat" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "itemActionStat", + "ChangeType": "Addition", + "Description": "Added the [itemActionStat](https://learn.microsoft.com/en-us/graph/api/resources/itemactionstat?view=graph-rest-beta) complex type", + "Target": "itemActionStat" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "accessAction", + "ChangeType": "Addition", + "Description": "Added the [accessAction](https://learn.microsoft.com/en-us/graph/api/resources/accessaction?view=graph-rest-beta) complex type", + "Target": "accessAction" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "incompleteData", + "ChangeType": "Addition", + "Description": "Added the [incompleteData](https://learn.microsoft.com/en-us/graph/api/resources/incompletedata?view=graph-rest-beta) complex type", + "Target": "incompleteData" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "access", + "ChangeType": "Addition", + "Description": "Added the **access** property to the [itemActivity](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) complex type", + "Target": "itemActivity" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Property", + "ChangedApiName": "location", + "ChangeType": "Addition", + "Description": "Added the **location** property to the [itemActivity](https://learn.microsoft.com/en-us/graph/api/resources/itemactivity?view=graph-rest-beta) complex type", + "Target": "itemActivity" + } + ], + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2018-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "preview", + "ChangeType": "Addition", + "Description": "Added the **preview** action on the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", + "Target": "driveItem" + }, + { + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "ApiChange": "Resource", + "ChangedApiName": "itemPreviewInfo", + "ChangeType": "Addition", + "Description": "Added the [itemPreviewInfo](https://learn.microsoft.com/en-us/graph/api/resources/itempreviewinfo?view=graph-rest-1.0) complex type", + "Target": "itemPreviewInfo" + } + ], + "Id": "96090dbc-fbdc-4250-a4cc-4672d2799ca9", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2018-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "itemPreviewInfo", + "ChangeType": "Addition", + "Description": "Added new complex type: [itemPreviewInfo](https://learn.microsoft.com/en-us/graph/api/resources/itempreviewinfo?view=graph-rest-beta), ", + "Target": "itemPreviewInfo" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "contentTypeInfo", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003Ename\u003C/b\u003E property to the [contentTypeInfo](https://learn.microsoft.com/en-us/graph/api/resources/contenttypeinfo?view=graph-rest-beta) complex type", + "Target": "contentTypeInfo" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "deleteAction", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003EobjectType\u003C/b\u003E property to the [deleteAction](https://learn.microsoft.com/en-us/graph/api/resources/deleteaction?view=graph-rest-beta) complex type", + "Target": "deleteAction" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "renameAction", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003EnewName\u003C/b\u003E property to the [renameAction](https://learn.microsoft.com/en-us/graph/api/resources/renameaction?view=graph-rest-beta) complex type", + "Target": "renameAction" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "sharepointIds", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003EtenantId\u003C/b\u003E property to the [sharepointIds](https://learn.microsoft.com/en-us/graph/api/resources/renameaction?view=graph-rest-beta) complex type", + "Target": "sharepointIds" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "itemActivityTimeSet", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003ElastRecordedDateTime\u003C/b\u003E property to the [itemActivityTimeSet](https://learn.microsoft.com/en-us/graph/api/resources/itemactivitytimeset?view=graph-rest-beta) complex type", + "Target": "itemActivityTimeSet" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "preview,driveItem", + "ChangeType": "Addition", + "Description": "Added the [preview](https://learn.microsoft.com/en-us/graph/api/driveitem-preview?view=graph-rest-beta) action for the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta) entity", + "Target": "preview,driveItem" + } + ], + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2018-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "baseItemVersion,driveItemVersion,listItemVersion", + "ChangeType": "Addition", + "Description": "Added new entities: [baseItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/baseitemversion?view=graph-rest-1.0), [driveItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/driveitemversion?view=graph-rest-1.0), [listItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/listitemversion?view=graph-rest-1.0), ", + "Target": "baseItemVersion,driveItemVersion,listItemVersion" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "publicationFacet", + "ChangeType": "Addition", + "Description": "Added new complex types: [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationfacet?view=graph-rest-1.0), ", + "Target": "publicationFacet" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "driveItem", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003Epublication\u003C/b\u003E property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", + "Target": "driveItem" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "driveItem", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003Eversions\u003C/b\u003E navigation property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0) entity", + "Target": "driveItem" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "listItem", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003Eversions\u003C/b\u003E navigation property to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-1.0) entity", + "Target": "listItem" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Property", + "ChangedApiName": "siteCollection", + "ChangeType": "Addition", + "Description": "Added the \u003Cb\u003Eroot\u003C/b\u003E property to the [siteCollection](https://learn.microsoft.com/en-us/graph/api/resources/sitecollection?view=graph-rest-1.0) entity", + "Target": "siteCollection" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "restoreVersion,driveItemVersion", + "ChangeType": "Addition", + "Description": "Added the [restoreVersion](https://learn.microsoft.com/en-us/graph/api/driveitemversion-restore?view=graph-rest-1.0) action for the [driveItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/driveitemversion?view=graph-rest-1.0) entity", + "Target": "restoreVersion,driveItemVersion" + }, + { + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "ApiChange": "Resource", + "ChangedApiName": "restoreVersion,listItemVersion", + "ChangeType": "Addition", + "Description": "Added the [restoreVersion](https://learn.microsoft.com/en-us/graph/api/listitemversion-restore?view=graph-rest-1.0) action for the [listItemVersion](https://learn.microsoft.com/en-us/graph/api/resources/listitemversion?view=graph-rest-1.0) entity", + "Target": "restoreVersion,listItemVersion" + } + ], + "Id": "db0e845d-f4e7-46a1-be8c-36ed877104f1", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2018-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "system", + "ChangeType": "Addition", + "Description": "Added the **system** property to the [Drive][Drive-beta] resource.", + "Target": "Drive,Drive-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "activities", + "ChangeType": "Addition", + "Description": "Added the **activities** relationship to the [Drive][Drive-beta] resource.", + "Target": "Drive,Drive-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "publication", + "ChangeType": "Addition", + "Description": "Added the **publication** property to the [DriveItem][DriveItem-beta] resource.", + "Target": "DriveItem,DriveItem-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "activities,versions", + "ChangeType": "Addition", + "Description": "Added the **activities** and **versions** relationships to the [DriveItem][DriveItem-beta] resource.", + "Target": "DriveItem,DriveItem-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "DriveItemVersion,DriveItemVersion-beta,ItemActivity,ItemActivity-beta", + "ChangeType": "Addition", + "Description": "Added new entities: [DriveItemVersion][DriveItemVersion-beta], [ItemActivity][ItemActivity-beta].", + "Target": "DriveItemVersion,DriveItemVersion-beta,ItemActivity,ItemActivity-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "CommentAction,CommentAction-beta,CreateAction,CreateAction-beta,DeleteAction,DeleteAction-beta,EditAction,EditAction-beta,ItemActionSet,ItemActionSet-beta,ItemActivityTimeSet,ItemActivityTimeSet-beta,MentionAction,MentionAction-beta,MoveAction,MoveAction-beta,PublicationFacet,PublicationFacet-beta,RenameAction,RenameAction-beta,RestoreAction,RestoreAction-beta,ShareAction,ShareAction-beta,VersionAction,VersionAction-beta", + "ChangeType": "Addition", + "Description": "Added new complex types: [CommentAction][CommentAction-beta], [CreateAction][CreateAction-beta], [DeleteAction][DeleteAction-beta], [EditAction][EditAction-beta], [ItemActionSet][ItemActionSet-beta], [ItemActivityTimeSet][ItemActivityTimeSet-beta], [MentionAction][MentionAction-beta], [MoveAction][MoveAction-beta], [PublicationFacet][PublicationFacet-beta], [RenameAction][RenameAction-beta], [RestoreAction][RestoreAction-beta], [ShareAction][ShareAction-beta], and [VersionAction][VersionAction-beta].", + "Target": "CommentAction,CommentAction-beta,CreateAction,CreateAction-beta,DeleteAction,DeleteAction-beta,EditAction,EditAction-beta,ItemActionSet,ItemActionSet-beta,ItemActivityTimeSet,ItemActivityTimeSet-beta,MentionAction,MentionAction-beta,MoveAction,MoveAction-beta,PublicationFacet,PublicationFacet-beta,RenameAction,RenameAction-beta,RestoreAction,RestoreAction-beta,ShareAction,ShareAction-beta,VersionAction,VersionAction-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "driveType", + "ChangeType": "Addition", + "Description": "Added the **driveType** property to the [ItemReference][ItemReference-beta] complex type.", + "Target": "ItemReference,ItemReference-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "tenantId", + "ChangeType": "Deletion", + "Description": "Removed the **tenantId** property from [SharepointIds][SharepointIds-beta] complex type.", + "Target": "SharepointIds,SharepointIds-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "CheckIn,CheckIn-beta,CheckOut,CheckOut-beta,DriveItem,DriveItem-beta", + "ChangeType": "Addition", + "Description": "Added the [CheckIn][CheckIn-beta] and [CheckOut][CheckOut-beta] actions on the [DriveItem][DriveItem-beta] resource.", + "Target": "CheckIn,CheckIn-beta,CheckOut,CheckOut-beta,DriveItem,DriveItem-beta" + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "expirationDateTime,password,message,recipients", + "ChangeType": "Addition", + "Description": "Added the **expirationDateTime**, **password**, **message**, and **recipients** properties on the [CreateLink][CreateLink-beta] action on a [DriveItem][DriveItem-beta] resource.", + "Target": "CreateLink,CreateLink-beta,DriveItem,DriveItem-beta" + } + ], + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2017-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "system", + "ChangeType": "Addition", + "Description": "Added the **system** property to the [Drive][] resource.", + "Target": "Drive," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "list", + "ChangeType": "Addition", + "Description": "Added the **list** relationship to the [Drive][] resource.", + "Target": "Drive," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "listItem", + "ChangeType": "Addition", + "Description": "Added the **listItem** relationship to the [DriveItem][] resource.", + "Target": "DriveItem," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "list,listItem", + "ChangeType": "Addition", + "Description": "Added the **list** and **listItem** relationships to the [SharedDriveItem][] resource.", + "Target": "SharedDriveItem," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Resource", + "ChangedApiName": "FolderView,", + "ChangeType": "Addition", + "Description": "Added new complex types: [FolderView][]", + "Target": "FolderView," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "view", + "ChangeType": "Addition", + "Description": "Added the **view** property to the [Folder][] complex type.", + "Target": "Folder," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "driveType", + "ChangeType": "Addition", + "Description": "Added the **driveType** property to the [ItemReference][] complex type.", + "Target": "ItemReference," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "audioBitsPerSample,audioChannels,audioFormat,audioSamplesPerSecond,fourCC,frameRate", + "ChangeType": "Addition", + "Description": "Added the **audioBitsPerSample**, **audioChannels**, **audioFormat**, **audioSamplesPerSecond**, **fourCC** and **frameRate** properties to the [Video][] complex type.", + "Target": "Video," + }, + { + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "ApiChange": "Property", + "ChangedApiName": "audioBitsPerSample,audioChannels,audioFormat,audioSamplesPerSecond,fourCC,frameRate", + "ChangeType": "Addition", + "Description": "Added the **audioBitsPerSample**, **audioChannels**, **audioFormat**, **audioSamplesPerSecond**, **fourCC** and **frameRate** properties to the [Video][Video-beta] complex type.", + "Target": "Video,Video-beta" + } + ], + "Id": "b3d225d5-c098-440d-b732-31466745c40f", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2017-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "ApiChange": "Property", + "ChangedApiName": "configuratorUrl,webHtml,sharingLink,folderView,view,folder,listItem,driveItem,list,drive", + "ChangeType": "Change", + "Description": "Added the **configuratorUrl** and **webHtml** properties to **sharingLink**. Added the **folderView** resource type and the **view** property to the **folder** resource type. Added the **listItem** navigation property to **driveItem**. Added the **list** navigation property to **drive**.", + "Target": "" + } + ], + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2017-05-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "ApiChange": "Property", + "ChangedApiName": "baseItem,driveItem", + "ChangeType": "Addition", + "Description": "Added the **baseItem** resource type, consisting of basic properties from **driveItem**.", + "Target": "" + }, + { + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "ApiChange": "Property", + "ChangedApiName": "sourceItemId,thumbnail,siteUrl,sharepointIds,sharedBy,sharedDateTime,shared,shared,remoteItem,sharepointIds,drive,itemReference,lastAccessedDateTime,fileSystemInfo,driveItem,site,sharedDriveItem,parentReference,baseItem", + "ChangeType": "Addition", + "Description": "Added the **sourceItemId** property to **thumbnail**. Added the **siteUrl** property to **sharepointIds**. Added the **sharedBy** and **sharedDateTime** properties to **shared**. Added the **shared** property to **remoteItem**. Added the **sharepointIds** property to **drive** and **itemReference**. Added **lastAccessedDateTime** to **fileSystemInfo**. Added the **driveItem** and **site** navigation properties to **sharedDriveItem**. Added the **parentReference** property to **baseItem**.", + "Target": "" + }, + { + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "ApiChange": "Resource", + "ChangedApiName": "driveItem,sharedDriveItem,baseItem,identity", + "ChangeType": "Change", + "Description": "Changed **driveItem** and **sharedDriveItem** to inherit from **baseItem**. Marked **identity** as an Open Type.", + "Target": "" + } + ], + "Id": "164c3fa1-35c4-4b49-b6f5-3ecdc1db008e", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2017-05-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _shared_ collection to allow accessing shared driveItems by shareId or sharing URL.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _search_ function to a drive, which allows searching for more items than just those in the drive\u0027s root folder.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added support for _createUploadSession_, which allows uploading files larger than 4 MB to OneDrive, OneDrive for Business, and SharePoint document libraries.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Property", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _sharepointIds_ property to driveItem that returns traditional SharePoint API identifiers for driveItems stored in SharePoint.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Property", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added additional properties on _remoteItem_.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added the _quickXorHash_ value for files in OneDrive for Business.", + "Target": "" + }, + { + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added scope to the _createSharingLink_ to allow creating company sharable links or anonymous sharing links.", + "Target": "" + } + ], + "Id": "e02f3115-51d9-4ae9-914a-bf481ec8a843", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2016-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "method", + "ChangedApiName": "CreateUploadSession,driveItem", + "ChangeType": "Addition", + "Description": "Added **CreateUploadSession** method on **driveItem**, which allows large file and resumable uploads.", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "Property", + "ChangedApiName": "sharepointIds,root", + "ChangeType": "Addition", + "Description": "Added properties for tracking SharePoint IDs on items from SharePoint (**sharepointIds**) and a property to identify root folders (**root**).", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "Resource", + "ChangedApiName": "Shares", + "ChangeType": "Addition", + "Description": "Added **Shares** root collection, which can be used with shareIds or sharing links to access shared items in OneDrive and SharePoint. Returns a new type, sharedDriveItem.", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "method", + "ChangedApiName": "Invite", + "ChangeType": "Addition", + "Description": "Added **Invite** method on driveItem, which allows adding permissions to items.", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "method", + "ChangedApiName": "Search", + "ChangeType": "Addition", + "Description": "Added **Search** method on drive, which allows searching across items in the drive and shared items.", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "Property", + "ChangedApiName": "processingMetadata", + "ChangeType": "Addition", + "Description": "Added **processingMetadata** property on file complex type quickXorHash property on hashes complex type.", + "Target": "" + }, + { + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "ApiChange": "Property", + "ChangedApiName": "quickXorHash", + "ChangeType": "Addition", + "Description": "Added **quickXorHash** property on hashes complex type.", + "Target": "" + } + ], + "Id": "148856d2-071a-4251-b504-cd60ad274362", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2016-09-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _invite_ function to send a sharing invitation to an existing item. A sharing invitation creates a unique sharing link and sends an email to the recipient of the invitation that includes the sharing link. Example: POST /drive/items/{item-id}/invite.", + "Target": "" + } + ], + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2016-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _recent_ function to list a set of items that have been recently used by the signed in user. This list includes items that are in the user\u0027s drive as well as items they have access tofrom other drives. Example: GET /me/drive/recent.", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _sharedWithMe_ function to list the set of items that are shared with the current user. Example: GET /me/drive/sharedWithMe.", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _remoteItem_ type to provide a link to an item in another drive.", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _sharingInvitation_ type to provide details of any associated sharing invitation for this permission.", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _delta_ function to track changes to items in a drive. Example: GET /me/drive/items/{item-id}/delta", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "Added _copy_ that creates a copy of a _driveItem_ (including any children), under a new parent or with a new name. Example: POST /me/drive/items/{item-id}/copy.", + "Target": "" + }, + { + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "ApiChange": "Resource", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "_conflictBehavior_ instance attributes is now applicable to _driveItem_.", + "Target": "" + } + ], + "Id": "c86b8667-3dbb-4d93-8276-ef6e553a1698", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2016-03-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "1f372c0d-a54b-4d8c-a99d-5a8fe1829dfa", + "ApiChange": "Property", + "ChangedApiName": "", + "ChangeType": "Addition", + "Description": "New _remoteItem_ property on driveItem for Microsoft accounts.", + "Target": "" + } + ], + "Id": "1f372c0d-a54b-4d8c-a99d-5a8fe1829dfa", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2016-02-01T00:00:00", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "3b921ce4-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "validation", + "ChangeType": "Addition", + "Description": "Added the **validation** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3b947f84-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "contentApprovalStatus", + "ChangeType": "Addition", + "Description": "Added the **contentApprovalStatus** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3b96e0ff-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "hyperlinkOrPicture", + "ChangeType": "Addition", + "Description": "Added the **hyperlinkOrPicture** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3b9943d2-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "isDeletable", + "ChangeType": "Addition", + "Description": "Added the **isDeletable** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3b9ba4e5-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "isReorderable", + "ChangeType": "Addition", + "Description": "Added the **isReorderable** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3b9e08b8-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "isSealed", + "ChangeType": "Addition", + "Description": "Added the **isSealed** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3ba06d0a-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "propagateChanges", + "ChangeType": "Addition", + "Description": "Added the **propagateChanges** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3ba2ce53-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "term", + "ChangeType": "Addition", + "Description": "Added the **term** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3ba52efc-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "thumbnail", + "ChangeType": "Addition", + "Description": "Added the **thumbnail** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3ba79387-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "type", + "ChangeType": "Addition", + "Description": "Added the **type** property to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3ba9f3c8-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "sourceColumn", + "ChangeType": "Addition", + "Description": "Added the **sourceColumn** relationship to [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-beta) resource", + "Target": "columnDefinition" + }, + { + "Id": "3bac5752-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "associatedHubsUrls", + "ChangeType": "Addition", + "Description": "Added the **associatedHubsUrls** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3baeba51-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "documentSet", + "ChangeType": "Addition", + "Description": "Added the **documentSet** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bb11bbd-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "documentTemplate", + "ChangeType": "Addition", + "Description": "Added the **documentTemplate** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bb37e68-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "isBuiltIn", + "ChangeType": "Addition", + "Description": "Added the **isBuiltIn** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bb5e085-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Property", + "ChangedApiName": "propagateChanges", + "ChangeType": "Addition", + "Description": "Added the **propagateChanges** property to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bb844a3-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "base", + "ChangeType": "Addition", + "Description": "Added the **base** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bbaa58e-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "baseTypes", + "ChangeType": "Addition", + "Description": "Added the **baseTypes** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bbd0822-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "columnPositions", + "ChangeType": "Addition", + "Description": "Added the **columnPositions** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bbf6ac4-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "columns", + "ChangeType": "Addition", + "Description": "Added the **columns** relationship to [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bc1cb23-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Relationship", + "ChangedApiName": "externalColumns", + "ChangeType": "Addition", + "Description": "Added the **externalColumns** relationship to [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource", + "Target": "site" + }, + { + "Id": "3bc42f02-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "columnValidation", + "ChangeType": "Addition", + "Description": "Added the [columnValidation](https://learn.microsoft.com/en-us/graph/api/resources/columnValidation?view=graph-rest-beta) resource type", + "Target": "columnValidation" + }, + { + "Id": "3bc690a5-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "contentApprovalStatusColumn", + "ChangeType": "Addition", + "Description": "Added the [contentApprovalStatusColumn](https://learn.microsoft.com/en-us/graph/api/resources/contentApprovalStatusColumn?view=graph-rest-beta) resource type", + "Target": "contentApprovalStatusColumn" + }, + { + "Id": "3bc8f384-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "displayNameLocalization", + "ChangeType": "Addition", + "Description": "Added the [displayNameLocalization](https://learn.microsoft.com/en-us/graph/api/resources/displayNameLocalization?view=graph-rest-beta) resource type", + "Target": "displayNameLocalization" + }, + { + "Id": "3bcb5608-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "documentSet", + "ChangeType": "Addition", + "Description": "Added the [documentSet](https://learn.microsoft.com/en-us/graph/api/resources/documentSet?view=graph-rest-beta) resource type", + "Target": "documentSet" + }, + { + "Id": "3bcdb7c2-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "documentSetContent", + "ChangeType": "Addition", + "Description": "Added the [documentSetContent](https://learn.microsoft.com/en-us/graph/api/resources/documentSetContent?view=graph-rest-beta) resource type", + "Target": "documentSetContent" + }, + { + "Id": "3bd01a73-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "hyperlinkOrPictureColumn", + "ChangeType": "Addition", + "Description": "Added the [hyperlinkOrPictureColumn](https://learn.microsoft.com/en-us/graph/api/resources/hyperlinkOrPictureColumn?view=graph-rest-beta) resource type", + "Target": "hyperlinkOrPictureColumn" + }, + { + "Id": "3bd27d21-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "termColumn", + "ChangeType": "Addition", + "Description": "Added the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource type", + "Target": "termColumn" + }, + { + "Id": "3bd4dfb4-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Resource", + "ChangedApiName": "thumbnailColumn", + "ChangeType": "Addition", + "Description": "Added the [thumbnailColumn](https://learn.microsoft.com/en-us/graph/api/resources/thumbnailColumn?view=graph-rest-beta) resource type", + "Target": "thumbnailColumn" + }, + { + "Id": "3bd74177-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Enum type", + "ChangedApiName": "columnTypes", + "ChangeType": "Addition", + "Description": "Added the **columnTypes** enumeration type", + "Target": "columnTypes" + }, + { + "Id": "3bd9a452-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "addCopy", + "ChangeType": "Addition", + "Description": "Added the [addCopy](https://learn.microsoft.com/en-us/graph/api/contentType-addCopy?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bdc0649-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "associateWithHubSites", + "ChangeType": "Addition", + "Description": "Added the [associateWithHubSites](https://learn.microsoft.com/en-us/graph/api/contentType-associateWithHubSites?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3bde6804-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "copyToDefaultContentLocation", + "ChangeType": "Addition", + "Description": "Added the [copyToDefaultContentLocation](https://learn.microsoft.com/en-us/graph/api/contentType-copyToDefaultContentLocation?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3be0c9bf-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "publish", + "ChangeType": "Addition", + "Description": "Added the [publish](https://learn.microsoft.com/en-us/graph/api/contentType-publish?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3be32e41-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "unpublish", + "ChangeType": "Addition", + "Description": "Added the [unpublish](https://learn.microsoft.com/en-us/graph/api/contentType-unpublish?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + }, + { + "Id": "3be58f88-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "getApplicableContentTypesForList", + "ChangeType": "Addition", + "Description": "Added the [getApplicableContentTypesForList](https://learn.microsoft.com/en-us/graph/api/site-getApplicableContentTypesForList?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource", + "Target": "site" + }, + { + "Id": "3be7f374-6b7c-11eb-83a5-b441f1c9dab3", + "ApiChange": "Method", + "ChangedApiName": "isPublished", + "ChangeType": "Addition", + "Description": "Added the [isPublished](https://learn.microsoft.com/en-us/graph/api/contentType-isPublished?view=graph-rest-beta) method to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-beta) resource", + "Target": "contentType" + } + ], + "Id": "3b8fbbdf-6b7c-11eb-83a5-b441f1c9dab3", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-03-03T08:44:48.432Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "7a7d0aa0-8196-11eb-9fc2-269673f51d94", + "ApiChange": "Method", + "ChangedApiName": "associateWithHubSites", + "ChangeType": "Change", + "Description": "Changed the return type for the [associateWithHubSites](https://learn.microsoft.com/en-us/graph/api/contentType-associateWithHubSites?view=graph-rest-beta) method.", + "Target": "associateWithHubSites" + }, + { + "Id": "7a7f6ce8-8196-11eb-9fc2-269673f51d94", + "ApiChange": "Method", + "ChangedApiName": "copyToDefaultContentLocation", + "ChangeType": "Change", + "Description": "Changed the return type for the [copyToDefaultContentLocation](https://learn.microsoft.com/en-us/graph/api/contentType-copyToDefaultContentLocation?view=graph-rest-beta) method.", + "Target": "copyToDefaultContentLocation" + }, + { + "Id": "7a81cfec-8196-11eb-9fc2-269673f51d94", + "ApiChange": "Method", + "ChangedApiName": "publish", + "ChangeType": "Change", + "Description": "Changed the return type for the [publish](https://learn.microsoft.com/en-us/graph/api/contentType-publish?view=graph-rest-beta) method.", + "Target": "publish" + }, + { + "Id": "7a8433f7-8196-11eb-9fc2-269673f51d94", + "ApiChange": "Method", + "ChangedApiName": "unpublish", + "ChangeType": "Change", + "Description": "Changed the return type for the [unpublish](https://learn.microsoft.com/en-us/graph/api/contentType-unpublish?view=graph-rest-beta) method.", + "Target": "unpublish" + } + ], + "Id": "7a7aa807-8196-11eb-9fc2-269673f51d94", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-03-10T11:48:06.486Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "EnumType", + "ChangedApiName": "columnTypes", + "ChangeType": "Addition", + "Description": "Added the **columnTypes** enumeration type.", + "Target": "columnTypes" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "columnValidation", + "ChangeType": "Addition", + "Description": "Added the [columnValidation](https://learn.microsoft.com/en-us/graph/api/resources/columnValidation?view=graph-rest-1.0) resource type.", + "Target": "columnValidation" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "contentApprovalStatusColumn", + "ChangeType": "Addition", + "Description": "Added the [contentApprovalStatusColumn](https://learn.microsoft.com/en-us/graph/api/resources/contentApprovalStatusColumn?view=graph-rest-1.0) resource type.", + "Target": "contentApprovalStatusColumn" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "displayNameLocalization", + "ChangeType": "Addition", + "Description": "Added the [displayNameLocalization](https://learn.microsoft.com/en-us/graph/api/resources/displayNameLocalization?view=graph-rest-1.0) resource type.", + "Target": "displayNameLocalization" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "documentSet", + "ChangeType": "Addition", + "Description": "Added the [documentSet](https://learn.microsoft.com/en-us/graph/api/resources/documentSet?view=graph-rest-1.0) resource type.", + "Target": "documentSet" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "documentSetContent", + "ChangeType": "Addition", + "Description": "Added the [documentSetContent](https://learn.microsoft.com/en-us/graph/api/resources/documentSetContent?view=graph-rest-1.0) resource type.", + "Target": "documentSetContent" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "hyperlinkOrPictureColumn", + "ChangeType": "Addition", + "Description": "Added the [hyperlinkOrPictureColumn](https://learn.microsoft.com/en-us/graph/api/resources/hyperlinkOrPictureColumn?view=graph-rest-1.0) resource type.", + "Target": "hyperlinkOrPictureColumn" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "termColumn", + "ChangeType": "Addition", + "Description": "Added the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-1.0) resource type.", + "Target": "termColumn" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Resource", + "ChangedApiName": "thumbnailColumn", + "ChangeType": "Addition", + "Description": "Added the [thumbnailColumn](https://learn.microsoft.com/en-us/graph/api/resources/thumbnailColumn?view=graph-rest-1.0) resource type.", + "Target": "thumbnailColumn" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "contentApprovalStatus", + "ChangeType": "Addition", + "Description": "Added the **contentApprovalStatus** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "hyperlinkOrPicture", + "ChangeType": "Addition", + "Description": "Added the **hyperlinkOrPicture** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "isDeletable", + "ChangeType": "Addition", + "Description": "Added the **isDeletable** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "isReorderable", + "ChangeType": "Addition", + "Description": "Added the **isReorderable** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "isSealed", + "ChangeType": "Addition", + "Description": "Added the **isSealed** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "propagateChanges", + "ChangeType": "Addition", + "Description": "Added the **propagateChanges** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "term", + "ChangeType": "Addition", + "Description": "Added the **term** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "thumbnail", + "ChangeType": "Addition", + "Description": "Added the **thumbnail** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "type", + "ChangeType": "Addition", + "Description": "Added the **type** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "validation", + "ChangeType": "Addition", + "Description": "Added the **validation** property to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "sourceColumn", + "ChangeType": "Addition", + "Description": "Added the **sourceColumn** relationship to the [columnDefinition](https://learn.microsoft.com/en-us/graph/api/resources/columnDefinition?view=graph-rest-1.0) resource.", + "Target": "columnDefinition" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "associatedHubsUrls", + "ChangeType": "Addition", + "Description": "Added the **associatedHubsUrls** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "documentSet", + "ChangeType": "Addition", + "Description": "Added the **documentSet** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "documentTemplate", + "ChangeType": "Addition", + "Description": "Added the **documentTemplate** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "isBuiltIn", + "ChangeType": "Addition", + "Description": "Added the **isBuiltIn** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Property", + "ChangedApiName": "propagateChanges", + "ChangeType": "Addition", + "Description": "Added the **propagateChanges** property to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "base", + "ChangeType": "Addition", + "Description": "Added the **base** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "baseTypes", + "ChangeType": "Addition", + "Description": "Added the **baseTypes** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "columnPositions", + "ChangeType": "Addition", + "Description": "Added the **columnPositions** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "columns", + "ChangeType": "Addition", + "Description": "Added the **columns** relationship to the [contentType](https://learn.microsoft.com/en-us/graph/api/resources/contentType?view=graph-rest-1.0) resource.", + "Target": "contentType" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Relationship", + "ChangedApiName": "externalColumns", + "ChangeType": "Addition", + "Description": "Added the **externalColumns** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "addCopy", + "ChangeType": "Addition", + "Description": "Added the addCopy method to the addCopy resource.", + "Target": "addCopy" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "associateWithHubSites", + "ChangeType": "Addition", + "Description": "Added the associateWithHubSites method to the associateWithHubSites resource.", + "Target": "associateWithHubSites" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "copyToDefaultContentLocation", + "ChangeType": "Addition", + "Description": "Added the copyToDefaultContentLocation method to the copyToDefaultContentLocation resource.", + "Target": "copyToDefaultContentLocation" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "publish", + "ChangeType": "Addition", + "Description": "Added the publish method to the publish resource.", + "Target": "publish" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "unpublish", + "ChangeType": "Addition", + "Description": "Added the unpublish method to the unpublish resource.", + "Target": "unpublish" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "getApplicableContentTypesForList", + "ChangeType": "Addition", + "Description": "Added the getApplicableContentTypesForList method to the getApplicableContentTypesForList resource.", + "Target": "getApplicableContentTypesForList" + }, + { + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "ApiChange": "Method", + "ChangedApiName": "isPublished", + "ChangeType": "Addition", + "Description": "Added the isPublished method to the isPublished resource.", + "Target": "isPublished" + } + ], + "Id": "1e573aef-4ac6-4e73-9424-fc7d8a4203ad", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2021-08-12T04:06:46.3068795Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "27ef62cb-2b26-486e-8c74-fd0ce1e92403", + "ApiChange": "Resource", + "ChangedApiName": "subscription", + "ChangeType": "change", + "Description": "Updated the OneDrive and SharePoint maximum subscription expiration length to 30 days.", + "Target": "subscription" + } + ], + "Id": "27ef62cb-2b26-486e-8c74-fd0ce1e92403", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-06-08T19:00:00.000Z", + "WorkloadArea": "Change notifications", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "c0ff6217-2cfb-47d3-ba44-b31b9f03b234", + "ApiChange": "Resource", + "ChangedApiName": "subscription", + "ChangeType": "change", + "Description": "Updated the OneDrive and SharePoint maximum subscription expiration length to 30 days.", + "Target": "subscription" + } + ], + "Id": "c0ff6217-2cfb-47d3-ba44-b31b9f03b234", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-06-11T19:00:00.001Z", + "WorkloadArea": "Change notifications", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "4f8f9b37-4149-42d5-80af-3b01fff10780", + "ApiChange": "Resource", + "ChangedApiName": "driveItem", + "ChangeType": "change", + "Description": "Removed SharePoint and OneDrive for Business driveItem delta limitation regarding calls targeting non-root folders.", + "Target": "driveItem" + } + ], + "Id": "4f8f9b37-4149-42d5-80af-3b01fff10780", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-06-11T20:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "6f3dd177-b9b4-45c0-8893-c65196a2e502", + "ApiChange": "Resource", + "ChangedApiName": "driveItem", + "ChangeType": "change", + "Description": "Removed SharePoint and OneDrive for Business driveItem delta limitation regarding calls targeting non-root folders.", + "Target": "driveItem" + } + ], + "Id": "6f3dd177-b9b4-45c0-8893-c65196a2e502", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-06-11T20:00:00.001Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", + "ApiChange": "Property", + "ChangedApiName": "malware", + "ChangeType": "Addition", + "Description": "Added the **malware** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", + "ApiChange": "Resource", + "ChangedApiName": "malware", + "ChangeType": "Addition", + "Description": "Added the [malware](https://learn.microsoft.com/en-us/graph/api/resources/malware?view=graph-rest-beta) resource type.", + "Target": "malware" + }, + { + "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", + "ApiChange": "Resource", + "ChangedApiName": "driveItem", + "ChangeType": "change", + "Description": "Removed the SharePoint and OneDrive for Business **driveItem** delta limitation about properties omitted by the delta query for **lastModifiedBy**.", + "Target": "driveItem" + } + ], + "Id": "ed0460c6-664f-485e-81ef-2873f63e0350", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-09-07T20:00:00.001Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", + "ApiChange": "Property", + "ChangedApiName": "malware", + "ChangeType": "Addition", + "Description": "Added the **malware** property to the [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveItem?view=graph-rest-beta) resource.", + "Target": "driveItem" + }, + { + "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", + "ApiChange": "Resource", + "ChangedApiName": "malware", + "ChangeType": "Addition", + "Description": "Added the [malware](https://learn.microsoft.com/en-us/graph/api/resources/malware?view=graph-rest-beta) resource type.", + "Target": "malware" + }, + { + "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", + "ApiChange": "Resource", + "ChangedApiName": "driveItem", + "ChangeType": "change", + "Description": "Removed the SharePoint and OneDrive for Business **driveItem** delta limitation about properties omitted by the delta query for **lastModifiedBy**.", + "Target": "driveItem" + } + ], + "Id": "6e5018b4-0d57-4ae5-a85e-a15e0a4c0e32", + "Cloud": "Prd", + "Version": "v1.0", + "CreatedDateTime": "2021-09-07T09:20:58.5352861Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "F1A3D555-2DA6-4BA2-92C8-7AC9432725A7", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the ability to use timestamp-based delta tokens.", + "Target": "delta" + } + ], + "Id": "F1A3D555-2DA6-4BA2-92C8-7AC9432725A7", + "Cloud": "prd", + "Version": "beta", + "CreatedDateTime": "2021-11-09T20:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "A6837885-9B04-449F-813E-CBA4C6A1D8CF", + "ApiChange": "Method", + "ChangedApiName": "delta", + "ChangeType": "Addition", + "Description": "Added the ability to use timestamp-based delta tokens.", + "Target": "delta" + } + ], + "Id": "A6837885-9B04-449F-813E-CBA4C6A1D8CF", + "Cloud": "prd", + "Version": "v1.0", + "CreatedDateTime": "2021-11-09T20:00:00.000Z", + "WorkloadArea": "Files", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", + "ApiChange": "Relationship", + "ChangedApiName": "parentTerm", + "ChangeType": "Addition", + "Description": "Added the **parentTerm** relationship to the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource.", + "Target": "termColumn" + }, + { + "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", + "ApiChange": "Relationship", + "ChangedApiName": "termSet", + "ChangeType": "Addition", + "Description": "Added the **termSet** relationship to the [termColumn](https://learn.microsoft.com/en-us/graph/api/resources/termColumn?view=graph-rest-beta) resource.", + "Target": "termColumn" + } + ], + "Id": "307e33be-6bd7-42a0-b4d7-74b244dbdf79", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-03-22T05:16:31.2660118Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", + "ApiChange": "Resource", + "ChangedApiName": "siteSettings", + "ChangeType": "Addition", + "Description": "Added the [siteSettings](https://learn.microsoft.com/en-us/graph/api/resources/siteSettings?view=graph-rest-beta) resource type.", + "Target": "siteSettings" + }, + { + "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", + "ApiChange": "Property", + "ChangedApiName": "settings", + "ChangeType": "Addition", + "Description": "Added the **settings** property to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" + }, + { + "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", + "ApiChange": "Method", + "ChangedApiName": "siteSettings", + "ChangeType": "Addition", + "Description": "Added the [Get siteSettings](https://learn.microsoft.com/en-us/graph/api/sitesettings-get?view=graph-rest-beta) action to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", + "Target": "site" + } + ], + "Id": "9ce14ba6-741e-4ca5-9879-f2a9f3adf958", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-03-30T21:36:07.8994263Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", + "ApiChange": "Resource", + "ChangedApiName": "documentSetVersionItem", + "ChangeType": "Addition", + "Description": "Added the [documentSetVersionItem](https://learn.microsoft.com/en-us/graph/api/resources/documentSetVersionItem?view=graph-rest-beta) resource type.", + "Target": "documentSetVersionItem" + }, + { + "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", + "ApiChange": "Resource", + "ChangedApiName": "documentSetVersion", + "ChangeType": "Addition", + "Description": "Added the [documentSetVersion](https://learn.microsoft.com/en-us/graph/api/resources/documentSetVersion?view=graph-rest-beta) resource and supported methods.", + "Target": "documentSetVersion" + }, + { + "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", + "ApiChange": "Relationship", + "ChangedApiName": "documentSetVersions", + "ChangeType": "Addition", + "Description": "Added the **documentSetVersions** relationship to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listItem?view=graph-rest-beta) resource.", + "Target": "listItem" + } + ], + "Id": "19eaf04c-8437-44ca-bdd1-fffacce3f1c3", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-04-25T03:24:57.6436095Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "EnumType", + "ChangedApiName": "longRunningOperationStatus", + "ChangeType": "Addition", + "Description": "Added the **longRunningOperationStatus** enumeration type.", + "Target": "longRunningOperationStatus" + }, + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "Relationship", + "ChangedApiName": "operations", + "ChangeType": "Addition", + "Description": "Added the **operations** relationship to the [list](https://learn.microsoft.com/en-us/graph/api/resources/list?view=graph-rest-1.0) resource.", + "Target": "list" + }, + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "Resource", + "ChangedApiName": "richLongRunningOperation", + "ChangeType": "Addition", + "Description": "Added the [richLongRunningOperation](https://learn.microsoft.com/en-us/graph/api/resources/richLongRunningOperation?view=graph-rest-1.0) resource and a supported method.", + "Target": "richLongRunningOperation" + }, + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "Relationship", + "ChangedApiName": "operations", + "ChangeType": "Addition", + "Description": "Added the **operations** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Target": "site" + }, + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "Method", + "ChangedApiName": "addCopyFromContentTypeHub", + "ChangeType": "Addition", + "Description": "Added the addCopyFromContentTypeHub method to the contentType resource.", + "Target": "contentType" + }, + { + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "ApiChange": "Method", + "ChangedApiName": "getCompatibleHubContentTypes", + "ChangeType": "Addition", + "Description": "Added the getCompatibleHubContentTypes method to the contentType resource.", + "Target": "contentType" + } + ], + "Id": "e572e575-6c8b-41d3-9632-f5dd7a70cb0c", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2022-05-03T06:10:35.3472999Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", + "ApiChange": "Resource", + "ChangedApiName": "documentSetVersionItem", + "ChangeType": "Addition", + "Description": "Added the [documentSetVersionItem](https://learn.microsoft.com/en-us/graph/api/resources/documentsetversionitem?view=graph-rest-1.0) resource type.", + "Target": "documentSetVersionItem" + }, + { + "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", + "ApiChange": "Resource", + "ChangedApiName": "documentSetVersion", + "ChangeType": "Addition", + "Description": "Added the [documentSetVersion](https://learn.microsoft.com/en-us/graph/api/resources/documentsetversion?view=graph-rest-1.0) resource and supported methods.", + "Target": "documentSetVersion" + }, + { + "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", + "ApiChange": "Relationship", + "ChangedApiName": "documentSetVersions", + "ChangeType": "Addition", + "Description": "Added the **documentSetVersions** relationship to the [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-1.0) resource.", + "Target": "listItem" + } + ], + "Id": "b7269ffc-d6e7-46fb-8c8b-af9931aa869b", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2022-08-09T05:35:55.0887308Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, { "ChangeList": [ { - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "horizontalSectionLayoutType", + "ChangeType": "Addition", + "Description": "Added the **horizontalSectionLayoutType** enumeration type.", + "Target": "horizontalSectionLayoutType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "pageLayoutType", + "ChangeType": "Addition", + "Description": "Added the **pageLayoutType** enumeration type.", + "Target": "pageLayoutType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "pagePromotionType", + "ChangeType": "Addition", + "Description": "Added the **pagePromotionType** enumeration type.", + "Target": "pagePromotionType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "sectionEmphasisType", + "ChangeType": "Addition", + "Description": "Added the **sectionEmphasisType** enumeration type.", + "Target": "sectionEmphasisType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "titleAreaLayoutType", + "ChangeType": "Addition", + "Description": "Added the **titleAreaLayoutType** enumeration type.", + "Target": "titleAreaLayoutType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Enumeration", + "ChangedApiName": "titleAreaTextAlignmentType", + "ChangeType": "Addition", + "Description": "Added the **titleAreaTextAlignmentType** enumeration type.", + "Target": "titleAreaTextAlignmentType" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "metaDataKeyStringPair", + "ChangeType": "Addition", + "Description": "Added the [metaDataKeyStringPair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyStringPair?view=graph-rest-beta) resource type.", + "Target": "metaDataKeyStringPair" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "metaDataKeyValuePair", + "ChangeType": "Addition", + "Description": "Added the [metaDataKeyValuePair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyValuePair?view=graph-rest-beta) resource type.", + "Target": "metaDataKeyValuePair" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "reactionsFacet", + "ChangeType": "Addition", + "Description": "Added the [reactionsFacet](https://learn.microsoft.com/en-us/graph/api/resources/reactionsFacet?view=graph-rest-beta) resource type.", + "Target": "reactionsFacet" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "serverProcessedContent", + "ChangeType": "Addition", + "Description": "Added the [serverProcessedContent](https://learn.microsoft.com/en-us/graph/api/resources/serverProcessedContent?view=graph-rest-beta) resource type.", + "Target": "serverProcessedContent" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "sitePageData", + "ChangeType": "Deletion", + "Description": "Removed the **sitePageData** resource type.", + "Target": "sitePageData" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "titleArea", + "ChangeType": "Addition", + "Description": "Added the [titleArea](https://learn.microsoft.com/en-us/graph/api/resources/titleArea?view=graph-rest-beta) resource type.", + "Target": "titleArea" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "webPartData", + "ChangeType": "Addition", + "Description": "Added the [webPartData](https://learn.microsoft.com/en-us/graph/api/resources/webPartData?view=graph-rest-beta) resource type.", + "Target": "webPartData" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "webPartPosition", + "ChangeType": "Addition", + "Description": "Added the [webPartPosition](https://learn.microsoft.com/en-us/graph/api/resources/webPartPosition?view=graph-rest-beta) resource type.", + "Target": "webPartPosition" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "canvasLayout", + "ChangeType": "Addition", + "Description": "Added the [canvasLayout](https://learn.microsoft.com/en-us/graph/api/resources/canvasLayout?view=graph-rest-beta) resource.", + "Target": "canvasLayout" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "horizontalSection", + "ChangeType": "Addition", + "Description": "Added the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource and associated methods.", + "Target": "horizontalSection" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "horizontalSectionColumn", + "ChangeType": "Addition", + "Description": "Added the [horizontalSectionColumn](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSectionColumn?view=graph-rest-beta) resource and associated methods.", + "Target": "horizontalSectionColumn" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "pageLayout", + "ChangeType": "Addition", + "Description": "Added the **pageLayout** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "pageLayoutType", + "ChangeType": "Deletion", + "Description": "Removed the **pageLayoutType** property from the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "promotionKind", + "ChangeType": "Addition", + "Description": "Added the **promotionKind** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", "ApiChange": "Property", - "ChangedApiName": "checkedOutBy", - "ChangeType": "Deletion", - "Description": "Removed the **checkedOutBy** property from the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-beta) resource.", - "Target": "publicationFacet" + "ChangedApiName": "reactions", + "ChangeType": "Addition", + "Description": "Added the **reactions** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" }, { - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", - "ApiChange": "Resource", - "ChangedApiName": "recycleBin", - "ChangeType": "Deletion", - "Description": "Removed the **recycleBin** resource.", - "Target": "recycleBin" + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "showComments", + "ChangeType": "Addition", + "Description": "Added the **showComments** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" }, { - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", - "ApiChange": "Resource", - "ChangedApiName": "recycleBinItem", - "ChangeType": "Deletion", - "Description": "Removed the **recycleBinItem** resource.", - "Target": "recycleBinItem" + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "showRecommendedPages", + "ChangeType": "Addition", + "Description": "Added the **showRecommendedPages** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "thumbnailWebUrl", + "ChangeType": "Addition", + "Description": "Added the **thumbnailWebUrl** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" }, { - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", "ApiChange": "Property", - "ChangedApiName": "isPersonalSite", + "ChangedApiName": "titleArea", + "ChangeType": "Addition", + "Description": "Added the **titleArea** property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Property", + "ChangedApiName": "webParts", "ChangeType": "Deletion", - "Description": "Removed the **isPersonalSite** property from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" + "Description": "Removed the **webParts** property from the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" }, { - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", "ApiChange": "Relationship", - "ChangedApiName": "recycleBin", - "ChangeType": "Deletion", - "Description": "Removed the **recycleBin** relationship from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" + "ChangedApiName": "canvasLayout", + "ChangeType": "Addition", + "Description": "Added the **canvasLayout** relationship to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Relationship", + "ChangedApiName": "webParts", + "ChangeType": "Addition", + "Description": "Added the **webParts** navigation property to the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-beta) resource.", + "Target": "sitePage" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "standardWebPart", + "ChangeType": "Addition", + "Description": "Added the [standardWebPart](https://learn.microsoft.com/en-us/graph/api/resources/standardWebPart?view=graph-rest-beta) resource.", + "Target": "standardWebPart" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "textWebPart", + "ChangeType": "Addition", + "Description": "Added the [textWebPart](https://learn.microsoft.com/en-us/graph/api/resources/textWebPart?view=graph-rest-beta) resource.", + "Target": "textWebPart" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Resource", + "ChangedApiName": "verticalSection", + "ChangeType": "Addition", + "Description": "Added the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource and associated methods.", + "Target": "verticalSection" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Method", + "ChangedApiName": "getPositionOfWebPart", + "ChangeType": "Addition", + "Description": "Added the getPositionOfWebPart method to the webPart resource.", + "Target": "webPart" + }, + { + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "ApiChange": "Method", + "ChangedApiName": "getWebPartsByPosition", + "ChangeType": "Addition", + "Description": "Added the getWebPartsByPosition method to the sitePage resource.", + "Target": "sitePage" + } + ], + "Id": "acbe1bc4-3ced-4e51-b941-36a370205d1f", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2022-12-05T03:42:44.8308328Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "DELETE", + "ChangeType": "Addition", + "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/horizontalSection-delete?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", + "Target": "horizontalSection" + }, + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "POST", + "ChangeType": "Addition", + "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-post-horizontalsection?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", + "Target": "horizontalSection" + }, + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "PATCH", + "ChangeType": "Addition", + "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/horizontalSection-update?view=graph-rest-beta) operation to the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-beta) resource.", + "Target": "horizontalSection" + }, + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "DELETE", + "ChangeType": "Addition", + "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/verticalSection-delete?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", + "Target": "verticalSection" + }, + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "POST", + "ChangeType": "Addition", + "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-post-verticalsection?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", + "Target": "verticalSection" + }, + { + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "ApiChange": "Method", + "ChangedApiName": "PATCH", + "ChangeType": "Addition", + "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/verticalSection-update?view=graph-rest-beta) operation to the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-beta) resource.", + "Target": "verticalSection" + } + ], + "Id": "66e8cc6d-9806-4f63-bde1-7ab0d62a7bb8", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-07-06T03:42:44.8308328Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "59cd1acf-d56a-4cd3-a213-643cbcc3c3ab", + "ApiChange": "Parameter", + "ChangedApiName": "sendNotification", + "ChangeType": "Addition", + "Description": "Added the `sendNotification` parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/driveitem-createlink?view=graph-rest-beta) method of [driveItem](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-beta).", + "Target": "createLink" } ], - "Id": "a74149c7-0b35-4ab3-9907-fc00fb3b02f2", + "Id": "59cd1acf-d56a-4cd3-a213-643cbcc3c3ab", "Cloud": "Prod", "Version": "beta", - "CreatedDateTime": "2024-04-10T21:07:02.6635718Z", + "CreatedDateTime": "2023-03-01T10:39:05.8609784Z", "WorkloadArea": "Files", "SubArea": "" }, { "ChangeList": [ { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "b5aef9f7-ffc6-4018-997a-b7f5dcbfe30f", + "ApiChange": "Parameter", + "ChangedApiName": "sendNotification", + "ChangeType": "Addition", + "Description": "Added the `sendNotification` parameter to the [createLink](https://learn.microsoft.com/en-us/graph/api/listitem-createlink?view=graph-rest-beta) method of [listItem](https://learn.microsoft.com/en-us/graph/api/resources/listitem?view=graph-rest-beta).", + "Target": "createLink" + } + ], + "Id": "b5aef9f7-ffc6-4018-997a-b7f5dcbfe30f", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-03-01T10:39:05.8609784Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "c4086413-821d-4b86-a751-830602979001", + "ApiChange": "Property", + "ChangedApiName": "containerTextWebPartId", + "ChangeType": "Addition", + "Description": "Added the **containerTextWebPartId** property to the [standardWebPart](https://learn.microsoft.com/en-us/graph/api/resources/standardWebPart?view=graph-rest-beta) resource.", + "Target": "standardWebPart" + } + ], + "Id": "c4086413-821d-4b86-a751-830602979001", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-07-05T10:39:05.8609784Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "81fad909-6e78-4228-8879-3f3589b0498e", "ApiChange": "Resource", - "ChangedApiName": "commentAction", - "ChangeType": "Deletion", - "Description": "Removed the **commentAction** resource.", - "Target": "commentAction" + "ChangedApiName": "baseSitePage", + "ChangeType": "Addition", + "Description": "Added the [baseSitePage](https://learn.microsoft.com/en-us/graph/api/resources/baseSitePage?view=graph-rest-beta) resource", + "Target": "baseSitePage" + }, + { + "Id": "d9f1c081-4b9d-47e0-af79-96b681dbd396", + "ApiChange": "Method", + "ChangedApiName": "create", + "ChangeType": "Addition", + "Description": "Added the [create](https://learn.microsoft.com/en-us/graph/api/sitepage-create-webpart?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", + "Target": "webPart" + }, + { + "Id": "ed32b556-30a9-4058-b00f-d9b626c1a87d", + "ApiChange": "Method", + "ChangedApiName": "update", + "ChangeType": "Addition", + "Description": "Added the [update](https://learn.microsoft.com/en-us/graph/api/webpart-update?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", + "Target": "webPart" + }, + { + "Id": "fad07c95-15cf-4c32-9dee-0a14241934c5", + "ApiChange": "Method", + "ChangedApiName": "delete", + "ChangeType": "Addition", + "Description": "Added the [delete](https://learn.microsoft.com/en-us/graph/api/webpart-delete?view=graph-rest-beta) method to the [webpart](https://learn.microsoft.com/en-us/graph/api/resources/webpart?view=graph-rest-beta) resource", + "Target": "webPart" + } + ], + "Id": "81fad909-6e78-4228-8879-3f3589b0498e", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2023-07-13T10:21:51.737705Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "horizontalSectionLayoutType", + "ChangeType": "Addition", + "Description": "Added the **horizontalSectionLayoutType** enumeration type.", + "Target": "horizontalSectionLayoutType" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "pageLayoutType", + "ChangeType": "Addition", + "Description": "Added the **pageLayoutType** enumeration type.", + "Target": "pageLayoutType" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "pagePromotionType", + "ChangeType": "Addition", + "Description": "Added the **pagePromotionType** enumeration type.", + "Target": "pagePromotionType" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "sectionEmphasisType", + "ChangeType": "Addition", + "Description": "Added the **sectionEmphasisType** enumeration type.", + "Target": "sectionEmphasisType" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "titleAreaLayoutType", + "ChangeType": "Addition", + "Description": "Added the **titleAreaLayoutType** enumeration type.", + "Target": "titleAreaLayoutType" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Enumeration", + "ChangedApiName": "titleAreaTextAlignmentType", + "ChangeType": "Addition", + "Description": "Added the **titleAreaTextAlignmentType** enumeration type.", + "Target": "titleAreaTextAlignmentType" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "createAction", - "ChangeType": "Deletion", - "Description": "Removed the **createAction** resource.", - "Target": "createAction" + "ChangedApiName": "metaDataKeyStringPair", + "ChangeType": "Addition", + "Description": "Added the [metaDataKeyStringPair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyStringPair?view=graph-rest-1.0) resource.", + "Target": "metaDataKeyStringPair" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "deleteAction", - "ChangeType": "Deletion", - "Description": "Removed the **deleteAction** resource.", - "Target": "deleteAction" + "ChangedApiName": "metaDataKeyValuePair", + "ChangeType": "Addition", + "Description": "Added the [metaDataKeyValuePair](https://learn.microsoft.com/en-us/graph/api/resources/metaDataKeyValuePair?view=graph-rest-1.0) resource.", + "Target": "metaDataKeyValuePair" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "editAction", - "ChangeType": "Deletion", - "Description": "Removed the **editAction** resource.", - "Target": "editAction" + "ChangedApiName": "reactionsFacet", + "ChangeType": "Addition", + "Description": "Added the [reactionsFacet](https://learn.microsoft.com/en-us/graph/api/resources/reactionsFacet?view=graph-rest-1.0) resource.", + "Target": "reactionsFacet" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "mentionAction", - "ChangeType": "Deletion", - "Description": "Removed the **mentionAction** resource.", - "Target": "mentionAction" + "ChangedApiName": "serverProcessedContent", + "ChangeType": "Addition", + "Description": "Added the [serverProcessedContent](https://learn.microsoft.com/en-us/graph/api/resources/serverProcessedContent?view=graph-rest-1.0) resource.", + "Target": "serverProcessedContent" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "moveAction", - "ChangeType": "Deletion", - "Description": "Removed the **moveAction** resource.", - "Target": "moveAction" + "ChangedApiName": "titleArea", + "ChangeType": "Addition", + "Description": "Added the [titleArea](https://learn.microsoft.com/en-us/graph/api/resources/titleArea?view=graph-rest-1.0) resource.", + "Target": "titleArea" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", - "ApiChange": "Property", - "ChangedApiName": "checkedOutBy", - "ChangeType": "Deletion", - "Description": "Removed the **checkedOutBy** property from the [publicationFacet](https://learn.microsoft.com/en-us/graph/api/resources/publicationFacet?view=graph-rest-1.0) resource.", - "Target": "publicationFacet" + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "webPartData", + "ChangeType": "Addition", + "Description": "Added the [webPartData](https://learn.microsoft.com/en-us/graph/api/resources/webPartData?view=graph-rest-1.0) resource.", + "Target": "webPartData" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "renameAction", - "ChangeType": "Deletion", - "Description": "Removed the **renameAction** resource.", - "Target": "renameAction" + "ChangedApiName": "webPartPosition", + "ChangeType": "Addition", + "Description": "Added the [webPartPosition](https://learn.microsoft.com/en-us/graph/api/resources/webPartPosition?view=graph-rest-1.0) resource.", + "Target": "webPartPosition" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "restoreAction", - "ChangeType": "Deletion", - "Description": "Removed the **restoreAction** resource.", - "Target": "restoreAction" + "ChangedApiName": "baseSitePage", + "ChangeType": "Addition", + "Description": "Added the [baseSitePage](https://learn.microsoft.com/en-us/graph/api/resources/baseSitePage?view=graph-rest-1.0) resource.", + "Target": "baseSitePage" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "shareAction", - "ChangeType": "Deletion", - "Description": "Removed the **shareAction** resource.", - "Target": "shareAction" + "ChangedApiName": "canvasLayout", + "ChangeType": "Addition", + "Description": "Added the [canvasLayout](https://learn.microsoft.com/en-us/graph/api/resources/canvasLayout?view=graph-rest-1.0) resource.", + "Target": "canvasLayout" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "ApiChange": "Resource", - "ChangedApiName": "versionAction", - "ChangeType": "Deletion", - "Description": "Removed the **versionAction** resource.", - "Target": "versionAction" + "ChangedApiName": "horizontalSection", + "ChangeType": "Addition", + "Description": "Added the [horizontalSection](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSection?view=graph-rest-1.0) resource.", + "Target": "horizontalSection" }, { - "Id": "c9013b71-7242-49a0-be40-974079421a17", - "ApiChange": "Property", - "ChangedApiName": "isPersonalSite", - "ChangeType": "Deletion", - "Description": "Removed the **isPersonalSite** property from the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "horizontalSectionColumn", + "ChangeType": "Addition", + "Description": "Added the [horizontalSectionColumn](https://learn.microsoft.com/en-us/graph/api/resources/horizontalSectionColumn?view=graph-rest-1.0) resource.", + "Target": "horizontalSectionColumn" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Relationship", + "ChangedApiName": "pages", + "ChangeType": "Addition", + "Description": "Added the **pages** relationship to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", "Target": "site" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "sitePage", + "ChangeType": "Addition", + "Description": "Added the [sitePage](https://learn.microsoft.com/en-us/graph/api/resources/sitePage?view=graph-rest-1.0) resource.", + "Target": "sitePage" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "standardWebPart", + "ChangeType": "Addition", + "Description": "Added the [standardWebPart](https://learn.microsoft.com/en-us/graph/api/resources/standardWebPart?view=graph-rest-1.0) resource.", + "Target": "standardWebPart" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "textWebPart", + "ChangeType": "Addition", + "Description": "Added the [textWebPart](https://learn.microsoft.com/en-us/graph/api/resources/textWebPart?view=graph-rest-1.0) resource.", + "Target": "textWebPart" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "verticalSection", + "ChangeType": "Addition", + "Description": "Added the [verticalSection](https://learn.microsoft.com/en-us/graph/api/resources/verticalSection?view=graph-rest-1.0) resource.", + "Target": "verticalSection" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Resource", + "ChangedApiName": "webPart", + "ChangeType": "Addition", + "Description": "Added the [webPart](https://learn.microsoft.com/en-us/graph/api/resources/webPart?view=graph-rest-1.0) resource.", + "Target": "webPart" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Method", + "ChangedApiName": "publish", + "ChangeType": "Addition", + "Description": "Added the publish method to the sitePage resource.", + "Target": "sitePage" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Method", + "ChangedApiName": "getPositionOfWebPart", + "ChangeType": "Addition", + "Description": "Added the getPositionOfWebPart method to the webPart resource.", + "Target": "webPart" + }, + { + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", + "ApiChange": "Method", + "ChangedApiName": "getWebPartsByPosition", + "ChangeType": "Addition", + "Description": "Added the getWebPartsByPosition method to the sitePage resource.", + "Target": "sitePage" } ], - "Id": "c9013b71-7242-49a0-be40-974079421a17", + "Id": "153d11d0-4cbe-4e5e-aeaa-0e8869f1f1c8", "Cloud": "Prod", "Version": "v1.0", - "CreatedDateTime": "2024-04-10T21:07:02.6635757Z", + "CreatedDateTime": "2024-04-12T03:30:57.9480878Z", + "WorkloadArea": "Sites and lists", + "SubArea": "" + }, + { + "ChangeList": [ + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "loki", + "ChangeType": "Addition", + "Description": "Added the `loki` member to the **driveItemSourceApplication** enumeration.", + "Target": "driveItemSourceApplication" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "loop", + "ChangeType": "Addition", + "Description": "Added the `loop` member to the **driveItemSourceApplication** enumeration.", + "Target": "driveItemSourceApplication" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "other", + "ChangeType": "Addition", + "Description": "Added the `other` member to the **driveItemSourceApplication** enumeration.", + "Target": "driveItemSourceApplication" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "story", + "ChangeType": "Addition", + "Description": "Added the `story` member to the **mediaSourceContentCategory** enumeration.", + "Target": "mediaSourceContentCategory" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "profile", + "ChangeType": "Addition", + "Description": "Added the `profile` member to the **mediaSourceContentCategory** enumeration.", + "Target": "mediaSourceContentCategory" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "chat", + "ChangeType": "Addition", + "Description": "Added the `chat` member to the **mediaSourceContentCategory** enumeration.", + "Target": "mediaSourceContentCategory" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "note", + "ChangeType": "Addition", + "Description": "Added the `note` member to the **mediaSourceContentCategory** enumeration.", + "Target": "mediaSourceContentCategory" + }, + { + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "ApiChange": "Member", + "ChangedApiName": "comment", + "ChangeType": "Addition", + "Description": "Added the `comment` member to the **mediaSourceContentCategory** enumeration.", + "Target": "mediaSourceContentCategory" + } + ], + "Id": "e1ad1be8-b44a-4390-994e-14f33f153448", + "Cloud": "Prod", + "Version": "beta", + "CreatedDateTime": "2024-02-08T11:42:39.4965313Z", "WorkloadArea": "Files", "SubArea": "" }, { "ChangeList": [ { - "Id": "cca19c51-da79-49de-adc8-799812dba423", - "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainer", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "ApiChange": "Enumeration", + "ChangedApiName": "driveItemSourceApplication", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource and its methods.", - "Target": "fileStorageContainer" + "Description": "Added the **driveItemSourceApplication** enumeration type.", + "Target": "driveItemSourceApplication" }, - { "Id": "cca19c51-da79-49de-adc8-799812dba423", - "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", + { + "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "ApiChange": "Enumeration", + "ChangedApiName": "mediaSourceContentCategory", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-1.0) resource.", - "Target": "fileStorageContainerCustomPropertyDictionary" + "Description": "Added the **mediaSourceContentCategory** enumeration type.", + "Target": "mediaSourceContentCategory" }, { - "Id": "cca19c51-da79-49de-adc8-799812dba423", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerCustomPropertyValue", + "ChangedApiName": "driveItemSource", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-1.0) resource.", - "Target": "fileStorageContainerCustomPropertyValue" + "Description": "Added the [driveItemSource](https://learn.microsoft.com/en-us/graph/api/resources/driveItemSource?view=graph-rest-1.0) resource.", + "Target": "driveItemSource" }, { - "Id": "cca19c51-da79-49de-adc8-799812dba423", - "ApiChange": "Resource", - "ChangedApiName": "fileStorageContainerViewpoint", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "ApiChange": "Property", + "ChangedApiName": "driveItemSource", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-1.0) resource.", - "Target": "fileStorageContainer" + "Description": "Added the **driveItemSource** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", + "Target": "driveItemUploadableProperties" }, { - "Id": "cca19c51-da79-49de-adc8-799812dba423", - "ApiChange": "Relationship", - "ChangedApiName": "permissions", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "ApiChange": "Property", + "ChangedApiName": "mediaSource", "ChangeType": "Addition", - "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", - "Target": "fileStorageContainer" + "Description": "Added the **mediaSource** property to the [driveItemUploadableProperties](https://learn.microsoft.com/en-us/graph/api/resources/driveItemUploadableProperties?view=graph-rest-1.0) resource.", + "Target": "driveItemUploadableProperties" }, { - "Id": "cca19c51-da79-49de-adc8-799812dba423", - "ApiChange": "Relationship", - "ChangedApiName": "drive", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", + "ApiChange": "Resource", + "ChangedApiName": "mediaSource", "ChangeType": "Addition", - "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", - "Target": "fileStorageContainer" + "Description": "Added the [mediaSource](https://learn.microsoft.com/en-us/graph/api/resources/mediaSource?view=graph-rest-1.0) resource.", + "Target": "mediaSource" } ], - "Id": "cca19c51-da79-49de-adc8-799812dba423", + "Id": "93315b42-882f-4215-b210-dea3a56fc469", "Cloud": "Prod", "Version": "v1.0", - "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", + "CreatedDateTime": "2024-02-08T11:42:39.4965347Z", "WorkloadArea": "Files", "SubArea": "" } From e8a1d5d87cfd80301f0dbd81b0db127ec4cd7e76 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Fri, 26 Apr 2024 07:24:23 +0200 Subject: [PATCH 45/96] Update Microsoft.AAD.Reporting.json Edit. --- changelog/Microsoft.AAD.Reporting.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/changelog/Microsoft.AAD.Reporting.json b/changelog/Microsoft.AAD.Reporting.json index bef2160bc1e..b36210cfd96 100644 --- a/changelog/Microsoft.AAD.Reporting.json +++ b/changelog/Microsoft.AAD.Reporting.json @@ -3335,6 +3335,32 @@ "CreatedDateTime": "2024-02-23T18:25:58.892085Z", "WorkloadArea": "Reports and audit", "SubArea": "Identity and access reports" + }, + { + "ChangeList": [ + { + "Id": "cf87be6a-9ea4-4468-8318-d383d2de76b8", + "ApiChange": "Property", + "ChangedApiName": "lastSuccessfulSignInDateTime", + "ChangeType": "Addition", + "Description": "Added the **lastSuccessfulSignInDateTime** property to the [signInActivity](https://learn.microsoft.com/en-us/graph/api/resources/signInActivity?view=graph-rest-1.0) resource.", + "Target": "signInActivity" + }, + { + "Id": "cf87be6a-9ea4-4468-8318-d383d2de76b8", + "ApiChange": "Property", + "ChangedApiName": "lastSuccessfulSignInRequestId", + "ChangeType": "Addition", + "Description": "Added the **lastSuccessfulSignInRequestId** property to the [signInActivity](https://learn.microsoft.com/en-us/graph/api/resources/signInActivity?view=graph-rest-1.0) resource.", + "Target": "signInActivity" + } + ], + "Id": "cf87be6a-9ea4-4468-8318-d383d2de76b8", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2024-04-26T20:31:40.7734069Z", + "WorkloadArea": "Reports", + "SubArea": "Identity and access reports" } ] } From 7d6a60115dbf17875f838ba9ed2d6837ef6263ec Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Fri, 26 Apr 2024 07:31:12 +0200 Subject: [PATCH 46/96] Update signinactivity.md Edit. --- .../v1.0/resources/signinactivity.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/api-reference/v1.0/resources/signinactivity.md b/api-reference/v1.0/resources/signinactivity.md index 4a57e4bfdb1..b53a573b8c9 100644 --- a/api-reference/v1.0/resources/signinactivity.md +++ b/api-reference/v1.0/resources/signinactivity.md @@ -11,23 +11,20 @@ doc_type: "resourcePageType" Namespace: microsoft.graph -Provides the last interactive or non-interactive sign-in time for a specific [user](user.md). Since signInActivity describes a property of the user object, Microsoft Entra ID stores sign in activity for your users for as long as the user object exists. - -Update: Effective 6/1/2024, lastsuccessfulSignInDateTime & lastSuccessfulSignInRequestID are now moved into V1. - -Note: This provides the last successful sign-in time for a specific user, regardless of whether the sign-in was interactive or non-interactive. The data isn't backfilled for this property, so 12/1/2023 is the earliest possible date when a user's sign-in activity could be captured by this property. +Provides the last interactive or non-interactive sign-in *attempt* time for a specific [user](user.md). Because **signInActivity** describes a property of the user object, Microsoft Entra ID stores sign-in activity for your users for as long as the user object exists. +Effective December 1, 2023, the **lastSuccessfulSignInDateTime** property is available to provide the last *successful* sign-in time for a specific user, regardless of whether the sign-in was interactive or non-interactive. The data isn't backfilled for this property. ## Properties | Property | Type | Description | |:-------------|:------------|:------------| -|lastSignInDateTime|DateTimeOffset|The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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'`. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| +|lastSignInDateTime|DateTimeOffset|The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| |lastSignInRequestId|String|Request identifier of the last interactive sign-in performed by this user.| -|lastNonInteractiveSignInDateTime|DateTimeOffset|The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp 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'`. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| +|lastNonInteractiveSignInDateTime|DateTimeOffset|The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| |lastNonInteractiveSignInRequestId|String|Request identifier of the last non-interactive sign-in performed by this user.| -|lastSuccessfulSignInDateTime|DateTimeOffset|The datetime of the user's most recent successful sign in activity.| -|lastSuccessfulSignInRequestId|String|The requestID of the last successful signIn.| +|lastSuccessfulSignInDateTime|DateTimeOffset|The date and time of the user's most recent successful sign-in activity. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| +|lastSuccessfulSignInRequestId|String|The request ID of the last successful sign-in.| ## JSON representation @@ -48,7 +45,9 @@ The following is a JSON representation of the resource. "lastSignInDateTime": "String (timestamp)", "lastSignInRequestId": "String", "lastNonInteractiveSignInDateTime": "String (timestamp)", - "lastNonInteractiveSignInRequestId": "String" + "lastNonInteractiveSignInRequestId": "String", + "lastSuccessfulSignInDateTime": "String (timestamp)", + "lastSuccessfulSignInRequestId": "String" } ``` From 832584ec402c2b14288a9bad0b774ba12f9b8c01 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Fri, 26 Apr 2024 07:33:32 +0200 Subject: [PATCH 47/96] Update signinactivity.md Edit. --- api-reference/v1.0/resources/signinactivity.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api-reference/v1.0/resources/signinactivity.md b/api-reference/v1.0/resources/signinactivity.md index b53a573b8c9..fe6da9b9880 100644 --- a/api-reference/v1.0/resources/signinactivity.md +++ b/api-reference/v1.0/resources/signinactivity.md @@ -19,16 +19,16 @@ Effective December 1, 2023, the **lastSuccessfulSignInDateTime** property is ava | Property | Type | Description | |:-------------|:------------|:------------| -|lastSignInDateTime|DateTimeOffset|The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| -|lastSignInRequestId|String|Request identifier of the last interactive sign-in performed by this user.| |lastNonInteractiveSignInDateTime|DateTimeOffset|The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client attempted (either successfully or unsuccessfully) to sign in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Microsoft Entra ID maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| |lastNonInteractiveSignInRequestId|String|Request identifier of the last non-interactive sign-in performed by this user.| +|lastSignInDateTime|DateTimeOffset|The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user attempted (either successfully or unsuccessfully) to sign in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`. Microsoft Entra ID maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see [Manage inactive user accounts in Microsoft Entra ID](/azure/active-directory/reports-monitoring/howto-manage-inactive-user-accounts).| +|lastSignInRequestId|String|Request identifier of the last interactive sign-in performed by this user.| |lastSuccessfulSignInDateTime|DateTimeOffset|The date and time of the user's most recent successful sign-in activity. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is `2014-01-01T00:00:00Z`.| |lastSuccessfulSignInRequestId|String|The request ID of the last successful sign-in.| ## JSON representation -The following is a JSON representation of the resource. +The following JSON representation shows the resource type. ``` http -DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId} +DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z ``` From dd784dfdf62be5d8562321d2437914bfbc7703ee Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:00:51 -0700 Subject: [PATCH 54/96] Update filestorage-list-containers.md --- api-reference/v1.0/api/filestorage-list-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestorage-list-containers.md b/api-reference/v1.0/api/filestorage-list-containers.md index d6d72822800..a3ba3aabee9 100644 --- a/api-reference/v1.0/api/filestorage-list-containers.md +++ b/api-reference/v1.0/api/filestorage-list-containers.md @@ -63,7 +63,7 @@ The following example enumerates all containers of a given container type. } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers?$filter=containerTypeId eq {containerTypeId} +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers?$filter=containerTypeId eq e2756c4d-fa33-4452-9c36-2325686e1082 ``` ### Response From 4ef6043309d32f0e8a09716d3959ffc11b79ddde Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:01:39 -0700 Subject: [PATCH 55/96] Update filestoragecontainer-activate.md --- api-reference/v1.0/api/filestoragecontainer-activate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-activate.md b/api-reference/v1.0/api/filestoragecontainer-activate.md index d371f6ea1e3..5bbae82efa2 100644 --- a/api-reference/v1.0/api/filestoragecontainer-activate.md +++ b/api-reference/v1.0/api/filestoragecontainer-activate.md @@ -62,7 +62,7 @@ The following example shows a request. } --> ``` http -POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/activate +POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/activate ``` ### Response From 90072715ba414410e95f2a4b8dca174f38638e2f Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:02:09 -0700 Subject: [PATCH 56/96] Update filestoragecontainer-delete-customproperty.md --- .../v1.0/api/filestoragecontainer-delete-customproperty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md index 06dc4bb689c..5531d1dc4c2 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-customproperty.md @@ -51,7 +51,7 @@ The following example deletes multiple custom properties. } --> ``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties Content-type: application/json { From bd298a8cda5a1e763fbf2146d080fd8ad28a829d Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:03:51 -0700 Subject: [PATCH 57/96] Update filestoragecontainer-delete-permissions.md --- .../v1.0/api/filestoragecontainer-delete-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md index 1c528eb79ad..0be708df873 100644 --- a/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-delete-permissions.md @@ -53,7 +53,7 @@ The following example shows a request. } --> ``` http -DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +DELETE https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/permissions/cmVhZGVyX2k6MCMuZnxtZW1iZXJzaGlwfHJvcnlicjExMUBvdXRsb29rLmNvbQ ``` ### Response From b0da571a8f9068d8720d4ebb94feb00af62ea605 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:08:00 -0700 Subject: [PATCH 58/96] Update filestoragecontainer-get-drive.md --- api-reference/v1.0/api/filestoragecontainer-get-drive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get-drive.md b/api-reference/v1.0/api/filestoragecontainer-get-drive.md index a164b5f0cb5..3345841ba11 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get-drive.md +++ b/api-reference/v1.0/api/filestoragecontainer-get-drive.md @@ -55,7 +55,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/drive +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/drive ``` From 7ff843bf7987a536436b3c0342db8bab2163385a Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:08:40 -0700 Subject: [PATCH 59/96] Update filestoragecontainer-get.md --- api-reference/v1.0/api/filestoragecontainer-get.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get.md b/api-reference/v1.0/api/filestoragecontainer-get.md index 8f78b15cc42..48e333f71e4 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get.md +++ b/api-reference/v1.0/api/filestoragecontainer-get.md @@ -50,7 +50,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId} +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z" ``` ### Response From 0f460b6a6fbcfd577307abf4284fc655f7ffdf87 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:11:57 -0700 Subject: [PATCH 60/96] Update filestoragecontainer-list-customproperty.md --- .../v1.0/api/filestoragecontainer-list-customproperty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md index 01581f4e36d..efbc64818b3 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-customproperty.md @@ -49,7 +49,7 @@ The following example shows how to get a custom property named `clientUniquieId` } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties/clientUniqueId +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties/clientUniqueId ``` ### Response @@ -78,7 +78,7 @@ The following example shows how to get all the custom properties of a **fileStor } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties/ +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties/ ``` ### Response From 5b503ea40deaff72275ebb4a005632dd5cd7cd7c Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:12:24 -0700 Subject: [PATCH 61/96] Update filestoragecontainer-get.md --- api-reference/v1.0/api/filestoragecontainer-get.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-get.md b/api-reference/v1.0/api/filestoragecontainer-get.md index 48e333f71e4..a607b328d97 100644 --- a/api-reference/v1.0/api/filestoragecontainer-get.md +++ b/api-reference/v1.0/api/filestoragecontainer-get.md @@ -50,7 +50,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z" +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z ``` ### Response From 957715df3a5c5e0e1f7a329b57c6379023bd65b0 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:13:17 -0700 Subject: [PATCH 62/96] Update filestoragecontainer-list-permissions.md --- api-reference/v1.0/api/filestoragecontainer-list-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md index 007232888ff..95afc6c6979 100644 --- a/api-reference/v1.0/api/filestoragecontainer-list-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-list-permissions.md @@ -52,7 +52,7 @@ The following example shows a request. } --> ``` http -GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions +GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/permissions ``` ### Response From 2a0616cbb6c230e8745192217d3fa2068b4bcfec Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:13:57 -0700 Subject: [PATCH 63/96] Update filestoragecontainer-post-customproperty.md --- .../v1.0/api/filestoragecontainer-post-customproperty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md index aaa560fc1c3..91417521544 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-customproperty.md @@ -88,7 +88,7 @@ The following example shows how to create a searchable custom property called `c } --> ``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties Content-Type: application/json { @@ -117,7 +117,7 @@ The following example shows how to create multiple custom properties for a conta } --> ``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties Content-Type: application/json { From fa709f692c0976215c6267e7d9a5f41758933b99 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:14:54 -0700 Subject: [PATCH 64/96] Update filestoragecontainer-post-permissions.md --- .../v1.0/api/filestoragecontainer-post-permissions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md index 691d8762c0d..bdf0a464e57 100644 --- a/api-reference/v1.0/api/filestoragecontainer-post-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-post-permissions.md @@ -29,7 +29,7 @@ Choose the permission or permissions marked as least privileged for this API. Us } --> ``` http -POST /storage/fileStorage/containers/{fileStorageContainerId}/permissions +POST /storage/fileStorage/containers/{containerId}/permissions ``` ## Request headers @@ -61,7 +61,7 @@ The following example shows how to add a new user as a reader to a container. } --> ``` http -POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions +POST https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/permissions Content-type: application/json { From d69642d8e0c55770143c3845e7fb0e2eab2d683d Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:16:37 -0700 Subject: [PATCH 65/96] Update filestoragecontainer-update-customproperty.md --- .../v1.0/api/filestoragecontainer-update-customproperty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md index e5ae83f022f..a15041f758c 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md @@ -63,7 +63,7 @@ The following example updates the `value` property of the custom properties `cli } --> ``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/customProperties +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties Content-type: application/json { From 80de02a6880b653d83d5c352dd4c3babd46f3073 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:17:22 -0700 Subject: [PATCH 66/96] Update filestoragecontainer-update-permissions.md --- .../v1.0/api/filestoragecontainer-update-permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md index 0b5872a821a..850e5e64558 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-permissions.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-permissions.md @@ -60,7 +60,7 @@ The following example shows a request. } --> ``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/{containerId}/permissions/{permissionId} +PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/permissions/cmVhZGVyX2k6MCMuZnxtZW1iZXJzaGlwfHJvcnlicjExMUBvdXRsb29rLmNvbQ Content-Type: application/json { From 71179dce817f214c2d5d7ca7923f4a777d44a32d Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:17:57 -0700 Subject: [PATCH 67/96] Update filestoragecontainer-update.md --- api-reference/v1.0/api/filestoragecontainer-update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update.md b/api-reference/v1.0/api/filestoragecontainer-update.md index 9fc988251bb..39d947712a1 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update.md +++ b/api-reference/v1.0/api/filestoragecontainer-update.md @@ -54,7 +54,7 @@ The following example shows a request. } --> ``` http -PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/{containerId} +PATCH https://graph.microsoft.com/beta/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z Content-Type: application/json { From c22f85de31859498679097ef56377323a38c255f Mon Sep 17 00:00:00 2001 From: Mike Norman <1462796+MichaelNorman@users.noreply.github.com> Date: Mon, 29 Apr 2024 23:21:42 -0500 Subject: [PATCH 68/96] Fixe indent in api-reference/v1.0/toc.yml --- api-reference/v1.0/toc.yml | 64 +++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/api-reference/v1.0/toc.yml b/api-reference/v1.0/toc.yml index e616a39fb10..fa0b638d4fa 100644 --- a/api-reference/v1.0/toc.yml +++ b/api-reference/v1.0/toc.yml @@ -5174,38 +5174,38 @@ items: - name: Delete permission href: api/permission-delete.md - name: File storage containers - href: resources/filestoragecontainer.md - items: - - name: List file storage containers - href: api/filestorage-list-containers.md - - name: Create file storage container - href: api/filestoragecontainer-post.md - - name: Get file storage container - href: api/filestoragecontainer-get.md - - name: Get drive - href: api/filestoragecontainer-get-drive.md - - name: Update file storage containers - href: api/filestoragecontainer-update.md - - name: Delete file storage container - href: api/filestorage-delete-containers.md - - name: Activate file storage container - href: api/filestoragecontainer-activate.md - - name: List permissions - href: api/filestoragecontainer-list-permissions.md - - name: Add permissions - href: api/filestoragecontainer-post-permissions.md - - name: Update permissions - href: api/filestoragecontainer-update-permissions.md - - name: Delete permissions - href: api/filestoragecontainer-delete-permissions.md - - name: List custom property - href: api/filestoragecontainer-list-customproperty.md - - name: Add custom property - href: api/filestoragecontainer-post-customproperty.md - - name: Update custom property - href: api/filestoragecontainer-update-customproperty.md - - name: Delete custom property - href: api/filestoragecontainer-delete-customproperty.md + href: resources/filestoragecontainer.md + items: + - name: List file storage containers + href: api/filestorage-list-containers.md + - name: Create file storage container + href: api/filestoragecontainer-post.md + - name: Get file storage container + href: api/filestoragecontainer-get.md + - name: Get drive + href: api/filestoragecontainer-get-drive.md + - name: Update file storage containers + href: api/filestoragecontainer-update.md + - name: Delete file storage container + href: api/filestorage-delete-containers.md + - name: Activate file storage container + href: api/filestoragecontainer-activate.md + - name: List permissions + href: api/filestoragecontainer-list-permissions.md + - name: Add permissions + href: api/filestoragecontainer-post-permissions.md + - name: Update permissions + href: api/filestoragecontainer-update-permissions.md + - name: Delete permissions + href: api/filestoragecontainer-delete-permissions.md + - name: List custom property + href: api/filestoragecontainer-list-customproperty.md + - name: Add custom property + href: api/filestoragecontainer-post-customproperty.md + - name: Update custom property + href: api/filestoragecontainer-update-customproperty.md + - name: Delete custom property + href: api/filestoragecontainer-delete-customproperty.md - name: Identity and access items: - name: Overview From 1c1dc2188c8b874619184f1b7f29668c34d9cf28 Mon Sep 17 00:00:00 2001 From: Mike Norman <1462796+MichaelNorman@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:06:54 +0700 Subject: [PATCH 69/96] Another attempt at fixing toc.yml --- api-reference/v1.0/toc.yml | 66 +++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/api-reference/v1.0/toc.yml b/api-reference/v1.0/toc.yml index fa0b638d4fa..1297c290a65 100644 --- a/api-reference/v1.0/toc.yml +++ b/api-reference/v1.0/toc.yml @@ -5173,39 +5173,39 @@ items: href: api/permission-update.md - name: Delete permission href: api/permission-delete.md - - name: File storage containers - href: resources/filestoragecontainer.md - items: - - name: List file storage containers - href: api/filestorage-list-containers.md - - name: Create file storage container - href: api/filestoragecontainer-post.md - - name: Get file storage container - href: api/filestoragecontainer-get.md - - name: Get drive - href: api/filestoragecontainer-get-drive.md - - name: Update file storage containers - href: api/filestoragecontainer-update.md - - name: Delete file storage container - href: api/filestorage-delete-containers.md - - name: Activate file storage container - href: api/filestoragecontainer-activate.md - - name: List permissions - href: api/filestoragecontainer-list-permissions.md - - name: Add permissions - href: api/filestoragecontainer-post-permissions.md - - name: Update permissions - href: api/filestoragecontainer-update-permissions.md - - name: Delete permissions - href: api/filestoragecontainer-delete-permissions.md - - name: List custom property - href: api/filestoragecontainer-list-customproperty.md - - name: Add custom property - href: api/filestoragecontainer-post-customproperty.md - - name: Update custom property - href: api/filestoragecontainer-update-customproperty.md - - name: Delete custom property - href: api/filestoragecontainer-delete-customproperty.md + - name: File storage containers + href: resources/filestoragecontainer.md + items: + - name: List file storage containers + href: api/filestorage-list-containers.md + - name: Create file storage container + href: api/filestoragecontainer-post.md + - name: Get file storage container + href: api/filestoragecontainer-get.md + - name: Get drive + href: api/filestoragecontainer-get-drive.md + - name: Update file storage containers + href: api/filestoragecontainer-update.md + - name: Delete file storage container + href: api/filestorage-delete-containers.md + - name: Activate file storage container + href: api/filestoragecontainer-activate.md + - name: List permissions + href: api/filestoragecontainer-list-permissions.md + - name: Add permissions + href: api/filestoragecontainer-post-permissions.md + - name: Update permissions + href: api/filestoragecontainer-update-permissions.md + - name: Delete permissions + href: api/filestoragecontainer-delete-permissions.md + - name: List custom property + href: api/filestoragecontainer-list-customproperty.md + - name: Add custom property + href: api/filestoragecontainer-post-customproperty.md + - name: Update custom property + href: api/filestoragecontainer-update-customproperty.md + - name: Delete custom property + href: api/filestoragecontainer-delete-customproperty.md - name: Identity and access items: - name: Overview From f5711f7d4fcb9015cafbfd97927e128abc8526c7 Mon Sep 17 00:00:00 2001 From: Mike Norman <1462796+MichaelNorman@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:20:15 +0700 Subject: [PATCH 70/96] Cultivating a hatred for YAML. --- api-reference/v1.0/toc.yml | 60 +++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/api-reference/v1.0/toc.yml b/api-reference/v1.0/toc.yml index 1297c290a65..012024432d2 100644 --- a/api-reference/v1.0/toc.yml +++ b/api-reference/v1.0/toc.yml @@ -5175,37 +5175,37 @@ items: href: api/permission-delete.md - name: File storage containers href: resources/filestoragecontainer.md - items: - - name: List file storage containers - href: api/filestorage-list-containers.md - - name: Create file storage container - href: api/filestoragecontainer-post.md - - name: Get file storage container - href: api/filestoragecontainer-get.md - - name: Get drive - href: api/filestoragecontainer-get-drive.md - - name: Update file storage containers - href: api/filestoragecontainer-update.md - - name: Delete file storage container - href: api/filestorage-delete-containers.md - - name: Activate file storage container - href: api/filestoragecontainer-activate.md - - name: List permissions + items: + - name: List file storage containers + href: api/filestorage-list-containers.md + - name: Create file storage container + href: api/filestoragecontainer-post.md + - name: Get file storage container + href: api/filestoragecontainer-get.md + - name: Get drive + href: api/filestoragecontainer-get-drive.md + - name: Update file storage containers + href: api/filestoragecontainer-update.md + - name: Delete file storage container + href: api/filestorage-delete-containers.md + - name: Activate file storage container + href: api/filestoragecontainer-activate.md + - name: List permissions href: api/filestoragecontainer-list-permissions.md - - name: Add permissions - href: api/filestoragecontainer-post-permissions.md - - name: Update permissions - href: api/filestoragecontainer-update-permissions.md - - name: Delete permissions - href: api/filestoragecontainer-delete-permissions.md - - name: List custom property - href: api/filestoragecontainer-list-customproperty.md - - name: Add custom property - href: api/filestoragecontainer-post-customproperty.md - - name: Update custom property - href: api/filestoragecontainer-update-customproperty.md - - name: Delete custom property - href: api/filestoragecontainer-delete-customproperty.md + - name: Add permissions + href: api/filestoragecontainer-post-permissions.md + - name: Update permissions + href: api/filestoragecontainer-update-permissions.md + - name: Delete permissions + href: api/filestoragecontainer-delete-permissions.md + - name: List custom property + href: api/filestoragecontainer-list-customproperty.md + - name: Add custom property + href: api/filestoragecontainer-post-customproperty.md + - name: Update custom property + href: api/filestoragecontainer-update-customproperty.md + - name: Delete custom property + href: api/filestoragecontainer-delete-customproperty.md - name: Identity and access items: - name: Overview From e43cb84550bc743e9c91128965c73e9a5b142dc8 Mon Sep 17 00:00:00 2001 From: Mike Norman <1462796+MichaelNorman@users.noreply.github.com> Date: Tue, 30 Apr 2024 14:05:20 +0700 Subject: [PATCH 71/96] Acrolinx and final review pass. --- .../v1.0/api/filestoragecontainer-update-customproperty.md | 2 +- api-reference/v1.0/resources/filestoragecontainer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md index a15041f758c..9cae21ae472 100644 --- a/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md +++ b/api-reference/v1.0/api/filestoragecontainer-update-customproperty.md @@ -11,7 +11,7 @@ doc_type: apiPageType Namespace: microsoft.graph -Update one or multiple custom properties on a [fileStorageContainer](../resources/filestoragecontainer.md). Only the **value** and **isSearchable** attributes of custom properties can be updated. Only the custom properties specified in the request body are updated. If a custom property specified in the request body doesn't exist on the container, it is created. +Update one or multiple custom properties on a [fileStorageContainer](../resources/filestoragecontainer.md). Only the **value** and **isSearchable** attributes of custom properties can be updated. Only the custom properties specified in the request body are updated. Custom properties specified in the request body are created if they don't already exist on the container. Updating a custom property to a `null` value deletes the property from the container. diff --git a/api-reference/v1.0/resources/filestoragecontainer.md b/api-reference/v1.0/resources/filestoragecontainer.md index af875b1afd0..60c08306434 100644 --- a/api-reference/v1.0/resources/filestoragecontainer.md +++ b/api-reference/v1.0/resources/filestoragecontainer.md @@ -43,7 +43,7 @@ Represents a location where multiple users or a group of users can store files a |description|String|Provides a user-visible description of the **fileStorageContainer**. Read-write.| |displayName|String|The display name of the **fileStorageContainer**. Read-write.| |id|String|The unique stable identifier of the **filerStorageContainer**. Read-only.| -|status|fileStorageContainerStatus|Status of the **fileStorageContainer**. Containers are created as inactive and require activation. Inactive containers are subjected to automatic deletion in 24 hours.The possible values are: `inactive `, `active `. Read-only.| +|status|fileStorageContainerStatus|Status of the **fileStorageContainer**. Containers are created as inactive and require activation. Inactive containers are subjected to automatic deletion in 24 hours. The possible values are: `inactive `, `active `. Read-only.| |viewpoint|[fileStorageContainerViewpoint](../resources/filestoragecontainerviewpoint.md)|Data specific to the current user. Read-only.| ## Relationships From 91ed7c9a34916607b022c9a03e07a8bdc75e957a Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:34:58 +0200 Subject: [PATCH 72/96] Update user-list.md Edit. --- api-reference/v1.0/api/user-list.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api-reference/v1.0/api/user-list.md b/api-reference/v1.0/api/user-list.md index 585d5df41b7..62be320c4a8 100644 --- a/api-reference/v1.0/api/user-list.md +++ b/api-reference/v1.0/api/user-list.md @@ -929,10 +929,9 @@ Content-type: application/json "lastSignInDateTime": "2021-06-17T16:41:33Z", "lastSignInRequestId": "d4d31c40-4c36-4775-ad59-7d1e6a171f00", "lastNonInteractiveSignInDateTime": "0001-01-01T00:00:00Z", - "lastNonInteractiveSignInRequestId": "" + "lastNonInteractiveSignInRequestId": "", "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", "lastSuccessfulSignInRequestId": "" - } }, { @@ -943,7 +942,7 @@ Content-type: application/json "lastSignInDateTime": "2021-07-29T15:53:27Z", "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", - "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200" + "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", "lastSuccessfulSignInRequestId": "" } From 65c6eed7713301ec63cb92b3bd69b5120a2132b0 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:39:05 +0200 Subject: [PATCH 73/96] Update user-list.md Edit. --- api-reference/beta/api/user-list.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/api-reference/beta/api/user-list.md b/api-reference/beta/api/user-list.md index ac5d0a797f4..6176ecb0144 100644 --- a/api-reference/beta/api/user-list.md +++ b/api-reference/beta/api/user-list.md @@ -386,7 +386,9 @@ Content-type: application/json "lastSignInDateTime": "2021-07-29T15:53:27Z", "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", - "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200" + "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", + "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInRequestId": "" } } ] @@ -432,7 +434,9 @@ Content-type: application/json "lastSignInDateTime": "2021-06-17T16:41:33Z", "lastSignInRequestId": "d4d31c40-4c36-4775-ad59-7d1e6a171f00", "lastNonInteractiveSignInDateTime": "0001-01-01T00:00:00Z", - "lastNonInteractiveSignInRequestId": "" + "lastNonInteractiveSignInRequestId": "", + "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInRequestId": "" } }, { @@ -442,7 +446,9 @@ Content-type: application/json "lastSignInDateTime": "2021-07-29T15:53:27Z", "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", - "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200" + "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", + "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInRequestId": "" } } ] From ffddd47f43fbc770170145333f5810898b7cb342 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:41:44 +0200 Subject: [PATCH 74/96] Update whats-new-overview.md Edit. --- concepts/whats-new-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index a412ca1e784..c6470241c6e 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -42,7 +42,7 @@ Added the [upsert](/graph/api/group-upsert) capability to the [group resource ty ### Reports | Identity and access reports -Added the **lastSuccessfulSignInDateTime** and **lastSuccessfulSignInRequestId** properties to the [signInActivity](/graph/api/resources/signinactivity) resource. Use the **lastSuccessfulSignInDateTime** property to provide the last *successful* sign-in time for a specific user, regardless of whether the sign-in was interactive or non-interactive. The data isn't backfilled for this property. +Added the **lastSuccessfulSignInDateTime** and **lastSuccessfulSignInRequestId** properties to the [signInActivity](/graph/api/resources/signinactivity) resource. Use the **lastSuccessfulSignInDateTime** property to get the last *successful* sign-in time for a specific user, regardless of whether the sign-in was interactive or non-interactive. The data isn't backfilled for this property. ### Security | Legacy alerts From d0d37e77f5ecb37a78f7f32bafaa8611edbf7c2b Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:43:29 +0200 Subject: [PATCH 75/96] Update user-list.md Edit. --- api-reference/v1.0/api/user-list.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-reference/v1.0/api/user-list.md b/api-reference/v1.0/api/user-list.md index 62be320c4a8..e65eb5dfc7c 100644 --- a/api-reference/v1.0/api/user-list.md +++ b/api-reference/v1.0/api/user-list.md @@ -930,7 +930,7 @@ Content-type: application/json "lastSignInRequestId": "d4d31c40-4c36-4775-ad59-7d1e6a171f00", "lastNonInteractiveSignInDateTime": "0001-01-01T00:00:00Z", "lastNonInteractiveSignInRequestId": "", - "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInDateTime": "", "lastSuccessfulSignInRequestId": "" } }, @@ -943,7 +943,7 @@ Content-type: application/json "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", - "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInDateTime": "", "lastSuccessfulSignInRequestId": "" } } From 4cc39f6517b8f963b885f0a8d3025454b816bdf6 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:44:37 +0200 Subject: [PATCH 76/96] Update user-list.md Edit. --- api-reference/beta/api/user-list.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-reference/beta/api/user-list.md b/api-reference/beta/api/user-list.md index 6176ecb0144..7dbb720febf 100644 --- a/api-reference/beta/api/user-list.md +++ b/api-reference/beta/api/user-list.md @@ -387,7 +387,7 @@ Content-type: application/json "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", - "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInDateTime": "", "lastSuccessfulSignInRequestId": "" } } @@ -435,7 +435,7 @@ Content-type: application/json "lastSignInRequestId": "d4d31c40-4c36-4775-ad59-7d1e6a171f00", "lastNonInteractiveSignInDateTime": "0001-01-01T00:00:00Z", "lastNonInteractiveSignInRequestId": "", - "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInDateTime": "", "lastSuccessfulSignInRequestId": "" } }, @@ -447,7 +447,7 @@ Content-type: application/json "lastSignInRequestId": "f3149ee1-e347-4181-b45b-99a1f82b1c00", "lastNonInteractiveSignInDateTime": "2021-07-29T17:53:42Z", "lastNonInteractiveSignInRequestId": "868efa6a-b2e9-40e9-9b1c-0aaea5b50200", - "lastSuccessfulSignInDateTime": "0001-01-01T00:00:00Z", + "lastSuccessfulSignInDateTime": "", "lastSuccessfulSignInRequestId": "" } } From 109691975ec67d57b7a4b40dfd3536bfdb14c022 Mon Sep 17 00:00:00 2001 From: Jarbas Horst Date: Tue, 30 Apr 2024 14:53:39 +0200 Subject: [PATCH 77/96] Update whats-new-overview.md Edit. --- concepts/whats-new-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/whats-new-overview.md b/concepts/whats-new-overview.md index f282e2db2f5..41ec4a46878 100644 --- a/concepts/whats-new-overview.md +++ b/concepts/whats-new-overview.md @@ -94,7 +94,7 @@ Deprecated the `/organization/{organizationId}/settings/itemInsights` endpoint i ### Reports | Identity and access reports -- Added the `nativeAuth` member as a supported protocol type to the **authenticationProtocol** in the [signIn](https://learn.microsoft.com/en-us/graph/api/resources/signin?view=graph-rest-beta&preserve-view=true) resource. +- Added the `nativeAuth` member as a supported protocol type to the **authenticationProtocol** in the [signIn](/graph/api/resources/signin?view=graph-rest-beta&preserve-view=true) resource. - The previously deprecated **activeUsersBreakdownMetric** resource and its associated APIs are now retired. To get insights into daily and monthly user activity on apps registered in your tenant that's configured for Microsoft Entra External ID for customers, use the [activeUsersMetric resource type](/graph/api/resources/activeusersmetric?view=graph-rest-beta&preserve-view=true) and its associated APIs. ### Security | Legacy alerts From 17075dbf37bd03d64fdfed7beb9bdde144586ca5 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tontontonchan@users.noreply.github.com> Date: Tue, 14 May 2024 23:32:22 -0700 Subject: [PATCH 78/96] Added app permission include for SPE methods --- api-reference/v1.0/api/filestorage-delete-containers.md | 2 ++ api-reference/v1.0/api/filestorage-list-containers.md | 2 ++ api-reference/v1.0/api/filestoragecontainer-activate.md | 2 ++ .../api/filestoragecontainer-delete-customproperty.md | 2 ++ .../v1.0/api/filestoragecontainer-delete-permissions.md | 2 ++ api-reference/v1.0/api/filestoragecontainer-get-drive.md | 2 ++ api-reference/v1.0/api/filestoragecontainer-get.md | 2 ++ .../v1.0/api/filestoragecontainer-list-customproperty.md | 2 ++ .../v1.0/api/filestoragecontainer-list-permissions.md | 2 ++ .../v1.0/api/filestoragecontainer-post-customproperty.md | 2 ++ .../v1.0/api/filestoragecontainer-post-permissions.md | 2 ++ api-reference/v1.0/api/filestoragecontainer-post.md | 2 ++ .../api/filestoragecontainer-update-customproperty.md | 2 ++ .../v1.0/api/filestoragecontainer-update-permissions.md | 2 ++ api-reference/v1.0/api/filestoragecontainer-update.md | 2 ++ .../v1.0/includes/sharepoint-embedded-app-permissions.md | 8 ++++++++ api-reference/v1.0/resources/filestoragecontainer.md | 2 +- 17 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 api-reference/v1.0/includes/sharepoint-embedded-app-permissions.md diff --git a/api-reference/v1.0/api/filestorage-delete-containers.md b/api-reference/v1.0/api/filestorage-delete-containers.md index 6815f655135..f3df3daff2b 100644 --- a/api-reference/v1.0/api/filestorage-delete-containers.md +++ b/api-reference/v1.0/api/filestorage-delete-containers.md @@ -21,6 +21,8 @@ Choose the permission or permissions marked as least privileged for this API. Us [!INCLUDE [permissions-table](../includes/permissions/filestorage-delete-containers-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestorage-list-containers-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-activate-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-delete-customproperty-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-delete-permissions-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-get-drive-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-get-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-list-customproperty-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-list-permissions-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-post-customproperty-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-post-permissions-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-post-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-update-customproperty-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-update-permissions-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request [!INCLUDE [permissions-table](../includes/permissions/filestoragecontainer-update-permissions.md)] +[!INCLUDE [app-permissions](../includes/sharepoint-embedded-app-permissions.md)] + ## HTTP request -``` http -PATCH https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/customProperties -Content-Type: application/json -{ - "property1": { - "value": "valueOfProperty1", - "isSearchable": true - }, - "property2": { - "value": "valueOfProperty2", - "isSearchable": false - } -} -``` - -### Response -The following example shows the response. - -``` http -HTTP/1.1 201 Created -``` From bf55a1e543e04dd96cb693f7e1a1f47e02b64420 Mon Sep 17 00:00:00 2001 From: Ortagus Winfrey <85191667+OWinfreyATL@users.noreply.github.com> Date: Thu, 16 May 2024 09:12:08 -0400 Subject: [PATCH 81/96] Synced On-premises arguments for tasks added --- ...identitygovernance-lifecycleworkflows-task-arguments.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md index 9d59410e52e..64f4c74e60a 100644 --- a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md +++ b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md @@ -28,18 +28,19 @@ This article provides guidance on the allowed configuration for the **arguments* | Generate Temporary Access Pass and send via email to user's manager | 1b555e50-7f65-41d5-b514-5894a026d10d | **name**: `tapLifetimeMinutes`
**value**: `10` upto `43000`

**name**: `tapIsUsableOnce`
**value**: `true` or `false`

Prerequisites:
  1. The user must be assigned a manager.
  2. The user's manager must have their mail enabled.
  3. The temporary access pass (TAP) policy must be enabled in the tenant and the user enabled to use the TAP authentication method. For more information, see [temporaryAccessPassAuthenticationMethodConfiguration resource type](/graph/api/resources/temporaryaccesspassauthenticationmethodconfiguration).
| | Add user to groups | 22085229-5809-45e8-97fd-270d28d66910 | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Add user to teams | e440ed8d-25a1-4618-84ce-091ed5be5594 | **name**: `teamID`
**value**: a valid group ID or a comma-separated list of teams to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | -| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | None | +| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | name: `CustomTaskExtensionID`
value: The ID of the custom task extension | | Assign licenses to users (Preview) | 683c87a4-2ad4-420b-97d4-220d90afcd24 | name: `licenses`
value: The ID of the license you want to assign | | Remove selected license assignments from user (Preview) | 5fc402a8-daaf-4b7b-9203-da868b05fc5f | name: `licenses`
value: The ID of the license you want to assign | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | **name**: `CustomTaskExtensionID`
**value**: The ID of the custom task extension | -| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | None | +| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | | Remove user from selected group | 1953a66c-751c-45e5-8bfe-01462c70da3c | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove users from all groups | b3a31406-2a15-4c9a-b25b-a658fa5f07fc | None | | Remove user from teams | 06aa7acb-01af-4824-8899-b14e5ed788d6 | **name**: `teamID`
**value**: a comma-separated list of teams that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove user from all teams | 81f7b200-2816-4b3b-8c5d-dc556f07b024 | None | | Remove all license assignments from user | 8fa97d28-3e52-4985-b3a9-a1126f9b8b4e | None | -| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | None | +| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | +| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: | | Send email to notify manager of user move | aab41899-9972-422a-9d97-f626014578b7 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email to manager before user last day | 52853a3e-f4e5-4eb8-bb24-1ac09a1da935 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email on users last day | 9c0a1eaf-5bda-4392-9d9e-6e155bb57411 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| From f7b20d3d59847f501376bb092d219cc87158440e Mon Sep 17 00:00:00 2001 From: Ortagus Winfrey <85191667+OWinfreyATL@users.noreply.github.com> Date: Thu, 16 May 2024 09:22:10 -0400 Subject: [PATCH 82/96] updates --- ...identitygovernance-lifecycleworkflows-task-arguments.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md index 64f4c74e60a..0f6d9a4c33a 100644 --- a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md +++ b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md @@ -28,19 +28,18 @@ This article provides guidance on the allowed configuration for the **arguments* | Generate Temporary Access Pass and send via email to user's manager | 1b555e50-7f65-41d5-b514-5894a026d10d | **name**: `tapLifetimeMinutes`
**value**: `10` upto `43000`

**name**: `tapIsUsableOnce`
**value**: `true` or `false`

Prerequisites:
  1. The user must be assigned a manager.
  2. The user's manager must have their mail enabled.
  3. The temporary access pass (TAP) policy must be enabled in the tenant and the user enabled to use the TAP authentication method. For more information, see [temporaryAccessPassAuthenticationMethodConfiguration resource type](/graph/api/resources/temporaryaccesspassauthenticationmethodconfiguration).
| | Add user to groups | 22085229-5809-45e8-97fd-270d28d66910 | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Add user to teams | e440ed8d-25a1-4618-84ce-091ed5be5594 | **name**: `teamID`
**value**: a valid group ID or a comma-separated list of teams to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | -| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | +| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to enable synced on-premises user accounts. | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | name: `CustomTaskExtensionID`
value: The ID of the custom task extension | | Assign licenses to users (Preview) | 683c87a4-2ad4-420b-97d4-220d90afcd24 | name: `licenses`
value: The ID of the license you want to assign | | Remove selected license assignments from user (Preview) | 5fc402a8-daaf-4b7b-9203-da868b05fc5f | name: `licenses`
value: The ID of the license you want to assign | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | **name**: `CustomTaskExtensionID`
**value**: The ID of the custom task extension | -| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | +| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value indicating if the task is to disable synced on-premises users accounts. | | Remove user from selected group | 1953a66c-751c-45e5-8bfe-01462c70da3c | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove users from all groups | b3a31406-2a15-4c9a-b25b-a658fa5f07fc | None | | Remove user from teams | 06aa7acb-01af-4824-8899-b14e5ed788d6 | **name**: `teamID`
**value**: a comma-separated list of teams that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove user from all teams | 81f7b200-2816-4b3b-8c5d-dc556f07b024 | None | | Remove all license assignments from user | 8fa97d28-3e52-4985-b3a9-a1126f9b8b4e | None | -| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to run for synced on-premises users. | -| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: | +| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: A boolean value indicating if the task is to delete synced on-premises users accounts. | | Send email to notify manager of user move | aab41899-9972-422a-9d97-f626014578b7 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email to manager before user last day | 52853a3e-f4e5-4eb8-bb24-1ac09a1da935 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email on users last day | 9c0a1eaf-5bda-4392-9d9e-6e155bb57411 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| From 3e6c33cb5dc9c94c5796eb87d706c378074be4ae Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tontontonchan@users.noreply.github.com> Date: Thu, 16 May 2024 09:51:18 -0700 Subject: [PATCH 83/96] Updated changelog to include missing resources --- api-reference/v1.0/resources/filestorage.md | 22 +++++++++++++ api-reference/v1.0/resources/storage.md | 22 +++++++++++++ changelog/Microsoft.FileServices.json | 36 +++++++++++++++++---- 3 files changed, 74 insertions(+), 6 deletions(-) create mode 100644 api-reference/v1.0/resources/filestorage.md create mode 100644 api-reference/v1.0/resources/storage.md diff --git a/api-reference/v1.0/resources/filestorage.md b/api-reference/v1.0/resources/filestorage.md new file mode 100644 index 00000000000..4b5fc04b34c --- /dev/null +++ b/api-reference/v1.0/resources/filestorage.md @@ -0,0 +1,22 @@ +--- +title: "fileStorage resource type" +description: "Represents the structure of active and deleted fileStorageContainer objects." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# fileStorage resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Represents the structure of active and deleted [fileStorageContainer](../resources/filestoragecontainer.md) objects. + +## Relationships +|Relationship|Type|Description| +|:---|:---|:---| +|containers|[fileStorageContainer](../resources/filestoragecontainer.md) collection|The collection of active fileStorageContainers| +|deletedContainers|[fileStorageContainer](../resources/filestoragecontainer.md) collection|The collection of deleted fileStorageContainers| \ No newline at end of file diff --git a/api-reference/v1.0/resources/storage.md b/api-reference/v1.0/resources/storage.md new file mode 100644 index 00000000000..59630f121ea --- /dev/null +++ b/api-reference/v1.0/resources/storage.md @@ -0,0 +1,22 @@ +--- +title: "storage resource type" +description: "Facilitates the structures of active and deleted fileStorageContainers." +author: "tonchan-msft" +ms.localizationpriority: medium +ms.subservice: "onedrive" +doc_type: resourcePageType +--- + +# storage resource type + +Namespace: microsoft.graph + +[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] + +Facilitates the structures of fileStorageContainers. + + +## Relationships +|Relationship|Type|Description| +|:---|:---|:---| +|fileStorage|[fileStorage](../resources/filestorage.md)|fileStorage resource| diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 137b4f30ebb..8e3592c1df2 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -147,7 +147,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainer", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource and its methods.", + "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource and its methods.", "Target": "fileStorageContainer" }, { @@ -155,7 +155,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-beta) resource.", + "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-1.0) resource.", "Target": "fileStorageContainerCustomPropertyDictionary" }, { @@ -163,7 +163,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerCustomPropertyValue", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-beta) resource.", + "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-1.0) resource.", "Target": "fileStorageContainerCustomPropertyValue" }, { @@ -171,7 +171,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerViewpoint", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-beta) resource.", + "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-1.0) resource.", "Target": "fileStorageContainer" }, { @@ -179,7 +179,7 @@ "ApiChange": "Relationship", "ChangedApiName": "permissions", "ChangeType": "Addition", - "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", + "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", "Target": "fileStorageContainer" }, { @@ -187,7 +187,31 @@ "ApiChange": "Relationship", "ChangedApiName": "drive", "ChangeType": "Addition", - "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", + "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" + }, + { + "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", + "ApiChange": "Resource", + "ChangedApiName": "storage", + "ChangeType": "Addition", + "Description": "Added the [storage] (https://learn.microsoft.com/en-us/graph/api/resources/storage?view=graph-rest-1.0) resource.", + "Target": "storage" + }, + { + "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", + "ApiChange": "Resource", + "ChangedApiName": "fileStorage", + "ChangeType": "Addition", + "Description": "Added the [fileStorage](https://learn.microsoft.com/en-us/graph/api/resources/filestorage?view=graph-rest-1.0) resource.", + "Target": "fileStorage" + }, + { + "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", + "ApiChange": "Property", + "ChangedApiName": "fileStorageContainerStatus", + "ChangeType": "Addition", + "Description": "Added the **fileStorageContainerStatus** property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", "Target": "fileStorageContainer" } ], From cb3c4b5cd24fe3de6e3a338105a6c73ab84bd70a Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Thu, 16 May 2024 11:34:59 -0700 Subject: [PATCH 84/96] Update Microsoft.FileServices.json --- changelog/Microsoft.FileServices.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 8e3592c1df2..a812b9acf8f 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -213,6 +213,14 @@ "ChangeType": "Addition", "Description": "Added the **fileStorageContainerStatus** property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", "Target": "fileStorageContainer" + }, + { + "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", + "ApiChange": "Method", + "ChangedApiName": "activate", + "ChangeType": "Addition", + "Description": "Added the [activate](https://learn.microsoft.com/en-us/graph/api/filestoragecontainer-activate?view=graph-rest-1.0) method to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" } ], "Id": "a376b86e-b5eb-4d9e-8270-de3cc02af307", From 4db2eb95c02e6d2b9a1f044dbb2449a739b08b47 Mon Sep 17 00:00:00 2001 From: Tony Chan <107155297+tonchan-msft@users.noreply.github.com> Date: Thu, 16 May 2024 12:45:35 -0700 Subject: [PATCH 85/96] Update Microsoft.FileServices.json --- changelog/Microsoft.FileServices.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index a812b9acf8f..6821fd77e38 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -206,6 +206,14 @@ "Description": "Added the [fileStorage](https://learn.microsoft.com/en-us/graph/api/resources/filestorage?view=graph-rest-1.0) resource.", "Target": "fileStorage" }, + { + "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", + "ApiChange": "Resource", + "ChangedApiName": "Dictionary", + "ChangeType": "Addition", + "Description": "Added the **Dictionary** resource.", + "Target": "fileStorage" + }, { "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", "ApiChange": "Property", From 020738e5b1a5289dbb6eb501851fa3b738b08e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Notin?= Date: Thu, 23 May 2024 15:17:49 +0200 Subject: [PATCH 86/96] Fix "groupTypes" typo The attribute is plural since it's an array. And as confirmed in https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-beta#:~:text=).%20Read%2Donly.-,groupTypes,-String%20collection and in the code samples in this same page --- api-reference/v1.0/resources/groups-overview.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-reference/v1.0/resources/groups-overview.md b/api-reference/v1.0/resources/groups-overview.md index be372d9cc75..ec0620c7538 100644 --- a/api-reference/v1.0/resources/groups-overview.md +++ b/api-reference/v1.0/resources/groups-overview.md @@ -32,9 +32,9 @@ Microsoft Entra ID supports the following types of groups. > [!NOTE] > Microsoft also supports [dynamic distribution groups](/exchange/recipients/dynamic-distribution-groups/dynamic-distribution-groups?view=exchserver-2019&preserve-view=true) which can't be managed or retrieved through Microsoft Graph. -In Microsoft Graph, the type of group can be identified by the settings of its **groupType**, **mailEnabled**, and **securityEnabled** properties. The following table indicates how to differentiate the groups by their settings, and whether the group types can be managed through the Microsoft Graph groups APIs. +In Microsoft Graph, the type of group can be identified by the settings of its **groupTypes**, **mailEnabled**, and **securityEnabled** properties. The following table indicates how to differentiate the groups by their settings, and whether the group types can be managed through the Microsoft Graph groups APIs. -| Type |groupType | mailEnabled | securityEnabled | Created and managed via the groups APIs | +| Type |groupTypes | mailEnabled | securityEnabled | Created and managed via the groups APIs | |--|--|--|--|--| | [Microsoft 365 groups](#microsoft-365-groups) | `["Unified"]` | `true` | `true` or `false` | Yes | | [Security groups](#security-groups-and-mail-enabled-security-groups) | `[]` | `false` | `true` | Yes | @@ -142,7 +142,7 @@ The following example shows a complete rule. You can combine multiple expressions in a rule using the `and`, `or`, and `not` operators. -The **groupType** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership. +The **groupTypes** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership. The following example request creates a new Microsoft 365 group that can only include employees in the Marketing department. From c3d7f3c8f0a804d34f87938adf0be313f944bc09 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Thu, 23 May 2024 17:53:54 -0700 Subject: [PATCH 87/96] Apply changes to beta topic. --- api-reference/beta/resources/groups-overview.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-reference/beta/resources/groups-overview.md b/api-reference/beta/resources/groups-overview.md index d569be3e3bc..b7d04c077bb 100644 --- a/api-reference/beta/resources/groups-overview.md +++ b/api-reference/beta/resources/groups-overview.md @@ -32,9 +32,9 @@ Microsoft Entra ID supports the following types of groups. > [!NOTE] > Microsoft also supports [dynamic distribution groups](/exchange/recipients/dynamic-distribution-groups/dynamic-distribution-groups?view=exchserver-2019&preserve-view=true) which can't be managed or retrieved through Microsoft Graph. -In Microsoft Graph, the type of group can be identified by the settings of its **groupType**, **mailEnabled**, and **securityEnabled** properties. The following table indicates how to differentiate the groups by their settings, and whether the group types can be managed through the Microsoft Graph groups APIs. +In Microsoft Graph, the type of group can be identified by the settings of its **groupTypes**, **mailEnabled**, and **securityEnabled** properties. The following table indicates how to differentiate the groups by their settings, and whether the group types can be managed through the Microsoft Graph groups APIs. -| Type |groupType | mailEnabled | securityEnabled | Created and managed via the groups APIs | +| Type |groupTypes | mailEnabled | securityEnabled | Created and managed via the groups APIs | |--|--|--|--|--| | [Microsoft 365 groups](#microsoft-365-groups) | `["Unified"]` | `true` | `true` or `false` | Yes | | [Security groups](#security-groups-and-mail-enabled-security-groups) | `[]` | `false` | `true` | Yes | @@ -142,7 +142,7 @@ The following example shows a complete rule. You can combine multiple expressions in a rule using the `and`, `or`, and `not` operators. -The **groupType** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership. +The **groupTypes** property must also include the `"DynamicMembership"` value in the collection. The dynamic membership rule can be turned on or off through the **membershipRuleProcessingState** property. You can update a group with assigned membership to have dynamic membership. The following example request creates a new Microsoft 365 group that can only include employees in the Marketing department. From 0bd86a18706ee560eac97733d20f2b7e1b380fd0 Mon Sep 17 00:00:00 2001 From: Mike Norman <1462796+MichaelNorman@users.noreply.github.com> Date: Fri, 24 May 2024 10:05:10 -0500 Subject: [PATCH 88/96] Acrolinx and review pass. --- .../identitygovernance-lifecycleworkflows-task-arguments.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md index 0f6d9a4c33a..f8e385ed59c 100644 --- a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md +++ b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md @@ -28,18 +28,18 @@ This article provides guidance on the allowed configuration for the **arguments* | Generate Temporary Access Pass and send via email to user's manager | 1b555e50-7f65-41d5-b514-5894a026d10d | **name**: `tapLifetimeMinutes`
**value**: `10` upto `43000`

**name**: `tapIsUsableOnce`
**value**: `true` or `false`

Prerequisites:
  1. The user must be assigned a manager.
  2. The user's manager must have their mail enabled.
  3. The temporary access pass (TAP) policy must be enabled in the tenant and the user enabled to use the TAP authentication method. For more information, see [temporaryAccessPassAuthenticationMethodConfiguration resource type](/graph/api/resources/temporaryaccesspassauthenticationmethodconfiguration).
| | Add user to groups | 22085229-5809-45e8-97fd-270d28d66910 | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Add user to teams | e440ed8d-25a1-4618-84ce-091ed5be5594 | **name**: `teamID`
**value**: a valid group ID or a comma-separated list of teams to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | -| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value indicating if the task is to enable synced on-premises user accounts. | +| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value that indicates whether the task enables synced on-premises user accounts. | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | name: `CustomTaskExtensionID`
value: The ID of the custom task extension | | Assign licenses to users (Preview) | 683c87a4-2ad4-420b-97d4-220d90afcd24 | name: `licenses`
value: The ID of the license you want to assign | | Remove selected license assignments from user (Preview) | 5fc402a8-daaf-4b7b-9203-da868b05fc5f | name: `licenses`
value: The ID of the license you want to assign | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | **name**: `CustomTaskExtensionID`
**value**: The ID of the custom task extension | -| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value indicating if the task is to disable synced on-premises users accounts. | +| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value that indicates whether the task disables synced on-premises users accounts. | | Remove user from selected group | 1953a66c-751c-45e5-8bfe-01462c70da3c | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove users from all groups | b3a31406-2a15-4c9a-b25b-a658fa5f07fc | None | | Remove user from teams | 06aa7acb-01af-4824-8899-b14e5ed788d6 | **name**: `teamID`
**value**: a comma-separated list of teams that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove user from all teams | 81f7b200-2816-4b3b-8c5d-dc556f07b024 | None | | Remove all license assignments from user | 8fa97d28-3e52-4985-b3a9-a1126f9b8b4e | None | -| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: A boolean value indicating if the task is to delete synced on-premises users accounts. | +| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: A boolean value that indicates whether the task deletes synced on-premises users accounts. | | Send email to notify manager of user move | aab41899-9972-422a-9d97-f626014578b7 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email to manager before user last day | 52853a3e-f4e5-4eb8-bb24-1ac09a1da935 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email on users last day | 9c0a1eaf-5bda-4392-9d9e-6e155bb57411 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| From 6eb584c39c60813bc482f759c3d104fe8f0fbf05 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 17:36:15 -0700 Subject: [PATCH 89/96] Updated method names. --- .../v1.0/resources/filestoragecontainer.md | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/api-reference/v1.0/resources/filestoragecontainer.md b/api-reference/v1.0/resources/filestoragecontainer.md index 242c01267a8..9c73fc8f2ae 100644 --- a/api-reference/v1.0/resources/filestoragecontainer.md +++ b/api-reference/v1.0/resources/filestoragecontainer.md @@ -17,28 +17,28 @@ Represents a location where multiple users or a group of users can store files a ## Methods |Method|Return type|Description| |:---|:---|:---| -|[List fileStorageContainers](../api/filestorage-list-containers.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Get a list of the [fileStorageContainer](../resources/filestoragecontainer.md) objects and their properties.| -|[Create fileStorageContainer](../api/filestoragecontainer-post.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Create a new [fileStorageContainer](../resources/filestoragecontainer.md) object.| -|[Get fileStorageContainer](../api/filestoragecontainer-get.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Read the properties and relationships of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| -|[Update fileStorageContainer](../api/filestoragecontainer-update.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Update the properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| -|[Delete fileStorageContainer](../api/filestorage-delete-containers.md)|None|Delete a [fileStorageContainer](../resources/filestoragecontainer.md) object.| -|[Activate fileStorageContainer](../api/filestoragecontainer-activate.md)|None|Activate a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[List](../api/filestorage-list-containers.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Get a list of the [fileStorageContainer](../resources/filestoragecontainer.md) objects and their properties.| +|[Create](../api/filestoragecontainer-post.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Create a new [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Get](../api/filestoragecontainer-get.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Read the properties and relationships of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Update](../api/filestoragecontainer-update.md)|[fileStorageContainer](../resources/filestoragecontainer.md)|Update the properties of a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Delete](../api/filestorage-delete-containers.md)|None|Delete a [fileStorageContainer](../resources/filestoragecontainer.md) object.| +|[Activate](../api/filestoragecontainer-activate.md)|None|Activate a [fileStorageContainer](../resources/filestoragecontainer.md) object.| |[Get drive](../api/filestoragecontainer-get-drive.md)|[drive](../resources/drive.md)|Get the drive resource from a [fileStorageContainer](../resources/filestoragecontainer.md) object.| |[List permissions](../api/filestoragecontainer-list-permissions.md)|[permission](../resources/permission.md)| List permissions on a fileStorageContainer.| |[Create permissions](../api/filestoragecontainer-post-permissions.md)|[permission](../resources/permission.md)|Add permission to a fileStorageContainer.| |[Update permissions](../api/filestoragecontainer-update-permissions.md)|[permission](../resources/permission.md)|Update permission on a fileStorageContainer.| |[Delete permissions](../api/filestoragecontainer-delete-permissions.md)|[permission](../resources/permission.md)|Delete permission from a fileStorageContainer.| -|[List fileStorageContainer custom property](../api/filestoragecontainer-list-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|List custom properties of the fileStorageContainer.| -|[Create fileStorageContainer custom property](../api/filestoragecontainer-post-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Create custom property to the fileStorageContainer.| -|[Update fileStorageContainer custom property](../api/filestoragecontainer-update-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Update custom property on a fileStorageContainer.| -|[Delete fileStorageContainer custom property](../api/filestoragecontainer-delete-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Delete custom property from a fileStorageContainer.| +|[List custom property](../api/filestoragecontainer-list-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|List custom properties of the fileStorageContainer.| +|[Create custom property](../api/filestoragecontainer-post-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Create custom property to the fileStorageContainer.| +|[Update custom property](../api/filestoragecontainer-update-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Update custom property on a fileStorageContainer.| +|[Delete custom property](../api/filestoragecontainer-delete-customproperty.md)|[filestoragecontainercustompropertyvalue](../resources/filestoragecontainercustompropertyvalue.md)|Delete custom property from a fileStorageContainer.| ## Properties |Property|Type|Description| |:---|:---|:---| -|containerTypeId|Guid|Container type ID of the fileStorageContainer. For details about container types, see [Container Types](/sharepoint/dev/embedded/concepts/app-concepts/containertypes). Each container must have only one container type. Read-only.| -|createdDateTime|DateTimeOffset|Date and time of the fileStorageContainer creation. Read-only.| +|containerTypeId|Guid|Container type ID of the **fileStorageContainer**. For details about container types, see [Container Types](/sharepoint/dev/embedded/concepts/app-concepts/containertypes). Each container must have only one container type. Read-only.| +|createdDateTime|DateTimeOffset|Date and time of the **fileStorageContainer** creation. Read-only.| |customProperties|[fileStorageContainerCustomPropertyDictionary](../resources/filestoragecontainercustompropertydictionary.md)|Custom property collection for the **fileStorageContainer**. Read-write.| |description|String|Provides a user-visible description of the **fileStorageContainer**. Read-write.| |displayName|String|The display name of the **fileStorageContainer**. Read-write.| @@ -50,8 +50,8 @@ Represents a location where multiple users or a group of users can store files a |Relationship|Type|Description| |:---|:---|:---| -|drive|[drive](../resources/drive.md)|The drive of the resource fileStorageContainer. Read-only.| -|permissions|[permission](../resources/permission.md) collection|The set of permissions for users in the fileStorageContainer. Permission for each user is set by the **roles** property. The possible values are 'reader', 'writer', 'manager', and 'owner'. Read-write.| +|drive|[drive](../resources/drive.md)|The drive of the resource **fileStorageContainer**. Read-only.| +|permissions|[permission](../resources/permission.md) collection|The set of permissions for users in the **fileStorageContainer**. Permission for each user is set by the **roles** property. The possible values are 'reader', 'writer', 'manager', and 'owner'. Read-write.| ### roles property values From 0ac521c58bf8e5f903e78ece5ecb4b0dcf232516 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 17:38:09 -0700 Subject: [PATCH 90/96] Update toc.yml --- api-reference/v1.0/toc.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/api-reference/v1.0/toc.yml b/api-reference/v1.0/toc.yml index cdfdae878d6..cd537147ba3 100644 --- a/api-reference/v1.0/toc.yml +++ b/api-reference/v1.0/toc.yml @@ -5181,20 +5181,20 @@ items: - name: File storage containers href: resources/filestoragecontainer.md items: - - name: List file storage containers + - name: List href: api/filestorage-list-containers.md - - name: Create file storage container + - name: Create href: api/filestoragecontainer-post.md - - name: Get file storage container + - name: Get href: api/filestoragecontainer-get.md - - name: Get drive - href: api/filestoragecontainer-get-drive.md - - name: Update file storage containers + - name: Update href: api/filestoragecontainer-update.md - - name: Delete file storage container + - name: Delete href: api/filestorage-delete-containers.md - - name: Activate file storage container + - name: Activate href: api/filestoragecontainer-activate.md + - name: Get drive + href: api/filestoragecontainer-get-drive.md - name: List permissions href: api/filestoragecontainer-list-permissions.md - name: Add permissions From 085ca77b739971d700e91a84ea07dd0b6790a84c Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 17:54:36 -0700 Subject: [PATCH 91/96] Update Microsoft.AAD.Reporting.json --- changelog/Microsoft.AAD.Reporting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog/Microsoft.AAD.Reporting.json b/changelog/Microsoft.AAD.Reporting.json index d1e695b60b8..245d8b3105c 100644 --- a/changelog/Microsoft.AAD.Reporting.json +++ b/changelog/Microsoft.AAD.Reporting.json @@ -2798,9 +2798,9 @@ "Id": "cf87be6a-9ea4-4468-8318-d383d2de76b8", "Cloud": "Prod", "Version": "v1.0", - "CreatedDateTime": "2024-04-26T20:31:40.7734069Z", + "CreatedDateTime": "2024-05-23T20:31:40.7734069Z", "WorkloadArea": "Reports", "SubArea": "Identity and access reports" } ] -} \ No newline at end of file +} From 05ff1a8a331f72261acc6a7e4131c6788ae2a808 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 18:15:11 -0700 Subject: [PATCH 92/96] Update changelog. --- changelog/Microsoft.FileServices.json | 150 ++++++++++++-------------- 1 file changed, 69 insertions(+), 81 deletions(-) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 9b2f60ca01c..2794a2fd2e2 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -1,75 +1,5 @@ { "changelog": [ - { - "ChangeList": [ - { - "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", - "ApiChange": "Enumeration", - "ChangedApiName": "siteArchiveStatus", - "ChangeType": "Addition", - "Description": "Added the **siteArchiveStatus** enumeration type.", - "Target": "siteArchiveStatus" - }, - { - "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", - "ApiChange": "Resource", - "ChangedApiName": "siteArchivalDetails", - "ChangeType": "Addition", - "Description": "Added the [siteArchivalDetails](https://learn.microsoft.com/en-us/graph/api/resources/siteArchivalDetails?view=graph-rest-beta) resource.", - "Target": "siteArchivalDetails" - }, - { - "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", - "ApiChange": "Property", - "ChangedApiName": "archivalDetails", - "ChangeType": "Addition", - "Description": "Added the **archivalDetails** property to the [siteCollection](https://learn.microsoft.com/en-us/graph/api/resources/siteCollection?view=graph-rest-beta) resource.", - "Target": "siteCollection" - } - ], - "Id": "db0286e8-ee26-40c2-a706-e331bf6fcb0c", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2024-04-15T06:57:37.5509045Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "400279c6-8c1b-4a1d-92ff-c49987587f79", - "ApiChange": "Method", - "ChangedApiName": "delta", - "ChangeType": "Addition", - "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/site-delta?view=graph-rest-beta) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-beta) resource.", - "Target": "site" - } - ], - "Id": "400279c6-8c1b-4a1d-92ff-c49987587f79", - "Cloud": "Prod", - "Version": "beta", - "CreatedDateTime": "2024-03-21T07:48:06.8842819Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, - { - "ChangeList": [ - { - "Id": "8fefbf46-97c3-43c7-96a9-56c1f4c24052", - "ApiChange": "Method", - "ChangedApiName": "delta", - "ChangeType": "Addition", - "Description": "Added the [delta](https://learn.microsoft.com/en-us/graph/api/site-delta?view=graph-rest-1.0) method to the [site](https://learn.microsoft.com/en-us/graph/api/resources/site?view=graph-rest-1.0) resource.", - "Target": "site" - } - ], - "Id": "8fefbf46-97c3-43c7-96a9-56c1f4c24052", - "Cloud": "Prod", - "Version": "v1.0", - "CreatedDateTime": "2024-03-21T07:48:06.8842819Z", - "WorkloadArea": "Sites and lists", - "SubArea": "" - }, { "ChangeList": [ { @@ -221,7 +151,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainer", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource and its methods.", + "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource and its methods.", "Target": "fileStorageContainer" }, { @@ -229,7 +159,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-1.0) resource.", + "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-beta) resource.", "Target": "fileStorageContainerCustomPropertyDictionary" }, { @@ -237,7 +167,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerCustomPropertyValue", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-1.0) resource.", + "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-beta) resource.", "Target": "fileStorageContainerCustomPropertyValue" }, { @@ -245,7 +175,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorageContainerViewpoint", "ChangeType": "Addition", - "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-1.0) resource.", + "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" }, { @@ -253,7 +183,7 @@ "ApiChange": "Relationship", "ChangedApiName": "permissions", "ChangeType": "Addition", - "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" }, { @@ -261,7 +191,7 @@ "ApiChange": "Relationship", "ChangedApiName": "drive", "ChangeType": "Addition", - "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" }, { @@ -269,7 +199,7 @@ "ApiChange": "Resource", "ChangedApiName": "storage", "ChangeType": "Addition", - "Description": "Added the [storage] (https://learn.microsoft.com/en-us/graph/api/resources/storage?view=graph-rest-1.0) resource.", + "Description": "Added the [storage] (https://learn.microsoft.com/en-us/graph/api/resources/storage?view=graph-rest-beta) resource.", "Target": "storage" }, { @@ -277,7 +207,7 @@ "ApiChange": "Resource", "ChangedApiName": "fileStorage", "ChangeType": "Addition", - "Description": "Added the [fileStorage](https://learn.microsoft.com/en-us/graph/api/resources/filestorage?view=graph-rest-1.0) resource.", + "Description": "Added the [fileStorage](https://learn.microsoft.com/en-us/graph/api/resources/filestorage?view=graph-rest-beta) resource.", "Target": "fileStorage" }, { @@ -293,7 +223,7 @@ "ApiChange": "Property", "ChangedApiName": "fileStorageContainerStatus", "ChangeType": "Addition", - "Description": "Added the **fileStorageContainerStatus** property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Description": "Added the **fileStorageContainerStatus** property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" }, { @@ -301,17 +231,75 @@ "ApiChange": "Method", "ChangedApiName": "activate", "ChangeType": "Addition", - "Description": "Added the [activate](https://learn.microsoft.com/en-us/graph/api/filestoragecontainer-activate?view=graph-rest-1.0) method to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Description": "Added the [activate](https://learn.microsoft.com/en-us/graph/api/filestoragecontainer-activate?view=graph-rest-beta) method to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" } ], "Id": "a376b86e-b5eb-4d9e-8270-de3cc02af307", "Cloud": "Prod", - "Version": "v1.0", + "Version": "beta", "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", "WorkloadArea": "Files", "SubArea": "" }, + { + "ChangeList": [ + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainer", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource and its methods.", + "Target": "fileStorageContainer" + }, + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerCustomPropertyDictionary", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerCustomPropertyDictionary](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertydictionary?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainerCustomPropertyDictionary" + }, + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerCustomPropertyValue", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerCustomPropertyValue](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainercustompropertyvalue?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainerCustomPropertyValue" + }, + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Resource", + "ChangedApiName": "fileStorageContainerViewpoint", + "ChangeType": "Addition", + "Description": "Added the [fileStorageContainerViewpoint](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainerviewpoint?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" + }, + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Relationship", + "ChangedApiName": "permissions", + "ChangeType": "Addition", + "Description": "Added the **permissions** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" + }, + { + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "ApiChange": "Relationship", + "ChangedApiName": "drive", + "ChangeType": "Addition", + "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-1.0) resource.", + "Target": "fileStorageContainer" + } + ], + "Id": "7d6ba13d-230e-4f27-a2ef-52fcd2f79b0e", + "Cloud": "Prod", + "Version": "v1.0", + "CreatedDateTime": "2024-05-23T16:58:36.3201367Z", + "WorkloadArea": "Files", + "SubArea": "" + }, { "ChangeList": [ { From f263a6aed3321ffac3a1d20c44fa88cd05bda007 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 18:16:29 -0700 Subject: [PATCH 93/96] Update identitygovernance-lifecycleworkflows-task-arguments.md --- .../identitygovernance-lifecycleworkflows-task-arguments.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md index f8e385ed59c..67c90027688 100644 --- a/concepts/identitygovernance-lifecycleworkflows-task-arguments.md +++ b/concepts/identitygovernance-lifecycleworkflows-task-arguments.md @@ -28,18 +28,18 @@ This article provides guidance on the allowed configuration for the **arguments* | Generate Temporary Access Pass and send via email to user's manager | 1b555e50-7f65-41d5-b514-5894a026d10d | **name**: `tapLifetimeMinutes`
**value**: `10` upto `43000`

**name**: `tapIsUsableOnce`
**value**: `true` or `false`

Prerequisites:
  1. The user must be assigned a manager.
  2. The user's manager must have their mail enabled.
  3. The temporary access pass (TAP) policy must be enabled in the tenant and the user enabled to use the TAP authentication method. For more information, see [temporaryAccessPassAuthenticationMethodConfiguration resource type](/graph/api/resources/temporaryaccesspassauthenticationmethodconfiguration).
| | Add user to groups | 22085229-5809-45e8-97fd-270d28d66910 | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Add user to teams | e440ed8d-25a1-4618-84ce-091ed5be5594 | **name**: `teamID`
**value**: a valid group ID or a comma-separated list of teams to which the user is added as a member. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | -| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A boolean value that indicates whether the task enables synced on-premises user accounts. | +| Enable user account | 6fc52c9d-398b-4305-9763-15f42c1676fc | **name**: `enableOnPremisesAccount`
**value**: A Boolean value that indicates whether the task enables synced on-premises user accounts. | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | name: `CustomTaskExtensionID`
value: The ID of the custom task extension | | Assign licenses to users (Preview) | 683c87a4-2ad4-420b-97d4-220d90afcd24 | name: `licenses`
value: The ID of the license you want to assign | | Remove selected license assignments from user (Preview) | 5fc402a8-daaf-4b7b-9203-da868b05fc5f | name: `licenses`
value: The ID of the license you want to assign | | Run a custom task extension | 4262b724-8dba-4fad-afc3-43fcbb497a0e | **name**: `CustomTaskExtensionID`
**value**: The ID of the custom task extension | -| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A boolean value that indicates whether the task disables synced on-premises users accounts. | +| Disable user account | 1dfdfcc7-52fa-4c2e-bf3a-e3919cc12950 | **name**: `disableOnPremisesAccount`
**value**: A Boolean value that indicates whether the task disables synced on-premises users accounts. | | Remove user from selected group | 1953a66c-751c-45e5-8bfe-01462c70da3c | **name**: `groupID`
**value**: a valid group ID or a comma-separated list of groups that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove users from all groups | b3a31406-2a15-4c9a-b25b-a658fa5f07fc | None | | Remove user from teams | 06aa7acb-01af-4824-8899-b14e5ed788d6 | **name**: `teamID`
**value**: a comma-separated list of teams that the user is a member of. For example, `"06269010-2d8e-48e4-8f0e-33580720c9e1, 06bba22c-775e-42d8-b451-4221af061af0, 182f68db-6513-4e79-9ec2-a7e89a460e7f"` | | Remove user from all teams | 81f7b200-2816-4b3b-8c5d-dc556f07b024 | None | | Remove all license assignments from user | 8fa97d28-3e52-4985-b3a9-a1126f9b8b4e | None | -| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: A boolean value that indicates whether the task deletes synced on-premises users accounts. | +| Delete user | 8d18588d-9ad3-4c0f-99d0-ec215f0e3dff | **name**: `deleteOnPremisesAccount`
**value**: A Boolean value that indicates whether the task deletes synced on-premises users accounts. | | Send email to notify manager of user move | aab41899-9972-422a-9d97-f626014578b7 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email to manager before user last day | 52853a3e-f4e5-4eb8-bb24-1ac09a1da935 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject header for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| | Send email on users last day | 9c0a1eaf-5bda-4392-9d9e-6e155bb57411 | **name**: `cc`
**value**: A valid user ID (String) for the user you want to cc in the email.

**name**: `customSubject`
**value**: A custom subject for the email being sent.


**name**: `customBody`
**value**: The body of the customized email.


**name**: `locale`
**value**: Language value that overrides the email recipient's language settings. Doesn't customize the custom text of the email, and should be set in the same language as the custom text.
| From fda4ecceadc6f74941eca5ad8f565e70d3a9c18b Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 18:20:13 -0700 Subject: [PATCH 94/96] Update Microsoft.FileServices.json --- changelog/Microsoft.FileServices.json | 42 +-------------------------- 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/changelog/Microsoft.FileServices.json b/changelog/Microsoft.FileServices.json index 2794a2fd2e2..dceee23f2ff 100644 --- a/changelog/Microsoft.FileServices.json +++ b/changelog/Microsoft.FileServices.json @@ -193,49 +193,9 @@ "ChangeType": "Addition", "Description": "Added the **drive** navigation property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", "Target": "fileStorageContainer" - }, - { - "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", - "ApiChange": "Resource", - "ChangedApiName": "storage", - "ChangeType": "Addition", - "Description": "Added the [storage] (https://learn.microsoft.com/en-us/graph/api/resources/storage?view=graph-rest-beta) resource.", - "Target": "storage" - }, - { - "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", - "ApiChange": "Resource", - "ChangedApiName": "fileStorage", - "ChangeType": "Addition", - "Description": "Added the [fileStorage](https://learn.microsoft.com/en-us/graph/api/resources/filestorage?view=graph-rest-beta) resource.", - "Target": "fileStorage" - }, - { - "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", - "ApiChange": "Resource", - "ChangedApiName": "Dictionary", - "ChangeType": "Addition", - "Description": "Added the **Dictionary** resource.", - "Target": "fileStorage" - }, - { - "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", - "ApiChange": "Property", - "ChangedApiName": "fileStorageContainerStatus", - "ChangeType": "Addition", - "Description": "Added the **fileStorageContainerStatus** property to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", - "Target": "fileStorageContainer" - }, - { - "Id": "1c40646d-fdfa-4b32-88b8-3ec43dea8f04", - "ApiChange": "Method", - "ChangedApiName": "activate", - "ChangeType": "Addition", - "Description": "Added the [activate](https://learn.microsoft.com/en-us/graph/api/filestoragecontainer-activate?view=graph-rest-beta) method to [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/filestoragecontainer?view=graph-rest-beta) resource.", - "Target": "fileStorageContainer" } ], - "Id": "a376b86e-b5eb-4d9e-8270-de3cc02af307", + "Id": "8988cba7-3b8c-4ec3-8f45-d7a0af670f53", "Cloud": "Prod", "Version": "beta", "CreatedDateTime": "2023-11-22T16:58:36.3201367Z", From e61daa4e8ce8b34110c5a38d0982930554a4bb65 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 18:24:23 -0700 Subject: [PATCH 95/96] Update filestoragecontainercustompropertyvalue.md --- .../v1.0/resources/filestoragecontainercustompropertyvalue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md index 7927c1eba3d..5c9ad011830 100644 --- a/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md +++ b/api-reference/v1.0/resources/filestoragecontainercustompropertyvalue.md @@ -1,6 +1,6 @@ --- title: "fileStorageContainerCustomPropertyValue resource type" -description: "Contains the custom property values stored in a fileStorageContainerCustomPropertyDictionary". +description: "Contains the custom property values stored in a fileStorageContainerCustomPropertyDictionary." author: "tonchan-msft" ms.localizationpriority: medium ms.subservice: "onedrive" From a3282145fe0ff81800b82684c947a4870a913ed3 Mon Sep 17 00:00:00 2001 From: Laura Graham Date: Fri, 24 May 2024 18:24:53 -0700 Subject: [PATCH 96/96] Update filestoragecontainerviewpoint.md --- api-reference/v1.0/resources/filestoragecontainerviewpoint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-reference/v1.0/resources/filestoragecontainerviewpoint.md b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md index 72fe51d4001..7f756ff710f 100644 --- a/api-reference/v1.0/resources/filestoragecontainerviewpoint.md +++ b/api-reference/v1.0/resources/filestoragecontainerviewpoint.md @@ -1,6 +1,6 @@ --- title: "fileStorageContainerViewpoint resource type" -description: "Represents data specific to the current user of a fileStorageContainer". +description: "Represents data specific to the current user of a fileStorageContainer." author: "tonchan-msft" ms.localizationpriority: medium ms.subservice: "onedrive"