@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4

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;
@@ -13199,6 +13380,78 @@ namespace reference.`microsoft.graph` {
13199
13380
  useDeviceContext: boolean;
13200
13381
  }
13201
13382
 
13383
+ /**
13384
+ * 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.
13385
+ */
13386
+ @complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
13387
+ /**
13388
+ * 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.
13389
+ */
13390
+ deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
13391
+ /**
13392
+ * 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.
13393
+ */
13394
+ installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
13395
+ /**
13396
+ * 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.
13397
+ */
13398
+ notificationType: windowsAutoUpdateCatalogAppNotificationType;
13399
+ /**
13400
+ * 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.
13401
+ */
13402
+ restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
13403
+ }
13404
+
13405
+ /**
13406
+ * 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).
13407
+ */
13408
+ @complex model windowsAutoUpdateCatalogAppInstallExperience {
13409
+ /**
13410
+ * 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.
13411
+ */
13412
+ deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
13413
+ /**
13414
+ * 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.
13415
+ */
13416
+ runAsAccount: runAsAccountType;
13417
+ }
13418
+
13419
+ /**
13420
+ * 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.
13421
+ */
13422
+ @complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
13423
+ /**
13424
+ * 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.
13425
+ */
13426
+ deadlineDateTime: offsetDateTime | null;
13427
+ /**
13428
+ * The time at which the app should be available for installation on the device. When null, the app is available immediately.
13429
+ */
13430
+ startDateTime: offsetDateTime | null;
13431
+ /**
13432
+ * 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.
13433
+ */
13434
+ useLocalTime: boolean;
13435
+ }
13436
+
13437
+ /**
13438
+ * 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).
13439
+ */
13440
+ @complex model windowsAutoUpdateCatalogAppRestartSettings {
13441
+ /**
13442
+ * 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.
13443
+ */
13444
+ countdownDisplayBeforeRestartInMinutes: int32;
13445
+ /**
13446
+ * 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.
13447
+ */
13448
+ gracePeriodInMinutes: int32;
13449
+ /**
13450
+ * 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.
13451
+ */
13452
+ restartNotificationSnoozeDurationInMinutes: int32 | null;
13453
+ }
13454
+
13202
13455
  /**
13203
13456
  * Windows Defender last scan result
13204
13457
  */
@@ -15212,6 +15465,24 @@ namespace reference.`microsoft.graph` {
15212
15465
  isActive: boolean | null;
15213
15466
  }
15214
15467
 
15468
+ /**
15469
+ * Schema describing an Android application's custom configurations.
15470
+ */
15471
+ @entity model androidAppConfigurationSchema extends entity {
15472
+ /**
15473
+ * UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
15474
+ */
15475
+ exampleJson: binary | null;
15476
+ /**
15477
+ * Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
15478
+ */
15479
+ nestedSchemaItems: appConfigurationSchemaItemType[] | null;
15480
+ /**
15481
+ * Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
15482
+ */
15483
+ schemaItems: appConfigurationSchemaItemType[] | null;
15484
+ }
15485
+
15215
15486
  /**
15216
15487
  * Android certificate profile base.
15217
15488
  */
