Skip to content

Latest commit

 

History

History
57 lines (48 loc) · 2.01 KB

security-protectionrule.md

File metadata and controls

57 lines (48 loc) · 2.01 KB
title description author ms.localizationpriority ms.subservice doc_type
protectionRule resource type
Represents a rule, which contains basic properties such as ID, name, and so on.
mmekler
medium
security
resourcePageType

protectionRule resource type

Namespace: microsoft.graph.security

[!INCLUDE beta-disclaimer]

Represents a rule, which contains basic properties such as ID, name, and so on. This type is abstract.

Inherits from microsoft.graph.entity.

Properties

Property Type Description
createdBy String Name of the user or application that created the rule.
createdDateTime DateTimeOffset Timestamp of rule creation.
displayName String Name of the rule.
id String Unique identifier to represent the rule.
isEnabled Boolean Whether rule is turned on for the tenant.
lastModifiedBy String Name of the user or application who last updated the rule.
lastModifiedDateTime DateTimeOffset Timestamp of when the rule was last updated.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.protectionRule",
  "id": "String (identifier)",
  "displayName": "String",
  "isEnabled": "Boolean",
  "createdBy": "String",
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": "String"
}