@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.
@@ -645,6 +645,16 @@ namespace reference.`microsoft.graph` {
645
645
  selections: keyValuePair[] | null;
646
646
  }
647
647
 
648
+ /**
649
+ * The request parameter for requesting Android LOB app configuration schema.
650
+ */
651
+ @complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
652
+ /**
653
+ * The application policy ID of the Android LOB app
654
+ */
655
+ appId: string | null;
656
+ }
657
+
648
658
  /**
649
659
  * Contains properties used to assign an Android Managed Store mobile app to a group.
650
660
  */
@@ -849,6 +859,120 @@ namespace reference.`microsoft.graph` {
849
859
  resourceSpecificApplicationPermissions: resourceSpecificPermission[];
850
860
  }
851
861
 
862
+ /**
863
+ * Boolean configuration item inside an Android application's custom configuration schema.
864
+ */
865
+ @complex model appConfigurationSchemaItemBooleanType extends appConfigurationSchemaItemType {
866
+ /**
867
+ * Default value, if specified by the app developer
868
+ */
869
+ defaultValue: boolean | null;
870
+ }
871
+
872
+ /**
873
+ * Bundle array configuration item inside an Android application's custom configuration schema.
874
+ */
875
+ @complex model appConfigurationSchemaItemBundleArray extends appConfigurationSchemaItemType {
876
+ }
877
+
878
+ /**
879
+ * Bundle configuration item inside an Android application's custom configuration schema.
880
+ */
881
+ @complex model appConfigurationSchemaItemBundleType extends appConfigurationSchemaItemType {
882
+ }
883
+
884
+ /**
885
+ * Choice configuration item inside an Android application's custom configuration schema.
886
+ */
887
+ @complex model appConfigurationSchemaItemChoiceType extends appConfigurationSchemaItemType {
888
+ /**
889
+ * Default value, if specified by the app developer
890
+ */
891
+ defaultValue: string | null;
892
+ /**
893
+ * List of human readable name/value pairs for the valid values that can be set for this item
894
+ */
895
+ selections: keyValuePair[] | null;
896
+ }
897
+
898
+ /**
899
+ * Hidden configuration item inside an Android application's custom configuration schema.
900
+ */
901
+ @complex model appConfigurationSchemaItemHiddenType extends appConfigurationSchemaItemType {
902
+ /**
903
+ * Default value, if specified by the app developer
904
+ */
905
+ defaultValue: string | null;
906
+ }
907
+
908
+ /**
909
+ * Integer configuration item inside an Android application's custom configuration schema.
910
+ */
911
+ @complex model appConfigurationSchemaItemIntegerType extends appConfigurationSchemaItemType {
912
+ /**
913
+ * Default value, if specified by the app developer. Valid values 0 to 2147483647
914
+ */
915
+ defaultValue: int32 | null;
916
+ }
917
+
918
+ /**
919
+ * Multiselect configuration item inside an Android application's custom configuration schema.
920
+ */
921
+ @complex model appConfigurationSchemaItemMultiselectType extends appConfigurationSchemaItemType {
922
+ /**
923
+ * Default value, if specified by the app developer
924
+ */
925
+ defaultValue: string[] | null;
926
+ /**
927
+ * List of human readable name/value pairs for the valid values that can be set for this item
928
+ */
929
+ selections: keyValuePair[] | null;
930
+ }
931
+
932
+ /**
933
+ * String configuration item inside an Android application's custom configuration schema.
934
+ */
935
+ @complex model appConfigurationSchemaItemStringType extends appConfigurationSchemaItemType {
936
+ /**
937
+ * Default value, if specified by the app developer
938
+ */
939
+ defaultValue: string | null;
940
+ }
941
+
942
+ /**
943
+ * Single configuration item inside an Android application's configuration schema.
944
+ */
945
+ @abstract
946
+ @complex model appConfigurationSchemaItemType {
947
+ /**
948
+ * Description of what the item controls within the application
949
+ */
950
+ description: string | null;
951
+ /**
952
+ * Human readable name
953
+ */
954
+ displayName: string | null;
955
+ /**
956
+ * Unique index the application uses to maintain nested schema items. Valid values 0 to 2147483647
957
+ */
958
+ index: int32;
959
+ /**
960
+ * Index of parent schema item to track nested schema items. Valid values 0 to 2147483647
961
+ */
962
+ parentIndex: int32 | null;
963
+ /**
964
+ * Unique key the application uses to identify the item
965
+ */
966
+ schemaItemKey: string | null;
967
+ }
968
+
969
+ /**
970
+ * Base type for the request parameters that identifies the requested app configuration schema.
971
+ */
972
+ @abstract
973
+ @complex model appConfigurationSchemaRequestDetail {
974
+ }
975
+
852
976
  /**
853
977
  * Contains properties for App configuration setting item.
854
978
  */
@@ -1022,7 +1146,7 @@ namespace reference.`microsoft.graph` {
1022
1146
  }
1023
1147
 
1024
1148
  @complex model appManagementPolicyActorExemptions {
1025
- @contains customSecurityAttributes: customSecurityAttributeExemption[];
1149
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
1026
1150
  }
1027
1151
 
1028
1152
  @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
@@ -2170,6 +2294,16 @@ namespace reference.`microsoft.graph` {
2170
2294
  cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
2171
2295
  }
2172
2296
 
2297
+ /**
2298
+ * 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.
2299
+ */
2300
+ @complex model cloudCertificationAuthorityVersionUsage {
2301
+ /**
2302
+ * 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.
2303
+ */
2304
+ issuedStagedLeafCertificateCount: int32 | null;
2305
+ }
2306
+
2173
2307
  @complex model cloudRealtimeCommunicationInfo {
2174
2308
  isSipEnabled: boolean | null;
2175
2309
  }
@@ -2856,6 +2990,16 @@ namespace reference.`microsoft.graph` {
2856
2990
  clientConfiguration: customExtensionClientConfiguration | null;
2857
2991
  }
2858
2992
 
2993
+ @abstract
2994
+ @complex model customSecurityAttributeExemption {
2995
+ id: string;
2996
+ operator: customSecurityAttributeComparisonOperator;
2997
+ }
2998
+
2999
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
3000
+ value: string | null;
3001
+ }
3002
+
2859
3003
  @open
2860
3004
  @complex model customSecurityAttributeValue {
2861
3005
  }
