@microsoft/typespec-msgraph-reference 1.0.2 → 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.
@@ -11,6 +11,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
11
11
  @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
12
12
  @deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
13
13
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
14
+ @deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
15
+ // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
14
16
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
15
17
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
16
18
  @deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
@@ -644,35 +646,13 @@ namespace reference.`microsoft.graph` {
644
646
  }
645
647
 
646
648
  /**
647
- * Describes deployment security group to assign a deployment to. The backend will expand the security Group ID to extract device serial numbers prior sending a create deployment request to Zebra.
649
+ * The request parameter for requesting Android LOB app configuration schema.
648
650
  */
649
- @complex model androidFotaDeploymentAssignment {
651
+ @complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
650
652
  /**
651
- * The Azure Active Directory (Azure AD) we are deploying firmware updates to (e.g.: d93c8f48-bd42-4514-ba40-bc6b84780930). NOTE: Use this property moving forward because the existing property, target, is deprecated.
653
+ * The application policy ID of the Android LOB app
652
654
  */
653
- assignmentTarget: deviceAndAppManagementAssignmentTarget | null;
654
- /**
655
- * The display name of the Azure AD security group used for the assignment.
656
- */
657
- displayName: string;
658
- /**
659
- * A unique identifier assigned to each Android FOTA Assignment entity
660
- */
661
- id: string | null;
662
- /**
663
- * NOTE: This entity is deprecated; use assignmentTarget. The Azure Active Directory (Azure AD) we are deploying firmware updates to (e.g.: d93c8f48-bd42-4514-ba40-bc6b84780930).
664
- */
665
- target: androidFotaDeploymentAssignmentTarget | null;
666
- }
667
-
668
- /**
669
- * The AAD Group we are deploying firmware updates to
670
- */
671
- @complex model androidFotaDeploymentAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
672
- /**
673
- * AAD Group Id.
674
- */
675
- groupId: string;
655
+ appId: string | null;
676
656
  }
677
657
 
678
658
  /**
@@ -879,6 +859,120 @@ namespace reference.`microsoft.graph` {
879
859
  resourceSpecificApplicationPermissions: resourceSpecificPermission[];
880
860
  }
881
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
+
882
976
  /**
883
977
  * Contains properties for App configuration setting item.
884
978
  */
@@ -1052,7 +1146,7 @@ namespace reference.`microsoft.graph` {
1052
1146
  }
1053
1147
 
1054
1148
  @complex model appManagementPolicyActorExemptions {
1055
- @contains customSecurityAttributes: customSecurityAttributeExemption[];
1149
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
1056
1150
  }
1057
1151
 
1058
1152
  @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
@@ -2200,6 +2294,16 @@ namespace reference.`microsoft.graph` {
2200
2294
  cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
2201
2295
  }
2202
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
+
2203
2307
  @complex model cloudRealtimeCommunicationInfo {
2204
2308
  isSipEnabled: boolean | null;
2205
2309
  }
@@ -2607,6 +2711,10 @@ namespace reference.`microsoft.graph` {
2607
2711
  url: string | null;
2608
2712
  }
2609
2713
 
2714
+ @complex model connectivityParameterEntry {
2715
+ value: string | null;
2716
+ }
2717
+
2610
2718
  /**
2611
2719
  * Represent connector status
2612
2720
  */
@@ -2882,6 +2990,16 @@ namespace reference.`microsoft.graph` {
2882
2990
  clientConfiguration: customExtensionClientConfiguration | null;
2883
2991
  }
2884
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
+
2885
3003
  @open
2886
3004
  @complex model customSecurityAttributeValue {
2887
3005
  }
