Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Defines how values for the given target attribute should flow during synchronization. This object is defined in the synchronizationSchema resource type.
Properties
| Property | Type | Description | |
|---|---|---|---|
| defaultValue | String | Default value to be used in case the source property was evaluated to null. Optional. |
|
| exportMissingReferences | Boolean | For internal use only. | |
| flowBehavior | attributeFlowBehavior | Defines when this attribute should be exported to the target directory. The possible values are: FlowWhenChanged and FlowAlways. Default is FlowWhenChanged. |
|
| flowType | attributeFlowType | Defines when this attribute should be updated in the target directory. The possible values are:
|
|
| matchingPriority | Int32 | If higher than 0, this attribute will be used to perform an initial match of the objects between source and target directories. The synchronization engine will try to find the matching object using attribute with lowest value of matching priority first. If not found, the attribute with the next matching priority will be used, and so on a until match is found or no more matching attributes are left. Only attributes that are expected to have unique values, such as email, should be used as matching attributes. | |
| source | attributeMappingSource | Defines how a value should be extracted (or transformed) from the source object. | |
| targetAttributeName | String | Name of the attribute on the target object. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.attributeMapping",
"defaultValue": "String",
"exportMissingReferences": "Boolean",
"flowBehavior": "String",
"flowType": "String",
"matchingPriority": "Integer",
"source": {
"@odata.type": "microsoft.graph.attributeMappingSource"
},
"targetAttributeName": "String"
}