@@ -3288,11 +3432,11 @@ namespace reference.`microsoft.graph` {
3288
3432
 
3289
3433
  @complex model deviceCompliancePolicyScript {
3290
3434
  /**
3291
- * Device compliance script Id.
3435
+ * 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.
3292
3436
  */
3293
3437
  deviceComplianceScriptId: string | null;
3294
3438
  /**
3295
- * Json of the rules.
3439
+ * 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.
3296
3440
  */
3297
3441
  rulesContent: binary | null;
3298
3442
  }
@@ -5764,6 +5908,10 @@ namespace reference.`microsoft.graph` {
5764
5908
  * The number of days after installation that forced reboot will happen.
5765
5909
  */
5766
5910
  daysUntilForcedReboot: int32;
5911
+ /**
5912
+ * The unique identifier for the quality update catalog item targeted by the expedite.
5913
+ */
5914
+ qualityUpdateCatalogItemId: string | null;
5767
5915
  /**
5768
5916
  * The release date to identify a quality update.
5769
5917
  */
@@ -7512,6 +7660,7 @@ namespace reference.`microsoft.graph` {
7512
7660
  usage: string | null;
7513
7661
  }
7514
7662
 
7663
+
7515
7664
  /**
7516
7665
  * A key-value pair with a string key and an integer value.
7517
7666
  */
@@ -7734,6 +7883,21 @@ namespace reference.`microsoft.graph` {
7734
7883
  primaryLookupColumnId: string | null;
7735
7884
  }
7736
7885
 
7886
+ @complex model m365CapabilityInboundAccess {
7887
+ isAllowed: boolean | null;
7888
+ resourceScopes: m365CapabilityResourceScopes | null;
7889
+ }
7890
+
7891
+ @complex model m365CapabilityResourceScope {
7892
+ resourceId: string | null;
7893
+ resourceType: m365ResourceType;
7894
+ }
7895
+
7896
+ @complex model m365CapabilityResourceScopes {
7897
+ excluded: m365CapabilityResourceScope[];
7898
+ included: m365CapabilityResourceScope[];
7899
+ }
7900
+
7737
7901
  /**
7738
7902
  * The identifier for a Mac app.
7739
7903
  */
@@ -8596,6 +8760,16 @@ namespace reference.`microsoft.graph` {
8596
8760
  msiType: msiType | null;
8597
8761
  }
8598
8762
 
8763
+ /**
8764
+ * The request parameter for requesting Android Managed Play Store app configuration schema.
8765
+ */
8766
+ @complex model managedStoreAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
8767
+ /**
8768
+ * The package name of the Android Managed Play Store app
8769
+ */
8770
+ packageName: string | null;
8771
+ }
8772
+
8599
8773
  @complex model managementCertificateWithThumbprint {
8600
8774
  /**
8601
8775
  * The Base 64 encoded management certificate
@@ -9573,6 +9747,7 @@ namespace reference.`microsoft.graph` {
9573
9747
  startDateTime: offsetDateTime | null;
9574
9748
  }
9575
9749
 
9750
+
9576
9751
  @complex model passwordProfile {
9577
9752
  forceChangePasswordNextSignIn: boolean | null;
9578
9753
  forceChangePasswordNextSignInWithMfa: boolean | null;
@@ -9888,6 +10063,12 @@ namespace reference.`microsoft.graph` {
9888
10063
  localizations: displayNameLocalization[] | null;
9889
10064
  }
9890
10065
 
10066
+ @complex model profileSourceLocalization {
10067
+ displayName: string | null;
10068
+ languageTag: string | null;
10069
+ webUrl: string | null;
10070
+ }
10071
+
9891
10072
  @open
9892
10073
  @complex model programResource extends identity {
9893
10074
  type: string | null;
@@ -12785,6 +12966,10 @@ namespace reference.`microsoft.graph` {
12785
12966
  * Device restart behavior.
12786
12967
  */
12787
12968
  deviceRestartBehavior: win32LobAppRestartBehavior;
12969
+ /**
12970
+ * 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'.
12971
+ */
12972
+ inUseBehavior: win32LobAppInUseActionType | null;
12788
12973
  /**
12789
12974
  * The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
12790
12975
  */
@@ -12915,6 +13100,24 @@ namespace reference.`microsoft.graph` {
12915
13100
  scriptContent: string | null;
12916
13101
  }
12917
13102
 
13103
+ /**
13104
+ * A complex type to store process rule data for a Win32 LOB app.
13105
+ */
13106
+ @complex model win32LobAppProcessRule extends win32LobAppRule {
13107
+ /**
13108
+ * Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
13109
+ */
13110
+ operationType: win32LobAppProcessOperationType;
13111
+ /**
13112
+ * Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
13113
+ */
13114
+ processDisplayName: string | null;
13115
+ /**
13116
+ * Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
13117
+ */
13118
+ processName: string | null;
13119
+ }
13120
+
12918
13121
  /**
12919
13122
  * Contains product code and version properties to detect a Win32 App
12920
13123
  */
@@ -13199,6 +13402,78 @@ namespace reference.`microsoft.graph` {
13199
13402
  useDeviceContext: boolean;
13200
13403
  }
13201
13404
 
13405
+ /**
13406
+ * 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.
13407
+ */
13408
+ @complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
13409
+ /**
13410
+ * 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.
13411
+ */
13412
+ deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
13413
+ /**
13414
+ * 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.
13415
+ */
13416
+ installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
13417
+ /**
13418
+ * 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.
13419
+ */
13420
+ notificationType: windowsAutoUpdateCatalogAppNotificationType;
13421
+ /**
13422
+ * 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.
13423
+ */
13424
+ restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
13425
+ }
13426
+
13427
+ /**
13428
+ * 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).
13429
+ */
13430
+ @complex model windowsAutoUpdateCatalogAppInstallExperience {
13431
+ /**
13432
+ * 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.
13433
+ */
13434
+ deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
13435
+ /**
13436
+ * 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.
13437
+ */
13438
+ runAsAccount: runAsAccountType;
13439
+ }
13440
+
13441
+ /**
13442
+ * 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.
13443
+ */
13444
+ @complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
13445
+ /**
13446
+ * 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.
13447
+ */
13448
+ deadlineDateTime: offsetDateTime | null;
13449
+ /**
13450
+ * The time at which the app should be available for installation on the device. When null, the app is available immediately.
13451
+ */
13452
+ startDateTime: offsetDateTime | null;
13453
+ /**
13454
+ * 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.
13455
+ */
13456
+ useLocalTime: boolean;
13457
+ }
13458
+
13459
+ /**
13460
+ * 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).
13461
+ */
13462
+ @complex model windowsAutoUpdateCatalogAppRestartSettings {
13463
+ /**
13464
+ * 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.
13465
+ */
13466
+ countdownDisplayBeforeRestartInMinutes: int32;
13467
+ /**
13468
+ * 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.
13469
+ */
13470
+ gracePeriodInMinutes: int32;
13471
+ /**
13472
+ * 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.
13473
+ */
13474
+ restartNotificationSnoozeDurationInMinutes: int32 | null;
13475
+ }
13476
+
13202
13477
  /**
13203
13478
  * Windows Defender last scan result
13204
13479
  */
@@ -15212,6 +15487,24 @@ namespace reference.`microsoft.graph` {
15212
15487
  isActive: boolean | null;
15213
15488
  }
15214
15489
 
15490
+ /**
15491
+ * Schema describing an Android application's custom configurations.
15492
+ */
15493
+ @entity model androidAppConfigurationSchema extends entity {
15494
+ /**
15495
+ * UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
15496
+ */
15497
+ exampleJson: binary | null;
15498
+ /**
15499
+ * Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
15500
+ */
15501
+ nestedSchemaItems: appConfigurationSchemaItemType[] | null;
15502
+ /**
15503
+ * Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
15504
+ */
15505
+ schemaItems: appConfigurationSchemaItemType[] | null;
15506
+ }
15507
+
15215
15508
  /**
15216
15509
  * Android certificate profile base.
15217
15510
  */
