Edit

relation resource type

Namespace: microsoft.graph.security.caseManagement

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 a link from a case to another security resource. This abstract type can't be instantiated directly. Use one of the following concrete derived types, identified by @odata.type:

Inherited from caseManagementEntity.

Methods

Method Return type Description
List microsoft.graph.security.caseManagement.relation collection List external resource relations for a case.
Create microsoft.graph.security.caseManagement.relation Create a relation from a case to another security resource.
Get microsoft.graph.security.caseManagement.relation Read a concrete relation from a case.
Update None Update the properties of a relation object.
Delete None Delete a relation from a case.

Properties

Property Type Description
createdBy String The user or service that created the resource. Inherited from caseManagementEntity.
createdDateTime DateTimeOffset The date and time when the resource was created. Inherited from caseManagementEntity.
id String The unique identifier for the resource. Inherited from entity.
lastModifiedBy String The user or service that last modified the resource. Inherited from caseManagementEntity.
lastModifiedDateTime DateTimeOffset The date and time when the resource was last modified. Inherited from caseManagementEntity.
relatedResourceId String The identifier of the related external resource.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.caseManagement.relation",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "createdBy": "String",
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": "String",
  "relatedResourceId": "String"
}