@@ -17290,6 +17290,11 @@ within the time frame of their original request."/>
17290
17290
<Member Name="x509CertificateMultiFactor" Value="1"/>
17291
17291
<Member Name="unknownFutureValue" Value="2"/>
17292
17292
</EnumType>
17293
+ <EnumType Name="x509CertificateCRLValidationConfigurationState">
17294
+ <Member Name="disabled" Value="0"/>
17295
+ <Member Name="enabled" Value="1"/>
17296
+ <Member Name="unknownFutureValue" Value="2"/>
17297
+ </EnumType>
17293
17298
<EnumType Name="x509CertificateRuleType">
17294
17299
<Member Name="issuerSubject" Value="0"/>
17295
17300
<Member Name="policyOID" Value="1"/>
@@ -18407,6 +18412,13 @@ within the time frame of their original request."/>
18407
18412
<Member Name="reactivating" Value="2"/>
18408
18413
<Member Name="unknownFutureValue" Value="3"/>
18409
18414
</EnumType>
18415
+ <EnumType Name="siteLockState">
18416
+ <Member Name="unlocked" Value="0"/>
18417
+ <Member Name="lockedReadOnly" Value="1"/>
18418
+ <Member Name="lockedNoAccess" Value="2"/>
18419
+ <Member Name="lockedNoAdditions" Value="3"/>
18420
+ <Member Name="unknownFutureValue" Value="4"/>
18421
+ </EnumType>
18410
18422
<EnumType Name="titleAreaLayoutType">
18411
18423
<Member Name="imageAndTitle" Value="0"/>
18412
18424
<Member Name="plain" Value="1"/>
@@ -22245,6 +22257,13 @@ within the time frame of their original request."/>
22245
22257
<Member Name="unknownFutureValue" Value="7"/>
22246
22258
<Member Name="emailUser" Value="8"/>
22247
22259
</EnumType>
22260
+ <EnumType Name="eligibilityFilteringEnabledEntities" IsFlags="true">
22261
+ <Member Name="none" Value="0"/>
22262
+ <Member Name="swapRequest" Value="1"/>
22263
+ <Member Name="offerShiftRequest" Value="2"/>
22264
+ <Member Name="unknownFutureValue" Value="4"/>
22265
+ <Member Name="timeOffReason" Value="8"/>
22266
+ </EnumType>
22248
22267
<EnumType Name="scheduleChangeRequestActor">
22249
22268
<Member Name="sender" Value="0"/>
22250
22269
<Member Name="recipient" Value="1"/>
@@ -22310,6 +22329,9 @@ within the time frame of their original request."/>
22310
22329
<Member Name="openShiftRequest" Value="32"/>
22311
22330
<Member Name="offerShiftRequest" Value="64"/>
22312
22331
<Member Name="unknownFutureValue" Value="1024"/>
22332
+ <Member Name="timeOffReason" Value="4096"/>
22333
+ <Member Name="timeOff" Value="8192"/>
22334
+ <Member Name="timeOffRequest" Value="16384"/>
22313
22335
</EnumType>
22314
22336
<EnumType Name="mailDestinationRoutingReason">
22315
22337
<Member Name="none" Value="0"/>
@@ -24062,6 +24084,10 @@ within the time frame of their original request."/>
24062
24084
<Property Name="x509CertificateRequiredAffinityLevel" Type="graph.x509CertificateAffinityLevel"/>
24063
24085
<Property Name="x509CertificateRuleType" Type="graph.x509CertificateRuleType"/>
24064
24086
</ComplexType>
24087
+ <ComplexType Name="x509CertificateCRLValidationConfiguration">
24088
+ <Property Name="exemptedCertificateAuthoritiesSubjectKeyIdentifiers" Type="Collection(Edm.String)"/>
24089
+ <Property Name="state" Type="graph.x509CertificateCRLValidationConfigurationState" Nullable="false"/>
24090
+ </ComplexType>
24065
24091
<ComplexType Name="x509CertificateUserBinding">
24066
24092
<Property Name="priority" Type="Edm.Int32" Nullable="false"/>
24067
24093
<Property Name="trustAffinityLevel" Type="graph.x509CertificateAffinityLevel"/>
@@ -24286,6 +24312,7 @@ within the time frame of their original request."/>
24286
24312
<EntityType Name="x509CertificateAuthenticationMethodConfiguration" BaseType="graph.authenticationMethodConfiguration">
24287
24313
<Property Name="authenticationModeConfiguration" Type="graph.x509CertificateAuthenticationModeConfiguration"/>
24288
24314
<Property Name="certificateUserBindings" Type="Collection(graph.x509CertificateUserBinding)"/>
24315
+ <Property Name="crlValidationConfiguration" Type="graph.x509CertificateCRLValidationConfiguration" Nullable="false"/>
24289
24316
<NavigationProperty Name="includeTargets" Type="Collection(graph.authenticationMethodTarget)" ContainsTarget="true"/>
24290
24317
</EntityType>
24291
24318
<EntityType Name="x509CertificateCombinationConfiguration" BaseType="graph.authenticationCombinationConfiguration">
@@ -26544,6 +26571,7 @@ within the time frame of their original request."/>
26544
26571
<Property Name="federatedIdpMfaBehavior" Type="graph.federatedIdpMfaBehavior"/>
26545
26572
<Property Name="isSignedAuthenticationRequestRequired" Type="Edm.Boolean"/>
26546
26573
<Property Name="nextSigningCertificate" Type="Edm.String"/>
26574
+ <Property Name="passwordResetUri" Type="Edm.String"/>
26547
26575
<Property Name="promptLoginBehavior" Type="graph.promptLoginBehavior"/>
26548
26576
<Property Name="signingCertificateUpdateStatus" Type="graph.signingCertificateUpdateStatus"/>
26549
26577
<Property Name="signOutUri" Type="Edm.String"/>
@@ -28428,18 +28456,25 @@ within the time frame of their original request."/>
28428
28456
</ComplexType>
28429
28457
<EntityType Name="fileStorage" BaseType="graph.entity">
28430
28458
<NavigationProperty Name="containers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true"/>
28459
+ <NavigationProperty Name="deletedContainers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true"/>
28431
28460
</EntityType>
28432
28461
<EntityType Name="fileStorageContainer" BaseType="graph.entity">
28433
28462
<Property Name="containerTypeId" Type="Edm.Guid" Nullable="false"/>
28434
28463
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false"/>
28435
28464
<Property Name="customProperties" Type="graph.fileStorageContainerCustomPropertyDictionary"/>
28436
28465
<Property Name="description" Type="Edm.String"/>
28437
28466
<Property Name="displayName" Type="Edm.String" Nullable="false"/>
28467
+ <Property Name="lockState" Type="graph.siteLockState"/>
28438
28468
<Property Name="settings" Type="graph.fileStorageContainerSettings" Nullable="false"/>
28439
28469
<Property Name="status" Type="graph.fileStorageContainerStatus"/>
28440
28470
<Property Name="viewpoint" Type="graph.fileStorageContainerViewpoint"/>
28441
28471
<NavigationProperty Name="drive" Type="graph.drive" ContainsTarget="true"/>
28442
28472
<NavigationProperty Name="permissions" Type="Collection(graph.permission)" ContainsTarget="true"/>
28473
+ <NavigationProperty Name="recycleBin" Type="graph.recycleBin" ContainsTarget="true"/>
28474
+ </EntityType>
28475
+ <EntityType Name="recycleBin" BaseType="graph.baseItem" OpenType="true">
28476
+ <Property Name="settings" Type="graph.recycleBinSettings"/>
28477
+ <NavigationProperty Name="items" Type="Collection(graph.recycleBinItem)" ContainsTarget="true"/>
28443
28478
</EntityType>
28444
28479
<EntityType Name="sharepointSettings" BaseType="graph.entity">
28445
28480
<Property Name="allowedDomainGuidsForSyncApp" Type="Collection(Edm.Guid)"/>
@@ -28663,6 +28698,9 @@ within the time frame of their original request."/>
28663
28698
<Property Name="likeCount" Type="Edm.Int32"/>
28664
28699
<Property Name="shareCount" Type="Edm.Int32"/>
28665
28700
</ComplexType>
28701
+ <ComplexType Name="recycleBinSettings">
28702
+ <Property Name="retentionPeriodOverrideDays" Type="Edm.Int32"/>
28703
+ </ComplexType>
28666
28704
<ComplexType Name="renameAction">
28667
28705
<Property Name="newName" Type="Edm.String"/>
28668
28706
<Property Name="oldName" Type="Edm.String"/>
@@ -28809,6 +28847,11 @@ within the time frame of their original request."/>
28809
28847
<Property Name="startDateTime" Type="Edm.DateTimeOffset"/>
28810
28848
<NavigationProperty Name="activities" Type="Collection(graph.itemActivity)"/>
28811
28849
</EntityType>
28850
+ <EntityType Name="recycleBinItem" BaseType="graph.baseItem" OpenType="true">
28851
+ <Property Name="deletedDateTime" Type="Edm.DateTimeOffset"/>
28852
+ <Property Name="deletedFromLocation" Type="Edm.String"/>
28853
+ <Property Name="size" Type="Edm.Int64"/>
28854
+ </EntityType>
28812
28855
<EntityType Name="sharedDriveItem" BaseType="graph.baseItem">
28813
28856
<Property Name="owner" Type="graph.identitySet"/>
28814
28857
<NavigationProperty Name="driveItem" Type="graph.driveItem" ContainsTarget="true"/>
@@ -34641,6 +34684,7 @@ within the time frame of their original request."/>
34641
34684
<EntityType Name="workforceIntegration" BaseType="graph.changeTrackedEntity">
34642
34685
<Property Name="apiVersion" Type="Edm.Int32"/>
34643
34686
<Property Name="displayName" Type="Edm.String"/>
34687
+ <Property Name="eligibilityFilteringEnabledEntities" Type="graph.eligibilityFilteringEnabledEntities"/>
34644
34688
<Property Name="encryption" Type="graph.workforceIntegrationEncryption"/>
34645
34689
<Property Name="isActive" Type="Edm.Boolean"/>
34646
34690
<Property Name="supportedEntities" Type="graph.workforceIntegrationSupportedEntities"/>
@@ -34709,6 +34753,7 @@ within the time frame of their original request."/>
34709
34753
</EntityType>
34710
34754
<EntityType Name="openShift" BaseType="graph.changeTrackedEntity">
34711
34755
<Property Name="draftOpenShift" Type="graph.openShiftItem"/>
34756
+ <Property Name="isStagedForDeletion" Type="Edm.Boolean"/>
34712
34757
<Property Name="schedulingGroupId" Type="Edm.String"/>
34713
34758
<Property Name="sharedOpenShift" Type="graph.openShiftItem"/>
34714
34759
</EntityType>
@@ -34722,6 +34767,7 @@ within the time frame of their original request."/>
34722
34767
</EntityType>
34723
34768
<EntityType Name="shift" BaseType="graph.changeTrackedEntity">
34724
34769
<Property Name="draftShift" Type="graph.shiftItem"/>
34770
+ <Property Name="isStagedForDeletion" Type="Edm.Boolean"/>
34725
34771
<Property Name="schedulingGroupId" Type="Edm.String"/>
34726
34772
<Property Name="sharedShift" Type="graph.shiftItem"/>
34727
34773
<Property Name="userId" Type="Edm.String"/>
@@ -34741,6 +34787,7 @@ within the time frame of their original request."/>
34741
34787
</EntityType>
34742
34788
<EntityType Name="timeOff" BaseType="graph.changeTrackedEntity">
34743
34789
<Property Name="draftTimeOff" Type="graph.timeOffItem"/>
34790
+ <Property Name="isStagedForDeletion" Type="Edm.Boolean"/>
34744
34791
<Property Name="sharedTimeOff" Type="graph.timeOffItem"/>
34745
34792
<Property Name="userId" Type="Edm.String"/>
34746
34793
</EntityType>
@@ -35687,6 +35734,10 @@ within the time frame of their original request."/>
35687
35734
</Parameter>
35688
35735
<ReturnType Type="graph.directoryObject"/>
35689
35736
</Action>
35737
+ <Action Name="restore" IsBound="true">
35738
+ <Parameter Name="bindingParameter" Type="graph.fileStorageContainer"/>
35739
+ <ReturnType Type="graph.fileStorageContainer"/>
35740
+ </Action>
35690
35741
<Action Name="restore" IsBound="true">
35691
35742
<Parameter Name="bindingParameter" Type="graph.driveItem"/>
35692
35743
<Parameter Name="parentReference" Type="graph.itemReference"/>
@@ -39126,12 +39177,21 @@ within the time frame of their original request."/>
39126
39177
<Parameter Name="TimeZoneStandard" Type="graph.timeZoneStandard" Nullable="false"/>
39127
39178
<ReturnType Type="Collection(graph.timeZoneInformation)" Nullable="false"/>
39128
39179
</Function>
39180
+ <Action Name="lock" IsBound="true">
39181
+ <Parameter Name="bindingParameter" Type="graph.fileStorageContainer"/>
39182
+ <Parameter Name="lockState" Type="graph.siteLockState">
39183
+ <Annotation Term="Org.OData.Core.V1.OptionalParameter"/>
39184
+ </Parameter>
39185
+ </Action>
39129
39186
<Action Name="permanentDelete" IsBound="true">
39130
39187
<Parameter Name="bindingParameter" Type="graph.fileStorageContainer"/>
39131
39188
</Action>
39132
39189
<Action Name="permanentDelete" IsBound="true">
39133
39190
<Parameter Name="bindingParameter" Type="graph.driveItem"/>
39134
39191
</Action>
39192
+ <Action Name="unlock" IsBound="true">
39193
+ <Parameter Name="bindingParameter" Type="graph.fileStorageContainer"/>
39194
+ </Action>
39135
39195
<Action Name="remove" IsBound="true">
39136
39196
<Parameter Name="bindingParameter" Type="Collection(graph.site)"/>
39137
39197
<Parameter Name="value" Type="Collection(graph.site)"/>
@@ -39197,6 +39257,9 @@ within the time frame of their original request."/>
39197
39257
</Parameter>
39198
39258
<ReturnType Type="graph.permission"/>
39199
39259
</Action>
39260
+ <Action Name="discardCheckout" IsBound="true">
39261
+ <Parameter Name="bindingParameter" Type="graph.driveItem"/>
39262
+ </Action>
39200
39263
<Action Name="extractSensitivityLabels" IsBound="true">
39201
39264
<Parameter Name="bindparameter" Type="graph.driveItem"/>
39202
39265
<ReturnType Type="graph.extractSensitivityLabelsResult"/>
@@ -40799,6 +40862,9 @@ within the time frame of their original request."/>
40799
40862
<Parameter Name="startDateTime" Type="Edm.DateTimeOffset"/>
40800
40863
<Parameter Name="endDateTime" Type="Edm.DateTimeOffset"/>
40801
40864
</Action>
40865
+ <Action Name="stageForDeletion" IsBound="true">
40866
+ <Parameter Name="bindingParameter" Type="graph.changeTrackedEntity"/>
40867
+ </Action>
40802
40868
<Action Name="endWorkingTime" IsBound="true">
40803
40869
<Parameter Name="bindparameter" Type="graph.workingTimeSchedule" Nullable="false"/>
40804
40870
</Action>
0 commit comments