@@ -16431,6 +16724,10 @@ namespace reference.`microsoft.graph` {
16431
16724
  * Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
16432
16725
  */
16433
16726
  customKeyValueData: keyValuePair[] | null;
16727
+ /**
16728
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
16729
+ */
16730
+ lockdownExclusionList: string[] | null;
16434
16731
  /**
16435
16732
  * Microsoft Tunnel site ID.
16436
16733
  */
@@ -18813,6 +19110,10 @@ namespace reference.`microsoft.graph` {
18813
19110
  * 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.
18814
19111
  */
18815
19112
  fingerprint: string | null;
19113
+ /**
19114
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
19115
+ */
19116
+ lockdownExclusionList: string[] | null;
18816
19117
  /**
18817
19118
  * Microsoft Tunnel site ID.
18818
19119
  */
@@ -19479,9 +19780,11 @@ namespace reference.`microsoft.graph` {
19479
19780
  identifierUris: string[];
19480
19781
  info: informationalUrl | null;
19481
19782
  isDeviceOnlyAuthSupported: boolean | null;
19783
+ isDisabled: boolean | null;
19482
19784
  isFallbackPublicClient: boolean | null;
19483
19785
  keyCredentials: keyCredential[];
19484
19786
  logo: stream;
19787
+ managerApplications: guid;
19485
19788
  notes: string | null;
19486
19789
  onPremisesPublishing: onPremisesPublishing | null;
19487
19790
  optionalClaims: optionalClaims | null;
@@ -19810,6 +20113,7 @@ namespace reference.`microsoft.graph` {
19810
20113
  requirements: strongAuthenticationRequirements | null;
19811
20114
  signInPreferences: signInPreferences | null;
19812
20115
  @contains emailMethods: emailAuthenticationMethod[];
20116
+ @contains externalAuthenticationMethods: externalAuthenticationMethod[];
19813
20117
  @contains fido2Methods: fido2AuthenticationMethod[];
19814
20118
  @contains methods: authenticationMethod[];
19815
20119
  @contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
@@ -20309,7 +20613,7 @@ namespace reference.`microsoft.graph` {
20309
20613
  */
20310
20614
  @entity model cloudCertificationAuthority extends entity {
20311
20615
  /**
20312
- * The URL to download the certification authority certificate. Read-only.
20616
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
20313
20617
  */
20314
20618
  certificateDownloadUrl: string | null;
20315
20619
  /**
@@ -20317,11 +20621,11 @@ namespace reference.`microsoft.graph` {
20317
20621
  */
20318
20622
  certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
20319
20623
  /**
20320
- * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
20624
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
20321
20625
  */
20322
20626
  certificateRevocationListUrl: string | null;
20323
20627
  /**
20324
- * 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.
20628
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
20325
20629
  */
20326
20630
  certificateSigningRequest: string | null;
20327
20631
  /**
@@ -20329,7 +20633,7 @@ namespace reference.`microsoft.graph` {
20329
20633
  */
20330
20634
  certificationAuthorityIssuerId: string | null;
20331
20635
  /**
20332
- * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
20636
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
20333
20637
  */
20334
20638
  certificationAuthorityIssuerUri: string | null;
20335
20639
  /**
@@ -20369,9 +20673,13 @@ namespace reference.`microsoft.graph` {
20369
20673
  */
20370
20674
  eTag: string | null;
20371
20675
  extendedKeyUsages: extendedKeyUsage[] | null;
20676
+ /**
20677
+ * The geographic region where a cloud certification authority (CA) is hosted. Read-only.
20678
+ */
20679
+ geographicRegion: string | null;
20372
20680
  issuerCommonName: string | null;
20373
20681
  /**
20374
- * The key platform used to store the certification authority keys. Read-only.
20682
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
20375
20683
  */
20376
20684
  keyPlatform: cloudCertificationAuthorityKeyPlatformType;
20377
20685
  /**
@@ -20383,7 +20691,7 @@ namespace reference.`microsoft.graph` {
20383
20691
  */
20384
20692
  localityName: string | null;
20385
20693
  /**
20386
- * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
20694
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
20387
20695
  */
20388
20696
  ocspResponderUri: string | null;
20389
20697
  /**
@@ -20403,11 +20711,11 @@ namespace reference.`microsoft.graph` {
20403
20711
  */
20404
20712
  rootCertificateCommonName: string | null;
20405
20713
  /**
20406
- * The SCEP server URL for device SCEP connections to request certificates. Read-only.
20714
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
20407
20715
  */
20408
20716
  scepServerUrl: string | null;
20409
20717
  /**
20410
- * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only. Supports $select.
20718
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
20411
20719
  */
20412
20720
  serialNumber: string | null;
20413
20721
  /**
@@ -20415,15 +20723,15 @@ namespace reference.`microsoft.graph` {
20415
20723
  */
20416
20724
  stateName: string | null;
20417
20725
  /**
20418
- * 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.
20726
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
20419
20727
  */
20420
20728
  subjectName: string | null;
20421
20729
  /**
20422
- * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only. Supports $select.
20730
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
20423
20731
  */
20424
20732
  thumbprint: string | null;
20425
20733
  /**
20426
- * 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.
20734
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
20427
20735
  */
20428
20736
  validityEndDateTime: offsetDateTime | null;
20429
20737
  /**
@@ -20431,17 +20739,25 @@ namespace reference.`microsoft.graph` {
20431
20739
  */
20432
20740
  validityPeriodInYears: int32;
20433
20741
  /**
20434
- * 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.
20742
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
20435
20743
  */
20436
20744
  validityStartDateTime: offsetDateTime | null;
20437
20745
  /**
20438
- * The certification authority version, which is incremented each time the certification authority is renewed. Read-only.
20746
+ * Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
20439
20747
  */
20440
20748
  versionNumber: int32;
20749
+ /**
20750
+ * 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.
20751
+ */
20752
+ @references activeVersion: cloudCertificationAuthorityVersion | null;
20441
20753
  /**
20442
20754
  * Required OData property to expose leaf certificate API.
20443
20755
  */
20444
20756
  @references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
20757
+ /**
20758
+ * 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.
20759
+ */
20760
+ @references versions: cloudCertificationAuthorityVersion[];
20445
20761
  }
20446
20762
 
20447
20763
  /**
@@ -20456,6 +20772,10 @@ namespace reference.`microsoft.graph` {
20456
20772
  * The URI of the certification authority that issued the certificate. Read-only.
20457
20773
  */
20458
20774
  certificationAuthorityIssuerUri: string | null;
20775
+ /**
20776
+ * The version number of the certification authority that issued this leaf certificate. Read-only.
20777
+ */
20778
+ certificationAuthorityVersionNumber: int32;
20459
20779
  /**
20460
20780
  * URL to find the relevant Certificate Revocation List for this certificate. Read-only.
20461
20781
  */
@@ -20521,6 +20841,88 @@ namespace reference.`microsoft.graph` {
20521
20841
  * 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.
20522
20842
  */
20523
20843
  validityStartDateTime: offsetDateTime | null;
20844
+ /**
20845
+ * The certification authority version that issued this leaf certificate. Read-only.
20846
+ */
20847
+ @references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
20848
+ }
20849
+
20850
+ /**
20851
+ * Entity that represents version-specific properties of a cloud certification authority.
20852
+ */
20853
+ @entity model cloudCertificationAuthorityVersion extends entity {
20854
+ /**
20855
+ * The URL to download the certification authority certificate. Read-only.
20856
+ */
20857
+ certificateDownloadUrl: string | null;
20858
+ /**
20859
+ * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
20860
+ */
20861
+ certificateRevocationListUrl: string | null;
20862
+ /**
20863
+ * 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.
20864
+ */
20865
+ certificateSigningRequest: string | null;
20866
+ /**
20867
+ * The certification authority identifier. Read-only.
20868
+ */
20869
+ certificationAuthorityId: string;
20870
+ /**
20871
+ * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
20872
+ */
20873
+ certificationAuthorityIssuerUri: string | null;
20874
+ /**
20875
+ * The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
20876
+ */
20877
+ certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
20878
+ /**
20879
+ * 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.
20880
+ */
20881
+ decommissionDateTime: offsetDateTime | null;
20882
+ /**
20883
+ * The key platform used to store the certification authority keys. Read-only.
20884
+ */
20885
+ keyPlatform: cloudCertificationAuthorityKeyPlatformType;
20886
+ /**
20887
+ * 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.
20888
+ */
20889
+ @computed lastModifiedDateTime: offsetDateTime | null;
20890
+ /**
20891
+ * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
20892
+ */
20893
+ ocspResponderUri: string | null;
20894
+ /**
20895
+ * The SCEP server URL for device SCEP connections to request certificates. Read-only.
20896
+ */
20897
+ scepServerUrl: string | null;
20898
+ /**
20899
+ * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
20900
+ */
20901
+ serialNumber: string | null;
20902
+ /**
20903
+ * 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.
20904
+ */
20905
+ subjectName: string | null;
20906
+ /**
20907
+ * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
20908
+ */
20909
+ thumbprint: string | null;
20910
+ /**
20911
+ * 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.
20912
+ */
20913
+ usage: cloudCertificationAuthorityVersionUsage | null;
20914
+ /**
20915
+ * 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.
20916
+ */
20917
+ validityEndDateTime: offsetDateTime | null;
20918
+ /**
20919
+ * 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.
20920
+ */
20921
+ validityStartDateTime: offsetDateTime | null;
20922
+ /**
20923
+ * The version number assigned to this specific certification authority version entity. Read-only.
20924
+ */
20925
+ versionNumber: int32;
20524
20926
  }
20525
20927
 
20526
20928
  /**
@@ -20972,6 +21374,7 @@ namespace reference.`microsoft.graph` {
20972
21374
  inboundTrust: crossTenantAccessPolicyInboundTrust | null;
20973
21375
  invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
20974
21376
  isServiceDefault: boolean | null;
21377
+ @contains m365Capabilities: m365CapabilityBase[];
20975
21378
  }
20976
21379
 
20977
21380
  @entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
@@ -20983,6 +21386,22 @@ namespace reference.`microsoft.graph` {
20983
21386
  isServiceProvider: boolean | null;
20984
21387
  @computed @key tenantId: string;
20985
21388
  @contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
21389
+ @contains m365Capabilities: m365CapabilityBase[];
21390
+ }
21391
+
21392
+ @entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
21393
+ }
21394
+
21395
+ @entity model crossTenantCalendarAvailabilityLimitedDetails extends m365CapabilityBase {
21396
+ }
21397
+
21398
+ @entity model crossTenantCalendarSharingFreeBusyDetail extends m365CapabilityBase {
21399
+ }
21400
+
21401
+ @entity model crossTenantCalendarSharingFreeBusyReviewer extends m365CapabilityBase {
21402
+ }
21403
+
21404
+ @entity model crossTenantCalendarSharingFreeBusySimple extends m365CapabilityBase {
20986
21405
  }
20987
21406
 
20988
21407
  @entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
@@ -20993,6 +21412,24 @@ namespace reference.`microsoft.graph` {
20993
21412
  userSyncInbound: crossTenantUserSyncInbound | null;
20994
21413
  }
20995
21414
 
21415
+ @entity model crossTenantMailTipsAll extends m365CapabilityBase {
21416
+ }
21417
+
21418
+ @entity model crossTenantMailTipsLimited extends m365CapabilityBase {
21419
+ }
21420
+
21421
+ @entity model crossTenantMigration extends m365CapabilityBase {
21422
+ }
21423
+
21424
+ @entity model crossTenantOpenProfileCard extends m365CapabilityBase {
21425
+ }
21426
+
21427
+ @entity model crossTenantPlacesDeskBooking extends m365CapabilityBase {
21428
+ }
21429
+
21430
+ @entity model crossTenantPlacesRoomBooking extends m365CapabilityBase {
21431
+ }
21432
+
20996
21433
  @privatePreview("MicrosofEntitlementManagementCustomextensions")
20997
21434
  @entity model customAccessPackageWorkflowExtension extends customCalloutExtension {
20998
21435
  @computed createdDateTime: offsetDateTime | null;
@@ -21054,15 +21491,6 @@ namespace reference.`microsoft.graph` {
21054
21491
  @contains allowedValues: allowedValue[];
21055
21492
  }
21056
21493
 
21057
- @abstract
21058
- @entity model customSecurityAttributeExemption extends entity {
21059
- operator: customSecurityAttributeComparisonOperator | null;
21060
- }
21061
-
21062
- @entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
21063
- value: string | null;
21064
- }
21065
-
21066
21494
  @entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
21067
21495
  inactive1DayCount: int64 | null;
21068
21496
  }
@@ -22606,6 +23034,10 @@ namespace reference.`microsoft.graph` {
22606
23034
  * The timestamp of when the device compliance script was modified. This property is read-only.
22607
23035
  */
22608
23036
  @computed lastModifiedDateTime: offsetDateTime;
23037
+ /**
23038
+ * Indicates the operating system platform type that this compliance script targets.
23039
+ */
23040
+ platform: deviceComplianceScriptPlatformType | null;
22609
23041
  /**
22610
23042
  * Name of the device compliance script publisher
22611
23043
  */
@@ -22615,7 +23047,7 @@ namespace reference.`microsoft.graph` {
22615
23047
  */
22616
23048
  roleScopeTagIds: string[] | null;
22617
23049
  /**
22618
- * Indicate whether PowerShell script(s) should run as 32-bit
23050
+ * 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.
22619
23051
  */
22620
23052
  runAs32Bit: boolean;
22621
23053
  /**
@@ -23831,6 +24263,9 @@ namespace reference.`microsoft.graph` {
23831
24263
  status: appLogUploadState;
23832
24264
  }
23833
24265
 
24266
+ /**
24267
+ * Singleton that acts as container for a collection of Resource Access entities.
24268
+ */
23834
24269
  @entity model deviceManagement extends entity {
23835
24270
  /**
23836
24271
  * The date & time when tenant data moved between scaleunits.
@@ -23916,6 +24351,10 @@ namespace reference.`microsoft.graph` {
23916
24351
  * The summary state of ATP onboarding state for this account.
23917
24352
  */
23918
24353
  @contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
24354
+ /**
24355
+ * Android App Configurations Schema entity.
24356
+ */
24357
+ @contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
23919
24358
  /**
23920
24359
  * Android device owner enrollment profile entities.
23921
24360
  */
@@ -24288,6 +24727,9 @@ namespace reference.`microsoft.graph` {
24288
24727
  * The remote assistance settings singleton
24289
24728
  */
24290
24729
  @contains remoteAssistanceSettings: remoteAssistanceSettings | null;
24730
+ /**
24731
+ * Reports singleton
24732
+ */
24291
24733
  @contains reports: deviceManagementReports | null;
24292
24734
  /**
24293
24735
  * Collection of resource access settings associated with account.
@@ -25777,6 +26219,9 @@ namespace reference.`microsoft.graph` {
25777
26219
  whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
25778
26220
  }
25779
26221
 
26222
+ /**
26223
+ * Singleton entity that acts as a container for all reports functionality.
26224
+ */
25780
26225
  @entity model deviceManagementReports extends entity {
25781
26226
  /**
25782
26227
  * Entity representing the configuration of a cached report.
@@ -27016,6 +27461,11 @@ namespace reference.`microsoft.graph` {
27016
27461
  targetObjects: string[];
27017
27462
  }
27018
27463
 
27464
+ @entity model externalAuthenticationMethod extends authenticationMethod {
27465
+ configurationId: string;
27466
+ displayName: string;
27467
+ }
27468
+
27019
27469
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
27020
27470
  appId: string;
27021
27471
  displayName: string;
@@ -27173,6 +27623,7 @@ namespace reference.`microsoft.graph` {
27173
27623
  groupTypes: string[];
27174
27624
  hasMembersWithLicenseErrors: boolean | null;
27175
27625
  hideFromAddressLists: boolean | null;
27626
+ hideFromOutlookClients: boolean | null;
27176
27627
  infoCatalogs: string[];
27177
27628
  isArchived: boolean | null;
27178
27629
  isAssignableToRole: boolean | null;
@@ -27187,12 +27638,14 @@ namespace reference.`microsoft.graph` {
27187
27638
  membershipRuleProcessingState: string | null;
27188
27639
  membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
27189
27640
  onPremisesDomainName: string | null;
27641
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
27190
27642
  onPremisesLastSyncDateTime: offsetDateTime | null;
27191
27643
  onPremisesNetBiosName: string | null;
27192
27644
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
27193
27645
  onPremisesSamAccountName: string | null;
27194
27646
  onPremisesSecurityIdentifier: string | null;
27195
27647
  onPremisesSyncEnabled: boolean | null;
27648
+ organizationId: string | null;
27196
27649
  preferredDataLocation: string | null;
27197
27650
  preferredLanguage: string | null;
27198
27651
  proxyAddresses: string[];
@@ -27204,8 +27657,11 @@ namespace reference.`microsoft.graph` {
27204
27657
  serviceProvisioningErrors: serviceProvisioningError[] | null;
27205
27658
  theme: string | null;
27206
27659
  uniqueName: string | null;
27660
+ unseenConversationsCount: int32 | null;
27207
27661
  unseenCount: int32 | null;
27662
+ unseenMessagesCount: int32 | null;
27208
27663
  visibility: string | null;
27664
+ welcomeMessageEnabled: boolean | null;
27209
27665
  writebackConfiguration: groupWritebackConfiguration | null;
27210
27666
  @contains acceptedSenders: directoryObject[];
27211
27667
  @contains appRoleAssignments: appRoleAssignment[];
@@ -28545,7 +29001,7 @@ namespace reference.`microsoft.graph` {
28545
29001
  }
28546
29002
 
28547
29003
  @entity model inheritablePermission extends MsGraph.SharedModels.entity {
28548
- inheritableScopes: inheritableScopes;
29004
+ inheritableScopes: inheritableScopes | null;
28549
29005
  @computed @key resourceAppId: string;
28550
29006
  }
28551
29007
 
@@ -30157,7 +30613,7 @@ namespace reference.`microsoft.graph` {
30157
30613
  }
30158
30614
 
30159
30615
  /**
30160
- * A class containing the properties used for iOS LOB app provisioning configuration PolicySetItem.
30616
+ * A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
30161
30617
  */
30162
30618
  @entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
30163
30619
  }
@@ -30900,7 +31356,6 @@ namespace reference.`microsoft.graph` {
30900
31356
  retentionSettings: retentionLabelSettings | null;
30901
31357
  }
30902
31358
 
30903
-
30904
31359
  @entity model languageProficiency extends itemFacet {
30905
31360
  displayName: string | null;
30906
31361
  proficiency: languageProficiencyLevel | null;
@@ -30919,6 +31374,7 @@ namespace reference.`microsoft.graph` {
30919
31374
 
30920
31375
  @entity model list extends baseItem {
30921
31376
  displayName: string | null;
31377
+ itemCount: int32 | null;
30922
31378
  list: listInfo | null;
30923
31379
  sharepointIds: sharepointIds | null;
30924
31380
  system: systemFacet | null;
@@ -30983,6 +31439,13 @@ namespace reference.`microsoft.graph` {
30983
31439
  statusDetail: string | null;
30984
31440
  }
30985
31441
 
31442
+ @abstract
31443
+ @entity model m365CapabilityBase extends MsGraph.SharedModels.entity {
31444
+ inboundAccess: m365CapabilityInboundAccess | null;
31445
+ @computed lastModifiedDateTime: offsetDateTime;
31446
+ @computed @key name: string;
31447
+ }
31448
+
30986
31449
  /**
30987
31450
  * Mac OS certificate profile.
30988
31451
  */
@@ -31015,87 +31478,91 @@ namespace reference.`microsoft.graph` {
31015
31478
  */
31016
31479
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
31017
31480
  /**
31018
- * MDATP Require Mobile Threat Protection minimum risk level to report noncompliance.
31481
+ * 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.
31019
31482
  */
31020
31483
  advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31021
31484
  /**
31022
- * Require that devices have enabled device threat protection.
31485
+ * 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.
31486
+ */
31487
+ deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
31488
+ /**
31489
+ * 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.
31023
31490
  */
31024
31491
  deviceThreatProtectionEnabled: boolean;
31025
31492
  /**
31026
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
31493
+ * 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.
31027
31494
  */
31028
31495
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31029
31496
  /**
31030
- * Corresponds to the “Block all incoming connections option.
31497
+ * 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.
31031
31498
  */
31032
31499
  firewallBlockAllIncoming: boolean;
31033
31500
  /**
31034
- * Whether the firewall should be enabled or not.
31501
+ * 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.
31035
31502
  */
31036
31503
  firewallEnabled: boolean;
31037
31504
  /**
31038
- * Corresponds to Enable stealth mode.”
31505
+ * 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.
31039
31506
  */
31040
31507
  firewallEnableStealthMode: boolean;
31041
31508
  /**
31042
- * System and Privacy setting that determines which download locations apps can be run from on a macOS device.
31509
+ * 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.
31043
31510
  */
31044
31511
  gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
31045
31512
  /**
31046
- * Maximum MacOS build version.
31513
+ * 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.
31047
31514
  */
31048
31515
  osMaximumBuildVersion: string | null;
31049
31516
  /**
31050
- * Maximum MacOS version.
31517
+ * 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.
31051
31518
  */
31052
31519
  osMaximumVersion: string | null;
31053
31520
  /**
31054
- * Minimum MacOS build version.
31521
+ * 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.
31055
31522
  */
31056
31523
  osMinimumBuildVersion: string | null;
31057
31524
  /**
31058
- * Minimum MacOS version.
31525
+ * 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.
31059
31526
  */
31060
31527
  osMinimumVersion: string | null;
31061
31528
  /**
31062
- * Indicates whether or not to block simple passwords.
31529
+ * 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.
31063
31530
  */
31064
31531
  passwordBlockSimple: boolean;
31065
31532
  /**
31066
- * Number of days before the password expires. Valid values 1 to 65535
31533
+ * 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
31067
31534
  */
31068
31535
  passwordExpirationDays: int32 | null;
31069
31536
  /**
31070
- * The number of character sets required in the password.
31537
+ * 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.
31071
31538
  */
31072
31539
  passwordMinimumCharacterSetCount: int32 | null;
31073
31540
  /**
31074
- * Minimum length of password. Valid values 4 to 14
31541
+ * 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
31075
31542
  */
31076
31543
  passwordMinimumLength: int32 | null;
31077
31544
  /**
31078
- * Minutes of inactivity before a password is required.
31545
+ * 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.
31079
31546
  */
31080
31547
  passwordMinutesOfInactivityBeforeLock: int32 | null;
31081
31548
  /**
31082
- * Number of previous passwords to block. Valid values 1 to 24
31549
+ * 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
31083
31550
  */
31084
31551
  passwordPreviousPasswordBlockCount: int32 | null;
31085
31552
  /**
31086
- * Whether or not to require a password.
31553
+ * 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.
31087
31554
  */
31088
31555
  passwordRequired: boolean;
31089
31556
  /**
31090
- * The required password type.
31557
+ * 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.
31091
31558
  */
31092
31559
  passwordRequiredType: requiredPasswordType;
31093
31560
  /**
31094
- * Require encryption on Mac OS devices.
31561
+ * 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.
31095
31562
  */
31096
31563
  storageRequireEncryption: boolean;
31097
31564
  /**
31098
- * Require that devices have enabled system integrity protection.
31565
+ * 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.
31099
31566
  */
31100
31567
  systemIntegrityProtectionEnabled: boolean;
31101
31568
  }
@@ -32841,6 +33308,10 @@ namespace reference.`microsoft.graph` {
32841
33308
  * Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
32842
33309
  */
32843
33310
  protectedMessagingRedirectAppType: messagingRedirectAppType;
33311
+ /**
33312
+ * 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.
33313
+ */
33314
+ purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
32844
33315
  /**
32845
33316
  * Indicates whether users may use the "Save As" menu item to save a copy of protected files.
32846
33317
  */
@@ -34957,6 +35428,10 @@ namespace reference.`microsoft.graph` {
34957
35428
  * 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.
34958
35429
  */
34959
35430
  androidMobileApplicationManagementEnabled: boolean;
35431
+ /**
35432
+ * 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.
35433
+ */
35434
+ grantMobileThreatDefensePartnerRole: boolean;
34960
35435
  /**
34961
35436
  * 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.
34962
35437
  */
@@ -34973,6 +35448,10 @@ namespace reference.`microsoft.graph` {
34973
35448
  * DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
34974
35449
  */
34975
35450
  @computed lastHeartbeatDateTime: offsetDateTime;
35451
+ /**
35452
+ * 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.
35453
+ */
35454
+ launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
34976
35455
  /**
34977
35456
  * 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.
34978
35457
  */
@@ -35688,7 +36167,6 @@ namespace reference.`microsoft.graph` {
35688
36167
  password: string | null;
35689
36168
  }
35690
36169
 
35691
-
35692
36170
  @entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
35693
36171
 
35694
36172
  @graphDeprecated("CreationDateTime")
@@ -35712,6 +36190,8 @@ namespace reference.`microsoft.graph` {
35712
36190
  @contains namePronunciation: namePronunciationSettings | null;
35713
36191
  @contains photoUpdateSettings: photoUpdateSettings | null;
35714
36192
  @contains profileCardProperties: profileCardProperty[];
36193
+ @contains profilePropertySettings: profilePropertySetting[];
36194
+ @contains profileSources: profileSource[];
35715
36195
  @contains pronouns: pronounsSettings | null;
35716
36196
  }
35717
36197
 
@@ -36362,6 +36842,20 @@ namespace reference.`microsoft.graph` {
36362
36842
  width: int32 | null;
36363
36843
  }
36364
36844
 
36845
+ @entity model profilePropertySetting extends entity {
36846
+ displayName: string | null;
36847
+ name: string | null;
36848
+ prioritizedSourceUrls: string[] | null;
36849
+ }
36850
+
36851
+ @entity model profileSource extends entity {
36852
+ displayName: string | null;
36853
+ kind: string | null;
36854
+ localizations: profileSourceLocalization[];
36855
+ sourceId: string | null;
36856
+ webUrl: string | null;
36857
+ }
36858
+
36365
36859
  @entity model program extends entity {
36366
36860
  description: string;
36367
36861
  displayName: string;
@@ -37220,6 +37714,7 @@ namespace reference.`microsoft.graph` {
37220
37714
  errorUrl: string | null;
37221
37715
  homepage: string | null;
37222
37716
  info: informationalUrl | null;
37717
+ isDisabled: boolean | null;
37223
37718
  keyCredentials: keyCredential[];
37224
37719
  loginUrl: string | null;
37225
37720
  logoutUrl: string | null;
@@ -37584,6 +38079,7 @@ namespace reference.`microsoft.graph` {
37584
38079
  azureResourceId: string | null;
37585
38080
  clientAppUsed: string | null;
37586
38081
  clientCredentialType: clientCredentialType | null;
38082
+ clientSessionId: string | null;
37587
38083
  conditionalAccessAudiences: string[] | null;
37588
38084
  conditionalAccessStatus: conditionalAccessStatus | null;
37589
38085
  correlationId: string | null;
@@ -37883,6 +38379,7 @@ namespace reference.`microsoft.graph` {
37883
38379
  signInCount: int64 | null;
37884
38380
  status: signInStatus | null;
37885
38381
  tenantId: string | null;
38382
+ tokenIssuerType: tokenIssuerType;
37886
38383
  userPrincipalName: string | null;
37887
38384
  }
37888
38385
 
@@ -38522,6 +39019,7 @@ namespace reference.`microsoft.graph` {
38522
39019
  condition: string | null;
38523
39020
  directoryScopeId: string | null;
38524
39021
  principalId: string | null;
39022
+ principalOrganizationId: string | null;
38525
39023
  resourceScope: string | null;
38526
39024
  roleDefinitionId: string | null;
38527
39025
  @contains appScope: appScope | null;
@@ -44855,6 +45353,14 @@ namespace reference.`microsoft.graph` {
44855
45353
  * A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
44856
45354
  */
44857
45355
  @entity model windowsAutoUpdateCatalogApp extends mobileApp {
45356
+ /**
45357
+ * 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.
45358
+ */
45359
+ allowedArchitectures: windowsArchitecture | null;
45360
+ /**
45361
+ * 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).
45362
+ */
45363
+ installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
44858
45364
  /**
44859
45365
  * 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
44860
45366
  */
@@ -48841,6 +49347,18 @@ namespace reference.`microsoft.graph` {
48841
49347
  */
48842
49348
  wpaPersonal: 4,
48843
49349
  unknownFutureValue: 5,
49350
+ /**
49351
+ * 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.
49352
+ */
49353
+ wpa2Personal: 6,
49354
+ /**
49355
+ * 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.
49356
+ */
49357
+ wpa3Personal: 7,
49358
+ /**
49359
+ * 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.
49360
+ */
49361
+ wpa3Enterprise: 8,
48844
49362
  }
48845
49363
 
48846
49364
  /**
@@ -48997,7 +49515,6 @@ namespace reference.`microsoft.graph` {
48997
49515
  /**
48998
49516
  * Wi-Fi Security Types for AOSP Device Owner.
48999
49517
  */
49000
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
49001
49518
  enum aospDeviceOwnerWiFiSecurityType {
49002
49519
  /**
49003
49520
  * Open (No Authentication).
@@ -49015,6 +49532,23 @@ namespace reference.`microsoft.graph` {
49015
49532
  * WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
49016
49533
  */
49017
49534
  wpaEnterprise: 4,
49535
+ unknownFutureValue: 5,
49536
+ /**
49537
+ * 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.
49538
+ */
49539
+ wpa2Personal: 6,
49540
+ /**
49541
+ * 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.
49542
+ */
49543
+ wpa2Enterprise: 7,
49544
+ /**
49545
+ * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
49546
+ */
49547
+ wpa3Personal: 8,
49548
+ /**
49549
+ * 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.
49550
+ */
49551
+ wpa3Enterprise: 9,
49018
49552
  }
49019
49553
 
49020
49554
  /**
@@ -50597,7 +51131,7 @@ namespace reference.`microsoft.graph` {
50597
51131
  }
50598
51132
 
50599
51133
  /**
50600
- * 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.
51134
+ * 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.
50601
51135
  */
50602
51136
  enum cloudCertificationAuthorityStatus {
50603
51137
  /**
@@ -50621,6 +51155,10 @@ namespace reference.`microsoft.graph` {
50621
51155
  */
50622
51156
  signingPending: 4,
50623
51157
  unknownFutureValue: 5,
51158
+ /**
51159
+ * Indicates certification authority has expired and cannot issue certificates until renewed and activated.
51160
+ */
51161
+ expired: 6,
50624
51162
  }
50625
51163
 
50626
51164
  /**
@@ -50646,6 +51184,49 @@ namespace reference.`microsoft.graph` {
50646
51184
  unknownFutureValue: 4,
50647
51185
  }
50648
51186
 
51187
+ /**
51188
+ * 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.
51189
+ */
51190
+ enum cloudCertificationAuthorityVersionStatus {
51191
+ /**
51192
+ * Default. Indicates certification authority version has an unknown or invalid status.
51193
+ */
51194
+ `unknown`: 0,
51195
+ /**
51196
+ * Indicates certification authority version is active and can issue leaf certificates.
51197
+ */
51198
+ active: 1,
51199
+ /**
51200
+ * 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.
51201
+ */
51202
+ staged: 2,
51203
+ /**
51204
+ * 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.
51205
+ */
51206
+ paused: 3,
51207
+ /**
51208
+ * 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.
51209
+ */
51210
+ retired: 4,
51211
+ /**
51212
+ * Indicates certification authority version has exceeded its validity period.
51213
+ */
51214
+ expired: 5,
51215
+ /**
51216
+ * Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
51217
+ */
51218
+ revoked: 6,
51219
+ /**
51220
+ * 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.
51221
+ */
51222
+ decommissioned: 7,
51223
+ /**
51224
+ * Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
51225
+ */
51226
+ signingPending: 8,
51227
+ unknownFutureValue: 9,
51228
+ }
51229
+
50649
51230
  /**
50650
51231
  * Error code for rule validation.
50651
51232
  */
@@ -52123,6 +52704,25 @@ namespace reference.`microsoft.graph` {
52123
52704
  remoteLock: 10,
52124
52705
  }
52125
52706
 
52707
+ /**
52708
+ * Indicates the platform that a device compliance script targets for evaluation.
52709
+ */
52710
+ enum deviceComplianceScriptPlatformType {
52711
+ /**
52712
+ * Default. Indicates that the compliance script targets devices running Windows 10 and later.
52713
+ */
52714
+ windows10: 0,
52715
+ /**
52716
+ * Indicates that the compliance script targets devices running Linux.
52717
+ */
52718
+ linux: 1,
52719
+ /**
52720
+ * Indicates that the compliance script targets devices running macOS.
52721
+ */
52722
+ macOS: 2,
52723
+ unknownFutureValue: 3,
52724
+ }
52725
+
52126
52726
  /**
52127
52727
  * Data types for rules.
52128
52728
  */
@@ -57460,6 +58060,13 @@ namespace reference.`microsoft.graph` {
57460
58060
  enabled: 1,
57461
58061
  }
57462
58062
 
58063
+ enum m365ResourceType {
58064
+ none: 0,
58065
+ group: 1,
58066
+ user: 2,
58067
+ unknownFutureValue: 3,
58068
+ }
58069
+
57463
58070
  /**
57464
58071
  * An enum representing the possible values of Android MAC Address Randomization Mode.
57465
58072
  */
@@ -58142,6 +58749,25 @@ namespace reference.`microsoft.graph` {
58142
58749
  alphanumericAndSymbol: 1,
58143
58750
  }
58144
58751
 
58752
+ /**
58753
+ * Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
58754
+ */
58755
+ enum managedAppPurviewEvaluationRequirement {
58756
+ /**
58757
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
58758
+ */
58759
+ notRequired: 0,
58760
+ /**
58761
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
58762
+ */
58763
+ requiredWhenOnline: 1,
58764
+ /**
58765
+ * Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
58766
+ */
58767
+ required: 2,
58768
+ unknownFutureValue: 3,
58769
+ }
58770
+
58145
58771
  /**
58146
58772
  * An admin initiated action to be applied on a managed app.
58147
58773
  */
@@ -59634,6 +60260,18 @@ namespace reference.`microsoft.graph` {
59634
60260
  * Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
59635
60261
  */
59636
60262
  `unknown`: 0,
60263
+ /**
60264
+ * Indicates that the configured policy type is for a Device Wipe Action.
60265
+ */
60266
+ deviceWipe: 2,
60267
+ /**
60268
+ * Indicates that the configured policy type is for a Device Retire Action
60269
+ */
60270
+ deviceRetire: 3,
60271
+ /**
60272
+ * Indicates that the configured policy type is for a Device Delete Action.
60273
+ */
60274
+ deviceDelete: 5,
59637
60275
  /**
59638
60276
  * Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
59639
60277
  */
@@ -59647,6 +60285,10 @@ namespace reference.`microsoft.graph` {
59647
60285
  */
59648
60286
  role: 18,
59649
60287
  unknownFutureValue: 21,
60288
+ /**
60289
+ * Indicates that the configured policy type is for Tenant Configuration operations.
60290
+ */
60291
+ tenantConfiguration: 28,
59650
60292
  }
59651
60293
 
59652
60294
  /**
@@ -64143,6 +64785,10 @@ namespace reference.`microsoft.graph` {
64143
64785
  * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
64144
64786
  */
64145
64787
  wpa3Personal: 7,
64788
+ /**
64789
+ * 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.
64790
+ */
64791
+ wpa3Enterprise: 8,
64146
64792
  }
64147
64793
 
64148
64794
  /**
@@ -64274,6 +64920,29 @@ namespace reference.`microsoft.graph` {
64274
64920
  unknownFutureValue: 9,
64275
64921
  }
64276
64922
 
64923
+ /**
64924
+ * 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.
64925
+ */
64926
+ enum win32LobAppInUseActionType {
64927
+ /**
64928
+ * Default. Indicates that no in-use detection will be evaluated before an app enforcement.
64929
+ */
64930
+ notEnabled: 0,
64931
+ /**
64932
+ * 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.
64933
+ */
64934
+ fail: 1,
64935
+ /**
64936
+ * 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.
64937
+ */
64938
+ terminateWithoutUserInteraction: 2,
64939
+ /**
64940
+ * 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.
64941
+ */
64942
+ terminateWithUserInteraction: 3,
64943
+ unknownFutureValue: 4,
64944
+ }
64945
+
64277
64946
  /**
64278
64947
  * Indicates the package type of an MSI Win32LobApp.
64279
64948
  */
@@ -64382,6 +65051,21 @@ namespace reference.`microsoft.graph` {
64382
65051
  `boolean`: 6,
64383
65052
  }
64384
65053
 
65054
+ /**
65055
+ * A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
65056
+ */
65057
+ enum win32LobAppProcessOperationType {
65058
+ /**
65059
+ * Default. Not configured.
65060
+ */
65061
+ notConfigured: 0,
65062
+ /**
65063
+ * Indicates that the rule evaluates whether the specified process exists (is running) on the device.
65064
+ */
65065
+ exists: 1,
65066
+ unknownFutureValue: 2,
65067
+ }
65068
+
64385
65069
  /**
64386
65070
  * Contains all supported registry data detection type.
64387
65071
  */
@@ -64536,7 +65220,6 @@ namespace reference.`microsoft.graph` {
64536
65220
  /**
64537
65221
  * Contains rule types for Win32 LOB apps.
64538
65222
  */
64539
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
64540
65223
  enum win32LobAppRuleType {
64541
65224
  /**
64542
65225
  * Detection rule.
@@ -64546,6 +65229,11 @@ namespace reference.`microsoft.graph` {
64546
65229
  * Requirement rule.
64547
65230
  */
64548
65231
  requirement: 1,
65232
+ /**
65233
+ * Indicates that the associated rule represents an executable for app in-use detection.
65234
+ */
65235
+ inUse: 2,
65236
+ unknownFutureValue: 3,
64549
65237
  }
64550
65238
 
64551
65239
  /**
@@ -65057,6 +65745,63 @@ namespace reference.`microsoft.graph` {
65057
65745
  unknownFutureValue: 3,
65058
65746
  }
65059
65747
 
65748
+ /**
65749
+ * 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).
65750
+ */
65751
+ enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
65752
+ /**
65753
+ * 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.
65754
+ */
65755
+ notConfigured: 0,
65756
+ /**
65757
+ * 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.
65758
+ */
65759
+ foreground: 1,
65760
+ unknownFutureValue: 2,
65761
+ }
65762
+
65763
+ /**
65764
+ * Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
65765
+ */
65766
+ enum windowsAutoUpdateCatalogAppNotificationType {
65767
+ /**
65768
+ * Indicates that all notifications related to app installation and restart are displayed to the end user.
65769
+ */
65770
+ showAll: 0,
65771
+ /**
65772
+ * Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
65773
+ */
65774
+ showReboot: 1,
65775
+ /**
65776
+ * Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
65777
+ */
65778
+ hideAll: 2,
65779
+ unknownFutureValue: 3,
65780
+ }
65781
+
65782
+ /**
65783
+ * 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.
65784
+ */
65785
+ enum windowsAutoUpdateCatalogAppRestartBehavior {
65786
+ /**
65787
+ * 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).
65788
+ */
65789
+ basedOnReturnCode: 0,
65790
+ /**
65791
+ * 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.
65792
+ */
65793
+ allow: 1,
65794
+ /**
65795
+ * 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.
65796
+ */
65797
+ suppress: 2,
65798
+ /**
65799
+ * Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
65800
+ */
65801
+ force: 3,
65802
+ unknownFutureValue: 4,
65803
+ }
65804
+
65060
65805
  /**
65061
65806
  * Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
65062
65807
  */
@@ -66771,6 +67516,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
66771
67516
  triggerAttributes: triggerAttribute[];
66772
67517
  }
66773
67518
 
67519
+ @complex model attributeSetEntry {
67520
+ name: string;
67521
+ value: string | null;
67522
+ }
67523
+
67524
+ @complex model awaitedWorkflowProcessingResult {
67525
+ processingStatus: lifecycleWorkflowProcessingStatus;
67526
+ statusReasons: string[];
67527
+ subject: workflowSubject | null;
67528
+ }
67529
+
66774
67530
  @complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
66775
67531
  @references authorizedApps: reference.`microsoft.graph`.application[];
66776
67532
  }
@@ -66780,12 +67536,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
66780
67536
  }
66781
67537
 
66782
67538
  @complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
67539
+ targetSubject: workflowSubject | null;
66783
67540
  @references subject: reference.`microsoft.graph`.user | null;
66784
67541
  @references task: task | null;
66785
67542
  @references taskProcessingresult: taskProcessingResult | null;
66786
67543
  @references workflow: workflow | null;
66787
67544
  }
66788
67545
 
67546
+ @complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
67547
+ operationStatus: customTaskExtensionOperationStatus;
67548
+ statusReasons: string[];
67549
+ targetSubject: workflowSubject | null;
67550
+ }
67551
+
66789
67552
  @complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
66790
67553
  @references groups: reference.`microsoft.graph`.group[];
66791
67554
  }
@@ -66810,6 +67573,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
66810
67573
  taskId: string;
66811
67574
  }
66812
67575
 
67576
+ @complex model provisioningAttributeMapping extends workflowExecutionConditions {
67577
+ }
67578
+
67579
+ @complex model provisioningObjectWorkflowSubject extends workflowSubject {
67580
+ attributeSetEntries: attributeSetEntry[];
67581
+ id: string;
67582
+ }
67583
+
66813
67584
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
66814
67585
  rule: string;
66815
67586
  }
@@ -66920,10 +67691,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
66920
67691
  totalUsers: int32;
66921
67692
  }
66922
67693
 
67694
+ @abstract
67695
+ @complex model workflowSubject {
67696
+ }
67697
+
66923
67698
  @entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
66924
67699
  callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
66925
67700
  @computed createdDateTime: offsetDateTime | null;
66926
67701
  @computed lastModifiedDateTime: offsetDateTime | null;
67702
+ replyMode: customTaskExtensionReplyMode;
66927
67703
  @references createdBy: reference.`microsoft.graph`.user | null;
66928
67704
  @references lastModifiedBy: reference.`microsoft.graph`.user | null;
66929
67705
  }
@@ -66961,10 +67737,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
66961
67737
  totalUsersCount: int32;
66962
67738
  workflowExecutionType: workflowExecutionType;
66963
67739
  @references reprocessedRuns: run[];
67740
+ @contains subjectProcessingResults: subjectProcessingResult[];
66964
67741
  @contains taskProcessingResults: taskProcessingResult[];
66965
67742
  @contains userProcessingResults: userProcessingResult[];
66966
67743
  }
66967
67744
 
67745
+ @entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
67746
+ completedDateTime: offsetDateTime | null;
67747
+ failedTasksCount: int32;
67748
+ processingStatus: lifecycleWorkflowProcessingStatus;
67749
+ scheduledDateTime: offsetDateTime;
67750
+ startedDateTime: offsetDateTime | null;
67751
+ subject: workflowSubject;
67752
+ totalTasksCount: int32;
67753
+ totalUnprocessedTasksCount: int32;
67754
+ workflowExecutionType: workflowExecutionType;
67755
+ workflowVersion: int32;
67756
+ @references reprocessedRuns: run[];
67757
+ @contains taskProcessingResults: taskProcessingResult[];
67758
+ }
67759
+
66968
67760
  @entity model task extends reference.`microsoft.graph`.entity {
66969
67761
  arguments: reference.`microsoft.graph`.keyValuePair[];
66970
67762
  category: lifecycleTaskCategory;
@@ -66992,6 +67784,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
66992
67784
  failureReason: string | null;
66993
67785
  processingStatus: lifecycleWorkflowProcessingStatus;
66994
67786
  startedDateTime: offsetDateTime | null;
67787
+ workflowSubject: workflowSubject | null;
66995
67788
  @references subject: reference.`microsoft.graph`.user;
66996
67789
  @references task: task;
66997
67790
  }
@@ -67036,6 +67829,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
67036
67829
  @privatePreview("organizationalUnit")
67037
67830
  @references previewScope: reference.`microsoft.graph`.directoryObject[];
67038
67831
  @contains runs: run[];
67832
+ @contains subjectProcessingResults: subjectProcessingResult[];
67039
67833
  @contains taskReports: taskReport[];
67040
67834
  @contains userProcessingResults: userProcessingResult[];
67041
67835
  @contains versions: workflowVersion[];
@@ -67087,12 +67881,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
67087
67881
  unknownFutureValue: 2,
67088
67882
  }
67089
67883
 
67884
+ enum customTaskExtensionReplyMode {
67885
+ none: 0,
67886
+ callback: 1,
67887
+ response: 2,
67888
+ unknownFutureValue: 3,
67889
+ }
67890
+
67090
67891
  @graphFlags
67091
67892
  enum lifecycleTaskCategory {
67092
67893
  joiner: 1,
67093
67894
  leaver: 2,
67094
67895
  unknownFutureValue: 4,
67095
67896
  mover: 8,
67897
+ extensibility: 16,
67096
67898
  }
67097
67899
 
67098
67900
  enum lifecycleWorkflowCategory {
@@ -67100,6 +67902,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
67100
67902
  leaver: 1,
67101
67903
  unknownFutureValue: 2,
67102
67904
  mover: 3,
67905
+ extensibility: 4,
67103
67906
  }
67104
67907
 
67105
67908
  enum lifecycleWorkflowProcessingStatus {
@@ -67133,6 +67936,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
67133
67936
  activatedWithScope: 3,
67134
67937
  @privatePreview("organizationalUnit")
67135
67938
  preview: 4,
67939
+ extensibilityOnDemand: 5,
67136
67940
  }
67137
67941
 
67138
67942
  enum workflowTriggerTimeBasedAttribute {