@@ -16431,6 +16702,10 @@ namespace reference.`microsoft.graph` {
16431
16702
  * Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
16432
16703
  */
16433
16704
  customKeyValueData: keyValuePair[] | null;
16705
+ /**
16706
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
16707
+ */
16708
+ lockdownExclusionList: string[] | null;
16434
16709
  /**
16435
16710
  * Microsoft Tunnel site ID.
16436
16711
  */
@@ -18813,6 +19088,10 @@ namespace reference.`microsoft.graph` {
18813
19088
  * 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
19089
  */
18815
19090
  fingerprint: string | null;
19091
+ /**
19092
+ * List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
19093
+ */
19094
+ lockdownExclusionList: string[] | null;
18816
19095
  /**
18817
19096
  * Microsoft Tunnel site ID.
18818
19097
  */
@@ -19479,9 +19758,11 @@ namespace reference.`microsoft.graph` {
19479
19758
  identifierUris: string[];
19480
19759
  info: informationalUrl | null;
19481
19760
  isDeviceOnlyAuthSupported: boolean | null;
19761
+ isDisabled: boolean | null;
19482
19762
  isFallbackPublicClient: boolean | null;
19483
19763
  keyCredentials: keyCredential[];
19484
19764
  logo: stream;
19765
+ managerApplications: guid;
19485
19766
  notes: string | null;
19486
19767
  onPremisesPublishing: onPremisesPublishing | null;
19487
19768
  optionalClaims: optionalClaims | null;
@@ -19810,6 +20091,7 @@ namespace reference.`microsoft.graph` {
19810
20091
  requirements: strongAuthenticationRequirements | null;
19811
20092
  signInPreferences: signInPreferences | null;
19812
20093
  @contains emailMethods: emailAuthenticationMethod[];
20094
+ @contains externalAuthenticationMethods: externalAuthenticationMethod[];
19813
20095
  @contains fido2Methods: fido2AuthenticationMethod[];
19814
20096
  @contains methods: authenticationMethod[];
19815
20097
  @contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
@@ -20309,7 +20591,7 @@ namespace reference.`microsoft.graph` {
20309
20591
  */
20310
20592
  @entity model cloudCertificationAuthority extends entity {
20311
20593
  /**
20312
- * The URL to download the certification authority certificate. Read-only.
20594
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
20313
20595
  */
20314
20596
  certificateDownloadUrl: string | null;
20315
20597
  /**
@@ -20317,11 +20599,11 @@ namespace reference.`microsoft.graph` {
20317
20599
  */
20318
20600
  certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
20319
20601
  /**
20320
- * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
20602
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
20321
20603
  */
20322
20604
  certificateRevocationListUrl: string | null;
20323
20605
  /**
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.
20606
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
20325
20607
  */
20326
20608
  certificateSigningRequest: string | null;
20327
20609
  /**
@@ -20329,7 +20611,7 @@ namespace reference.`microsoft.graph` {
20329
20611
  */
20330
20612
  certificationAuthorityIssuerId: string | null;
20331
20613
  /**
20332
- * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
20614
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
20333
20615
  */
20334
20616
  certificationAuthorityIssuerUri: string | null;
20335
20617
  /**
@@ -20369,9 +20651,13 @@ namespace reference.`microsoft.graph` {
20369
20651
  */
20370
20652
  eTag: string | null;
20371
20653
  extendedKeyUsages: extendedKeyUsage[] | null;
20654
+ /**
20655
+ * The geographic region where a cloud certification authority (CA) is hosted. Read-only.
20656
+ */
20657
+ geographicRegion: string | null;
20372
20658
  issuerCommonName: string | null;
20373
20659
  /**
20374
- * The key platform used to store the certification authority keys. Read-only.
20660
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
20375
20661
  */
20376
20662
  keyPlatform: cloudCertificationAuthorityKeyPlatformType;
20377
20663
  /**
@@ -20383,7 +20669,7 @@ namespace reference.`microsoft.graph` {
20383
20669
  */
20384
20670
  localityName: string | null;
20385
20671
  /**
20386
- * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
20672
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
20387
20673
  */
20388
20674
  ocspResponderUri: string | null;
20389
20675
  /**
@@ -20403,11 +20689,11 @@ namespace reference.`microsoft.graph` {
20403
20689
  */
20404
20690
  rootCertificateCommonName: string | null;
20405
20691
  /**
20406
- * The SCEP server URL for device SCEP connections to request certificates. Read-only.
20692
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
20407
20693
  */
20408
20694
  scepServerUrl: string | null;
20409
20695
  /**
20410
- * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only. Supports $select.
20696
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
20411
20697
  */
20412
20698
  serialNumber: string | null;
20413
20699
  /**
@@ -20415,15 +20701,15 @@ namespace reference.`microsoft.graph` {
20415
20701
  */
20416
20702
  stateName: string | null;
20417
20703
  /**
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.
20704
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
20419
20705
  */
20420
20706
  subjectName: string | null;
20421
20707
  /**
20422
- * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only. Supports $select.
20708
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
20423
20709
  */
20424
20710
  thumbprint: string | null;
20425
20711
  /**
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.
20712
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
20427
20713
  */
20428
20714
  validityEndDateTime: offsetDateTime | null;
20429
20715
  /**
@@ -20431,17 +20717,25 @@ namespace reference.`microsoft.graph` {
20431
20717
  */
20432
20718
  validityPeriodInYears: int32;
20433
20719
  /**
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.
20720
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
20435
20721
  */
20436
20722
  validityStartDateTime: offsetDateTime | null;
20437
20723
  /**
20438
- * The certification authority version, which is incremented each time the certification authority is renewed. Read-only.
20724
+ * Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
20439
20725
  */
20440
20726
  versionNumber: int32;
20727
+ /**
20728
+ * 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.
20729
+ */
20730
+ @references activeVersion: cloudCertificationAuthorityVersion | null;
20441
20731
  /**
20442
20732
  * Required OData property to expose leaf certificate API.
20443
20733
  */
20444
20734
  @references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
20735
+ /**
20736
+ * 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.
20737
+ */
20738
+ @references versions: cloudCertificationAuthorityVersion[];
20445
20739
  }
20446
20740
 
20447
20741
  /**
@@ -20456,6 +20750,10 @@ namespace reference.`microsoft.graph` {
20456
20750
  * The URI of the certification authority that issued the certificate. Read-only.
20457
20751
  */
20458
20752
  certificationAuthorityIssuerUri: string | null;
20753
+ /**
20754
+ * The version number of the certification authority that issued this leaf certificate. Read-only.
20755
+ */
20756
+ certificationAuthorityVersionNumber: int32;
20459
20757
  /**
20460
20758
  * URL to find the relevant Certificate Revocation List for this certificate. Read-only.
20461
20759
  */
@@ -20521,6 +20819,88 @@ namespace reference.`microsoft.graph` {
20521
20819
  * 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
20820
  */
20523
20821
  validityStartDateTime: offsetDateTime | null;
20822
+ /**
20823
+ * The certification authority version that issued this leaf certificate. Read-only.
20824
+ */
20825
+ @references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
20826
+ }
20827
+
20828
+ /**
20829
+ * Entity that represents version-specific properties of a cloud certification authority.
20830
+ */
20831
+ @entity model cloudCertificationAuthorityVersion extends entity {
20832
+ /**
20833
+ * The URL to download the certification authority certificate. Read-only.
20834
+ */
20835
+ certificateDownloadUrl: string | null;
20836
+ /**
20837
+ * The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
20838
+ */
20839
+ certificateRevocationListUrl: string | null;
20840
+ /**
20841
+ * 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.
20842
+ */
20843
+ certificateSigningRequest: string | null;
20844
+ /**
20845
+ * The certification authority identifier. Read-only.
20846
+ */
20847
+ certificationAuthorityId: string;
20848
+ /**
20849
+ * The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
20850
+ */
20851
+ certificationAuthorityIssuerUri: string | null;
20852
+ /**
20853
+ * The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
20854
+ */
20855
+ certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
20856
+ /**
20857
+ * 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.
20858
+ */
20859
+ decommissionDateTime: offsetDateTime | null;
20860
+ /**
20861
+ * The key platform used to store the certification authority keys. Read-only.
20862
+ */
20863
+ keyPlatform: cloudCertificationAuthorityKeyPlatformType;
20864
+ /**
20865
+ * 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.
20866
+ */
20867
+ @computed lastModifiedDateTime: offsetDateTime | null;
20868
+ /**
20869
+ * The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
20870
+ */
20871
+ ocspResponderUri: string | null;
20872
+ /**
20873
+ * The SCEP server URL for device SCEP connections to request certificates. Read-only.
20874
+ */
20875
+ scepServerUrl: string | null;
20876
+ /**
20877
+ * The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
20878
+ */
20879
+ serialNumber: string | null;
20880
+ /**
20881
+ * 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.
20882
+ */
20883
+ subjectName: string | null;
20884
+ /**
20885
+ * Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
20886
+ */
20887
+ thumbprint: string | null;
20888
+ /**
20889
+ * 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.
20890
+ */
20891
+ usage: cloudCertificationAuthorityVersionUsage | null;
20892
+ /**
20893
+ * 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.
20894
+ */
20895
+ validityEndDateTime: offsetDateTime | null;
20896
+ /**
20897
+ * 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.
20898
+ */
20899
+ validityStartDateTime: offsetDateTime | null;
20900
+ /**
20901
+ * The version number assigned to this specific certification authority version entity. Read-only.
20902
+ */
20903
+ versionNumber: int32;
20524
20904
  }
20525
20905
 
20526
20906
  /**
@@ -20972,6 +21352,7 @@ namespace reference.`microsoft.graph` {
20972
21352
  inboundTrust: crossTenantAccessPolicyInboundTrust | null;
20973
21353
  invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
20974
21354
  isServiceDefault: boolean | null;
21355
+ @contains m365Capabilities: m365CapabilityBase[];
20975
21356
  }
20976
21357
 
20977
21358
  @entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
@@ -20983,6 +21364,22 @@ namespace reference.`microsoft.graph` {
20983
21364
  isServiceProvider: boolean | null;
20984
21365
  @computed @key tenantId: string;
20985
21366
  @contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
21367
+ @contains m365Capabilities: m365CapabilityBase[];
21368
+ }
21369
+
21370
+ @entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
21371
+ }
21372
+
21373
+ @entity model crossTenantCalendarAvailabilityLimitedDetails extends m365CapabilityBase {
21374
+ }
21375
+
21376
+ @entity model crossTenantCalendarSharingFreeBusyDetail extends m365CapabilityBase {
21377
+ }
21378
+
21379
+ @entity model crossTenantCalendarSharingFreeBusyReviewer extends m365CapabilityBase {
21380
+ }
21381
+
21382
+ @entity model crossTenantCalendarSharingFreeBusySimple extends m365CapabilityBase {
20986
21383
  }
20987
21384
 
20988
21385
  @entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
@@ -20993,6 +21390,24 @@ namespace reference.`microsoft.graph` {
20993
21390
  userSyncInbound: crossTenantUserSyncInbound | null;
20994
21391
  }
20995
21392
 
21393
+ @entity model crossTenantMailTipsAll extends m365CapabilityBase {
21394
+ }
21395
+
21396
+ @entity model crossTenantMailTipsLimited extends m365CapabilityBase {
21397
+ }
21398
+
21399
+ @entity model crossTenantMigration extends m365CapabilityBase {
21400
+ }
21401
+
21402
+ @entity model crossTenantOpenProfileCard extends m365CapabilityBase {
21403
+ }
21404
+
21405
+ @entity model crossTenantPlacesDeskBooking extends m365CapabilityBase {
21406
+ }
21407
+
21408
+ @entity model crossTenantPlacesRoomBooking extends m365CapabilityBase {
21409
+ }
21410
+
20996
21411
  @privatePreview("MicrosofEntitlementManagementCustomextensions")
20997
21412
  @entity model customAccessPackageWorkflowExtension extends customCalloutExtension {
20998
21413
  @computed createdDateTime: offsetDateTime | null;
@@ -21054,15 +21469,6 @@ namespace reference.`microsoft.graph` {
21054
21469
  @contains allowedValues: allowedValue[];
21055
21470
  }
21056
21471
 
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
21472
  @entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
21067
21473
  inactive1DayCount: int64 | null;
21068
21474
  }
@@ -22606,6 +23012,10 @@ namespace reference.`microsoft.graph` {
22606
23012
  * The timestamp of when the device compliance script was modified. This property is read-only.
22607
23013
  */
22608
23014
  @computed lastModifiedDateTime: offsetDateTime;
23015
+ /**
23016
+ * Indicates the operating system platform type that this compliance script targets.
23017
+ */
23018
+ platform: deviceComplianceScriptPlatformType | null;
22609
23019
  /**
22610
23020
  * Name of the device compliance script publisher
22611
23021
  */
@@ -23831,6 +24241,9 @@ namespace reference.`microsoft.graph` {
23831
24241
  status: appLogUploadState;
23832
24242
  }
23833
24243
 
24244
+ /**
24245
+ * Singleton that acts as container for a collection of Resource Access entities.
24246
+ */
23834
24247
  @entity model deviceManagement extends entity {
23835
24248
  /**
23836
24249
  * The date & time when tenant data moved between scaleunits.
@@ -23916,6 +24329,10 @@ namespace reference.`microsoft.graph` {
23916
24329
  * The summary state of ATP onboarding state for this account.
23917
24330
  */
23918
24331
  @contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
24332
+ /**
24333
+ * Android App Configurations Schema entity.
24334
+ */
24335
+ @contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
23919
24336
  /**
23920
24337
  * Android device owner enrollment profile entities.
23921
24338
  */
@@ -27016,6 +27433,11 @@ namespace reference.`microsoft.graph` {
27016
27433
  targetObjects: string[];
27017
27434
  }
27018
27435
 
27436
+ @entity model externalAuthenticationMethod extends authenticationMethod {
27437
+ configurationId: string;
27438
+ displayName: string;
27439
+ }
27440
+
27019
27441
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
27020
27442
  appId: string;
27021
27443
  displayName: string;
@@ -27173,6 +27595,7 @@ namespace reference.`microsoft.graph` {
27173
27595
  groupTypes: string[];
27174
27596
  hasMembersWithLicenseErrors: boolean | null;
27175
27597
  hideFromAddressLists: boolean | null;
27598
+ hideFromOutlookClients: boolean | null;
27176
27599
  infoCatalogs: string[];
27177
27600
  isArchived: boolean | null;
27178
27601
  isAssignableToRole: boolean | null;
@@ -27187,12 +27610,14 @@ namespace reference.`microsoft.graph` {
27187
27610
  membershipRuleProcessingState: string | null;
27188
27611
  membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
27189
27612
  onPremisesDomainName: string | null;
27613
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
27190
27614
  onPremisesLastSyncDateTime: offsetDateTime | null;
27191
27615
  onPremisesNetBiosName: string | null;
27192
27616
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
27193
27617
  onPremisesSamAccountName: string | null;
27194
27618
  onPremisesSecurityIdentifier: string | null;
27195
27619
  onPremisesSyncEnabled: boolean | null;
27620
+ organizationId: string | null;
27196
27621
  preferredDataLocation: string | null;
27197
27622
  preferredLanguage: string | null;
27198
27623
  proxyAddresses: string[];
@@ -27204,8 +27629,11 @@ namespace reference.`microsoft.graph` {
27204
27629
  serviceProvisioningErrors: serviceProvisioningError[] | null;
27205
27630
  theme: string | null;
27206
27631
  uniqueName: string | null;
27632
+ unseenConversationsCount: int32 | null;
27207
27633
  unseenCount: int32 | null;
27634
+ unseenMessagesCount: int32 | null;
27208
27635
  visibility: string | null;
27636
+ welcomeMessageEnabled: boolean | null;
27209
27637
  writebackConfiguration: groupWritebackConfiguration | null;
27210
27638
  @contains acceptedSenders: directoryObject[];
27211
27639
  @contains appRoleAssignments: appRoleAssignment[];
@@ -28545,7 +28973,7 @@ namespace reference.`microsoft.graph` {
28545
28973
  }
28546
28974
 
28547
28975
  @entity model inheritablePermission extends MsGraph.SharedModels.entity {
28548
- inheritableScopes: inheritableScopes;
28976
+ inheritableScopes: inheritableScopes | null;
28549
28977
  @computed @key resourceAppId: string;
28550
28978
  }
28551
28979
 
@@ -30900,7 +31328,6 @@ namespace reference.`microsoft.graph` {
30900
31328
  retentionSettings: retentionLabelSettings | null;
30901
31329
  }
30902
31330
 
30903
-
30904
31331
  @entity model languageProficiency extends itemFacet {
30905
31332
  displayName: string | null;
30906
31333
  proficiency: languageProficiencyLevel | null;
@@ -30919,6 +31346,7 @@ namespace reference.`microsoft.graph` {
30919
31346
 
30920
31347
  @entity model list extends baseItem {
30921
31348
  displayName: string | null;
31349
+ itemCount: int32 | null;
30922
31350
  list: listInfo | null;
30923
31351
  sharepointIds: sharepointIds | null;
30924
31352
  system: systemFacet | null;
@@ -30983,6 +31411,13 @@ namespace reference.`microsoft.graph` {
30983
31411
  statusDetail: string | null;
30984
31412
  }
30985
31413
 
31414
+ @abstract
31415
+ @entity model m365CapabilityBase extends MsGraph.SharedModels.entity {
31416
+ inboundAccess: m365CapabilityInboundAccess | null;
31417
+ @computed lastModifiedDateTime: offsetDateTime;
31418
+ @computed @key name: string;
31419
+ }
31420
+
30986
31421
  /**
30987
31422
  * Mac OS certificate profile.
30988
31423
  */
@@ -31015,87 +31450,91 @@ namespace reference.`microsoft.graph` {
31015
31450
  */
31016
31451
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
31017
31452
  /**
31018
- * MDATP Require Mobile Threat Protection minimum risk level to report noncompliance.
31453
+ * 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
31454
  */
31020
31455
  advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31021
31456
  /**
31022
- * Require that devices have enabled device threat protection.
31457
+ * 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.
31458
+ */
31459
+ deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
31460
+ /**
31461
+ * 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
31462
  */
31024
31463
  deviceThreatProtectionEnabled: boolean;
31025
31464
  /**
31026
- * Require Mobile Threat Protection minimum risk level to report noncompliance.
31465
+ * 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
31466
  */
31028
31467
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31029
31468
  /**
31030
- * Corresponds to the “Block all incoming connections option.
31469
+ * 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
31470
  */
31032
31471
  firewallBlockAllIncoming: boolean;
31033
31472
  /**
31034
- * Whether the firewall should be enabled or not.
31473
+ * 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
31474
  */
31036
31475
  firewallEnabled: boolean;
31037
31476
  /**
31038
- * Corresponds to Enable stealth mode.”
31477
+ * 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
31478
  */
31040
31479
  firewallEnableStealthMode: boolean;
31041
31480
  /**
31042
- * System and Privacy setting that determines which download locations apps can be run from on a macOS device.
31481
+ * 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
31482
  */
31044
31483
  gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
31045
31484
  /**
31046
- * Maximum MacOS build version.
31485
+ * 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
31486
  */
31048
31487
  osMaximumBuildVersion: string | null;
31049
31488
  /**
31050
- * Maximum MacOS version.
31489
+ * 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
31490
  */
31052
31491
  osMaximumVersion: string | null;
31053
31492
  /**
31054
- * Minimum MacOS build version.
31493
+ * 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
31494
  */
31056
31495
  osMinimumBuildVersion: string | null;
31057
31496
  /**
31058
- * Minimum MacOS version.
31497
+ * 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
31498
  */
31060
31499
  osMinimumVersion: string | null;
31061
31500
  /**
31062
- * Indicates whether or not to block simple passwords.
31501
+ * 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
31502
  */
31064
31503
  passwordBlockSimple: boolean;
31065
31504
  /**
31066
- * Number of days before the password expires. Valid values 1 to 65535
31505
+ * 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
31506
  */
31068
31507
  passwordExpirationDays: int32 | null;
31069
31508
  /**
31070
- * The number of character sets required in the password.
31509
+ * 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
31510
  */
31072
31511
  passwordMinimumCharacterSetCount: int32 | null;
31073
31512
  /**
31074
- * Minimum length of password. Valid values 4 to 14
31513
+ * 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
31514
  */
31076
31515
  passwordMinimumLength: int32 | null;
31077
31516
  /**
31078
- * Minutes of inactivity before a password is required.
31517
+ * 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
31518
  */
31080
31519
  passwordMinutesOfInactivityBeforeLock: int32 | null;
31081
31520
  /**
31082
- * Number of previous passwords to block. Valid values 1 to 24
31521
+ * 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
31522
  */
31084
31523
  passwordPreviousPasswordBlockCount: int32 | null;
31085
31524
  /**
31086
- * Whether or not to require a password.
31525
+ * 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
31526
  */
31088
31527
  passwordRequired: boolean;
31089
31528
  /**
31090
- * The required password type.
31529
+ * 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
31530
  */
31092
31531
  passwordRequiredType: requiredPasswordType;
31093
31532
  /**
31094
- * Require encryption on Mac OS devices.
31533
+ * 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
31534
  */
31096
31535
  storageRequireEncryption: boolean;
31097
31536
  /**
31098
- * Require that devices have enabled system integrity protection.
31537
+ * 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
31538
  */
31100
31539
  systemIntegrityProtectionEnabled: boolean;
31101
31540
  }
@@ -34957,6 +35396,10 @@ namespace reference.`microsoft.graph` {
34957
35396
  * 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
35397
  */
34959
35398
  androidMobileApplicationManagementEnabled: boolean;
35399
+ /**
35400
+ * 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.
35401
+ */
35402
+ grantMobileThreatDefensePartnerRole: boolean;
34960
35403
  /**
34961
35404
  * 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
35405
  */
@@ -34973,6 +35416,10 @@ namespace reference.`microsoft.graph` {
34973
35416
  * DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
34974
35417
  */
34975
35418
  @computed lastHeartbeatDateTime: offsetDateTime;
35419
+ /**
35420
+ * 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.
35421
+ */
35422
+ launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
34976
35423
  /**
34977
35424
  * 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
35425
  */
@@ -35688,7 +36135,6 @@ namespace reference.`microsoft.graph` {
35688
36135
  password: string | null;
35689
36136
  }
35690
36137
 
35691
-
35692
36138
  @entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
35693
36139
 
35694
36140
  @graphDeprecated("CreationDateTime")
@@ -35712,6 +36158,8 @@ namespace reference.`microsoft.graph` {
35712
36158
  @contains namePronunciation: namePronunciationSettings | null;
35713
36159
  @contains photoUpdateSettings: photoUpdateSettings | null;
35714
36160
  @contains profileCardProperties: profileCardProperty[];
36161
+ @contains profilePropertySettings: profilePropertySetting[];
36162
+ @contains profileSources: profileSource[];
35715
36163
  @contains pronouns: pronounsSettings | null;
35716
36164
  }
35717
36165
 
@@ -36362,6 +36810,20 @@ namespace reference.`microsoft.graph` {
36362
36810
  width: int32 | null;
36363
36811
  }
36364
36812
 
36813
+ @entity model profilePropertySetting extends entity {
36814
+ displayName: string | null;
36815
+ name: string | null;
36816
+ prioritizedSourceUrls: string[] | null;
36817
+ }
36818
+
36819
+ @entity model profileSource extends entity {
36820
+ displayName: string | null;
36821
+ kind: string | null;
36822
+ localizations: profileSourceLocalization[];
36823
+ sourceId: string | null;
36824
+ webUrl: string | null;
36825
+ }
36826
+
36365
36827
  @entity model program extends entity {
36366
36828
  description: string;
36367
36829
  displayName: string;
@@ -37220,6 +37682,7 @@ namespace reference.`microsoft.graph` {
37220
37682
  errorUrl: string | null;
37221
37683
  homepage: string | null;
37222
37684
  info: informationalUrl | null;
37685
+ isDisabled: boolean | null;
37223
37686
  keyCredentials: keyCredential[];
37224
37687
  loginUrl: string | null;
37225
37688
  logoutUrl: string | null;
@@ -37584,6 +38047,7 @@ namespace reference.`microsoft.graph` {
37584
38047
  azureResourceId: string | null;
37585
38048
  clientAppUsed: string | null;
37586
38049
  clientCredentialType: clientCredentialType | null;
38050
+ clientSessionId: string | null;
37587
38051
  conditionalAccessAudiences: string[] | null;
37588
38052
  conditionalAccessStatus: conditionalAccessStatus | null;
37589
38053
  correlationId: string | null;
@@ -37883,6 +38347,7 @@ namespace reference.`microsoft.graph` {
37883
38347
  signInCount: int64 | null;
37884
38348
  status: signInStatus | null;
37885
38349
  tenantId: string | null;
38350
+ tokenIssuerType: tokenIssuerType;
37886
38351
  userPrincipalName: string | null;
37887
38352
  }
37888
38353
 
@@ -44855,6 +45320,14 @@ namespace reference.`microsoft.graph` {
44855
45320
  * A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
44856
45321
  */
44857
45322
  @entity model windowsAutoUpdateCatalogApp extends mobileApp {
45323
+ /**
45324
+ * 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.
45325
+ */
45326
+ allowedArchitectures: windowsArchitecture | null;
45327
+ /**
45328
+ * 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).
45329
+ */
45330
+ installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
44858
45331
  /**
44859
45332
  * 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
45333
  */
@@ -50597,7 +51070,7 @@ namespace reference.`microsoft.graph` {
50597
51070
  }
50598
51071
 
50599
51072
  /**
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.
51073
+ * 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
51074
  */
50602
51075
  enum cloudCertificationAuthorityStatus {
50603
51076
  /**
@@ -50621,6 +51094,10 @@ namespace reference.`microsoft.graph` {
50621
51094
  */
50622
51095
  signingPending: 4,
50623
51096
  unknownFutureValue: 5,
51097
+ /**
51098
+ * Indicates certification authority has expired and cannot issue certificates until renewed and activated.
51099
+ */
51100
+ expired: 6,
50624
51101
  }
50625
51102
 
50626
51103
  /**
@@ -50646,6 +51123,49 @@ namespace reference.`microsoft.graph` {
50646
51123
  unknownFutureValue: 4,
50647
51124
  }
50648
51125
 
51126
+ /**
51127
+ * 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.
51128
+ */
51129
+ enum cloudCertificationAuthorityVersionStatus {
51130
+ /**
51131
+ * Default. Indicates certification authority version has an unknown or invalid status.
51132
+ */
51133
+ `unknown`: 0,
51134
+ /**
51135
+ * Indicates certification authority version is active and can issue leaf certificates.
51136
+ */
51137
+ active: 1,
51138
+ /**
51139
+ * 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.
51140
+ */
51141
+ staged: 2,
51142
+ /**
51143
+ * 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.
51144
+ */
51145
+ paused: 3,
51146
+ /**
51147
+ * 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.
51148
+ */
51149
+ retired: 4,
51150
+ /**
51151
+ * Indicates certification authority version has exceeded its validity period.
51152
+ */
51153
+ expired: 5,
51154
+ /**
51155
+ * Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
51156
+ */
51157
+ revoked: 6,
51158
+ /**
51159
+ * 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.
51160
+ */
51161
+ decommissioned: 7,
51162
+ /**
51163
+ * Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
51164
+ */
51165
+ signingPending: 8,
51166
+ unknownFutureValue: 9,
51167
+ }
51168
+
50649
51169
  /**
50650
51170
  * Error code for rule validation.
50651
51171
  */
@@ -52123,6 +52643,25 @@ namespace reference.`microsoft.graph` {
52123
52643
  remoteLock: 10,
52124
52644
  }
52125
52645
 
52646
+ /**
52647
+ * Indicates the platform that a device compliance script targets for evaluation.
52648
+ */
52649
+ enum deviceComplianceScriptPlatformType {
52650
+ /**
52651
+ * Default. Indicates that the compliance script targets devices running Windows 10 and later.
52652
+ */
52653
+ windows10: 0,
52654
+ /**
52655
+ * Indicates that the compliance script targets devices running Linux.
52656
+ */
52657
+ linux: 1,
52658
+ /**
52659
+ * Indicates that the compliance script targets devices running macOS.
52660
+ */
52661
+ macOS: 2,
52662
+ unknownFutureValue: 3,
52663
+ }
52664
+
52126
52665
  /**
52127
52666
  * Data types for rules.
52128
52667
  */
@@ -57460,6 +57999,13 @@ namespace reference.`microsoft.graph` {
57460
57999
  enabled: 1,
57461
58000
  }
57462
58001
 
58002
+ enum m365ResourceType {
58003
+ none: 0,
58004
+ group: 1,
58005
+ user: 2,
58006
+ unknownFutureValue: 3,
58007
+ }
58008
+
57463
58009
  /**
57464
58010
  * An enum representing the possible values of Android MAC Address Randomization Mode.
57465
58011
  */
@@ -65057,6 +65603,63 @@ namespace reference.`microsoft.graph` {
65057
65603
  unknownFutureValue: 3,
65058
65604
  }
65059
65605
 
65606
+ /**
65607
+ * 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).
65608
+ */
65609
+ enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
65610
+ /**
65611
+ * 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.
65612
+ */
65613
+ notConfigured: 0,
65614
+ /**
65615
+ * 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.
65616
+ */
65617
+ foreground: 1,
65618
+ unknownFutureValue: 2,
65619
+ }
65620
+
65621
+ /**
65622
+ * Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
65623
+ */
65624
+ enum windowsAutoUpdateCatalogAppNotificationType {
65625
+ /**
65626
+ * Indicates that all notifications related to app installation and restart are displayed to the end user.
65627
+ */
65628
+ showAll: 0,
65629
+ /**
65630
+ * Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
65631
+ */
65632
+ showReboot: 1,
65633
+ /**
65634
+ * Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
65635
+ */
65636
+ hideAll: 2,
65637
+ unknownFutureValue: 3,
65638
+ }
65639
+
65640
+ /**
65641
+ * 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.
65642
+ */
65643
+ enum windowsAutoUpdateCatalogAppRestartBehavior {
65644
+ /**
65645
+ * 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).
65646
+ */
65647
+ basedOnReturnCode: 0,
65648
+ /**
65649
+ * 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.
65650
+ */
65651
+ allow: 1,
65652
+ /**
65653
+ * 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.
65654
+ */
65655
+ suppress: 2,
65656
+ /**
65657
+ * Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
65658
+ */
65659
+ force: 3,
65660
+ unknownFutureValue: 4,
65661
+ }
65662
+
65060
65663
  /**
65061
65664
  * Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
65062
65665
  */