Rediger

Del via


externalOriginResourceConnector 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 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)"
}