@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,14 +7,25 @@ using MsGraph;
7
7
  scalar binary; //TODO: Enables support for Edm.Binary
8
8
 
9
9
 
10
+ @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
11
+ // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
12
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
10
13
  @publicNamespace("microsoft.graph")
11
14
  namespace reference.`microsoft.graph` {
15
+ @open
16
+ @complex model accessAction {
17
+ }
18
+
12
19
  @complex model addIn {
13
20
  id: guid | null;
14
21
  properties: keyValue[];
15
22
  type: string;
16
23
  }
17
24
 
25
+ @complex model album {
26
+ coverImageItemId: string | null;
27
+ }
28
+
18
29
  @complex model allAllowedScopes extends inheritableScopes {
19
30
  }
20
31
 
@@ -27,6 +38,9 @@ namespace reference.`microsoft.graph` {
27
38
  @complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
28
39
  }
29
40
 
41
+ @complex model allDomains extends validatingDomains {
42
+ }
43
+
30
44
  /**
31
45
  * Represents an assignment to all licensed users in the tenant.
32
46
  */
@@ -145,11 +159,33 @@ namespace reference.`microsoft.graph` {
145
159
  appConfigKeyValue: string;
146
160
  }
147
161
 
162
+ @complex model appIdentity {
163
+ appId: string | null;
164
+ displayName: string | null;
165
+ servicePrincipalId: string | null;
166
+ servicePrincipalName: string | null;
167
+ }
168
+
169
+ @complex model applicationContext extends signInContext {
170
+ includeApplications: string[];
171
+ }
172
+
173
+ @complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
174
+ }
175
+
148
176
  @complex model applicationServicePrincipal {
149
177
  @references application: application | null;
150
178
  @references servicePrincipal: servicePrincipal | null;
151
179
  }
152
180
 
181
+ @complex model appliedConditionalAccessPolicy {
182
+ displayName: string | null;
183
+ enforcedGrantControls: string[] | null;
184
+ enforcedSessionControls: string[] | null;
185
+ id: string | null;
186
+ result: appliedConditionalAccessPolicyResult | null;
187
+ }
188
+
153
189
  /**
154
190
  * Represents an app in the list of managed applications
155
191
  */
@@ -253,6 +289,30 @@ namespace reference.`microsoft.graph` {
253
289
  type: attendeeType | null;
254
290
  }
255
291
 
292
+ @complex model audio {
293
+ album: string | null;
294
+ albumArtist: string | null;
295
+ artist: string | null;
296
+ bitrate: int64 | null;
297
+ composers: string | null;
298
+ copyright: string | null;
299
+ disc: int16 | null;
300
+ discCount: int16 | null;
301
+ `duration`: int64 | null;
302
+ genre: string | null;
303
+ hasDrm: boolean | null;
304
+ isVariableBitrate: boolean | null;
305
+ title: string | null;
306
+ track: int32 | null;
307
+ trackCount: int32 | null;
308
+ year: int32 | null;
309
+ }
310
+
311
+ @complex model auditActivityInitiator {
312
+ app: appIdentity | null;
313
+ user: userIdentity | null;
314
+ }
315
+
256
316
  /**
257
317
  * A class containing the properties for Audit Actor.
258
318
  */
@@ -331,6 +391,33 @@ namespace reference.`microsoft.graph` {
331
391
  resourceId: string | null;
332
392
  }
333
393
 
394
+ @complex model authContext extends signInContext {
395
+ authenticationContextValue: string | null;
396
+ }
397
+
398
+ @complex model authenticationFlow {
399
+ transferMethod: conditionalAccessTransferMethods | null;
400
+ }
401
+
402
+ @complex model authenticationMethodFeatureConfiguration {
403
+ excludeTarget: featureTarget | null;
404
+ includeTarget: featureTarget | null;
405
+ state: advancedConfigState | null;
406
+ }
407
+
408
+ @complex model authenticationMethodsRegistrationCampaign {
409
+ excludeTargets: excludeTarget[];
410
+ includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
411
+ snoozeDurationInDays: int32;
412
+ state: advancedConfigState;
413
+ }
414
+
415
+ @complex model authenticationMethodsRegistrationCampaignIncludeTarget {
416
+ id: string;
417
+ targetedAuthenticationMethod: string | null;
418
+ targetType: authenticationMethodTargetType;
419
+ }
420
+
334
421
  @complex model authorizationInfo {
335
422
  certificateUserIds: string[] | null;
336
423
  }
@@ -380,6 +467,20 @@ namespace reference.`microsoft.graph` {
380
467
  requireEncryptionForWriteAccess: boolean;
381
468
  }
382
469
 
470
+ @complex model booleanColumn {
471
+ }
472
+
473
+ @complex model bundle {
474
+ album: album | null;
475
+ childCount: int32 | null;
476
+ }
477
+
478
+ @complex model calculatedColumn {
479
+ format: string | null;
480
+ formula: string | null;
481
+ outputType: string | null;
482
+ }
483
+
383
484
  @complex model calendarSharingMessageAction {
384
485
  action: calendarSharingAction | null;
385
486
  actionType: calendarSharingActionType | null;
@@ -421,6 +522,28 @@ namespace reference.`microsoft.graph` {
421
522
  encryptionCertificateThumbprint: string;
422
523
  }
423
524
 
525
+ @complex model choiceColumn {
526
+ allowTextEntry: boolean | null;
527
+ choices: string[] | null;
528
+ displayAs: string | null;
529
+ }
530
+
531
+ @complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
532
+ cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
533
+ }
534
+
535
+ @complex model columnValidation {
536
+ defaultLanguage: string | null;
537
+ descriptions: displayNameLocalization[] | null;
538
+ formula: string | null;
539
+ }
540
+
541
+ @complex model commentAction {
542
+ isReply: boolean | null;
543
+ parentAuthor: identitySet | null;
544
+ participants: identitySet[] | null;
545
+ }
546
+
424
547
  @open
425
548
  @complex model ComplexExtensionValue {
426
549
  }
@@ -435,6 +558,112 @@ namespace reference.`microsoft.graph` {
435
558
  target: deviceAndAppManagementAssignmentTarget | null;
436
559
  }
437
560
 
561
+ @complex model conditionalAccessAllExternalTenants extends conditionalAccessExternalTenants {
562
+ }
563
+
564
+ @complex model conditionalAccessApplications {
565
+ applicationFilter: conditionalAccessFilter | null;
566
+ excludeApplications: string[];
567
+ includeApplications: string[];
568
+ includeAuthenticationContextClassReferences: string[];
569
+ includeUserActions: string[];
570
+ }
571
+
572
+ @complex model conditionalAccessAuthenticationFlows {
573
+ transferMethods: conditionalAccessTransferMethods;
574
+ }
575
+
576
+ @complex model conditionalAccessClientApplications {
577
+ excludeServicePrincipals: string[];
578
+ includeServicePrincipals: string[];
579
+ servicePrincipalFilter: conditionalAccessFilter | null;
580
+ }
581
+
582
+ @complex model conditionalAccessConditionSet {
583
+ applications: conditionalAccessApplications | null;
584
+ authenticationFlows: conditionalAccessAuthenticationFlows | null;
585
+ clientApplications: conditionalAccessClientApplications | null;
586
+ clientAppTypes: conditionalAccessClientApp[];
587
+ devices: conditionalAccessDevices | null;
588
+ locations: conditionalAccessLocations | null;
589
+ platforms: conditionalAccessPlatforms | null;
590
+ servicePrincipalRiskLevels: riskLevel[];
591
+ signInRiskLevels: riskLevel[];
592
+ userRiskLevels: riskLevel[];
593
+ users: conditionalAccessUsers | null;
594
+ }
595
+
596
+ @complex model conditionalAccessDevices {
597
+ deviceFilter: conditionalAccessFilter | null;
598
+ }
599
+
600
+ @complex model conditionalAccessEnumeratedExternalTenants extends conditionalAccessExternalTenants {
601
+ members: string[];
602
+ }
603
+
604
+ @abstract
605
+ @complex model conditionalAccessExternalTenants {
606
+ membershipKind: conditionalAccessExternalTenantsMembershipKind | null;
607
+ }
608
+
609
+ @complex model conditionalAccessFilter {
610
+ mode: filterMode;
611
+ rule: string;
612
+ }
613
+
614
+ @complex model conditionalAccessGrantControls {
615
+ builtInControls: conditionalAccessGrantControl[];
616
+ customAuthenticationFactors: string[];
617
+ operator: string | null;
618
+ termsOfUse: string[];
619
+ }
620
+
621
+ @complex model conditionalAccessGuestsOrExternalUsers {
622
+ externalTenants: conditionalAccessExternalTenants | null;
623
+ guestOrExternalUserTypes: conditionalAccessGuestOrExternalUserTypes;
624
+ }
625
+
626
+ @complex model conditionalAccessLocations {
627
+ excludeLocations: string[];
628
+ includeLocations: string[];
629
+ }
630
+
631
+ @complex model conditionalAccessPlatforms {
632
+ excludePlatforms: conditionalAccessDevicePlatform[];
633
+ includePlatforms: conditionalAccessDevicePlatform[];
634
+ }
635
+
636
+ @complex model conditionalAccessPolicyDetail {
637
+ conditions: conditionalAccessConditionSet;
638
+ grantControls: conditionalAccessGrantControls | null;
639
+ sessionControls: conditionalAccessSessionControls | null;
640
+ }
641
+
642
+ @abstract
643
+ @complex model conditionalAccessSessionControl {
644
+ isEnabled: boolean | null;
645
+ }
646
+
647
+ @complex model conditionalAccessSessionControls {
648
+ applicationEnforcedRestrictions: applicationEnforcedRestrictionsSessionControl | null;
649
+ cloudAppSecurity: cloudAppSecuritySessionControl | null;
650
+ disableResilienceDefaults: boolean | null;
651
+ persistentBrowser: persistentBrowserSessionControl | null;
652
+ secureSignInSession: secureSignInSessionControl | null;
653
+ signInFrequency: signInFrequencySessionControl | null;
654
+ }
655
+
656
+ @complex model conditionalAccessUsers {
657
+ excludeGroups: string[];
658
+ excludeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
659
+ excludeRoles: string[];
660
+ excludeUsers: string[];
661
+ includeGroups: string[];
662
+ includeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
663
+ includeRoles: string[];
664
+ includeUsers: string[];
665
+ }
666
+
438
667
  /**
439
668
  * configuration Manager client enabled features
440
669
  */
@@ -475,6 +704,9 @@ namespace reference.`microsoft.graph` {
475
704
  collectionId: string | null;
476
705
  }
477
706
 