@@ -3314,11 +3432,11 @@ namespace reference.`microsoft.graph` {
3314
3432
 
3315
3433
  @complex model deviceCompliancePolicyScript {
3316
3434
  /**
3317
- * 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.
3318
3436
  */
3319
3437
  deviceComplianceScriptId: string | null;
3320
3438
  /**
3321
- * 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.
3322
3440
  */
3323
3441
  rulesContent: binary | null;
3324
3442
  }
@@ -5790,6 +5908,10 @@ namespace reference.`microsoft.graph` {
5790
5908
  * The number of days after installation that forced reboot will happen.
5791
5909
  */
5792
5910
  daysUntilForcedReboot: int32;
5911
+ /**
5912
+ * The unique identifier for the quality update catalog item targeted by the expedite.
5913
+ */
5914
+ qualityUpdateCatalogItemId: string | null;
5793
5915
  /**
5794
5916
  * The release date to identify a quality update.
5795
5917
  */
@@ -6028,129 +6150,6 @@ namespace reference.`microsoft.graph` {
6028
6150
  targetChatId: string | null;
6029
6151
  }
6030
6152
 
6031
- /**
6032
- * The settings for a FOTA deployment. Is an abstract type.
6033
- */
6034
- @abstract
6035
- @complex model fotaDeploymentSetting {
6036
- /**
6037
- * The minimum battery level percentage allowed for installation. Must range between 0%-100%. Default is 0%. For Samsung, the value must range between 20%-80%, and the default is 20%. Returned by default.
6038
- */
6039
- batteryRuleMinimumBatteryLevelPercentage: int32 | null;
6040
- /**
6041
- * When 'True', indicates that the devices are required to be charging during installation. When 'false', indicates that the devices are not required to be charging during installation. Default is 'false'. Returned by default.
6042
- */
6043
- batteryRulePowerAdaptorRequired: boolean | null;
6044
- /**
6045
- * The end time of day during which firmware can install. Default is 11:59:59 PM or '23:59:59'. For Samsung, the default is 5 AM which is '05:00:00' and the window needs to be at least 3 hours. Returned by default.
6046
- */
6047
- installRuleWindowEndTime: offsetDateTime | null;
6048
- /**
6049
- * The start time of day during which firmware can install. Default is 12 AM which is '00:00:00'. For Samsung, the default is 2 AM which is '02:00:00'.
6050
- */
6051
- installRuleWindowStartTime: offsetDateTime | null;
6052
- /**
6053
- * The network type required on the device for the update. Possible values are 'any', 'wifi', and 'cellular'. Default is 'any'. See 'graph.fotaNetworkType' enum for possible values. Returned by default.
6054
- */
6055
- networkType: fotaNetworkType;
6056
- /**
6057
- * The time offset (time zone) when the update is deployed and installed on the devices (e.g.'180' represents an offset of '+03:00', and '-270' represents an offset of '-04:30'). Default is 0. Returned by default.
6058
- */
6059
- timeZoneOffsetInMinutes: int32 | null;
6060
- }
6061
-
6062
- /**
6063
- * Describes the status of a FOTA deployment. The status is a high level status of the deployment as opposed to being a detailed status per device with information about the deployment state like request to the OEM is pending, the error code if the deployment failed to create, and device counts for different stages of the deployment.
6064
- */
6065
- @complex model fotaDeploymentStatus {
6066
- /**
6067
- * Indicates the number of devices where firmware update was cancelled. Default is 0. Returned by default.
6068
- */
6069
- cancelledDeviceCount: int32;
6070
- /**
6071
- * 'True' indicates that a cancellation was requested on the deployment. Otherwise 'false'. A cancellation request does not guarantee that the deployment was cancelled. Default is 'false'. Returned by default.
6072
- */
6073
- cancelRequested: boolean;
6074
- /**
6075
- * Indicates the number of devices where firmware update was completed. Default is 0. Returned by default
6076
- */
6077
- completedDeviceCount: int32;
6078
- /**
6079
- * The date and time when this deployment ended. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. If the state is cancelled, this property holds the cancellation date/time. If the the state is completed, this property holds the completion date/time. For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Default value: null.
6080
- */
6081
- deploymentEndDateTime: offsetDateTime | null;
6082
- /**
6083
- * FOTA deployment state. Possible values are 'pending', 'failed', 'created', 'inProgress', 'completed', 'pendingCancel', and 'cancelled'. Default is 'pending'. See 'graph.fotaDeploymentState' enum for details. The deployment state is determined by looking at the status of all the devices in the deployment. If any device is in the created state, the overall deployment state becomes created. If any device is in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall deployment state becomes completed. If the IT Admin requests cancellation, the deployment state becomes pending cancel and then cancelled. Returned by default.
6084
- */
6085
- deploymentState: fotaDeploymentState;
6086
- /**
6087
- * An error code indicating the failure reason, when the deployment failed to create or complete. Possible values are 'noDevicesFoundInSelectedEntraGroups', 'noIntuneDevicesFoundInSelectedEntraGroups', 'noFotaEnrolledDevicesFoundForCurrentTenant', 'noFotaEnrolledDevicesFoundInSelectedEntraGroups', 'noFotaDevicesFoundForSelectedDeviceModel', and 'fotaCreateDeploymentRequestFailure'. Default is 'noDevicesFoundInSelectedEntraGroups'. See 'graph.fotaDeploymentErrorCode' enum for possible values. Returned by default.
6088
- */
6089
- errorCode: fotaDeploymentErrorCode;
6090
- /**
6091
- * Indicates the number of devices where firmware update failed. Default is 0. Returned by default.
6092
- */
6093
- failedDeviceCount: int32;
6094
- /**
6095
- * Indicates the number of devices where firmware update is in progress. Default is 0. Returned by default.
6096
- */
6097
- inProgressDeviceCount: int32;
6098
- /**
6099
- * Date and time when the deployment status was updated from the OEM's cloud services. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Default value: null.
6100
- */
6101
- @computed lastModifiedDateTime: offsetDateTime | null;
6102
- /**
6103
- * Indicates the number of devices where the deployment was not applicable. Default is 0. Returned by default.
6104
- */
6105
- notApplicableDeviceCount: int32;
6106
- /**
6107
- * Indicates the total number of devices in the FOTA deployment. Default is 0. Returned by default.
6108
- */
6109
- totalDeviceCount: int32;
6110
- /**
6111
- * Indicates the number of devices where no deployment status or end state was received from the OEM's cloud services. Default is 0. Returned by default.
6112
- */
6113
- unknownDeviceCount: int32;
6114
- }
6115
-
6116
- /**
6117
- * High level status of a tenant's FOTA registered devices with information about the registration state like request is pending, the error code if registration failed, and device counts for different stages of registration.
6118
- */
6119
- @complex model fotaDeviceRegistrationStatus {
6120
- /**
6121
- * Indicates the number of devices where FOTA registration completed. Default is 0. Returned by default.
6122
- */
6123
- completedDeviceCount: int32;
6124
- /**
6125
- * An error code indicating the failure reason, when a device failed to register for the OEM's FOTA functionality. Possible values are 'noDevicesFoundInSelectedEntraGroups', 'noIntuneDevicesFoundInSelectedEntraGroups', and 'fotaRegistrationRequestFailure'. Default is 'noDevicesFoundInSelectedEntraGroups'. See 'graph.fotaRegistrationErrorCode' enum for possible values. Returned by default.
6126
- */
6127
- errorCode: fotaRegistrationErrorCode;
6128
- /**
6129
- * Indicates the number of devices where FOTA registration failed. Default is 0. Returned by default.
6130
- */
6131
- failedDeviceCount: int32;
6132
- /**
6133
- * Indicates the number of devices where FOTA registration is in progress. Default is 0. Returned by default.
6134
- */
6135
- inProgressDeviceCount: int32;
6136
- /**
6137
- * Indicates the number of devices where FOTA registration is not applicable. Default is 0. Returned by default.
6138
- */
6139
- notApplicableDeviceCount: int32;
6140
- /**
6141
- * FOTA registration state. Possible values are 'pending', 'failed', 'requested', 'inProgress', and 'completed'. Default is 'pending'. See 'graph.fotaRegistrationState' enum for details. The registration state is determined by looking at the status of all devices targeted for registration. If any device has not yet started registration, the overall registration state becomes registration requested. If any device is still in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall registration state becomes completed. Returned by default.
6142
- */
6143
- registrationState: fotaRegistrationState;
6144
- /**
6145
- * Indicates the total number of devices targeted for FOTA registration. Default is 0. Returned by default.
6146
- */
6147
- totalDeviceCount: int32;
6148
- /**
6149
- * Indicates the number of devices where FOTA registration status is unknown. Default is 0. Returned by default.
6150
- */
6151
- unknownDeviceCount: int32;
6152
- }
6153
-
6154
6153
  @complex model freeBusyError {
6155
6154
  message: string | null;
6156
6155
  responseCode: string | null;
@@ -7661,6 +7660,7 @@ namespace reference.`microsoft.graph` {
7661
7660
  usage: string | null;
7662
7661
  }
7663
7662
 
7663
+
7664
7664
  /**
7665
7665
  * A key-value pair with a string key and an integer value.
7666
7666
  */
@@ -7883,6 +7883,21 @@ namespace reference.`microsoft.graph` {
7883
7883
  primaryLookupColumnId: string | null;
7884
7884
  }
7885
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
+
7886
7901
  /**
7887
7902
  * The identifier for a Mac app.
7888
7903
  */
@@ -8745,6 +8760,16 @@ namespace reference.`microsoft.graph` {
8745
8760
  msiType: msiType | null;
8746
8761
  }
8747
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
+
8748
8773
  @complex model managementCertificateWithThumbprint {
8749
8774
  /**
8750
8775
  * The Base 64 encoded management certificate
@@ -9490,6 +9515,7 @@ namespace reference.`microsoft.graph` {
9490
9515
  onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
9491
9516
  segmentsConfiguration: segmentConfiguration | null;
9492
9517
  singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
9518
+ trafficRoutingMethod: trafficRoutingMethod;
9493
9519
  useAlternateUrlForTranslationAndRedirect: boolean | null;
9494
9520
  verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
9495
9521
  verifiedCustomDomainKeyCredential: keyCredential | null;
@@ -9721,6 +9747,7 @@ namespace reference.`microsoft.graph` {
9721
9747
  startDateTime: offsetDateTime | null;
9722
9748
  }
9723
9749
 
9750
+
9724
9751
  @complex model passwordProfile {
9725
9752
  forceChangePasswordNextSignIn: boolean | null;
9726
9753
  forceChangePasswordNextSignInWithMfa: boolean | null;
@@ -9824,6 +9851,11 @@ namespace reference.`microsoft.graph` {
9824
9851
  displayAs: string | null;
9825
9852
  }
9826
9853
 
9854
+ @complex model perTenantTrafficSegmentsOverride {
9855
+ percentage: int32;
9856
+ tenantId: guid;
9857
+ }
9858
+
9827
9859
  @complex model phone {
9828
9860
  number: string | null;
9829
9861
  type: phoneType | null;
@@ -10031,6 +10063,12 @@ namespace reference.`microsoft.graph` {
10031
10063
  localizations: displayNameLocalization[] | null;
10032
10064
  }
10033
10065
 
10066
+ @complex model profileSourceLocalization {
10067
+ displayName: string | null;
10068
+ languageTag: string | null;
10069
+ webUrl: string | null;
10070
+ }
10071
+
10034
10072
  @open
10035
10073
  @complex model programResource extends identity {
10036
10074
  type: string | null;
@@ -10602,41 +10640,67 @@ namespace reference.`microsoft.graph` {
10602
10640
  }
10603
10641
 
10604
10642
  /**
10605
- * The settings for a Samsung Knox E-FOTA campaign (deployment). Inherits from 'graph.fotaDeploymentSetting'.
10643
+ * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
10606
10644
  */
10607
- @complex model samsungEFotaDeploymentSetting extends fotaDeploymentSetting {
10645
+ @complex model samsungEFotaFirmwareVersion {
10608
10646
  /**
10609
- * Determines how long in minutes the end user is warned before the firmware auto installs. The value must range between 5-360 minutes. Default is 5 minutes. Returned by default.
10647
+ * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
10648
+ */
10649
+ androidProcessorVersionName: string | null;
10650
+ /**
10651
+ * The Consumer Software Customization which is a specific code associated with the region or carrier customization of a Samsung device. This property is populated by Samsung. Eg. 'OYM'. Read-only. Returned by default.
10610
10652
  */
10611
- autoFirmwareInstallationReminderMessageDurationInMinutes: int32;
10653
+ consumerSoftwareCustomizationCode: string;
10612
10654
  /**
10613
- * Campaign (deployment) end date and time. The Timestamp 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'. Returned by default.
10655
+ * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
10656
+ */
10657
+ description: string | null;
10658
+ /**
10659
+ * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
10614
10660
  */
10615
- campaignEndDateTime: offsetDateTime;
10661
+ deviceModelName: string;
10616
10662
  /**
10617
- * Campaign (deployment) installation schedule mode. Default is StartAndEndDateSchedule.
10663
+ * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
10618
10664
  */
10619
- campaignScheduleMode: samsungEFotaScheduleMode;
10665
+ firmwareVersion: string | null;
10620
10666
  /**
10621
- * Campaign (deployment) start date and time. The Timestamp 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'. Returned by default.
10667
+ * Firmware ID from Samsung. This property is populated by Samsung. Eg. 'FW2022033111797487'. Read-only. Returned by default.
10622
10668
  */
10623
- campaignStartDateTime: offsetDateTime;
10669
+ id: string | null;
10624
10670
  /**
10625
- * The time offset (time zone) when the campaign is deployed (e.g.'180' represents an offset of '+03:00', and '-270' represents an offset of '-04:30'). Default is 0. Returned by default.
10671
+ * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
10626
10672
  */
10627
- campaignTimeZoneOffsetInMinutes: int32 | null;
10673
+ osVersionName: string | null;
10628
10674
  /**
10629
- * The time of day for a firmware download. Possible values are 'any' (default) and 'matchFirmwareInstallPeriod'. See 'graph.fotaDownloadPeriodType' enum for details. Returned by default.
10675
+ * Firmware release date. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. This property is populated by Samsung. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Default value: null. Read-only.
10630
10676
  */
10631
- downloadPeriod: fotaDownloadPeriodType | null;
10677
+ releaseDateTime: offsetDateTime;
10632
10678
  /**
10633
- * Determines how long in hours before the end user is reminded to install the firmware after postponing. The value must range between 1-24 hrs. Default is 1hr. Returned by default.
10679
+ * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
10634
10680
  */
10635
- postponedInstallationReminderMessageDuration: int32;
10681
+ requestFirmwareTypeName: string | null;
10636
10682
  /**
10637
- * Number of times the end user is allowed to postpone firmware installation. Default is 0. The value must range between 0-3. Returned by default.
10683
+ * Sales code of a Samsung device that corresponds to its georgraphic area or carrier network. This property is populated by Samsung. Eg. 'TMB'. Read-only. Returned by default.
10638
10684
  */
10639
- postponeInstallation: int32;
10685
+ salesCode: string;
10686
+ /**
10687
+ * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
10688
+ */
10689
+ securityPatchVersion: string | null;
10690
+ }
10691
+
10692
+ /**
10693
+ * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
10694
+ */
10695
+ @complex model samsungEFotaFirmwareVersionTarget {
10696
+ /**
10697
+ * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
10698
+ */
10699
+ firmwareVersion: samsungEFotaFirmwareVersion;
10700
+ /**
10701
+ * A unique identifier assigned to each Samsung Knox E-FOTA firmware version target entity. Returned by default.
10702
+ */
10703
+ id: string | null;
10640
10704
  }
10641
10705
 
10642
10706
  @complex model scheduleInformation {
@@ -11323,6 +11387,7 @@ namespace reference.`microsoft.graph` {
11323
11387
  state: synchronizationScheduleState;
11324
11388
  }
11325
11389
 
11390
+ @graphDeprecated("SynchronizationSecret_Deprecation")
11326
11391
  @complex model synchronizationSecretKeyStringValuePair {
11327
11392
  key: synchronizationSecret;
11328
11393
  value: string | null;
@@ -13315,6 +13380,78 @@ namespace reference.`microsoft.graph` {
13315
13380
  useDeviceContext: boolean;
13316
13381
  }
13317
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
+
13318
13455
  /**
13319
13456
  * Windows Defender last scan result
13320
13457
  */
@@ -15328,6 +15465,24 @@ namespace reference.`microsoft.graph` {
15328
15465
  isActive: boolean | null;
15329
15466
  }
15330
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
+
15331
15486
  /**
15332
15487
  * Android certificate profile base.
15333
15488
  */
@@ -15921,6 +16076,10 @@ namespace reference.`microsoft.graph` {
15921
16076
  * Indicates whether or not google accounts will be blocked.
15922
16077
  */
15923
16078
  googleAccountsBlocked: boolean | null;
16079
+ /**
16080
+ * Exit code to allow a user to escape from Kiosk Mode when the device is in Kiosk Mode.
16081
+ */
16082
+ isKioskModeExitCodeSet: boolean;
15924
16083
  /**
15925
16084
  * Indicates whether a user can access the device's Settings app while in Kiosk Mode.
15926
16085
  */
@@ -16543,6 +16702,10 @@ namespace reference.`microsoft.graph` {
16543
16702
  * Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
16544
16703
  */
16545
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;
16546
16709
  /**
16547
16710
  * Microsoft Tunnel site ID.
16548
16711
  */
@@ -17311,6 +17474,10 @@ namespace reference.`microsoft.graph` {
17311
17474
  * Setting to specify whether to allow ConnectedApps experience for this app.
17312
17475
  */
17313
17476
  connectedAppsEnabled: boolean;
17477
+ /**
17478
+ * Indicates whether the app is allowed to act as a credential provider. Applies to Android 14 and above. The default value is 'notConfigured'. Possible values are: 'notConfigured' and 'allowed'. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
17479
+ */
17480
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
17314
17481
  /**
17315
17482
  * Android For Work app configuration package id.
17316
17483
  */
@@ -18097,6 +18264,10 @@ namespace reference.`microsoft.graph` {
18097
18264
  * Setting to specify whether to allow ConnectedApps experience for this app.
18098
18265
  */
18099
18266
  connectedAppsEnabled: boolean;
18267
+ /**
18268
+ * Indicates whether the app is allowed to act as a credential provider. Applies to Android 14 and above. The default value is 'notConfigured'. Possible values are: 'notConfigured' and 'allowed'. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
18269
+ */
18270
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
18100
18271
  /**
18101
18272
  * Android Enterprise app configuration package id.
18102
18273
  */
@@ -18917,6 +19088,10 @@ namespace reference.`microsoft.graph` {
18917
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.
18918
19089
  */
18919
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;
18920
19095
  /**
18921
19096
  * Microsoft Tunnel site ID.
18922
19097
  */
@@ -19583,9 +19758,11 @@ namespace reference.`microsoft.graph` {
19583
19758
  identifierUris: string[];
19584
19759
  info: informationalUrl | null;
19585
19760
  isDeviceOnlyAuthSupported: boolean | null;
19761
+ isDisabled: boolean | null;
19586
19762
  isFallbackPublicClient: boolean | null;
19587
19763
  keyCredentials: keyCredential[];
19588
19764
  logo: stream;
19765
+ managerApplications: guid;
19589
19766
  notes: string | null;
19590
19767
  onPremisesPublishing: onPremisesPublishing | null;
19591
19768
  optionalClaims: optionalClaims | null;
@@ -19914,6 +20091,7 @@ namespace reference.`microsoft.graph` {
19914
20091
  requirements: strongAuthenticationRequirements | null;
19915
20092
  signInPreferences: signInPreferences | null;
19916
20093
  @contains emailMethods: emailAuthenticationMethod[];
20094
+ @contains externalAuthenticationMethods: externalAuthenticationMethod[];
19917
20095
  @contains fido2Methods: fido2AuthenticationMethod[];
19918
20096
  @contains methods: authenticationMethod[];
19919
20097
  @contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
@@ -20194,6 +20372,11 @@ namespace reference.`microsoft.graph` {
20194
20372
  @contains verticalSection: verticalSection | null;
20195
20373
  }
20196
20374
 
20375
+ @entity model caPoliciesDeletableRoot extends entity {
20376
+ @contains namedLocations: namedLocation[];
20377
+ @contains policies: conditionalAccessPolicy[];
20378
+ }
20379
+
20197
20380
  /**
20198
20381
  * CartToClassAssociation for associating device carts with classrooms.
20199
20382
  */
@@ -20408,7 +20591,7 @@ namespace reference.`microsoft.graph` {
20408
20591
  */
20409
20592
  @entity model cloudCertificationAuthority extends entity {
20410
20593
  /**
20411
- * The URL to download the certification authority certificate. Read-only.
20594
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
20412
20595
  */
20413
20596
  certificateDownloadUrl: string | null;
20414
20597
  /**
@@ -20416,11 +20599,11 @@ namespace reference.`microsoft.graph` {
20416
20599
  */
20417
20600
  certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
20418
20601
  /**
20419
- * 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.
20420
20603
  */
20421
20604
  certificateRevocationListUrl: string | null;
20422
20605
  /**
20423
- * 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.
20424
20607
  */
20425
20608
  certificateSigningRequest: string | null;
20426
20609
  /**
@@ -20428,7 +20611,7 @@ namespace reference.`microsoft.graph` {
20428
20611
  */
20429
20612
  certificationAuthorityIssuerId: string | null;
20430
20613
  /**
20431
- * 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.
20432
20615
  */
20433
20616
  certificationAuthorityIssuerUri: string | null;
20434
20617
  /**
@@ -20468,9 +20651,13 @@ namespace reference.`microsoft.graph` {
20468
20651
  */
20469
20652
  eTag: string | null;
20470
20653
  extendedKeyUsages: extendedKeyUsage[] | null;
20654
+ /**
20655
+ * The geographic region where a cloud certification authority (CA) is hosted. Read-only.
20656
+ */
20657
+ geographicRegion: string | null;
20471
20658
  issuerCommonName: string | null;
20472
20659
  /**
20473
- * The key platform used to store the certification authority keys. Read-only.
20660
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
20474
20661
  */
20475
20662
  keyPlatform: cloudCertificationAuthorityKeyPlatformType;
20476
20663
  /**
@@ -20482,7 +20669,7 @@ namespace reference.`microsoft.graph` {
20482
20669
  */
20483
20670
  localityName: string | null;
20484
20671
  /**
20485
- * 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.
20486
20673
  */
20487
20674
  ocspResponderUri: string | null;
20488
20675
  /**
@@ -20502,11 +20689,11 @@ namespace reference.`microsoft.graph` {
20502
20689
  */
20503
20690
  rootCertificateCommonName: string | null;
20504
20691
  /**
20505
- * The SCEP server URL for device SCEP connections to request certificates. Read-only.
20692
+ * Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
20506
20693
  */
20507
20694
  scepServerUrl: string | null;
20508
20695
  /**
20509
- * 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.
20510
20697
  */
20511
20698
  serialNumber: string | null;
20512
20699
  /**
@@ -20514,15 +20701,15 @@ namespace reference.`microsoft.graph` {
20514
20701
  */
20515
20702
  stateName: string | null;
20516
20703
  /**
20517
- * 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.
20518
20705
  */
20519
20706
  subjectName: string | null;
20520
20707
  /**
20521
- * 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.
20522
20709
  */
20523
20710
  thumbprint: string | null;
20524
20711
  /**
20525
- * 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.
20526
20713
  */
20527
20714
  validityEndDateTime: offsetDateTime | null;
20528
20715
  /**
@@ -20530,17 +20717,25 @@ namespace reference.`microsoft.graph` {
20530
20717
  */
20531
20718
  validityPeriodInYears: int32;
20532
20719
  /**
20533
- * 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.
20534
20721
  */
20535
20722
  validityStartDateTime: offsetDateTime | null;
20536
20723
  /**
20537
- * 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.
20538
20725
  */
20539
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;
20540
20731
  /**
20541
20732
  * Required OData property to expose leaf certificate API.
20542
20733
  */
20543
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[];
20544
20739
  }
20545
20740
 
20546
20741
  /**
@@ -20555,6 +20750,10 @@ namespace reference.`microsoft.graph` {
20555
20750
  * The URI of the certification authority that issued the certificate. Read-only.
20556
20751
  */
20557
20752
  certificationAuthorityIssuerUri: string | null;
20753
+ /**
20754
+ * The version number of the certification authority that issued this leaf certificate. Read-only.
20755
+ */
20756
+ certificationAuthorityVersionNumber: int32;
20558
20757
  /**
20559
20758
  * URL to find the relevant Certificate Revocation List for this certificate. Read-only.
20560
20759
  */
@@ -20620,6 +20819,88 @@ namespace reference.`microsoft.graph` {
20620
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.
20621
20820
  */
20622
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;
20623
20904
  }
20624
20905
 
20625
20906
  /**
@@ -20838,12 +21119,13 @@ namespace reference.`microsoft.graph` {
20838
21119
  partnerState: deviceManagementPartnerTenantState;
20839
21120
  }
20840
21121
 
20841
- @entity model conditionalAccessPolicy extends entity {
21122
+ @entity model conditionalAccessPolicy extends policyDeletableItem {
20842
21123
  conditions: conditionalAccessConditionSet;
20843
21124
  @computed createdDateTime: offsetDateTime | null;
20844
21125
  description: string | null;
20845
21126
  displayName: string;
20846
21127
  grantControls: conditionalAccessGrantControls | null;
21128
+ @computed @key id: string;
20847
21129
  modifiedDateTime: offsetDateTime | null;
20848
21130
  sessionControls: conditionalAccessSessionControls | null;
20849
21131
  state: conditionalAccessPolicyState;
@@ -20852,6 +21134,7 @@ namespace reference.`microsoft.graph` {
20852
21134
 
20853
21135
  @entity model conditionalAccessRoot extends entity {
20854
21136
  @contains authenticationContextClassReferences: authenticationContextClassReference[];
21137
+ @contains deletedItems: caPoliciesDeletableRoot | null;
20855
21138
  @contains namedLocations: namedLocation[];
20856
21139
  @contains policies: conditionalAccessPolicy[];
20857
21140
  @contains templates: conditionalAccessTemplate[];
@@ -21069,6 +21352,7 @@ namespace reference.`microsoft.graph` {
21069
21352
  inboundTrust: crossTenantAccessPolicyInboundTrust | null;
21070
21353
  invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
21071
21354
  isServiceDefault: boolean | null;
21355
+ @contains m365Capabilities: m365CapabilityBase[];
21072
21356
  }
21073
21357
 
21074
21358
  @entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
@@ -21080,6 +21364,22 @@ namespace reference.`microsoft.graph` {
21080
21364
  isServiceProvider: boolean | null;
21081
21365
  @computed @key tenantId: string;
21082
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 {
21083
21383
  }
21084
21384
 
21085
21385
  @entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
@@ -21090,6 +21390,24 @@ namespace reference.`microsoft.graph` {
21090
21390
  userSyncInbound: crossTenantUserSyncInbound | null;
21091
21391
  }
21092
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
+
21093
21411
  @privatePreview("MicrosofEntitlementManagementCustomextensions")
21094
21412
  @entity model customAccessPackageWorkflowExtension extends customCalloutExtension {
21095
21413
  @computed createdDateTime: offsetDateTime | null;
@@ -21151,15 +21469,6 @@ namespace reference.`microsoft.graph` {
21151
21469
  @contains allowedValues: allowedValue[];
21152
21470
  }
21153
21471
 
21154
- @abstract
21155
- @entity model customSecurityAttributeExemption extends entity {
21156
- operator: customSecurityAttributeComparisonOperator | null;
21157
- }
21158
-
21159
- @entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
21160
- value: string | null;
21161
- }
21162
-
21163
21472
  @entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
21164
21473
  inactive1DayCount: int64 | null;
21165
21474
  }
@@ -21886,6 +22195,10 @@ namespace reference.`microsoft.graph` {
21886
22195
  * Indicates whether Setup Assistant will skip the user interface for primary account setup
21887
22196
  */
21888
22197
  skipPrimarySetupAccountCreation: boolean;
22198
+ /**
22199
+ * Indicates whether Platform SSO is used as part of device enrollment during Setup Assistant. When TRUE, Platform SSO is used in device enrollment during Setup Assistant. When FALSE Platform SSO is not used in enrollment during Setup Assistant. Note: This value cannot be TRUE when configurationWebUrl is TRUE.
22200
+ */
22201
+ usePlatformSSODuringSetupAssistant: boolean;
21889
22202
  /**
21890
22203
  * Indicates if zoom setup pane is disabled
21891
22204
  */
@@ -22699,6 +23012,10 @@ namespace reference.`microsoft.graph` {
22699
23012
  * The timestamp of when the device compliance script was modified. This property is read-only.
22700
23013
  */
22701
23014
  @computed lastModifiedDateTime: offsetDateTime;
23015
+ /**
23016
+ * Indicates the operating system platform type that this compliance script targets.
23017
+ */
23018
+ platform: deviceComplianceScriptPlatformType | null;
22702
23019
  /**
22703
23020
  * Name of the device compliance script publisher
22704
23021
  */
@@ -23924,6 +24241,9 @@ namespace reference.`microsoft.graph` {
23924
24241
  status: appLogUploadState;
23925
24242
  }
23926
24243
 
24244
+ /**
24245
+ * Singleton that acts as container for a collection of Resource Access entities.
24246
+ */
23927
24247
  @entity model deviceManagement extends entity {
23928
24248
  /**
23929
24249
  * The date & time when tenant data moved between scaleunits.
@@ -23973,6 +24293,10 @@ namespace reference.`microsoft.graph` {
23973
24293
  * Maximum number of dep tokens allowed per-tenant.
23974
24294
  */
23975
24295
  maximumDepTokens: int32;
24296
+ /**
24297
+ * The collection of Samsung EFOTA firmware versions.
24298
+ */
24299
+ samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[] | null;
23976
24300
  /**
23977
24301
  * Account level settings.
23978
24302
  */
@@ -24005,6 +24329,10 @@ namespace reference.`microsoft.graph` {
24005
24329
  * The summary state of ATP onboarding state for this account.
24006
24330
  */
24007
24331
  @contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
24332
+ /**
24333
+ * Android App Configurations Schema entity.
24334
+ */
24335
+ @contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
24008
24336
  /**
24009
24337
  * Android device owner enrollment profile entities.
24010
24338
  */
@@ -24237,18 +24565,6 @@ namespace reference.`microsoft.graph` {
24237
24565
  * The policy which controls mobile device access to Exchange On Premises
24238
24566
  */
24239
24567
  @contains exchangeOnPremisesPolicy: deviceManagementExchangeOnPremisesPolicy | null;
24240
- /**
24241
- * The FOTA connector entity that represents the tenant's authorization status for Intune and an OEM. Is an abstract type. To get all connectors, use the Get operation. To get a specific OEM connector, use the oem query parameter to specify the OEM type. To create an OEM connector, refer to the derived connector entity like graph.samsungEFotaConnector.
24242
- */
24243
- @contains fotaConnector: fotaConnector | null;
24244
- /**
24245
- * The collection of FOTA connector entity that represents the tenant's authorization status for Intune
24246
- */
24247
- @contains fotaConnectors: fotaConnector[];
24248
- /**
24249
- * The collection of FOTA deployment for an OEM.
24250
- */
24251
- @contains fotaDeployments: fotaDeployment[];
24252
24568
  /**
24253
24569
  * The available group policy categories for this account.
24254
24570
  */
@@ -24418,14 +24734,6 @@ namespace reference.`microsoft.graph` {
24418
24734
  * The Role Scope Tags.
24419
24735
  */
24420
24736
  @contains roleScopeTags: roleScopeTag[];
24421
- /**
24422
- * The collection of FOTA deployment for Samsung OEM.
24423
- */
24424
- @contains samsungEFotaDeployments: samsungEFotaDeployment[];
24425
- /**
24426
- * The collection of Samsung EFOTA firmware versions.
24427
- */
24428
- @contains samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[];
24429
24737
  /**
24430
24738
  * A list of ServiceNowConnections
24431
24739
  */
@@ -27125,6 +27433,11 @@ namespace reference.`microsoft.graph` {
27125
27433
  targetObjects: string[];
27126
27434
  }
27127
27435
 
27436
+ @entity model externalAuthenticationMethod extends authenticationMethod {
27437
+ configurationId: string;
27438
+ displayName: string;
27439
+ }
27440
+
27128
27441
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
27129
27442
  appId: string;
27130
27443
  displayName: string;
@@ -27253,75 +27566,6 @@ namespace reference.`microsoft.graph` {
27253
27566
  supportedAttributeTypes: attributeType[];
27254
27567
  }
27255
27568
 
27256
- /**
27257
- * The FOTA connector entity that represents the tenant's authorization status for Intune and an OEM. To get all connectors, use the 'Get' operation. To get a specific OEM connector, use the 'retrieveFotaConnector' function and specify the OEM type. To create, use 'graph.fotaConnector' 'connect' action and specify the 'oem' like 'samsung' or 'zebra'. To add or remove Entra security groups for device registration, use the 'register' or 'deregister' actions. To get the authorization URL, use the 'retrieveFotaAuthorizationUrl' function.
27258
- */
27259
- @entity model fotaConnector extends entity {
27260
- /**
27261
- * The authorization URL used by IT Admin to authorize Intune to call the OEM APIs on their behalf. Default value: null. If the authorization URL exists, it is returned as an empty string. To retrieve it, specific 'GET' function 'retrieveFotaAuthorizationUrl' has to be used.
27262
- */
27263
- authorizationUrl: string | null;
27264
- /**
27265
- * High level status of the tenant's registered devices. Used to get the number of registered devices and the error if registration failed. See 'graph.fotaDeviceRegistrationStatus' for more details. Default value: null.
27266
- */
27267
- deviceRegistrationStatus: fotaDeviceRegistrationStatus | null;
27268
- /**
27269
- * System generated friendly name for the connector based on the OEM like 'Samsung E-FOTA Connector'. Populated during creation of the OEM connector. Read-only. Returned by default.
27270
- */
27271
- displayName: string | null;
27272
- /**
27273
- * The date and time when the FOTA connector was last synced with the OEM's cloud service to establish connection. The Timestamp 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'. Read-only. Returned by default.
27274
- */
27275
- @computed lastSyncDateTime: offsetDateTime | null;
27276
- /**
27277
- * OEM (Original Equipment Manufacturer) type that has onboarded to Intune FOTA functionality. Possible values are 'unknown', 'zebra' and 'samsung'. Default is 'unknown'. See 'graph.fotaOemType' enum for details. Populated during creation of the OEM connector. Returned by default.
27278
- */
27279
- oem: fotaOemType;
27280
- /**
27281
- * The Entra security groups targeted for device registration. See 'graph.deviceAndAppManagementAssignmentTarget' entity for details. Default value: null.
27282
- */
27283
- registrationAssignments: deviceAndAppManagementAssignmentTarget[] | null;
27284
- /**
27285
- * The state of the FOTA connector. Possible values are 'none', 'pending', 'connected', and 'disconnected'. Default is 'none'. See 'graph.fotaConnectorState' enum for detailed state definitions. Returned by default.
27286
- */
27287
- state: fotaConnectorState;
27288
- /**
27289
- * Tenant's total Samsung licenses count. Default value: null.
27290
- */
27291
- totalLicensesCount: int32 | null;
27292
- }
27293
-
27294
- /**
27295
- * The FOTA deployment for an OEM. Is an abstract type. To get all deployments for an OEM, use the 'retrieveDeployments' function and specify the OEM. To get a specific OEM deployment, use the 'retrieveDeployment' function and specify the OEM type and deployment ID. To create a FOTA deployment for an OEM, refer to the derived deployment entity like 'graph.samsungEFotaDeployment'
27296
- */
27297
- @abstract
27298
- @entity model fotaDeployment extends entity {
27299
- /**
27300
- * The deployment's targeted security groups(s). See 'graph.deviceAndAppManagementAssignmentTarget' for more details. Returned by default.
27301
- */
27302
- deploymentAssignments: deviceAndAppManagementAssignmentTarget[];
27303
- /**
27304
- * The deployment status from the OEM (Original Equipment Manufacturer). See 'graph.fotaDeploymentStatus' complex type for details. Default value: null.
27305
- */
27306
- deploymentStatus: fotaDeploymentStatus | null;
27307
- /**
27308
- * The description of the FOTA deployment. Max allowed length is 1500 chars. Default value: null.
27309
- */
27310
- description: string | null;
27311
- /**
27312
- * The deployment name associated with FOTA deployment. Returned by default. Max allowed length is 200 chars.
27313
- */
27314
- displayName: string;
27315
- /**
27316
- * OEM (Original Equipment Manufacturer) type that has onboarded to Intune FOTA functionality. Populated during creation of the OEM deployment. Possible values are 'unknown', 'zebra' and 'samsung'. Default is 'unknown'. See 'graph.fotaOemType' enum for details. Returned by default.
27317
- */
27318
- oem: fotaOemType;
27319
- /**
27320
- * List of Scope Tags for the deployment. Default value: null.
27321
- */
27322
- roleScopeTagIds: string[] | null;
27323
- }
27324
-
27325
27569
  @abstract
27326
27570
  @entity model governanceInsight extends entity {
27327
27571
  insightCreatedDateTime: offsetDateTime | null;
@@ -27351,6 +27595,7 @@ namespace reference.`microsoft.graph` {
27351
27595
  groupTypes: string[];
27352
27596
  hasMembersWithLicenseErrors: boolean | null;
27353
27597
  hideFromAddressLists: boolean | null;
27598
+ hideFromOutlookClients: boolean | null;
27354
27599
  infoCatalogs: string[];
27355
27600
  isArchived: boolean | null;
27356
27601
  isAssignableToRole: boolean | null;
@@ -27365,12 +27610,14 @@ namespace reference.`microsoft.graph` {
27365
27610
  membershipRuleProcessingState: string | null;
27366
27611
  membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
27367
27612
  onPremisesDomainName: string | null;
27613
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
27368
27614
  onPremisesLastSyncDateTime: offsetDateTime | null;
27369
27615
  onPremisesNetBiosName: string | null;
27370
27616
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
27371
27617
  onPremisesSamAccountName: string | null;
27372
27618
  onPremisesSecurityIdentifier: string | null;
27373
27619
  onPremisesSyncEnabled: boolean | null;
27620
+ organizationId: string | null;
27374
27621
  preferredDataLocation: string | null;
27375
27622
  preferredLanguage: string | null;
27376
27623
  proxyAddresses: string[];
@@ -27382,8 +27629,11 @@ namespace reference.`microsoft.graph` {
27382
27629
  serviceProvisioningErrors: serviceProvisioningError[] | null;
27383
27630
  theme: string | null;
27384
27631
  uniqueName: string | null;
27632
+ unseenConversationsCount: int32 | null;
27385
27633
  unseenCount: int32 | null;
27634
+ unseenMessagesCount: int32 | null;
27386
27635
  visibility: string | null;
27636
+ welcomeMessageEnabled: boolean | null;
27387
27637
  writebackConfiguration: groupWritebackConfiguration | null;
27388
27638
  @contains acceptedSenders: directoryObject[];
27389
27639
  @contains appRoleAssignments: appRoleAssignment[];
@@ -28723,7 +28973,7 @@ namespace reference.`microsoft.graph` {
28723
28973
  }
28724
28974
 
28725
28975
  @entity model inheritablePermission extends MsGraph.SharedModels.entity {
28726
- inheritableScopes: inheritableScopes;
28976
+ inheritableScopes: inheritableScopes | null;
28727
28977
  @computed @key resourceAppId: string;
28728
28978
  }
28729
28979
 
@@ -31078,7 +31328,6 @@ namespace reference.`microsoft.graph` {
31078
31328
  retentionSettings: retentionLabelSettings | null;
31079
31329
  }
31080
31330
 
31081
-
31082
31331
  @entity model languageProficiency extends itemFacet {
31083
31332
  displayName: string | null;
31084
31333
  proficiency: languageProficiencyLevel | null;
@@ -31097,6 +31346,7 @@ namespace reference.`microsoft.graph` {
31097
31346
 
31098
31347
  @entity model list extends baseItem {
31099
31348
  displayName: string | null;
31349
+ itemCount: int32 | null;
31100
31350
  list: listInfo | null;
31101
31351
  sharepointIds: sharepointIds | null;
31102
31352
  system: systemFacet | null;
@@ -31161,6 +31411,13 @@ namespace reference.`microsoft.graph` {
31161
31411
  statusDetail: string | null;
31162
31412
  }
31163
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
+
31164
31421
  /**
31165
31422
  * Mac OS certificate profile.
31166
31423
  */
@@ -31193,87 +31450,91 @@ namespace reference.`microsoft.graph` {
31193
31450
  */
31194
31451
  @entity model macOSCompliancePolicy extends deviceCompliancePolicy {
31195
31452
  /**
31196
- * 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.
31197
31454
  */
31198
31455
  advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31199
31456
  /**
31200
- * 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.
31201
31462
  */
31202
31463
  deviceThreatProtectionEnabled: boolean;
31203
31464
  /**
31204
- * 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.
31205
31466
  */
31206
31467
  deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
31207
31468
  /**
31208
- * 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.
31209
31470
  */
31210
31471
  firewallBlockAllIncoming: boolean;
31211
31472
  /**
31212
- * 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.
31213
31474
  */
31214
31475
  firewallEnabled: boolean;
31215
31476
  /**
31216
- * 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.
31217
31478
  */
31218
31479
  firewallEnableStealthMode: boolean;
31219
31480
  /**
31220
- * 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.
31221
31482
  */
31222
31483
  gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
31223
31484
  /**
31224
- * 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.
31225
31486
  */
31226
31487
  osMaximumBuildVersion: string | null;
31227
31488
  /**
31228
- * 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.
31229
31490
  */
31230
31491
  osMaximumVersion: string | null;
31231
31492
  /**
31232
- * 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.
31233
31494
  */
31234
31495
  osMinimumBuildVersion: string | null;
31235
31496
  /**
31236
- * 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.
31237
31498
  */
31238
31499
  osMinimumVersion: string | null;
31239
31500
  /**
31240
- * 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.
31241
31502
  */
31242
31503
  passwordBlockSimple: boolean;
31243
31504
  /**
31244
- * 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
31245
31506
  */
31246
31507
  passwordExpirationDays: int32 | null;
31247
31508
  /**
31248
- * 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.
31249
31510
  */
31250
31511
  passwordMinimumCharacterSetCount: int32 | null;
31251
31512
  /**
31252
- * 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
31253
31514
  */
31254
31515
  passwordMinimumLength: int32 | null;
31255
31516
  /**
31256
- * 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.
31257
31518
  */
31258
31519
  passwordMinutesOfInactivityBeforeLock: int32 | null;
31259
31520
  /**
31260
- * 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
31261
31522
  */
31262
31523
  passwordPreviousPasswordBlockCount: int32 | null;
31263
31524
  /**
31264
- * 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.
31265
31526
  */
31266
31527
  passwordRequired: boolean;
31267
31528
  /**
31268
- * 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.
31269
31530
  */
31270
31531
  passwordRequiredType: requiredPasswordType;
31271
31532
  /**
31272
- * 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.
31273
31534
  */
31274
31535
  storageRequireEncryption: boolean;
31275
31536
  /**
31276
- * 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.
31277
31538
  */
31278
31539
  systemIntegrityProtectionEnabled: boolean;
31279
31540
  }
@@ -35135,6 +35396,10 @@ namespace reference.`microsoft.graph` {
35135
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.
35136
35397
  */
35137
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;
35138
35403
  /**
35139
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.
35140
35405
  */
@@ -35151,6 +35416,10 @@ namespace reference.`microsoft.graph` {
35151
35416
  * DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
35152
35417
  */
35153
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;
35154
35423
  /**
35155
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.
35156
35425
  */
@@ -35219,12 +35488,17 @@ namespace reference.`microsoft.graph` {
35219
35488
  value: string[] | null;
35220
35489
  }
35221
35490
 
35222
- @entity model namedLocation extends entity {
35491
+ @entity model namedLocation extends policyDeletableItem {
35223
35492
  @computed createdDateTime: offsetDateTime | null;
35224
35493
  displayName: string;
35494
+ @computed @key id: string;
35225
35495
  modifiedDateTime: offsetDateTime | null;
35226
35496
  }
35227
35497
 
35498
+ @entity model namePronunciationSettings extends entity {
35499
+ isEnabledInOrganization: boolean;
35500
+ }
35501
+
35228
35502
  /**
35229
35503
  * Entity which represents an OnPrem Ndes connector.
35230
35504
  */
@@ -35861,7 +36135,6 @@ namespace reference.`microsoft.graph` {
35861
36135
  password: string | null;
35862
36136
  }
35863
36137
 
35864
-
35865
36138
  @entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
35866
36139
 
35867
36140
  @graphDeprecated("CreationDateTime")
@@ -35882,7 +36155,11 @@ namespace reference.`microsoft.graph` {
35882
36155
 
35883
36156
  @entity model peopleAdminSettings extends entity {
35884
36157
  @contains itemInsights: insightsSettings | null;
36158
+ @contains namePronunciation: namePronunciationSettings | null;
36159
+ @contains photoUpdateSettings: photoUpdateSettings | null;
35885
36160
  @contains profileCardProperties: profileCardProperty[];
36161
+ @contains profilePropertySettings: profilePropertySetting[];
36162
+ @contains profileSources: profileSource[];
35886
36163
  @contains pronouns: pronounsSettings | null;
35887
36164
  }
35888
36165
 
@@ -36037,6 +36314,11 @@ namespace reference.`microsoft.graph` {
36037
36314
  phoneNumber: string | null;
36038
36315
  }
36039
36316
 
36317
+ @entity model photoUpdateSettings extends entity {
36318
+ allowedRoles: string[] | null;
36319
+ source: photoUpdateSource | null;
36320
+ }
36321
+
36040
36322
  @entity model pinnedChatMessageInfo extends entity {
36041
36323
  @references message: chatMessage | null;
36042
36324
  }
@@ -36077,6 +36359,11 @@ namespace reference.`microsoft.graph` {
36077
36359
  displayName: string;
36078
36360
  }
36079
36361
 
36362
+ @abstract
36363
+ @entity model policyDeletableItem extends MsGraph.SharedModels.entity {
36364
+ deletedDateTime: offsetDateTime | null;
36365
+ }
36366
+
36080
36367
  @entity model policyRoot extends entity {
36081
36368
  @contains accessReviewPolicy: accessReviewPolicy | null;
36082
36369
  @contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
@@ -36515,6 +36802,7 @@ namespace reference.`microsoft.graph` {
36515
36802
  @entity model profileCardProperty extends entity {
36516
36803
  annotations: profileCardAnnotation[] | null;
36517
36804
  directoryPropertyName: string | null;
36805
+ isVisible: boolean;
36518
36806
  }
36519
36807
 
36520
36808
  @entity model profilePhoto extends entity {
@@ -36522,6 +36810,20 @@ namespace reference.`microsoft.graph` {
36522
36810
  width: int32 | null;
36523
36811
  }
36524
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
+
36525
36827
  @entity model program extends entity {
36526
36828
  description: string;
36527
36829
  displayName: string;
@@ -37057,80 +37359,6 @@ namespace reference.`microsoft.graph` {
37057
37359
  signingCertificate: string | null;
37058
37360
  }
37059
37361
 
37060
- /**
37061
- * The settings and targeted firmware versions for a Samsung Knox E-FOTA deployment. Inherits from 'graph.fotaDeployment'. To create, update and delete, use the 'graph.fotaDeployment' 'Post', 'Patch', and 'Delete' operations and specify 'oem' as 'Samsung'. To get, use the 'graph.fotaDeployment' 'Get' operation and specify 'oem' as 'Samsung'
37062
- */
37063
- @entity model samsungEFotaDeployment extends fotaDeployment {
37064
- /**
37065
- * The setting required to create a deployment such as deployment update type, download and installation time, network type, etc. See 'graph.samsungEFotaDeploymentSetting' complex type for more details. Returned by default.
37066
- */
37067
- deploymentSetting: samsungEFotaDeploymentSetting;
37068
- /**
37069
- * The E-FOTA deployment's firmware version targets like the device model, sales code, CSC, and update type. See 'graph.samsungEFotaFirmwareVersionTarget' entity for more details. Returned by default
37070
- */
37071
- @references firmwareVersionTargets: samsungEFotaFirmwareVersionTarget[];
37072
- }
37073
-
37074
- /**
37075
- * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
37076
- */
37077
- @entity model samsungEFotaFirmwareVersion extends entity {
37078
- /**
37079
- * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
37080
- */
37081
- androidProcessorVersionName: string | null;
37082
- /**
37083
- * The Consumer Software Customization which is a specific code associated with the region or carrier customization of a Samsung device. This property is populated by Samsung. Eg. 'OYM'. Read-only. Returned by default.
37084
- */
37085
- consumerSoftwareCustomizationCode: string;
37086
- /**
37087
- * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
37088
- */
37089
- description: string | null;
37090
- /**
37091
- * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
37092
- */
37093
- deviceModelName: string;
37094
- /**
37095
- * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
37096
- */
37097
- firmwareVersion: string | null;
37098
- /**
37099
- * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
37100
- */
37101
- osVersionName: string | null;
37102
- /**
37103
- * Firmware release date. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. This property is populated by Samsung. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Default value: null. Read-only.
37104
- */
37105
- releaseDateTime: offsetDateTime;
37106
- /**
37107
- * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
37108
- */
37109
- requestFirmwareType: string | null;
37110
- /**
37111
- * Sales code of a Samsung device that corresponds to its georgraphic area or carrier network. This property is populated by Samsung. Eg. 'TMB'. Read-only. Returned by default.
37112
- */
37113
- salesCode: string;
37114
- /**
37115
- * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
37116
- */
37117
- securityPatch: string | null;
37118
- }
37119
-
37120
- /**
37121
- * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
37122
- */
37123
- @entity model samsungEFotaFirmwareVersionTarget extends entity {
37124
- /**
37125
- * The E-FOTA deployment's firmware update type. Possible values are 'custom', 'latestMajorVersion', 'auto', 'latestMinorVersion', and 'locked'. Default is 'custom'. See 'graph.fotaFirmwareUpdateType' enum for more details. Returned by default.
37126
- */
37127
- updateType: fotaFirmwareUpdateType;
37128
- /**
37129
- * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
37130
- */
37131
- @references firmwareVersion: samsungEFotaFirmwareVersion;
37132
- }
37133
-
37134
37362
  @entity model schemaExtension extends entity {
37135
37363
  description: string | null;
37136
37364
  owner: string;
@@ -37454,6 +37682,7 @@ namespace reference.`microsoft.graph` {
37454
37682
  errorUrl: string | null;
37455
37683
  homepage: string | null;
37456
37684
  info: informationalUrl | null;
37685
+ isDisabled: boolean | null;
37457
37686
  keyCredentials: keyCredential[];
37458
37687
  loginUrl: string | null;
37459
37688
  logoutUrl: string | null;
@@ -37818,6 +38047,7 @@ namespace reference.`microsoft.graph` {
37818
38047
  azureResourceId: string | null;
37819
38048
  clientAppUsed: string | null;
37820
38049
  clientCredentialType: clientCredentialType | null;
38050
+ clientSessionId: string | null;
37821
38051
  conditionalAccessAudiences: string[] | null;
37822
38052
  conditionalAccessStatus: conditionalAccessStatus | null;
37823
38053
  correlationId: string | null;
@@ -38117,6 +38347,7 @@ namespace reference.`microsoft.graph` {
38117
38347
  signInCount: int64 | null;
38118
38348
  status: signInStatus | null;
38119
38349
  tenantId: string | null;
38350
+ tokenIssuerType: tokenIssuerType;
38120
38351
  userPrincipalName: string | null;
38121
38352
  }
38122
38353
 
@@ -38160,6 +38391,8 @@ namespace reference.`microsoft.graph` {
38160
38391
  }
38161
38392
 
38162
38393
  @entity model synchronization extends entity {
38394
+
38395
+ @graphDeprecated("SynchronizationSecret_Deprecation")
38163
38396
  secrets: synchronizationSecretKeyStringValuePair[] | null;
38164
38397
  @contains jobs: synchronizationJob[];
38165
38398
  @contains templates: synchronizationTemplate[];
@@ -45087,6 +45320,14 @@ namespace reference.`microsoft.graph` {
45087
45320
  * A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
45088
45321
  */
45089
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;
45090
45331
  /**
45091
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
45092
45333
  */
@@ -46731,6 +46972,10 @@ namespace reference.`microsoft.graph` {
46731
46972
  * Current anti malware version
46732
46973
  */
46733
46974
  antiMalwareVersion: string | null;
46975
+ /**
46976
+ * When TRUE indicates the Windows Defender controlled configuration feature is enabled, when FALSE indicates the Windows Defender controlled configuration feature is not enabled. Defaults to setting on client device.
46977
+ */
46978
+ controlledConfigurationEnabled: boolean | null;
46734
46979
  /**
46735
46980
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
46736
46981
  */
@@ -47679,10 +47924,6 @@ namespace reference.`microsoft.graph` {
47679
47924
  * The Zebra FOTA deployment entity that describes settings, deployment device groups required to create a FOTA deployment, and deployment status.
47680
47925
  */
47681
47926
  @entity model zebraFotaDeployment extends entity {
47682
- /**
47683
- * Collection of Android FOTA Assignment
47684
- */
47685
- deploymentAssignments: androidFotaDeploymentAssignment[] | null;
47686
47927
  /**
47687
47928
  * Represents settings required to create a deployment such as deployment type, artifact info, download and installation
47688
47929
  */
@@ -48011,6 +48252,21 @@ namespace reference.`microsoft.graph` {
48011
48252
  unknownFutureValue: 4,
48012
48253
  }
48013
48254
 
48255
+ /**
48256
+ * The Android credential provider role state for apps.
48257
+ */
48258
+ enum androidAppCredentialProviderRoleState {
48259
+ /**
48260
+ * Default. Indicates the app's ability to act as a credential provider has not been configured. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
48261
+ */
48262
+ notConfigured: 0,
48263
+ /**
48264
+ * Indicates the app is allowed to act as a credential provider.
48265
+ */
48266
+ allowed: 1,
48267
+ unknownFutureValue: 2,
48268
+ }
48269
+
48014
48270
  /**
48015
48271
  * Android Device Owner possible values for states of the device's app auto update policy.
48016
48272
  */
@@ -50814,7 +51070,7 @@ namespace reference.`microsoft.graph` {
50814
51070
  }
50815
51071
 
50816
51072
  /**
50817
- * 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.
50818
51074
  */
50819
51075
  enum cloudCertificationAuthorityStatus {
50820
51076
  /**
@@ -50838,6 +51094,10 @@ namespace reference.`microsoft.graph` {
50838
51094
  */
50839
51095
  signingPending: 4,
50840
51096
  unknownFutureValue: 5,
51097
+ /**
51098
+ * Indicates certification authority has expired and cannot issue certificates until renewed and activated.
51099
+ */
51100
+ expired: 6,
50841
51101
  }
50842
51102
 
50843
51103
  /**
@@ -50863,6 +51123,49 @@ namespace reference.`microsoft.graph` {
50863
51123
  unknownFutureValue: 4,
50864
51124
  }
50865
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
+
50866
51169
  /**
50867
51170
  * Error code for rule validation.
50868
51171
  */
@@ -52340,6 +52643,25 @@ namespace reference.`microsoft.graph` {
52340
52643
  remoteLock: 10,
52341
52644
  }
52342
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
+
52343
52665
  /**
52344
52666
  * Data types for rules.
52345
52667
  */
@@ -56248,206 +56570,6 @@ namespace reference.`microsoft.graph` {
56248
56570
  flagged: 2,
56249
56571
  }
56250
56572
 
56251
- /**
56252
- * An OEM's FOTA connector state for the tenant
56253
- */
56254
- enum fotaConnectorState {
56255
- /**
56256
- * Default value when the connector has not been setup (the feature has not been used yet).
56257
- */
56258
- none: 0,
56259
- /**
56260
- * Indicates that Intune is linked to the OEM for the current tenant.
56261
- */
56262
- connected: 1,
56263
- /**
56264
- * Indicates that the tenant was connected in the past and later disconnected.
56265
- */
56266
- disconnected: 2,
56267
- /**
56268
- * Indicates that the IT Pro has not yet authorized Intune to call the OEM on their behalf.
56269
- */
56270
- pending: 3,
56271
- unknownFutureValue: 4,
56272
- }
56273
-
56274
- /**
56275
- * An error code indicating the failure reason, when a FOTA deployment failed to create or complete.
56276
- */
56277
- enum fotaDeploymentErrorCode {
56278
- /**
56279
- * This error indicates that the deployment failed to create because no devices were found in the selected Entra security group(s) when creating a deployment. E.g.: a user selects one or more security groups that doesn't include any devices.
56280
- */
56281
- noDevicesFoundInSelectedEntraGroups: 0,
56282
- /**
56283
- * This error indicates that the deployment failed to create because no Intune managed devices were found in the selected Entra security groups when creating a deployment. E.g.: a user selects a group that includes devices that are no longer managed in Intune.
56284
- */
56285
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
56286
- /**
56287
- * This error indicates that the deployment failed to create because no FOTA enrolled/registered devices were found in the selected Entra Groups when creating a deployment. E.g.: a user has registered one or more devices in Samsung Knox E-FOTA, but attempts to create a deployment targeting security groups that don't include any registered devices.
56288
- */
56289
- noFotaEnrolledDevicesFoundForCurrentTenant: 2,
56290
- /**
56291
- * This error indicates that no FOTA enrolled/registered devices were found in the selected Entra (Azure Active Directory - Azure AD) Groups when creating a deployment. E.g.: a user has registered one or more devices in Samsung Knox E-FOTA, but attempts to create a deployment targeting security groups that don't include any registered devices.
56292
- */
56293
- noFotaEnrolledDevicesFoundInSelectedEntraGroups: 3,
56294
- /**
56295
- * This error indicates that the deployment failed to create because no FOTA devices were found that match the selected device model(s) when creating a deployment. E.g.: a user selects 'TC8300' Zebra device model, but no Zebra devices with the same device model were found in the deployment's targeted Entra security groups.
56296
- */
56297
- noFotaDevicesFoundForSelectedDeviceModel: 4,
56298
- /**
56299
- * This error indicates that the deployment failed to create because the external request to the OEM to create a deployment failed. The failure can be caused by a transient issue (e.g.: Network is down) or caused by a permanent server error.
56300
- */
56301
- fotaCreateDeploymentRequestFailure: 5,
56302
- unknownFutureValue: 6,
56303
- }
56304
-
56305
- /**
56306
- * The overall state of the FOTA deployment. The deployment state is determined by looking at the status of all devices in the deployment. If any device is in the created state, the overall deployment state becomes created. If any device is in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall deployment state becomes completed. If the IT Admin requests cancellation, the deployment state becomes pending cancel and then cancelled.
56307
- */
56308
- enum fotaDeploymentState {
56309
- /**
56310
- * Default. Deployment is created but the OEM has not confirmed its creation.
56311
- */
56312
- pendingCreation: 0,
56313
- /**
56314
- * Deployment was not successfully created with the OEM or failed to complete.
56315
- */
56316
- createFailed: 1,
56317
- /**
56318
- * Deployment has been created but has not been deployed yet.
56319
- */
56320
- created: 2,
56321
- /**
56322
- * Deployment has started but not completed.
56323
- */
56324
- inProgress: 3,
56325
- /**
56326
- * Deployment has completed or end date has passed.
56327
- */
56328
- completed: 4,
56329
- /**
56330
- * IT Admin has requested to cancel a deployment but the OEM has not confirmed cancellation.
56331
- */
56332
- pendingCancel: 5,
56333
- /**
56334
- * Deployment was not successfully cancelled by the OEM.
56335
- */
56336
- cancelFailed: 6,
56337
- /**
56338
- * Deployment has been successfully cancelled by the OEM.
56339
- */
56340
- cancelled: 7,
56341
- /**
56342
- * Default. Deployment is updated but the OEM has not confirmed its update.
56343
- */
56344
- pendingUpdate: 8,
56345
- /**
56346
- * Deployment was not successfully updated with the OEM.
56347
- */
56348
- updateFailed: 9,
56349
- /**
56350
- * Deployment has been updated but has not been deployed yet.
56351
- */
56352
- updated: 10,
56353
- unknownFutureValue: 11,
56354
- }
56355
-
56356
- /**
56357
- * The time of day for E-FOTA devices to download firmware.
56358
- */
56359
- enum fotaDownloadPeriodType {
56360
- /**
56361
- * Default. The firmware can be downloaded at any time of day.
56362
- */
56363
- any: 0,
56364
- /**
56365
- * The time of day for downloading firmware matches the firmware installation period set in 'graph.fotaDeploymentSetting' 'installRuleWindowStartTime' and 'installRuleWindowEndTime'.
56366
- */
56367
- matchFirmwareInstallPeriod: 1,
56368
- unknownFutureValue: 2,
56369
- }
56370
-
56371
- /**
56372
- * The FOTA deployment's firmware update type.
56373
- */
56374
- enum fotaFirmwareUpdateType {
56375
- /**
56376
- * Default. The FOTA deployment targets a custom firwmare version selected by the IT Admin.
56377
- */
56378
- custom: 0,
56379
- /**
56380
- * The FOTA deployment targets the latest major firmware version available. Latest may update the device to a new OS version. For eg. a device on Android 13 will update to the latest available version Android 14.
56381
- */
56382
- latestMajorVersion: 1,
56383
- /**
56384
- * The device always looks for the latest package available in the repo and tries to update whenever a new package is available. This continues until the admin cancels the auto update.
56385
- */
56386
- auto: 2,
56387
- /**
56388
- * The FOTA deployment targets the latest minor firmware version within a particular OS version. For eg. a device on Android 13 will update to the latest available minor version Android 13.x.
56389
- */
56390
- latestMinorVersion: 3,
56391
- /**
56392
- * The FOTA deployment targets locking the firmware to prevent any firmware from being installed on the devices.
56393
- */
56394
- locked: 4,
56395
- unknownFutureValue: 5,
56396
- }
56397
-
56398
- /**
56399
- * The device's network type required to download and install the FOTA update.
56400
- */
56401
- enum fotaNetworkType {
56402
- /**
56403
- * Default. The device will install the update regardless of current network type.
56404
- */
56405
- any: 0,
56406
- /**
56407
- * The device will install the update only when connected to a wifi network.
56408
- */
56409
- wifi: 1,
56410
- /**
56411
- * The device will install the update only when connected to a cellular network.
56412
- */
56413
- cellular: 2,
56414
- unknownFutureValue: 3,
56415
- }
56416
-
56417
- /**
56418
- * OEM (Original Equipment Manufacturer) type that have integrated with Intune's FOTA functionality. For example, a FOTA connector can have an OEM type as 'zebra' or 'samsung'. If not OEM type is assigned, the type defaults to 'unknown'
56419
- */
56420
- enum fotaOemType {
56421
- /**
56422
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Zebra.
56423
- */
56424
- zebra: 1,
56425
- /**
56426
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Samsung.
56427
- */
56428
- samsung: 2,
56429
- unknownFutureValue: 3,
56430
- }
56431
-
56432
- /**
56433
- * An error code indicating the failure reason, when a device failed to register for FOTA.
56434
- */
56435
- enum fotaRegistrationErrorCode {
56436
- /**
56437
- * This error indicates that no devices were found in the selected Entra security group(s) when registering for FOTA. E.g.: a user selects one or more security groups that doesn't include any devices.
56438
- */
56439
- noDevicesFoundInSelectedEntraGroups: 0,
56440
- /**
56441
- * This error indicates that no Intune managed devices were found in the selected Entra (Azure Active Directory - Azure AD) security groups when registering for FOTA. E.g.: a user selects a group that includes devices that are no longer managed in Intune.
56442
- */
56443
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
56444
- /**
56445
- * This error indicates that the external request to the OEM to register devices failed. The failure can be caused by a transient issue (e.g.: Network is down) or caused by a permanent server error.
56446
- */
56447
- fotaRegistrationRequestFailure: 2,
56448
- unknownFutureValue: 3,
56449
- }
56450
-
56451
56573
  /**
56452
56574
  * The overall state of the FOTA devices' registration. The registration state is determined by looking at the status of all devices. If any device has not yet started registration, the overall registration state becomes registration requested. If any device is still in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall registration state becomes completed.
56453
56575
  */
@@ -57877,6 +57999,13 @@ namespace reference.`microsoft.graph` {
57877
57999
  enabled: 1,
57878
58000
  }
57879
58001
 
58002
+ enum m365ResourceType {
58003
+ none: 0,
58004
+ group: 1,
58005
+ user: 2,
58006
+ unknownFutureValue: 3,
58007
+ }
58008
+
57880
58009
  /**
57881
58010
  * An enum representing the possible values of Android MAC Address Randomization Mode.
57882
58011
  */
@@ -60425,6 +60554,12 @@ namespace reference.`microsoft.graph` {
60425
60554
  radio: 9,
60426
60555
  }
60427
60556
 
60557
+ enum photoUpdateSource {
60558
+ cloud: 0,
60559
+ onPremises: 1,
60560
+ unknownFutureValue: 2,
60561
+ }
60562
+
60428
60563
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60429
60564
  enum physicalAddressType {
60430
60565
  `unknown`: 0,
@@ -62272,21 +62407,6 @@ namespace reference.`microsoft.graph` {
62272
62407
  moderate: 2,
62273
62408
  }
62274
62409
 
62275
- /**
62276
- * Represents various schedule modes for Samsung FOTA deployment.
62277
- */
62278
- enum samsungEFotaScheduleMode {
62279
- /**
62280
- * Schedule an update to be installed between start and end date time.
62281
- */
62282
- startAndEndDateSchedule: 0,
62283
- /**
62284
- * Schedule an update to be installed on or after start date time.
62285
- */
62286
- startDateOnlySchedule: 1,
62287
- unknownFutureValue: 2,
62288
- }
62289
-
62290
62410
  /**
62291
62411
  * Cancel or confirm scheduled retire
62292
62412
  */
@@ -63315,6 +63435,14 @@ namespace reference.`microsoft.graph` {
63315
63435
  unknownFutureValue: 3,
63316
63436
  }
63317
63437
 
63438
+ enum trafficRoutingMethod {
63439
+ none: 0,
63440
+ random: 1,
63441
+ sessionPersistence: 2,
63442
+ performance: 3,
63443
+ unknownFutureValue: 4,
63444
+ }
63445
+
63318
63446
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
63319
63447
  enum translationBehavior {
63320
63448
  Ask: 0,
@@ -64531,32 +64659,36 @@ namespace reference.`microsoft.graph` {
64531
64659
  /**
64532
64660
  * Wi-Fi Security Types.
64533
64661
  */
64534
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
64535
64662
  enum wiFiSecurityType {
64536
64663
  /**
64537
- * Open (No Authentication).
64664
+ * Default. Indicates Wi-Fi security type is associated with Open (No Authentication).
64538
64665
  */
64539
64666
  open: 0,
64540
64667
  /**
64541
- * WPA-Personal.
64668
+ * Indicates Wi-Fi security type is associated with WPA-Personal.
64542
64669
  */
64543
64670
  wpaPersonal: 1,
64544
64671
  /**
64545
- * WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
64672
+ * Indicates Wi-Fi security type is associated with WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
64546
64673
  */
64547
64674
  wpaEnterprise: 2,
64548
64675
  /**
64549
- * WEP Encryption.
64676
+ * Indicates Wi-Fi security type is associated with WEP Encryption.
64550
64677
  */
64551
64678
  wep: 3,
64552
64679
  /**
64553
- * WPA2-Personal.
64680
+ * Indicates Wi-Fi security type is associated with WPA2-Personal.
64554
64681
  */
64555
64682
  wpa2Personal: 4,
64556
64683
  /**
64557
- * WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
64684
+ * Indicates Wi-Fi security type is associated with WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
64558
64685
  */
64559
64686
  wpa2Enterprise: 5,
64687
+ unknownFutureValue: 6,
64688
+ /**
64689
+ * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
64690
+ */
64691
+ wpa3Personal: 7,
64560
64692
  }
64561
64693
 
64562
64694
  /**
@@ -65471,6 +65603,63 @@ namespace reference.`microsoft.graph` {
65471
65603
  unknownFutureValue: 3,
65472
65604
  }
65473
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
+
65474
65663
  /**
65475
65664
  * Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
65476
65665
  */
@@ -67155,6 +67344,7 @@ namespace reference.`microsoft.graph.cloudLicensing` {
67155
67344
  }
67156
67345
 
67157
67346
  }
67347
+ @privatePreviewDefinition("organizationalUnit", "2025-08-12", "2025-11-30", "<theOwner>")
67158
67348
  @publicNamespace("microsoft.graph.identitygovernance")
67159
67349
  namespace reference.`microsoft.graph.identityGovernance` {
67160
67350
  @complex model activateGroupScope extends activationScope {
@@ -67216,6 +67406,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
67216
67406
  valueType: valueType;
67217
67407
  }
67218
67408
 
67409
+ @complex model previewFailedTask {
67410
+ definitionId: string;
67411
+ failureReason: string;
67412
+ name: string;
67413
+ taskId: string;
67414
+ }
67415
+
67219
67416
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
67220
67417
  rule: string;
67221
67418
  }
@@ -67438,6 +67635,9 @@ namespace reference.`microsoft.graph.identityGovernance` {
67438
67635
  nextScheduleRunDateTime: offsetDateTime | null;
67439
67636
  version: int32 | null;
67440
67637
  @references executionScope: userProcessingResult[];
67638
+
67639
+ @privatePreview("organizationalUnit")
67640
+ @references previewScope: reference.`microsoft.graph`.directoryObject[];
67441
67641
  @contains runs: run[];
67442
67642
  @contains taskReports: taskReport[];
67443
67643
  @contains userProcessingResults: userProcessingResult[];
@@ -67534,6 +67734,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
67534
67734
  onDemand: 1,
67535
67735
  unknownFutureValue: 2,
67536
67736
  activatedWithScope: 3,
67737
+ @privatePreview("organizationalUnit")
67738
+ preview: 4,
67537
67739
  }
67538
67740
 
67539
67741
  enum workflowTriggerTimeBasedAttribute {