@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5

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,8 +7,13 @@ using MsGraph;
7
7
  scalar binary; //TODO: Enables support for Edm.Binary
8
8
 
9
9
 
10
+ @deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
11
+ @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
10
12
  @privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
13
+ @deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
14
+ @deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
11
15
  @deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
16
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
12
17
  @deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
13
18
  @publicNamespace("microsoft.graph")
14
19
  namespace reference.`microsoft.graph` {
@@ -68,6 +73,9 @@ namespace reference.`microsoft.graph` {
68
73
  @complex model allAllowedScopes extends inheritableScopes {
69
74
  }
70
75
 
76
+ @complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
77
+ }
78
+
71
79
  /**
72
80
  * Represents an assignment to all managed devices in the tenant.
73
81
  */
@@ -359,6 +367,16 @@ namespace reference.`microsoft.graph` {
359
367
  selections: keyValuePair[] | null;
360
368
  }
361
369
 
370
+ /**
371
+ * The request parameter for requesting Android LOB app configuration schema.
372
+ */
373
+ @complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
374
+ /**
375
+ * The application policy ID of the Android LOB app
376
+ */
377
+ appId: string | null;
378
+ }
379
+
362
380
  /**
363
381
  * Contains properties used to assign an Android Managed Store mobile app to a group.
364
382
  */
@@ -559,6 +577,120 @@ namespace reference.`microsoft.graph` {
559
577
  resourceSpecificApplicationPermissions: resourceSpecificPermission[];
560
578
  }
561
579
 
580
+ /**
581
+ * Boolean configuration item inside an Android application's custom configuration schema.
582
+ */
583
+ @complex model appConfigurationSchemaItemBooleanType extends appConfigurationSchemaItemType {
584
+ /**
585
+ * Default value, if specified by the app developer
586
+ */
587
+ defaultValue: boolean | null;
588
+ }
589
+
590
+ /**
591
+ * Bundle array configuration item inside an Android application's custom configuration schema.
592
+ */
593
+ @complex model appConfigurationSchemaItemBundleArray extends appConfigurationSchemaItemType {
594
+ }
595
+
596
+ /**
597
+ * Bundle configuration item inside an Android application's custom configuration schema.
598
+ */
599
+ @complex model appConfigurationSchemaItemBundleType extends appConfigurationSchemaItemType {
600
+ }
601
+
602
+ /**
603
+ * Choice configuration item inside an Android application's custom configuration schema.
604
+ */
605
+ @complex model appConfigurationSchemaItemChoiceType extends appConfigurationSchemaItemType {
606
+ /**
607
+ * Default value, if specified by the app developer
608
+ */
609
+ defaultValue: string | null;
610
+ /**
611
+ * List of human readable name/value pairs for the valid values that can be set for this item
612
+ */
613
+ selections: keyValuePair[] | null;
614
+ }
615
+
616
+ /**
617
+ * Hidden configuration item inside an Android application's custom configuration schema.
618
+ */
619
+ @complex model appConfigurationSchemaItemHiddenType extends appConfigurationSchemaItemType {
620
+ /**
621
+ * Default value, if specified by the app developer
622
+ */
623
+ defaultValue: string | null;
624
+ }
625
+
626
+ /**
627
+ * Integer configuration item inside an Android application's custom configuration schema.
628
+ */
629
+ @complex model appConfigurationSchemaItemIntegerType extends appConfigurationSchemaItemType {
630
+ /**
631
+ * Default value, if specified by the app developer. Valid values 0 to 2147483647
632
+ */
633
+ defaultValue: int32 | null;
634
+ }
635
+
636
+ /**
637
+ * Multiselect configuration item inside an Android application's custom configuration schema.
638
+ */
639
+ @complex model appConfigurationSchemaItemMultiselectType extends appConfigurationSchemaItemType {
640
+ /**
641
+ * Default value, if specified by the app developer
642
+ */
643
+ defaultValue: string[] | null;
644
+ /**
645
+ * List of human readable name/value pairs for the valid values that can be set for this item
646
+ */
647
+ selections: keyValuePair[] | null;
648
+ }
649
+
650
+ /**
651
+ * String configuration item inside an Android application's custom configuration schema.
652
+ */
653
+ @complex model appConfigurationSchemaItemStringType extends appConfigurationSchemaItemType {
654
+ /**
655
+ * Default value, if specified by the app developer
656
+ */
657
+ defaultValue: string | null;
658
+ }
659
+
660
+ /**
661
+ * Single configuration item inside an Android application's configuration schema.
662
+ */
663
+ @abstract
664
+ @complex model appConfigurationSchemaItemType {
665
+ /**
666
+ * Description of what the item controls within the application
667
+ */
668
+ description: string | null;
669
+ /**
670
+ * Human readable name
671
+ */
672
+ displayName: string | null;
673
+ /**
674
+ * Unique index the application uses to maintain nested schema items. Valid values 0 to 2147483647
675
+ */
676
+ index: int32;
677
+ /**
678
+ * Index of parent schema item to track nested schema items. Valid values 0 to 2147483647
679
+ */
680
+ parentIndex: int32 | null;
681
+ /**
682
+ * Unique key the application uses to identify the item
683
+ */
684
+ schemaItemKey: string | null;
685
+ }
686
+
687
+ /**
688
+ * Base type for the request parameters that identifies the requested app configuration schema.
689
+ */
690
+ @abstract
691
+ @complex model appConfigurationSchemaRequestDetail {
692
+ }
693
+
562
694
  /**
563
695
  * Contains properties for App configuration setting item.
564
696
  */
@@ -700,7 +832,7 @@ namespace reference.`microsoft.graph` {
700
832
  }
701
833
 
702
834
  @complex model appManagementPolicyActorExemptions {
703
- @contains customSecurityAttributes: customSecurityAttributeExemption[];
835
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
704
836
  }
705
837
 
706
838
  @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
@@ -914,6 +1046,11 @@ namespace reference.`microsoft.graph` {
914
1046
  status: responseStatus | null;
915
1047
  }
916
1048
 
1049
+ @complex model attendeeAvailability {
1050
+ attendee: attendeeBase | null;
1051
+ availability: freeBusyStatus | null;
1052
+ }
1053
+
917
1054
  @complex model attendeeBase extends recipient {
918
1055
  type: attendeeType | null;
919
1056
  }
@@ -1029,6 +1166,26 @@ namespace reference.`microsoft.graph` {
1029
1166
  transferMethod: conditionalAccessTransferMethods | null;
1030
1167
  }
1031
1168
 
1169
+ @complex model authenticationMethodFeatureConfiguration {
1170
+ excludeTarget: featureTarget | null;
1171
+ includeTarget: featureTarget | null;
1172
+ state: advancedConfigState | null;
1173
+ }
1174
+
1175
+ @complex model authenticationMethodsRegistrationCampaign {
1176
+ enforceRegistrationAfterAllowedSnoozes: boolean | null;
1177
+ excludeTargets: excludeTarget[];
1178
+ includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
1179
+ snoozeDurationInDays: int32;
1180
+ state: advancedConfigState;
1181
+ }
1182
+
1183
+ @complex model authenticationMethodsRegistrationCampaignIncludeTarget {
1184
+ id: string;
1185
+ targetedAuthenticationMethod: string | null;
1186
+ targetType: authenticationMethodTargetType;
1187
+ }
1188
+
1032
1189
  @complex model authorizationInfo {
1033
1190
  certificateUserIds: string[] | null;
1034
1191
  }
@@ -1049,6 +1206,17 @@ namespace reference.`microsoft.graph` {
1049
1206
  status: automaticRepliesStatus | null;
1050
1207
  }
1051
1208
 
1209
+ @complex model azureADJoinPolicy {
1210
+ allowedToJoin: deviceRegistrationMembership | null;
1211
+ isAdminConfigurable: boolean | null;
1212
+ localAdmins: localAdminSettings | null;
1213
+ }
1214
+
1215
+ @complex model azureADRegistrationPolicy {
1216
+ allowedToRegister: deviceRegistrationMembership | null;
1217
+ isAdminConfigurable: boolean | null;
1218
+ }
1219
+
1052
1220
  /**
1053
1221
  * BitLocker Fixed Drive Policies.
1054
1222
  */
@@ -1297,6 +1465,32 @@ namespace reference.`microsoft.graph` {
1297
1465
  deviceAssignmentItems: deviceAssignmentItem[] | null;
1298
1466
  }
1299
1467
 
1468
+ @complex model changeNotification {
1469
+ changeType: changeType;
1470
+ clientState: string | null;
1471
+ encryptedContent: changeNotificationEncryptedContent | null;
1472
+ id: string | null;
1473
+ lifecycleEvent: lifecycleEventType | null;
1474
+ resource: string;
1475
+ resourceData: resourceData | null;
1476
+ subscriptionExpirationDateTime: offsetDateTime;
1477
+ subscriptionId: guid;
1478
+ tenantId: guid;
1479
+ }
1480
+
1481
+ @complex model changeNotificationCollection {
1482
+ validationTokens: string[] | null;
1483
+ value: changeNotification[];
1484
+ }
1485
+
1486
+ @complex model changeNotificationEncryptedContent {
1487
+ data: string;
1488
+ dataKey: string;
1489
+ dataSignature: string;
1490
+ encryptionCertificateId: string;
1491
+ encryptionCertificateThumbprint: string;
1492
+ }
1493
+
1300
1494
  /**
1301
1495
  * Represents a property of the ChromeOS device.
1302
1496
  */
@@ -1323,6 +1517,16 @@ namespace reference.`microsoft.graph` {
1323
1517
  cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
1324
1518
  }
1325
1519
 
1520
+ /**
1521
+ * Complex type that represents usage details associated with a certification authority version. This type provides reporting data such as the number of leaf certificates issued during specific lifecycle phases.
1522
+ */
1523
+ @complex model cloudCertificationAuthorityVersionUsage {
1524
+ /**
1525
+ * The number of leaf certificates issued by the certification authority version when it was in the staged status. Only applicable for staged certification authority versions. Nullable. Read-only.
1526
+ */
1527
+ issuedStagedLeafCertificateCount: int32 | null;
1528
+ }
1529
+
1326
1530
  @complex model cloudRealtimeCommunicationInfo {
1327
1531
  isSipEnabled: boolean | null;
1328
1532
  }
@@ -1396,6 +1600,19 @@ namespace reference.`microsoft.graph` {
1396
1600
  scheduledForEnrollmentCount: int32;
1397
1601
  }
1398
1602
 
1603
+ @complex model companyDetail {
1604
+ address: physicalAddress | null;
1605
+ companyCode: string | null;
1606
+ costCenter: string | null;
1607
+ department: string | null;
1608
+ displayName: string | null;
1609
+ division: string | null;
1610
+ officeLocation: string | null;
1611
+ pronunciation: string | null;
1612
+ secondaryDepartment: string | null;
1613
+ webUrl: string | null;
1614
+ }
1615
+
1399
1616
  /**
1400
1617
  * Blocked actions on the company portal as per platform and device ownership types
1401
1618
  */
@@ -1717,6 +1934,13 @@ namespace reference.`microsoft.graph` {
1717
1934
  registrationCampaignRelativeUrl: string | null;
1718
1935
  }
1719
1936
 
1937
+ @complex model contentSensitivityLabelAssignment {
1938
+ assignmentMethod: sensitivityLabelAssignmentMethod;
1939
+ justificationText: string | null;
1940
+ sensitivityLabelId: string | null;
1941
+ tenantId: string | null;
1942
+ }
1943
+
1720
1944
  @complex model continuousAccessEvaluationSessionControl {
1721
1945
  mode: continuousAccessEvaluationMode | null;
1722
1946
  }
@@ -1734,6 +1958,14 @@ namespace reference.`microsoft.graph` {
1734
1958
  targetId: string | null;
1735
1959
  }
1736
1960
 
1961
+ @complex model corsConfiguration {
1962
+ allowedHeaders: string[] | null;
1963
+ allowedMethods: string[] | null;
1964
+ allowedOrigins: string[] | null;
1965
+ maxAgeInSeconds: int32 | null;
1966
+ resource: string | null;
1967
+ }
1968
+
1737
1969
  /**
1738
1970
  * Remote help - response we provide back to the helper after successfully creating an ACS session
1739
1971
  */
@@ -1839,6 +2071,16 @@ namespace reference.`microsoft.graph` {
1839
2071
  applicationRestrictions: customAppManagementApplicationConfiguration | null;
1840
2072
  }
1841
2073
 
2074
+ @abstract
2075
+ @complex model customSecurityAttributeExemption {
2076
+ id: string;
2077
+ operator: customSecurityAttributeComparisonOperator;
2078
+ }
2079
+
2080
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
2081
+ value: string | null;
2082
+ }
2083
+
1842
2084
  @open
1843
2085
  @complex model customSecurityAttributeValue {
1844
2086
  }
@@ -2238,11 +2480,11 @@ namespace reference.`microsoft.graph` {
2238
2480
 
2239
2481
  @complex model deviceCompliancePolicyScript {
2240
2482
  /**
2241
- * Device compliance script Id.
2483
+ * Identifier of the device compliance script used to evaluate custom compliance. When deviceCompliancePolicyScript is set, this identifies which script to run. Default is null, when set to default it is not evaluated.
2242
2484
  */
2243
2485
  deviceComplianceScriptId: string | null;
2244
2486
  /**
2245
- * Json of the rules.
2487
+ * base64-encoded JSON rules content that defines compliance rules to evaluate on the device. When deviceCompliancePolicyScript is set, the rule conditions defined in the JSON are evaluated to determine compliance and the device is marked noncompliant when any rule evaluates to noncompliant. Default is null, when set to default it is not evaluated.
2246
2488
  */
2247
2489
  rulesContent: binary | null;
2248
2490
  }
@@ -2912,6 +3154,13 @@ namespace reference.`microsoft.graph` {
2912
3154
  passwordLastRotationDateTime: offsetDateTime;
2913
3155
  }
2914
3156
 
3157
+ @complex model deviceLocalCredential {
3158
+ accountName: string;
3159
+ accountSid: string;
3160
+ backupDateTime: offsetDateTime;
3161
+ passwordBase64: string;
3162
+ }
3163
+
2915
3164
  /**
2916
3165
  * Windows Log Collection request entity.
2917
3166
  */
@@ -4250,6 +4499,9 @@ namespace reference.`microsoft.graph` {
4250
4499
  unknownStateThreatAgentDeviceCount: int32;
4251
4500
  }
4252
4501
 
4502
+ @complex model deviceRegistrationMembership {
4503
+ }
4504
+
4253
4505
  /**
4254
4506
  * The result of the triggered device scope action.
4255
4507
  */
@@ -4349,6 +4601,18 @@ namespace reference.`microsoft.graph` {
4349
4601
  edgeSearchEngineOpenSearchXmlUrl: string;
4350
4602
  }
4351
4603
 
4604
+ @complex model educationalActivityDetail {
4605
+ abbreviation: string | null;
4606
+ activities: string[] | null;
4607
+ awards: string[] | null;
4608
+ description: string | null;
4609
+ displayName: string | null;
4610
+ fieldsOfStudy: string[] | null;
4611
+ grade: string | null;
4612
+ notes: string | null;
4613
+ webUrl: string | null;
4614
+ }
4615
+
4352
4616
  /**
4353
4617
  * The details of the application which the user has requested to elevate
4354
4618
  */
@@ -4475,6 +4739,11 @@ namespace reference.`microsoft.graph` {
4475
4739
  targetValidationErrorCode: enrollmentTimeDeviceMembershipTargetValidationErrorCode;
4476
4740
  }
4477
4741
 
4742
+ @complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
4743
+ groups: string[] | null;
4744
+ users: string[] | null;
4745
+ }
4746
+
4478
4747
  @complex model enumeratedDomains extends validatingDomains {
4479
4748
  domainNames: string[];
4480
4749
  }
@@ -4564,6 +4833,11 @@ namespace reference.`microsoft.graph` {
4564
4833
  word: boolean;
4565
4834
  }
4566
4835
 
4836
+ @complex model excludeTarget {
4837
+ id: string;
4838
+ targetType: authenticationMethodTargetType;
4839
+ }
4840
+
4567
4841
  /**
4568
4842
  * Represents a group that should be excluded from an assignment.
4569
4843
  */
