Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Provides insight into the Microsoft Entra ID P1 and P2 premium license utilization for a tenant. This resource shows how many premium licenses are entitled and how the associated premium features are being used.
Inherits from entity
Methods
| Method | Return type | Description |
|---|---|---|
| Get | azureADPremiumLicenseInsight | Get the premium license utilization insight for the tenant. |
Properties
| Property | Type | Description |
|---|---|---|
| entitledP1LicenseCount | Int64 | The number of Microsoft Entra ID P1 licenses entitled to the tenant. |
| entitledP2LicenseCount | Int64 | The number of Microsoft Entra ID P2 licenses entitled to the tenant. |
| entitledTotalLicenseCount | Int64 | The total number of Microsoft Entra ID premium licenses (P1 + P2) entitled to the tenant. |
| id | String | The unique identifier for the entity. Inherited from entity. |
| internetAccessFeatureUtilizations | internetAccessFeatureUtilizations | The utilization data for Microsoft Entra Internet Access features. |
| p1FeatureUtilizations | azureADPremiumP1FeatureUtilizations | The utilization data for Microsoft Entra ID P1 features. |
| p2FeatureUtilizations | azureADPremiumP2FeatureUtilizations | The utilization data for Microsoft Entra ID P2 features. |
| privateAccessFeatureUtilizations | privateAccessFeatureUtilizations | The utilization data for Microsoft Entra Private Access features. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.azureADPremiumLicenseInsight",
"entitledP1LicenseCount": "Integer",
"entitledP2LicenseCount": "Integer",
"entitledTotalLicenseCount": "Integer",
"id": "String (identifier)",
"internetAccessFeatureUtilizations": {
"@odata.type": "microsoft.graph.internetAccessFeatureUtilizations"
},
"p1FeatureUtilizations": {
"@odata.type": "microsoft.graph.azureADPremiumP1FeatureUtilizations"
},
"p2FeatureUtilizations": {
"@odata.type": "microsoft.graph.azureADPremiumP2FeatureUtilizations"
},
"privateAccessFeatureUtilizations": {
"@odata.type": "microsoft.graph.privateAccessFeatureUtilizations"
}
}