Skip to content

Commit

Permalink
Merge pull request #7514 from microsoftgraph/hijai/updateRemoteItemRe…
Browse files Browse the repository at this point in the history
…source

adding media  facets image/video in remoteItem resource.
  • Loading branch information
Lauragra committed Mar 27, 2020
2 parents a663cd8 + 2776a62 commit de1feab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api-reference/beta/resources/remoteitem.md
Expand Up @@ -35,6 +35,7 @@ This resource provides the unique IDs of the source drive and target item.
"file": { "@odata.type": "microsoft.graph.file" },
"fileSystemInfo": { "@odata.type": "microsoft.graph.fileSystemInfo" },
"folder": { "@odata.type": "microsoft.graph.folder" },
"image" : { "@odata.type": "microsoft.graph.image" },
"lastModifiedBy": { "@odata.type": "microsoft.graph.identitySet" },
"lastModifiedDateTime": "timestamp",
"name": "string",
Expand All @@ -43,6 +44,7 @@ This resource provides the unique IDs of the source drive and target item.
"shared": { "@odata.type": "microsoft.graph.shared" },
"sharepointIds": { "@odata.type": "microsoft.graph.sharepointIds" },
"size": 1024,
"video": { "@odata.type": "microsoft.graph.video" },
"webDavUrl": "url",
"webUrl": "url"
}
Expand All @@ -58,6 +60,7 @@ This resource provides the unique IDs of the source drive and target item.
| fileSystemInfo | [FileSystemInfo](filesysteminfo.md) | Information about the remote item from the local file system. Read-only. |
| folder | [Folder](folder.md) | Indicates that the remote item is a folder. Read-only. |
| id | String | Unique identifier for the remote item in its drive. Read-only. |
| image | [Image](image.md) | Image metadata, if the item is an image. Read-only. |
| lastModifiedBy | [IdentitySet](identityset.md) | Identity of the user, device, and application which last modified the item. Read-only. |
| lastModifiedDateTime | Timestamp | Date and time the item was last modified. Read-only. |
| name | String | Optional. Filename of the remote item. Read-only. |
Expand All @@ -66,6 +69,7 @@ This resource provides the unique IDs of the source drive and target item.
| shared | [shared](shared.md) | Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only. |
| sharepointIds | [SharepointIds](sharepointids.md) | Provides interop between items in OneDrive for Business and SharePoint with the full set of item identifiers. Read-only. |
| size | Int64 | Size of the remote item. Read-only. |
| video | [Video](video.md) | Video metadata, if the item is a video. Read-only. |
| webDavUrl | Url | DAV compatible URL for the item. |
| webUrl | Url | URL that displays the resource in the browser. Read-only. |

Expand Down
4 changes: 4 additions & 0 deletions api-reference/v1.0/resources/remoteitem.md
Expand Up @@ -34,6 +34,7 @@ This resource provides the unique IDs of the source drive and target item.
"file": { "@odata.type": "microsoft.graph.file" },
"fileSystemInfo": { "@odata.type": "microsoft.graph.fileSystemInfo" },
"folder": { "@odata.type": "microsoft.graph.folder" },
"image" : { "@odata.type": "microsoft.graph.image" },
"lastModifiedBy": { "@odata.type": "microsoft.graph.identitySet" },
"lastModifiedDateTime": "timestamp",
"name": "string",
Expand All @@ -43,6 +44,7 @@ This resource provides the unique IDs of the source drive and target item.
"sharepointIds": { "@odata.type": "microsoft.graph.sharepointIds" },
"specialFolder": { "@odata.type": "microsoft.graph.specialFolder" },
"size": 1024,
"video": { "@odata.type": "microsoft.graph.video" },
"webDavUrl": "url",
"webUrl": "url"
}
Expand All @@ -58,6 +60,7 @@ This resource provides the unique IDs of the source drive and target item.
| fileSystemInfo | [FileSystemInfo](filesysteminfo.md) | Information about the remote item from the local file system. Read-only. |
| folder | [Folder](folder.md) | Indicates that the remote item is a folder. Read-only. |
| id | String | Unique identifier for the remote item in its drive. Read-only. |
| image | [Image](image.md) | Image metadata, if the item is an image. Read-only. |
| lastModifiedBy | [IdentitySet](identityset.md) | Identity of the user, device, and application which last modified the item. Read-only. |
| lastModifiedDateTime | Timestamp | Date and time the item was last modified. Read-only. |
| name | String | Optional. Filename of the remote item. Read-only. |
Expand All @@ -67,6 +70,7 @@ This resource provides the unique IDs of the source drive and target item.
| sharepointIds | [SharepointIds](sharepointids.md) | Provides interop between items in OneDrive for Business and SharePoint with the full set of item identifiers. Read-only. |
| size | Int64 | Size of the remote item. Read-only. |
| specialFolder | [specialFolder][] | If the current item is also available as a special folder, this facet is returned. Read-only. |
| video | [Video](video.md) | Video metadata, if the item is a video. Read-only. |
| webDavUrl | Url | DAV compatible URL for the item. |
| webUrl | Url | URL that displays the resource in the browser. Read-only. |

Expand Down
6 changes: 6 additions & 0 deletions concepts/changelog.md
Expand Up @@ -91,6 +91,12 @@ For details about known issues with Microsoft Graph APIs, see [Known issues](kno
|Addition|beta|Added the **deliveryOptimizationPriority** property to the [win32LobAppAssignmentSettings](/graph/api/resources/intune-apps-win32lobappassignmentsettings?view=graph-rest-beta) complex type|
|Addition|beta|Added the **deviceOsHigherThanDesiredOsVersion** member to the [iosUpdatesInstallStatus](/graph/api/resources/intune-deviceconfig-iosupdatesinstallstatus?view=graph-rest-beta) enum type. |

### Files (OneDrive for Business)

| **Change type** | **Version** | **Description** |
| :-------------- | :------------ | :--------------------------------------- |
| Addition | beta and v1.0 | Added **image** and **video** properties on the [remoteItem](/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. |

### Identity and access (Azure AD)

| **Change type** | **Version** | **Description** |
Expand Down

0 comments on commit de1feab

Please sign in to comment.