Skip to content

Commit 8a6af9c

Browse files
committed
Schema sync 2024-11-26 from 1.3.524.0
1 parent 359a06d commit 8a6af9c

11 files changed

+282
-28
lines changed

schemas/annotated-beta-Prod.csdl

Lines changed: 77 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4436,6 +4436,18 @@
44364436
<Member Name="surface" Value="2" />
44374437
<Member Name="surfaceDock" Value="3" />
44384438
</EnumType>
4439+
<EnumType Name="hardwareOathTokenHashFunction">
4440+
<Member Name="hmacsha1" Value="0" />
4441+
<Member Name="hmacsha256" Value="1" />
4442+
<Member Name="unknownFutureValue" Value="2" />
4443+
</EnumType>
4444+
<EnumType Name="hardwareOathTokenStatus">
4445+
<Member Name="available" Value="0" />
4446+
<Member Name="assigned" Value="1" />
4447+
<Member Name="activated" Value="2" />
4448+
<Member Name="failedActivation" Value="3" />
4449+
<Member Name="unknownFutureValue" Value="4" />
4450+
</EnumType>
44394451
<EnumType Name="hashAlgorithms" IsFlags="true">
44404452
<Member Name="sha1" Value="1" />
44414453
<Member Name="sha2" Value="2" />
@@ -21884,6 +21896,7 @@
2188421896
<Property Name="signInPreferences" Type="graph.signInPreferences" />
2188521897
<NavigationProperty Name="emailMethods" Type="Collection(graph.emailAuthenticationMethod)" ContainsTarget="true" />
2188621898
<NavigationProperty Name="fido2Methods" Type="Collection(graph.fido2AuthenticationMethod)" ContainsTarget="true" />
21899+
<NavigationProperty Name="hardwareOathMethods" Type="Collection(graph.hardwareOathAuthenticationMethod)" ContainsTarget="true" />
2188721900
<NavigationProperty Name="methods" Type="Collection(graph.authenticationMethod)" ContainsTarget="true" />
2188821901
<NavigationProperty Name="microsoftAuthenticatorMethods" Type="Collection(graph.microsoftAuthenticatorAuthenticationMethod)" ContainsTarget="true" />
2188921902
<NavigationProperty Name="operations" Type="Collection(graph.longRunningOperation)" ContainsTarget="true" />
@@ -21944,6 +21957,10 @@
2194421957
<Property Name="excludeTargets" Type="Collection(graph.excludeTarget)" />
2194521958
<Property Name="state" Type="graph.authenticationMethodState" />
2194621959
</EntityType>
21960+
<EntityType Name="authenticationMethodDevice" BaseType="graph.entity">
21961+
<Property Name="displayName" Type="Edm.String" />
21962+
<NavigationProperty Name="hardwareOathDevices" Type="Collection(graph.hardwareOathTokenAuthenticationMethodDevice)" ContainsTarget="true" />
21963+
</EntityType>
2194721964
<EntityType Name="authenticationMethodModeDetail" BaseType="graph.entity">
2194821965
<Property Name="authenticationMethod" Type="graph.baseAuthenticationMethod" Nullable="false" />
2194921966
<Property Name="displayName" Type="Edm.String" Nullable="false" />
@@ -22714,6 +22731,7 @@
2271422731
<Property Name="tenantId" Type="Edm.String" />
2271522732
<Property Name="webUrl" Type="Edm.String" />
2271622733
<NavigationProperty Name="filesFolder" Type="graph.driveItem" ContainsTarget="true" />
22734+
<NavigationProperty Name="getAllMembers" Type="Collection(graph.conversationMember)" ContainsTarget="true" />
2271722735
<NavigationProperty Name="members" Type="Collection(graph.conversationMember)" ContainsTarget="true" />
2271822736
<NavigationProperty Name="messages" Type="Collection(graph.chatMessage)" ContainsTarget="true" />
2271922737
<NavigationProperty Name="sharedWithTeams" Type="Collection(graph.sharedWithChannelTeamInfo)" ContainsTarget="true" />
@@ -25331,6 +25349,7 @@
2533125349
<EntityType Name="directory" BaseType="graph.entity">
2533225350
<NavigationProperty Name="administrativeUnits" Type="Collection(graph.administrativeUnit)" ContainsTarget="true" />
2533325351
<NavigationProperty Name="attributeSets" Type="Collection(graph.attributeSet)" ContainsTarget="true" />
25352+
<NavigationProperty Name="authenticationMethodDevices" Type="graph.authenticationMethodDevice" ContainsTarget="true" />
2533425353
<NavigationProperty Name="certificateAuthorities" Type="graph.certificateAuthorityPath" ContainsTarget="true" />
2533525354
<NavigationProperty Name="customSecurityAttributeDefinitions" Type="Collection(graph.customSecurityAttributeDefinition)" ContainsTarget="true" />
2533625355
<NavigationProperty Name="deletedItems" Type="Collection(graph.directoryObject)" ContainsTarget="true" />
@@ -26908,9 +26927,23 @@
2690826927
<Property Name="userEmail" Type="Edm.String" />
2690926928
<Property Name="userName" Type="Edm.String" />
2691026929
</EntityType>
26930+
<EntityType Name="hardwareOathAuthenticationMethod" BaseType="graph.authenticationMethod">
26931+
<NavigationProperty Name="device" Type="graph.hardwareOathTokenAuthenticationMethodDevice" ContainsTarget="true" />
26932+
</EntityType>
2691126933
<EntityType Name="hardwareOathAuthenticationMethodConfiguration" BaseType="graph.authenticationMethodConfiguration">
2691226934
<NavigationProperty Name="includeTargets" Type="Collection(graph.authenticationMethodTarget)" ContainsTarget="true" />
2691326935
</EntityType>
26936+
<EntityType Name="hardwareOathTokenAuthenticationMethodDevice" BaseType="graph.authenticationMethodDevice">
26937+
<Property Name="assignedTo" Type="graph.identity" />
26938+
<Property Name="hashFunction" Type="graph.hardwareOathTokenHashFunction" />
26939+
<Property Name="manufacturer" Type="Edm.String" Nullable="false" />
26940+
<Property Name="model" Type="Edm.String" Nullable="false" />
26941+
<Property Name="secretKey" Type="Edm.String" />
26942+
<Property Name="serialNumber" Type="Edm.String" Nullable="false" />
26943+
<Property Name="status" Type="graph.hardwareOathTokenStatus" />
26944+
<Property Name="timeIntervalInSeconds" Type="Edm.Int32" Nullable="false" />
26945+
<NavigationProperty Name="assignTo" Type="graph.user" />
26946+
</EntityType>
2691426947
<EntityType Name="hardwarePasswordDetail" BaseType="graph.entity">
2691526948
<Property Name="currentPassword" Type="Edm.String" />
2691626949
<Property Name="previousPasswords" Type="Collection(Edm.String)" />
@@ -32670,7 +32703,11 @@
3267032703
<Property Name="webPartType" Type="Edm.String" />
3267132704
</EntityType>
3267232705
<EntityType Name="startHoldMusicOperation" BaseType="graph.commsOperation" OpenType="true" />
32706+
<EntityType Name="startRecordingOperation" BaseType="graph.commsOperation" OpenType="true" />
32707+
<EntityType Name="startTranscriptionOperation" BaseType="graph.commsOperation" OpenType="true" />
3267332708
<EntityType Name="stopHoldMusicOperation" BaseType="graph.commsOperation" OpenType="true" />
32709+
<EntityType Name="stopRecordingOperation" BaseType="graph.commsOperation" OpenType="true" />
32710+
<EntityType Name="stopTranscriptionOperation" BaseType="graph.commsOperation" OpenType="true" />
3267432711
<EntityType Name="storage">
3267532712
<NavigationProperty Name="fileStorage" Type="graph.fileStorage" ContainsTarget="true" />
3267632713
<NavigationProperty Name="settings" Type="graph.storageSettings" ContainsTarget="true" />
@@ -36762,6 +36799,11 @@
3676236799
<Parameter Name="bindingParameter" Type="graph.educationAssignment" />
3676336800
<ReturnType Type="graph.educationAssignment" />
3676436801
</Action>
36802+
<Action Name="activate" IsBound="true">
36803+
<Parameter Name="bindingParameter" Type="graph.hardwareOathAuthenticationMethod" />
36804+
<Parameter Name="verificationCode" Type="Edm.String" Unicode="false" />
36805+
<Parameter Name="displayName" Type="Edm.String" Unicode="false" />
36806+
</Action>
3676536807
<Action Name="activate" IsBound="true">
3676636808
<Parameter Name="bindingParameter" Type="graph.protectionPolicyBase" />
3676736809
<ReturnType Type="graph.protectionPolicyBase" />
@@ -37219,6 +37261,18 @@
3721937261
<Parameter Name="bindingParameter" Type="graph.windowsQualityUpdateProfile" />
3722037262
<Parameter Name="assignments" Type="Collection(graph.windowsQualityUpdateProfileAssignment)" />
3722137263
</Action>
37264+
<Action Name="assignAndActivate" IsBound="true">
37265+
<Parameter Name="bindingParameter" Type="Collection(graph.hardwareOathAuthenticationMethod)" />
37266+
<Parameter Name="verificationCode" Type="Edm.String" Unicode="false" />
37267+
<Parameter Name="device" Type="graph.hardwareOathTokenAuthenticationMethodDevice" />
37268+
<Parameter Name="displayName" Type="Edm.String" Unicode="false" />
37269+
</Action>
37270+
<Action Name="assignAndActivateBySerialNumber" IsBound="true">
37271+
<Parameter Name="bindingParameter" Type="Collection(graph.hardwareOathAuthenticationMethod)" />
37272+
<Parameter Name="verificationCode" Type="Edm.String" Unicode="false" />
37273+
<Parameter Name="serialNumber" Type="Edm.String" Unicode="false" />
37274+
<Parameter Name="displayName" Type="Edm.String" Unicode="false" />
37275+
</Action>
3722237276
<Action Name="assignedAccessMultiModeProfiles" IsBound="true">
3722337277
<Parameter Name="bindingParameter" Type="graph.deviceConfiguration" />
3722437278
<Parameter Name="assignedAccessMultiModeProfiles" Type="Collection(graph.windowsAssignedAccessProfile)" />
@@ -38330,6 +38384,9 @@
3833038384
<Parameter Name="bindingParameter" Type="graph.educationAssignment" />
3833138385
<ReturnType Type="graph.educationAssignment" />
3833238386
</Action>
38387+
<Action Name="deactivate" IsBound="true">
38388+
<Parameter Name="bindingParameter" Type="graph.hardwareOathAuthenticationMethod" />
38389+
</Action>
3833338390
<Action Name="deactivate" IsBound="true">
3833438391
<Parameter Name="bindingParameter" Type="graph.protectionPolicyBase" />
3833538392
<ReturnType Type="graph.protectionPolicyBase" />
@@ -46141,6 +46198,7 @@
4614146198
<EntitySet Name="appRoleAssignments" EntityType="microsoft.graph.appRoleAssignment" />
4614246199
<EntitySet Name="approvalWorkflowProviders" EntityType="microsoft.graph.approvalWorkflowProvider" />
4614346200
<EntitySet Name="authenticationMethodConfigurations" EntityType="microsoft.graph.authenticationMethodConfiguration" />
46201+
<EntitySet Name="authenticationMethodDevices" EntityType="microsoft.graph.authenticationMethodDevice" />
4614446202
<EntitySet Name="bookingBusinesses" EntityType="microsoft.graph.bookingBusiness" />
4614546203
<EntitySet Name="bookingCurrencies" EntityType="microsoft.graph.bookingCurrency" />
4614646204
<EntitySet Name="businessFlowTemplates" EntityType="microsoft.graph.businessFlowTemplate" />
@@ -53740,6 +53798,13 @@
5374053798
</Record>
5374153799
</Annotation>
5374253800
</Annotations>
53801+
<Annotations Target="microsoft.graph.authentication/hardwareOathMethods">
53802+
<Annotation Term="Org.OData.Capabilities.V1.UpdateRestrictions">
53803+
<Record>
53804+
<PropertyValue Property="Updatable" Bool="false" />
53805+
</Record>
53806+
</Annotation>
53807+
</Annotations>
5374353808
<Annotations Target="microsoft.graph.authentication/microsoftAuthenticatorMethods">
5374453809
<Annotation Term="Org.OData.Capabilities.V1.InsertRestrictions">
5374553810
<Record>
@@ -66985,20 +67050,6 @@
6698567050
</Collection>
6698667051
</Annotation>
6698767052
</Annotations>
66988-
<Annotations Target="microsoft.graph.entra">
66989-
<Annotation Term="Org.OData.Core.V1.Revisions">
66990-
<Collection>
66991-
<Record>
66992-
<PropertyValue Property="Date" Date="2023-11-07" />
66993-
<PropertyValue Property="Kind">
66994-
<EnumMember>Org.OData.Core.V1.RevisionKind/Deprecated</EnumMember>
66995-
</PropertyValue>
66996-
<PropertyValue Property="RemovalDate" Date="2024-02-04" />
66997-
<PropertyValue Property="Version" String="2023-11/PrivatePreview:BulkJobs" />
66998-
</Record>
66999-
</Collection>
67000-
</Annotation>
67001-
</Annotations>
6700267053
<Annotations Target="microsoft.graph.enumeratedAccountsWithAccess/accounts">
6700367054
<Annotation Term="Org.OData.Capabilities.V1.CustomHeaders">
6700467055
<Collection>
@@ -98626,6 +98677,11 @@
9862698677
<Property Name="count" Type="Edm.Int64" Nullable="false" />
9862798678
<Property Name="severity" Type="microsoft.graph.networkaccess.alertSeverity" Nullable="false" />
9862898679
</ComplexType>
98680+
<ComplexType Name="alertSummary">
98681+
<Property Name="alertType" Type="microsoft.graph.networkaccess.alertType" Nullable="false" />
98682+
<Property Name="count" Type="Edm.Int64" Nullable="false" />
98683+
<Property Name="severity" Type="microsoft.graph.networkaccess.alertSeverity" Nullable="false" />
98684+
</ComplexType>
9862998685
<ComplexType Name="applicationSnapshot">
9863098686
<Property Name="appId" Type="Edm.String" Nullable="false" />
9863198687
</ComplexType>
@@ -99163,6 +99219,12 @@
9916399219
<Parameter Name="endDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
9916499220
<ReturnType Type="Collection(microsoft.graph.networkaccess.alertSeveritySummary)" />
9916599221
</Function>
99222+
<Function Name="getAlertSummaries" IsBound="true">
99223+
<Parameter Name="bindingParameter" Type="Collection(microsoft.graph.networkaccess.alert)" />
99224+
<Parameter Name="startDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
99225+
<Parameter Name="endDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
99226+
<ReturnType Type="Collection(microsoft.graph.networkaccess.alertSummary)" />
99227+
</Function>
9916699228
<Function Name="getCrossTenantSummary" IsBound="true">
9916799229
<Parameter Name="bindingParameter" Type="microsoft.graph.networkaccess.reports" />
9916899230
<Parameter Name="startDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
@@ -102000,6 +102062,7 @@
102000102062
<EntityType Name="dataSet" BaseType="graph.entity" Abstract="true">
102001102063
<Property Name="createdBy" Type="graph.identitySet" />
102002102064
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" />
102065+
<Property Name="description" Type="Edm.String" />
102003102066
<Property Name="displayName" Type="Edm.String" />
102004102067
</EntityType>
102005102068
<EntityType Name="dataSource" BaseType="graph.entity" Abstract="true">

