Skip to content

Commit

Permalink
Merge pull request #696 from microsoftgraph/schemas/metadata-publishi…
Browse files Browse the repository at this point in the history
…ng-2024-09-24

Schema sync 2024-09-24 from 1.3.485.0
  • Loading branch information
andrueastman authored Sep 25, 2024
2 parents e8b5d4e + ebb7157 commit 45c385e
Show file tree
Hide file tree
Showing 6 changed files with 1,357 additions and 2 deletions.
100 changes: 99 additions & 1 deletion schemas/annotated-beta-Prod.csdl
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,16 @@
<Member Name="pageRenderStart" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="authenticationFailureReasonCode">
<Member Name="incomplete" Value="0" />
<Member Name="denied" Value="1" />
<Member Name="systemFailure" Value="2" />
<Member Name="badRequest" Value="3" />
<Member Name="other" Value="4" />
<Member Name="unknownFutureValue" Value="5" />
<Member Name="userError" Value="6" />
<Member Name="configError" Value="7" />
</EnumType>
<EnumType Name="authenticationMethodFeature">
<Member Name="ssprRegistered" Value="0" />
<Member Name="ssprEnabled" Value="1" />
Expand Down Expand Up @@ -21641,6 +21651,11 @@
<EntityType Name="authenticationEventsPolicy" BaseType="graph.entity">
<NavigationProperty Name="onSignupStart" Type="Collection(graph.authenticationListener)" ContainsTarget="true" />
</EntityType>
<EntityType Name="authenticationFailure" BaseType="graph.entity">
<Property Name="count" Type="Edm.Int64" Nullable="false" />
<Property Name="reason" Type="Edm.String" Nullable="false" />
<Property Name="reasonCode" Type="graph.authenticationFailureReasonCode" Nullable="false" />
</EntityType>
<EntityType Name="authenticationFlowsPolicy" BaseType="graph.entity">
<Property Name="description" Type="Edm.String" />
<Property Name="displayName" Type="Edm.String" />
Expand Down Expand Up @@ -21684,12 +21699,15 @@
<EntityType Name="authenticationsMetric" BaseType="graph.entity">
<Property Name="appid" Type="Edm.String" />
<Property Name="attemptsCount" Type="Edm.Int64" Nullable="false" />
<Property Name="authFlow" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
<Property Name="language" Type="Edm.String" />
<Property Name="os" Type="Edm.String" />
<Property Name="successCount" Type="Edm.Int64" Nullable="false" />
<NavigationProperty Name="failures" Type="Collection(graph.authenticationFailure)" />
</EntityType>
<EntityType Name="authenticationStrengthPolicy" BaseType="graph.entity">
<Property Name="allowedCombinations" Type="Collection(graph.authenticationMethodModes)" Nullable="false" />
Expand Down Expand Up @@ -30831,6 +30849,7 @@
<NavigationProperty Name="dailyPrintUsageByUser" Type="Collection(graph.printUsageByUser)" ContainsTarget="true" />
<NavigationProperty Name="dailyPrintUsageSummariesByPrinter" Type="Collection(graph.printUsageByPrinter)" ContainsTarget="true" />
<NavigationProperty Name="dailyPrintUsageSummariesByUser" Type="Collection(graph.printUsageByUser)" ContainsTarget="true" />
<NavigationProperty Name="healthMonitoring" Type="microsoft.graph.healthMonitoring.healthMonitoringRoot" ContainsTarget="true" />
<NavigationProperty Name="monthlyPrintUsageByPrinter" Type="Collection(graph.printUsageByPrinter)" ContainsTarget="true" />
<NavigationProperty Name="monthlyPrintUsageByUser" Type="Collection(graph.printUsageByUser)" ContainsTarget="true" />
<NavigationProperty Name="monthlyPrintUsageSummariesByPrinter" Type="Collection(graph.printUsageByPrinter)" ContainsTarget="true" />
Expand Down Expand Up @@ -33894,6 +33913,7 @@
</EntityType>
<EntityType Name="userRequestsMetric" BaseType="graph.entity">
<Property Name="appId" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
Expand Down Expand Up @@ -33930,6 +33950,7 @@
</EntityType>
<EntityType Name="userSignUpMetric" BaseType="graph.entity">
<Property Name="appId" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="count" Type="Edm.Int64" Nullable="false" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
Expand Down Expand Up @@ -45492,7 +45513,9 @@
<Singleton Name="policies" Type="microsoft.graph.policyRoot" />
<Singleton Name="print" Type="microsoft.graph.print" />
<Singleton Name="privacy" Type="microsoft.graph.privacy" />
<Singleton Name="reports" Type="microsoft.graph.reportRoot" />
<Singleton Name="reports" Type="microsoft.graph.reportRoot">
<NavigationPropertyBinding Path="healthMonitoring/alerts/enrichment/impacts/microsoft.graph.healthMonitoring.directoryObjectImpactSummary/resourceSampling" Target="directoryObjects" />
</Singleton>
<Singleton Name="roleManagement" Type="microsoft.graph.roleManagement">
<NavigationPropertyBinding Path="directory/resourceNamespaces/resourceActions/authenticationContext" Target="identity/microsoft.graph.conditionalAccessRoot/conditionalAccess/authenticationContextClassReferences" />
<NavigationPropertyBinding Path="enterpriseApps/resourceNamespaces/resourceActions/authenticationContext" Target="identity/microsoft.graph.conditionalAccessRoot/conditionalAccess/authenticationContextClassReferences" />
Expand Down Expand Up @@ -46686,6 +46709,81 @@
<ReturnType Type="Collection(microsoft.graph.externalConnectors.externalActivityResult)" />
</Action>
</Schema>
<Schema Namespace="microsoft.graph.healthMonitoring" xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EnumType Name="alertState">
<Member Name="active" Value="0" />
<Member Name="resolved" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="alertType">
<Member Name="unknown" Value="0" />
<Member Name="mfaSignInFailure" Value="1" />
<Member Name="managedDeviceSignInFailure" Value="2" />
<Member Name="compliantDeviceSignInFailure" Value="3" />
<Member Name="unknownFutureValue" Value="4" />
</EnumType>
<EnumType Name="category">
<Member Name="unknown" Value="0" />
<Member Name="authentication" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="enrichmentState">
<Member Name="none" Value="0" />
<Member Name="inProgress" Value="1" />
<Member Name="enriched" Value="2" />
<Member Name="unknownFutureValue" Value="3" />
</EnumType>
<EnumType Name="scenario">
<Member Name="unknown" Value="0" />
<Member Name="mfa" Value="1" />
<Member Name="devices" Value="2" />
<Member Name="unknownFutureValue" Value="3" />
</EnumType>
<ComplexType Name="applicationImpactSummary" BaseType="microsoft.graph.healthMonitoring.directoryObjectImpactSummary" />
<ComplexType Name="deviceImpactSummary" BaseType="microsoft.graph.healthMonitoring.directoryObjectImpactSummary" />
<ComplexType Name="Dictionary" OpenType="true" />
<ComplexType Name="directoryObjectImpactSummary" BaseType="microsoft.graph.healthMonitoring.resourceImpactSummary" Abstract="true">
<NavigationProperty Name="resourceSampling" Type="Collection(graph.directoryObject)" />
</ComplexType>
<ComplexType Name="documentation" BaseType="microsoft.graph.healthMonitoring.healthMonitoringDictionary" OpenType="true" />
<ComplexType Name="emailNotificationConfiguration">
<Property Name="groupId" Type="Edm.String" Nullable="false" />
<Property Name="isEnabled" Type="Edm.Boolean" Nullable="false" />
</ComplexType>
<ComplexType Name="enrichment">
<Property Name="impacts" Type="Collection(microsoft.graph.healthMonitoring.resourceImpactSummary)" />
<Property Name="state" Type="microsoft.graph.healthMonitoring.enrichmentState" Nullable="false" />
<Property Name="supportingData" Type="microsoft.graph.healthMonitoring.supportingData" />
</ComplexType>
<ComplexType Name="groupImpactSummary" BaseType="microsoft.graph.healthMonitoring.directoryObjectImpactSummary" />
<ComplexType Name="healthMonitoringDictionary" BaseType="microsoft.graph.healthMonitoring.Dictionary" OpenType="true" />
<ComplexType Name="resourceImpactSummary" Abstract="true">
<Property Name="impactedCount" Type="Edm.String" Nullable="false" />
<Property Name="impactedCountLimitExceeded" Type="Edm.Boolean" Nullable="false" />
<Property Name="resourceType" Type="Edm.String" Nullable="false" />
</ComplexType>
<ComplexType Name="servicePrincipalImpactSummary" BaseType="microsoft.graph.healthMonitoring.directoryObjectImpactSummary" />
<ComplexType Name="signals" BaseType="microsoft.graph.healthMonitoring.healthMonitoringDictionary" OpenType="true" />
<ComplexType Name="supportingData" BaseType="microsoft.graph.healthMonitoring.healthMonitoringDictionary" OpenType="true" />
<ComplexType Name="userImpactSummary" BaseType="microsoft.graph.healthMonitoring.directoryObjectImpactSummary" />
<EntityType Name="alert" BaseType="graph.entity">
<Property Name="alertType" Type="microsoft.graph.healthMonitoring.alertType" Nullable="false" />
<Property Name="category" Type="microsoft.graph.healthMonitoring.category" Nullable="false" />
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
<Property Name="documentation" Type="microsoft.graph.healthMonitoring.documentation" />
<Property Name="enrichment" Type="microsoft.graph.healthMonitoring.enrichment" />
<Property Name="scenario" Type="microsoft.graph.healthMonitoring.scenario" Nullable="false" />
<Property Name="signals" Type="microsoft.graph.healthMonitoring.signals" />
<Property Name="state" Type="microsoft.graph.healthMonitoring.alertState" Nullable="false" />
</EntityType>
<EntityType Name="alertConfiguration" BaseType="graph.entity">
<Property Name="emailNotificationConfigurations" Type="Collection(microsoft.graph.healthMonitoring.emailNotificationConfiguration)" />
</EntityType>
<EntityType Name="healthMonitoringRoot" BaseType="graph.entity">
<NavigationProperty Name="alertConfigurations" Type="Collection(microsoft.graph.healthMonitoring.alertConfiguration)" ContainsTarget="true" />
<NavigationProperty Name="alerts" Type="Collection(microsoft.graph.healthMonitoring.alert)" ContainsTarget="true" />
</EntityType>
</Schema>
<Schema Namespace="microsoft.graph.identityGovernance" xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EnumType Name="customTaskExtensionOperationStatus">
<Member Name="completed" Value="0" />
Expand Down
20 changes: 20 additions & 0 deletions schemas/beta-Fairfax.csdl
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,16 @@
<Member Name="pageRenderStart" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="authenticationFailureReasonCode">
<Member Name="incomplete" Value="0" />
<Member Name="denied" Value="1" />
<Member Name="systemFailure" Value="2" />
<Member Name="badRequest" Value="3" />
<Member Name="other" Value="4" />
<Member Name="unknownFutureValue" Value="5" />
<Member Name="userError" Value="6" />
<Member Name="configError" Value="7" />
</EnumType>
<EnumType Name="authenticationMethodFeature">
<Member Name="ssprRegistered" Value="0" />
<Member Name="ssprEnabled" Value="1" />
Expand Down Expand Up @@ -17327,6 +17337,11 @@
<Property Name="conditions" Type="graph.authenticationConditions" />
<Property Name="priority" Type="Edm.Int32" Nullable="false" />
</EntityType>
<EntityType Name="authenticationFailure" BaseType="graph.entity">
<Property Name="count" Type="Edm.Int64" Nullable="false" />
<Property Name="reason" Type="Edm.String" Nullable="false" />
<Property Name="reasonCode" Type="graph.authenticationFailureReasonCode" Nullable="false" />
</EntityType>
<EntityType Name="authenticationFlowsPolicy" BaseType="graph.entity">
<Property Name="description" Type="Edm.String" />
<Property Name="displayName" Type="Edm.String" />
Expand Down Expand Up @@ -17366,12 +17381,15 @@
<EntityType Name="authenticationsMetric" BaseType="graph.entity">
<Property Name="appid" Type="Edm.String" />
<Property Name="attemptsCount" Type="Edm.Int64" Nullable="false" />
<Property Name="authFlow" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
<Property Name="language" Type="Edm.String" />
<Property Name="os" Type="Edm.String" />
<Property Name="successCount" Type="Edm.Int64" Nullable="false" />
<NavigationProperty Name="failures" Type="Collection(graph.authenticationFailure)" />
</EntityType>
<EntityType Name="authenticationStrengthPolicy" BaseType="graph.entity">
<Property Name="allowedCombinations" Type="Collection(graph.authenticationMethodModes)" Nullable="false" />
Expand Down Expand Up @@ -26158,6 +26176,7 @@
</EntityType>
<EntityType Name="userRequestsMetric" BaseType="graph.entity">
<Property Name="appId" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
Expand All @@ -26176,6 +26195,7 @@
</EntityType>
<EntityType Name="userSignUpMetric" BaseType="graph.entity">
<Property Name="appId" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="count" Type="Edm.Int64" Nullable="false" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
Expand Down
19 changes: 19 additions & 0 deletions schemas/beta-Mooncake.csdl
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,16 @@
<Member Name="pageRenderStart" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="authenticationFailureReasonCode">
<Member Name="incomplete" Value="0" />
<Member Name="denied" Value="1" />
<Member Name="systemFailure" Value="2" />
<Member Name="badRequest" Value="3" />
<Member Name="other" Value="4" />
<Member Name="unknownFutureValue" Value="5" />
<Member Name="userError" Value="6" />
<Member Name="configError" Value="7" />
</EnumType>
<EnumType Name="authenticationMethodFeature">
<Member Name="ssprRegistered" Value="0" />
<Member Name="ssprEnabled" Value="1" />
Expand Down Expand Up @@ -13608,6 +13618,11 @@
<EntityType Name="authenticationEventsPolicy" BaseType="graph.entity">
<NavigationProperty Name="onSignupStart" Type="Collection(graph.authenticationListener)" ContainsTarget="true" />
</EntityType>
<EntityType Name="authenticationFailure" BaseType="graph.entity">
<Property Name="count" Type="Edm.Int64" Nullable="false" />
<Property Name="reason" Type="Edm.String" Nullable="false" />
<Property Name="reasonCode" Type="graph.authenticationFailureReasonCode" Nullable="false" />
</EntityType>
<EntityType Name="authenticationFlowsPolicy" BaseType="graph.entity">
<Property Name="description" Type="Edm.String" />
<Property Name="displayName" Type="Edm.String" />
Expand Down Expand Up @@ -13646,12 +13661,15 @@
<EntityType Name="authenticationsMetric" BaseType="graph.entity">
<Property Name="appid" Type="Edm.String" />
<Property Name="attemptsCount" Type="Edm.Int64" Nullable="false" />
<Property Name="authFlow" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
<Property Name="language" Type="Edm.String" />
<Property Name="os" Type="Edm.String" />
<Property Name="successCount" Type="Edm.Int64" Nullable="false" />
<NavigationProperty Name="failures" Type="Collection(graph.authenticationFailure)" />
</EntityType>
<EntityType Name="authorizationPolicy" BaseType="graph.policyBase">
<Property Name="allowedToSignUpEmailBasedSubscriptions" Type="Edm.Boolean" Nullable="false" />
Expand Down Expand Up @@ -21254,6 +21272,7 @@
</EntityType>
<EntityType Name="userRequestsMetric" BaseType="graph.entity">
<Property Name="appId" Type="Edm.String" />
<Property Name="browser" Type="Edm.String" />
<Property Name="country" Type="Edm.String" />
<Property Name="factDate" Type="Edm.Date" />
<Property Name="identityProvider" Type="Edm.String" />
Expand Down
Loading

0 comments on commit 45c385e

Please sign in to comment.