Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 2.15 KB

unifiedstoragequota.md

File metadata and controls

62 lines (51 loc) · 2.15 KB
title description author ms.localizationpriority ms.subservice doc_type
unifiedStorageQuota resource type
Provides an aggregate view of a user's quota information across multiple services.
BarryShehadeh
medium
onedrive
resourcePageType

unifiedStorageQuota resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Provides an aggregate view of a user's quota information across multiple services.

Methods

Method Return type Description
Get unifiedStorageQuota Read the properties and relationships of a unifiedStorageQuota object.
List serviceStorageQuotaBreakdown collection Get the list of services in a serviceStorageQuotaBreakdown.

Properties

Property Type Description
id String The user ID.
manageWebUrl String A URL that can be used in a browser to manage the breakdown. Read-only.
remaining Int64 Total space remaining before reaching the quota limit in bytes.
state usqState Indicates the state of the storage space. The possible values are: normal, nearing, critical, full, and overLimit.
total Int64 Total allowed storage space in bytes.
used Int64 Total space used in bytes.

Relationships

Relationship Type Description
services serviceStorageQuotaBreakdown collection The breakdown of services contributing to the user's quota usage.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.unifiedStorageQuota",
  "id": "String",
  "manageWebUrl": "String",
  "remaining": "Integer",
  "state": "normal | nearing | critical | full | overLimit",
  "total": "Integer",
  "used": "Integer"
}