|
1603 | 1603 | <Member Name="none" Value="2" /> |
1604 | 1604 | <Member Name="unknownFutureValue" Value="3" /> |
1605 | 1605 | </EnumType> |
| 1606 | + <EnumType Name="eligibilityFilteringEnabledEntities" IsFlags="true"> |
| 1607 | + <Member Name="none" Value="0" /> |
| 1608 | + <Member Name="swapRequest" Value="1" /> |
| 1609 | + <Member Name="offerShiftRequest" Value="2" /> |
| 1610 | + <Member Name="unknownFutureValue" Value="4" /> |
| 1611 | + <Member Name="timeOffReason" Value="8" /> |
| 1612 | + </EnumType> |
1606 | 1613 | <EnumType Name="eligibilityScheduleFilterByCurrentUserOptions"> |
1607 | 1614 | <Member Name="principal" Value="1" /> |
1608 | 1615 | <Member Name="unknownFutureValue" Value="2" /> |
|
4390 | 4397 | <Member Name="reactivating" Value="2" /> |
4391 | 4398 | <Member Name="unknownFutureValue" Value="3" /> |
4392 | 4399 | </EnumType> |
| 4400 | + <EnumType Name="siteLockState"> |
| 4401 | + <Member Name="unlocked" Value="0" /> |
| 4402 | + <Member Name="lockedReadOnly" Value="1" /> |
| 4403 | + <Member Name="lockedNoAccess" Value="2" /> |
| 4404 | + <Member Name="lockedNoAdditions" Value="3" /> |
| 4405 | + <Member Name="unknownFutureValue" Value="4" /> |
| 4406 | + </EnumType> |
4393 | 4407 | <EnumType Name="siteSecurityLevel"> |
4394 | 4408 | <Member Name="userDefined" Value="0" /> |
4395 | 4409 | <Member Name="low" Value="1" /> |
|
5366 | 5380 | <Member Name="openShiftRequest" Value="32" /> |
5367 | 5381 | <Member Name="offerShiftRequest" Value="64" /> |
5368 | 5382 | <Member Name="unknownFutureValue" Value="1024" /> |
| 5383 | + <Member Name="timeOffReason" Value="4096" /> |
| 5384 | + <Member Name="timeOff" Value="8192" /> |
| 5385 | + <Member Name="timeOffRequest" Value="16384" /> |
5369 | 5386 | </EnumType> |
5370 | 5387 | <EnumType Name="x509CertificateAffinityLevel"> |
5371 | 5388 | <Member Name="low" Value="0" /> |
|
5377 | 5394 | <Member Name="x509CertificateMultiFactor" Value="1" /> |
5378 | 5395 | <Member Name="unknownFutureValue" Value="2" /> |
5379 | 5396 | </EnumType> |
| 5397 | + <EnumType Name="x509CertificateCRLValidationConfigurationState"> |
| 5398 | + <Member Name="disabled" Value="0" /> |
| 5399 | + <Member Name="enabled" Value="1" /> |
| 5400 | + <Member Name="unknownFutureValue" Value="2" /> |
| 5401 | + </EnumType> |
5380 | 5402 | <EnumType Name="x509CertificateRuleType"> |
5381 | 5403 | <Member Name="issuerSubject" Value="0" /> |
5382 | 5404 | <Member Name="policyOID" Value="1" /> |
|
8632 | 8654 | <Property Name="startDate" Type="Edm.Date" /> |
8633 | 8655 | <Property Name="type" Type="graph.recurrenceRangeType" /> |
8634 | 8656 | </ComplexType> |
| 8657 | + <ComplexType Name="recycleBinSettings"> |
| 8658 | + <Property Name="retentionPeriodOverrideDays" Type="Edm.Int32" /> |
| 8659 | + </ComplexType> |
8635 | 8660 | <ComplexType Name="redirectUriSettings"> |
8636 | 8661 | <Property Name="index" Type="Edm.Int32" /> |
8637 | 8662 | <Property Name="uri" Type="Edm.String" /> |
|
10180 | 10205 | <Property Name="x509CertificateAuthenticationDefaultMode" Type="graph.x509CertificateAuthenticationMode" /> |
10181 | 10206 | <Property Name="x509CertificateDefaultRequiredAffinityLevel" Type="graph.x509CertificateAffinityLevel" /> |
10182 | 10207 | </ComplexType> |
| 10208 | + <ComplexType Name="x509CertificateCRLValidationConfiguration"> |
| 10209 | + <Property Name="exemptedCertificateAuthoritiesSubjectKeyIdentifiers" Type="Collection(Edm.String)" /> |
| 10210 | + <Property Name="state" Type="graph.x509CertificateCRLValidationConfigurationState" Nullable="false" /> |
| 10211 | + </ComplexType> |
10183 | 10212 | <ComplexType Name="x509CertificateRule"> |
10184 | 10213 | <Property Name="identifier" Type="Edm.String" /> |
10185 | 10214 | <Property Name="issuerSubjectIdentifier" Type="Edm.String" /> |
@@ -13043,18 +13072,21 @@ |
13043 | 13072 | </EntityType> |
13044 | 13073 | <EntityType Name="fileStorage" BaseType="graph.entity"> |
13045 | 13074 | <NavigationProperty Name="containers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" /> |
| 13075 | + <NavigationProperty Name="deletedContainers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" /> |
13046 | 13076 | </EntityType> |
13047 | 13077 | <EntityType Name="fileStorageContainer" BaseType="graph.entity"> |
13048 | 13078 | <Property Name="containerTypeId" Type="Edm.Guid" Nullable="false" /> |
13049 | 13079 | <Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" /> |
13050 | 13080 | <Property Name="customProperties" Type="graph.fileStorageContainerCustomPropertyDictionary" /> |
13051 | 13081 | <Property Name="description" Type="Edm.String" /> |
13052 | 13082 | <Property Name="displayName" Type="Edm.String" Nullable="false" /> |
| 13083 | + <Property Name="lockState" Type="graph.siteLockState" /> |
13053 | 13084 | <Property Name="settings" Type="graph.fileStorageContainerSettings" Nullable="false" /> |
13054 | 13085 | <Property Name="status" Type="graph.fileStorageContainerStatus" /> |
13055 | 13086 | <Property Name="viewpoint" Type="graph.fileStorageContainerViewpoint" /> |
13056 | 13087 | <NavigationProperty Name="drive" Type="graph.drive" ContainsTarget="true" /> |
13057 | 13088 | <NavigationProperty Name="permissions" Type="Collection(graph.permission)" ContainsTarget="true" /> |
| 13089 | + <NavigationProperty Name="recycleBin" Type="graph.recycleBin" ContainsTarget="true" /> |
13058 | 13090 | </EntityType> |
13059 | 13091 | <EntityType Name="filterOperatorSchema" BaseType="graph.entity"> |
13060 | 13092 | <Property Name="arity" Type="graph.scopeOperatorType" Nullable="false" /> |
|
13272 | 13304 | <Property Name="federatedIdpMfaBehavior" Type="graph.federatedIdpMfaBehavior" /> |
13273 | 13305 | <Property Name="isSignedAuthenticationRequestRequired" Type="Edm.Boolean" /> |
13274 | 13306 | <Property Name="nextSigningCertificate" Type="Edm.String" /> |
| 13307 | + <Property Name="passwordResetUri" Type="Edm.String" /> |
13275 | 13308 | <Property Name="promptLoginBehavior" Type="graph.promptLoginBehavior" /> |
13276 | 13309 | <Property Name="signingCertificateUpdateStatus" Type="graph.signingCertificateUpdateStatus" /> |
13277 | 13310 | <Property Name="signOutUri" Type="Edm.String" /> |
|
14449 | 14482 | </EntityType> |
14450 | 14483 | <EntityType Name="openShift" BaseType="graph.changeTrackedEntity"> |
14451 | 14484 | <Property Name="draftOpenShift" Type="graph.openShiftItem" /> |
| 14485 | + <Property Name="isStagedForDeletion" Type="Edm.Boolean" /> |
14452 | 14486 | <Property Name="schedulingGroupId" Type="Edm.String" /> |
14453 | 14487 | <Property Name="sharedOpenShift" Type="graph.openShiftItem" /> |
14454 | 14488 | </EntityType> |
|
15077 | 15111 | <Property Name="recordingAccessToken" Type="Edm.String" /> |
15078 | 15112 | <Property Name="recordingLocation" Type="Edm.String" /> |
15079 | 15113 | </EntityType> |
| 15114 | + <EntityType Name="recycleBin" BaseType="graph.baseItem" OpenType="true"> |
| 15115 | + <Property Name="settings" Type="graph.recycleBinSettings" /> |
| 15116 | + <NavigationProperty Name="items" Type="Collection(graph.recycleBinItem)" ContainsTarget="true" /> |
| 15117 | + </EntityType> |
| 15118 | + <EntityType Name="recycleBinItem" BaseType="graph.baseItem" OpenType="true"> |
| 15119 | + <Property Name="deletedDateTime" Type="Edm.DateTimeOffset" /> |
| 15120 | + <Property Name="deletedFromLocation" Type="Edm.String" /> |
| 15121 | + <Property Name="size" Type="Edm.Int64" /> |
| 15122 | + </EntityType> |
15080 | 15123 | <EntityType Name="referenceAttachment" BaseType="graph.attachment" /> |
15081 | 15124 | <EntityType Name="relyingPartyDetailedSummary" BaseType="graph.entity"> |
15082 | 15125 | <Property Name="failedSignInCount" Type="Edm.Int64" Nullable="false" /> |
|
15612 | 15655 | </EntityType> |
15613 | 15656 | <EntityType Name="shift" BaseType="graph.changeTrackedEntity"> |
15614 | 15657 | <Property Name="draftShift" Type="graph.shiftItem" /> |
| 15658 | + <Property Name="isStagedForDeletion" Type="Edm.Boolean" /> |
15615 | 15659 | <Property Name="schedulingGroupId" Type="Edm.String" /> |
15616 | 15660 | <Property Name="sharedShift" Type="graph.shiftItem" /> |
15617 | 15661 | <Property Name="userId" Type="Edm.String" /> |
|
16108 | 16152 | </EntityType> |
16109 | 16153 | <EntityType Name="timeOff" BaseType="graph.changeTrackedEntity"> |
16110 | 16154 | <Property Name="draftTimeOff" Type="graph.timeOffItem" /> |
| 16155 | + <Property Name="isStagedForDeletion" Type="Edm.Boolean" /> |
16111 | 16156 | <Property Name="sharedTimeOff" Type="graph.timeOffItem" /> |
16112 | 16157 | <Property Name="userId" Type="Edm.String" /> |
16113 | 16158 | </EntityType> |
|
17910 | 17955 | <EntityType Name="workforceIntegration" BaseType="graph.changeTrackedEntity"> |
17911 | 17956 | <Property Name="apiVersion" Type="Edm.Int32" /> |
17912 | 17957 | <Property Name="displayName" Type="Edm.String" /> |
| 17958 | + <Property Name="eligibilityFilteringEnabledEntities" Type="graph.eligibilityFilteringEnabledEntities" /> |
17913 | 17959 | <Property Name="encryption" Type="graph.workforceIntegrationEncryption" /> |
17914 | 17960 | <Property Name="isActive" Type="Edm.Boolean" /> |
17915 | 17961 | <Property Name="supportedEntities" Type="graph.workforceIntegrationSupportedEntities" /> |
|
17919 | 17965 | <EntityType Name="x509CertificateAuthenticationMethodConfiguration" BaseType="graph.authenticationMethodConfiguration"> |
17920 | 17966 | <Property Name="authenticationModeConfiguration" Type="graph.x509CertificateAuthenticationModeConfiguration" /> |
17921 | 17967 | <Property Name="certificateUserBindings" Type="Collection(graph.x509CertificateUserBinding)" /> |
| 17968 | + <Property Name="crlValidationConfiguration" Type="graph.x509CertificateCRLValidationConfiguration" Nullable="false" /> |
17922 | 17969 | <NavigationProperty Name="includeTargets" Type="Collection(graph.authenticationMethodTarget)" ContainsTarget="true" /> |
17923 | 17970 | </EntityType> |
17924 | 17971 | <EntityType Name="x509CertificateCombinationConfiguration" BaseType="graph.authenticationCombinationConfiguration"> |
|
19218 | 19265 | <Parameter Name="basis" Type="graph.Json" /> |
19219 | 19266 | <ReturnType Type="graph.workbookFunctionResult" /> |
19220 | 19267 | </Action> |
| 19268 | + <Action Name="discardCheckout" IsBound="true"> |
| 19269 | + <Parameter Name="bindingParameter" Type="graph.driveItem" /> |
| 19270 | + </Action> |
19221 | 19271 | <Action Name="disconnect" IsBound="true"> |
19222 | 19272 | <Parameter Name="bindingParameter" Type="graph.remoteAssistancePartner" /> |
19223 | 19273 | </Action> |
|
20582 | 20632 | <Action Name="locateDevice" IsBound="true"> |
20583 | 20633 | <Parameter Name="bindingParameter" Type="graph.managedDevice" /> |
20584 | 20634 | </Action> |
| 20635 | + <Action Name="lock" IsBound="true"> |
| 20636 | + <Parameter Name="bindingParameter" Type="graph.fileStorageContainer" /> |
| 20637 | + <Parameter Name="lockState" Type="graph.siteLockState"> |
| 20638 | + <Annotation Term="Org.OData.Core.V1.OptionalParameter" /> |
| 20639 | + </Parameter> |
| 20640 | + </Action> |
20585 | 20641 | <Action Name="log" IsBound="true"> |
20586 | 20642 | <Parameter Name="bindparameter" Type="graph.workbookFunctions" /> |
20587 | 20643 | <Parameter Name="number" Type="graph.Json" /> |
|
21422 | 21478 | <Parameter Name="name" Type="Edm.String" Unicode="false" /> |
21423 | 21479 | <ReturnType Type="graph.driveItem" /> |
21424 | 21480 | </Action> |
| 21481 | + <Action Name="restore" IsBound="true"> |
| 21482 | + <Parameter Name="bindingParameter" Type="graph.fileStorageContainer" /> |
| 21483 | + <ReturnType Type="graph.fileStorageContainer" /> |
| 21484 | + </Action> |
21425 | 21485 | <Action Name="restoreFactoryDefaults" IsBound="true"> |
21426 | 21486 | <Parameter Name="bindingParameter" Type="graph.printer" /> |
21427 | 21487 | </Action> |
|
21774 | 21834 | <Parameter Name="number" Type="graph.Json" /> |
21775 | 21835 | <ReturnType Type="graph.workbookFunctionResult" /> |
21776 | 21836 | </Action> |
| 21837 | + <Action Name="stageForDeletion" IsBound="true"> |
| 21838 | + <Parameter Name="bindingParameter" Type="graph.changeTrackedEntity" /> |
| 21839 | + </Action> |
21777 | 21840 | <Action Name="standardize" IsBound="true"> |
21778 | 21841 | <Parameter Name="bindparameter" Type="graph.workbookFunctions" /> |
21779 | 21842 | <Parameter Name="x" Type="graph.Json" /> |
|
22103 | 22166 | <Parameter Name="text" Type="graph.Json" /> |
22104 | 22167 | <ReturnType Type="graph.workbookFunctionResult" /> |
22105 | 22168 | </Action> |
| 22169 | + <Action Name="unlock" IsBound="true"> |
| 22170 | + <Parameter Name="bindingParameter" Type="graph.fileStorageContainer" /> |
| 22171 | + </Action> |
22106 | 22172 | <Action Name="unmerge" IsBound="true"> |
22107 | 22173 | <Parameter Name="bindparameter" Type="graph.workbookRange" /> |
22108 | 22174 | </Action> |
|
0 commit comments