oneDriveForBusinessProtectionPolicy resource type
In this article
Namespace: microsoft.graph
Contains details about protection policies applied to Microsoft 365 data in an organization. Protection policies are defined by the Global Admin (or the SharePoint Online Admin or Exchange Online Admin) and include what data to protect, when to protect it, and for what time period to retain the protected data for a single Microsoft 365 service.
Inherits from protectionPolicyBase.
Method | Return type | Description |
---|---|---|
Create | oneDriveForBusinessProtectionPolicy | Create a new oneDriveForBusinessProtectionPolicy. |
Update | oneDriveForBusinessProtectionPolicy | Update the properties of a oneDriveForBusinessProtectionPolicy. |
Property | Type | Description |
---|---|---|
id | String | The unique identifier of the protection rule associated with the policy. |
displayName | String | The name of the policy to be created. |
createdDateTime | DateTimeOffset | The time of creation of the policy. |
createdBy | identitySet | The identity of person who created the policy. |
lastModifiedBy | identitySet | The identity of the person who last modified the policy. |
lastModifiedDateTime | DateTimeOffset | The timestamp of the last modification of the policy. |
status | protectionPolicyStatus | Status of the policy. The value is the aggregated status of the protection units. The possible values are: inactive , activeWithErrors , updating , active , unknownFutureValue . |
Member | Description |
---|---|
active | All units are protected. |
activeWithErrors | Some units are protected and others are unprotected. |
inactive | All units are unprotected. |
updating | Some or all units are in a protectRequested , unprotectRequested , or removeRequested state. |
unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
Relationship | Type | Description |
---|---|---|
driveInclusionRules | driveProtectionRule collection | Contains the details of the Onedrive for Business protection rule. |
driveProtectionUnits | driveProtectionUnit collection | Contains the protection units associated with a OneDrive for Business protection policy. |
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.oneDriveForBusinessProtectionPolicy",
"id": "String (identifier)",
"displayName": "String",
"status": "String",
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
}
}