schemas/annotated-v1.0-Prod.csdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7173,7 +7173,9 @@
71737173
<Property Name="value" Type="Edm.String" Nullable="false" />
71747174
</ComplexType>
71757175
<ComplexType Name="fileStorageContainerSettings">
7176+
<Property Name="isItemVersioningEnabled" Type="Edm.Boolean" />
71767177
<Property Name="isOcrEnabled" Type="Edm.Boolean" />
7178+
<Property Name="itemMajorVersionLimit" Type="Edm.Int32" />
71777179
</ComplexType>
71787180
<ComplexType Name="fileStorageContainerViewpoint">
71797181
<Property Name="effectiveRole" Type="Edm.String" Nullable="false" />
@@ -43111,6 +43113,7 @@
4311143113
<EntityType Name="dataSet" BaseType="graph.entity" Abstract="true">
4311243114
<Property Name="createdBy" Type="graph.identitySet" />
4311343115
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" />
43116+
<Property Name="description" Type="Edm.String" />
4311443117
<Property Name="displayName" Type="Edm.String" />
4311543118
</EntityType>
4311643119
<EntityType Name="dataSource" BaseType="graph.entity" Abstract="true">

schemas/beta-Fairfax.csdl

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13983,6 +13983,10 @@
1398313983
<Property Name="links" Type="Collection(graph.metaDataKeyStringPair)" />
1398413984
<Property Name="searchablePlainTexts" Type="Collection(graph.metaDataKeyStringPair)" />
1398513985
</ComplexType>
13986+
<ComplexType Name="serviceActivityValueMetric">
13987+
<Property Name="intervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
13988+
<Property Name="value" Type="Edm.Int64" Nullable="false" />
13989+
</ComplexType>
1398613990
<ComplexType Name="serviceHealthIssuePost">
1398713991
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
1398813992
<Property Name="description" Type="graph.itemBody" />
@@ -17909,6 +17913,7 @@
1790917913
<Property Name="tenantId" Type="Edm.String" />
1791017914
<Property Name="webUrl" Type="Edm.String" />
1791117915
<NavigationProperty Name="filesFolder" Type="graph.driveItem" ContainsTarget="true" />
17916+
<NavigationProperty Name="getAllMembers" Type="Collection(graph.conversationMember)" ContainsTarget="true" />
1791217917
<NavigationProperty Name="members" Type="Collection(graph.conversationMember)" ContainsTarget="true" />
1791317918
<NavigationProperty Name="messages" Type="Collection(graph.chatMessage)" ContainsTarget="true" />
1791417919
<NavigationProperty Name="sharedWithTeams" Type="Collection(graph.sharedWithChannelTeamInfo)" ContainsTarget="true" />
@@ -24707,6 +24712,7 @@
2470724712
<Property Name="sequenceEndDateTime" Type="Edm.DateTimeOffset" />
2470824713
<Property Name="sequenceStartDateTime" Type="Edm.DateTimeOffset" />
2470924714
</EntityType>
24715+
<EntityType Name="serviceActivity" BaseType="graph.entity" />
2471024716
<EntityType Name="serviceAnnouncement" BaseType="graph.entity">
2471124717
<NavigationProperty Name="healthOverviews" Type="Collection(graph.serviceHealth)" ContainsTarget="true" />
2471224718
<NavigationProperty Name="issues" Type="Collection(graph.serviceHealthIssue)" ContainsTarget="true" />
@@ -35607,6 +35613,51 @@
3560735613
<Parameter Name="bindingParameter" Type="graph.user" />
3560835614
<ReturnType Type="Collection(graph.managedDeviceSummarizedAppState)" />
3560935615
</Function>
35616+
<Function Name="getMetricsForConditionalAccessCompliantDevicesSignInSuccess" IsBound="true">
35617+
<Parameter Name="bindingParameter" Type="graph.serviceActivity" />
35618+
<Parameter Name="inclusiveIntervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35619+
<Parameter Name="exclusiveIntervalEndDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35620+
<Parameter Name="aggregationIntervalInMinutes" Type="Edm.Int32">
35621+
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
35622+
</Parameter>
35623+
<ReturnType Type="Collection(graph.serviceActivityValueMetric)" />
35624+
</Function>
35625+
<Function Name="getMetricsForConditionalAccessManagedDevicesSignInSuccess" IsBound="true">
35626+
<Parameter Name="bindingParameter" Type="graph.serviceActivity" />
35627+
<Parameter Name="inclusiveIntervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35628+
<Parameter Name="exclusiveIntervalEndDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35629+
<Parameter Name="aggregationIntervalInMinutes" Type="Edm.Int32">
35630+
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
35631+
</Parameter>
35632+
<ReturnType Type="Collection(graph.serviceActivityValueMetric)" />
35633+
</Function>
35634+
<Function Name="getMetricsForMfaSignInFailure" IsBound="true">
35635+
<Parameter Name="bindingParameter" Type="graph.serviceActivity" />
35636+
<Parameter Name="inclusiveIntervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35637+
<Parameter Name="exclusiveIntervalEndDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35638+
<Parameter Name="aggregationIntervalInMinutes" Type="Edm.Int32">
35639+
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
35640+
</Parameter>
35641+
<ReturnType Type="Collection(graph.serviceActivityValueMetric)" />
35642+
</Function>
35643+
<Function Name="getMetricsForMfaSignInSuccess" IsBound="true">
35644+
<Parameter Name="bindingParameter" Type="graph.serviceActivity" />
35645+
<Parameter Name="inclusiveIntervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35646+
<Parameter Name="exclusiveIntervalEndDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35647+
<Parameter Name="aggregationIntervalInMinutes" Type="Edm.Int32">
35648+
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
35649+
</Parameter>
35650+
<ReturnType Type="Collection(graph.serviceActivityValueMetric)" />
35651+
</Function>
35652+
<Function Name="getMetricsForSamlSignInSuccess" IsBound="true">
35653+
<Parameter Name="bindingParameter" Type="graph.serviceActivity" />
35654+
<Parameter Name="inclusiveIntervalStartDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35655+
<Parameter Name="exclusiveIntervalEndDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35656+
<Parameter Name="aggregationIntervalInMinutes" Type="Edm.Int32">
35657+
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
35658+
</Parameter>
35659+
<ReturnType Type="Collection(graph.serviceActivityValueMetric)" />
35660+
</Function>
3561035661
<Function Name="getNonCompliantSettings" IsBound="true">
3561135662
<Parameter Name="bindingParameter" Type="graph.managedDevice" />
3561235663
<ReturnType Type="Collection(graph.deviceCompliancePolicySettingState)" />
@@ -82008,6 +82059,7 @@
8200882059
<EntityType Name="dataSet" BaseType="graph.entity" Abstract="true">
8200982060
<Property Name="createdBy" Type="graph.identitySet" />
8201082061
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" />
82062+
<Property Name="description" Type="Edm.String" />
8201182063
<Property Name="displayName" Type="Edm.String" />
8201282064
</EntityType>
8201382065
<EntityType Name="dataSource" BaseType="graph.entity" Abstract="true">

0 commit comments

Comments
 (0)