707
+ @complex model contentApprovalStatusColumn {
708
+ }
709
+
478
710
  @complex model contentCustomization {
479
711
  attributeCollection: keyValue[];
480
712
  attributeCollectionRelativeUrl: string | null;
@@ -482,12 +714,25 @@ namespace reference.`microsoft.graph` {
482
714
  registrationCampaignRelativeUrl: string | null;
483
715
  }
484
716
 
717
+ @complex model contentTypeInfo {
718
+ id: string | null;
719
+ name: string | null;
720
+ }
721
+
722
+ @complex model contentTypeOrder {
723
+ default: boolean | null;
724
+ position: int32 | null;
725
+ }
726
+
485
727
  @complex model convertIdResult {
486
728
  errorDetails: genericError | null;
487
729
  sourceId: string | null;
488
730
  targetId: string | null;
489
731
  }
490
732
 
733
+ @complex model createAction {
734
+ }
735
+
491
736
  @complex model crossTenantAccessPolicyB2BSetting {
492
737
  applications: crossTenantAccessPolicyTargetConfiguration | null;
493
738
  usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
@@ -513,6 +758,10 @@ namespace reference.`microsoft.graph` {
513
758
  isSyncAllowed: boolean | null;
514
759
  }
515
760
 
761
+ @complex model currencyColumn {
762
+ locale: string | null;
763
+ }
764
+
516
765
  @complex model customAppManagementApplicationConfiguration {
517
766
  identifierUris: identifierUriConfiguration | null;
518
767
  }
@@ -541,6 +790,11 @@ namespace reference.`microsoft.graph` {
541
790
  standardOffset: standardTimeZoneOffset | null;
542
791
  }
543
792
 
793
+ @complex model dateTimeColumn {
794
+ displayAs: string | null;
795
+ format: string | null;
796
+ }
797
+
544
798
  @complex model dateTimeTimeZone {
545
799
  dateTime: string;
546
800
  timeZone: string | null;
@@ -550,6 +804,11 @@ namespace reference.`microsoft.graph` {
550
804
  daylightBias: int32 | null;
551
805
  }
552
806
 
807
+ @complex model defaultColumnValue {
808
+ formula: string | null;
809
+ value: string | null;
810
+ }
811
+
553
812
  @complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
554
813
  }
555
814
 
@@ -584,6 +843,15 @@ namespace reference.`microsoft.graph` {
584
843
  severeSeverity: defenderThreatAction;
585
844
  }
586
845
 
846
+ @complex model deleteAction {
847
+ name: string | null;
848
+ objectType: string | null;
849
+ }
850
+
851
+ @complex model deleted {
852
+ state: string | null;
853
+ }
854
+
587
855
  /**
588
856
  * Delete user from shared apple device action result
589
857
  */
@@ -594,6 +862,10 @@ namespace reference.`microsoft.graph` {
594
862
  userPrincipalName: string | null;
595
863
  }
596
864
 
865
+ @open
866
+ @complex model detailsInfo {
867
+ }
868
+
597
869
  /**
598
870
  * Device action result
599
871
  */
@@ -738,6 +1010,16 @@ namespace reference.`microsoft.graph` {
738
1010
  userPrincipalName: string | null;
739
1011
  }
740
1012
 
1013
+ @complex model deviceDetail {
1014
+ browser: string | null;
1015
+ deviceId: string | null;
1016
+ displayName: string | null;
1017
+ isCompliant: boolean | null;
1018
+ isManaged: boolean | null;
1019
+ operatingSystem: string | null;
1020
+ trustType: string | null;
1021
+ }
1022
+
741
1023
  /**
742
1024
  * Platform specific enrollment restrictions
743
1025
  */
@@ -955,6 +1237,38 @@ namespace reference.`microsoft.graph` {
955
1237
  windowsPE: string | null;
956
1238
  }
957
1239
 
1240
+ @complex model deviceInfo {
1241
+ deviceId: string | null;
1242
+ displayName: string | null;
1243
+ enrollmentProfileName: string | null;
1244
+ extensionAttribute1: string | null;
1245
+ extensionAttribute10: string | null;
1246
+ extensionAttribute11: string | null;
1247
+ extensionAttribute12: string | null;
1248
+ extensionAttribute13: string | null;
1249
+ extensionAttribute14: string | null;
1250
+ extensionAttribute15: string | null;
1251
+ extensionAttribute2: string | null;
1252
+ extensionAttribute3: string | null;
1253
+ extensionAttribute4: string | null;
1254
+ extensionAttribute5: string | null;
1255
+ extensionAttribute6: string | null;
1256
+ extensionAttribute7: string | null;
1257
+ extensionAttribute8: string | null;
1258
+ extensionAttribute9: string | null;
1259
+ isCompliant: boolean | null;
1260
+ manufacturer: string | null;
1261
+ mdmAppId: string | null;
1262
+ `model`: string | null;
1263
+ operatingSystem: string | null;
1264
+ operatingSystemVersion: string | null;
1265
+ ownership: string | null;
1266
+ physicalIds: string[] | null;
1267
+ profileType: string | null;
1268
+ systemLabels: string[] | null;
1269
+ trustType: string | null;
1270
+ }
1271
+
958
1272
  @complex model deviceLocalCredential {
959
1273
  accountName: string;
960
1274
  accountSid: string;
@@ -1094,12 +1408,63 @@ namespace reference.`microsoft.graph` {
1094
1408
  @complex model deviceRegistrationMembership {
1095
1409
  }
1096
1410
 
1411
+ @open
1412
+ @complex model Dictionary {
1413
+ }
1414
+
1415
+ @complex model displayNameLocalization {
1416
+ displayName: string | null;
1417
+ languageTag: string | null;
1418
+ }
1419
+
1420
+ @complex model documentSet {
1421
+ allowedContentTypes: contentTypeInfo[] | null;
1422
+ defaultContents: documentSetContent[] | null;
1423
+ propagateWelcomePageChanges: boolean | null;
1424
+ shouldPrefixNameToFile: boolean | null;
1425
+ welcomePageUrl: string | null;
1426
+ @references sharedColumns: columnDefinition[];
1427
+ @references welcomePageColumns: columnDefinition[];
1428
+ }
1429
+
1430
+ @complex model documentSetContent {
1431
+ contentType: contentTypeInfo | null;
1432
+ fileName: string | null;
1433
+ folderName: string | null;
1434
+ }
1435
+
1436
+ @complex model documentSetVersionItem {
1437
+ itemId: string | null;
1438
+ title: string | null;
1439
+ versionId: string | null;
1440
+ }
1441
+
1097
1442
  @complex model domainState {
1098
1443
  @computed lastActionDateTime: offsetDateTime | null;
1099
1444
  operation: string | null;
1100
1445
  status: string | null;
1101
1446
  }
1102
1447
 
1448
+ @complex model driveItemSource {
1449
+ application: driveItemSourceApplication | null;
1450
+ externalId: string | null;
1451
+ }
1452
+
1453
+ @complex model driveItemUploadableProperties {
1454
+ description: string | null;
1455
+ driveItemSource: driveItemSource | null;
1456
+ fileSize: int64 | null;
1457
+ fileSystemInfo: fileSystemInfo | null;
1458
+ mediaSource: mediaSource | null;
1459
+ name: string | null;
1460
+ }
1461
+
1462
+ @complex model driveRecipient {
1463
+ `alias`: string | null;
1464
+ email: string | null;
1465
+ objectId: string | null;
1466
+ }
1467
+
1103
1468
  /**
1104
1469
  * Allows IT admins to set a predefined default search engine for MDM-Controlled devices.
1105
1470
  */
@@ -1127,6 +1492,9 @@ namespace reference.`microsoft.graph` {
1127
1492
  edgeSearchEngineOpenSearchXmlUrl: string;
1128
1493
  }
1129
1494
 
1495
+ @complex model editAction {
1496
+ }
1497
+
1130
1498
  @complex model emailAddress {
1131
1499
  address: string | null;
1132
1500
  name: string | null;
@@ -1142,10 +1510,19 @@ namespace reference.`microsoft.graph` {
1142
1510
  users: string[] | null;
1143
1511
  }
1144
1512
 
1513
+ @complex model enumeratedDomains extends validatingDomains {
1514
+ domainNames: string[];
1515
+ }
1516
+
1145
1517
  @complex model enumeratedScopes extends inheritableScopes {
1146
1518
  scopes: string[];
1147
1519
  }
1148
1520
 
1521
+ @complex model excludeTarget {
1522
+ id: string;
1523
+ targetType: authenticationMethodTargetType;
1524
+ }
1525
+
1149
1526
  /**
1150
1527
  * Represents a group that should be excluded from an assignment.
1151
1528
  */
@@ -1157,6 +1534,27 @@ namespace reference.`microsoft.graph` {
1157
1534
  type: string | null;
1158
1535
  }
1159
1536
 
1537
+ @complex model extractSensitivityLabelsResult {
1538
+ labels: sensitivityLabelAssignment[] | null;
1539
+ }
1540
+
1541
+ @complex model featureTarget {
1542
+ id: string | null;
1543
+ targetType: featureTargetType | null;
1544
+ }
1545
+
1546
+ @complex model fido2KeyRestrictions {
1547
+ aaGuids: string[] | null;
1548
+ enforcementType: fido2RestrictionEnforcementType | null;
1549
+ isEnforced: boolean | null;
1550
+ }
1551
+
1552
+ @complex model file {
1553
+ hashes: hashes | null;
1554
+ mimeType: string | null;
1555
+ processingMetadata: boolean | null;
1556
+ }
1557
+
1160
1558
  /**
1161
1559
  * Contains properties for file encryption information for the content version of a line-of-business app.
1162
1560
  */
@@ -1191,6 +1589,65 @@ namespace reference.`microsoft.graph` {
1191
1589
  profileIdentifier: string | null;
1192
1590
  }
1193
1591
 
1592
+ @open
1593
+ @complex model fileStorageContainerCustomPropertyDictionary extends Dictionary {
1594
+ }
1595
+
1596
+ @complex model fileStorageContainerCustomPropertyValue {
1597
+ isSearchable: boolean | null;
1598
+ value: string;
1599
+ }
1600
+
1601
+ @complex model fileStorageContainerSettings {
1602
+ isItemVersioningEnabled: boolean | null;
1603
+ isOcrEnabled: boolean | null;
1604
+ itemMajorVersionLimit: int32 | null;
1605
+ }
1606
+
1607
+ @complex model fileStorageContainerTypeRegistrationSettings {
1608
+ isDiscoverabilityEnabled: boolean | null;
1609
+ isItemVersioningEnabled: boolean | null;
1610
+ isSearchEnabled: boolean | null;
1611
+ isSharingRestricted: boolean | null;
1612
+ itemMajorVersionLimit: int64 | null;
1613
+ maxStoragePerContainerInBytes: int64 | null;
1614
+ sharingCapability: sharingCapabilities | null;
1615
+ urlTemplate: string | null;
1616
+ }
1617
+
1618
+ @complex model fileStorageContainerTypeSettings {
1619
+ consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
1620
+ isDiscoverabilityEnabled: boolean | null;
1621
+ isItemVersioningEnabled: boolean | null;
1622
+ isSearchEnabled: boolean | null;
1623
+ isSharingRestricted: boolean | null;
1624
+ itemMajorVersionLimit: int64 | null;
1625
+ maxStoragePerContainerInBytes: int64 | null;
1626
+ sharingCapability: sharingCapabilities | null;
1627
+ urlTemplate: string | null;
1628
+ }
1629
+
1630
+ @complex model fileStorageContainerViewpoint {
1631
+ effectiveRole: string;
1632
+ }
1633
+
1634
+ @complex model fileSystemInfo {
1635
+ @computed createdDateTime: offsetDateTime | null;
1636
+ @computed lastAccessedDateTime: offsetDateTime | null;
1637
+ @computed lastModifiedDateTime: offsetDateTime | null;
1638
+ }
1639
+
1640
+ @complex model folder {
1641
+ childCount: int32 | null;
1642
+ view: folderView | null;
1643
+ }
1644
+
1645
+ @complex model folderView {
1646
+ sortBy: string | null;
1647
+ sortOrder: string | null;
1648
+ viewType: string | null;
1649
+ }
1650
+
1194
1651
  @complex model followupFlag {
1195
1652
  completedDateTime: dateTimeTimeZone | null;
1196
1653
  dueDateTime: dateTimeTimeZone | null;
@@ -1214,6 +1671,9 @@ namespace reference.`microsoft.graph` {
1214
1671
  longitude: float64 | null;
1215
1672
  }
1216
1673
 
1674
+ @complex model geolocationColumn {
1675
+ }
1676
+
1217
1677
  /**
1218
1678
  * Represents an assignment to a group.
1219
1679
  */
@@ -1224,6 +1684,17 @@ namespace reference.`microsoft.graph` {
1224
1684
  groupId: string | null;
1225
1685
  }
1226
1686
 
1687
+ @complex model hashes {
1688
+ crc32Hash: string | null;
1689
+ quickXorHash: string | null;
1690
+ sha1Hash: string | null;
1691
+ sha256Hash: string | null;
1692
+ }
1693
+
1694
+ @complex model hyperlinkOrPictureColumn {
1695
+ isPicture: boolean | null;
1696
+ }
1697
+
1227
1698
  @complex model identifierUriConfiguration {
1228
1699
  nonDefaultUriAddition: identifierUriRestriction | null;
1229
1700
  uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
@@ -1244,6 +1715,24 @@ namespace reference.`microsoft.graph` {
1244
1715
  id: string | null;
1245
1716
  }
1246
1717
 
1718
+ @open
1719
+ @complex model identitySet {
1720
+ application: identity | null;
1721
+ device: identity | null;
1722
+ user: identity | null;
1723
+ }
1724
+
1725
+ @complex model idleSessionSignOut {
1726
+ isEnabled: boolean | null;
1727
+ signOutAfterInSeconds: int64 | null;
1728
+ warnAfterInSeconds: int64 | null;
1729
+ }
1730
+
1731
+ @complex model image {
1732
+ height: int32 | null;
1733
+ width: int32 | null;
1734
+ }
1735
+
1247
1736
  @complex model implicitGrantSettings {
1248
1737
  enableAccessTokenIssuance: boolean | null;
1249
1738
  enableIdTokenIssuance: boolean | null;
@@ -1273,6 +1762,17 @@ namespace reference.`microsoft.graph` {
1273
1762
  outboundAllowed: boolean | null;
1274
1763
  }
1275
1764
 
1765
+ @complex model includeTarget {
1766
+ id: string;
1767
+ targetType: authenticationMethodTargetType;
1768
+ }
1769
+
1770
+ @open
1771
+ @complex model incompleteData {
1772
+ missingDataBeforeDateTime: offsetDateTime | null;
1773
+ wasThrottled: boolean | null;
1774
+ }
1775
+
1276
1776
  @complex model informationalUrl {
1277
1777
  logoUrl: string | null;
1278
1778
  marketingUrl: string | null;
@@ -1286,6 +1786,11 @@ namespace reference.`microsoft.graph` {
1286
1786
  kind: scopeCollectionKind;
1287
1787
  }
1288
1788
 
1789
+ @open
1790
+ @complex model initiator extends identity {
1791
+ initiatorType: initiatorType | null;
1792
+ }
1793
+
1289
1794
  /**
1290
1795
  * The value in an user experience analytics insight.
1291
1796
  */
@@ -1660,14 +2165,34 @@ namespace reference.`microsoft.graph` {
1660
2165
  upperAddress: string;
1661
2166
  }
1662
2167
 
2168
+ @open
2169
+ @complex model itemActionStat {
2170
+ actionCount: int32 | null;
2171
+ actorCount: int32 | null;
2172
+ }
2173
+
1663
2174
  @complex model itemBody {
1664
2175
  content: string | null;
1665
2176
  contentType: bodyType | null;
1666
2177
  }
1667
2178
 
1668
- /**
1669
- * Represents data returned in JSON format
1670
- */
2179
+ @complex model itemPreviewInfo {
2180
+ getUrl: string | null;
2181
+ postParameters: string | null;
2182
+ postUrl: string | null;
2183
+ }
2184
+
2185
+ @complex model itemReference {
2186
+ driveId: string | null;
2187
+ driveType: string | null;
2188
+ id: string | null;
2189
+ name: string | null;
2190
+ path: string | null;
2191
+ shareId: string | null;
2192
+ sharepointIds: sharepointIds | null;
2193
+ siteId: string | null;
2194
+ }
2195
+
1671
2196
  @complex model Json {
1672
2197
  }
1673
2198
 
@@ -1721,6 +2246,12 @@ namespace reference.`microsoft.graph` {
1721
2246
  warning: int32 | null;
1722
2247
  }
1723
2248
 
2249
+ @complex model listInfo {
2250
+ contentTypesEnabled: boolean | null;
2251
+ hidden: boolean | null;
2252
+ template: string | null;
2253
+ }
2254
+
1724
2255
  @complex model localAdminPasswordSettings {
1725
2256
  isEnabled: boolean | null;
1726
2257
  }
@@ -1781,6 +2312,14 @@ namespace reference.`microsoft.graph` {
1781
2312
  hideTermsOfUse: boolean | null;
1782
2313
  }
1783
2314
 
2315
+ @complex model lookupColumn {
2316
+ allowMultipleValues: boolean | null;
2317
+ allowUnlimitedLength: boolean | null;
2318
+ columnName: string | null;
2319
+ listId: string | null;
2320
+ primaryLookupColumnId: string | null;
2321
+ }
2322
+
1784
2323
  /**
1785
2324
  * Contains properties of an included .app in a MacOS app.
1786
2325
  */
@@ -1908,6 +2447,10 @@ namespace reference.`microsoft.graph` {
1908
2447
  message: string | null;
1909
2448
  }
1910
2449
 
2450
+ @complex model malware {
2451
+ description: string | null;
2452
+ }
2453
+
1911
2454
  /**
1912
2455
  * Represents diagnostics status.
1913
2456
  */
@@ -2039,6 +2582,10 @@ namespace reference.`microsoft.graph` {
2039
2582
  tvRating: ratingUnitedStatesTelevisionType;
2040
2583
  }
2041
2584
 
2585
+ @complex model mediaSource {
2586
+ contentCategory: mediaSourceContentCategory | null;
2587
+ }
2588
+
2042
2589
  @complex model meetingTimeSuggestion {
2043
2590
  attendeeAvailability: attendeeAvailability[] | null;
2044
2591
  confidence: float64 | null;
@@ -2054,6 +2601,10 @@ namespace reference.`microsoft.graph` {
2054
2601
  meetingTimeSuggestions: meetingTimeSuggestion[] | null;
2055
2602
  }
2056
2603
 
2604
+ @complex model mentionAction {
2605
+ mentionees: identitySet[] | null;
2606
+ }
2607
+
2057
2608
  @complex model messageRuleActions {
2058
2609
  assignCategories: string[] | null;
2059
2610
  copyToFolder: string | null;
@@ -2101,6 +2652,21 @@ namespace reference.`microsoft.graph` {
2101
2652
  withinSizeRange: sizeRange | null;
2102
2653
  }
2103
2654
 
2655
+ @complex model metaDataKeyStringPair {
2656
+ key: string | null;
2657
+ value: string | null;
2658
+ }
2659
+
2660
+ @complex model metaDataKeyValuePair {
2661
+ key: string | null;
2662
+ value: Json | null;
2663
+ }
2664
+
2665
+ @complex model microsoftAuthenticatorFeatureSettings {
2666
+ displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
2667
+ displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
2668
+ }
2669
+
2104
2670
  /**
2105
2671
  * Contains properties used to assign an Microsoft Store for Business mobile app to a group.
2106
2672
  */
@@ -2157,12 +2723,30 @@ namespace reference.`microsoft.graph` {
2157
2723
  useLocalTime: boolean;
2158
2724
  }
2159
2725
 
2726
+ @complex model modifiedProperty {
2727
+ displayName: string | null;
2728
+ newValue: string | null;
2729
+ oldValue: string | null;
2730
+ }
2731
+
2732
+ @complex model moveAction {
2733
+ from: string | null;
2734
+ to: string | null;
2735
+ }
2736
+
2160
2737
  @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
2161
2738
  }
2162
2739
 
2163
2740
  @complex model noScopes extends inheritableScopes {
2164
2741
  }
2165
2742
 
2743
+ @complex model numberColumn {
2744
+ decimalPlaces: string | null;
2745
+ displayAs: string | null;
2746
+ maximum: float64 | null;
2747
+ minimum: float64 | null;
2748
+ }
2749
+
2166
2750
  @complex model objectIdentity {
2167
2751
  issuer: string | null;
2168
2752
  issuerAssignedId: string | null;
@@ -2285,6 +2869,7 @@ namespace reference.`microsoft.graph` {
2285
2869
  }
2286
2870
 
2287
2871
  @complex model onPremisesDirectorySynchronizationFeature {
2872
+ allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
2288
2873
  blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
2289
2874
  blockSoftMatchEnabled: boolean | null;
2290
2875
  bypassDirSyncOverridesEnabled: boolean | null;
@@ -2331,6 +2916,11 @@ namespace reference.`microsoft.graph` {
2331
2916
  value: string | null;
2332
2917
  }
2333
2918
 
2919
+ @complex model openIdConnectSetting {
2920
+ clientId: string;
2921
+ discoveryUrl: string;
2922
+ }
2923
+
2334
2924
  @complex model optionalClaim {
2335
2925
  additionalProperties: string[] | null;
2336
2926
  essential: boolean;
@@ -2401,6 +2991,10 @@ namespace reference.`microsoft.graph` {
2401
2991
  userType: windowsUserType;
2402
2992
  }
2403
2993
 
2994
+ @complex model `package` {
2995
+ type: string | null;
2996
+ }
2997
+
2404
2998
  @complex model parentalControlSettings {
2405
2999
  countriesBlockedForMinors: string[] | null;
2406
3000
  legalAgeGroupRule: string | null;
@@ -2423,11 +3017,23 @@ namespace reference.`microsoft.graph` {
2423
3017
  password: string | null;
2424
3018
  }
2425
3019
 
3020
+ @complex model passwordResetResponse {
3021
+ newPassword: string | null;
3022
+ }
3023
+
2426
3024
  @complex model patternedRecurrence {
2427
3025
  pattern: recurrencePattern | null;
2428
3026
  range: recurrenceRange | null;
2429
3027
  }
2430
3028
 
3029
+ @complex model pendingContentUpdate {
3030
+ queuedDateTime: offsetDateTime | null;
3031
+ }
3032
+
3033
+ @complex model pendingOperations {
3034
+ pendingContentUpdate: pendingContentUpdate | null;
3035
+ }
3036
+
2431
3037
  @complex model permissionScope {
2432
3038
  adminConsentDescription: string | null;
2433
3039
  adminConsentDisplayName: string | null;
@@ -2440,6 +3046,16 @@ namespace reference.`microsoft.graph` {
2440
3046
  value: string | null;
2441
3047
  }
2442
3048
 
3049
+ @complex model persistentBrowserSessionControl extends conditionalAccessSessionControl {
3050
+ mode: persistentBrowserSessionMode | null;
3051
+ }
3052
+
3053
+ @complex model personOrGroupColumn {
3054
+ allowMultipleSelection: boolean | null;
3055
+ chooseFromType: string | null;
3056
+ displayAs: string | null;
3057
+ }
3058
+
2443
3059
  @complex model personType {
2444
3060
  class: string | null;
2445
3061
  subclass: string | null;
@@ -2452,6 +3068,18 @@ namespace reference.`microsoft.graph` {
2452
3068
  type: phoneType | null;
2453
3069
  }
2454
3070
 
3071
+ @complex model photo {
3072
+ cameraMake: string | null;
3073
+ cameraModel: string | null;
3074
+ exposureDenominator: float64 | null;
3075
+ exposureNumerator: float64 | null;
3076
+ fNumber: float64 | null;
3077
+ focalLength: float64 | null;
3078
+ iso: int32 | null;
3079
+ orientation: int16 | null;
3080
+ takenDateTime: offsetDateTime | null;
3081
+ }
3082
+
2455
3083
  @complex model physicalAddress {
2456
3084
  city: string | null;
2457
3085
  countryOrRegion: string | null;
@@ -2469,6 +3097,86 @@ namespace reference.`microsoft.graph` {
2469
3097
  street: string | null;
2470
3098
  }
2471
3099
 
3100
+ @open
3101
+ @complex model plannerAppliedCategories {
3102
+ }
3103
+
3104
+ @complex model plannerAssignment {
3105
+ assignedBy: identitySet | null;
3106
+ assignedDateTime: offsetDateTime | null;
3107
+ orderHint: string | null;
3108
+ }
3109
+
3110
+ @open
3111
+ @complex model plannerAssignments {
3112
+ }
3113
+
3114
+ @complex model plannerCategoryDescriptions {
3115
+ category1: string | null;
3116
+ category10: string | null;
3117
+ category11: string | null;
3118
+ category12: string | null;
3119
+ category13: string | null;
3120
+ category14: string | null;
3121
+ category15: string | null;
3122
+ category16: string | null;
3123
+ category17: string | null;
3124
+ category18: string | null;
3125
+ category19: string | null;
3126
+ category2: string | null;
3127
+ category20: string | null;
3128
+ category21: string | null;
3129
+ category22: string | null;
3130
+ category23: string | null;
3131
+ category24: string | null;
3132
+ category25: string | null;
3133
+ category3: string | null;
3134
+ category4: string | null;
3135
+ category5: string | null;
3136
+ category6: string | null;
3137
+ category7: string | null;
3138
+ category8: string | null;
3139
+ category9: string | null;
3140
+ }
3141
+
3142
+ @complex model plannerChecklistItem {
3143
+ isChecked: boolean | null;
3144
+ lastModifiedBy: identitySet | null;
3145
+ @computed lastModifiedDateTime: offsetDateTime | null;
3146
+ orderHint: string | null;
3147
+ title: string | null;
3148
+ }
3149
+
3150
+ @open
3151
+ @complex model plannerChecklistItems {
3152
+ }
3153
+
3154
+ @complex model plannerExternalReference {
3155
+ `alias`: string | null;
3156
+ lastModifiedBy: identitySet | null;
3157
+ @computed lastModifiedDateTime: offsetDateTime | null;
3158
+ previewPriority: string | null;
3159
+ type: string | null;
3160
+ }
3161
+
3162
+ @open
3163
+ @complex model plannerExternalReferences {
3164
+ }
3165
+
3166
+ @open
3167
+ @complex model plannerOrderHintsByAssignee {
3168
+ }
3169
+
3170
+ @complex model plannerPlanContainer {
3171
+ containerId: string | null;
3172
+ type: plannerContainerType | null;
3173
+ url: string | null;
3174
+ }
3175
+
3176
+ @open
3177
+ @complex model plannerUserIds {
3178
+ }
3179
+
2472
3180
  @complex model preAuthorizedApplication {
2473
3181
  appId: string | null;
2474
3182
  delegatedPermissionIds: string[];
@@ -2479,12 +3187,59 @@ namespace reference.`microsoft.graph` {
2479
3187
  statementUrl: string | null;
2480
3188
  }
2481
3189
 
3190
+ @complex model profileCardAnnotation {
3191
+ displayName: string | null;
3192
+ localizations: displayNameLocalization[] | null;
3193
+ }
3194
+
3195
+ @complex model profileSourceLocalization {
3196
+ displayName: string | null;
3197
+ languageTag: string | null;
3198
+ webUrl: string | null;
3199
+ }
3200
+
3201
+ @open
3202
+ @complex model provisionedIdentity extends identity {
3203
+ details: detailsInfo | null;
3204
+ identityType: string | null;
3205
+ }
3206
+
2482
3207
  @complex model provisionedPlan {
2483
3208
  capabilityStatus: string | null;
2484
3209
  provisioningStatus: string | null;
2485
3210
  service: string | null;
2486
3211
  }
2487
3212
 
3213
+ @complex model provisioningErrorInfo {
3214
+ additionalDetails: string | null;
3215
+ errorCategory: provisioningStatusErrorCategory | null;
3216
+ errorCode: string | null;
3217
+ reason: string | null;
3218
+ recommendedAction: string | null;
3219
+ }
3220
+
3221
+ @open
3222
+ @complex model provisioningServicePrincipal extends identity {
3223
+ }
3224
+
3225
+ @complex model provisioningStatusInfo {
3226
+ errorInformation: provisioningErrorInfo | null;
3227
+ status: provisioningResult | null;
3228
+ }
3229
+
3230
+ @complex model provisioningStep {
3231
+ description: string | null;
3232
+ details: detailsInfo | null;
3233
+ name: string | null;
3234
+ provisioningStepType: provisioningStepType | null;
3235
+ status: provisioningResult | null;
3236
+ }
3237
+
3238
+ @open
3239
+ @complex model provisioningSystem extends identity {
3240
+ details: detailsInfo | null;
3241
+ }
3242
+
2488
3243
  /**
2489
3244
  * Proxied Domain
2490
3245
  */
@@ -2499,10 +3254,60 @@ namespace reference.`microsoft.graph` {
2499
3254
  proxy: string | null;
2500
3255
  }
2501
3256
 
3257
+ @complex model publicationFacet {
3258
+ checkedOutBy: identitySet | null;
3259
+ level: string | null;
3260
+ versionId: string | null;
3261
+ }
3262
+
2502
3263
  @complex model publicClientApplication {
2503
3264
  redirectUris: string[];
2504
3265
  }
2505
3266
 
3267
+ @complex model publicError {
3268
+ code: string | null;
3269
+ details: publicErrorDetail[] | null;
3270
+ innerError: publicInnerError | null;
3271
+ message: string | null;
3272
+ target: string | null;
3273
+ }
3274
+
3275
+ @complex model publicErrorDetail {
3276
+ code: string | null;
3277
+ message: string | null;
3278
+ target: string | null;
3279
+ }
3280
+
3281
+ @open
3282
+ @complex model publicInnerError {
3283
+ code: string | null;
3284
+ details: publicErrorDetail[] | null;
3285
+ message: string | null;
3286
+ target: string | null;
3287
+ }
3288
+
3289
+ @complex model qrCodeImageDetails {
3290
+ binaryValue: binary | null;
3291
+ errorCorrectionLevel: errorCorrectionLevel | null;
3292
+ rawContent: binary | null;
3293
+ version: int32 | null;
3294
+ }
3295
+
3296
+ @complex model quota {
3297
+ deleted: int64 | null;
3298
+ remaining: int64 | null;
3299
+ state: string | null;
3300
+ storagePlanInformation: storagePlanInformation | null;
3301
+ total: int64 | null;
3302
+ used: int64 | null;
3303
+ }
3304
+
3305
+ @complex model reactionsFacet {
3306
+ commentCount: int32 | null;
3307
+ likeCount: int32 | null;
3308
+ shareCount: int32 | null;
3309
+ }
3310
+
2506
3311
  @complex model recipient {
2507
3312
  emailAddress: emailAddress | null;
2508
3313
  }
@@ -2525,11 +3330,19 @@ namespace reference.`microsoft.graph` {
2525
3330
  type: recurrenceRangeType | null;
2526
3331
  }
2527
3332
 
3333
+ @complex model recycleBinSettings {
3334
+ retentionPeriodOverrideDays: int32 | null;
3335
+ }
3336
+
2528
3337
  @complex model redirectUriSettings {
2529
3338
  index: int32 | null;
2530
3339
  uri: string | null;
2531
3340
  }
2532
3341
 
3342
+ @complex model registrationEnforcement {
3343
+ authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
3344
+ }
3345
+
2533
3346
  @complex model reminder {
2534
3347
  changeKey: string | null;
2535
3348
  eventEndTime: dateTimeTimeZone | null;
@@ -2541,6 +3354,28 @@ namespace reference.`microsoft.graph` {
2541
3354
  reminderFireTime: dateTimeTimeZone | null;
2542
3355
  }
2543
3356
 
3357
+ @complex model remoteItem {
3358
+ createdBy: identitySet | null;
3359
+ @computed createdDateTime: offsetDateTime | null;
3360
+ file: file | null;
3361
+ fileSystemInfo: fileSystemInfo | null;
3362
+ folder: folder | null;
3363
+ id: string | null;
3364
+ image: image | null;
3365
+ lastModifiedBy: identitySet | null;
3366
+ @computed lastModifiedDateTime: offsetDateTime | null;
3367
+ name: string | null;
3368
+ `package`: `package` | null;
3369
+ parentReference: itemReference | null;
3370
+ shared: shared | null;
3371
+ sharepointIds: sharepointIds | null;
3372
+ size: int64 | null;
3373
+ specialFolder: specialFolder | null;
3374
+ video: video | null;
3375
+ webDavUrl: string | null;
3376
+ webUrl: string | null;
3377
+ }
3378
+
2544
3379
  /**
2545
3380
  * Lock action result with a pin to unlock
2546
3381
  */
@@ -2551,6 +3386,11 @@ namespace reference.`microsoft.graph` {
2551
3386
  unlockPin: string | null;
2552
3387
  }
2553
3388
 
3389
+ @complex model renameAction {
3390
+ newName: string | null;
3391
+ oldName: string | null;
3392
+ }
3393
+
2554
3394
  /**
2555
3395
  * Device Configuration profile History reports.
2556
3396
  */
@@ -2615,6 +3455,18 @@ namespace reference.`microsoft.graph` {
2615
3455
  time: offsetDateTime | null;
2616
3456
  }
2617
3457
 
3458
+ @complex model restoreAction {
3459
+ }
3460
+
3461
+ @complex model retentionLabelSettings {
3462
+ behaviorDuringRetentionPeriod: reference.`microsoft.graph.security`.behaviorDuringRetentionPeriod | null;
3463
+ isContentUpdateAllowed: boolean | null;
3464
+ isDeleteAllowed: boolean | null;
3465
+ isLabelUpdateAllowed: boolean | null;
3466
+ isMetadataUpdateAllowed: boolean | null;
3467
+ isRecordLocked: boolean | null;
3468
+ }
3469
+
2618
3470
  /**
2619
3471
  * Color in RGB.
2620
3472
  */
@@ -2653,6 +3505,9 @@ namespace reference.`microsoft.graph` {
2653
3505
  resourceActions: resourceAction[] | null;
2654
3506
  }
2655
3507
 
3508
+ @complex model root {
3509
+ }
3510
+
2656
3511
  /**
2657
3512
  * RotateBitLockerKeys device action result
2658
3513
  */
@@ -2691,6 +3546,26 @@ namespace reference.`microsoft.graph` {
2691
3546
  selectionLikelihood: selectionLikelihoodInfo | null;
2692
3547
  }
2693
3548
 
3549
+ @complex model searchResult {
3550
+ onClickTelemetryUrl: string | null;
3551
+ }
3552
+
3553
+ @complex model secureSignInSessionControl extends conditionalAccessSessionControl {
3554
+ }
3555
+
3556
+ @complex model sensitivityLabelAssignment {
3557
+ assignmentMethod: sensitivityLabelAssignmentMethod;
3558
+ sensitivityLabelId: string;
3559
+ tenantId: string;
3560
+ }
3561
+
3562
+ @complex model serverProcessedContent {
3563
+ htmlStrings: metaDataKeyStringPair[] | null;
3564
+ imageSources: metaDataKeyStringPair[] | null;
3565
+ links: metaDataKeyStringPair[] | null;
3566
+ searchablePlainTexts: metaDataKeyStringPair[] | null;
3567
+ }
3568
+
2694
3569
  @complex model servicePlanInfo {
2695
3570
  appliesTo: string | null;
2696
3571
  provisioningStatus: string | null;
@@ -2706,6 +3581,10 @@ namespace reference.`microsoft.graph` {
2706
3581
  tokenEncryptionKeyId: boolean | null;
2707
3582
  }
2708
3583
 
3584
+ @complex model servicePrincipalSignIn extends signInIdentity {
3585
+ servicePrincipalId: string | null;
3586
+ }
3587
+
2709
3588
  @complex model settingSource {
2710
3589
  displayName: string | null;
2711
3590
  id: string | null;
@@ -2719,31 +3598,125 @@ namespace reference.`microsoft.graph` {
2719
3598
  type: string | null;
2720
3599
  }
2721
3600
 
2722
- @complex model settingValue {
2723
- name: string | null;
2724
- value: string | null;
3601
+ @complex model settingValue {
3602
+ name: string | null;
3603
+ value: string | null;
3604
+ }
3605
+
3606
+ @complex model shareAction {
3607
+ recipients: identitySet[] | null;
3608
+ }
3609
+
3610
+ @complex model shared {
3611
+ owner: identitySet | null;
3612
+ scope: string | null;
3613
+ sharedBy: identitySet | null;
3614
+ sharedDateTime: offsetDateTime | null;
3615
+ }
3616
+
3617
+ /**
3618
+ * SharedPC Account Manager Policy. Only applies when the account manager is enabled.
3619
+ */
3620
+ @complex model sharedPCAccountManagerPolicy {
3621
+ /**
3622
+ * Configures when accounts are deleted.
3623
+ */
3624
+ accountDeletionPolicy: sharedPCAccountDeletionPolicyType;
3625
+ /**
3626
+ * Sets the percentage of available disk space a PC should have before it stops deleting cached shared PC accounts. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100
3627
+ */
3628
+ cacheAccountsAboveDiskFreePercentage: int32 | null;
3629
+ /**
3630
+ * Specifies when the accounts will start being deleted when they have not been logged on during the specified period, given as number of days. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold.
3631
+ */
3632
+ inactiveThresholdDays: int32 | null;
3633
+ /**
3634
+ * Sets the percentage of disk space remaining on a PC before cached accounts will be deleted to free disk space. Accounts that have been inactive the longest will be deleted first. Only applies when AccountDeletionPolicy is DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100
3635
+ */
3636
+ removeAccountsBelowDiskFreePercentage: int32 | null;
3637
+ }
3638
+
3639
+ @open
3640
+ @complex model sharePointGroupIdentity extends identity {
3641
+ principalId: string | null;
3642
+ title: string | null;
3643
+ }
3644
+
3645
+ @open
3646
+ @complex model sharePointIdentity extends identity {
3647
+ loginName: string | null;
3648
+ }
3649
+
3650
+ @open
3651
+ @complex model sharePointIdentitySet extends identitySet {
3652
+ group: identity | null;
3653
+ sharePointGroup: sharePointGroupIdentity | null;
3654
+ siteGroup: sharePointIdentity | null;
3655
+ siteUser: sharePointIdentity | null;
3656
+ }
3657
+
3658
+ @complex model sharepointIds {
3659
+ listId: string | null;
3660
+ listItemId: string | null;
3661
+ listItemUniqueId: string | null;
3662
+ siteId: string | null;
3663
+ siteUrl: string | null;
3664
+ tenantId: string | null;
3665
+ webId: string | null;
3666
+ }
3667
+
3668
+ @complex model sharePointMigrationContainerInfo {
3669
+ dataContainerUri: string;
3670
+ encryptionKey: string;
3671
+ metadataContainerUri: string;
3672
+ }
3673
+
3674
+ @complex model sharingInvitation {
3675
+ email: string | null;
3676
+ invitedBy: identitySet | null;
3677
+ redeemedBy: string | null;
3678
+ signInRequired: boolean | null;
3679
+ }
3680
+
3681
+ @complex model sharingLink {
3682
+ application: identity | null;
3683
+ preventsDownload: boolean | null;
3684
+ scope: string | null;
3685
+ type: string | null;
3686
+ webHtml: string | null;
3687
+ webUrl: string | null;
3688
+ }
3689
+
3690
+ @complex model signInActivity {
3691
+ @computed lastNonInteractiveSignInDateTime: offsetDateTime | null;
3692
+ lastNonInteractiveSignInRequestId: string | null;
3693
+ @computed lastSignInDateTime: offsetDateTime | null;
3694
+ lastSignInRequestId: string | null;
3695
+ @computed lastSuccessfulSignInDateTime: offsetDateTime | null;
3696
+ lastSuccessfulSignInRequestId: string | null;
3697
+ }
3698
+
3699
+ @complex model signInConditions {
3700
+ authenticationFlow: authenticationFlow | null;
3701
+ clientAppType: conditionalAccessClientApp | null;
3702
+ country: string | null;
3703
+ deviceInfo: deviceInfo | null;
3704
+ devicePlatform: conditionalAccessDevicePlatform | null;
3705
+ ipAddress: string | null;
3706
+ servicePrincipalRiskLevel: riskLevel | null;
3707
+ signInRiskLevel: riskLevel | null;
3708
+ userRiskLevel: riskLevel | null;
2725
3709
  }
2726
3710
 
2727
- /**
2728
- * SharedPC Account Manager Policy. Only applies when the account manager is enabled.
2729
- */
2730
- @complex model sharedPCAccountManagerPolicy {
2731
- /**
2732
- * Configures when accounts are deleted.
2733
- */
2734
- accountDeletionPolicy: sharedPCAccountDeletionPolicyType;
2735
- /**
2736
- * Sets the percentage of available disk space a PC should have before it stops deleting cached shared PC accounts. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100
2737
- */
2738
- cacheAccountsAboveDiskFreePercentage: int32 | null;
2739
- /**
2740
- * Specifies when the accounts will start being deleted when they have not been logged on during the specified period, given as number of days. Only applies when AccountDeletionPolicy is DiskSpaceThreshold or DiskSpaceThresholdOrInactiveThreshold.
2741
- */
2742
- inactiveThresholdDays: int32 | null;
2743
- /**
2744
- * Sets the percentage of disk space remaining on a PC before cached accounts will be deleted to free disk space. Accounts that have been inactive the longest will be deleted first. Only applies when AccountDeletionPolicy is DiskSpaceThresholdOrInactiveThreshold. Valid values 0 to 100
2745
- */
2746
- removeAccountsBelowDiskFreePercentage: int32 | null;
3711
+ @abstract
3712
+ @complex model signInContext {
3713
+ }
3714
+
3715
+ @complex model signInFrequencySessionControl extends conditionalAccessSessionControl {
3716
+ authenticationType: signInFrequencyAuthenticationType | null;
3717
+ frequencyInterval: signInFrequencyInterval | null;
3718
+ type: signinFrequencyType | null;
3719
+ value: int32 | null;
2747
3720
  }
2748
3721
 
2749
3722
  @complex model signingCertificateUpdateStatus {
@@ -2751,6 +3724,10 @@ namespace reference.`microsoft.graph` {
2751
3724
  @computed lastRunDateTime: offsetDateTime | null;
2752
3725
  }
2753
3726
 
3727
+ @abstract
3728
+ @complex model signInIdentity {
3729
+ }
3730
+
2754
3731
  @complex model signInLocation {
2755
3732
  city: string | null;
2756
3733
  countryOrRegion: string | null;
@@ -2758,6 +3735,23 @@ namespace reference.`microsoft.graph` {
2758
3735
  state: string | null;
2759
3736
  }
2760
3737
 
3738
+ @complex model signInStatus {
3739
+ additionalDetails: string | null;
3740
+ errorCode: int32 | null;
3741
+ failureReason: string | null;
3742
+ }
3743
+
3744
+ @complex model siteArchivalDetails {
3745
+ archiveStatus: siteArchiveStatus | null;
3746
+ }
3747
+
3748
+ @complex model siteCollection {
3749
+ archivalDetails: siteArchivalDetails | null;
3750
+ dataLocationCode: string | null;
3751
+ hostname: string | null;
3752
+ root: root | null;
3753
+ }
3754
+
2761
3755
  @complex model sizeRange {
2762
3756
  maximumSize: int32 | null;
2763
3757
  minimumSize: int32 | null;
@@ -2767,6 +3761,10 @@ namespace reference.`microsoft.graph` {
2767
3761
  redirectUris: string[];
2768
3762
  }
2769
3763
 
3764
+ @complex model specialFolder {
3765
+ name: string | null;
3766
+ }
3767
+
2770
3768
  @complex model standardTimeZoneOffset {
2771
3769
  dayOccurrence: int32 | null;
2772
3770
  dayOfWeek: dayOfWeek | null;
@@ -2775,6 +3773,22 @@ namespace reference.`microsoft.graph` {
2775
3773
  year: int32 | null;
2776
3774
  }
2777
3775
 
3776
+ @complex model storagePlanInformation {
3777
+ upgradeAvailable: boolean | null;
3778
+ }
3779
+
3780
+ @complex model systemFacet {
3781
+ }
3782
+
3783
+ @complex model targetResource {
3784
+ displayName: string | null;
3785
+ groupType: groupType | null;
3786
+ id: string | null;
3787
+ modifiedProperties: modifiedProperty[] | null;
3788
+ type: string | null;
3789
+ userPrincipalName: string | null;
3790
+ }
3791
+
2778
3792
  @complex model tenantInformation {
2779
3793
  defaultDomainName: string | null;
2780
3794
  displayName: string | null;
@@ -2782,6 +3796,32 @@ namespace reference.`microsoft.graph` {
2782
3796
  tenantId: string;
2783
3797
  }
2784
3798
 
3799
+ @complex model termColumn {
3800
+ allowMultipleValues: boolean | null;
3801
+ showFullyQualifiedName: boolean | null;
3802
+ @references parentTerm: reference.`microsoft.graph.termStore`.term | null;
3803
+ @references termSet: reference.`microsoft.graph.termStore`.set | null;
3804
+ }
3805
+
3806
+ @complex model textColumn {
3807
+ allowMultipleLines: boolean | null;
3808
+ appendChangesToExistingText: boolean | null;
3809
+ linesForEditing: int32 | null;
3810
+ maxLength: int32 | null;
3811
+ textType: string | null;
3812
+ }
3813
+
3814
+ @complex model thumbnail {
3815
+ content: stream | null;
3816
+ height: int32 | null;
3817
+ sourceItemId: string | null;
3818
+ url: string | null;
3819
+ width: int32 | null;
3820
+ }
3821
+
3822
+ @complex model thumbnailColumn {
3823
+ }
3824
+
2785
3825
  @complex model timeConstraint {
2786
3826
  activityDomain: activityDomain | null;
2787
3827
  timeSlots: timeSlot[] | null;
@@ -2801,12 +3841,33 @@ namespace reference.`microsoft.graph` {
2801
3841
  displayName: string | null;
2802
3842
  }
2803
3843
 
3844
+ @open
3845
+ @complex model titleArea {
3846
+ alternativeText: string | null;
3847
+ enableGradientEffect: boolean | null;
3848
+ imageWebUrl: string | null;
3849
+ layout: titleAreaLayoutType | null;
3850
+ serverProcessedContent: serverProcessedContent | null;
3851
+ showAuthor: boolean | null;
3852
+ showPublishedDate: boolean | null;
3853
+ showTextBlockAboveTitle: boolean | null;
3854
+ textAboveTitle: string | null;
3855
+ textAlignment: titleAreaTextAlignmentType | null;
3856
+ }
3857
+
2804
3858
  @complex model unifiedRolePermission {
2805
3859
  allowedResourceActions: string[];
2806
3860
  condition: string | null;
2807
3861
  excludedResourceActions: string[] | null;
2808
3862
  }
2809
3863
 
3864
+ @complex model updateAllowedCombinationsResult {
3865
+ additionalInformation: string | null;
3866
+ conditionalAccessReferences: string[] | null;
3867
+ currentCombinations: authenticationMethodModes[];
3868
+ previousCombinations: authenticationMethodModes[];
3869
+ }
3870
+
2810
3871
  @complex model updateWindowsDeviceAccountActionParameter {
2811
3872
  calendarSyncEnabled: boolean | null;
2812
3873
  deviceAccount: windowsDeviceAccount | null;
@@ -2822,6 +3883,10 @@ namespace reference.`microsoft.graph` {
2822
3883
  uploadUrl: string | null;
2823
3884
  }
2824
3885
 
3886
+ @complex model userActionContext extends signInContext {
3887
+ userAction: userAction | null;
3888
+ }
3889
+
2825
3890
  /**
2826
3891
  * The user experience analytics summary of Devices not windows autopilot ready.
2827
3892
  */
@@ -2979,6 +4044,47 @@ namespace reference.`microsoft.graph` {
2979
4044
  windows10DevicesWithoutTenantAttach: int32;
2980
4045
  }
2981
4046
 
4047
+ @open
4048
+ @complex model userIdentity extends identity {
4049
+ ipAddress: string | null;
4050
+ userPrincipalName: string | null;
4051
+ }
4052
+
4053
+ @complex model userRegistrationFeatureCount {
4054
+ feature: authenticationMethodFeature;
4055
+ userCount: int64;
4056
+ }
4057
+
4058
+ @complex model userRegistrationFeatureSummary {
4059
+ totalUserCount: int64;
4060
+ userRegistrationFeatureCounts: userRegistrationFeatureCount[];
4061
+ userRoles: includedUserRoles | null;
4062
+ userTypes: includedUserTypes | null;
4063
+ }
4064
+
4065
+ @complex model userRegistrationMethodCount {
4066
+ authenticationMethod: string;
4067
+ userCount: int64;
4068
+ }
4069
+
4070
+ @complex model userRegistrationMethodSummary {
4071
+ totalUserCount: int64;
4072
+ userRegistrationMethodCounts: userRegistrationMethodCount[];
4073
+ userRoles: includedUserRoles | null;
4074
+ userTypes: includedUserTypes | null;
4075
+ }
4076
+
4077
+ @complex model userSignIn extends signInIdentity {
4078
+ externalTenantId: string | null;
4079
+ externalUserType: conditionalAccessGuestOrExternalUserTypes;
4080
+ userId: string | null;
4081
+ }
4082
+
4083
+ @abstract
4084
+ @complex model validatingDomains {
4085
+ rootDomains: rootDomains;
4086
+ }
4087
+
2982
4088
  @complex model verifiedDomain {
2983
4089
  capabilities: string | null;
2984
4090
  isDefault: boolean | null;
@@ -2987,6 +4093,23 @@ namespace reference.`microsoft.graph` {
2987
4093
  type: string | null;
2988
4094
  }
2989
4095
 
4096
+ @complex model versionAction {
4097
+ newVersion: string | null;
4098
+ }
4099
+
4100
+ @complex model video {
4101
+ audioBitsPerSample: int32 | null;
4102
+ audioChannels: int32 | null;
4103
+ audioFormat: string | null;
4104
+ audioSamplesPerSecond: int32 | null;
4105
+ bitrate: int32 | null;
4106
+ `duration`: int64 | null;
4107
+ fourCC: string | null;
4108
+ frameRate: float64 | null;
4109
+ height: int32 | null;
4110
+ width: int32 | null;
4111
+ }
4112
+
2990
4113
  /**
2991
4114
  * Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type.
2992
4115
  */
@@ -3009,6 +4132,85 @@ namespace reference.`microsoft.graph` {
3009
4132
  redirectUriSettings: redirectUriSettings[];
3010
4133
  }
3011
4134
 
4135
+ @open
4136
+ @complex model webauthnAuthenticationExtensionsClientInputs {
4137
+ }
4138
+
4139
+ @open
4140
+ @complex model webauthnAuthenticationExtensionsClientOutputs {
4141
+ }
4142
+
4143
+ @complex model webauthnAuthenticatorAttestationResponse {
4144
+ attestationObject: string | null;
4145
+ clientDataJSON: string | null;
4146
+ }
4147
+
4148
+ @complex model webauthnAuthenticatorSelectionCriteria {
4149
+ authenticatorAttachment: string | null;
4150
+ requireResidentKey: boolean | null;
4151
+ userVerification: string | null;
4152
+ }
4153
+
4154
+ @complex model webauthnCredentialCreationOptions {
4155
+ challengeTimeoutDateTime: offsetDateTime | null;
4156
+ publicKey: webauthnPublicKeyCredentialCreationOptions | null;
4157
+ }
4158
+
4159
+ @complex model webauthnPublicKeyCredential {
4160
+ clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
4161
+ id: string | null;
4162
+ response: webauthnAuthenticatorAttestationResponse | null;
4163
+ }
4164
+
4165
+ @complex model webauthnPublicKeyCredentialCreationOptions {
4166
+ attestation: string | null;
4167
+ authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
4168
+ challenge: string | null;
4169
+ excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
4170
+ extensions: webauthnAuthenticationExtensionsClientInputs | null;
4171
+ pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
4172
+ rp: webauthnPublicKeyCredentialRpEntity | null;
4173
+ timeout: int32 | null;
4174
+ user: webauthnPublicKeyCredentialUserEntity | null;
4175
+ }
4176
+
4177
+ @complex model webauthnPublicKeyCredentialDescriptor {
4178
+ id: string | null;
4179
+ transports: string[] | null;
4180
+ type: string | null;
4181
+ }
4182
+
4183
+ @complex model webauthnPublicKeyCredentialParameters {
4184
+ alg: int32 | null;
4185
+ type: string | null;
4186
+ }
4187
+
4188
+ @complex model webauthnPublicKeyCredentialRpEntity {
4189
+ id: string | null;
4190
+ name: string | null;
4191
+ }
4192
+
4193
+ @complex model webauthnPublicKeyCredentialUserEntity {
4194
+ displayName: string | null;
4195
+ id: string | null;
4196
+ name: string | null;
4197
+ }
4198
+
4199
+ @complex model webPartData {
4200
+ dataVersion: string | null;
4201
+ description: string | null;
4202
+ properties: Json | null;
4203
+ serverProcessedContent: serverProcessedContent | null;
4204
+ title: string | null;
4205
+ }
4206
+
4207
+ @complex model webPartPosition {
4208
+ columnId: float64 | null;
4209
+ horizontalSectionId: float64 | null;
4210
+ isInVerticalSection: boolean | null;
4211
+ webPartIndex: float64 | null;
4212
+ }
4213
+
3012
4214
  @complex model website {
3013
4215
  address: string | null;
3014
4216
  displayName: string | null;
@@ -3695,9 +4897,46 @@ namespace reference.`microsoft.graph` {
3695
4897
  timeZone: timeZoneBase | null;
3696
4898
  }
3697
4899
 
4900
+ @complex model x509CertificateAuthenticationModeConfiguration {
4901
+ rules: x509CertificateRule[] | null;
4902
+ x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
4903
+ x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
4904
+ }
4905
+
4906
+ @complex model x509CertificateAuthorityScope {
4907
+ includeTargets: includeTarget[] | null;
4908
+ publicKeyInfrastructureIdentifier: string | null;
4909
+ subjectKeyIdentifier: string | null;
4910
+ }
4911
+
4912
+ @complex model x509CertificateIssuerHintsConfiguration {
4913
+ state: x509CertificateIssuerHintsState | null;
4914
+ }
4915
+
4916
+ @complex model x509CertificateRule {
4917
+ identifier: string | null;
4918
+ issuerSubjectIdentifier: string | null;
4919
+ policyOidIdentifier: string | null;
4920
+ x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
4921
+ x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
4922
+ x509CertificateRuleType: x509CertificateRuleType | null;
4923
+ }
4924
+
4925
+ @complex model x509CertificateUserBinding {
4926
+ priority: int32;
4927
+ trustAffinityLevel: x509CertificateAffinityLevel | null;
4928
+ userProperty: string | null;
4929
+ x509CertificateField: string | null;
4930
+ }
4931
+
3698
4932
  @entity model activityBasedTimeoutPolicy extends stsPolicy {
3699
4933
  }
3700
4934
 
4935
+ @entity model admin extends MsGraph.SharedModels.entity {
4936
+ @contains people: peopleAdminSettings | null;
4937
+ @contains sharepoint: sharepoint | null;
4938
+ }
4939
+
3701
4940
  @open
3702
4941
  @entity model administrativeUnit extends directoryObject {
3703
4942
  description: string | null;
@@ -4581,6 +5820,48 @@ namespace reference.`microsoft.graph` {
4581
5820
  resources: auditResource[] | null;
4582
5821
  }
4583
5822
 
5823
+ @entity model auditLogRoot extends MsGraph.SharedModels.entity {
5824
+ @contains directoryAudits: directoryAudit[];
5825
+ @contains provisioning: provisioningObjectSummary[];
5826
+ @contains signIns: signIn[];
5827
+ }
5828
+
5829
+ @abstract
5830
+ @entity model authenticationCombinationConfiguration extends entity {
5831
+ appliesToCombinations: authenticationMethodModes[];
5832
+ }
5833
+
5834
+ @entity model authenticationContextClassReference extends entity {
5835
+ description: string | null;
5836
+ displayName: string | null;
5837
+ isAvailable: boolean | null;
5838
+ }
5839
+
5840
+ @entity model authenticationMethodModeDetail extends entity {
5841
+ authenticationMethod: baseAuthenticationMethod;
5842
+ displayName: string;
5843
+ }
5844
+
5845
+ @entity model authenticationMethodsRoot extends entity {
5846
+ @contains userRegistrationDetails: userRegistrationDetails[];
5847
+ }
5848
+
5849
+ @entity model authenticationMethodTarget extends entity {
5850
+ isRegistrationRequired: boolean;
5851
+ targetType: authenticationMethodTargetType;
5852
+ }
5853
+
5854
+ @entity model authenticationStrengthPolicy extends entity {
5855
+ allowedCombinations: authenticationMethodModes[];
5856
+ @computed createdDateTime: offsetDateTime;
5857
+ description: string | null;
5858
+ displayName: string;
5859
+ modifiedDateTime: offsetDateTime;
5860
+ policyType: authenticationStrengthPolicyType;
5861
+ requirementsSatisfied: authenticationStrengthRequirements;
5862
+ @contains combinationConfigurations: authenticationCombinationConfiguration[];
5863
+ }
5864
+
4584
5865
  @entity model authorizationPolicy extends policyBase {
4585
5866
  allowedToSignUpEmailBasedSubscriptions: boolean;
4586
5867
  allowedToUseSSPR: boolean;
@@ -4592,6 +5873,34 @@ namespace reference.`microsoft.graph` {
4592
5873
  guestUserRoleId: guid | null;
4593
5874
  }
4594
5875
 
5876
+ @abstract
5877
+ @entity model baseItem extends entity {
5878
+ createdBy: identitySet | null;
5879
+ @computed createdDateTime: offsetDateTime;
5880
+ description: string | null;
5881
+ eTag: string | null;
5882
+ lastModifiedBy: identitySet | null;
5883
+ @computed lastModifiedDateTime: offsetDateTime;
5884
+ name: string | null;
5885
+ parentReference: itemReference | null;
5886
+ webUrl: string | null;
5887
+ @references createdByUser: user | null;
5888
+ @references lastModifiedByUser: user | null;
5889
+ }
5890
+
5891
+ @abstract
5892
+ @entity model baseItemVersion extends entity {
5893
+ lastModifiedBy: identitySet | null;
5894
+ @computed lastModifiedDateTime: offsetDateTime | null;
5895
+ publication: publicationFacet | null;
5896
+ }
5897
+
5898
+ @entity model baseSitePage extends baseItem {
5899
+ pageLayout: pageLayoutType | null;
5900
+ publishingState: publicationFacet | null;
5901
+ title: string | null;
5902
+ }
5903
+
4595
5904
  @entity model bitlocker extends entity {
4596
5905
  @contains recoveryKeys: bitlockerRecoveryKey[];
4597
5906
  }
@@ -4646,6 +5955,11 @@ namespace reference.`microsoft.graph` {
4646
5955
  suggestedCalendarName: string | null;
4647
5956
  }
4648
5957
 
5958
+ @entity model canvasLayout extends entity {
5959
+ @contains horizontalSections: horizontalSection[];
5960
+ @contains verticalSection: verticalSection | null;
5961
+ }
5962
+
4649
5963
  @entity model certificateBasedAuthConfiguration extends entity {
4650
5964
  certificateAuthorities: certificateAuthority[];
4651
5965
  }
@@ -4653,6 +5967,45 @@ namespace reference.`microsoft.graph` {
4653
5967
  @entity model claimsMappingPolicy extends stsPolicy {
4654
5968
  }
4655
5969
 
5970
+ @entity model columnDefinition extends entity {
5971
+ `boolean`: booleanColumn | null;
5972
+ calculated: calculatedColumn | null;
5973
+ choice: choiceColumn | null;
5974
+ columnGroup: string | null;
5975
+ contentApprovalStatus: contentApprovalStatusColumn | null;
5976
+ currency: currencyColumn | null;
5977
+ dateTime: dateTimeColumn | null;
5978
+ defaultValue: defaultColumnValue | null;
5979
+ description: string | null;
5980
+ displayName: string | null;
5981
+ enforceUniqueValues: boolean | null;
5982
+ geolocation: geolocationColumn | null;
5983
+ hidden: boolean | null;
5984
+ hyperlinkOrPicture: hyperlinkOrPictureColumn | null;
5985
+ indexed: boolean | null;
5986
+ isDeletable: boolean | null;
5987
+ isReorderable: boolean | null;
5988
+ isSealed: boolean | null;
5989
+ lookup: lookupColumn | null;
5990
+ name: string | null;
5991
+ number: numberColumn | null;
5992
+ personOrGroup: personOrGroupColumn | null;
5993
+ propagateChanges: boolean | null;
5994
+ readOnly: boolean | null;
5995
+ required: boolean | null;
5996
+ sourceContentType: contentTypeInfo | null;
5997
+ term: termColumn | null;
5998
+ text: textColumn | null;
5999
+ thumbnail: thumbnailColumn | null;
6000
+ type: columnTypes | null;
6001
+ validation: columnValidation | null;
6002
+ @references sourceColumn: columnDefinition | null;
6003
+ }
6004
+
6005
+ @entity model columnLink extends entity {
6006
+ name: string | null;
6007
+ }
6008
+
4656
6009
  @entity model companySubscription extends entity {
4657
6010
  commerceSubscriptionId: string | null;
4658
6011
  @computed createdDateTime: offsetDateTime | null;
@@ -4710,6 +6063,33 @@ namespace reference.`microsoft.graph` {
4710
6063
  partnerState: deviceManagementPartnerTenantState;
4711
6064
  }
4712
6065
 
6066
+ @entity model conditionalAccessPolicy extends policyDeletableItem {
6067
+ conditions: conditionalAccessConditionSet;
6068
+ @computed createdDateTime: offsetDateTime | null;
6069
+ description: string | null;
6070
+ displayName: string;
6071
+ grantControls: conditionalAccessGrantControls | null;
6072
+ @computed @key id: string;
6073
+ modifiedDateTime: offsetDateTime | null;
6074
+ sessionControls: conditionalAccessSessionControls | null;
6075
+ state: conditionalAccessPolicyState;
6076
+ templateId: string | null;
6077
+ }
6078
+
6079
+ @entity model conditionalAccessRoot extends entity {
6080
+ @contains authenticationContextClassReferences: authenticationContextClassReference[];
6081
+ @contains namedLocations: namedLocation[];
6082
+ @contains policies: conditionalAccessPolicy[];
6083
+ @contains templates: conditionalAccessTemplate[];
6084
+ }
6085
+
6086
+ @entity model conditionalAccessTemplate extends entity {
6087
+ description: string;
6088
+ details: conditionalAccessPolicyDetail;
6089
+ name: string;
6090
+ scenarios: templateScenarios;
6091
+ }
6092
+
4713
6093
  @open
4714
6094
  @entity model contact extends outlookItem {
4715
6095
  assistantName: string | null;
@@ -4760,6 +6140,28 @@ namespace reference.`microsoft.graph` {
4760
6140
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
4761
6141
  }
4762
6142
 
6143
+ @entity model contentType extends entity {
6144
+ associatedHubsUrls: string[] | null;
6145
+ description: string | null;
6146
+ documentSet: documentSet | null;
6147
+ documentTemplate: documentSetContent | null;
6148
+ group: string | null;
6149
+ hidden: boolean | null;
6150
+ inheritedFrom: itemReference | null;
6151
+ isBuiltIn: boolean | null;
6152
+ name: string | null;
6153
+ order: contentTypeOrder | null;
6154
+ parentId: string | null;
6155
+ propagateChanges: boolean | null;
6156
+ readOnly: boolean | null;
6157
+ sealed: boolean | null;
6158
+ @references base: contentType | null;
6159
+ @references baseTypes: contentType[];
6160
+ @contains columnLinks: columnLink[];
6161
+ @references columnPositions: columnDefinition[];
6162
+ @contains columns: columnDefinition[];
6163
+ }
6164
+
4763
6165
  @open
4764
6166
  @entity model contract extends directoryObject {
4765
6167
  contractType: string | null;
@@ -4789,6 +6191,12 @@ namespace reference.`microsoft.graph` {
4789
6191
  @contains posts: post[];
4790
6192
  }
4791
6193
 
6194
+ @entity model countryNamedLocation extends namedLocation {
6195
+ countriesAndRegions: string[];
6196
+ countryLookupMethod: countryLookupMethodType | null;
6197
+ includeUnknownCountriesAndRegions: boolean;
6198
+ }
6199
+
4792
6200
  @entity model crossTenantAccessPolicy extends policyBase {
4793
6201
  @contains default: crossTenantAccessPolicyConfigurationDefault | null;
4794
6202
  @contains partners: crossTenantAccessPolicyConfigurationPartner[];
@@ -6336,6 +7744,20 @@ namespace reference.`microsoft.graph` {
6336
7744
  @contains subscriptions: companySubscription[];
6337
7745
  }
6338
7746
 
7747
+ @entity model directoryAudit extends entity {
7748
+ activityDateTime: offsetDateTime;
7749
+ activityDisplayName: string;
7750
+ additionalDetails: keyValue[] | null;
7751
+ category: string;
7752
+ correlationId: string | null;
7753
+ initiatedBy: auditActivityInitiator;
7754
+ loggedByService: string | null;
7755
+ operationType: string | null;
7756
+ result: operationResult | null;
7757
+ resultReason: string | null;
7758
+ targetResources: targetResource[] | null;
7759
+ }
7760
+
6339
7761
  @open
6340
7762
  @entity model directoryObject extends entity {
6341
7763
  deletedDateTime: offsetDateTime | null;
@@ -6362,6 +7784,14 @@ namespace reference.`microsoft.graph` {
6362
7784
  displayName: string | null;
6363
7785
  }
6364
7786
 
7787
+ @entity model documentSetVersion extends listItemVersion {
7788
+ comment: string | null;
7789
+ createdBy: identitySet | null;
7790
+ @computed createdDateTime: offsetDateTime | null;
7791
+ items: documentSetVersionItem[] | null;
7792
+ shouldCaptureMinorVersion: boolean | null;
7793
+ }
7794
+
6365
7795
  @entity model domain extends entity {
6366
7796
  authenticationType: string;
6367
7797
  availabilityStatus: string | null;
@@ -6417,6 +7847,61 @@ namespace reference.`microsoft.graph` {
6417
7847
  description: string | null;
6418
7848
  }
6419
7849
 
7850
+ @entity model drive extends baseItem {
7851
+ driveType: string | null;
7852
+ owner: identitySet | null;
7853
+ quota: quota | null;
7854
+ sharePointIds: sharepointIds | null;
7855
+ system: systemFacet | null;
7856
+ @contains bundles: driveItem[];
7857
+ @contains following: driveItem[];
7858
+ @contains items: driveItem[];
7859
+ @contains list: list | null;
7860
+ @contains root: driveItem | null;
7861
+ @contains special: driveItem[];
7862
+ }
7863
+
7864
+ @open
7865
+ @entity model driveItem extends baseItem {
7866
+ audio: audio | null;
7867
+ bundle: bundle | null;
7868
+ content: stream | null;
7869
+ cTag: string | null;
7870
+ deleted: deleted | null;
7871
+ file: file | null;
7872
+ fileSystemInfo: fileSystemInfo | null;
7873
+ folder: folder | null;
7874
+ image: image | null;
7875
+ location: geoCoordinates | null;
7876
+ malware: malware | null;
7877
+ `package`: `package` | null;
7878
+ pendingOperations: pendingOperations | null;
7879
+ photo: photo | null;
7880
+ publication: publicationFacet | null;
7881
+ remoteItem: remoteItem | null;
7882
+ root: root | null;
7883
+ searchResult: searchResult | null;
7884
+ shared: shared | null;
7885
+ sharepointIds: sharepointIds | null;
7886
+ size: int64 | null;
7887
+ specialFolder: specialFolder | null;
7888
+ video: video | null;
7889
+ webDavUrl: string | null;
7890
+ @references analytics: itemAnalytics | null;
7891
+ @contains children: driveItem[];
7892
+ @contains listItem: listItem | null;
7893
+ @contains permissions: permission[];
7894
+ @contains retentionLabel: itemRetentionLabel | null;
7895
+ @contains subscriptions: subscription[];
7896
+ @contains thumbnails: thumbnailSet[];
7897
+ @contains versions: driveItemVersion[];
7898
+ }
7899
+
7900
+ @entity model driveItemVersion extends baseItemVersion {
7901
+ content: stream | null;
7902
+ size: int64 | null;
7903
+ }
7904
+
6420
7905
  /**
6421
7906
  * Contains properties for the installation summary of a book for a device.
6422
7907
  */
@@ -6671,7 +8156,19 @@ namespace reference.`microsoft.graph` {
6671
8156
  description: string | null;
6672
8157
  issuer: string;
6673
8158
  name: string;
6674
- subject: string;
8159
+ subject: string | null;
8160
+ }
8161
+
8162
+ @entity model federatedTokenValidationPolicy extends directoryObject {
8163
+ validatingDomains: validatingDomains;
8164
+ }
8165
+
8166
+ @entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
8167
+ allowedAAGUIDs: string[];
8168
+ }
8169
+
8170
+ @open
8171
+ @entity model fieldValueSet extends entity {
6675
8172
  }
6676
8173
 
6677
8174
  @entity model fileAttachment extends attachment {
@@ -6680,8 +8177,64 @@ namespace reference.`microsoft.graph` {
6680
8177
  contentLocation: string | null;
6681
8178
  }
6682
8179
 
8180
+ @entity model fileStorage extends entity {
8181
+ @contains containers: fileStorageContainer[];
8182
+ @contains containerTypeRegistrations: fileStorageContainerTypeRegistration[];
8183
+ @contains containerTypes: fileStorageContainerType[];
8184
+ @contains deletedContainers: fileStorageContainer[];
8185
+ }
8186
+
8187
+ @entity model fileStorageContainer extends entity {
8188
+ assignedSensitivityLabel: assignedLabel | null;
8189
+ containerTypeId: guid;
8190
+ @computed createdDateTime: offsetDateTime;
8191
+ customProperties: fileStorageContainerCustomPropertyDictionary | null;
8192
+ description: string | null;
8193
+ displayName: string;
8194
+ lockState: siteLockState | null;
8195
+ settings: fileStorageContainerSettings;
8196
+ status: fileStorageContainerStatus | null;
8197
+ viewpoint: fileStorageContainerViewpoint | null;
8198
+ @contains columns: columnDefinition[];
8199
+ @contains drive: drive | null;
8200
+ @contains migrationJobs: sharePointMigrationJob[];
8201
+ @contains permissions: permission[];
8202
+ @contains recycleBin: recycleBin | null;
8203
+ @contains sharePointGroups: sharePointGroup[];
8204
+ }
8205
+
8206
+ @entity model fileStorageContainerType extends entity {
8207
+ billingClassification: fileStorageContainerBillingClassification;
8208
+ billingStatus: fileStorageContainerBillingStatus;
8209
+ @computed createdDateTime: offsetDateTime;
8210
+ etag: string;
8211
+ expirationDateTime: offsetDateTime;
8212
+ name: string;
8213
+ owningAppId: guid;
8214
+ settings: fileStorageContainerTypeSettings;
8215
+ }
8216
+
8217
+ @entity model fileStorageContainerTypeAppPermissionGrant extends MsGraph.SharedModels.entity {
8218
+ @computed @key appId: string;
8219
+ applicationPermissions: fileStorageContainerTypeAppPermission[] | null;
8220
+ delegatedPermissions: fileStorageContainerTypeAppPermission[] | null;
8221
+ }
8222
+
8223
+ @entity model fileStorageContainerTypeRegistration extends entity {
8224
+ billingClassification: fileStorageContainerBillingClassification;
8225
+ billingStatus: fileStorageContainerBillingStatus;
8226
+ etag: string;
8227
+ expirationDateTime: offsetDateTime;
8228
+ name: string;
8229
+ owningAppId: guid;
8230
+ registeredDateTime: offsetDateTime;
8231
+ settings: fileStorageContainerTypeRegistrationSettings;
8232
+ @contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
8233
+ }
8234
+
6683
8235
  @open
6684
8236
  @entity model group extends directoryObject {
8237
+ accessType: groupAccessType | null;
6685
8238
  allowExternalSenders: boolean | null;
6686
8239
  assignedLabels: assignedLabel[] | null;
6687
8240
  assignedLicenses: assignedLicense[] | null;
@@ -6697,6 +8250,7 @@ namespace reference.`microsoft.graph` {
6697
8250
  hideFromOutlookClients: boolean | null;
6698
8251
  infoCatalogs: string[];
6699
8252
  isAssignableToRole: boolean | null;
8253
+ isFavorite: boolean | null;
6700
8254
  isManagementRestricted: boolean | null;
6701
8255
  isSubscribedByMail: boolean | null;
6702
8256
  licenseProcessingState: licenseProcessingState | null;
@@ -6723,7 +8277,9 @@ namespace reference.`microsoft.graph` {
6723
8277
  securityIdentifier: string | null;
6724
8278
  theme: string | null;
6725
8279
  uniqueName: string | null;
8280
+ unseenConversationsCount: int32 | null;
6726
8281
  unseenCount: int32 | null;
8282
+ unseenMessagesCount: int32 | null;
6727
8283
  visibility: string | null;
6728
8284
  welcomeMessageEnabled: boolean | null;
6729
8285
  @contains acceptedSenders: directoryObject[];
@@ -6732,6 +8288,8 @@ namespace reference.`microsoft.graph` {
6732
8288
  @contains calendarView: event[];
6733
8289
  @contains conversations: conversation[];
6734
8290
  @references createdOnBehalfOf: directoryObject | null;
8291
+ @contains drive: drive | null;
8292
+ @contains drives: drive[];
6735
8293
  @contains events: event[];
6736
8294
  @contains extensions: extension[];
6737
8295
  @contains groupLifecyclePolicies: groupLifecyclePolicy[];
@@ -6743,8 +8301,10 @@ namespace reference.`microsoft.graph` {
6743
8301
  @contains permissionGrants: resourceSpecificPermissionGrant[];
6744
8302
  @contains photo: profilePhoto | null;
6745
8303
  @contains photos: profilePhoto[];
8304
+ @contains planner: plannerGroup | null;
6746
8305
  @contains rejectedSenders: directoryObject[];
6747
8306
  @contains settings: groupSetting[];
8307
+ @contains sites: site[];
6748
8308
  @contains threads: conversationThread[];
6749
8309
  @references transitiveMemberOf: directoryObject[];
6750
8310
  @references transitiveMembers: directoryObject[];
@@ -6773,7 +8333,19 @@ namespace reference.`microsoft.graph` {
6773
8333
  @entity model homeRealmDiscoveryPolicy extends stsPolicy {
6774
8334
  }
6775
8335
 
8336
+ @entity model horizontalSection extends entity {
8337
+ emphasis: sectionEmphasisType | null;
8338
+ layout: horizontalSectionLayoutType | null;
8339
+ @contains columns: horizontalSectionColumn[];
8340
+ }
8341
+
8342
+ @entity model horizontalSectionColumn extends entity {
8343
+ width: int32 | null;
8344
+ @contains webparts: webPart[];
8345
+ }
8346
+
6776
8347
  @entity model identityContainer extends MsGraph.SharedModels.entity {
8348
+ @contains conditionalAccess: conditionalAccessRoot | null;
6777
8349
  }
6778
8350
 
6779
8351
  @entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
@@ -6788,6 +8360,10 @@ namespace reference.`microsoft.graph` {
6788
8360
  displayName: string | null;
6789
8361
  }
6790
8362
 
8363
+ @entity model identitySecurityDefaultsEnforcementPolicy extends policyBase {
8364
+ isEnabled: boolean;
8365
+ }
8366
+
6791
8367
  /**
6792
8368
  * Imported windows autopilot devices.
6793
8369
  */
@@ -7819,16 +9395,86 @@ namespace reference.`microsoft.graph` {
7819
9395
  @entity model iosVppEBookAssignment extends managedEBookAssignment {
7820
9396
  }
7821
9397
 
9398
+ @entity model ipNamedLocation extends namedLocation {
9399
+ ipRanges: ipRange[];
9400
+ isTrusted: boolean;
9401
+ }
9402
+
9403
+ @open
9404
+ @entity model itemActivity extends entity {
9405
+ access: accessAction | null;
9406
+ activityDateTime: offsetDateTime | null;
9407
+ actor: identitySet | null;
9408
+ @contains driveItem: driveItem | null;
9409
+ }
9410
+
9411
+ @open
9412
+ @entity model itemActivityStat extends entity {
9413
+ access: itemActionStat | null;
9414
+ create: itemActionStat | null;
9415
+ delete: itemActionStat | null;
9416
+ edit: itemActionStat | null;
9417
+ endDateTime: offsetDateTime | null;
9418
+ incompleteData: incompleteData | null;
9419
+ isTrending: boolean | null;
9420
+ move: itemActionStat | null;
9421
+ startDateTime: offsetDateTime | null;
9422
+ @references activities: itemActivity[];
9423
+ }
9424
+
9425
+ @open
9426
+ @entity model itemAnalytics extends entity {
9427
+ @references allTime: itemActivityStat | null;
9428
+ @contains itemActivityStats: itemActivityStat[];
9429
+ @references lastSevenDays: itemActivityStat | null;
9430
+ }
9431
+
7822
9432
  @entity model itemAttachment extends attachment {
7823
9433
  @contains item: outlookItem | null;
7824
9434
  }
7825
9435
 
9436
+ @entity model itemRetentionLabel extends entity {
9437
+ isLabelAppliedExplicitly: boolean | null;
9438
+ labelAppliedBy: identitySet | null;
9439
+ labelAppliedDateTime: offsetDateTime | null;
9440
+ name: string | null;
9441
+ retentionSettings: retentionLabelSettings | null;
9442
+ }
9443
+
7826
9444
  @entity model licenseDetails extends entity {
7827
9445
  servicePlans: servicePlanInfo[];
7828
9446
  skuId: guid | null;
7829
9447
  skuPartNumber: string | null;
7830
9448
  }
7831
9449
 
9450
+ @entity model list extends baseItem {
9451
+ displayName: string | null;
9452
+ list: listInfo | null;
9453
+ sharepointIds: sharepointIds | null;
9454
+ system: systemFacet | null;
9455
+ @contains columns: columnDefinition[];
9456
+ @contains contentTypes: contentType[];
9457
+ @contains drive: drive | null;
9458
+ @contains items: listItem[];
9459
+ @contains operations: richLongRunningOperation[];
9460
+ @contains subscriptions: subscription[];
9461
+ }
9462
+
9463
+ @entity model listItem extends baseItem {
9464
+ contentType: contentTypeInfo | null;
9465
+ deleted: deleted | null;
9466
+ sharepointIds: sharepointIds | null;
9467
+ @references analytics: itemAnalytics | null;
9468
+ @contains documentSetVersions: documentSetVersion[];
9469
+ @contains driveItem: driveItem | null;
9470
+ @contains fields: fieldValueSet | null;
9471
+ @contains versions: listItemVersion[];
9472
+ }
9473
+
9474
+ @entity model listItemVersion extends baseItemVersion {
9475
+ @contains fields: fieldValueSet | null;
9476
+ }
9477
+
7832
9478
  /**
7833
9479
  * The text content of a Notification Message Template for the specified locale.
7834
9480
  */
@@ -7855,6 +9501,14 @@ namespace reference.`microsoft.graph` {
7855
9501
  subject: string;
7856
9502
  }
7857
9503
 
9504
+ @entity model longRunningOperation extends entity {
9505
+ @computed createdDateTime: offsetDateTime | null;
9506
+ @computed lastActionDateTime: offsetDateTime | null;
9507
+ resourceLocation: string | null;
9508
+ status: longRunningOperationStatus | null;
9509
+ statusDetail: string | null;
9510
+ }
9511
+
7858
9512
  /**
7859
9513
  * This class contains compliance settings for Mac OS.
7860
9514
  */
@@ -9492,6 +11146,13 @@ namespace reference.`microsoft.graph` {
9492
11146
  value: string[] | null;
9493
11147
  }
9494
11148
 
11149
+ @entity model namedLocation extends policyDeletableItem {
11150
+ @computed createdDateTime: offsetDateTime | null;
11151
+ displayName: string;
11152
+ @computed @key id: string;
11153
+ modifiedDateTime: offsetDateTime | null;
11154
+ }
11155
+
9495
11156
  /**
9496
11157
  * Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
9497
11158
  */
@@ -9681,8 +11342,34 @@ namespace reference.`microsoft.graph` {
9681
11342
  @contains masterCategories: outlookCategory[];
9682
11343
  }
9683
11344
 
11345
+ @entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
11346
+ allowedPasskeyProfiles: guid | null;
11347
+ }
11348
+
9684
11349
  @entity model peopleAdminSettings extends entity {
9685
11350
  @contains itemInsights: insightsSettings | null;
11351
+ @contains profileCardProperties: profileCardProperty[];
11352
+ @contains profilePropertySettings: profilePropertySetting[];
11353
+ @contains profileSources: profileSource[];
11354
+ @contains pronouns: pronounsSettings | null;
11355
+ }
11356
+
11357
+ @entity model permission extends entity {
11358
+ expirationDateTime: offsetDateTime | null;
11359
+
11360
+ @graphDeprecated("Removal")
11361
+ grantedTo: identitySet | null;
11362
+
11363
+ @graphDeprecated("Removal")
11364
+ grantedToIdentities: identitySet[] | null;
11365
+ grantedToIdentitiesV2: sharePointIdentitySet[] | null;
11366
+ grantedToV2: sharePointIdentitySet | null;
11367
+ hasPassword: boolean | null;
11368
+ inheritedFrom: itemReference | null;
11369
+ invitation: sharingInvitation | null;
11370
+ link: sharingLink | null;
11371
+ roles: string[] | null;
11372
+ shareId: string | null;
9686
11373
  }
9687
11374
 
9688
11375
  @entity model permissionGrantConditionSet extends entity {
@@ -9723,22 +11410,118 @@ namespace reference.`microsoft.graph` {
9723
11410
  yomiCompany: string | null;
9724
11411
  }
9725
11412
 
11413
+ @entity model planner extends entity {
11414
+ @contains buckets: plannerBucket[];
11415
+ @contains plans: plannerPlan[];
11416
+ @contains tasks: plannerTask[];
11417
+ }
11418
+
11419
+ @entity model plannerAssignedToTaskBoardTaskFormat extends entity {
11420
+ orderHintsByAssignee: plannerOrderHintsByAssignee | null;
11421
+ unassignedOrderHint: string | null;
11422
+ }
11423
+
11424
+ @entity model plannerBucket extends entity {
11425
+ name: string;
11426
+ orderHint: string | null;
11427
+ planId: string | null;
11428
+ @references tasks: plannerTask[];
11429
+ }
11430
+
11431
+ @entity model plannerBucketTaskBoardTaskFormat extends entity {
11432
+ orderHint: string | null;
11433
+ }
11434
+
11435
+ @entity model plannerGroup extends entity {
11436
+ @references plans: plannerPlan[];
11437
+ }
11438
+
11439
+ @entity model plannerPlan extends entity {
11440
+ container: plannerPlanContainer | null;
11441
+ createdBy: identitySet | null;
11442
+ @computed createdDateTime: offsetDateTime | null;
11443
+
11444
+ @graphDeprecated("Tasks_And_Plans")
11445
+ owner: string | null;
11446
+ title: string;
11447
+ @references buckets: plannerBucket[];
11448
+ @contains details: plannerPlanDetails | null;
11449
+ @references tasks: plannerTask[];
11450
+ }
11451
+
11452
+ @entity model plannerPlanDetails extends entity {
11453
+ categoryDescriptions: plannerCategoryDescriptions | null;
11454
+ sharedWith: plannerUserIds | null;
11455
+ }
11456
+
11457
+ @entity model plannerProgressTaskBoardTaskFormat extends entity {
11458
+ orderHint: string | null;
11459
+ }
11460
+
11461
+ @entity model plannerTask extends entity {
11462
+ activeChecklistItemCount: int32 | null;
11463
+ appliedCategories: plannerAppliedCategories | null;
11464
+ assigneePriority: string | null;
11465
+ assignments: plannerAssignments | null;
11466
+ bucketId: string | null;
11467
+ checklistItemCount: int32 | null;
11468
+ completedBy: identitySet | null;
11469
+ completedDateTime: offsetDateTime | null;
11470
+ conversationThreadId: string | null;
11471
+ createdBy: identitySet | null;
11472
+ @computed createdDateTime: offsetDateTime | null;
11473
+ dueDateTime: offsetDateTime | null;
11474
+ hasDescription: boolean | null;
11475
+ orderHint: string | null;
11476
+ percentComplete: int32 | null;
11477
+ planId: string | null;
11478
+ previewType: plannerPreviewType | null;
11479
+ priority: int32 | null;
11480
+ referenceCount: int32 | null;
11481
+ startDateTime: offsetDateTime | null;
11482
+ title: string;
11483
+ @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
11484
+ @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
11485
+ @contains details: plannerTaskDetails | null;
11486
+ @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
11487
+ }
11488
+
11489
+ @entity model plannerTaskDetails extends entity {
11490
+ checklist: plannerChecklistItems | null;
11491
+ description: string | null;
11492
+ previewType: plannerPreviewType | null;
11493
+ references: plannerExternalReferences | null;
11494
+ }
11495
+
11496
+ @entity model plannerUser extends entity {
11497
+ @references plans: plannerPlan[];
11498
+ @references tasks: plannerTask[];
11499
+ }
11500
+
9726
11501
  @abstract
9727
11502
  @entity model policyBase extends directoryObject {
9728
11503
  description: string | null;
9729
11504
  displayName: string | null;
9730
11505
  }
9731
11506
 
9732
- @entity model policyRoot extends MsGraph.SharedModels.entity {
11507
+ @abstract
11508
+ @entity model policyDeletableItem extends MsGraph.SharedModels.entity {
11509
+ deletedDateTime: offsetDateTime | null;
11510
+ }
11511
+
11512
+ @entity model policyRoot extends entity {
9733
11513
  @contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
9734
11514
  @contains appManagementPolicies: appManagementPolicy[];
9735
11515
  @contains authorizationPolicy: authorizationPolicy | null;
9736
11516
  @contains claimsMappingPolicies: claimsMappingPolicy[];
11517
+ @contains conditionalAccessPolicies: conditionalAccessPolicy[];
9737
11518
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
9738
11519
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
9739
11520
  @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
9740
11521
  @contains featureRolloutPolicies: featureRolloutPolicy[];
11522
+ @contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
9741
11523
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
11524
+ @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
9742
11525
  @contains permissionGrantPolicies: permissionGrantPolicy[];
9743
11526
  @contains tokenIssuancePolicies: tokenIssuancePolicy[];
9744
11527
  @contains tokenLifetimePolicies: tokenLifetimePolicy[];
@@ -9761,17 +11544,80 @@ namespace reference.`microsoft.graph` {
9761
11544
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
9762
11545
  }
9763
11546
 
11547
+ @entity model profileCardProperty extends entity {
11548
+ annotations: profileCardAnnotation[] | null;
11549
+ directoryPropertyName: string | null;
11550
+ isVisible: boolean;
11551
+ }
11552
+
9764
11553
  @entity model profilePhoto extends entity {
9765
11554
  height: int32 | null;
9766
11555
  width: int32 | null;
9767
11556
  }
9768
11557
 
11558
+ @entity model profilePropertySetting extends entity {
11559
+ displayName: string | null;
11560
+ name: string | null;
11561
+ prioritizedSourceUrls: string[];
11562
+ }
11563
+
11564
+ @entity model profileSource extends entity {
11565
+ displayName: string | null;
11566
+ kind: string | null;
11567
+ localizations: profileSourceLocalization[];
11568
+ sourceId: string | null;
11569
+ webUrl: string | null;
11570
+ }
11571
+
11572
+ @entity model pronounsSettings extends entity {
11573
+ isEnabledInOrganization: boolean;
11574
+ }
11575
+
11576
+ @entity model provisioningObjectSummary extends entity {
11577
+ activityDateTime: offsetDateTime;
11578
+ changeId: string | null;
11579
+ cycleId: string | null;
11580
+ durationInMilliseconds: int32 | null;
11581
+ initiatedBy: initiator | null;
11582
+ jobId: string | null;
11583
+ modifiedProperties: modifiedProperty[] | null;
11584
+ provisioningAction: provisioningAction | null;
11585
+ provisioningStatusInfo: provisioningStatusInfo | null;
11586
+ provisioningSteps: provisioningStep[] | null;
11587
+ servicePrincipal: provisioningServicePrincipal | null;
11588
+ sourceIdentity: provisionedIdentity | null;
11589
+ sourceSystem: provisioningSystem | null;
11590
+ targetIdentity: provisionedIdentity | null;
11591
+ targetSystem: provisioningSystem | null;
11592
+ tenantId: string | null;
11593
+ }
11594
+
11595
+ @entity model qrPin extends entity {
11596
+ code: string;
11597
+ @computed createdDateTime: offsetDateTime | null;
11598
+ forceChangePinNextSignIn: boolean | null;
11599
+ updatedDateTime: offsetDateTime | null;
11600
+ }
11601
+
9769
11602
  @entity model rbacApplication extends entity {
9770
11603
  @contains resourceNamespaces: unifiedRbacResourceNamespace[];
9771
11604
  @contains roleAssignments: unifiedRoleAssignment[];
9772
11605
  @contains roleDefinitions: unifiedRoleDefinition[];
9773
11606
  }
9774
11607
 
11608
+ @open
11609
+ @entity model recycleBin extends baseItem {
11610
+ settings: recycleBinSettings | null;
11611
+ @contains items: recycleBinItem[];
11612
+ }
11613
+
11614
+ @open
11615
+ @entity model recycleBinItem extends baseItem {
11616
+ deletedDateTime: offsetDateTime | null;
11617
+ deletedFromLocation: string | null;
11618
+ size: int64 | null;
11619
+ }
11620
+
9775
11621
  @entity model referenceAttachment extends attachment {
9776
11622
  }
9777
11623
 
@@ -9804,6 +11650,7 @@ namespace reference.`microsoft.graph` {
9804
11650
  }
9805
11651
 
9806
11652
  @entity model reportRoot extends MsGraph.SharedModels.entity {
11653
+ @contains authenticationMethods: authenticationMethodsRoot | null;
9807
11654
  }
9808
11655
 
9809
11656
  /**
@@ -9832,6 +11679,13 @@ namespace reference.`microsoft.graph` {
9832
11679
  resourceAppId: string | null;
9833
11680
  }
9834
11681
 
11682
+ @entity model richLongRunningOperation extends longRunningOperation {
11683
+ error: publicError | null;
11684
+ percentageComplete: int32 | null;
11685
+ resourceId: string | null;
11686
+ type: string | null;
11687
+ }
11688
+
9835
11689
  @entity model riskDetection extends entity {
9836
11690
  activity: activityType | null;
9837
11691
  activityDateTime: offsetDateTime | null;
@@ -10089,6 +11943,17 @@ namespace reference.`microsoft.graph` {
10089
11943
  unknownDeviceCount: int32;
10090
11944
  }
10091
11945
 
11946
+ @entity model sharedDriveItem extends baseItem {
11947
+ owner: identitySet | null;
11948
+ @contains driveItem: driveItem | null;
11949
+ @contains items: driveItem[];
11950
+ @contains list: list | null;
11951
+ @contains listItem: listItem | null;
11952
+ @contains permission: permission | null;
11953
+ @contains root: driveItem | null;
11954
+ @contains site: site | null;
11955
+ }
11956
+
10092
11957
  /**
10093
11958
  * This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource.
10094
11959
  */
@@ -10143,10 +12008,185 @@ namespace reference.`microsoft.graph` {
10143
12008
  maintenanceStartTime: offsetDateTime | null;
10144
12009
  }
10145
12010
 
12011
+ @entity model sharepoint extends entity {
12012
+ @contains settings: sharepointSettings | null;
12013
+ }
12014
+
12015
+ @entity model sharePointGroup extends entity {
12016
+ description: string | null;
12017
+ principalId: string | null;
12018
+ title: string;
12019
+ @contains members: sharePointGroupMember[];
12020
+ }
12021
+
12022
+ @entity model sharePointGroupMember extends entity {
12023
+ identity: sharePointIdentitySet | null;
12024
+ }
12025
+
12026
+ @entity model sharePointMigrationEvent extends entity {
12027
+ correlationId: string;
12028
+ eventDateTime: offsetDateTime;
12029
+ jobId: string;
12030
+ }
12031
+
12032
+ @entity model sharePointMigrationFinishManifestFileUploadEvent extends sharePointMigrationEvent {
12033
+ manifestFileName: string;
12034
+ }
12035
+
12036
+ @entity model sharePointMigrationJob extends entity {
12037
+ containerInfo: sharePointMigrationContainerInfo;
12038
+ @contains progressEvents: sharePointMigrationEvent[];
12039
+ }
12040
+
12041
+ @entity model sharePointMigrationJobCancelledEvent extends sharePointMigrationEvent {
12042
+ isCancelledByUser: boolean;
12043
+ totalRetryCount: int32;
12044
+ }
12045
+
12046
+ @entity model sharePointMigrationJobDeletedEvent extends sharePointMigrationEvent {
12047
+ }
12048
+
12049
+ @entity model sharePointMigrationJobErrorEvent extends sharePointMigrationEvent {
12050
+ error: publicError;
12051
+ errorLevel: sharePointMigrationJobErrorLevel;
12052
+ objectId: string;
12053
+ objectType: sharePointMigrationObjectType;
12054
+ objectUrl: string;
12055
+ totalRetryCount: int32;
12056
+ }
12057
+
12058
+ @entity model sharePointMigrationJobPostponedEvent extends sharePointMigrationEvent {
12059
+ jobsInQueue: int64;
12060
+ nextPickupDateTime: offsetDateTime;
12061
+ reason: string;
12062
+ totalRetryCount: int32;
12063
+ }
12064
+
12065
+ @entity model sharePointMigrationJobProgressEvent extends sharePointMigrationEvent {
12066
+ bytesProcessed: int64;
12067
+ bytesProcessedOnlyCurrentVersion: int64;
12068
+ cpuDurationMs: int64;
12069
+ filesProcessed: int64;
12070
+ filesProcessedOnlyCurrentVersion: int64;
12071
+ isCompleted: boolean;
12072
+ lastProcessedObjectId: string;
12073
+ objectsProcessed: int64;
12074
+ sqlDurationMs: int64;
12075
+ sqlQueryCount: int64;
12076
+ totalDurationMs: int64;
12077
+ totalErrors: int64;
12078
+ totalExpectedBytes: int64;
12079
+ totalExpectedObjects: int64;
12080
+ totalRetryCount: int32;
12081
+ totalWarnings: int64;
12082
+ waitTimeOnSqlThrottlingMs: int64;
12083
+ }
12084
+
12085
+ @entity model sharePointMigrationJobQueuedEvent extends sharePointMigrationEvent {
12086
+ }
12087
+
12088
+ @entity model sharePointMigrationJobStartEvent extends sharePointMigrationEvent {
12089
+ isRestarted: boolean;
12090
+ totalRetryCount: int32;
12091
+ }
12092
+
12093
+ @entity model sharepointSettings extends entity {
12094
+ allowedDomainGuidsForSyncApp: guid | null;
12095
+ availableManagedPathsForSiteCreation: string[];
12096
+ deletedUserPersonalSiteRetentionPeriodInDays: int32 | null;
12097
+ excludedFileExtensionsForSyncApp: string[] | null;
12098
+ idleSessionSignOut: idleSessionSignOut | null;
12099
+ imageTaggingOption: imageTaggingChoice | null;
12100
+ isCommentingOnSitePagesEnabled: boolean | null;
12101
+ isFileActivityNotificationEnabled: boolean | null;
12102
+ isLegacyAuthProtocolsEnabled: boolean | null;
12103
+ isLoopEnabled: boolean | null;
12104
+ isMacSyncAppEnabled: boolean | null;
12105
+ isRequireAcceptingUserToMatchInvitedUserEnabled: boolean | null;
12106
+ isResharingByExternalUsersEnabled: boolean | null;
12107
+ isSharePointMobileNotificationEnabled: boolean | null;
12108
+ isSharePointNewsfeedEnabled: boolean | null;
12109
+ isSiteCreationEnabled: boolean | null;
12110
+ isSiteCreationUIEnabled: boolean | null;
12111
+ isSitePagesCreationEnabled: boolean | null;
12112
+ isSitesStorageLimitAutomatic: boolean | null;
12113
+ isSyncButtonHiddenOnPersonalSite: boolean | null;
12114
+ isUnmanagedSyncAppForTenantRestricted: boolean | null;
12115
+ personalSiteDefaultStorageLimitInMB: int64 | null;
12116
+ sharingAllowedDomainList: string[] | null;
12117
+ sharingBlockedDomainList: string[] | null;
12118
+ sharingCapability: sharingCapabilities | null;
12119
+ sharingDomainRestrictionMode: sharingDomainRestrictionMode | null;
12120
+ siteCreationDefaultManagedPath: string;
12121
+ siteCreationDefaultStorageLimitInMB: int32 | null;
12122
+ tenantDefaultTimezone: string | null;
12123
+ }
12124
+
12125
+ @entity model signIn extends entity {
12126
+ appDisplayName: string | null;
12127
+ appId: string | null;
12128
+ appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
12129
+ clientAppUsed: string | null;
12130
+ conditionalAccessStatus: conditionalAccessStatus | null;
12131
+ correlationId: string | null;
12132
+ @computed createdDateTime: offsetDateTime;
12133
+ deviceDetail: deviceDetail | null;
12134
+ ipAddress: string | null;
12135
+ isInteractive: boolean | null;
12136
+ location: signInLocation | null;
12137
+ resourceDisplayName: string | null;
12138
+ resourceId: string | null;
12139
+ riskDetail: riskDetail | null;
12140
+ riskEventTypes: riskEventType[] | null;
12141
+ riskEventTypes_v2: string[] | null;
12142
+ riskLevelAggregated: riskLevel | null;
12143
+ riskLevelDuringSignIn: riskLevel | null;
12144
+ riskState: riskState | null;
12145
+ status: signInStatus | null;
12146
+ userDisplayName: string | null;
12147
+ userId: string;
12148
+ userPrincipalName: string | null;
12149
+ }
12150
+
10146
12151
  @entity model singleValueLegacyExtendedProperty extends entity {
10147
12152
  value: string | null;
10148
12153
  }
10149
12154
 
12155
+ @entity model site extends baseItem {
12156
+ displayName: string | null;
12157
+ error: publicError | null;
12158
+ isPersonalSite: boolean | null;
12159
+ root: root | null;
12160
+ sharepointIds: sharepointIds | null;
12161
+ siteCollection: siteCollection | null;
12162
+ @references analytics: itemAnalytics | null;
12163
+ @contains columns: columnDefinition[];
12164
+ @contains contentTypes: contentType[];
12165
+ @contains drive: drive | null;
12166
+ @contains drives: drive[];
12167
+ @references externalColumns: columnDefinition[];
12168
+ @contains items: baseItem[];
12169
+ @contains lists: list[];
12170
+ @contains operations: richLongRunningOperation[];
12171
+ @contains pages: baseSitePage[];
12172
+ @contains permissions: permission[];
12173
+ @contains sites: site[];
12174
+ @contains termStore: reference.`microsoft.graph.termStore`.store | null;
12175
+ @contains termStores: reference.`microsoft.graph.termStore`.store[];
12176
+ }
12177
+
12178
+ @open
12179
+ @entity model sitePage extends baseSitePage {
12180
+ promotionKind: pagePromotionType | null;
12181
+ reactions: reactionsFacet | null;
12182
+ showComments: boolean | null;
12183
+ showRecommendedPages: boolean | null;
12184
+ thumbnailWebUrl: string | null;
12185
+ titleArea: titleArea | null;
12186
+ @contains canvasLayout: canvasLayout | null;
12187
+ @contains webParts: webPart[];
12188
+ }
12189
+
10150
12190
  @entity model softwareUpdateStatusSummary extends entity {
10151
12191
  /**
10152
12192
  * Number of compliant devices.
@@ -10210,6 +12250,16 @@ namespace reference.`microsoft.graph` {
10210
12250
  unknownUserCount: int32;
10211
12251
  }
10212
12252
 
12253
+ @entity model standardWebPart extends webPart {
12254
+ containerTextWebPartId: string | null;
12255
+ data: webPartData | null;
12256
+ webPartType: string | null;
12257
+ }
12258
+
12259
+ @entity model storage extends MsGraph.SharedModels.entity {
12260
+ @contains fileStorage: fileStorage | null;
12261
+ }
12262
+
10213
12263
  @abstract
10214
12264
  @entity model stsPolicy extends policyBase {
10215
12265
  definition: string[];
@@ -10391,6 +12441,18 @@ namespace reference.`microsoft.graph` {
10391
12441
  target: deviceAndAppManagementAssignmentTarget | null;
10392
12442
  }
10393
12443
 
12444
+ @entity model textWebPart extends webPart {
12445
+ innerHtml: string | null;
12446
+ }
12447
+
12448
+ @open
12449
+ @entity model thumbnailSet extends entity {
12450
+ large: thumbnail | null;
12451
+ medium: thumbnail | null;
12452
+ small: thumbnail | null;
12453
+ source: thumbnail | null;
12454
+ }
12455
+
10394
12456
  @entity model tokenIssuancePolicy extends stsPolicy {
10395
12457
  }
10396
12458
 
@@ -10508,6 +12570,7 @@ namespace reference.`microsoft.graph` {
10508
12570
  schools: string[] | null;
10509
12571
  securityIdentifier: string | null;
10510
12572
  showInAddressList: boolean | null;
12573
+ signInActivity: signInActivity | null;
10511
12574
  signInSessionsValidFromDateTime: offsetDateTime | null;
10512
12575
  skills: string[] | null;
10513
12576
  state: string | null;
@@ -10529,8 +12592,11 @@ namespace reference.`microsoft.graph` {
10529
12592
  */
10530
12593
  @contains deviceManagementTroubleshootingEvents: deviceManagementTroubleshootingEvent[];
10531
12594
  @references directReports: directoryObject[];
12595
+ @contains drive: drive | null;
12596
+ @contains drives: drive[];
10532
12597
  @contains events: event[];
10533
12598
  @contains extensions: extension[];
12599
+ @references followedSites: site[];
10534
12600
  @contains inferenceClassification: inferenceClassification | null;
10535
12601
  @contains licenseDetails: licenseDetails[];
10536
12602
  @contains mailFolders: mailFolder[];
@@ -10553,6 +12619,7 @@ namespace reference.`microsoft.graph` {
10553
12619
  @contains people: person[];
10554
12620
  @contains photo: profilePhoto | null;
10555
12621
  @contains photos: profilePhoto[];
12622
+ @contains planner: plannerUser | null;
10556
12623
  @references registeredDevices: directoryObject[];
10557
12624
  @contains scopedRoleMemberOf: scopedRoleMembership[];
10558
12625
  @references sponsors: directoryObject[];
@@ -11541,10 +13608,33 @@ namespace reference.`microsoft.graph` {
11541
13608
  @contains deviceStates: deviceInstallState[];
11542
13609
  }
11543
13610
 
13611
+ @entity model userRegistrationDetails extends entity {
13612
+ isAdmin: boolean | null;
13613
+ isMfaCapable: boolean;
13614
+ isMfaRegistered: boolean;
13615
+ isPasswordlessCapable: boolean;
13616
+ isSsprCapable: boolean;
13617
+ isSsprEnabled: boolean;
13618
+ isSsprRegistered: boolean;
13619
+ isSystemPreferredAuthenticationMethodEnabled: boolean | null;
13620
+ @computed lastUpdatedDateTime: offsetDateTime;
13621
+ methodsRegistered: string[] | null;
13622
+ systemPreferredAuthenticationMethods: string[] | null;
13623
+ userDisplayName: string;
13624
+ userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethod | null;
13625
+ userPrincipalName: string;
13626
+ userType: signInUserType | null;
13627
+ }
13628
+
11544
13629
  @entity model userSettings extends entity {
11545
13630
  @contains itemInsights: userInsightsSettings | null;
11546
13631
  }
11547
13632
 
13633
+ @entity model verticalSection extends entity {
13634
+ emphasis: sectionEmphasisType | null;
13635
+ @contains webparts: webPart[];
13636
+ }
13637
+
11548
13638
  /**
11549
13639
  * You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
11550
13640
  */
@@ -11609,6 +13699,15 @@ namespace reference.`microsoft.graph` {
11609
13699
  useManagedBrowser: boolean;
11610
13700
  }
11611
13701
 
13702
+ @abstract
13703
+ @entity model webPart extends entity {
13704
+ }
13705
+
13706
+ @entity model whatIfAnalysisResult extends conditionalAccessPolicy {
13707
+ analysisReasons: whatIfAnalysisReasons;
13708
+ policyApplies: boolean;
13709
+ }
13710
+
11612
13711
  /**
11613
13712
  * Contains properties and inherited properties for Win32 apps.
11614
13713
  */
@@ -14111,6 +16210,11 @@ namespace reference.`microsoft.graph` {
14111
16210
  appUrl: string | null;
14112
16211
  }
14113
16212
 
16213
+ @entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
16214
+ allowedIssuerSkis: string[];
16215
+ allowedPolicyOIDs: string[];
16216
+ }
16217
+
14114
16218
  /**
14115
16219
  * State of the action on the device
14116
16220
  */
@@ -14161,6 +16265,13 @@ namespace reference.`microsoft.graph` {
14161
16265
  servicePrincipal: 3,
14162
16266
  }
14163
16267
 
16268
+ enum advancedConfigState {
16269
+ default: 0,
16270
+ enabled: 1,
16271
+ disabled: 2,
16272
+ unknownFutureValue: 3,
16273
+ }
16274
+
14164
16275
  enum allowInvitesFrom {
14165
16276
  none: 0,
14166
16277
  adminsAndGuestInviters: 1,
@@ -14376,6 +16487,19 @@ namespace reference.`microsoft.graph` {
14376
16487
  desktop: 2,
14377
16488
  }
14378
16489
 
16490
+ enum appliedConditionalAccessPolicyResult {
16491
+ success: 0,
16492
+ failure: 1,
16493
+ notApplied: 2,
16494
+ notEnabled: 3,
16495
+ `unknown`: 4,
16496
+ unknownFutureValue: 5,
16497
+ reportOnlySuccess: 6,
16498
+ reportOnlyFailure: 7,
16499
+ reportOnlyNotApplied: 8,
16500
+ reportOnlyInterrupted: 9,
16501
+ }
16502
+
14379
16503
  /**
14380
16504
  * Possible values of the compliance app list.
14381
16505
  */
@@ -14469,12 +16593,121 @@ namespace reference.`microsoft.graph` {
14469
16593
  resource: 2,
14470
16594
  }
14471
16595
 
16596
+ enum attestationEnforcement {
16597
+ disabled: 0,
16598
+ registrationOnly: 1,
16599
+ unknownFutureValue: 2,
16600
+ }
16601
+
16602
+ enum attestationLevel {
16603
+ attested: 0,
16604
+ notAttested: 1,
16605
+ unknownFutureValue: 2,
16606
+ }
16607
+
16608
+ enum authenticationMethodFeature {
16609
+ ssprRegistered: 0,
16610
+ ssprEnabled: 1,
16611
+ ssprCapable: 2,
16612
+ passwordlessCapable: 3,
16613
+ mfaCapable: 4,
16614
+ unknownFutureValue: 5,
16615
+ }
16616
+
16617
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16618
+ enum authenticationMethodKeyStrength {
16619
+ normal: 0,
16620
+ weak: 1,
16621
+ `unknown`: 2,
16622
+ }
16623
+
16624
+ @graphFlags
16625
+ enum authenticationMethodModes {
16626
+ password: 1,
16627
+ voice: 2,
16628
+ hardwareOath: 4,
16629
+ softwareOath: 8,
16630
+ sms: 16,
16631
+ fido2: 32,
16632
+ windowsHelloForBusiness: 64,
16633
+ microsoftAuthenticatorPush: 128,
16634
+ deviceBasedPush: 256,
16635
+ temporaryAccessPassOneTime: 512,
16636
+ temporaryAccessPassMultiUse: 1024,
16637
+ email: 2048,
16638
+ x509CertificateSingleFactor: 4096,
16639
+ x509CertificateMultiFactor: 8192,
16640
+ federatedSingleFactor: 16384,
16641
+ federatedMultiFactor: 32768,
16642
+ unknownFutureValue: 65536,
16643
+ qrCodePin: 131072,
16644
+ }
16645
+
16646
+ enum authenticationMethodPlatform {
16647
+ `unknown`: 0,
16648
+ windows: 1,
16649
+ macOS: 2,
16650
+ iOS: 3,
16651
+ android: 4,
16652
+ linux: 5,
16653
+ unknownFutureValue: 6,
16654
+ }
16655
+
16656
+ enum authenticationMethodSignInState {
16657
+ notSupported: 0,
16658
+ notAllowedByPolicy: 1,
16659
+ notEnabled: 2,
16660
+ phoneNumberNotUnique: 3,
16661
+ ready: 4,
16662
+ notConfigured: 5,
16663
+ unknownFutureValue: 6,
16664
+ }
16665
+
16666
+ enum authenticationMethodsPolicyMigrationState {
16667
+ preMigration: 0,
16668
+ migrationInProgress: 1,
16669
+ migrationComplete: 2,
16670
+ unknownFutureValue: 3,
16671
+ }
16672
+
16673
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16674
+ enum authenticationMethodState {
16675
+ enabled: 0,
16676
+ disabled: 1,
16677
+ }
16678
+
16679
+ enum authenticationMethodTargetType {
16680
+ user: 0,
16681
+ group: 1,
16682
+ unknownFutureValue: 2,
16683
+ }
16684
+
16685
+ enum authenticationPhoneType {
16686
+ mobile: 0,
16687
+ alternateMobile: 1,
16688
+ office: 2,
16689
+ unknownFutureValue: 3,
16690
+ }
16691
+
14472
16692
  enum authenticationProtocol {
14473
16693
  wsFed: 0,
14474
16694
  saml: 1,
14475
16695
  unknownFutureValue: 2,
14476
16696
  }
14477
16697
 
16698
+ enum authenticationStrengthPolicyType {
16699
+ builtIn: 0,
16700
+ custom: 1,
16701
+ unknownFutureValue: 2,
16702
+ }
16703
+
16704
+ @graphFlags
16705
+ enum authenticationStrengthRequirements {
16706
+ none: 0,
16707
+ mfa: 1,
16708
+ unknownFutureValue: 2,
16709
+ }
16710
+
14478
16711
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14479
16712
  enum automaticRepliesStatus {
14480
16713
  disabled: 0,
@@ -14542,6 +16775,23 @@ namespace reference.`microsoft.graph` {
14542
16775
  unknownFutureValue: 7,
14543
16776
  }
14544
16777
 
16778
+ enum baseAuthenticationMethod {
16779
+ password: 1,
16780
+ voice: 2,
16781
+ hardwareOath: 3,
16782
+ softwareOath: 4,
16783
+ sms: 5,
16784
+ fido2: 6,
16785
+ windowsHelloForBusiness: 7,
16786
+ microsoftAuthenticator: 8,
16787
+ temporaryAccessPass: 9,
16788
+ email: 10,
16789
+ x509Certificate: 11,
16790
+ federation: 12,
16791
+ unknownFutureValue: 13,
16792
+ qrCodePin: 14,
16793
+ }
16794
+
14545
16795
  /**
14546
16796
  * BitLockerEncryptionMethod types
14547
16797
  */
@@ -14660,6 +16910,35 @@ namespace reference.`microsoft.graph` {
14660
16910
  deleted: 2,
14661
16911
  }
14662
16912
 
16913
+ enum cloudAppSecuritySessionControlType {
16914
+ mcasConfigured: 0,
16915
+ monitorOnly: 1,
16916
+ blockDownloads: 2,
16917
+ unknownFutureValue: 3,
16918
+ }
16919
+
16920
+ enum columnTypes {
16921
+ note: 0,
16922
+ text: 1,
16923
+ choice: 2,
16924
+ multichoice: 3,
16925
+ number: 4,
16926
+ currency: 5,
16927
+ dateTime: 6,
16928
+ lookup: 7,
16929
+ `boolean`: 8,
16930
+ user: 9,
16931
+ url: 10,
16932
+ calculated: 11,
16933
+ location: 12,
16934
+ geolocation: 13,
16935
+ term: 14,
16936
+ multiterm: 15,
16937
+ thumbnail: 16,
16938
+ approvalStatus: 17,
16939
+ unknownFutureValue: 18,
16940
+ }
16941
+
14663
16942
  /**
14664
16943
  * Compliance state.
14665
16944
  */
@@ -14695,16 +16974,95 @@ namespace reference.`microsoft.graph` {
14695
16974
  configManager: 255,
14696
16975
  }
14697
16976
 
14698
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
14699
- enum complianceStatus {
14700
- `unknown`: 0,
14701
- notApplicable: 1,
14702
- compliant: 2,
14703
- remediated: 3,
14704
- nonCompliant: 4,
14705
- error: 5,
14706
- conflict: 6,
14707
- notAssigned: 7,
16977
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16978
+ enum complianceStatus {
16979
+ `unknown`: 0,
16980
+ notApplicable: 1,
16981
+ compliant: 2,
16982
+ remediated: 3,
16983
+ nonCompliant: 4,
16984
+ error: 5,
16985
+ conflict: 6,
16986
+ notAssigned: 7,
16987
+ }
16988
+
16989
+ enum conditionalAccessClientApp {
16990
+ all: 0,
16991
+ browser: 1,
16992
+ mobileAppsAndDesktopClients: 2,
16993
+ exchangeActiveSync: 3,
16994
+ easSupported: 4,
16995
+ other: 5,
16996
+ unknownFutureValue: 6,
16997
+ }
16998
+
16999
+ enum conditionalAccessDevicePlatform {
17000
+ android: 0,
17001
+ iOS: 1,
17002
+ windows: 2,
17003
+ windowsPhone: 3,
17004
+ macOS: 4,
17005
+ all: 5,
17006
+ unknownFutureValue: 6,
17007
+ linux: 7,
17008
+ }
17009
+
17010
+ enum conditionalAccessExternalTenantsMembershipKind {
17011
+ all: 0,
17012
+ enumerated: 1,
17013
+ unknownFutureValue: 2,
17014
+ }
17015
+
17016
+ enum conditionalAccessGrantControl {
17017
+ block: 0,
17018
+ mfa: 1,
17019
+ compliantDevice: 2,
17020
+ domainJoinedDevice: 3,
17021
+ approvedApplication: 4,
17022
+ compliantApplication: 5,
17023
+ passwordChange: 6,
17024
+ unknownFutureValue: 7,
17025
+ riskRemediation: 8,
17026
+ }
17027
+
17028
+ @graphFlags
17029
+ enum conditionalAccessGuestOrExternalUserTypes {
17030
+ none: 0,
17031
+ internalGuest: 1,
17032
+ b2bCollaborationGuest: 2,
17033
+ b2bCollaborationMember: 4,
17034
+ b2bDirectConnectUser: 8,
17035
+ otherExternalUser: 16,
17036
+ serviceProvider: 32,
17037
+ unknownFutureValue: 64,
17038
+ }
17039
+
17040
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17041
+ enum conditionalAccessPolicyState {
17042
+ enabled: 0,
17043
+ disabled: 1,
17044
+ enabledForReportingButNotEnforced: 2,
17045
+ }
17046
+
17047
+ enum conditionalAccessStatus {
17048
+ success: 0,
17049
+ failure: 1,
17050
+ notApplied: 2,
17051
+ unknownFutureValue: 3,
17052
+ }
17053
+
17054
+ @graphFlags
17055
+ enum conditionalAccessTransferMethods {
17056
+ none: 0,
17057
+ deviceCodeFlow: 1,
17058
+ authenticationTransfer: 2,
17059
+ unknownFutureValue: 4,
17060
+ }
17061
+
17062
+ enum countryLookupMethodType {
17063
+ clientIpAddress: 0,
17064
+ authenticatorAppGps: 1,
17065
+ unknownFutureValue: 2,
14708
17066
  }
14709
17067
 
14710
17068
  enum crossTenantAccessPolicyTargetConfigurationAccessType {
@@ -15507,6 +17865,20 @@ namespace reference.`microsoft.graph` {
15507
17865
  unknownFutureValue: 3,
15508
17866
  }
15509
17867
 
17868
+ enum driveItemSourceApplication {
17869
+ teams: 0,
17870
+ yammer: 1,
17871
+ sharePoint: 2,
17872
+ oneDrive: 3,
17873
+ stream: 4,
17874
+ powerPoint: 5,
17875
+ office: 6,
17876
+ loki: 7,
17877
+ loop: 8,
17878
+ other: 9,
17879
+ unknownFutureValue: 10,
17880
+ }
17881
+
15510
17882
  /**
15511
17883
  * Possible values to specify which cookies are allowed in Microsoft Edge.
15512
17884
  */
@@ -15603,6 +17975,14 @@ namespace reference.`microsoft.graph` {
15603
17975
  notContacted: 4,
15604
17976
  }
15605
17977
 
17978
+ enum errorCorrectionLevel {
17979
+ l: 1,
17980
+ m: 2,
17981
+ q: 3,
17982
+ h: 4,
17983
+ unknownFutureValue: 5,
17984
+ }
17985
+
15606
17986
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15607
17987
  enum eventType {
15608
17988
  singleInstance: 0,
@@ -15627,6 +18007,20 @@ namespace reference.`microsoft.graph` {
15627
18007
  all: 2,
15628
18008
  }
15629
18009
 
18010
+ enum externalEmailOtpState {
18011
+ default: 0,
18012
+ enabled: 1,
18013
+ disabled: 2,
18014
+ unknownFutureValue: 3,
18015
+ }
18016
+
18017
+ enum featureTargetType {
18018
+ group: 0,
18019
+ administrativeUnit: 1,
18020
+ role: 2,
18021
+ unknownFutureValue: 3,
18022
+ }
18023
+
15630
18024
  enum federatedIdpMfaBehavior {
15631
18025
  acceptIfMfaDoneByFederatedIdp: 0,
15632
18026
  enforceMfaByFederatedIdp: 1,
@@ -15634,6 +18028,67 @@ namespace reference.`microsoft.graph` {
15634
18028
  unknownFutureValue: 3,
15635
18029
  }
15636
18030
 
18031
+ enum fido2RestrictionEnforcementType {
18032
+ allow: 0,
18033
+ block: 1,
18034
+ unknownFutureValue: 2,
18035
+ }
18036
+
18037
+ enum fileStorageContainerBillingClassification {
18038
+ standard: 0,
18039
+ trial: 1,
18040
+ directToCustomer: 2,
18041
+ unknownFutureValue: 3,
18042
+ }
18043
+
18044
+ enum fileStorageContainerBillingStatus {
18045
+ invalid: 0,
18046
+ valid: 1,
18047
+ unknownFutureValue: 2,
18048
+ }
18049
+
18050
+ enum fileStorageContainerStatus {
18051
+ inactive: 0,
18052
+ active: 1,
18053
+ unknownFutureValue: 2,
18054
+ }
18055
+
18056
+ enum fileStorageContainerTypeAppPermission {
18057
+ none: 0,
18058
+ readContent: 1,
18059
+ writeContent: 2,
18060
+ manageContent: 3,
18061
+ create: 4,
18062
+ delete: 5,
18063
+ read: 6,
18064
+ write: 7,
18065
+ enumeratePermissions: 8,
18066
+ addPermissions: 9,
18067
+ updatePermissions: 10,
18068
+ deletePermissions: 11,
18069
+ deleteOwnPermission: 12,
18070
+ managePermissions: 13,
18071
+ full: 14,
18072
+ unknownFutureValue: 15,
18073
+ }
18074
+
18075
+ @graphFlags
18076
+ enum fileStorageContainerTypeSettingsOverride {
18077
+ urlTemplate: 0,
18078
+ isDiscoverabilityEnabled: 1,
18079
+ isSearchEnabled: 2,
18080
+ isItemVersioningEnabled: 3,
18081
+ itemMajorVersionLimit: 4,
18082
+ maxStoragePerContainerInBytes: 5,
18083
+ unknownFutureValue: 6,
18084
+ }
18085
+
18086
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
18087
+ enum filterMode {
18088
+ include: 0,
18089
+ exclude: 1,
18090
+ }
18091
+
15637
18092
  /**
15638
18093
  * Possible values for firewallCertificateRevocationListCheckMethod
15639
18094
  */
@@ -15720,6 +18175,38 @@ namespace reference.`microsoft.graph` {
15720
18175
  workingElsewhere: 4,
15721
18176
  }
15722
18177
 
18178
+ enum groupAccessType {
18179
+ none: 0,
18180
+ private: 1,
18181
+ secret: 2,
18182
+ public: 3,
18183
+ unknownFutureValue: 4,
18184
+ }
18185
+
18186
+ enum groupType {
18187
+ unifiedGroups: 0,
18188
+ azureAD: 1,
18189
+ unknownFutureValue: 2,
18190
+ }
18191
+
18192
+ enum horizontalSectionLayoutType {
18193
+ none: 0,
18194
+ oneColumn: 1,
18195
+ twoColumns: 2,
18196
+ threeColumns: 3,
18197
+ oneThirdLeftColumn: 4,
18198
+ oneThirdRightColumn: 5,
18199
+ fullWidth: 6,
18200
+ unknownFutureValue: 7,
18201
+ }
18202
+
18203
+ enum imageTaggingChoice {
18204
+ disabled: 0,
18205
+ basic: 1,
18206
+ enhanced: 2,
18207
+ unknownFutureValue: 3,
18208
+ }
18209
+
15723
18210
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15724
18211
  enum importance {
15725
18212
  low: 0,
@@ -15771,12 +18258,34 @@ namespace reference.`microsoft.graph` {
15771
18258
  error: 3,
15772
18259
  }
15773
18260
 
18261
+ enum includedUserRoles {
18262
+ all: 0,
18263
+ privilegedAdmin: 1,
18264
+ admin: 2,
18265
+ user: 3,
18266
+ unknownFutureValue: 4,
18267
+ }
18268
+
18269
+ enum includedUserTypes {
18270
+ all: 0,
18271
+ member: 1,
18272
+ guest: 2,
18273
+ unknownFutureValue: 3,
18274
+ }
18275
+
15774
18276
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15775
18277
  enum inferenceClassificationType {
15776
18278
  focused: 0,
15777
18279
  other: 1,
15778
18280
  }
15779
18281
 
18282
+ enum initiatorType {
18283
+ user: 0,
18284
+ application: 1,
18285
+ system: 2,
18286
+ unknownFutureValue: 3,
18287
+ }
18288
+
15780
18289
  /**
15781
18290
  * Possible values for the install intent chosen by the admin.
15782
18291
  */
@@ -15935,6 +18444,14 @@ namespace reference.`microsoft.graph` {
15935
18444
  bing: 4,
15936
18445
  }
15937
18446
 
18447
+ enum longRunningOperationStatus {
18448
+ notStarted: 0,
18449
+ running: 1,
18450
+ succeeded: 2,
18451
+ failed: 3,
18452
+ unknownFutureValue: 4,
18453
+ }
18454
+
15938
18455
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
15939
18456
  @graphFlags
15940
18457
  enum mailTipsType {
@@ -16308,6 +18825,19 @@ namespace reference.`microsoft.graph` {
16308
18825
  office365: 3,
16309
18826
  }
16310
18827
 
18828
+ enum mediaSourceContentCategory {
18829
+ meeting: 0,
18830
+ liveStream: 1,
18831
+ presentation: 2,
18832
+ screenRecording: 3,
18833
+ story: 4,
18834
+ profile: 5,
18835
+ chat: 6,
18836
+ note: 7,
18837
+ comment: 8,
18838
+ unknownFutureValue: 9,
18839
+ }
18840
+
16311
18841
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16312
18842
  enum meetingMessageType {
16313
18843
  none: 0,
@@ -16344,6 +18874,13 @@ namespace reference.`microsoft.graph` {
16344
18874
  review: 10,
16345
18875
  }
16346
18876
 
18877
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
18878
+ enum microsoftAuthenticatorAuthenticationMode {
18879
+ deviceBasedPush: 0,
18880
+ push: 1,
18881
+ any: 2,
18882
+ }
18883
+
16347
18884
  /**
16348
18885
  * The enum to specify the channels for Microsoft Edge apps.
16349
18886
  */
@@ -16624,6 +19161,27 @@ namespace reference.`microsoft.graph` {
16624
19161
  unknownFutureValue: 4,
16625
19162
  }
16626
19163
 
19164
+ enum operationResult {
19165
+ success: 0,
19166
+ failure: 1,
19167
+ timeout: 2,
19168
+ unknownFutureValue: 3,
19169
+ }
19170
+
19171
+ enum pageLayoutType {
19172
+ microsoftReserved: 0,
19173
+ article: 1,
19174
+ home: 2,
19175
+ unknownFutureValue: 3,
19176
+ }
19177
+
19178
+ enum pagePromotionType {
19179
+ microsoftReserved: 0,
19180
+ page: 1,
19181
+ newsPost: 2,
19182
+ unknownFutureValue: 3,
19183
+ }
19184
+
16627
19185
  enum partnerTenantType {
16628
19186
  microsoftSupport: 1,
16629
19187
  syndicatePartner: 2,
@@ -16634,6 +19192,19 @@ namespace reference.`microsoft.graph` {
16634
19192
  unknownFutureValue: 7,
16635
19193
  }
16636
19194
 
19195
+ enum passkeyType {
19196
+ deviceBound: 0,
19197
+ synced: 1,
19198
+ unknownFutureValue: 2,
19199
+ }
19200
+
19201
+ @graphFlags
19202
+ enum passkeyTypes {
19203
+ deviceBound: 1,
19204
+ synced: 2,
19205
+ unknownFutureValue: 4,
19206
+ }
19207
+
16637
19208
  enum permissionClassificationType {
16638
19209
  low: 1,
16639
19210
  medium: 2,
@@ -16648,6 +19219,12 @@ namespace reference.`microsoft.graph` {
16648
19219
  application: 3,
16649
19220
  }
16650
19221
 
19222
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
19223
+ enum persistentBrowserSessionMode {
19224
+ always: 0,
19225
+ `never`: 1,
19226
+ }
19227
+
16651
19228
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16652
19229
  enum phoneType {
16653
19230
  home: 0,
@@ -16670,6 +19247,21 @@ namespace reference.`microsoft.graph` {
16670
19247
  other: 3,
16671
19248
  }
16672
19249
 
19250
+ enum plannerContainerType {
19251
+ group: 1,
19252
+ unknownFutureValue: 2,
19253
+ roster: 3,
19254
+ }
19255
+
19256
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
19257
+ enum plannerPreviewType {
19258
+ automatic: 0,
19259
+ noPreview: 1,
19260
+ checklist: 2,
19261
+ description: 3,
19262
+ reference: 4,
19263
+ }
19264
+
16673
19265
  /**
16674
19266
  * Supported platform types for policies.
16675
19267
  */
@@ -16739,6 +19331,41 @@ namespace reference.`microsoft.graph` {
16739
19331
  unknownFutureValue: 3,
16740
19332
  }
16741
19333
 
19334
+ enum provisioningAction {
19335
+ other: 0,
19336
+ create: 1,
19337
+ delete: 2,
19338
+ disable: 3,
19339
+ update: 4,
19340
+ stagedDelete: 5,
19341
+ unknownFutureValue: 6,
19342
+ }
19343
+
19344
+ enum provisioningResult {
19345
+ success: 0,
19346
+ failure: 1,
19347
+ skipped: 2,
19348
+ warning: 3,
19349
+ unknownFutureValue: 4,
19350
+ }
19351
+
19352
+ enum provisioningStatusErrorCategory {
19353
+ failure: 0,
19354
+ nonServiceFailure: 1,
19355
+ success: 2,
19356
+ unknownFutureValue: 3,
19357
+ }
19358
+
19359
+ enum provisioningStepType {
19360
+ `import`: 0,
19361
+ scoping: 1,
19362
+ matching: 2,
19363
+ processing: 3,
19364
+ referenceResolution: 4,
19365
+ export: 5,
19366
+ unknownFutureValue: 6,
19367
+ }
19368
+
16742
19369
  /**
16743
19370
  * Apps rating as in media content
16744
19371
  */
@@ -17496,6 +20123,24 @@ namespace reference.`microsoft.graph` {
17496
20123
  unknownFutureValue: 4,
17497
20124
  }
17498
20125
 
20126
+ enum riskEventType {
20127
+ unlikelyTravel: 0,
20128
+ anonymizedIPAddress: 1,
20129
+ maliciousIPAddress: 2,
20130
+ unfamiliarFeatures: 3,
20131
+ malwareInfectedIPAddress: 4,
20132
+ suspiciousIPAddress: 5,
20133
+ leakedCredentials: 6,
20134
+ investigationsThreatIntelligence: 7,
20135
+ generic: 8,
20136
+ adminConfirmedUserCompromised: 9,
20137
+ mcasImpossibleTravel: 10,
20138
+ mcasSuspiciousInboxManipulationRules: 11,
20139
+ investigationsThreatIntelligenceSigninLinked: 12,
20140
+ maliciousIPAddressValidCredentialsBlockedIP: 13,
20141
+ unknownFutureValue: 14,
20142
+ }
20143
+
17499
20144
  enum riskLevel {
17500
20145
  low: 0,
17501
20146
  medium: 1,
@@ -17515,6 +20160,16 @@ namespace reference.`microsoft.graph` {
17515
20160
  unknownFutureValue: 6,
17516
20161
  }
17517
20162
 
20163
+ enum rootDomains {
20164
+ none: 0,
20165
+ all: 1,
20166
+ allFederated: 2,
20167
+ allManaged: 3,
20168
+ enumerated: 4,
20169
+ allManagedAndEnumeratedFederated: 5,
20170
+ unknownFutureValue: 6,
20171
+ }
20172
+
17518
20173
  /**
17519
20174
  * Indicates the type of execution context the app runs in.
17520
20175
  */
@@ -17557,6 +20212,14 @@ namespace reference.`microsoft.graph` {
17557
20212
  unknownFutureValue: 4,
17558
20213
  }
17559
20214
 
20215
+ enum sectionEmphasisType {
20216
+ none: 0,
20217
+ neutral: 1,
20218
+ soft: 2,
20219
+ strong: 3,
20220
+ unknownFutureValue: 4,
20221
+ }
20222
+
17560
20223
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17561
20224
  enum selectionLikelihoodInfo {
17562
20225
  notSpecified: 0,
@@ -17571,6 +20234,13 @@ namespace reference.`microsoft.graph` {
17571
20234
  confidential: 3,
17572
20235
  }
17573
20236
 
20237
+ enum sensitivityLabelAssignmentMethod {
20238
+ standard: 0,
20239
+ privileged: 1,
20240
+ auto: 2,
20241
+ unknownFutureValue: 3,
20242
+ }
20243
+
17574
20244
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17575
20245
  enum settingSourceType {
17576
20246
  deviceConfiguration: 0,
@@ -17612,6 +20282,81 @@ namespace reference.`microsoft.graph` {
17612
20282
  domain: 2,
17613
20283
  }
17614
20284
 
20285
+ enum sharePointMigrationJobErrorLevel {
20286
+ important: 0,
20287
+ warning: 1,
20288
+ error: 2,
20289
+ fatalError: 3,
20290
+ unknownFutureValue: 4,
20291
+ }
20292
+
20293
+ enum sharePointMigrationObjectType {
20294
+ site: 0,
20295
+ web: 1,
20296
+ folder: 2,
20297
+ list: 3,
20298
+ listItem: 4,
20299
+ file: 5,
20300
+ alert: 6,
20301
+ sharedWithObject: 7,
20302
+ invalid: 8,
20303
+ unknownFutureValue: 9,
20304
+ }
20305
+
20306
+ enum sharingCapabilities {
20307
+ disabled: 0,
20308
+ externalUserSharingOnly: 1,
20309
+ externalUserAndGuestSharing: 2,
20310
+ existingExternalUserSharingOnly: 3,
20311
+ unknownFutureValue: 4,
20312
+ }
20313
+
20314
+ enum sharingDomainRestrictionMode {
20315
+ none: 0,
20316
+ allowList: 1,
20317
+ blockList: 2,
20318
+ unknownFutureValue: 3,
20319
+ }
20320
+
20321
+ enum signInFrequencyAuthenticationType {
20322
+ primaryAndSecondaryAuthentication: 0,
20323
+ secondaryAuthentication: 1,
20324
+ unknownFutureValue: 2,
20325
+ }
20326
+
20327
+ enum signInFrequencyInterval {
20328
+ timeBased: 0,
20329
+ everyTime: 1,
20330
+ unknownFutureValue: 2,
20331
+ }
20332
+
20333
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
20334
+ enum signinFrequencyType {
20335
+ days: 0,
20336
+ hours: 1,
20337
+ }
20338
+
20339
+ enum signInUserType {
20340
+ member: 0,
20341
+ guest: 1,
20342
+ unknownFutureValue: 3,
20343
+ }
20344
+
20345
+ enum siteArchiveStatus {
20346
+ recentlyArchived: 0,
20347
+ fullyArchived: 1,
20348
+ reactivating: 2,
20349
+ unknownFutureValue: 3,
20350
+ }
20351
+
20352
+ enum siteLockState {
20353
+ unlocked: 0,
20354
+ lockedReadOnly: 1,
20355
+ lockedNoAccess: 2,
20356
+ lockedNoAdditions: 3,
20357
+ unknownFutureValue: 4,
20358
+ }
20359
+
17615
20360
  /**
17616
20361
  * Possible values for site security level.
17617
20362
  */
@@ -17695,12 +20440,37 @@ namespace reference.`microsoft.graph` {
17695
20440
  allApps: 4,
17696
20441
  }
17697
20442
 
20443
+ @graphFlags
20444
+ enum templateScenarios {
20445
+ new: 0,
20446
+ secureFoundation: 1,
20447
+ zeroTrust: 2,
20448
+ remoteWork: 4,
20449
+ protectAdmins: 8,
20450
+ emergingThreats: 16,
20451
+ unknownFutureValue: 32,
20452
+ }
20453
+
17698
20454
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
17699
20455
  enum timeZoneStandard {
17700
20456
  windows: 0,
17701
20457
  iana: 1,
17702
20458
  }
17703
20459
 
20460
+ enum titleAreaLayoutType {
20461
+ imageAndTitle: 0,
20462
+ plain: 1,
20463
+ colorBlock: 2,
20464
+ overlap: 3,
20465
+ unknownFutureValue: 4,
20466
+ }
20467
+
20468
+ enum titleAreaTextAlignmentType {
20469
+ left: 0,
20470
+ center: 1,
20471
+ unknownFutureValue: 2,
20472
+ }
20473
+
17704
20474
  enum tokenIssuerType {
17705
20475
  AzureAD: 0,
17706
20476
  ADFederationServices: 1,
@@ -17710,6 +20480,23 @@ namespace reference.`microsoft.graph` {
17710
20480
  NPSExtension: 5,
17711
20481
  }
17712
20482
 
20483
+ enum userAction {
20484
+ registerSecurityInformation: 0,
20485
+ registerOrJoinDevices: 1,
20486
+ unknownFutureValue: 2,
20487
+ }
20488
+
20489
+ enum userDefaultAuthenticationMethod {
20490
+ push: 0,
20491
+ oath: 1,
20492
+ voiceMobile: 2,
20493
+ voiceAlternateMobile: 3,
20494
+ voiceOffice: 4,
20495
+ sms: 5,
20496
+ none: 6,
20497
+ unknownFutureValue: 7,
20498
+ }
20499
+
17713
20500
  enum userExperienceAnalyticsHealthState {
17714
20501
  /**
17715
20502
  * Indicates that the health state is unknown.
@@ -18031,6 +20818,31 @@ namespace reference.`microsoft.graph` {
18031
20818
  showOrganizerAndTimeAndSubject: 2,
18032
20819
  }
18033
20820
 
20821
+ @graphFlags
20822
+ enum whatIfAnalysisReasons {
20823
+ notSet: 0,
20824
+ notEnoughInformation: 1,
20825
+ invalidCondition: 2,
20826
+ users: 4,
20827
+ workloadIdentities: 8,
20828
+ application: 16,
20829
+ userActions: 32,
20830
+ authenticationContext: 64,
20831
+ devicePlatform: 128,
20832
+ devices: 256,
20833
+ clientApps: 512,
20834
+ location: 1024,
20835
+ signInRisk: 2048,
20836
+ emptyPolicy: 4096,
20837
+ invalidPolicy: 8192,
20838
+ policyNotEnabled: 16384,
20839
+ userRisk: 32768,
20840
+ time: 65536,
20841
+ insiderRisk: 131072,
20842
+ authenticationFlow: 262144,
20843
+ unknownFutureValue: 524288,
20844
+ }
20845
+
18034
20846
  /**
18035
20847
  * Contains value for delivery optimization priority.
18036
20848
  */
@@ -19229,4 +22041,117 @@ namespace reference.`microsoft.graph` {
19229
22041
  unknownFutureValue: 2,
19230
22042
  }
19231
22043
 
22044
+ enum x509CertificateAffinityLevel {
22045
+ low: 0,
22046
+ high: 1,
22047
+ unknownFutureValue: 2,
22048
+ }
22049
+
22050
+ enum x509CertificateAuthenticationMode {
22051
+ x509CertificateSingleFactor: 0,
22052
+ x509CertificateMultiFactor: 1,
22053
+ unknownFutureValue: 2,
22054
+ }
22055
+
22056
+ enum x509CertificateIssuerHintsState {
22057
+ disabled: 0,
22058
+ enabled: 1,
22059
+ unknownFutureValue: 2,
22060
+ }
22061
+
22062
+ enum x509CertificateRuleType {
22063
+ issuerSubject: 0,
22064
+ policyOID: 1,
22065
+ unknownFutureValue: 2,
22066
+ issuerSubjectAndPolicyOID: 3,
22067
+ }
22068
+
22069
+ }
22070
+ @publicNamespace("microsoft.graph.security")
22071
+ namespace reference.`microsoft.graph.security` {
22072
+ enum behaviorDuringRetentionPeriod {
22073
+ doNotRetain: 0,
22074
+ retain: 1,
22075
+ retainAsRecord: 2,
22076
+ retainAsRegulatoryRecord: 3,
22077
+ unknownFutureValue: 4,
22078
+ }
22079
+
22080
+ }
22081
+ @publicNamespace("microsoft.graph.termstore")
22082
+ namespace reference.`microsoft.graph.termStore` {
22083
+ @complex model localizedDescription {
22084
+ description: string | null;
22085
+ languageTag: string | null;
22086
+ }
22087
+
22088
+ @complex model localizedLabel {
22089
+ isDefault: boolean | null;
22090
+ languageTag: string | null;
22091
+ name: string | null;
22092
+ }
22093
+
22094
+ @complex model localizedName {
22095
+ languageTag: string | null;
22096
+ name: string | null;
22097
+ }
22098
+
22099
+ @entity model group extends reference.`microsoft.graph`.entity {
22100
+ @computed createdDateTime: offsetDateTime | null;
22101
+ description: string | null;
22102
+ displayName: string | null;
22103
+ parentSiteId: string | null;
22104
+ scope: termGroupScope | null;
22105
+ @contains sets: set[];
22106
+ }
22107
+
22108
+ @entity model relation extends reference.`microsoft.graph`.entity {
22109
+ relationship: relationType | null;
22110
+ @references fromTerm: term | null;
22111
+ @references set: set | null;
22112
+ @references toTerm: term | null;
22113
+ }
22114
+
22115
+ @entity model set extends reference.`microsoft.graph`.entity {
22116
+ @computed createdDateTime: offsetDateTime | null;
22117
+ description: string | null;
22118
+ localizedNames: localizedName[] | null;
22119
+ properties: reference.`microsoft.graph`.keyValue[] | null;
22120
+ @contains children: term[];
22121
+ @contains parentGroup: group;
22122
+ @contains relations: relation[];
22123
+ @contains terms: term[];
22124
+ }
22125
+
22126
+ @entity model store extends reference.`microsoft.graph`.entity {
22127
+ defaultLanguageTag: string;
22128
+ languageTags: string[];
22129
+ @contains groups: group[];
22130
+ @contains sets: set[];
22131
+ }
22132
+
22133
+ @entity model term extends reference.`microsoft.graph`.entity {
22134
+ @computed createdDateTime: offsetDateTime | null;
22135
+ descriptions: localizedDescription[] | null;
22136
+ labels: localizedLabel[] | null;
22137
+ @computed lastModifiedDateTime: offsetDateTime | null;
22138
+ properties: reference.`microsoft.graph`.keyValue[] | null;
22139
+ @contains children: term[];
22140
+ @contains relations: relation[];
22141
+ @references set: set | null;
22142
+ }
22143
+
22144
+ enum relationType {
22145
+ pin: 0,
22146
+ reuse: 1,
22147
+ unknownFutureValue: 2,
22148
+ }
22149
+
22150
+ enum termGroupScope {
22151
+ global: 0,
22152
+ system: 1,
22153
+ siteCollection: 2,
22154
+ unknownFutureValue: 3,
22155
+ }
22156
+
19232
22157
  }