16180
16180
</Record>
16181
16181
</Annotation>
16182
16182
</Annotations>
16183
+ <Annotations Target="microsoft.graph.authentication/platformCredentialMethods">
16184
+ <Annotation Term="Org.OData.Capabilities.V1.InsertRestrictions">
16185
+ <Record>
16186
+ <PropertyValue Property="Insertable" Bool="false"/>
16187
+ </Record>
16188
+ </Annotation>
16189
+ <Annotation Term="Org.OData.Capabilities.V1.UpdateRestrictions">
16190
+ <Record>
16191
+ <PropertyValue Property="Updatable" Bool="false"/>
16192
+ </Record>
16193
+ </Annotation>
16194
+ </Annotations>
16183
16195
<Annotations Target="microsoft.graph.authentication/softwareOathMethods">
16184
16196
<Annotation Term="Org.OData.Capabilities.V1.InsertRestrictions">
16185
16197
<Record>
@@ -22090,6 +22102,15 @@ within the time frame of their original request."/>
22090
22102
<Member Name="weak" Value="1"/>
22091
22103
<Member Name="unknown" Value="2"/>
22092
22104
</EnumType>
22105
+ <EnumType Name="authenticationMethodPlatform">
22106
+ <Member Name="unknown" Value="0"/>
22107
+ <Member Name="windows" Value="1"/>
22108
+ <Member Name="macOS" Value="2"/>
22109
+ <Member Name="iOS" Value="3"/>
22110
+ <Member Name="android" Value="4"/>
22111
+ <Member Name="linux" Value="5"/>
22112
+ <Member Name="unknownFutureValue" Value="6"/>
22113
+ </EnumType>
22093
22114
<EnumType Name="authenticationMethodSignInState">
22094
22115
<Member Name="notSupported" Value="0"/>
22095
22116
<Member Name="notAllowedByPolicy" Value="1"/>
@@ -23641,6 +23662,7 @@ within the time frame of their original request."/>
23641
23662
<NavigationProperty Name="operations" Type="Collection(graph.longRunningOperation)" ContainsTarget="true"/>
23642
23663
<NavigationProperty Name="passwordMethods" Type="Collection(graph.passwordAuthenticationMethod)" ContainsTarget="true"/>
23643
23664
<NavigationProperty Name="phoneMethods" Type="Collection(graph.phoneAuthenticationMethod)" ContainsTarget="true"/>
23665
+ <NavigationProperty Name="platformCredentialMethods" Type="Collection(graph.platformCredentialAuthenticationMethod)" ContainsTarget="true"/>
23644
23666
<NavigationProperty Name="softwareOathMethods" Type="Collection(graph.softwareOathAuthenticationMethod)" ContainsTarget="true"/>
23645
23667
<NavigationProperty Name="temporaryAccessPassMethods" Type="Collection(graph.temporaryAccessPassAuthenticationMethod)" ContainsTarget="true"/>
23646
23668
<NavigationProperty Name="windowsHelloForBusinessMethods" Type="Collection(graph.windowsHelloForBusinessAuthenticationMethod)" ContainsTarget="true"/>
@@ -25975,6 +25997,19 @@ within the time frame of their original request."/>
25975
25997
<Property Name="displayName" Type="Edm.String"/>
25976
25998
<Property Name="userFlowAttributeType" Type="graph.identityUserFlowAttributeType" Nullable="false"/>
25977
25999
</EntityType>
26000
+ <ComplexType Name="onAttributeCollectionStartHandler" Abstract="true"/>
26001
+ <ComplexType Name="onAttributeCollectionStartCustomExtensionHandler" BaseType="graph.onAttributeCollectionStartHandler">
26002
+ <Property Name="configuration" Type="graph.customExtensionOverwriteConfiguration"/>
26003
+ <NavigationProperty Name="customExtension" Type="graph.onAttributeCollectionStartCustomExtension"/>
26004
+ </ComplexType>
26005
+ <EntityType Name="customAuthenticationExtension" BaseType="graph.customCalloutExtension" Abstract="true"/>
26006
+ <EntityType Name="onAttributeCollectionStartCustomExtension" BaseType="graph.customAuthenticationExtension"/>
26007
+ <ComplexType Name="onAttributeCollectionSubmitHandler" Abstract="true"/>
26008
+ <ComplexType Name="onAttributeCollectionSubmitCustomExtensionHandler" BaseType="graph.onAttributeCollectionSubmitHandler">
26009
+ <Property Name="configuration" Type="graph.customExtensionOverwriteConfiguration"/>
26010
+ <NavigationProperty Name="customExtension" Type="graph.onAttributeCollectionSubmitCustomExtension"/>
26011
+ </ComplexType>
26012
+ <EntityType Name="onAttributeCollectionSubmitCustomExtension" BaseType="graph.customAuthenticationExtension"/>
25978
26013
<ComplexType Name="onAuthenticationMethodLoadStartHandler" Abstract="true"/>
25979
26014
<ComplexType Name="onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp" BaseType="graph.onAuthenticationMethodLoadStartHandler">
25980
26015
<NavigationProperty Name="identityProviders" Type="Collection(graph.identityProviderBase)"/>
@@ -25991,7 +26026,6 @@ within the time frame of their original request."/>
25991
26026
<Property Name="configuration" Type="graph.customExtensionOverwriteConfiguration"/>
25992
26027
<NavigationProperty Name="customExtension" Type="graph.onTokenIssuanceStartCustomExtension"/>
25993
26028
</ComplexType>
25994
- <EntityType Name="customAuthenticationExtension" BaseType="graph.customCalloutExtension" Abstract="true"/>
25995
26029
<EntityType Name="onTokenIssuanceStartCustomExtension" BaseType="graph.customAuthenticationExtension">
25996
26030
<Property Name="claimsForTokenConfiguration" Type="Collection(graph.onTokenIssuanceStartReturnClaim)"/>
25997
26031
</EntityType>
@@ -26074,6 +26108,8 @@ within the time frame of their original request."/>
26074
26108
</EntityType>
26075
26109
<EntityType Name="externalUsersSelfServiceSignUpEventsFlow" BaseType="graph.authenticationEventsFlow">
26076
26110
<Property Name="onAttributeCollection" Type="graph.onAttributeCollectionHandler"/>
26111
+ <Property Name="onAttributeCollectionStart" Type="graph.onAttributeCollectionStartHandler"/>
26112
+ <Property Name="onAttributeCollectionSubmit" Type="graph.onAttributeCollectionSubmitHandler"/>
26077
26113
<Property Name="onAuthenticationMethodLoadStart" Type="graph.onAuthenticationMethodLoadStartHandler"/>
26078
26114
<Property Name="onInteractiveAuthFlowStart" Type="graph.onInteractiveAuthFlowStartHandler"/>
26079
26115
<Property Name="onUserCreateStart" Type="graph.onUserCreateStartHandler"/>
@@ -26093,6 +26129,12 @@ within the time frame of their original request."/>
26093
26129
<EntityType Name="onAttributeCollectionListener" BaseType="graph.authenticationEventListener">
26094
26130
<Property Name="handler" Type="graph.onAttributeCollectionHandler"/>
26095
26131
</EntityType>
26132
+ <EntityType Name="onAttributeCollectionStartListener" BaseType="graph.authenticationEventListener">
26133
+ <Property Name="handler" Type="graph.onAttributeCollectionStartHandler"/>
26134
+ </EntityType>
26135
+ <EntityType Name="onAttributeCollectionSubmitListener" BaseType="graph.authenticationEventListener">
26136
+ <Property Name="handler" Type="graph.onAttributeCollectionSubmitHandler"/>
26137
+ </EntityType>
26096
26138
<EntityType Name="onAuthenticationMethodLoadStartListener" BaseType="graph.authenticationEventListener">
26097
26139
<Property Name="handler" Type="graph.onAuthenticationMethodLoadStartHandler"/>
26098
26140
</EntityType>
@@ -34361,6 +34403,13 @@ within the time frame of their original request."/>
34361
34403
<Property Name="phoneType" Type="graph.authenticationPhoneType"/>
34362
34404
<Property Name="smsSignInState" Type="graph.authenticationMethodSignInState"/>
34363
34405
</EntityType>
34406
+ <EntityType Name="platformCredentialAuthenticationMethod" BaseType="graph.authenticationMethod">
34407
+ <Property Name="createdDateTime" Type="Edm.DateTimeOffset"/>
34408
+ <Property Name="displayName" Type="Edm.String"/>
34409
+ <Property Name="keyStrength" Type="graph.authenticationMethodKeyStrength"/>
34410
+ <Property Name="platform" Type="graph.authenticationMethodPlatform"/>
34411
+ <NavigationProperty Name="device" Type="graph.device"/>
34412
+ </EntityType>
34364
34413
<EntityType Name="softwareOathAuthenticationMethod" BaseType="graph.authenticationMethod">
34365
34414
<Property Name="secretKey" Type="Edm.String"/>
34366
34415
</EntityType>
0 commit comments