@@ -4578,6 +4852,10 @@ namespace reference.`microsoft.graph` {
4578
4852
  * The number of days after installation that forced reboot will happen.
4579
4853
  */
4580
4854
  daysUntilForcedReboot: int32;
4855
+ /**
4856
+ * The unique identifier for the quality update catalog item targeted by the expedite.
4857
+ */
4858
+ qualityUpdateCatalogItemId: string | null;
4581
4859
  /**
4582
4860
  * The release date to identify a quality update.
4583
4861
  */
@@ -4632,11 +4910,22 @@ namespace reference.`microsoft.graph` {
4632
4910
  type: string | null;
4633
4911
  }
4634
4912
 
4913
+ @complex model featureTarget {
4914
+ id: string | null;
4915
+ targetType: featureTargetType | null;
4916
+ }
4917
+
4635
4918
  @complex model federatedIdentityExpression {
4636
4919
  languageVersion: int32;
4637
4920
  value: string;
4638
4921
  }
4639
4922
 
4923
+ @complex model fido2KeyRestrictions {
4924
+ aaGuids: string[] | null;
4925
+ enforcementType: fido2RestrictionEnforcementType | null;
4926
+ isEnforced: boolean | null;
4927
+ }
4928
+
4640
4929
  /**
4641
4930
  * Contains properties for file encryption information for the content version of a line-of-business app.
4642
4931
  */
@@ -4933,8 +5222,15 @@ namespace reference.`microsoft.graph` {
4933
5222
  sources: deviceAndAppManagementAssignmentSource[];
4934
5223
  }
4935
5224
 
5225
+ @complex model hybridAgentUpdaterConfiguration {
5226
+ allowUpdateConfigurationOverride: boolean;
5227
+ deferUpdateDateTime: offsetDateTime | null;
5228
+ updateWindow: updateWindow | null;
5229
+ }
5230
+
4936
5231
  @complex model identifierUriConfiguration {
4937
5232
  nonDefaultUriAddition: identifierUriRestriction | null;
5233
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
4938
5234
  }
4939
5235
 
4940
5236
  @complex model identifierUriRestriction {
@@ -5000,6 +5296,16 @@ namespace reference.`microsoft.graph` {
5000
5296
  outboundAllowed: boolean | null;
5001
5297
  }
5002
5298
 
5299
+ @complex model includeTarget {
5300
+ id: string;
5301
+ targetType: authenticationMethodTargetType;
5302
+ }
5303
+
5304
+ @complex model inferenceData {
5305
+ confidenceScore: float64 | null;
5306
+ userHasVerifiedAccuracy: boolean | null;
5307
+ }
5308
+
5003
5309
  @complex model informationalUrl {
5004
5310
  logoUrl: string | null;
5005
5311
  marketingUrl: string | null;
@@ -5043,6 +5349,13 @@ namespace reference.`microsoft.graph` {
5043
5349
  resourceAppId: string;
5044
5350
  }
5045
5351
 
5352
+ @complex model institutionData {
5353
+ description: string | null;
5354
+ displayName: string | null;
5355
+ location: physicalAddress | null;
5356
+ webUrl: string | null;
5357
+ }
5358
+
5046
5359
  @complex model internetMessageHeader {
5047
5360
  name: string | null;
5048
5361
  value: string | null;
@@ -5171,6 +5484,12 @@ namespace reference.`microsoft.graph` {
5171
5484
  primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
5172
5485
  }
5173
5486
 
5487
+ @complex model invitedUserMessageInfo {
5488
+ ccRecipients: recipient[] | null;
5489
+ customizedMessageBody: string | null;
5490
+ messageLanguage: string | null;
5491
+ }
5492
+
5174
5493
  /**
5175
5494
  * iOS available update version details
5176
5495
  */
@@ -5850,10 +6169,20 @@ namespace reference.`microsoft.graph` {
5850
6169
  websiteList: iosBookmark[] | null;
5851
6170
  }
5852
6171
 
6172
+ /**
6173
+ * IP range base class for representing IPV4, IPV6 address ranges
6174
+ */
5853
6175
  @abstract
5854
6176
  @complex model ipRange {
5855
6177
  }
5856
6178
 
6179
+ @complex model ipSegmentConfiguration extends segmentConfiguration {
6180
+ @contains applicationSegments: ipApplicationSegment[];
6181
+ }
6182
+
6183
+ /**
6184
+ * IP range base class for representing IPV4, IPV6 address ranges
6185
+ */
5857
6186
  @complex model iPv4CidrRange extends ipRange {
5858
6187
  cidrAddress: string;
5859
6188
  }
@@ -5872,6 +6201,9 @@ namespace reference.`microsoft.graph` {
5872
6201
  upperAddress: string;
5873
6202
  }
5874
6203
 
6204
+ /**
6205
+ * IP range base class for representing IPV4, IPV6 address ranges
6206
+ */
5875
6207
  @complex model iPv6CidrRange extends ipRange {
5876
6208
  cidrAddress: string;
5877
6209
  }
@@ -5901,6 +6233,11 @@ namespace reference.`microsoft.graph` {
5901
6233
  @complex model Json {
5902
6234
  }
5903
6235
 
6236
+ @complex model kerberosSignOnSettings {
6237
+ kerberosServicePrincipalName: string | null;
6238
+ kerberosSignOnMappingAttributeType: kerberosSignOnMappingAttributeType | null;
6239
+ }
6240
+
5904
6241
  /**
5905
6242
  * Represents a Kerberos-type Single Sign-On extension profile.
5906
6243
  */
@@ -6013,6 +6350,7 @@ namespace reference.`microsoft.graph` {
6013
6350
  usage: string | null;
6014
6351
  }
6015
6352
 
6353
+
6016
6354
  /**
6017
6355
  * A key-value pair with a string key and an integer value.
6018
6356
  */
@@ -6106,6 +6444,15 @@ namespace reference.`microsoft.graph` {
6106
6444
  warning: int32 | null;
6107
6445
  }
6108
6446
 
6447
+ @complex model localAdminPasswordSettings {
6448
+ isEnabled: boolean | null;
6449
+ }
6450
+
6451
+ @complex model localAdminSettings {
6452
+ enableGlobalAdmins: boolean | null;
6453
+ registeringUsers: deviceRegistrationMembership | null;
6454
+ }
6455
+
6109
6456
  @complex model localeInfo {
6110
6457
  displayName: string | null;
6111
6458
  locale: string | null;
@@ -6132,6 +6479,16 @@ namespace reference.`microsoft.graph` {
6132
6479
  uniqueIdType: locationUniqueIdType | null;
6133
6480
  }
6134
6481
 
6482
+ @complex model locationConstraint {
6483
+ isRequired: boolean | null;
6484
+ locations: locationConstraintItem[] | null;
6485
+ suggestLocation: boolean | null;
6486
+ }
6487
+
6488
+ @complex model locationConstraintItem extends location {
6489
+ resolveAvailability: boolean | null;
6490
+ }
6491
+
6135
6492
  /**
6136
6493
  * Logged On User
6137
6494
  */
@@ -7018,6 +7375,16 @@ namespace reference.`microsoft.graph` {
7018
7375
  releaseYear: int32;
7019
7376
  }
7020
7377
 
7378
+ /**
7379
+ * The request parameter for requesting Android Managed Play Store app configuration schema.
7380
+ */
7381
+ @complex model managedStoreAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
7382
+ /**
7383
+ * The package name of the Android Managed Play Store app
7384
+ */
7385
+ packageName: string | null;
7386
+ }
7387
+
7021
7388
  @complex model managementCertificateWithThumbprint {
7022
7389
  /**
7023
7390
  * The Base 64 encoded management certificate
@@ -7128,6 +7495,21 @@ namespace reference.`microsoft.graph` {
7128
7495
  tvRating: ratingUnitedStatesTelevisionType;
7129
7496
  }
7130
7497
 
7498
+ @complex model meetingTimeSuggestion {
7499
+ attendeeAvailability: attendeeAvailability[] | null;
7500
+ confidence: float64 | null;
7501
+ locations: location[] | null;
7502
+ meetingTimeSlot: timeSlot | null;
7503
+ order: int32 | null;
7504
+ organizerAvailability: freeBusyStatus | null;
7505
+ suggestionReason: string | null;
7506
+ }
7507
+
7508
+ @complex model meetingTimeSuggestionsResult {
7509
+ emptySuggestionsReason: string | null;
7510
+ meetingTimeSuggestions: meetingTimeSuggestion[] | null;
7511
+ }
7512
+
7131
7513
  @complex model membershipRuleEvaluationDetails {
7132
7514
  membershipRuleEvaluationDetails: expressionEvaluationDetails | null;
7133
7515
  }
@@ -7203,6 +7585,13 @@ namespace reference.`microsoft.graph` {
7203
7585
  value: int64;
7204
7586
  }
7205
7587
 
7588
+ @complex model microsoftAuthenticatorFeatureSettings {
7589
+ companionAppAllowedState: authenticationMethodFeatureConfiguration | null;
7590
+ displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
7591
+ displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
7592
+ numberMatchingRequiredState: authenticationMethodFeatureConfiguration | null;
7593
+ }
7594
+
7206
7595
  /**
7207
7596
  * Contains properties used to assign an Microsoft Store for Business mobile app to a group.
7208
7597
  */
@@ -7393,6 +7782,9 @@ namespace reference.`microsoft.graph` {
7393
7782
  troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
7394
7783
  }
7395
7784
 
7785
+ @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
7786
+ }
7787
+
7396
7788
  @complex model noScopes extends inheritableScopes {
7397
7789
  }
7398
7790
 
@@ -7539,6 +7931,13 @@ namespace reference.`microsoft.graph` {
7539
7931
  synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
7540
7932
  }
7541
7933
 
7934
+ @complex model onPremisesApplicationSegment {
7935
+ alternateUrl: string | null;
7936
+ corsConfigurations: corsConfiguration[] | null;
7937
+ externalUrl: string | null;
7938
+ internalUrl: string | null;
7939
+ }
7940
+
7542
7941
  @complex model onPremisesDirectorySynchronizationConfiguration {
7543
7942
  accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
7544
7943
  }
@@ -7590,6 +7989,47 @@ namespace reference.`microsoft.graph` {
7590
7989
  value: string | null;
7591
7990
  }
7592
7991
 
7992
+ @complex model onPremisesPublishing {
7993
+ alternateUrl: string | null;
7994
+ applicationServerTimeout: string | null;
7995
+ applicationType: string | null;
7996
+ externalAuthenticationType: externalAuthenticationType | null;
7997
+ externalUrl: string | null;
7998
+ internalUrl: string | null;
7999
+ isAccessibleViaZTNAClient: boolean | null;
8000
+ isBackendCertificateValidationEnabled: boolean | null;
8001
+ isContinuousAccessEvaluationEnabled: boolean | null;
8002
+ isDnsResolutionEnabled: boolean | null;
8003
+ isHttpOnlyCookieEnabled: boolean | null;
8004
+ isOnPremPublishingEnabled: boolean | null;
8005
+ isPersistentCookieEnabled: boolean | null;
8006
+ isSecureCookieEnabled: boolean | null;
8007
+ isStateSessionEnabled: boolean | null;
8008
+ isTranslateHostHeaderEnabled: boolean | null;
8009
+ isTranslateLinksInBodyEnabled: boolean | null;
8010
+ onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
8011
+ segmentsConfiguration: segmentConfiguration | null;
8012
+ singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
8013
+ trafficRoutingMethod: trafficRoutingMethod;
8014
+ useAlternateUrlForTranslationAndRedirect: boolean | null;
8015
+ verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
8016
+ verifiedCustomDomainKeyCredential: keyCredential | null;
8017
+ verifiedCustomDomainPasswordCredential: passwordCredential | null;
8018
+ wafAllowedHeaders: wafAllowedHeadersDictionary | null;
8019
+ wafIpRanges: ipRange[] | null;
8020
+ wafProvider: string | null;
8021
+ }
8022
+
8023
+ @complex model onPremisesPublishingSingleSignOn {
8024
+ kerberosSignOnSettings: kerberosSignOnSettings | null;
8025
+ singleSignOnMode: singleSignOnMode | null;
8026
+ }
8027
+
8028
+ @complex model openIdConnectSetting {
8029
+ clientId: string;
8030
+ discoveryUrl: string;
8031
+ }
8032
+
7593
8033
  /**
7594
8034
  * Operating System version range.
7595
8035
  */
@@ -7657,6 +8097,11 @@ namespace reference.`microsoft.graph` {
7657
8097
  saml2Token: optionalClaim[] | null;
7658
8098
  }
7659
8099
 
8100
+ @complex model originTenantInfo {
8101
+ originTenantId: string | null;
8102
+ originUserId: string | null;
8103
+ }
8104
+
7660
8105
  /**
7661
8106
  * Count of devices with malware for each OS version
7662
8107
  */
@@ -7749,6 +8194,17 @@ namespace reference.`microsoft.graph` {
7749
8194
  legalAgeGroupRule: string | null;
7750
8195
  }
7751
8196
 
8197
+ @complex model passkeyProfileStructure {
8198
+ attestationEnforcement: attestationEnforcement;
8199
+ id: string;
8200
+
8201
+ @graphDeprecated("PasskeyGlobalProperties")
8202
+ isAttestationEnforced: boolean;
8203
+ keyRestrictions: fido2KeyRestrictions;
8204
+ name: string;
8205
+ passkeyTypes: passkeyTypes;
8206
+ }
8207
+
7752
8208
  @complex model passwordCredential {
7753
8209
  customKeyIdentifier: binary | null;
7754
8210
  displayName: string | null;
@@ -7759,12 +8215,17 @@ namespace reference.`microsoft.graph` {
7759
8215
  startDateTime: offsetDateTime | null;
7760
8216
  }
7761
8217
 
8218
+
7762
8219
  @complex model passwordProfile {
7763
8220
  forceChangePasswordNextSignIn: boolean | null;
7764
8221
  forceChangePasswordNextSignInWithMfa: boolean | null;
7765
8222
  password: string | null;
7766
8223
  }
7767
8224
 
8225
+ @complex model passwordResetResponse {
8226
+ newPassword: string | null;
8227
+ }
8228
+
7768
8229
  @complex model passwordSingleSignOnCredentialSet {
7769
8230
  credentials: credential[] | null;
7770
8231
  id: string;
@@ -7828,6 +8289,18 @@ namespace reference.`microsoft.graph` {
7828
8289
  type: string | null;
7829
8290
  }
7830
8291
 
8292
+ @complex model personDataSources {
8293
+ type: string[] | null;
8294
+ }
8295
+
8296
+ @complex model personNamePronounciation {
8297
+ displayName: string | null;
8298
+ first: string | null;
8299
+ last: string | null;
8300
+ maiden: string | null;
8301
+ middle: string | null;
8302
+ }
8303
+
7831
8304
  @complex model perTenantTrafficSegmentsOverride {
7832
8305
  percentage: int32;
7833
8306
  tenantId: guid;
@@ -7838,6 +8311,10 @@ namespace reference.`microsoft.graph` {
7838
8311
  type: phoneType | null;
7839
8312
  }
7840
8313
 
8314
+ @privatePreview("photoEditPolicy")
8315
+ @complex model photoAllowedOperations {
8316
+ }
8317
+
7841
8318
  @complex model physicalAddress {
7842
8319
  city: string | null;
7843
8320
  countryOrRegion: string | null;
@@ -7857,6 +8334,257 @@ namespace reference.`microsoft.graph` {
7857
8334
  street: string | null;
7858
8335
  }
7859
8336
 
8337
+ @open
8338
+ @complex model plannerAppliedCategories {
8339
+ }
8340
+
8341
+ @complex model plannerApprovalRequirement {
8342
+ isApprovalRequired: boolean | null;
8343
+ }
8344
+
8345
+ @complex model plannerArchivalInfo {
8346
+ justification: string | null;
8347
+ statusChangedBy: identitySet | null;
8348
+ statusChangedDateTime: offsetDateTime | null;
8349
+ }
8350
+
8351
+ @complex model plannerAssignment {
8352
+ assignedBy: identitySet | null;
8353
+ assignedDateTime: offsetDateTime | null;
8354
+ orderHint: string | null;
8355
+ }
8356
+
8357
+ @open
8358
+ @complex model plannerAssignments {
8359
+ }
8360
+
8361
+ @abstract
8362
+ @complex model plannerBaseApprovalAttachment {
8363
+ status: plannerApprovalStatus | null;
8364
+ }
8365
+
8366
+ @complex model plannerBasicApprovalAttachment extends plannerBaseApprovalAttachment {
8367
+ approvalId: string | null;
8368
+ }
8369
+
8370
+ @abstract
8371
+ @complex model plannerBucketCreation {
8372
+ creationSourceKind: plannerCreationSourceKind | null;
8373
+ }
8374
+
8375
+ @complex model plannerCategoryDescriptions {
8376
+ category1: string | null;
8377
+ category10: string | null;
8378
+ category11: string | null;
8379
+ category12: string | null;
8380
+ category13: string | null;
8381
+ category14: string | null;
8382
+ category15: string | null;
8383
+ category16: string | null;
8384
+ category17: string | null;
8385
+ category18: string | null;
8386
+ category19: string | null;
8387
+ category2: string | null;
8388
+ category20: string | null;
8389
+ category21: string | null;
8390
+ category22: string | null;
8391
+ category23: string | null;
8392
+ category24: string | null;
8393
+ category25: string | null;
8394
+ category3: string | null;
8395
+ category4: string | null;
8396
+ category5: string | null;
8397
+ category6: string | null;
8398
+ category7: string | null;
8399
+ category8: string | null;
8400
+ category9: string | null;
8401
+ }
8402
+
8403
+ @complex model plannerChecklistItem {
8404
+ isChecked: boolean | null;
8405
+ lastModifiedBy: identitySet | null;
8406
+ @computed lastModifiedDateTime: offsetDateTime | null;
8407
+ orderHint: string | null;
8408
+ title: string | null;
8409
+ }
8410
+
8411
+ @open
8412
+ @complex model plannerChecklistItems {
8413
+ }
8414
+
8415
+ @complex model plannerChecklistRequirement {
8416
+ requiredChecklistItemIds: string[] | null;
8417
+ }
8418
+
8419
+ @complex model plannerExternalBucketSource extends plannerBucketCreation {
8420
+ contextScenarioId: string | null;
8421
+ externalContextId: string | null;
8422
+ externalObjectId: string | null;
8423
+ }
8424
+
8425
+ @complex model plannerExternalPlanSource extends plannerPlanCreation {
8426
+ contextScenarioId: string | null;
8427
+ externalContextId: string | null;
8428
+ externalObjectId: string | null;
8429
+ }
8430
+
8431
+ @complex model plannerExternalReference {
8432
+ `alias`: string | null;
8433
+ lastModifiedBy: identitySet | null;
8434
+ @computed lastModifiedDateTime: offsetDateTime | null;
8435
+ previewPriority: string | null;
8436
+ type: string | null;
8437
+ }
8438
+
8439
+ @open
8440
+ @complex model plannerExternalReferences {
8441
+ }
8442
+
8443
+ @complex model plannerExternalTaskSource extends plannerTaskCreation {
8444
+ contextScenarioId: string | null;
8445
+ displayLinkType: plannerExternalTaskSourceDisplayType | null;
8446
+ displayNameSegments: string[] | null;
8447
+ externalContextId: string | null;
8448
+ externalObjectId: string | null;
8449
+ externalObjectVersion: string | null;
8450
+ webUrl: string | null;
8451
+ }
8452
+
8453
+ @complex model plannerFavoritePlanReference {
8454
+ orderHint: string | null;
8455
+ planTitle: string | null;
8456
+ }
8457
+
8458
+ @open
8459
+ @complex model plannerFavoritePlanReferenceCollection {
8460
+ }
8461
+
8462
+ @complex model plannerFormReference {
8463
+ displayName: string | null;
8464
+ formResponse: string | null;
8465
+ formWebUrl: string | null;
8466
+ }
8467
+
8468
+ @open
8469
+ @complex model plannerFormsDictionary extends Dictionary {
8470
+ }
8471
+
8472
+ @complex model plannerFormsRequirement {
8473
+ requiredForms: string[] | null;
8474
+ }
8475
+
8476
+ @open
8477
+ @complex model plannerOrderHintsByAssignee {
8478
+ }
8479
+
8480
+ @complex model plannerPlanContainer {
8481
+ containerId: string | null;
8482
+ type: plannerContainerType | null;
8483
+ url: string | null;
8484
+ }
8485
+
8486
+ @complex model plannerPlanContext {
8487
+ associationType: string | null;
8488
+ @computed createdDateTime: offsetDateTime | null;
8489
+ displayNameSegments: string[] | null;
8490
+ isCreationContext: boolean | null;
8491
+ ownerAppId: string | null;
8492
+ }
8493
+
8494
+ @open
8495
+ @complex model plannerPlanContextCollection {
8496
+ }
8497
+
8498
+ @complex model plannerPlanContextDetails {
8499
+ customLinkText: string | null;
8500
+ displayLinkType: plannerPlanContextType | null;
8501
+ state: plannerContextState | null;
8502
+ url: string | null;
8503
+ }
8504
+
8505
+ @open
8506
+ @complex model plannerPlanContextDetailsCollection {
8507
+ }
8508
+
8509
+ @abstract
8510
+ @complex model plannerPlanCreation {
8511
+ creationSourceKind: plannerCreationSourceKind | null;
8512
+ }
8513
+
8514
+ @complex model plannerRecentPlanReference {
8515
+ @computed lastAccessedDateTime: offsetDateTime | null;
8516
+ planTitle: string | null;
8517
+ }
8518
+
8519
+ @open
8520
+ @complex model plannerRecentPlanReferenceCollection {
8521
+ }
8522
+
8523
+ @complex model plannerRecurrenceSchedule {
8524
+ nextOccurrenceDateTime: offsetDateTime | null;
8525
+ pattern: recurrencePattern | null;
8526
+ patternStartDateTime: offsetDateTime | null;
8527
+ }
8528
+
8529
+ @complex model plannerSharedWithContainer extends plannerPlanContainer {
8530
+ accessLevel: plannerPlanAccessLevel;
8531
+ }
8532
+
8533
+ @complex model plannerTaskCompletionRequirementDetails {
8534
+ approvalRequirement: plannerApprovalRequirement | null;
8535
+ checklistRequirement: plannerChecklistRequirement | null;
8536
+ formsRequirement: plannerFormsRequirement | null;
8537
+ }
8538
+
8539
+ @complex model plannerTaskCreation {
8540
+ creationSourceKind: plannerCreationSourceKind | null;
8541
+ teamsPublicationInfo: plannerTeamsPublicationInfo | null;
8542
+ }
8543
+
8544
+ @complex model plannerTaskRecurrence {
8545
+ nextInSeriesTaskId: string | null;
8546
+ occurrenceId: int32;
8547
+ previousInSeriesTaskId: string | null;
8548
+ recurrenceStartDateTime: offsetDateTime;
8549
+ schedule: plannerRecurrenceSchedule | null;
8550
+ seriesId: string;
8551
+ }
8552
+
8553
+ @complex model plannerTeamsPublicationInfo extends plannerTaskCreation {
8554
+ @computed lastModifiedDateTime: offsetDateTime | null;
8555
+ publicationId: string | null;
8556
+ publicationName: string | null;
8557
+ publishedToPlanId: string | null;
8558
+ publishingTeamId: string | null;
8559
+ publishingTeamName: string | null;
8560
+ }
8561
+
8562
+ @open
8563
+ @complex model plannerUserIds {
8564
+ }
8565
+
8566
+ @complex model planUsageRight {
8567
+ hasSensitivityLabel: boolean;
8568
+ planId: string;
8569
+ usageRights: usageRightsInfo | null;
8570
+ }
8571
+
8572
+ @complex model positionDetail {
8573
+ company: companyDetail | null;
8574
+ description: string | null;
8575
+ employeeId: string | null;
8576
+ employeeType: string | null;
8577
+ endMonthYear: offsetDateTime | null;
8578
+ jobTitle: string | null;
8579
+ layer: int32 | null;
8580
+ level: string | null;
8581
+ role: string | null;
8582
+ secondaryJobTitle: string | null;
8583
+ secondaryRole: string | null;
8584
+ startMonthYear: offsetDateTime | null;
8585
+ summary: string | null;
8586
+ }
8587
+
7860
8588
  /**
7861
8589
  * This type contains request details to download app diagnostic files.
7862
8590
  */
@@ -7983,6 +8711,12 @@ namespace reference.`microsoft.graph` {
7983
8711
  statementUrl: string | null;
7984
8712
  }
7985
8713
 
8714
+ @complex model profileSourceAnnotation {
8715
+ isDefaultSource: boolean | null;
8716
+ properties: string[] | null;
8717
+ sourceId: string | null;
8718
+ }
8719
+
7986
8720
  @complex model propertyToEvaluate {
7987
8721
  propertyName: string | null;
7988
8722
  propertyValue: string | null;
@@ -8012,6 +8746,13 @@ namespace reference.`microsoft.graph` {
8012
8746
  redirectUris: string[];
8013
8747
  }
8014
8748
 
8749
+ @complex model qrCodeImageDetails {
8750
+ binaryValue: binary | null;
8751
+ errorCorrectionLevel: errorCorrectionLevel | null;
8752
+ rawContent: binary | null;
8753
+ version: int32 | null;
8754
+ }
8755
+
8015
8756
  @complex model rankedEmailAddress {
8016
8757
  address: string | null;
8017
8758
  rank: float64 | null;
@@ -8066,6 +8807,27 @@ namespace reference.`microsoft.graph` {
8066
8807
  uri: string | null;
8067
8808
  }
8068
8809
 
8810
+ @complex model regionalFormatOverrides {
8811
+ calendar: string | null;
8812
+ firstDayOfWeek: string | null;
8813
+ longDateFormat: string | null;
8814
+ longTimeFormat: string | null;
8815
+ shortDateFormat: string | null;
8816
+ shortTimeFormat: string | null;
8817
+ timeZone: string | null;
8818
+ }
8819
+
8820
+ @complex model registrationEnforcement {
8821
+ authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
8822
+ }
8823
+
8824
+ @complex model relatedPerson {
8825
+ displayName: string | null;
8826
+ relationship: personRelationship | null;
8827
+ userId: string | null;
8828
+ userPrincipalName: string | null;
8829
+ }
8830
+
8069
8831
  @complex model reminder {
8070
8832
  changeKey: string | null;
8071
8833
  eventEndTime: dateTimeTimeZone | null;
@@ -8094,6 +8856,12 @@ namespace reference.`microsoft.graph` {
8094
8856
  content: stream | null;
8095
8857
  }
8096
8858
 
8859
+ @complex model reportSuspiciousActivitySettings {
8860
+ includeTarget: includeTarget;
8861
+ state: advancedConfigState;
8862
+ voiceReportingCode: int32 | null;
8863
+ }
8864
+
8097
8865
  /**
8098
8866
  * Remote help - response we provide back to the helper after getting response from pubSub
8099
8867
  */
@@ -8155,6 +8923,10 @@ namespace reference.`microsoft.graph` {
8155
8923
  notAllowedResourceActions: string[] | null;
8156
8924
  }
8157
8925
 
8926
+ @open
8927
+ @complex model resourceData {
8928
+ }
8929
+
8158
8930
  @complex model resourcePermission {
8159
8931
  type: string;
8160
8932
  value: string;
@@ -8461,6 +9233,9 @@ namespace reference.`microsoft.graph` {
8461
9233
  sourceType: securityBaselinePolicySourceType;
8462
9234
  }
8463
9235
 
9236
+ @complex model segmentConfiguration {
9237
+ }
9238
+
8464
9239
  @complex model selfSignedCertificate {
8465
9240
  customKeyIdentifier: binary | null;
8466
9241
  displayName: string | null;
@@ -8473,6 +9248,17 @@ namespace reference.`microsoft.graph` {
8473
9248
  usage: string | null;
8474
9249
  }
8475
9250
 
9251
+ @complex model sensitivityLabelAssignment {
9252
+ assignmentMethod: sensitivityLabelAssignmentMethod;
9253
+ sensitivityLabelId: string;
9254
+ tenantId: string;
9255
+ }
9256
+
9257
+ @complex model serviceInformation {
9258
+ name: string | null;
9259
+ webUrl: string | null;
9260
+ }
9261
+
8476
9262
  /**
8477
9263
  * An abstract base class for all serviceNow authentication methods.
8478
9264
  */
@@ -8612,6 +9398,11 @@ namespace reference.`microsoft.graph` {
8612
9398
  state: string | null;
8613
9399
  }
8614
9400
 
9401
+ @complex model signInPreferences {
9402
+ isSystemPreferredAuthenticationMethodEnabled: boolean | null;
9403
+ userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethodType | null;
9404
+ }
9405
+
8615
9406
  /**
8616
9407
  * Represents an Apple Single Sign-On Extension.
8617
9408
  */
@@ -8646,6 +9437,10 @@ namespace reference.`microsoft.graph` {
8646
9437
  year: int32 | null;
8647
9438
  }
8648
9439
 
9440
+ @complex model strongAuthenticationRequirements {
9441
+ perUserMfaState: perUserMfaState | null;
9442
+ }
9443
+
8649
9444
  /**
8650
9445
  * The suggestedEnrollmentLimit resource represents the suggested enrollment limit when given an enrollment type.
8651
9446
  */
@@ -8660,6 +9455,12 @@ namespace reference.`microsoft.graph` {
8660
9455
  nameIdPolicyFormat: string | null;
8661
9456
  }
8662
9457
 
9458
+ @complex model systemCredentialPreferences {
9459
+ excludeTargets: excludeTarget[];
9460
+ includeTargets: includeTarget[];
9461
+ state: advancedConfigState;
9462
+ }
9463
+
8663
9464
  /**
8664
9465
  * Represents result of GetState API.
8665
9466
  */
@@ -8677,6 +9478,12 @@ namespace reference.`microsoft.graph` {
8677
9478
  tenantId: string;
8678
9479
  }
8679
9480
 
9481
+ @complex model timeConstraint {
9482
+ activityDomain: activityDomain | null;
9483
+ recurrence: patternedRecurrence | null;
9484
+ timeSlots: timeSlot[] | null;
9485
+ }
9486
+
8680
9487
  /**
8681
9488
  * Parameter passed to GetHealthMetricTimeSeries when requesting snapshot time series.
8682
9489
  */
@@ -8709,6 +9516,17 @@ namespace reference.`microsoft.graph` {
8709
9516
  displayName: string | null;
8710
9517
  }
8711
9518
 
9519
+ @complex model translationLanguageOverride {
9520
+ languageTag: string | null;
9521
+ translationBehavior: translationBehavior | null;
9522
+ }
9523
+
9524
+ @complex model translationPreferences {
9525
+ languageOverrides: translationLanguageOverride[];
9526
+ translationBehavior: translationBehavior | null;
9527
+ untranslatedLanguages: string[] | null;
9528
+ }
9529
+
8712
9530
  /**
8713
9531
  * Complex type that represents a certificate in the trust chain of another certificate issued by a certification authority external to Microsoft Cloud PKI. This complex type is only used when calling the uploadExternallySignedCertificationAuthorityCertificate action.
8714
9532
  */
@@ -8812,6 +9630,18 @@ namespace reference.`microsoft.graph` {
8812
9630
  propertyName: string | null;
8813
9631
  }
8814
9632
 
9633
+ @complex model updateAllowedCombinationsResult {
9634
+ additionalInformation: string | null;
9635
+ conditionalAccessReferences: string[] | null;
9636
+ currentCombinations: authenticationMethodModes[];
9637
+ previousCombinations: authenticationMethodModes[];
9638
+ }
9639
+
9640
+ @complex model updateWindow {
9641
+ updateWindowEndTime: offsetDateTime | null;
9642
+ updateWindowStartTime: offsetDateTime | null;
9643
+ }
9644
+
8815
9645
  @complex model updateWindowsDeviceAccountActionParameter {
8816
9646
  calendarSyncEnabled: boolean | null;
8817
9647
  deviceAccount: windowsDeviceAccount | null;
@@ -8827,6 +9657,14 @@ namespace reference.`microsoft.graph` {
8827
9657
  uploadUrl: string | null;
8828
9658
  }
8829
9659
 
9660
+ @complex model usageRightsInfo {
9661
+ allowCopy: boolean;
9662
+ allowEdit: boolean;
9663
+ allowExport: boolean;
9664
+ allowPrint: boolean;
9665
+ allowView: boolean;
9666
+ }
9667
+
8830
9668
  @complex model userActionContext extends signInContext {
8831
9669
  userAction: userAction | null;
8832
9670
  }
@@ -9079,6 +9917,14 @@ namespace reference.`microsoft.graph` {
9079
9917
  rootDomains: rootDomains;
9080
9918
  }
9081
9919
 
9920
+ @complex model verifiedCustomDomainCertificatesMetadata {
9921
+ expiryDate: offsetDateTime | null;
9922
+ issueDate: offsetDateTime | null;
9923
+ issuerName: string | null;
9924
+ subjectName: string | null;
9925
+ thumbprint: string | null;
9926
+ }
9927
+
9082
9928
  @complex model verifiedDomain {
9083
9929
  capabilities: string | null;
9084
9930
  isDefault: boolean | null;
@@ -9343,6 +10189,10 @@ namespace reference.`microsoft.graph` {
9343
10189
  totalLicensesCount: int32;
9344
10190
  }
9345
10191
 
10192
+ @open
10193
+ @complex model wafAllowedHeadersDictionary extends Dictionary {
10194
+ }
10195
+
9346
10196
  @complex model webApplication {
9347
10197
  homePageUrl: string | null;
9348
10198
  implicitGrantSettings: implicitGrantSettings | null;
@@ -9352,6 +10202,74 @@ namespace reference.`microsoft.graph` {
9352
10202
  redirectUriSettings: redirectUriSettings[];
9353
10203
  }
9354
10204
 
10205
+ @open
10206
+ @complex model webauthnAuthenticationExtensionsClientInputs {
10207
+ }
10208
+
10209
+ @open
10210
+ @complex model webauthnAuthenticationExtensionsClientOutputs {
10211
+ }
10212
+
10213
+ @complex model webauthnAuthenticatorAttestationResponse {
10214
+ attestationObject: string | null;
10215
+ clientDataJSON: string | null;
10216
+ }
10217
+
10218
+ @complex model webauthnAuthenticatorSelectionCriteria {
10219
+ authenticatorAttachment: string | null;
10220
+ requireResidentKey: boolean | null;
10221
+ userVerification: string | null;
10222
+ }
10223
+
10224
+ @complex model webauthnCredentialCreationOptions {
10225
+ challengeTimeoutDateTime: offsetDateTime | null;
10226
+ publicKey: webauthnPublicKeyCredentialCreationOptions | null;
10227
+ }
10228
+
10229
+ @complex model webauthnPublicKeyCredential {
10230
+ clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
10231
+ id: string | null;
10232
+ response: webauthnAuthenticatorAttestationResponse | null;
10233
+ }
10234
+
10235
+ @complex model webauthnPublicKeyCredentialCreationOptions {
10236
+ attestation: string | null;
10237
+ authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
10238
+ challenge: string | null;
10239
+ excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
10240
+ extensions: webauthnAuthenticationExtensionsClientInputs | null;
10241
+ pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
10242
+ rp: webauthnPublicKeyCredentialRpEntity | null;
10243
+ timeout: int32 | null;
10244
+ user: webauthnPublicKeyCredentialUserEntity | null;
10245
+ }
10246
+
10247
+ @complex model webauthnPublicKeyCredentialDescriptor {
10248
+ id: string | null;
10249
+ transports: string[] | null;
10250
+ type: string | null;
10251
+ }
10252
+
10253
+ @complex model webauthnPublicKeyCredentialParameters {
10254
+ alg: int32 | null;
10255
+ type: string | null;
10256
+ }
10257
+
10258
+ @complex model webauthnPublicKeyCredentialRpEntity {
10259
+ id: string | null;
10260
+ name: string | null;
10261
+ }
10262
+
10263
+ @complex model webauthnPublicKeyCredentialUserEntity {
10264
+ displayName: string | null;
10265
+ id: string | null;
10266
+ name: string | null;
10267
+ }
10268
+
10269
+ @complex model webSegmentConfiguration extends segmentConfiguration {
10270
+ @contains applicationSegments: webApplicationSegment[];
10271
+ }
10272
+
9355
10273
  @complex model website {
9356
10274
  address: string | null;
9357
10275
  displayName: string | null;
@@ -9497,6 +10415,10 @@ namespace reference.`microsoft.graph` {
9497
10415
  * Device restart behavior.
9498
10416
  */
9499
10417
  deviceRestartBehavior: win32LobAppRestartBehavior;
10418
+ /**
10419
+ * Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use. Null indicates the feature is not enabled. Possible values are: 'notEnabled', 'fail', 'terminateWithoutUserInteraction', 'terminateWithUserInteraction'.
10420
+ */
10421
+ inUseBehavior: win32LobAppInUseActionType | null;
9500
10422
  /**
9501
10423
  * The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
9502
10424
  */
@@ -9627,6 +10549,24 @@ namespace reference.`microsoft.graph` {
9627
10549
  scriptContent: string | null;
9628
10550
  }
9629
10551
 
10552
+ /**
10553
+ * A complex type to store process rule data for a Win32 LOB app.
10554
+ */
10555
+ @complex model win32LobAppProcessRule extends win32LobAppRule {
10556
+ /**
10557
+ * Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
10558
+ */
10559
+ operationType: win32LobAppProcessOperationType;
10560
+ /**
10561
+ * Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
10562
+ */
10563
+ processDisplayName: string | null;
10564
+ /**
10565
+ * Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
10566
+ */
10567
+ processName: string | null;
10568
+ }
10569
+
9630
10570
  /**
9631
10571
  * Contains product code and version properties to detect a Win32 App
9632
10572
  */
@@ -9911,6 +10851,78 @@ namespace reference.`microsoft.graph` {
9911
10851
  useDeviceContext: boolean;
9912
10852
  }
9913
10853
 
10854
+ /**
10855
+ * Contains per-group deployment configuration for a windowsAutoUpdateCatalogApp. These settings control the end-user experience when the app is deployed to a specific group—including whether notifications are shown, how delivery bandwidth is used, when the app must be installed by, and how the device coordinates restarts afterward.
10856
+ */
10857
+ @complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
10858
+ /**
10859
+ * Indicates the priority level for downloading the app content using Delivery Optimization. foreground prioritizes the download over background tasks, which may result in faster installation but higher bandwidth usage. Defaults to notConfigured (background priority) if not specified. When omitted from the request, the service applies notConfigured and the device downloads app content using normal background priority. In National Cloud environments (e.g., US Government, China), Delivery Optimization is not available; the service accepts and stores any value provided, but the device agent ignores it at runtime and delivers content via CDN using background priority regardless of the configured value. Possible values are: notConfigured, foreground, unknownFutureValue.
10860
+ */
10861
+ deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
10862
+ /**
10863
+ * Specifies the deadline by which the app must be installed on the device. When null, the app is offered for immediate installation with no enforced deadline.
10864
+ */
10865
+ installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
10866
+ /**
10867
+ * Indicates which notifications the Intune management extension displays to the end user during app installation and restart. Defaults to showAll if not specified. Possible values are: showAll, showReboot, hideAll, unknownFutureValue.
10868
+ */
10869
+ notificationType: windowsAutoUpdateCatalogAppNotificationType;
10870
+ /**
10871
+ * Specifies the restart coordination behavior after the app is installed—including how long to wait before restarting, when to show a countdown, and how long the user can snooze. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting). Note: the service accepts restart settings regardless of the app's deviceRestartBehavior value; the device agent determines which settings are actually honored at runtime.
10872
+ */
10873
+ restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
10874
+ }
10875
+
10876
+ /**
10877
+ * Describes how the app installer runs on target devices, including which account context it runs under and how the device handles restarts after installation. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
10878
+ */
10879
+ @complex model windowsAutoUpdateCatalogAppInstallExperience {
10880
+ /**
10881
+ * Indicates how the device handles restarts after the app installation completes. This controls whether the Intune management extension initiates, suppresses, or forces a device restart based on the installer's exit code. Defaults to basedOnReturnCode if not specified. Possible values are: basedOnReturnCode, allow, suppress, force, unknownFutureValue.
10882
+ */
10883
+ deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
10884
+ /**
10885
+ * Indicates the account context under which the app installer runs on the device. When set to system, the installer runs with elevated privileges in the SYSTEM account context. When set to user, the installer runs in the context of the currently logged-in user. Defaults to system if not specified. Possible values are: system, user.
10886
+ */
10887
+ runAsAccount: runAsAccountType;
10888
+ }
10889
+
10890
+ /**
10891
+ * Specifies when the app should be installed on target devices. When null or is omitted from the assignment, the app is offered for immediate installation with no enforced deadline.
10892
+ */
10893
+ @complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
10894
+ /**
10895
+ * The maximum allowed date and time by which the app must be installed on the device. After this deadline, the Intune management extension enforces installation automatically. When null, there is no enforced deadline.
10896
+ */
10897
+ deadlineDateTime: offsetDateTime | null;
10898
+ /**
10899
+ * The time at which the app should be available for installation on the device. When null, the app is available immediately.
10900
+ */
10901
+ startDateTime: offsetDateTime | null;
10902
+ /**
10903
+ * Indicates whether the startDateTime and deadlineDateTime values should be interpreted using the device's local time zone. When false, the values are interpreted as UTC. Defaults to false if not specified.
10904
+ */
10905
+ useLocalTime: boolean;
10906
+ }
10907
+
10908
+ /**
10909
+ * Specifies how the device coordinates a restart after the app is installed. These settings control the grace period before a restart is initiated, when the user sees a countdown notification, and how long the user can defer the restart by snoozing. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting).
10910
+ */
10911
+ @complex model windowsAutoUpdateCatalogAppRestartSettings {
10912
+ /**
10913
+ * The number of minutes before the scheduled restart at which a countdown notification is displayed to the user. Must be between 1 and the value of gracePeriodInMinutes. This countdown is non-dismissible and warns the user that a restart is imminent. For example, a value of 15 means the countdown appears 15 minutes before the restart.
10914
+ */
10915
+ countdownDisplayBeforeRestartInMinutes: int32;
10916
+ /**
10917
+ * The number of minutes the device waits after app installation before initiating a restart. During this period, the user can continue working and save their documents. For example, a value of 1440 means the device waits 24 hours before restarting.
10918
+ */
10919
+ gracePeriodInMinutes: int32;
10920
+ /**
10921
+ * The number of minutes by which the user can defer (snooze) the restart notification each time they press the snooze button. When null, the snooze option is not available and the user cannot defer the restart. For example, a value of 240 allows the user to defer the restart by 4 hours each time.
10922
+ */
10923
+ restartNotificationSnoozeDurationInMinutes: int32 | null;
10924
+ }
10925
+
9914
10926
  /**
9915
10927
  * Windows Defender last scan result
9916
10928
  */
@@ -11157,6 +12169,38 @@ namespace reference.`microsoft.graph` {
11157
12169
  minimumOSVersion: string | null;
11158
12170
  }
11159
12171
 
12172
+ @complex model x509CertificateAuthenticationModeConfiguration {
12173
+ rules: x509CertificateRule[] | null;
12174
+ x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
12175
+ x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
12176
+ }
12177
+
12178
+ @complex model x509CertificateAuthorityScope {
12179
+ includeTargets: includeTarget[] | null;
12180
+ publicKeyInfrastructureIdentifier: string | null;
12181
+ subjectKeyIdentifier: string | null;
12182
+ }
12183
+
12184
+ @complex model x509CertificateIssuerHintsConfiguration {
12185
+ state: x509CertificateIssuerHintsState | null;
12186
+ }
12187
+
12188
+ @complex model x509CertificateRule {
12189
+ identifier: string | null;
12190
+ issuerSubjectIdentifier: string | null;
12191
+ policyOidIdentifier: string | null;
12192
+ x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
12193
+ x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
12194
+ x509CertificateRuleType: x509CertificateRuleType | null;
12195
+ }
12196
+
12197
+ @complex model x509CertificateUserBinding {
12198
+ priority: int32;
12199
+ trustAffinityLevel: x509CertificateAffinityLevel | null;
12200
+ userProperty: string | null;
12201
+ x509CertificateField: string | null;
12202
+ }
12203
+
11160
12204
  /**
11161
12205
  * The Zebra FOTA deployment complex type that describes the settings required to create a FOTA deployment.
11162
12206
  */
@@ -11468,6 +12512,24 @@ namespace reference.`microsoft.graph` {
11468
12512
  isActive: boolean | null;
11469
12513
  }
11470
12514
 
12515
+ /**
12516
+ * Schema describing an Android application's custom configurations.
12517
+ */
12518
+ @entity model androidAppConfigurationSchema extends entity {
12519
+ /**
12520
+ * UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
12521
+ */
12522
+ exampleJson: binary | null;
12523
+ /**
12524
+ * Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
12525
+ */
12526
+ nestedSchemaItems: appConfigurationSchemaItemType[] | null;
12527
+ /**
12528
+ * Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
12529
+ */
12530
+ schemaItems: appConfigurationSchemaItemType[] | null;
12531
+ }
12532
+
11471
12533
  /**
11472
12534
  * Android certificate profile base.
11473
12535
  */
@@ -12687,6 +13749,10 @@ namespace reference.`microsoft.graph` {
12687
13749
  * Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
12688
13750
  */
12689
13751
  customKeyValueData: keyValuePair[] | null;
13752
+ /**
13753
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
13754
+ */
13755
+ lockdownExclusionList: string[] | null;
12690
13756
  /**
12691
13757
  * Microsoft Tunnel site ID.
12692
13758
  */
@@ -15069,6 +16135,10 @@ namespace reference.`microsoft.graph` {
15069
16135
  * Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.
15070
16136
  */
15071
16137
  fingerprint: string | null;
16138
+ /**
16139
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
16140
+ */
16141
+ lockdownExclusionList: string[] | null;
15072
16142
  /**
15073
16143
  * Microsoft Tunnel site ID.
15074
16144
  */
@@ -15708,10 +16778,13 @@ namespace reference.`microsoft.graph` {
15708
16778
  identifierUris: string[];
15709
16779
  info: informationalUrl | null;
15710
16780
  isDeviceOnlyAuthSupported: boolean | null;
16781
+ isDisabled: boolean | null;
15711
16782
  isFallbackPublicClient: boolean | null;
15712
16783
  keyCredentials: keyCredential[];
15713
16784
  logo: stream;
16785
+ managerApplications: guid;
15714
16786
  notes: string | null;
16787
+ onPremisesPublishing: onPremisesPublishing | null;
15715
16788
  optionalClaims: optionalClaims | null;
15716
16789
  parentalControlSettings: parentalControlSettings | null;
15717
16790
  passwordCredentials: passwordCredential[];
@@ -15729,6 +16802,7 @@ namespace reference.`microsoft.graph` {
15729
16802
  uniqueName: string | null;
15730
16803
  web: webApplication | null;
15731
16804
  @references appManagementPolicies: appManagementPolicy[];
16805
+ @references connectorGroup: connectorGroup | null;
15732
16806
  @references createdOnBehalfOf: directoryObject | null;
15733
16807
  @contains extensionProperties: extensionProperty[];
15734
16808
  @contains federatedIdentityCredentials: federatedIdentityCredential[];
@@ -15738,6 +16812,10 @@ namespace reference.`microsoft.graph` {
15738
16812
  @references tokenLifetimePolicies: tokenLifetimePolicy[];
15739
16813
  }
15740
16814
 
16815
+ @abstract
16816
+ @entity model applicationSegment extends entity {
16817
+ }
16818
+
15741
16819
  @entity model applicationTemplate extends entity {
15742
16820
  categories: string[] | null;
15743
16821
  configurationUris: configurationUri[] | null;
@@ -15790,6 +16868,10 @@ namespace reference.`microsoft.graph` {
15790
16868
  resourceId: guid | null;
15791
16869
  }
15792
16870
 
16871
+ @entity model approvedClientApp extends entity {
16872
+ displayName: string | null;
16873
+ }
16874
+
15793
16875
  @entity model appScope extends entity {
15794
16876
  displayName: string | null;
15795
16877
  type: string | null;
@@ -15963,12 +17045,43 @@ namespace reference.`microsoft.graph` {
15963
17045
  resources: auditResource[] | null;
15964
17046
  }
15965
17047
 
17048
+ @abstract
17049
+ @entity model authenticationCombinationConfiguration extends entity {
17050
+ appliesToCombinations: authenticationMethodModes[];
17051
+ }
17052
+
15966
17053
  @entity model authenticationContextClassReference extends entity {
15967
17054
  description: string | null;
15968
17055
  displayName: string | null;
15969
17056
  isAvailable: boolean | null;
15970
17057
  }
15971
17058
 
17059
+ @entity model authenticationMethodDevice extends entity {
17060
+ displayName: string | null;
17061
+ @contains hardwareOathDevices: hardwareOathTokenAuthenticationMethodDevice[];
17062
+ }
17063
+
17064
+ @entity model authenticationMethodModeDetail extends entity {
17065
+ authenticationMethod: baseAuthenticationMethod;
17066
+ displayName: string;
17067
+ }
17068
+
17069
+ @entity model authenticationMethodTarget extends entity {
17070
+ isRegistrationRequired: boolean;
17071
+ targetType: authenticationMethodTargetType;
17072
+ }
17073
+
17074
+ @entity model authenticationStrengthPolicy extends entity {
17075
+ allowedCombinations: authenticationMethodModes[];
17076
+ @computed createdDateTime: offsetDateTime;
17077
+ description: string | null;
17078
+ displayName: string;
17079
+ modifiedDateTime: offsetDateTime;
17080
+ policyType: authenticationStrengthPolicyType;
17081
+ requirementsSatisfied: authenticationStrengthRequirements;
17082
+ @contains combinationConfigurations: authenticationCombinationConfiguration[];
17083
+ }
17084
+
15972
17085
  @entity model authorizationPolicy extends policyBase {
15973
17086
  allowedToSignUpEmailBasedSubscriptions: boolean;
15974
17087
  allowedToUseSSPR: boolean;
@@ -15988,6 +17101,17 @@ namespace reference.`microsoft.graph` {
15988
17101
  @entity model azureADWindowsAutopilotDeploymentProfile extends windowsAutopilotDeploymentProfile {
15989
17102
  }
15990
17103
 
17104
+ @entity model bitlocker extends entity {
17105
+ @contains recoveryKeys: bitlockerRecoveryKey[];
17106
+ }
17107
+
17108
+ @entity model bitlockerRecoveryKey extends entity {
17109
+ @computed createdDateTime: offsetDateTime;
17110
+ deviceId: string | null;
17111
+ key: string;
17112
+ volumeType: volumeType | null;
17113
+ }
17114
+
15991
17115
  @entity model calendar extends entity {
15992
17116
  allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
15993
17117
  calendarGroupId: string | null;
@@ -16166,7 +17290,7 @@ namespace reference.`microsoft.graph` {
16166
17290
  */
16167
17291
  @entity model cloudCertificationAuthority extends entity {
16168
17292
  /**
16169
- * The URL to download the certification authority certificate. Read-only.
17293
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
16170
17294
  */
16171
17295
  certificateDownloadUrl: string | null;
16172
17296
  /**
@@ -16174,11 +17298,11 @@ namespace reference.`microsoft.graph` {
16174
17298
  */
16175
17299
  certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
16176
17300
  /**
16177
- * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
17301
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
16178
17302
  */
16179
17303
  certificateRevocationListUrl: string | null;
16180
17304
  /**
16181
- * The certificate signing request used to create an issuing certification authority with a root certification authority external to Microsoft Cloud PKI. The based-64 encoded certificate signing request can be downloaded through this property. After downloading the certificate signing request, it must be signed by the external root certifcation authority. Read-only.
17305
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
16182
17306
  */
16183
17307
  certificateSigningRequest: string | null;
16184
17308
  /**
@@ -16186,7 +17310,7 @@ namespace reference.`microsoft.graph` {
16186
17310
  */
16187
17311
  certificationAuthorityIssuerId: string | null;
16188
17312
  /**
16189
- * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
17313
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
16190
17314
  */
16191
17315
  certificationAuthorityIssuerUri: string | null;
16192
17316
  /**
@@ -16226,9 +17350,13 @@ namespace reference.`microsoft.graph` {
16226
17350
  */
16227
17351
  eTag: string | null;
16228
17352
  extendedKeyUsages: extendedKeyUsage[] | null;
17353
+ /**
17354
+ * The geographic region where a cloud certification authority (CA) is hosted. Read-only.
17355
+ */
17356
+ geographicRegion: string | null;
16229
17357
  issuerCommonName: string | null;
16230
17358
  /**
16231
- * The key platform used to store the certification authority keys. Read-only.
17359
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
16232
17360
  */
16233
17361
  keyPlatform: cloudCertificationAuthorityKeyPlatformType;
16234
17362
  /**
@@ -16240,7 +17368,7 @@ namespace reference.`microsoft.graph` {
16240
17368
  */
16241
17369
  localityName: string | null;
16242
17370
  /**
16243
- * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
17371
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
16244
17372
  */
16245
17373
  ocspResponderUri: string | null;
16246
17374
  /**
@@ -16260,11 +17388,11 @@ namespace reference.`microsoft.graph` {
16260
17388
  */
16261
17389
  rootCertificateCommonName: string | null;
16262
17390
  /**
16263
- * The SCEP server URL for device SCEP connections to request certificates. Read-only.
17391
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
16264
17392
  */
16265
17393
  scepServerUrl: string | null;
16266
17394
  /**
16267
- * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only. Supports $select.
17395
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
16268
17396
  */
16269
17397
  serialNumber: string | null;
16270
17398
  /**
@@ -16272,15 +17400,15 @@ namespace reference.`microsoft.graph` {
16272
17400
  */
16273
17401
  stateName: string | null;
16274
17402
  /**
16275
- * The subject name of the certificate. The subject is the target or intended beneficiary of the security being provided, such as a company or government entity. Read-only. Supports $orderby and $select.
17403
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
16276
17404
  */
16277
17405
  subjectName: string | null;
16278
17406
  /**
16279
- * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only. Supports $select.
17407
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
16280
17408
  */
16281
17409
  thumbprint: string | null;
16282
17410
  /**
16283
- * The end date time of the validity period of a certification authority certificate. Certificates cannot be used after this date time as they are longer valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only. Supports $orderby.
17411
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
16284
17412
  */
16285
17413
  validityEndDateTime: offsetDateTime | null;
16286
17414
  /**
@@ -16288,17 +17416,25 @@ namespace reference.`microsoft.graph` {
16288
17416
  */
16289
17417
  validityPeriodInYears: int32;
16290
17418
  /**
16291
- * The start date time of the validity period of a certification authority certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only. Supports $orderby.
17419
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
16292
17420
  */
16293
17421
  validityStartDateTime: offsetDateTime | null;
16294
17422
  /**
16295
- * The certification authority version, which is incremented each time the certification authority is renewed. Read-only.
17423
+ * Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
16296
17424
  */
16297
17425
  versionNumber: int32;
17426
+ /**
17427
+ * The currently active certification authority version. This navigation property provides direct access to the active version's details including certificate information, URLs, and validity periods. The active version is automatically included in the default response when retrieving a certification authority entity without requiring $expand. Read-only.
17428
+ */
17429
+ @references activeVersion: cloudCertificationAuthorityVersion | null;
16298
17430
  /**
16299
17431
  * Required OData property to expose leaf certificate API.
16300
17432
  */
16301
17433
  @references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
17434
+ /**
17435
+ * The collection of all certification authority versions, including active, staged, retired, and expired versions. This navigation property provides access to the full version history of the certification authority. Use $expand=versions to include this collection in the response. Read-only.
17436
+ */
17437
+ @references versions: cloudCertificationAuthorityVersion[];
16302
17438
  }
16303
17439
 
16304
17440
  /**
@@ -16313,6 +17449,10 @@ namespace reference.`microsoft.graph` {
16313
17449
  * The URI of the certification authority that issued the certificate. Read-only.
16314
17450
  */
16315
17451
  certificationAuthorityIssuerUri: string | null;
17452
+ /**
17453
+ * The version number of the certification authority that issued this leaf certificate. Read-only.
17454
+ */
17455
+ certificationAuthorityVersionNumber: int32;
16316
17456
  /**
16317
17457
  * URL to find the relevant Certificate Revocation List for this certificate. Read-only.
16318
17458
  */
@@ -16378,6 +17518,88 @@ namespace reference.`microsoft.graph` {
16378
17518
  * The start date time of the validity period of a certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only. Supports $orderby.
16379
17519
  */
16380
17520
  validityStartDateTime: offsetDateTime | null;
17521
+ /**
17522
+ * The certification authority version that issued this leaf certificate. Read-only.
17523
+ */
17524
+ @references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
17525
+ }
17526
+
17527
+ /**
17528
+ * Entity that represents version-specific properties of a cloud certification authority.
17529
+ */
17530
+ @entity model cloudCertificationAuthorityVersion extends entity {
17531
+ /**
17532
+ * The URL to download the certification authority certificate. Read-only.
17533
+ */
17534
+ certificateDownloadUrl: string | null;
17535
+ /**
17536
+ * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
17537
+ */
17538
+ certificateRevocationListUrl: string | null;
17539
+ /**
17540
+ * The certificate signing request used to create an issuing certification authority with a root certification authority external to Microsoft Cloud PKI. The based-64 encoded certificate signing request can be downloaded through this property. After downloading the certificate signing request, it must be signed by the external root certifcation authority. Read-only.
17541
+ */
17542
+ certificateSigningRequest: string | null;
17543
+ /**
17544
+ * The certification authority identifier. Read-only.
17545
+ */
17546
+ certificationAuthorityId: string;
17547
+ /**
17548
+ * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
17549
+ */
17550
+ certificationAuthorityIssuerUri: string | null;
17551
+ /**
17552
+ * The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
17553
+ */
17554
+ certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
17555
+ /**
17556
+ * The date and time when the certification authority version is scheduled to be decommissioned. Only applicable for staged certification authority versions. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
17557
+ */
17558
+ decommissionDateTime: offsetDateTime | null;
17559
+ /**
17560
+ * The key platform used to store the certification authority keys. Read-only.
17561
+ */
17562
+ keyPlatform: cloudCertificationAuthorityKeyPlatformType;
17563
+ /**
17564
+ * Last modification date and time of this certification authority entity instance. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
17565
+ */
17566
+ @computed lastModifiedDateTime: offsetDateTime | null;
17567
+ /**
17568
+ * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
17569
+ */
17570
+ ocspResponderUri: string | null;
17571
+ /**
17572
+ * The SCEP server URL for device SCEP connections to request certificates. Read-only.
17573
+ */
17574
+ scepServerUrl: string | null;
17575
+ /**
17576
+ * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
17577
+ */
17578
+ serialNumber: string | null;
17579
+ /**
17580
+ * The subject name of the certificate. The subject is the target or intended beneficiary of the security being provided, such as a company or government entity. Read-only.
17581
+ */
17582
+ subjectName: string | null;
17583
+ /**
17584
+ * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
17585
+ */
17586
+ thumbprint: string | null;
17587
+ /**
17588
+ * The usage details associated with this certification authority version, including reporting data such as the number of leaf certificates issued during the staged period. Read-only.
17589
+ */
17590
+ usage: cloudCertificationAuthorityVersionUsage | null;
17591
+ /**
17592
+ * The end date time of the validity period of a certification authority certificate. Certificates cannot be used after this date time as they are longer valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
17593
+ */
17594
+ validityEndDateTime: offsetDateTime | null;
17595
+ /**
17596
+ * The start date time of the validity period of a certification authority certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
17597
+ */
17598
+ validityStartDateTime: offsetDateTime | null;
17599
+ /**
17600
+ * The version number assigned to this specific certification authority version entity. Read-only.
17601
+ */
17602
+ versionNumber: int32;
16381
17603
  }
16382
17604
 
16383
17605
  /**
@@ -16618,6 +17840,23 @@ namespace reference.`microsoft.graph` {
16618
17840
  @computed lastModifiedDateTime: offsetDateTime;
16619
17841
  }
16620
17842
 
17843
+ @entity model connector extends entity {
17844
+ externalIp: string;
17845
+ machineName: string;
17846
+ status: connectorStatus;
17847
+ version: string;
17848
+ @references memberOf: connectorGroup[];
17849
+ }
17850
+
17851
+ @entity model connectorGroup extends entity {
17852
+ connectorGroupType: connectorGroupType;
17853
+ isDefault: boolean;
17854
+ name: string;
17855
+ region: connectorGroupRegion | null;
17856
+ @references applications: application[];
17857
+ @references members: connector[];
17858
+ }
17859
+
16621
17860
  @open
16622
17861
  @entity model contact extends outlookItem {
16623
17862
  assistantName: string | null;
@@ -16669,6 +17908,10 @@ namespace reference.`microsoft.graph` {
16669
17908
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
16670
17909
  }
16671
17910
 
17911
+ @entity model contactMergeSuggestions extends entity {
17912
+ isEnabled: boolean | null;
17913
+ }
17914
+
16672
17915
  @open
16673
17916
  @entity model contract extends directoryObject {
16674
17917
  contractType: string | null;
@@ -16698,6 +17941,14 @@ namespace reference.`microsoft.graph` {
16698
17941
  @contains posts: post[];
16699
17942
  }
16700
17943
 
17944
+ @entity model corsConfiguration_v2 extends entity {
17945
+ allowedHeaders: string[] | null;
17946
+ allowedMethods: string[] | null;
17947
+ allowedOrigins: string[] | null;
17948
+ maxAgeInSeconds: int32 | null;
17949
+ resource: string;
17950
+ }
17951
+
16701
17952
  @entity model countryNamedLocation extends namedLocation {
16702
17953
  countriesAndRegions: string[];
16703
17954
  countryLookupMethod: countryLookupMethodType | null;
@@ -16752,15 +18003,6 @@ namespace reference.`microsoft.graph` {
16752
18003
  @contains allowedValues: allowedValue[];
16753
18004
  }
16754
18005
 
16755
- @abstract
16756
- @entity model customSecurityAttributeExemption extends entity {
16757
- operator: customSecurityAttributeComparisonOperator | null;
16758
- }
16759
-
16760
- @entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
16761
- value: string | null;
16762
- }
16763
-
16764
18006
  /**
16765
18007
  * Data sharing consent information.
16766
18008
  */
@@ -18269,6 +19511,10 @@ namespace reference.`microsoft.graph` {
18269
19511
  * The timestamp of when the device compliance script was modified. This property is read-only.
18270
19512
  */
18271
19513
  @computed lastModifiedDateTime: offsetDateTime;
19514
+ /**
19515
+ * Indicates the operating system platform type that this compliance script targets.
19516
+ */
19517
+ platform: deviceComplianceScriptPlatformType | null;
18272
19518
  /**
18273
19519
  * Name of the device compliance script publisher
18274
19520
  */
@@ -18278,7 +19524,7 @@ namespace reference.`microsoft.graph` {
18278
19524
  */
18279
19525
  roleScopeTagIds: string[] | null;
18280
19526
  /**
18281
- * Indicate whether PowerShell script(s) should run as 32-bit
19527
+ * Specifies whether the PowerShell script runs in 32-bit mode. When set to true, the script runs in a 32-bit PowerShell host. Default is false.
18282
19528
  */
18283
19529
  runAs32Bit: boolean;
18284
19530
  /**
@@ -19441,6 +20687,13 @@ namespace reference.`microsoft.graph` {
19441
20687
  userName: string | null;
19442
20688
  }
19443
20689
 
20690
+ @entity model deviceLocalCredentialInfo extends entity {
20691
+ credentials: deviceLocalCredential[];
20692
+ deviceName: string;
20693
+ @computed lastBackupDateTime: offsetDateTime;
20694
+ refreshDateTime: offsetDateTime;
20695
+ }
20696
+
19444
20697
  /**
19445
20698
  * Windows Log Collection request entity.
19446
20699
  */
@@ -19487,6 +20740,9 @@ namespace reference.`microsoft.graph` {
19487
20740
  status: appLogUploadState;
19488
20741
  }
19489
20742
 
20743
+ /**
20744
+ * Singleton that acts as container for a collection of Resource Access entities.
20745
+ */
19490
20746
  @entity model deviceManagement extends entity {
19491
20747
  /**
19492
20748
  * The date & time when tenant data moved between scaleunits.
@@ -19572,6 +20828,10 @@ namespace reference.`microsoft.graph` {
19572
20828
  * The summary state of ATP onboarding state for this account.
19573
20829
  */
19574
20830
  @contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
20831
+ /**
20832
+ * Android App Configurations Schema entity.
20833
+ */
20834
+ @contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
19575
20835
  /**
19576
20836
  * Android device owner enrollment profile entities.
19577
20837
  */
@@ -19944,6 +21204,9 @@ namespace reference.`microsoft.graph` {
19944
21204
  * The remote assistance settings singleton
19945
21205
  */
19946
21206
  @contains remoteAssistanceSettings: remoteAssistanceSettings | null;
21207
+ /**
21208
+ * Reports singleton
21209
+ */
19947
21210
  @contains reports: deviceManagementReports | null;
19948
21211
  /**
19949
21212
  * Collection of resource access settings associated with account.
@@ -21433,6 +22696,9 @@ namespace reference.`microsoft.graph` {
21433
22696
  whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
21434
22697
  }
21435
22698
 
22699
+ /**
22700
+ * Singleton entity that acts as a container for all reports functionality.
22701
+ */
21436
22702
  @entity model deviceManagementReports extends entity {
21437
22703
  /**
21438
22704
  * Entity representing the configuration of a cached report.
@@ -21898,6 +23164,16 @@ namespace reference.`microsoft.graph` {
21898
23164
  troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
21899
23165
  }
21900
23166
 
23167
+ @entity model deviceRegistrationPolicy extends entity {
23168
+ azureADJoin: azureADJoinPolicy | null;
23169
+ azureADRegistration: azureADRegistrationPolicy | null;
23170
+ description: string | null;
23171
+ displayName: string | null;
23172
+ localAdminPassword: localAdminPasswordSettings | null;
23173
+ multiFactorAuthConfiguration: multiFactorAuthConfiguration;
23174
+ userDeviceQuota: int32;
23175
+ }
23176
+
21901
23177
  /**
21902
23178
  * This is the base class for Setup Configuration. Setup configurations are platform specific and individual per-platform setup configurations inherit from here.
21903
23179
  */
@@ -21998,9 +23274,14 @@ namespace reference.`microsoft.graph` {
21998
23274
  @entity model directory extends entity {
21999
23275
  @contains administrativeUnits: administrativeUnit[];
22000
23276
  @contains attributeSets: attributeSet[];
23277
+ @contains authenticationMethodDevices: authenticationMethodDevice | null;
22001
23278
  @contains certificateAuthorities: certificateAuthorityPath | null;
22002
23279
  @contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
22003
23280
  @contains deletedItems: directoryObject[];
23281
+ @contains deviceLocalCredentials: deviceLocalCredentialInfo[];
23282
+
23283
+ @graphDeprecated("DirectoryFeatureRolloutPolicies")
23284
+ @contains featureRolloutPolicies: featureRolloutPolicy[];
22004
23285
  @contains federationConfigurations: identityProviderBase[];
22005
23286
  @contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
22006
23287
  @contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
@@ -22180,6 +23461,14 @@ namespace reference.`microsoft.graph` {
22180
23461
  windowsSMode: windowsSModeConfiguration;
22181
23462
  }
22182
23463
 
23464
+ @entity model educationalActivity extends itemFacet {
23465
+ completionMonthYear: offsetDateTime | null;
23466
+ endMonthYear: offsetDateTime | null;
23467
+ institution: institutionData | null;
23468
+ program: educationalActivityDetail | null;
23469
+ startMonthYear: offsetDateTime | null;
23470
+ }
23471
+
22183
23472
  /**
22184
23473
  * A pool represents a group of embedded SIM activation codes.
22185
23474
  */
@@ -22520,6 +23809,15 @@ namespace reference.`microsoft.graph` {
22520
23809
  allowExternalIdentitiesToLeave: boolean;
22521
23810
  }
22522
23811
 
23812
+ @entity model featureRolloutPolicy extends entity {
23813
+ description: string | null;
23814
+ displayName: string;
23815
+ feature: stagedFeatureName;
23816
+ isAppliedToOrganization: boolean;
23817
+ isEnabled: boolean;
23818
+ @contains appliesTo: directoryObject[];
23819
+ }
23820
+
22523
23821
  @entity model federatedIdentityCredential extends entity {
22524
23822
  audiences: string[];
22525
23823
  claimsMatchingExpression: federatedIdentityExpression | null;
@@ -22533,6 +23831,10 @@ namespace reference.`microsoft.graph` {
22533
23831
  validatingDomains: validatingDomains;
22534
23832
  }
22535
23833
 
23834
+ @entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
23835
+ allowedAAGUIDs: string[];
23836
+ }
23837
+
22536
23838
  @entity model fileAttachment extends attachment {
22537
23839
  contentBytes: binary | null;
22538
23840
  contentId: string | null;
@@ -22569,6 +23871,7 @@ namespace reference.`microsoft.graph` {
22569
23871
  membershipRuleProcessingState: string | null;
22570
23872
  membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
22571
23873
  onPremisesDomainName: string | null;
23874
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
22572
23875
  onPremisesLastSyncDateTime: offsetDateTime | null;
22573
23876
  onPremisesNetBiosName: string | null;
22574
23877
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
@@ -22590,6 +23893,7 @@ namespace reference.`microsoft.graph` {
22590
23893
  unseenCount: int32 | null;
22591
23894
  unseenMessagesCount: int32 | null;
22592
23895
  visibility: string | null;
23896
+ welcomeMessageEnabled: boolean | null;
22593
23897
  writebackConfiguration: groupWritebackConfiguration | null;
22594
23898
  @contains acceptedSenders: directoryObject[];
22595
23899
  @contains appRoleAssignments: appRoleAssignment[];
@@ -22607,6 +23911,9 @@ namespace reference.`microsoft.graph` {
22607
23911
  @contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
22608
23912
  @references owners: directoryObject[];
22609
23913
  @contains permissionGrants: resourceSpecificPermissionGrant[];
23914
+ @contains photo: profilePhoto | null;
23915
+ @contains photos: profilePhoto[];
23916
+ @contains planner: plannerGroup | null;
22610
23917
  @contains rejectedSenders: directoryObject[];
22611
23918
  @contains settings: directorySetting[];
22612
23919
  @contains threads: conversationThread[];
@@ -23585,6 +24892,19 @@ namespace reference.`microsoft.graph` {
23585
24892
  userName: string | null;
23586
24893
  }
23587
24894
 
24895
+ @entity model hardwareOathTokenAuthenticationMethodDevice extends authenticationMethodDevice {
24896
+ assignedTo: identity | null;
24897
+ hashFunction: hardwareOathTokenHashFunction | null;
24898
+ @computed lastUsedDateTime: offsetDateTime | null;
24899
+ manufacturer: string;
24900
+ `model`: string;
24901
+ secretKey: string | null;
24902
+ serialNumber: string;
24903
+ status: hardwareOathTokenStatus | null;
24904
+ timeIntervalInSeconds: int32;
24905
+ @references assignTo: user | null;
24906
+ }
24907
+
23588
24908
  /**
23589
24909
  * Device BIOS password information for devices with managed BIOS and firmware configuration, which provides device serial number, list of previous passwords, and current password.
23590
24910
  */
@@ -23822,11 +25142,20 @@ namespace reference.`microsoft.graph` {
23822
25142
  senderEmailAddress: emailAddress | null;
23823
25143
  }
23824
25144
 
25145
+ @entity model informationProtection extends MsGraph.SharedModels.entity {
25146
+ @contains bitlocker: bitlocker | null;
25147
+ }
25148
+
23825
25149
  @entity model inheritablePermission extends MsGraph.SharedModels.entity {
23826
- inheritableScopes: inheritableScopes;
25150
+ inheritableScopes: inheritableScopes | null;
23827
25151
  @computed @key resourceAppId: string;
23828
25152
  }
23829
25153
 
25154
+ @entity model insightsSettings extends entity {
25155
+ disabledForGroup: string | null;
25156
+ isEnabledInOrganization: boolean | null;
25157
+ }
25158
+
23830
25159
  @entity model internalDomainFederation extends samlOrWsFedProvider {
23831
25160
  activeSignInUri: string | null;
23832
25161
  federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
@@ -23986,6 +25315,20 @@ namespace reference.`microsoft.graph` {
23986
25315
  target: deviceAndAppManagementAssignmentTarget | null;
23987
25316
  }
23988
25317
 
25318
+ @entity model invitation extends entity {
25319
+ invitedUserDisplayName: string | null;
25320
+ invitedUserEmailAddress: string;
25321
+ invitedUserMessageInfo: invitedUserMessageInfo | null;
25322
+ invitedUserType: string | null;
25323
+ inviteRedeemUrl: string | null;
25324
+ inviteRedirectUrl: string;
25325
+ resetRedemption: boolean | null;
25326
+ sendInvitationMessage: boolean | null;
25327
+ status: string | null;
25328
+ @references invitedUser: user | null;
25329
+ @references invitedUserSponsors: directoryObject[];
25330
+ }
25331
+
23989
25332
  /**
23990
25333
  * Device Configuration.
23991
25334
  */
@@ -25389,7 +26732,7 @@ namespace reference.`microsoft.graph` {
25389
26732
  }
25390
26733
 
25391
26734
  /**
25392
- * A class containing the properties used for iOS LOB app provisioning configuration PolicySetItem.
26735
+ * A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
25393
26736
  */
25394
26737
  @entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
25395
26738
  }
@@ -26019,15 +27362,84 @@ namespace reference.`microsoft.graph` {
26019
27362
  @references rootCertificateForServerValidation: iosTrustedRootCertificate | null;
26020
27363
  }
26021
27364
 
27365
+ @entity model ipApplicationSegment extends applicationSegment {
27366
+ action: actionType;
27367
+ destinationHost: string | null;
27368
+ destinationType: privateNetworkDestinationType | null;
27369
+ port: int32 | null;
27370
+ ports: string[] | null;
27371
+ protocol: privateNetworkProtocol | null;
27372
+ @references application: application | null;
27373
+ }
27374
+
26022
27375
  @entity model ipNamedLocation extends namedLocation {
26023
27376
  ipRanges: ipRange[];
26024
27377
  isTrusted: boolean;
26025
27378
  }
26026
27379
 
27380
+ @entity model itemAddress extends itemFacet {
27381
+ detail: physicalAddress | null;
27382
+ displayName: string | null;
27383
+ geoCoordinates: geoCoordinates | null;
27384
+ }
27385
+
26027
27386
  @entity model itemAttachment extends attachment {
26028
27387
  @contains item: outlookItem | null;
26029
27388
  }
26030
27389
 
27390
+ @entity model itemEmail extends itemFacet {
27391
+ address: string | null;
27392
+ displayName: string | null;
27393
+ type: emailType;
27394
+ }
27395
+
27396
+ @abstract
27397
+ @entity model itemFacet extends entity {
27398
+ allowedAudiences: allowedAudiences | null;
27399
+ createdBy: identitySet | null;
27400
+ @computed createdDateTime: offsetDateTime | null;
27401
+ inference: inferenceData | null;
27402
+ isSearchable: boolean | null;
27403
+ lastModifiedBy: identitySet | null;
27404
+ @computed lastModifiedDateTime: offsetDateTime | null;
27405
+ source: personDataSources | null;
27406
+ sources: profileSourceAnnotation[] | null;
27407
+ }
27408
+
27409
+ @entity model itemPatent extends itemFacet {
27410
+ description: string | null;
27411
+ displayName: string | null;
27412
+ isPending: boolean | null;
27413
+ issuedDate: offsetDateTime | null;
27414
+ issuingAuthority: string | null;
27415
+ number: string | null;
27416
+ webUrl: string | null;
27417
+ }
27418
+
27419
+ @entity model itemPhone extends itemFacet {
27420
+ displayName: string | null;
27421
+ number: string | null;
27422
+ type: phoneType;
27423
+ }
27424
+
27425
+ @entity model itemPublication extends itemFacet {
27426
+ description: string | null;
27427
+ displayName: string | null;
27428
+ publishedDate: offsetDateTime | null;
27429
+ publisher: string | null;
27430
+ thumbnailUrl: string | null;
27431
+ webUrl: string | null;
27432
+ }
27433
+
27434
+ @entity model languageProficiency extends itemFacet {
27435
+ displayName: string | null;
27436
+ proficiency: languageProficiencyLevel | null;
27437
+ reading: languageProficiencyLevel | null;
27438
+ spoken: languageProficiencyLevel | null;
27439
+ tag: string | null;
27440
+ thumbnailUrl: string | null;
27441
+ written: languageProficiencyLevel | null;
27442
+ }
26031
27443
 
26032
27444
  @entity model licenseDetails extends entity {
26033
27445
  servicePlans: servicePlanInfo[];
@@ -26061,6 +27473,14 @@ namespace reference.`microsoft.graph` {
26061
27473
  subject: string;
26062
27474
  }
26063
27475
 
27476
+ @entity model longRunningOperation extends entity {
27477
+ @computed createdDateTime: offsetDateTime | null;
27478
+ @computed lastActionDateTime: offsetDateTime | null;
27479
+ resourceLocation: string | null;
27480
+ status: longRunningOperationStatus | null;
27481
+ statusDetail: string | null;
27482
+ }
27483
+
26064
27484
  /**
26065
27485
  * Mac OS certificate profile.
26066
27486
  */
@@ -26093,87 +27513,91 @@ namespace reference.`microsoft.graph` {
26093
27513
  */
26094
27514
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
26095
27515
  /**
26096
- * MDATP Require Mobile Threat Protection minimum risk level to report noncompliance.
27516
+ * Specifies the Microsoft Defender for Endpoint (MDE) risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
26097
27517
  */
26098
27518
  advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
26099
27519
  /**
26100
- * Require that devices have enabled device threat protection.
27520
+ * Custom compliance configuration for the policy (script identifier and rules content). When set, custom compliance rules are evaluated and the device is marked noncompliant when any rule evaluates to noncompliant. When not set, no custom compliance rules are evaluated. Default is null, when set to default it is not evaluated.
27521
+ */
27522
+ deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
27523
+ /**
27524
+ * Specifies whether Mobile Threat Defense (MTD) must be enabled. When set to true, the device is marked noncompliant if MTD isn't enabled or doesn't report a threat level. When false, threat protection level requirements aren't enforced. Default is false.
26101
27525
  */
26102
27526
  deviceThreatProtectionEnabled: boolean;
26103
27527
  /**
26104
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
27528
+ * Specifies the Mobile Threat Defense risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
26105
27529
  */
26106
27530
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
26107
27531
  /**
26108
- * Corresponds to the “Block all incoming connections option.
27532
+ * Specifies whether Block all incoming connections must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
26109
27533
  */
26110
27534
  firewallBlockAllIncoming: boolean;
26111
27535
  /**
26112
- * Whether the firewall should be enabled or not.
27536
+ * Specifies whether the macOS application firewall must be enabled. When set to true, the device is marked noncompliant if the firewall is disabled. Default is false.
26113
27537
  */
26114
27538
  firewallEnabled: boolean;
26115
27539
  /**
26116
- * Corresponds to Enable stealth mode.”
27540
+ * Specifies whether Enable stealth mode must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
26117
27541
  */
26118
27542
  firewallEnableStealthMode: boolean;
26119
27543
  /**
26120
- * System and Privacy setting that determines which download locations apps can be run from on a macOS device.
27544
+ * Specifies the Gatekeeper app source policy (System Settings > Privacy & Security) that determines which app download locations are allowed (for example, macAppStore or anywhere). When set to a value other than notConfigured, the device is marked noncompliant if its Gatekeeper setting allows apps from sources not permitted by this value. Default is notConfigured.
26121
27545
  */
26122
27546
  gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
26123
27547
  /**
26124
- * Maximum MacOS build version.
27548
+ * Specifies the maximum allowed macOS build version. When set, the device is marked noncompliant if its build version is higher than this value. Default is null, when set to default it is not evaluated.
26125
27549
  */
26126
27550
  osMaximumBuildVersion: string | null;
26127
27551
  /**
26128
- * Maximum MacOS version.
27552
+ * Specifies the maximum allowed macOS version. When set, the device is marked noncompliant if its OS version is higher than this value. Default is null, when set to default it is not evaluated.
26129
27553
  */
26130
27554
  osMaximumVersion: string | null;
26131
27555
  /**
26132
- * Minimum MacOS build version.
27556
+ * Specifies the minimum allowed macOS build version. When set, the device is marked noncompliant if its build version is lower than this value. Default is null, when set to default it is not evaluated.
26133
27557
  */
26134
27558
  osMinimumBuildVersion: string | null;
26135
27559
  /**
26136
- * Minimum MacOS version.
27560
+ * Specifies the minimum allowed macOS version. When set, the device is marked noncompliant if its OS version is lower than this value. Default is null, when set to default it is not evaluated.
26137
27561
  */
26138
27562
  osMinimumVersion: string | null;
26139
27563
  /**
26140
- * Indicates whether or not to block simple passwords.
27564
+ * Specifies whether simple passwords such as 1111 or 1234 are allowed. When set to true, the device is marked noncompliant if it allows simple passwords. Default is false.
26141
27565
  */
26142
27566
  passwordBlockSimple: boolean;
26143
27567
  /**
26144
- * Number of days before the password expires. Valid values 1 to 65535
27568
+ * Specifies the maximum password age in days. When set, the device is marked noncompliant if the password age exceeds this value. Valid values are 1 to 65535. Default is null, when set to default it is not evaluated. Valid values 1 to 65535
26145
27569
  */
26146
27570
  passwordExpirationDays: int32 | null;
26147
27571
  /**
26148
- * The number of character sets required in the password.
27572
+ * Specifies the minimum number of character sets required in the password. When set, the device is marked noncompliant if the password doesn't meet this requirement. Default is null, when set to default it is not evaluated.
26149
27573
  */
26150
27574
  passwordMinimumCharacterSetCount: int32 | null;
26151
27575
  /**
26152
- * Minimum length of password. Valid values 4 to 14
27576
+ * Specifies the minimum password length. When set, the device is marked noncompliant if the password length is less than this value. Valid values are 4 to 14. Default is null, when set to default it is not evaluated. Valid values 4 to 14
26153
27577
  */
26154
27578
  passwordMinimumLength: int32 | null;
26155
27579
  /**
26156
- * Minutes of inactivity before a password is required.
27580
+ * Specifies the maximum minutes of inactivity before a password is required to unlock the device. When set, the device is marked noncompliant if it allows a longer inactivity period. Default is null, when set to default it is not evaluated.
26157
27581
  */
26158
27582
  passwordMinutesOfInactivityBeforeLock: int32 | null;
26159
27583
  /**
26160
- * Number of previous passwords to block. Valid values 1 to 24
27584
+ * Specifies the number of previous passwords that can't be reused. When set, the device is marked noncompliant if it doesn't enforce this history count. Valid values are 1 to 24. Default is null, when set to default it is not evaluated. Valid values 1 to 24
26161
27585
  */
26162
27586
  passwordPreviousPasswordBlockCount: int32 | null;
26163
27587
  /**
26164
- * Whether or not to require a password.
27588
+ * Specifies whether a device password is required. When set to true, the device is marked noncompliant if a password isn't configured. Default is false.
26165
27589
  */
26166
27590
  passwordRequired: boolean;
26167
27591
  /**
26168
- * The required password type.
27592
+ * Specifies the required password type (for example, deviceDefault or alphanumeric). When set to a value other than deviceDefault, the device is marked noncompliant if the password type doesn't match. Default is deviceDefault.
26169
27593
  */
26170
27594
  passwordRequiredType: requiredPasswordType;
26171
27595
  /**
26172
- * Require encryption on Mac OS devices.
27596
+ * Specifies whether storage encryption is required on macOS devices. When set to true, the device is marked noncompliant if storage isn't encrypted. Default is false.
26173
27597
  */
26174
27598
  storageRequireEncryption: boolean;
26175
27599
  /**
26176
- * Require that devices have enabled system integrity protection.
27600
+ * Specifies whether System Integrity Protection must be enabled. When set to true, the device is marked noncompliant if System Integrity Protection is disabled. Default is false.
26177
27601
  */
26178
27602
  systemIntegrityProtectionEnabled: boolean;
26179
27603
  }
@@ -27919,6 +29343,10 @@ namespace reference.`microsoft.graph` {
27919
29343
  * Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
27920
29344
  */
27921
29345
  protectedMessagingRedirectAppType: messagingRedirectAppType;
29346
+ /**
29347
+ * Indicates whether Microsoft Purview content evaluation is required before a managed app performs an outgoing data sharing action. Default value is notRequired. Possible values are: notRequired, requiredWhenOnline, required, unknownFutureValue.
29348
+ */
29349
+ purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
27922
29350
  /**
27923
29351
  * Indicates whether users may use the "Save As" menu item to save a copy of protected files.
27924
29352
  */
@@ -29986,6 +31414,10 @@ namespace reference.`microsoft.graph` {
29986
31414
  * When TRUE, indicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for Android devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
29987
31415
  */
29988
31416
  androidMobileApplicationManagementEnabled: boolean;
31417
+ /**
31418
+ * When TRUE, indicates that the Mobile Threat Defense partner is granted the Mobile Threat Defense role on enrolled Android Corporate Owned Business Only and Corporate Owned Personally Enabled devices. When FALSE, indicates that the Mobile Threat Defense partner is not granted the Mobile Threat Defense role. Default value is FALSE.
31419
+ */
31420
+ grantMobileThreatDefensePartnerRole: boolean;
29989
31421
  /**
29990
31422
  * When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
29991
31423
  */
@@ -30002,6 +31434,10 @@ namespace reference.`microsoft.graph` {
30002
31434
  * DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
30003
31435
  */
30004
31436
  @computed lastHeartbeatDateTime: offsetDateTime;
31437
+ /**
31438
+ * When TRUE, indicates that the Mobile Threat Defense partner will be automatically launched during Android Corporate Owned Business Only and Corporate Owned Personally Enabled device setup. When FALSE, indicates that the Mobile Threat Defense partner will not be automatically launched during setup. Default value is FALSE.
31439
+ */
31440
+ launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
30005
31441
  /**
30006
31442
  * When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a Mac device compliant. When FALSE, indicates that Intune may mark a Mac device compliant prior to receiving data from the Mobile Threat Defense partner. Default value is FALSE.
30007
31443
  */
@@ -30186,6 +31622,22 @@ namespace reference.`microsoft.graph` {
30186
31622
  useSharedComputerActivation: boolean;
30187
31623
  }
30188
31624
 
31625
+ @entity model onPremisesAgent extends entity {
31626
+ externalIp: string;
31627
+ machineName: string;
31628
+ status: agentStatus;
31629
+ supportedPublishingTypes: onPremisesPublishingType[];
31630
+ @references agentGroups: onPremisesAgentGroup[];
31631
+ }
31632
+
31633
+ @entity model onPremisesAgentGroup extends entity {
31634
+ displayName: string;
31635
+ isDefault: boolean;
31636
+ publishingType: onPremisesPublishingType;
31637
+ @references agents: onPremisesAgent[];
31638
+ @references publishedResources: publishedResource[];
31639
+ }
31640
+
30189
31641
  /**
30190
31642
  * Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant.
30191
31643
  */
@@ -30213,6 +31665,19 @@ namespace reference.`microsoft.graph` {
30213
31665
  features: onPremisesDirectorySynchronizationFeature;
30214
31666
  }
30215
31667
 
31668
+ @entity model onPremisesPublishingProfile extends entity {
31669
+ hybridAgentUpdaterConfiguration: hybridAgentUpdaterConfiguration | null;
31670
+ isDefaultAccessEnabled: boolean | null;
31671
+ isEnabled: boolean | null;
31672
+ @contains agentGroups: onPremisesAgentGroup[];
31673
+ @contains agents: onPremisesAgent[];
31674
+ @references applicationSegments: ipApplicationSegment[];
31675
+ @contains connectorGroups: connectorGroup[];
31676
+ @contains connectors: connector[];
31677
+ @contains publishedResources: publishedResource[];
31678
+ @contains sensors: privateAccessSensor[];
31679
+ }
31680
+
30216
31681
  @entity model onPremisesSyncBehavior extends entity {
30217
31682
  isCloudManaged: boolean;
30218
31683
  }
@@ -30336,6 +31801,7 @@ namespace reference.`microsoft.graph` {
30336
31801
  @references certificateBasedAuthConfiguration: certificateBasedAuthConfiguration[];
30337
31802
  @contains extensions: extension[];
30338
31803
  @contains partnerInformation: partnerInformation | null;
31804
+ @contains settings: organizationSettings | null;
30339
31805
  }
30340
31806
 
30341
31807
  @entity model organizationalBranding extends organizationalBrandingProperties {
@@ -30380,6 +31846,14 @@ namespace reference.`microsoft.graph` {
30380
31846
  usernameHintText: string | null;
30381
31847
  }
30382
31848
 
31849
+ @entity model organizationSettings extends entity {
31850
+ @contains contactInsights: insightsSettings | null;
31851
+
31852
+ @graphDeprecated("Beta:ItemInsightsOranizationSettings")
31853
+ @contains itemInsights: insightsSettings | null;
31854
+ @contains peopleInsights: insightsSettings | null;
31855
+ }
31856
+
30383
31857
  @open
30384
31858
  @entity model orgContact extends directoryObject {
30385
31859
  addresses: physicalOfficeAddress[] | null;
@@ -30485,6 +31959,9 @@ namespace reference.`microsoft.graph` {
30485
31959
  supportUrl: string | null;
30486
31960
  }
30487
31961
 
31962
+ @entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
31963
+ allowedPasskeyProfiles: guid | null;
31964
+ }
30488
31965
 
30489
31966
  /**
30490
31967
  * A class containing the properties used for Payload Compatible Assignment Filter.
@@ -30496,6 +31973,10 @@ namespace reference.`microsoft.graph` {
30496
31973
  payloadType: assignmentFilterPayloadType;
30497
31974
  }
30498
31975
 
31976
+ @entity model peopleAdminSettings extends entity {
31977
+ @contains itemInsights: insightsSettings | null;
31978
+ }
31979
+
30499
31980
  @entity model permissionGrantConditionSet extends entity {
30500
31981
  clientApplicationIds: string[] | null;
30501
31982
  clientApplicationPublisherIds: string[] | null;
@@ -30542,6 +32023,217 @@ namespace reference.`microsoft.graph` {
30542
32023
  yomiCompany: string | null;
30543
32024
  }
30544
32025
 
32026
+ @entity model personAnnotation extends itemFacet {
32027
+ detail: itemBody | null;
32028
+ displayName: string | null;
32029
+ thumbnailUrl: string | null;
32030
+ }
32031
+
32032
+ @entity model personAnnualEvent extends itemFacet {
32033
+ date: offsetDateTime | null;
32034
+ displayName: string | null;
32035
+ type: personAnnualEventType | null;
32036
+ }
32037
+
32038
+ @entity model personAward extends itemFacet {
32039
+ description: string | null;
32040
+ displayName: string | null;
32041
+ issuedDate: offsetDateTime | null;
32042
+ issuingAuthority: string | null;
32043
+ thumbnailUrl: string | null;
32044
+ webUrl: string | null;
32045
+ }
32046
+
32047
+ @entity model personCertification extends itemFacet {
32048
+ certificationId: string | null;
32049
+ description: string | null;
32050
+ displayName: string | null;
32051
+ endDate: offsetDateTime | null;
32052
+ issuedDate: offsetDateTime | null;
32053
+ issuingAuthority: string | null;
32054
+ issuingCompany: string | null;
32055
+ startDate: offsetDateTime | null;
32056
+ thumbnailUrl: string | null;
32057
+ webUrl: string | null;
32058
+ }
32059
+
32060
+ @open
32061
+ @entity model personExtension extends extension {
32062
+ }
32063
+
32064
+ @entity model personInterest extends itemFacet {
32065
+ categories: string[] | null;
32066
+ collaborationTags: string[] | null;
32067
+ description: string | null;
32068
+ displayName: string | null;
32069
+ thumbnailUrl: string | null;
32070
+ webUrl: string | null;
32071
+ }
32072
+
32073
+ @entity model personName extends itemFacet {
32074
+ displayName: string | null;
32075
+ first: string | null;
32076
+ initials: string | null;
32077
+ languageTag: string | null;
32078
+ last: string | null;
32079
+ maiden: string | null;
32080
+ middle: string | null;
32081
+ nickname: string | null;
32082
+ pronunciation: personNamePronounciation | null;
32083
+ suffix: string | null;
32084
+ title: string | null;
32085
+ }
32086
+
32087
+ @entity model personResponsibility extends itemFacet {
32088
+ collaborationTags: string[] | null;
32089
+ description: string | null;
32090
+ displayName: string | null;
32091
+ thumbnailUrl: string | null;
32092
+ webUrl: string | null;
32093
+ }
32094
+
32095
+ @entity model personWebsite extends itemFacet {
32096
+ categories: string[] | null;
32097
+ description: string | null;
32098
+ displayName: string | null;
32099
+ thumbnailUrl: string | null;
32100
+ webUrl: string | null;
32101
+ }
32102
+
32103
+ @entity model planner extends entity {
32104
+ @contains buckets: plannerBucket[];
32105
+ @contains plans: plannerPlan[];
32106
+ @contains rosters: plannerRoster[];
32107
+ @contains tasks: plannerTask[];
32108
+ }
32109
+
32110
+ @entity model plannerAssignedToTaskBoardTaskFormat extends plannerDelta {
32111
+ orderHintsByAssignee: plannerOrderHintsByAssignee | null;
32112
+ unassignedOrderHint: string | null;
32113
+ }
32114
+
32115
+ @entity model plannerBucket extends plannerDelta {
32116
+ archivalInfo: plannerArchivalInfo | null;
32117
+ creationSource: plannerBucketCreation | null;
32118
+ isArchived: boolean | null;
32119
+ name: string;
32120
+ orderHint: string | null;
32121
+ planId: string | null;
32122
+ @references tasks: plannerTask[];
32123
+ }
32124
+
32125
+ @entity model plannerBucketTaskBoardTaskFormat extends plannerDelta {
32126
+ orderHint: string | null;
32127
+ }
32128
+
32129
+ @entity model plannerDelta extends entity {
32130
+ }
32131
+
32132
+ @entity model plannerGroup extends entity {
32133
+ @references plans: plannerPlan[];
32134
+ }
32135
+
32136
+ @entity model plannerPlan extends plannerDelta {
32137
+ archivalInfo: plannerArchivalInfo | null;
32138
+ container: plannerPlanContainer | null;
32139
+ contentSensitivityLabelAssignment: contentSensitivityLabelAssignment | null;
32140
+ contexts: plannerPlanContextCollection | null;
32141
+ createdBy: identitySet | null;
32142
+ @computed createdDateTime: offsetDateTime | null;
32143
+ creationSource: plannerPlanCreation | null;
32144
+ isArchived: boolean | null;
32145
+
32146
+ @graphDeprecated("Tasks_And_Plans")
32147
+ owner: string | null;
32148
+ sharedWithContainers: plannerSharedWithContainer[] | null;
32149
+ title: string;
32150
+ @references buckets: plannerBucket[];
32151
+ @contains details: plannerPlanDetails | null;
32152
+ @references tasks: plannerTask[];
32153
+ }
32154
+
32155
+ @entity model plannerPlanDetails extends plannerDelta {
32156
+ categoryDescriptions: plannerCategoryDescriptions | null;
32157
+ contextDetails: plannerPlanContextDetailsCollection | null;
32158
+ sharedWith: plannerUserIds | null;
32159
+ }
32160
+
32161
+ @entity model plannerProgressTaskBoardTaskFormat extends plannerDelta {
32162
+ orderHint: string | null;
32163
+ }
32164
+
32165
+ @entity model plannerRoster extends entity {
32166
+ assignedSensitivityLabel: sensitivityLabelAssignment | null;
32167
+ @contains members: plannerRosterMember[];
32168
+ @references plans: plannerPlan[];
32169
+ }
32170
+
32171
+ @entity model plannerRosterMember extends entity {
32172
+ roles: string[] | null;
32173
+ tenantId: string | null;
32174
+ userId: string | null;
32175
+ }
32176
+
32177
+ @entity model plannerTask extends plannerDelta {
32178
+ activeChecklistItemCount: int32 | null;
32179
+ appliedCategories: plannerAppliedCategories | null;
32180
+ archivalInfo: plannerArchivalInfo | null;
32181
+ assigneePriority: string | null;
32182
+ assignments: plannerAssignments | null;
32183
+ bucketId: string | null;
32184
+ checklistItemCount: int32 | null;
32185
+ completedBy: identitySet | null;
32186
+ completedDateTime: offsetDateTime | null;
32187
+ conversationThreadId: string | null;
32188
+ createdBy: identitySet | null;
32189
+ @computed createdDateTime: offsetDateTime | null;
32190
+ creationSource: plannerTaskCreation | null;
32191
+ dueDateTime: offsetDateTime | null;
32192
+ hasDescription: boolean | null;
32193
+ isArchived: boolean | null;
32194
+ isOnMyDay: boolean | null;
32195
+ isOnMyDayLastModifiedDate: offsetDateTime | null;
32196
+ lastModifiedBy: identitySet | null;
32197
+ @computed lastModifiedDateTime: offsetDateTime | null;
32198
+ orderHint: string | null;
32199
+ percentComplete: int32 | null;
32200
+ planId: string | null;
32201
+ previewType: plannerPreviewType | null;
32202
+ priority: int32 | null;
32203
+ recurrence: plannerTaskRecurrence | null;
32204
+ referenceCount: int32 | null;
32205
+ specifiedCompletionRequirements: plannerTaskCompletionRequirements | null;
32206
+ startDateTime: offsetDateTime | null;
32207
+ title: string;
32208
+ @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
32209
+ @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
32210
+ @contains details: plannerTaskDetails | null;
32211
+ @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
32212
+ }
32213
+
32214
+ @entity model plannerTaskDetails extends plannerDelta {
32215
+ approvalAttachment: plannerBaseApprovalAttachment | null;
32216
+ checklist: plannerChecklistItems | null;
32217
+ completionRequirements: plannerTaskCompletionRequirementDetails | null;
32218
+ description: string | null;
32219
+ forms: plannerFormsDictionary | null;
32220
+ notes: itemBody | null;
32221
+ previewType: plannerPreviewType | null;
32222
+ references: plannerExternalReferences | null;
32223
+ }
32224
+
32225
+ @entity model plannerUser extends plannerDelta {
32226
+ favoritePlanReferences: plannerFavoritePlanReferenceCollection | null;
32227
+ recentPlanReferences: plannerRecentPlanReferenceCollection | null;
32228
+ @references all: plannerDelta[];
32229
+ @references favoritePlans: plannerPlan[];
32230
+ @references myDayTasks: plannerTask[];
32231
+ @references plans: plannerPlan[];
32232
+ @references recentPlans: plannerPlan[];
32233
+ @references rosterPlans: plannerPlan[];
32234
+ @references tasks: plannerTask[];
32235
+ }
32236
+
30545
32237
  @abstract
30546
32238
  @entity model policyBase extends directoryObject {
30547
32239
  description: string;
@@ -30561,7 +32253,9 @@ namespace reference.`microsoft.graph` {
30561
32253
  @contains conditionalAccessPolicies: conditionalAccessPolicy[];
30562
32254
  @contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
30563
32255
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
32256
+ @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
30564
32257
  @contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
32258
+ @contains featureRolloutPolicies: featureRolloutPolicy[];
30565
32259
  @contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
30566
32260
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
30567
32261
  @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
@@ -30689,6 +32383,13 @@ namespace reference.`microsoft.graph` {
30689
32383
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
30690
32384
  }
30691
32385
 
32386
+ @entity model privateAccessSensor extends entity {
32387
+ externalIp: string;
32388
+ machineName: string;
32389
+ status: sensorStatus;
32390
+ version: string;
32391
+ }
32392
+
30692
32393
  /**
30693
32394
  * The endpoint privilege management elevation result entity representing a single elevation action on a client device.
30694
32395
  */
@@ -30845,15 +32546,65 @@ namespace reference.`microsoft.graph` {
30845
32546
  status: elevationRequestState;
30846
32547
  }
30847
32548
 
32549
+ @entity model profile extends entity {
32550
+ @contains account: userAccountInformation[];
32551
+ @contains addresses: itemAddress[];
32552
+ @contains anniversaries: personAnnualEvent[];
32553
+ @contains awards: personAward[];
32554
+ @contains certifications: personCertification[];
32555
+ @contains educationalActivities: educationalActivity[];
32556
+ @contains emails: itemEmail[];
32557
+ @contains interests: personInterest[];
32558
+ @contains languages: languageProficiency[];
32559
+ @contains names: personName[];
32560
+ @contains notes: personAnnotation[];
32561
+ @contains patents: itemPatent[];
32562
+ @contains phones: itemPhone[];
32563
+ @contains positions: workPosition[];
32564
+ @contains projects: projectParticipation[];
32565
+ @contains publications: itemPublication[];
32566
+ @contains skills: skillProficiency[];
32567
+ @contains webAccounts: webAccount[];
32568
+ @contains websites: personWebsite[];
32569
+ }
32570
+
30848
32571
  @entity model profilePhoto extends entity {
30849
32572
  height: int32 | null;
30850
32573
  width: int32 | null;
30851
32574
  }
30852
32575
 
32576
+ @entity model profileSource extends entity {
32577
+ }
32578
+
32579
+ @entity model projectParticipation extends itemFacet {
32580
+ categories: string[] | null;
32581
+ client: companyDetail | null;
32582
+ collaborationTags: string[] | null;
32583
+ colleagues: relatedPerson[] | null;
32584
+ detail: positionDetail | null;
32585
+ displayName: string | null;
32586
+ sponsors: relatedPerson[] | null;
32587
+ thumbnailUrl: string | null;
32588
+ }
32589
+
30853
32590
  @entity model publicKeyInfrastructureRoot extends entity {
30854
32591
  @contains certificateBasedAuthConfigurations: certificateBasedAuthPki[];
30855
32592
  }
30856
32593
 
32594
+ @entity model publishedResource extends entity {
32595
+ displayName: string | null;
32596
+ publishingType: onPremisesPublishingType;
32597
+ resourceName: string | null;
32598
+ @references agentGroups: onPremisesAgentGroup[];
32599
+ }
32600
+
32601
+ @entity model qrPin extends entity {
32602
+ code: string;
32603
+ @computed createdDateTime: offsetDateTime | null;
32604
+ forceChangePinNextSignIn: boolean | null;
32605
+ updatedDateTime: offsetDateTime | null;
32606
+ }
32607
+
30857
32608
  @entity model rbacApplication extends entity {
30858
32609
  @contains resourceNamespaces: unifiedRbacResourceNamespace[];
30859
32610
  @contains roleAssignments: unifiedRoleAssignment[];
@@ -30876,6 +32627,16 @@ namespace reference.`microsoft.graph` {
30876
32627
  thumbnailUrl: string | null;
30877
32628
  }
30878
32629
 
32630
+ @entity model regionalAndLanguageSettings extends entity {
32631
+ authoringLanguages: localeInfo[] | null;
32632
+ defaultDisplayLanguage: localeInfo | null;
32633
+ defaultRegionalFormat: localeInfo | null;
32634
+ defaultSpeechInputLanguage: localeInfo | null;
32635
+ defaultTranslationLanguage: localeInfo | null;
32636
+ regionalFormatOverrides: regionalFormatOverrides | null;
32637
+ translationPreferences: translationPreferences | null;
32638
+ }
32639
+
30879
32640
  /**
30880
32641
  * Report of remote actions initiated on the devices belonging to a certain tenant.
30881
32642
  */
@@ -30972,6 +32733,7 @@ namespace reference.`microsoft.graph` {
30972
32733
 
30973
32734
  @entity model remoteDesktopSecurityConfiguration extends entity {
30974
32735
  isRemoteDesktopProtocolEnabled: boolean;
32736
+ @contains approvedClientApps: approvedClientApp[];
30975
32737
  @contains targetDeviceGroups: targetDeviceGroup[];
30976
32738
  }
30977
32739
 
@@ -31512,6 +33274,7 @@ namespace reference.`microsoft.graph` {
31512
33274
  errorUrl: string | null;
31513
33275
  homepage: string | null;
31514
33276
  info: informationalUrl | null;
33277
+ isDisabled: boolean | null;
31515
33278
  keyCredentials: keyCredential[];
31516
33279
  loginUrl: string | null;
31517
33280
  logoutUrl: string | null;
@@ -31701,6 +33464,15 @@ namespace reference.`microsoft.graph` {
31701
33464
  value: string | null;
31702
33465
  }
31703
33466
 
33467
+ @entity model skillProficiency extends itemFacet {
33468
+ categories: string[] | null;
33469
+ collaborationTags: string[] | null;
33470
+ displayName: string | null;
33471
+ proficiency: skillProficiencyLevel | null;
33472
+ thumbnailUrl: string | null;
33473
+ webUrl: string | null;
33474
+ }
33475
+
31704
33476
  @entity model softwareUpdateStatusSummary extends entity {
31705
33477
  /**
31706
33478
  * Number of compliant devices.
@@ -31784,6 +33556,21 @@ namespace reference.`microsoft.graph` {
31784
33556
  subscriptionIds: string[] | null;
31785
33557
  }
31786
33558
 
33559
+ @entity model subscription extends entity {
33560
+ applicationId: string | null;
33561
+ changeType: string;
33562
+ clientState: string | null;
33563
+ creatorId: string | null;
33564
+ encryptionCertificate: string | null;
33565
+ encryptionCertificateId: string | null;
33566
+ expirationDateTime: offsetDateTime;
33567
+ includeResourceData: boolean | null;
33568
+ latestSupportedTlsVersion: string | null;
33569
+ lifecycleNotificationUrl: string | null;
33570
+ notificationUrl: string;
33571
+ resource: string;
33572
+ }
33573
+
31787
33574
  @entity model symantecCodeSigningCertificate extends entity {
31788
33575
  /**
31789
33576
  * The Windows Symantec Code-Signing Certificate in the raw data format.
@@ -32164,11 +33951,13 @@ namespace reference.`microsoft.graph` {
32164
33951
 
32165
33952
  @open
32166
33953
  @entity model user extends directoryObject {
33954
+ aboutMe: string | null;
32167
33955
  accountEnabled: boolean | null;
32168
33956
  ageGroup: string | null;
32169
33957
  assignedLicenses: assignedLicense[];
32170
33958
  assignedPlans: assignedPlan[];
32171
33959
  authorizationInfo: authorizationInfo | null;
33960
+ birthday: offsetDateTime;
32172
33961
  businessPhones: string[];
32173
33962
  city: string | null;
32174
33963
  cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
@@ -32194,10 +33983,12 @@ namespace reference.`microsoft.graph` {
32194
33983
  externalUserStateChangeDateTime: string | null;
32195
33984
  faxNumber: string | null;
32196
33985
  givenName: string | null;
33986
+ hireDate: offsetDateTime;
32197
33987
  identities: objectIdentity[] | null;
32198
33988
  identityParentId: string | null;
32199
33989
  imAddresses: string[] | null;
32200
33990
  infoCatalogs: string[];
33991
+ interests: string[] | null;
32201
33992
  isManagementRestricted: boolean | null;
32202
33993
  isResourceAccount: boolean | null;
32203
33994
  jobTitle: string | null;
@@ -32208,6 +33999,7 @@ namespace reference.`microsoft.graph` {
32208
33999
  mailboxSettings: mailboxSettings | null;
32209
34000
  mailNickname: string | null;
32210
34001
  mobilePhone: string | null;
34002
+ mySite: string | null;
32211
34003
  officeLocation: string | null;
32212
34004
  onPremisesDistinguishedName: string | null;
32213
34005
  onPremisesDomainName: string | null;
@@ -32222,15 +34014,20 @@ namespace reference.`microsoft.graph` {
32222
34014
  otherMails: string[];
32223
34015
  passwordPolicies: string | null;
32224
34016
  passwordProfile: passwordProfile | null;
34017
+ pastProjects: string[] | null;
32225
34018
  postalCode: string | null;
32226
34019
  preferredDataLocation: string | null;
32227
34020
  preferredLanguage: string | null;
34021
+ preferredName: string | null;
32228
34022
  provisionedPlans: provisionedPlan[];
32229
34023
  proxyAddresses: string[];
32230
34024
  refreshTokensValidFromDateTime: offsetDateTime | null;
34025
+ responsibilities: string[] | null;
34026
+ schools: string[] | null;
32231
34027
  securityIdentifier: string | null;
32232
34028
  showInAddressList: boolean | null;
32233
34029
  signInSessionsValidFromDateTime: offsetDateTime | null;
34030
+ skills: string[] | null;
32234
34031
  state: string | null;
32235
34032
  streetAddress: string | null;
32236
34033
  surname: string | null;
@@ -32286,6 +34083,10 @@ namespace reference.`microsoft.graph` {
32286
34083
  @references ownedDevices: directoryObject[];
32287
34084
  @references ownedObjects: directoryObject[];
32288
34085
  @contains people: person[];
34086
+ @contains photo: profilePhoto | null;
34087
+ @contains photos: profilePhoto[];
34088
+ @contains planner: plannerUser | null;
34089
+ @contains profile: profile | null;
32289
34090
  @references registeredDevices: directoryObject[];
32290
34091
  @contains scopedRoleMemberOf: scopedRoleMembership[];
32291
34092
  @references sponsors: directoryObject[];
@@ -32297,6 +34098,15 @@ namespace reference.`microsoft.graph` {
32297
34098
  @references windowsInformationProtectionDeviceRegistrations: windowsInformationProtectionDeviceRegistration[];
32298
34099
  }
32299
34100
 
34101
+ @entity model userAccountInformation extends itemFacet {
34102
+ ageGroup: string | null;
34103
+ countryCode: string | null;
34104
+ originTenantInfo: originTenantInfo | null;
34105
+ preferredLanguageTag: localeInfo | null;
34106
+ userPersona: userPersona | null;
34107
+ userPrincipalName: string | null;
34108
+ }
34109
+
32300
34110
  /**
32301
34111
  * Contains properties for the installation status for a user. This will be deprecated starting May, 2023 (Intune Release 2305).
32302
34112
  */
@@ -34105,6 +35915,10 @@ namespace reference.`microsoft.graph` {
34105
35915
  workFromAnywhereScore: float64;
34106
35916
  }
34107
35917
 
35918
+ @entity model userInsightsSettings extends entity {
35919
+ isEnabled: boolean;
35920
+ }
35921
+
34108
35922
  /**
34109
35923
  * Contains properties for the installation state summary for a user.
34110
35924
  */
@@ -34185,6 +35999,12 @@ namespace reference.`microsoft.graph` {
34185
35999
  userPrincipalName: string | null;
34186
36000
  }
34187
36001
 
36002
+ @entity model userSettings extends entity {
36003
+ @contains contactMergeSuggestions: contactMergeSuggestions | null;
36004
+ @contains itemInsights: userInsightsSettings | null;
36005
+ @contains regionalAndLanguageSettings: regionalAndLanguageSettings | null;
36006
+ }
36007
+
34188
36008
  /**
34189
36009
  * Base VPN Configuration profile.
34190
36010
  */
@@ -34304,6 +36124,15 @@ namespace reference.`microsoft.graph` {
34304
36124
  managedDeviceId: string | null;
34305
36125
  }
34306
36126
 
36127
+ @entity model webAccount extends itemFacet {
36128
+ description: string | null;
36129
+ service: serviceInformation | null;
36130
+ statusMessage: string | null;
36131
+ thumbnailUrl: string | null;
36132
+ userId: string | null;
36133
+ webUrl: string | null;
36134
+ }
36135
+
34307
36136
  /**
34308
36137
  * Contains properties and inherited properties for web apps.
34309
36138
  */
@@ -34318,6 +36147,13 @@ namespace reference.`microsoft.graph` {
34318
36147
  useManagedBrowser: boolean;
34319
36148
  }
34320
36149
 
36150
+ @entity model webApplicationSegment extends applicationSegment {
36151
+ alternateUrl: string | null;
36152
+ externalUrl: string | null;
36153
+ internalUrl: string | null;
36154
+ @contains corsConfigurations: corsConfiguration_v2[];
36155
+ }
36156
+
34321
36157
  @entity model whatIfAnalysisResult extends conditionalAccessPolicy {
34322
36158
  analysisReasons: whatIfAnalysisReasons;
34323
36159
  policyApplies: boolean;
@@ -38026,6 +39862,14 @@ namespace reference.`microsoft.graph` {
38026
39862
  * A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
38027
39863
  */
38028
39864
  @entity model windowsAutoUpdateCatalogApp extends mobileApp {
39865
+ /**
39866
+ * Indicates the set of CPU architectures on which this application is allowed to be installed. When null, the app is eligible for installation on all the supported architectures. Possible values are: x86, x64, arm64, or a combination of them.
39867
+ */
39868
+ allowedArchitectures: windowsArchitecture | null;
39869
+ /**
39870
+ * Describes how the app installer executes on the target device, including the account context (system or user) under which the installer runs and how the device handles restarts after installation completes. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
39871
+ */
39872
+ installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
38029
39873
  /**
38030
39874
  * The identifier of a specific branch in a product, which is a specific subset of product functionality as defined by the publisher . This is run-time resolved to be the latest MobileAppCatalogPackage in the branch. (example:'31a4c766-f23d-8d41-4803-35e155be7389'). Read-Only
38031
39875
  */
@@ -40527,6 +42371,19 @@ namespace reference.`microsoft.graph` {
40527
42371
  packageIdentifier: string | null;
40528
42372
  }
40529
42373
 
42374
+ @entity model workPosition extends itemFacet {
42375
+ categories: string[] | null;
42376
+ colleagues: relatedPerson[] | null;
42377
+ detail: positionDetail | null;
42378
+ isCurrent: boolean | null;
42379
+ manager: relatedPerson | null;
42380
+ }
42381
+
42382
+ @entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
42383
+ allowedIssuerSkis: string[];
42384
+ allowedPolicyOIDs: string[];
42385
+ }
42386
+
40530
42387
  /**
40531
42388
  * Describes a single artifact for a specific device model.
40532
42389
  */
@@ -40644,6 +42501,20 @@ namespace reference.`microsoft.graph` {
40644
42501
  notSupported: 6,
40645
42502
  }
40646
42503
 
42504
+ enum actionType {
42505
+ tunnel: 0,
42506
+ exclude: 1,
42507
+ unknownFutureValue: 2,
42508
+ }
42509
+
42510
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
42511
+ enum activityDomain {
42512
+ `unknown`: 0,
42513
+ work: 1,
42514
+ personal: 2,
42515
+ unrestricted: 3,
42516
+ }
42517
+
40647
42518
  enum activityType {
40648
42519
  signin: 0,
40649
42520
  user: 1,
@@ -40761,6 +42632,31 @@ namespace reference.`microsoft.graph` {
40761
42632
  networkError: 32768,
40762
42633
  }
40763
42634
 
42635
+ enum advancedConfigState {
42636
+ default: 0,
42637
+ enabled: 1,
42638
+ disabled: 2,
42639
+ unknownFutureValue: 3,
42640
+ }
42641
+
42642
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
42643
+ enum agentStatus {
42644
+ active: 0,
42645
+ inactive: 1,
42646
+ }
42647
+
42648
+ @graphFlags
42649
+ enum allowedAudiences {
42650
+ me: 0,
42651
+ family: 1,
42652
+ contacts: 2,
42653
+ groupMembers: 4,
42654
+ organization: 8,
42655
+ federatedOrganizations: 16,
42656
+ everyone: 32,
42657
+ unknownFutureValue: 64,
42658
+ }
42659
+
40764
42660
  @graphFlags
40765
42661
  enum allowedRolePrincipalTypes {
40766
42662
  user: 1,
@@ -41839,6 +43735,18 @@ namespace reference.`microsoft.graph` {
41839
43735
  */
41840
43736
  wpaPersonal: 4,
41841
43737
  unknownFutureValue: 5,
43738
+ /**
43739
+ * Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
43740
+ */
43741
+ wpa2Personal: 6,
43742
+ /**
43743
+ * Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
43744
+ */
43745
+ wpa3Personal: 7,
43746
+ /**
43747
+ * Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
43748
+ */
43749
+ wpa3Enterprise: 8,
41842
43750
  }
41843
43751
 
41844
43752
  /**
@@ -41995,7 +43903,6 @@ namespace reference.`microsoft.graph` {
41995
43903
  /**
41996
43904
  * Wi-Fi Security Types for AOSP Device Owner.
41997
43905
  */
41998
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
41999
43906
  enum aospDeviceOwnerWiFiSecurityType {
42000
43907
  /**
42001
43908
  * Open (No Authentication).
@@ -42013,6 +43920,23 @@ namespace reference.`microsoft.graph` {
42013
43920
  * WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
42014
43921
  */
42015
43922
  wpaEnterprise: 4,
43923
+ unknownFutureValue: 5,
43924
+ /**
43925
+ * Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
43926
+ */
43927
+ wpa2Personal: 6,
43928
+ /**
43929
+ * Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
43930
+ */
43931
+ wpa2Enterprise: 7,
43932
+ /**
43933
+ * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
43934
+ */
43935
+ wpa3Personal: 8,
43936
+ /**
43937
+ * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
43938
+ */
43939
+ wpa3Enterprise: 9,
42016
43940
  }
42017
43941
 
42018
43942
  /**
@@ -42675,12 +44599,105 @@ namespace reference.`microsoft.graph` {
42675
44599
  resource: 2,
42676
44600
  }
42677
44601
 
44602
+ enum attestationEnforcement {
44603
+ disabled: 0,
44604
+ registrationOnly: 1,
44605
+ unknownFutureValue: 2,
44606
+ }
44607
+
44608
+ enum attestationLevel {
44609
+ attested: 0,
44610
+ notAttested: 1,
44611
+ unknownFutureValue: 2,
44612
+ }
44613
+
44614
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
44615
+ enum authenticationMethodKeyStrength {
44616
+ normal: 0,
44617
+ weak: 1,
44618
+ `unknown`: 2,
44619
+ }
44620
+
44621
+ @graphFlags
44622
+ enum authenticationMethodModes {
44623
+ password: 1,
44624
+ voice: 2,
44625
+ hardwareOath: 4,
44626
+ softwareOath: 8,
44627
+ sms: 16,
44628
+ fido2: 32,
44629
+ windowsHelloForBusiness: 64,
44630
+ microsoftAuthenticatorPush: 128,
44631
+ deviceBasedPush: 256,
44632
+ temporaryAccessPassOneTime: 512,
44633
+ temporaryAccessPassMultiUse: 1024,
44634
+ email: 2048,
44635
+ x509CertificateSingleFactor: 4096,
44636
+ x509CertificateMultiFactor: 8192,
44637
+ federatedSingleFactor: 16384,
44638
+ federatedMultiFactor: 32768,
44639
+ unknownFutureValue: 65536,
44640
+ qrCodePin: 131072,
44641
+ }
44642
+
44643
+ enum authenticationMethodPlatform {
44644
+ `unknown`: 0,
44645
+ windows: 1,
44646
+ macOS: 2,
44647
+ iOS: 3,
44648
+ android: 4,
44649
+ linux: 5,
44650
+ unknownFutureValue: 6,
44651
+ }
44652
+
44653
+ enum authenticationMethodSignInState {
44654
+ notSupported: 0,
44655
+ notAllowedByPolicy: 1,
44656
+ notEnabled: 2,
44657
+ phoneNumberNotUnique: 3,
44658
+ ready: 4,
44659
+ notConfigured: 5,
44660
+ unknownFutureValue: 6,
44661
+ }
44662
+
44663
+ enum authenticationMethodsPolicyMigrationState {
44664
+ preMigration: 0,
44665
+ migrationInProgress: 1,
44666
+ migrationComplete: 2,
44667
+ unknownFutureValue: 3,
44668
+ }
44669
+
44670
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
44671
+ enum authenticationMethodState {
44672
+ enabled: 0,
44673
+ disabled: 1,
44674
+ }
44675
+
44676
+ enum authenticationMethodTargetType {
44677
+ user: 0,
44678
+ group: 1,
44679
+ unknownFutureValue: 2,
44680
+ }
44681
+
44682
+ enum authenticationPhoneType {
44683
+ mobile: 0,
44684
+ alternateMobile: 1,
44685
+ office: 2,
44686
+ unknownFutureValue: 3,
44687
+ }
44688
+
42678
44689
  enum authenticationProtocol {
42679
44690
  wsFed: 0,
42680
44691
  saml: 1,
42681
44692
  unknownFutureValue: 2,
42682
44693
  }
42683
44694
 
44695
+ enum authenticationStrengthPolicyType {
44696
+ builtIn: 0,
44697
+ custom: 1,
44698
+ unknownFutureValue: 2,
44699
+ }
44700
+
42684
44701
  @graphFlags
42685
44702
  enum authenticationStrengthRequirements {
42686
44703
  none: 0,
@@ -42809,6 +44826,23 @@ namespace reference.`microsoft.graph` {
42809
44826
  unknownFutureValue: 7,
42810
44827
  }
42811
44828
 
44829
+ enum baseAuthenticationMethod {
44830
+ password: 1,
44831
+ voice: 2,
44832
+ hardwareOath: 3,
44833
+ softwareOath: 4,
44834
+ sms: 5,
44835
+ fido2: 6,
44836
+ windowsHelloForBusiness: 7,
44837
+ microsoftAuthenticator: 8,
44838
+ temporaryAccessPass: 9,
44839
+ email: 10,
44840
+ x509Certificate: 11,
44841
+ federation: 12,
44842
+ unknownFutureValue: 13,
44843
+ qrCodePin: 14,
44844
+ }
44845
+
42812
44846
  /**
42813
44847
  * BitLockerEncryptionMethod types
42814
44848
  */
@@ -43087,6 +45121,13 @@ namespace reference.`microsoft.graph` {
43087
45121
  years: 2,
43088
45122
  }
43089
45123
 
45124
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
45125
+ enum changeType {
45126
+ created: 0,
45127
+ updated: 1,
45128
+ deleted: 2,
45129
+ }
45130
+
43090
45131
  /**
43091
45132
  * Defines the permission level granted to users to enable them change Uefi settings
43092
45133
  */
@@ -43284,7 +45325,7 @@ namespace reference.`microsoft.graph` {
43284
45325
  }
43285
45326
 
43286
45327
  /**
43287
- * Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates or temporarily paused or permanently revoked.
45328
+ * Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates, temporarily paused, pending signing, revoked, or expired.
43288
45329
  */
43289
45330
  enum cloudCertificationAuthorityStatus {
43290
45331
  /**
@@ -43308,6 +45349,10 @@ namespace reference.`microsoft.graph` {
43308
45349
  */
43309
45350
  signingPending: 4,
43310
45351
  unknownFutureValue: 5,
45352
+ /**
45353
+ * Indicates certification authority has expired and cannot issue certificates until renewed and activated.
45354
+ */
45355
+ expired: 6,
43311
45356
  }
43312
45357
 
43313
45358
  /**
@@ -43333,6 +45378,49 @@ namespace reference.`microsoft.graph` {
43333
45378
  unknownFutureValue: 4,
43334
45379
  }
43335
45380
 
45381
+ /**
45382
+ * Enum type of possible certification authority version statuses. These statuses indicate the lifecycle state of a certification authority version, including whether it is currently active, staged for renewal, retired, or in other states.
45383
+ */
45384
+ enum cloudCertificationAuthorityVersionStatus {
45385
+ /**
45386
+ * Default. Indicates certification authority version has an unknown or invalid status.
45387
+ */
45388
+ `unknown`: 0,
45389
+ /**
45390
+ * Indicates certification authority version is active and can issue leaf certificates.
45391
+ */
45392
+ active: 1,
45393
+ /**
45394
+ * Indicates certification authority version was created during the renewal process and is currently in the staged phase. Upon activation, it becomes the new active certification authority version.
45395
+ */
45396
+ staged: 2,
45397
+ /**
45398
+ * Indicates certification authority version has been paused from issuing certificates. The paused state is supported only for active certification authority versions. Staged certification authority versions cannot be paused and may only be revoked.
45399
+ */
45400
+ paused: 3,
45401
+ /**
45402
+ * Indicates certification authority version has been retired after renewal. The retired certification authority version is not expired and continues to validate certificates it previously issued.
45403
+ */
45404
+ retired: 4,
45405
+ /**
45406
+ * Indicates certification authority version has exceeded its validity period.
45407
+ */
45408
+ expired: 5,
45409
+ /**
45410
+ * Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
45411
+ */
45412
+ revoked: 6,
45413
+ /**
45414
+ * Indicates certification authority version has been decommissioned. Only applicable for staged certification authority versions. Decommissioned certification authority versions cannot issue or validate leaf certificates. This is a permanent state that cannot be changed.
45415
+ */
45416
+ decommissioned: 7,
45417
+ /**
45418
+ * Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
45419
+ */
45420
+ signingPending: 8,
45421
+ unknownFutureValue: 9,
45422
+ }
45423
+
43336
45424
  /**
43337
45425
  * Error code for rule validation.
43338
45426
  */
@@ -43734,6 +45822,20 @@ namespace reference.`microsoft.graph` {
43734
45822
  notConfigured: 3,
43735
45823
  }
43736
45824
 
45825
+ enum connectorGroupRegion {
45826
+ nam: 0,
45827
+ eur: 1,
45828
+ aus: 2,
45829
+ asia: 3,
45830
+ ind: 4,
45831
+ unknownFutureValue: 5,
45832
+ }
45833
+
45834
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
45835
+ enum connectorGroupType {
45836
+ applicationProxy: 0,
45837
+ }
45838
+
43737
45839
  /**
43738
45840
  * Connector health state for connector status
43739
45841
  */
@@ -43828,6 +45930,12 @@ namespace reference.`microsoft.graph` {
43828
45930
  futureValue: 15,
43829
45931
  }
43830
45932
 
45933
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
45934
+ enum connectorStatus {
45935
+ active: 0,
45936
+ inactive: 1,
45937
+ }
45938
+
43831
45939
  enum continuousAccessEvaluationMode {
43832
45940
  strictEnforcement: 0,
43833
45941
  disabled: 1,
@@ -44688,6 +46796,25 @@ namespace reference.`microsoft.graph` {
44688
46796
  remoteLock: 10,
44689
46797
  }
44690
46798
 
46799
+ /**
46800
+ * Indicates the platform that a device compliance script targets for evaluation.
46801
+ */
46802
+ enum deviceComplianceScriptPlatformType {
46803
+ /**
46804
+ * Default. Indicates that the compliance script targets devices running Windows 10 and later.
46805
+ */
46806
+ windows10: 0,
46807
+ /**
46808
+ * Indicates that the compliance script targets devices running Linux.
46809
+ */
46810
+ linux: 1,
46811
+ /**
46812
+ * Indicates that the compliance script targets devices running macOS.
46813
+ */
46814
+ macOS: 2,
46815
+ unknownFutureValue: 3,
46816
+ }
46817
+
44691
46818
  /**
44692
46819
  * Data types for rules.
44693
46820
  */
@@ -48203,6 +50330,14 @@ namespace reference.`microsoft.graph` {
48203
50330
  deleted: 3,
48204
50331
  }
48205
50332
 
50333
+ enum errorCorrectionLevel {
50334
+ l: 1,
50335
+ m: 2,
50336
+ q: 3,
50337
+ h: 4,
50338
+ unknownFutureValue: 5,
50339
+ }
50340
+
48206
50341
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
48207
50342
  enum eventType {
48208
50343
  singleInstance: 0,
@@ -48227,6 +50362,26 @@ namespace reference.`microsoft.graph` {
48227
50362
  all: 2,
48228
50363
  }
48229
50364
 
50365
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
50366
+ enum externalAuthenticationType {
50367
+ passthru: 0,
50368
+ aadPreAuthentication: 1,
50369
+ }
50370
+
50371
+ enum externalEmailOtpState {
50372
+ default: 0,
50373
+ enabled: 1,
50374
+ disabled: 2,
50375
+ unknownFutureValue: 3,
50376
+ }
50377
+
50378
+ enum featureTargetType {
50379
+ group: 0,
50380
+ administrativeUnit: 1,
50381
+ role: 2,
50382
+ unknownFutureValue: 3,
50383
+ }
50384
+
48230
50385
  enum federatedIdpMfaBehavior {
48231
50386
  acceptIfMfaDoneByFederatedIdp: 0,
48232
50387
  enforceMfaByFederatedIdp: 1,
@@ -48234,6 +50389,12 @@ namespace reference.`microsoft.graph` {
48234
50389
  unknownFutureValue: 3,
48235
50390
  }
48236
50391
 
50392
+ enum fido2RestrictionEnforcementType {
50393
+ allow: 0,
50394
+ block: 1,
50395
+ unknownFutureValue: 2,
50396
+ }
50397
+
48237
50398
  /**
48238
50399
  * FileVault State
48239
50400
  */
@@ -48814,6 +50975,20 @@ namespace reference.`microsoft.graph` {
48814
50975
  surfaceDock: 3,
48815
50976
  }
48816
50977
 
50978
+ enum hardwareOathTokenHashFunction {
50979
+ hmacsha1: 0,
50980
+ hmacsha256: 1,
50981
+ unknownFutureValue: 2,
50982
+ }
50983
+
50984
+ enum hardwareOathTokenStatus {
50985
+ available: 0,
50986
+ assigned: 1,
50987
+ activated: 2,
50988
+ failedActivation: 3,
50989
+ unknownFutureValue: 4,
50990
+ }
50991
+
48817
50992
  /**
48818
50993
  * Hash Algorithm Options.
48819
50994
  */
@@ -49298,6 +51473,15 @@ namespace reference.`microsoft.graph` {
49298
51473
  hybridAzureADJoined: 3,
49299
51474
  }
49300
51475
 
51476
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
51477
+ enum kerberosSignOnMappingAttributeType {
51478
+ userPrincipalName: 0,
51479
+ onPremisesUserPrincipalName: 1,
51480
+ userPrincipalUsername: 2,
51481
+ onPremisesUserPrincipalUsername: 3,
51482
+ onPremisesSAMAccountName: 4,
51483
+ }
51484
+
49301
51485
  /**
49302
51486
  * Key Size Options.
49303
51487
  */
@@ -49406,6 +51590,16 @@ namespace reference.`microsoft.graph` {
49406
51590
  unknownFutureValue: 3,
49407
51591
  }
49408
51592
 
51593
+ enum languageProficiencyLevel {
51594
+ elementary: 0,
51595
+ conversational: 1,
51596
+ limitedWorking: 2,
51597
+ professionalWorking: 3,
51598
+ fullProfessional: 4,
51599
+ nativeOrBilingual: 5,
51600
+ unknownFutureValue: 6,
51601
+ }
51602
+
49409
51603
  /**
49410
51604
  * Possible values for LanManagerAuthenticationLevel
49411
51605
  */
@@ -49462,6 +51656,13 @@ namespace reference.`microsoft.graph` {
49462
51656
  unknownFutureValue: 3,
49463
51657
  }
49464
51658
 
51659
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
51660
+ enum lifecycleEventType {
51661
+ missed: 0,
51662
+ subscriptionRemoved: 1,
51663
+ reauthorizationRequired: 2,
51664
+ }
51665
+
49465
51666
  /**
49466
51667
  * Possible values for LocalSecurityOptionsAdministratorElevationPromptBehavior
49467
51668
  */
@@ -49658,6 +51859,14 @@ namespace reference.`microsoft.graph` {
49658
51859
  bing: 4,
49659
51860
  }
49660
51861
 
51862
+ enum longRunningOperationStatus {
51863
+ notStarted: 0,
51864
+ running: 1,
51865
+ succeeded: 2,
51866
+ failed: 3,
51867
+ unknownFutureValue: 4,
51868
+ }
51869
+
49661
51870
  /**
49662
51871
  * State of lost mode, indicating if lost mode is enabled or disabled
49663
51872
  */
@@ -50366,6 +52575,25 @@ namespace reference.`microsoft.graph` {
50366
52575
  alphanumericAndSymbol: 1,
50367
52576
  }
50368
52577
 
52578
+ /**
52579
+ * Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
52580
+ */
52581
+ enum managedAppPurviewEvaluationRequirement {
52582
+ /**
52583
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
52584
+ */
52585
+ notRequired: 0,
52586
+ /**
52587
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
52588
+ */
52589
+ requiredWhenOnline: 1,
52590
+ /**
52591
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
52592
+ */
52593
+ required: 2,
52594
+ unknownFutureValue: 3,
52595
+ }
52596
+
50369
52597
  /**
50370
52598
  * An admin initiated action to be applied on a managed app.
50371
52599
  */
@@ -50927,6 +53155,19 @@ namespace reference.`microsoft.graph` {
50927
53155
  variable: 2,
50928
53156
  }
50929
53157
 
53158
+ enum microsoftAuthenticatorAuthenticationMethodClientAppName {
53159
+ microsoftAuthenticator: 0,
53160
+ outlookMobile: 1,
53161
+ unknownFutureValue: 2,
53162
+ }
53163
+
53164
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53165
+ enum microsoftAuthenticatorAuthenticationMode {
53166
+ deviceBasedPush: 0,
53167
+ push: 1,
53168
+ any: 2,
53169
+ }
53170
+
50930
53171
  /**
50931
53172
  * The enum to specify the channels for Microsoft Edge apps.
50932
53173
  */
@@ -51400,6 +53641,12 @@ namespace reference.`microsoft.graph` {
51400
53641
  unknownFutureValue: 6,
51401
53642
  }
51402
53643
 
53644
+ enum multiFactorAuthConfiguration {
53645
+ notRequired: 0,
53646
+ required: 1,
53647
+ unknownFutureValue: 2,
53648
+ }
53649
+
51403
53650
  /**
51404
53651
  * The current status of the Ndes Connector.
51405
53652
  */
@@ -51625,6 +53872,17 @@ namespace reference.`microsoft.graph` {
51625
53872
  unknownFutureValue: 3,
51626
53873
  }
51627
53874
 
53875
+ enum onPremisesPublishingType {
53876
+ applicationProxy: 0,
53877
+ exchangeOnline: 1,
53878
+ authentication: 2,
53879
+ provisioning: 3,
53880
+ intunePfx: 4,
53881
+ oflineDomainJoin: 5,
53882
+ unknownFutureValue: 6,
53883
+ privateAccess: 7,
53884
+ }
53885
+
51628
53886
  /**
51629
53887
  * Work From Anywhere windows device upgrade eligibility status.
51630
53888
  */
@@ -51696,6 +53954,18 @@ namespace reference.`microsoft.graph` {
51696
53954
  * Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
51697
53955
  */
51698
53956
  `unknown`: 0,
53957
+ /**
53958
+ * Indicates that the configured policy type is for a Device Wipe Action.
53959
+ */
53960
+ deviceWipe: 2,
53961
+ /**
53962
+ * Indicates that the configured policy type is for a Device Retire Action
53963
+ */
53964
+ deviceRetire: 3,
53965
+ /**
53966
+ * Indicates that the configured policy type is for a Device Delete Action.
53967
+ */
53968
+ deviceDelete: 5,
51699
53969
  /**
51700
53970
  * Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
51701
53971
  */
@@ -51709,6 +53979,10 @@ namespace reference.`microsoft.graph` {
51709
53979
  */
51710
53980
  role: 18,
51711
53981
  unknownFutureValue: 21,
53982
+ /**
53983
+ * Indicates that the configured policy type is for Tenant Configuration operations.
53984
+ */
53985
+ tenantConfiguration: 28,
51712
53986
  }
51713
53987
 
51714
53988
  /**
@@ -51901,6 +54175,19 @@ namespace reference.`microsoft.graph` {
51901
54175
  unknownFutureValue: 7,
51902
54176
  }
51903
54177
 
54178
+ enum passkeyType {
54179
+ deviceBound: 0,
54180
+ synced: 1,
54181
+ unknownFutureValue: 2,
54182
+ }
54183
+
54184
+ @graphFlags
54185
+ enum passkeyTypes {
54186
+ deviceBound: 1,
54187
+ synced: 2,
54188
+ unknownFutureValue: 4,
54189
+ }
54190
+
51904
54191
  /**
51905
54192
  * Forward Secrecy Group values for Windows10 VPN policies with IKEv2 connection type.
51906
54193
  */
@@ -51982,6 +54269,33 @@ namespace reference.`microsoft.graph` {
51982
54269
  allowedApps: 2,
51983
54270
  }
51984
54271
 
54272
+ enum personAnnualEventType {
54273
+ birthday: 0,
54274
+ wedding: 1,
54275
+ work: 2,
54276
+ other: 3,
54277
+ unknownFutureValue: 5,
54278
+ }
54279
+
54280
+ enum personRelationship {
54281
+ manager: 0,
54282
+ colleague: 1,
54283
+ directReport: 2,
54284
+ dotLineReport: 3,
54285
+ assistant: 4,
54286
+ dotLineManager: 5,
54287
+ alternateContact: 6,
54288
+ friend: 7,
54289
+ spouse: 8,
54290
+ sibling: 9,
54291
+ child: 10,
54292
+ parent: 11,
54293
+ sponsor: 12,
54294
+ emergencyContact: 13,
54295
+ other: 14,
54296
+ unknownFutureValue: 15,
54297
+ }
54298
+
51985
54299
  enum perUserMfaState {
51986
54300
  disabled: 0,
51987
54301
  enforced: 1,
@@ -52011,6 +54325,80 @@ namespace reference.`microsoft.graph` {
52011
54325
  other: 3,
52012
54326
  }
52013
54327
 
54328
+ enum plannerApprovalStatus {
54329
+ requested: 0,
54330
+ approved: 1,
54331
+ rejected: 2,
54332
+ cancelled: 3,
54333
+ unknownFutureValue: 4,
54334
+ }
54335
+
54336
+ enum plannerContainerType {
54337
+ group: 1,
54338
+ unknownFutureValue: 2,
54339
+ roster: 3,
54340
+ project: 4,
54341
+ driveItem: 5,
54342
+ user: 6,
54343
+ teamsChannel: 7,
54344
+ onlineMeeting: 8,
54345
+ plannerTask: 9,
54346
+ }
54347
+
54348
+ enum plannerContextState {
54349
+ active: 0,
54350
+ delinked: 1,
54351
+ unknownFutureValue: 2,
54352
+ }
54353
+
54354
+ enum plannerCreationSourceKind {
54355
+ none: 0,
54356
+ external: 1,
54357
+ publication: 2,
54358
+ unknownFutureValue: 3,
54359
+ }
54360
+
54361
+ enum plannerExternalTaskSourceDisplayType {
54362
+ none: 1,
54363
+ default: 2,
54364
+ unknownFutureValue: 3,
54365
+ }
54366
+
54367
+ enum plannerPlanAccessLevel {
54368
+ readAccess: 0,
54369
+ readWriteAccess: 1,
54370
+ fullAccess: 2,
54371
+ unknownFutureValue: 3,
54372
+ }
54373
+
54374
+ enum plannerPlanContextType {
54375
+ teamsTab: 1,
54376
+ sharePointPage: 2,
54377
+ meetingNotes: 3,
54378
+ other: 4,
54379
+ unknownFutureValue: 5,
54380
+ loopPage: 6,
54381
+ project: 7,
54382
+ }
54383
+
54384
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
54385
+ enum plannerPreviewType {
54386
+ automatic: 0,
54387
+ noPreview: 1,
54388
+ checklist: 2,
54389
+ description: 3,
54390
+ reference: 4,
54391
+ }
54392
+
54393
+ @graphFlags
54394
+ enum plannerTaskCompletionRequirements {
54395
+ none: 0,
54396
+ checklistCompletion: 1,
54397
+ unknownFutureValue: 2,
54398
+ formCompletion: 4,
54399
+ approvalCompletion: 8,
54400
+ }
54401
+
52014
54402
  /**
52015
54403
  * Supported platform types for policies.
52016
54404
  */
@@ -52182,6 +54570,23 @@ namespace reference.`microsoft.graph` {
52182
54570
  notAllowed: 3,
52183
54571
  }
52184
54572
 
54573
+ enum privateNetworkDestinationType {
54574
+ ipAddress: 0,
54575
+ ipRange: 1,
54576
+ ipRangeCidr: 2,
54577
+ fqdn: 3,
54578
+ dnsSuffix: 4,
54579
+ unknownFutureValue: 5,
54580
+ servicePrincipalName: 6,
54581
+ }
54582
+
54583
+ @graphFlags
54584
+ enum privateNetworkProtocol {
54585
+ tcp: 1,
54586
+ udp: 2,
54587
+ unknownFutureValue: 4,
54588
+ }
54589
+
52185
54590
  /**
52186
54591
  * Indicates the type of elevation occured
52187
54592
  */
@@ -53706,6 +56111,12 @@ namespace reference.`microsoft.graph` {
53706
56111
  deviceIntent: 1,
53707
56112
  }
53708
56113
 
56114
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
56115
+ enum securityQuestionType {
56116
+ predefined: 0,
56117
+ custom: 1,
56118
+ }
56119
+
53709
56120
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53710
56121
  enum sensitivity {
53711
56122
  normal: 0,
@@ -53714,6 +56125,19 @@ namespace reference.`microsoft.graph` {
53714
56125
  confidential: 3,
53715
56126
  }
53716
56127
 
56128
+ enum sensitivityLabelAssignmentMethod {
56129
+ standard: 0,
56130
+ privileged: 1,
56131
+ auto: 2,
56132
+ unknownFutureValue: 3,
56133
+ }
56134
+
56135
+ enum sensorStatus {
56136
+ active: 0,
56137
+ inactive: 1,
56138
+ unknownFutureValue: 2,
56139
+ }
56140
+
53717
56141
  /**
53718
56142
  * Status of ServiceNow Connection
53719
56143
  */
@@ -53837,6 +56261,16 @@ namespace reference.`microsoft.graph` {
53837
56261
  hours: 1,
53838
56262
  }
53839
56263
 
56264
+ enum singleSignOnMode {
56265
+ none: 0,
56266
+ onPremisesKerberos: 1,
56267
+ saml: 3,
56268
+ pingHeaderBased: 4,
56269
+ aadHeaderBased: 5,
56270
+ oAuthToken: 6,
56271
+ unknownFutureValue: 7,
56272
+ }
56273
+
53840
56274
  /**
53841
56275
  * Possible values for site security level.
53842
56276
  */
@@ -53868,6 +56302,25 @@ namespace reference.`microsoft.graph` {
53868
56302
  high: 5,
53869
56303
  }
53870
56304
 
56305
+ enum skillProficiencyLevel {
56306
+ elementary: 0,
56307
+ limitedWorking: 1,
56308
+ generalProfessional: 2,
56309
+ advancedProfessional: 3,
56310
+ expert: 4,
56311
+ unknownFutureValue: 5,
56312
+ }
56313
+
56314
+ enum stagedFeatureName {
56315
+ passthroughAuthentication: 0,
56316
+ seamlessSso: 1,
56317
+ passwordHashSync: 2,
56318
+ emailAsAlternateId: 3,
56319
+ unknownFutureValue: 4,
56320
+ certificateBasedAuthentication: 5,
56321
+ multiFactorAuthentication: 6,
56322
+ }
56323
+
53871
56324
  /**
53872
56325
  * State Management Setting.
53873
56326
  */
@@ -54043,6 +56496,21 @@ namespace reference.`microsoft.graph` {
54043
56496
  NPSExtension: 5,
54044
56497
  }
54045
56498
 
56499
+ enum trafficRoutingMethod {
56500
+ none: 0,
56501
+ random: 1,
56502
+ sessionPersistence: 2,
56503
+ performance: 3,
56504
+ unknownFutureValue: 4,
56505
+ }
56506
+
56507
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
56508
+ enum translationBehavior {
56509
+ Ask: 0,
56510
+ Yes: 1,
56511
+ No: 2,
56512
+ }
56513
+
54046
56514
  /**
54047
56515
  * Possible values for automatic update classification.
54048
56516
  */
@@ -54080,6 +56548,16 @@ namespace reference.`microsoft.graph` {
54080
56548
  unknownFutureValue: 2,
54081
56549
  }
54082
56550
 
56551
+ enum userDefaultAuthenticationMethodType {
56552
+ push: 0,
56553
+ oath: 1,
56554
+ voiceMobile: 2,
56555
+ voiceAlternateMobile: 3,
56556
+ voiceOffice: 4,
56557
+ sms: 5,
56558
+ unknownFutureValue: 6,
56559
+ }
56560
+
54083
56561
  /**
54084
56562
  * Possible values for username source or email source.
54085
56563
  */
@@ -54396,6 +56874,15 @@ namespace reference.`microsoft.graph` {
54396
56874
  samAccountName: 2,
54397
56875
  }
54398
56876
 
56877
+ enum userPersona {
56878
+ `unknown`: 0,
56879
+ externalMember: 1,
56880
+ externalGuest: 2,
56881
+ internalMember: 3,
56882
+ internalGuest: 4,
56883
+ unknownFutureValue: 5,
56884
+ }
56885
+
54399
56886
  /**
54400
56887
  * Supported values for the intended purpose of a user PFX certificate.
54401
56888
  */
@@ -54479,6 +56966,13 @@ namespace reference.`microsoft.graph` {
54479
56966
  show: 2,
54480
56967
  }
54481
56968
 
56969
+ enum volumeType {
56970
+ operatingSystemVolume: 1,
56971
+ fixedDataVolume: 2,
56972
+ removableDataVolume: 3,
56973
+ unknownFutureValue: 4,
56974
+ }
56975
+
54482
56976
  /**
54483
56977
  * VPN Authentication Method.
54484
56978
  */
@@ -55169,6 +57663,10 @@ namespace reference.`microsoft.graph` {
55169
57663
  * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
55170
57664
  */
55171
57665
  wpa3Personal: 7,
57666
+ /**
57667
+ * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
57668
+ */
57669
+ wpa3Enterprise: 8,
55172
57670
  }
55173
57671
 
55174
57672
  /**
@@ -55300,6 +57798,29 @@ namespace reference.`microsoft.graph` {
55300
57798
  unknownFutureValue: 9,
55301
57799
  }
55302
57800
 
57801
+ /**
57802
+ * Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use.
57803
+ */
57804
+ enum win32LobAppInUseActionType {
57805
+ /**
57806
+ * Default. Indicates that no in-use detection will be evaluated before an app enforcement.
57807
+ */
57808
+ notEnabled: 0,
57809
+ /**
57810
+ * Indicates that the in-use detection will occur immediately before app enforcement. Enforcement will not occur if the app is detected to be in-use, and an error status will be reported for the app.
57811
+ */
57812
+ fail: 1,
57813
+ /**
57814
+ * Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the processes specified in the corresponding process detection rules will be terminated, and app enforcement will commence.
57815
+ */
57816
+ terminateWithoutUserInteraction: 2,
57817
+ /**
57818
+ * Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the end user will be prompted according to the configured deferral and countdown settings, and the processes specified in the corresponding process detection rules will be terminated before app enforcement is commenced. If any of the processes cannot be terminated, the app will not be enforced, and an error status will be reported for the app.
57819
+ */
57820
+ terminateWithUserInteraction: 3,
57821
+ unknownFutureValue: 4,
57822
+ }
57823
+
55303
57824
  /**
55304
57825
  * Indicates the package type of an MSI Win32LobApp.
55305
57826
  */
@@ -55408,6 +57929,21 @@ namespace reference.`microsoft.graph` {
55408
57929
  `boolean`: 6,
55409
57930
  }
55410
57931
 
57932
+ /**
57933
+ * A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
57934
+ */
57935
+ enum win32LobAppProcessOperationType {
57936
+ /**
57937
+ * Default. Not configured.
57938
+ */
57939
+ notConfigured: 0,
57940
+ /**
57941
+ * Indicates that the rule evaluates whether the specified process exists (is running) on the device.
57942
+ */
57943
+ exists: 1,
57944
+ unknownFutureValue: 2,
57945
+ }
57946
+
55411
57947
  /**
55412
57948
  * Contains all supported registry data detection type.
55413
57949
  */
@@ -55562,7 +58098,6 @@ namespace reference.`microsoft.graph` {
55562
58098
  /**
55563
58099
  * Contains rule types for Win32 LOB apps.
55564
58100
  */
55565
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
55566
58101
  enum win32LobAppRuleType {
55567
58102
  /**
55568
58103
  * Detection rule.
@@ -55572,6 +58107,11 @@ namespace reference.`microsoft.graph` {
55572
58107
  * Requirement rule.
55573
58108
  */
55574
58109
  requirement: 1,
58110
+ /**
58111
+ * Indicates that the associated rule represents an executable for app in-use detection.
58112
+ */
58113
+ inUse: 2,
58114
+ unknownFutureValue: 3,
55575
58115
  }
55576
58116
 
55577
58117
  /**
@@ -56083,6 +58623,63 @@ namespace reference.`microsoft.graph` {
56083
58623
  unknownFutureValue: 3,
56084
58624
  }
56085
58625
 
58626
+ /**
58627
+ * Indicates the delivery optimization download priority level for app content. This controls whether the download uses background bandwidth (minimal impact on other network activity) or foreground bandwidth (prioritized download at the expense of other network traffic).
58628
+ */
58629
+ enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
58630
+ /**
58631
+ * Indicates that no delivery optimization priority is configured. The download uses normal background priority, which minimizes impact on other network activity. This is the default value when the property is omitted.
58632
+ */
58633
+ notConfigured: 0,
58634
+ /**
58635
+ * Indicates that the app content download uses foreground priority, which prioritizes the download over background network tasks. This may result in faster installation but increased network bandwidth consumption. In National Cloud environments, this value is accepted and stored but has no effect on device behavior.
58636
+ */
58637
+ foreground: 1,
58638
+ unknownFutureValue: 2,
58639
+ }
58640
+
58641
+ /**
58642
+ * Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
58643
+ */
58644
+ enum windowsAutoUpdateCatalogAppNotificationType {
58645
+ /**
58646
+ * Indicates that all notifications related to app installation and restart are displayed to the end user.
58647
+ */
58648
+ showAll: 0,
58649
+ /**
58650
+ * Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
58651
+ */
58652
+ showReboot: 1,
58653
+ /**
58654
+ * Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
58655
+ */
58656
+ hideAll: 2,
58657
+ unknownFutureValue: 3,
58658
+ }
58659
+
58660
+ /**
58661
+ * Indicates how the device handles restarts after the app installer finishes executing. This setting, configured on the app's installExperience, determines whether the Intune management extension initiates, suppresses, or forces a restart based on the installer's exit code.
58662
+ */
58663
+ enum windowsAutoUpdateCatalogAppRestartBehavior {
58664
+ /**
58665
+ * Indicates that the Intune management extension restarts the device only if the app installer returns an exit code that signals a reboot is required (e.g., exit code 3010).
58666
+ */
58667
+ basedOnReturnCode: 0,
58668
+ /**
58669
+ * Indicates that the Intune management extension does not take any specific action to control restarts. If the app installer initiates a restart (e.g., an MSI with ForceReboot action), it is allowed to proceed.
58670
+ */
58671
+ allow: 1,
58672
+ /**
58673
+ * Indicates that the Intune management extension attempts to suppress restarts initiated by the installer. For MSI-based installations, this passes the REBOOT=ReallySuppress property to msiexec. Not all installers honor suppression.
58674
+ */
58675
+ suppress: 2,
58676
+ /**
58677
+ * Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
58678
+ */
58679
+ force: 3,
58680
+ unknownFutureValue: 4,
58681
+ }
58682
+
56086
58683
  /**
56087
58684
  * Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
56088
58685
  */
@@ -57541,6 +60138,31 @@ namespace reference.`microsoft.graph` {
57541
60138
  unknownFutureValue: 2,
57542
60139
  }
57543
60140
 
60141
+ enum x509CertificateAffinityLevel {
60142
+ low: 0,
60143
+ high: 1,
60144
+ unknownFutureValue: 2,
60145
+ }
60146
+
60147
+ enum x509CertificateAuthenticationMode {
60148
+ x509CertificateSingleFactor: 0,
60149
+ x509CertificateMultiFactor: 1,
60150
+ unknownFutureValue: 2,
60151
+ }
60152
+
60153
+ enum x509CertificateIssuerHintsState {
60154
+ disabled: 0,
60155
+ enabled: 1,
60156
+ unknownFutureValue: 2,
60157
+ }
60158
+
60159
+ enum x509CertificateRuleType {
60160
+ issuerSubject: 0,
60161
+ policyOID: 1,
60162
+ unknownFutureValue: 2,
60163
+ issuerSubjectAndPolicyOID: 3,
60164
+ }
60165
+
57544
60166
  /**
57545
60167
  * Represents various states for Zebra FOTA connector.
57546
60168
  */