Skip to content

Latest commit

 

History

History
75 lines (62 loc) · 3.83 KB

File metadata and controls

75 lines (62 loc) · 3.83 KB
title externalOriginResourceConnector resource type
description Represents a connector used to communicate with external resource systems.
author vikama-microsoft
ms.date 11/11/2025
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType

externalOriginResourceConnector resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a connector used to communicate with external resource systems in Microsoft Entra ID Governance. The connector facilitates integration with external applications such as SAP systems, enabling access management and governance capabilities.

Inherits from entity.

Methods

Method Return type Description
List externalOriginResourceConnector collection Get a list of the externalOriginResourceConnector objects and their properties.
Create externalOriginResourceConnector Create a new externalOriginResourceConnector object.
Get externalOriginResourceConnector Read the properties and relationships of an externalOriginResourceConnector object.
Update externalOriginResourceConnector Update the properties of an externalOriginResourceConnector object.
Delete None Delete an externalOriginResourceConnector object.

Properties

Property Type Description
connectionInfo connectionInfo The connection information used to communicate with the external resource system. When connectorType is sapIag, the type is externalTokenBasedSapIagConnectionInfo.
connectorType connectorType The type of connector to SAP being used. The possible values are: sapIag (SAP Cloud Identity Access Governance), sapAc (SAP Augmented Access Control), unknownFutureValue.
createdBy String The identifier of the user or application that created the connector.
createdDateTime DateTimeOffset The date and time when the connector was created.
description String A description of the connector.
displayName String The display name of the connector.
id String The unique identifier of the connector. Inherited from entity.
modifiedBy String The identifier of the user or application that last modified the connector.
modifiedDateTime DateTimeOffset The date and time when the connector was last modified.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.externalOriginResourceConnector",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "connectorType": "String",
  "connectionInfo": {
    "@odata.type": "microsoft.graph.connectionInfo"
  },
  "createdBy": "String",
  "createdDateTime": "String (timestamp)",
  "modifiedBy": "String",
  "modifiedDateTime": "String (timestamp)"
}