|
47 | 47 | <EntityType Name="servicePrincipal" BaseType="graph.directoryObject" OpenType="true"> |
48 | 48 | <Property Name="appId" Type="Edm.String"/> |
49 | 49 | <NavigationProperty Name="owners" Type="Collection(graph.directoryObject)" /> |
| 50 | + <NavigationProperty Name="synchronization" Type="graph.synchronization" ContainsTarget="true"/> |
| 51 | + </EntityType> |
| 52 | + <EntityType Name="synchronization" BaseType="graph.entity"> |
| 53 | + <Property Name="secrets" Type="Collection(graph.synchronizationSecretKeyStringValuePair)"/> |
| 54 | + <NavigationProperty Name="jobs" Type="Collection(graph.synchronizationJob)" ContainsTarget="true"/> |
| 55 | + </EntityType> |
| 56 | + <EntityType Name="synchronizationJob" BaseType="graph.entity"> |
| 57 | + <NavigationProperty Name="schema" Type="graph.synchronizationSchema" ContainsTarget="true"/> |
| 58 | + </EntityType> |
| 59 | + <EntityType Name="schema" BaseType="graph.entity"> |
| 60 | + <Property Name="baseType" Type="Edm.String" Nullable="false"/> |
| 61 | + <Property Name="properties" Type="Collection(graph.property)"/> |
| 62 | + </EntityType> |
| 63 | + <EntityType Name="synchronizationSchema" BaseType="graph.entity"> |
| 64 | + <Property Name="synchronizationRules" Type="Collection(graph.synchronizationRule)"/> |
| 65 | + <Property Name="version" Type="Edm.String"/> |
| 66 | + <NavigationProperty Name="directories" Type="Collection(graph.directoryDefinition)" ContainsTarget="true"/> |
50 | 67 | </EntityType> |
51 | 68 | <EntityType Name="directoryObject" BaseType="graph.entity" OpenType="true"> |
52 | 69 | <Property Name="deletedDateTime" Type="Edm.DateTimeOffset" /> |
|
236 | 253 | </Record> |
237 | 254 | </Annotation> |
238 | 255 | </Annotations> |
| 256 | + <Annotations Target="microsoft.graph.synchronizationJob/schema"> |
| 257 | + <Annotation Term="Org.OData.Capabilities.V1.UpdateRestrictions"> |
| 258 | + <Record> |
| 259 | + <PropertyValue Property="Description" String="synchronizationJob: schema" /> |
| 260 | + <PropertyValue Property="LongDescription" String="Update the synchronization schema for a given job or template." /> |
| 261 | + </Record> |
| 262 | + </Annotation> |
| 263 | + </Annotations> |
239 | 264 | <Annotations Target="microsoft.graph.driveItem/children"> |
240 | 265 | <Annotation Term="Org.OData.Capabilities.V1.ReadRestrictions"> |
241 | 266 | <Record> |
|
0 commit comments