|
4436 | 4436 | <Member Name="surface" Value="2" /> |
4437 | 4437 | <Member Name="surfaceDock" Value="3" /> |
4438 | 4438 | </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> |
4439 | 4451 | <EnumType Name="hashAlgorithms" IsFlags="true"> |
4440 | 4452 | <Member Name="sha1" Value="1" /> |
4441 | 4453 | <Member Name="sha2" Value="2" /> |
|
21884 | 21896 | <Property Name="signInPreferences" Type="graph.signInPreferences" /> |
21885 | 21897 | <NavigationProperty Name="emailMethods" Type="Collection(graph.emailAuthenticationMethod)" ContainsTarget="true" /> |
21886 | 21898 | <NavigationProperty Name="fido2Methods" Type="Collection(graph.fido2AuthenticationMethod)" ContainsTarget="true" /> |
| 21899 | + <NavigationProperty Name="hardwareOathMethods" Type="Collection(graph.hardwareOathAuthenticationMethod)" ContainsTarget="true" /> |
21887 | 21900 | <NavigationProperty Name="methods" Type="Collection(graph.authenticationMethod)" ContainsTarget="true" /> |
21888 | 21901 | <NavigationProperty Name="microsoftAuthenticatorMethods" Type="Collection(graph.microsoftAuthenticatorAuthenticationMethod)" ContainsTarget="true" /> |
21889 | 21902 | <NavigationProperty Name="operations" Type="Collection(graph.longRunningOperation)" ContainsTarget="true" /> |
|
21944 | 21957 | <Property Name="excludeTargets" Type="Collection(graph.excludeTarget)" /> |
21945 | 21958 | <Property Name="state" Type="graph.authenticationMethodState" /> |
21946 | 21959 | </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> |
21947 | 21964 | <EntityType Name="authenticationMethodModeDetail" BaseType="graph.entity"> |
21948 | 21965 | <Property Name="authenticationMethod" Type="graph.baseAuthenticationMethod" Nullable="false" /> |
21949 | 21966 | <Property Name="displayName" Type="Edm.String" Nullable="false" /> |
|
22714 | 22731 | <Property Name="tenantId" Type="Edm.String" /> |
22715 | 22732 | <Property Name="webUrl" Type="Edm.String" /> |
22716 | 22733 | <NavigationProperty Name="filesFolder" Type="graph.driveItem" ContainsTarget="true" /> |
| 22734 | + <NavigationProperty Name="getAllMembers" Type="Collection(graph.conversationMember)" ContainsTarget="true" /> |
22717 | 22735 | <NavigationProperty Name="members" Type="Collection(graph.conversationMember)" ContainsTarget="true" /> |
22718 | 22736 | <NavigationProperty Name="messages" Type="Collection(graph.chatMessage)" ContainsTarget="true" /> |
22719 | 22737 | <NavigationProperty Name="sharedWithTeams" Type="Collection(graph.sharedWithChannelTeamInfo)" ContainsTarget="true" /> |
|
25331 | 25349 | <EntityType Name="directory" BaseType="graph.entity"> |
25332 | 25350 | <NavigationProperty Name="administrativeUnits" Type="Collection(graph.administrativeUnit)" ContainsTarget="true" /> |
25333 | 25351 | <NavigationProperty Name="attributeSets" Type="Collection(graph.attributeSet)" ContainsTarget="true" /> |
| 25352 | + <NavigationProperty Name="authenticationMethodDevices" Type="graph.authenticationMethodDevice" ContainsTarget="true" /> |
25334 | 25353 | <NavigationProperty Name="certificateAuthorities" Type="graph.certificateAuthorityPath" ContainsTarget="true" /> |
25335 | 25354 | <NavigationProperty Name="customSecurityAttributeDefinitions" Type="Collection(graph.customSecurityAttributeDefinition)" ContainsTarget="true" /> |
25336 | 25355 | <NavigationProperty Name="deletedItems" Type="Collection(graph.directoryObject)" ContainsTarget="true" /> |
|
26908 | 26927 | <Property Name="userEmail" Type="Edm.String" /> |
26909 | 26928 | <Property Name="userName" Type="Edm.String" /> |
26910 | 26929 | </EntityType> |
| 26930 | + <EntityType Name="hardwareOathAuthenticationMethod" BaseType="graph.authenticationMethod"> |
| 26931 | + <NavigationProperty Name="device" Type="graph.hardwareOathTokenAuthenticationMethodDevice" ContainsTarget="true" /> |
| 26932 | + </EntityType> |
26911 | 26933 | <EntityType Name="hardwareOathAuthenticationMethodConfiguration" BaseType="graph.authenticationMethodConfiguration"> |
26912 | 26934 | <NavigationProperty Name="includeTargets" Type="Collection(graph.authenticationMethodTarget)" ContainsTarget="true" /> |
26913 | 26935 | </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> |
26914 | 26947 | <EntityType Name="hardwarePasswordDetail" BaseType="graph.entity"> |
26915 | 26948 | <Property Name="currentPassword" Type="Edm.String" /> |
26916 | 26949 | <Property Name="previousPasswords" Type="Collection(Edm.String)" /> |
|
32670 | 32703 | <Property Name="webPartType" Type="Edm.String" /> |
32671 | 32704 | </EntityType> |
32672 | 32705 | <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" /> |
32673 | 32708 | <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" /> |
32674 | 32711 | <EntityType Name="storage"> |
32675 | 32712 | <NavigationProperty Name="fileStorage" Type="graph.fileStorage" ContainsTarget="true" /> |
32676 | 32713 | <NavigationProperty Name="settings" Type="graph.storageSettings" ContainsTarget="true" /> |
|
36762 | 36799 | <Parameter Name="bindingParameter" Type="graph.educationAssignment" /> |
36763 | 36800 | <ReturnType Type="graph.educationAssignment" /> |
36764 | 36801 | </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> |
36765 | 36807 | <Action Name="activate" IsBound="true"> |
36766 | 36808 | <Parameter Name="bindingParameter" Type="graph.protectionPolicyBase" /> |
36767 | 36809 | <ReturnType Type="graph.protectionPolicyBase" /> |
|
37219 | 37261 | <Parameter Name="bindingParameter" Type="graph.windowsQualityUpdateProfile" /> |
37220 | 37262 | <Parameter Name="assignments" Type="Collection(graph.windowsQualityUpdateProfileAssignment)" /> |
37221 | 37263 | </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> |
37222 | 37276 | <Action Name="assignedAccessMultiModeProfiles" IsBound="true"> |
37223 | 37277 | <Parameter Name="bindingParameter" Type="graph.deviceConfiguration" /> |
37224 | 37278 | <Parameter Name="assignedAccessMultiModeProfiles" Type="Collection(graph.windowsAssignedAccessProfile)" /> |
|
38330 | 38384 | <Parameter Name="bindingParameter" Type="graph.educationAssignment" /> |
38331 | 38385 | <ReturnType Type="graph.educationAssignment" /> |
38332 | 38386 | </Action> |
| 38387 | + <Action Name="deactivate" IsBound="true"> |
| 38388 | + <Parameter Name="bindingParameter" Type="graph.hardwareOathAuthenticationMethod" /> |
| 38389 | + </Action> |
38333 | 38390 | <Action Name="deactivate" IsBound="true"> |
38334 | 38391 | <Parameter Name="bindingParameter" Type="graph.protectionPolicyBase" /> |
38335 | 38392 | <ReturnType Type="graph.protectionPolicyBase" /> |
|
46141 | 46198 | <EntitySet Name="appRoleAssignments" EntityType="microsoft.graph.appRoleAssignment" /> |
46142 | 46199 | <EntitySet Name="approvalWorkflowProviders" EntityType="microsoft.graph.approvalWorkflowProvider" /> |
46143 | 46200 | <EntitySet Name="authenticationMethodConfigurations" EntityType="microsoft.graph.authenticationMethodConfiguration" /> |
| 46201 | + <EntitySet Name="authenticationMethodDevices" EntityType="microsoft.graph.authenticationMethodDevice" /> |
46144 | 46202 | <EntitySet Name="bookingBusinesses" EntityType="microsoft.graph.bookingBusiness" /> |
46145 | 46203 | <EntitySet Name="bookingCurrencies" EntityType="microsoft.graph.bookingCurrency" /> |
46146 | 46204 | <EntitySet Name="businessFlowTemplates" EntityType="microsoft.graph.businessFlowTemplate" /> |
|
53740 | 53798 | </Record> |
53741 | 53799 | </Annotation> |
53742 | 53800 | </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> |
53743 | 53808 | <Annotations Target="microsoft.graph.authentication/microsoftAuthenticatorMethods"> |
53744 | 53809 | <Annotation Term="Org.OData.Capabilities.V1.InsertRestrictions"> |
53745 | 53810 | <Record> |
|
66985 | 67050 | </Collection> |
66986 | 67051 | </Annotation> |
66987 | 67052 | </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> |
67002 | 67053 | <Annotations Target="microsoft.graph.enumeratedAccountsWithAccess/accounts"> |
67003 | 67054 | <Annotation Term="Org.OData.Capabilities.V1.CustomHeaders"> |
67004 | 67055 | <Collection> |
|
98626 | 98677 | <Property Name="count" Type="Edm.Int64" Nullable="false" /> |
98627 | 98678 | <Property Name="severity" Type="microsoft.graph.networkaccess.alertSeverity" Nullable="false" /> |
98628 | 98679 | </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> |
98629 | 98685 | <ComplexType Name="applicationSnapshot"> |
98630 | 98686 | <Property Name="appId" Type="Edm.String" Nullable="false" /> |
98631 | 98687 | </ComplexType> |
|
99163 | 99219 | <Parameter Name="endDateTime" Type="Edm.DateTimeOffset" Nullable="false" /> |
99164 | 99220 | <ReturnType Type="Collection(microsoft.graph.networkaccess.alertSeveritySummary)" /> |
99165 | 99221 | </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> |
99166 | 99228 | <Function Name="getCrossTenantSummary" IsBound="true"> |
99167 | 99229 | <Parameter Name="bindingParameter" Type="microsoft.graph.networkaccess.reports" /> |
99168 | 99230 | <Parameter Name="startDateTime" Type="Edm.DateTimeOffset" Nullable="false" /> |
@@ -102000,6 +102062,7 @@ |
102000 | 102062 | <EntityType Name="dataSet" BaseType="graph.entity" Abstract="true"> |
102001 | 102063 | <Property Name="createdBy" Type="graph.identitySet" /> |
102002 | 102064 | <Property Name="createdDateTime" Type="Edm.DateTimeOffset" /> |
| 102065 | + <Property Name="description" Type="Edm.String" /> |
102003 | 102066 | <Property Name="displayName" Type="Edm.String" /> |
102004 | 102067 | </EntityType> |
102005 | 102068 | <EntityType Name="dataSource" BaseType="graph.entity" Abstract="true"> |
|
0 commit comments