oneDriveForBusinessProtectionPolicy 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 details about protection policies applied to Microsoft 365 data in an organization. Global Admins (or SharePoint in Microsoft 365 Admins or Exchange Online Admins) define protection policies. They 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.
Methods
Method | Return type | Description |
---|---|---|
Create | oneDriveForBusinessProtectionPolicy | Create a new oneDriveForBusinessProtectionPolicy. |
Update | oneDriveForBusinessProtectionPolicy | Update the properties of a oneDriveForBusinessProtectionPolicy. |
Properties
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 . |
protectionPolicyStatus values
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. Don't use. |
Relationships
Relationship | Type | Description |
---|---|---|
driveInclusionRules | driveProtectionRule collection | Contains the details of the OneDrive for Work or School protection rule. |
driveProtectionUnits | driveProtectionUnit collection | Contains the protection units associated with a OneDrive for Work or School protection policy. |
JSON representation
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"
}
}