permissionsCreepIndexDistribution resource type
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.
Represents the Permissions Creep Index Distribution for the authorization system. PCI distribution chart shows the classification of human and non-human identities based on the PCI score in three buckets: low, medium, high.
Inherits from entity.
Methods
Method | Return type | Description |
---|---|---|
List | permissionsCreepIndexDistribution collection | Get the permissionsCreepIndexDistribution resources from the permissionsCreepIndexDistributions navigation property. |
Get | permissionsCreepIndexDistribution | Read the properties and relationships of a permissionsCreepIndexDistribution object. |
Properties
Property | Type | Description |
---|---|---|
createdDateTime | DateTimeOffset | Defines when the PCI distribution was created. |
highRiskProfile | riskProfile | Defines the human and non-human identities in a high-risk bucket. |
id | String | Unique identifier for the PCI distribution. Inherited from entity. |
lowRiskProfile | riskProfile | Defines the human and nonhuman identities in the low-risk bucket. |
mediumRiskProfile | riskProfile | Defines human and nonhuman identities in the medium-risk bucket. |
Relationships
Relationship | Type | Description |
---|---|---|
authorizationSystem | authorizationSystem | Represents an authorization system onboarded to Permissions Management. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.permissionsCreepIndexDistribution",
"id": "String (identifier)",
"createdDateTime": "String (timestamp)",
"lowRiskProfile": {
"@odata.type": "microsoft.graph.riskProfile"
},
"mediumRiskProfile": {
"@odata.type": "microsoft.graph.riskProfile"
},
"highRiskProfile": {
"@odata.type": "microsoft.graph.riskProfile"
}
}