@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.10

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.
@@ -17,6 +17,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
17
17
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
18
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.")
19
19
  // Metadata item DeprecatedDefinition_identityProvider was already defined with a different value.
20
+ @deprecatedDefinition("Rv1MigrationDeprecation", "<ChangeLogCategory>", "2026-04-03", "2026-07-07", "This API is deprecated and will stop returning data on July 7, 2026. Use POST /deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport instead.")
21
+ // Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
20
22
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
21
23
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
22
24
  @deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
@@ -2201,6 +2203,20 @@ namespace reference.`microsoft.graph` {
2201
2203
  messageBodyContentType: chatMessageBodyContentType | null;
2202
2204
  }
2203
2205
 
2206
+ @complex model chatMessageCitation {
2207
+ excerpt: string | null;
2208
+ iconType: string | null;
2209
+ id: int32 | null;
2210
+ sensitivityLabel: chatMessageCitationSensitivityLabel | null;
2211
+ title: string | null;
2212
+ webUrl: string | null;
2213
+ }
2214
+
2215
+ @complex model chatMessageCitationSensitivityLabel {
2216
+ description: string | null;
2217
+ displayName: string | null;
2218
+ }
2219
+
2204
2220
  @open
2205
2221
  @complex model chatMessageFromIdentitySet extends identitySet {
2206
2222
  }
@@ -2730,6 +2746,20 @@ namespace reference.`microsoft.graph` {
2730
2746
  value: string | null;
2731
2747
  }
2732
2748
 
2749
+ /**
2750
+ * Represents an individual health check result for an NDES connector, containing the metric name and its current status.
2751
+ */
2752
+ @complex model connectorHealthCheck {
2753
+ /**
2754
+ * The name of the health check metric being evaluated.
2755
+ */
2756
+ metricName: connectorHealthCheckMetricName;
2757
+ /**
2758
+ * The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
2759
+ */
2760
+ status: ndesConnectorHealthStatus;
2761
+ }
2762
+
2733
2763
  /**
2734
2764
  * Represent connector status
2735
2765
  */
@@ -2824,6 +2854,10 @@ namespace reference.`microsoft.graph` {
2824
2854
  * Remote help - response we provide back to the helper after successfully creating an ACS session
2825
2855
  */
2826
2856
  @complex model createRemoteHelpSessionResponse {
2857
+ /**
2858
+ * The current state of session recording. Null when the tenant is not flighted for session recording.
2859
+ */
2860
+ remoteHelpRecordingState: remoteHelpRecordingState | null;
2827
2861
  /**
2828
2862
  * The unique identifier for a session
2829
2863
  */
@@ -3459,6 +3493,10 @@ namespace reference.`microsoft.graph` {
3459
3493
  * 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.
3460
3494
  */
3461
3495
  rulesContent: binary | null;
3496
+ /**
3497
+ * Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
3498
+ */
3499
+ runIntervalInMinutes: int32 | null;
3462
3500
  }
3463
3501
 
3464
3502
  /**
@@ -6888,10 +6926,18 @@ namespace reference.`microsoft.graph` {
6888
6926
  * When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
6889
6927
  */
6890
6928
  associatedDomainsDirectDownloadAllowed: boolean | null;
6929
+ cellularSliceConfigurationId: string | null;
6930
+ contentFilterConfigurationId: string | null;
6931
+ /**
6932
+ * The unique identifier of the DDM app configuration to associate with the app.
6933
+ */
6934
+ ddmAppConfigId: guid | null;
6935
+ dnsProxyConfigurationId: string | null;
6891
6936
  /**
6892
6937
  * When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
6893
6938
  */
6894
6939
  preventManagedAppBackup: boolean | null;
6940
+ relayConfigurationId: string | null;
6895
6941
  /**
6896
6942
  * When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
6897
6943
  */
@@ -6902,6 +6948,122 @@ namespace reference.`microsoft.graph` {
6902
6948
  vpnConfigurationId: string | null;
6903
6949
  }
6904
6950
 
6951
+ /**
6952
+ * Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
6953
+ */
6954
+ @complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
6955
+ /**
6956
+ * Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6957
+ */
6958
+ allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
6959
+ /**
6960
+ * Domain names to associate with the app
6961
+ */
6962
+ associatedDomains: string[] | null;
6963
+ /**
6964
+ * When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
6965
+ */
6966
+ associatedDomainsDirectDownloadAllowed: boolean | null;
6967
+ /**
6968
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6969
+ */
6970
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
6971
+ /**
6972
+ * The cellular slice identifier, which can be the data network name (DNN) or app category. For DNN, encode the value as 'DNN:name', where 'name' is the carrier-provided DNN name. For app category, encode the value as 'AppCategory:category', where 'category' is a carrier-provided string such as 'Enterprise1'.
6973
+ */
6974
+ cellularSliceConfigurationId: string | null;
6975
+ /**
6976
+ * The unique identifier of the content filter to associate with the app.
6977
+ */
6978
+ contentFilterConfigurationId: string | null;
6979
+ /**
6980
+ * The unique identifier of the DNS proxy to associate with the app.
6981
+ */
6982
+ dnsProxyConfigurationId: string | null;
6983
+ /**
6984
+ * When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
6985
+ */
6986
+ preventManagedAppBackup: boolean | null;
6987
+ /**
6988
+ * The unique identifier of the relay to associate with the app.
6989
+ */
6990
+ relayConfigurationId: string | null;
6991
+ /**
6992
+ * When true, the device locks its screen after every transaction that requires a customer's card PIN. When false, the user can choose the behavior. Default value is false.
6993
+ */
6994
+ tapToPayScreenLockEnabled: boolean | null;
6995
+ /**
6996
+ * Specifies the version of the Store app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version.
6997
+ */
6998
+ version: int32 | null;
6999
+ /**
7000
+ * The unique identifier of the VPN Configuration to apply to the app.
7001
+ */
7002
+ vpnConfigurationId: string | null;
7003
+ }
7004
+
7005
+ /**
7006
+ * Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
7007
+ */
7008
+ @complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
7009
+ /**
7010
+ * Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
7011
+ */
7012
+ allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
7013
+ /**
7014
+ * Domain names to associate with the app
7015
+ */
7016
+ associatedDomains: string[] | null;
7017
+ /**
7018
+ * When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
7019
+ */
7020
+ associatedDomainsDirectDownloadAllowed: boolean | null;
7021
+ /**
7022
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
7023
+ */
7024
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
7025
+ /**
7026
+ * The cellular slice identifier, which can be the data network name (DNN) or app category. For DNN, encode the value as 'DNN:name', where 'name' is the carrier-provided DNN name. For app category, encode the value as 'AppCategory:category', where 'category' is a carrier-provided string such as 'Enterprise1'.
7027
+ */
7028
+ cellularSliceConfigurationId: string | null;
7029
+ /**
7030
+ * The unique identifier of the content filter to associate with the app.
7031
+ */
7032
+ contentFilterConfigurationId: string | null;
7033
+ /**
7034
+ * The unique identifier of the DDM app configuration to associate with the app.
7035
+ */
7036
+ ddmAppConfigId: guid | null;
7037
+ /**
7038
+ * The unique identifier of the DNS proxy to associate with the app.
7039
+ */
7040
+ dnsProxyConfigurationId: string | null;
7041
+ /**
7042
+ * When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
7043
+ */
7044
+ preventManagedAppBackup: boolean | null;
7045
+ /**
7046
+ * The unique identifier of the relay to associate with the app.
7047
+ */
7048
+ relayConfigurationId: string | null;
7049
+ /**
7050
+ * When true, the device locks its screen after every transaction that requires a customer's card PIN. When false, the user can choose the behavior. Default value is false.
7051
+ */
7052
+ tapToPayScreenLockEnabled: boolean | null;
7053
+ /**
7054
+ * Whether or not to use device licensing.
7055
+ */
7056
+ useDeviceLicensing: boolean;
7057
+ /**
7058
+ * Specifies the version of the VPP app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version. This property maps to the Version key in Apple's AppManagedInstallBehaviorObject declaration.
7059
+ */
7060
+ version: int32 | null;
7061
+ /**
7062
+ * The unique identifier of the VPN Configuration to apply to the app.
7063
+ */
7064
+ vpnConfigurationId: string | null;
7065
+ }
7066
+
6905
7067
  /**
6906
7068
  * Contains properties of the possible iOS device types the mobile app can run on.
6907
7069
  */
@@ -8033,6 +8195,32 @@ namespace reference.`microsoft.graph` {
8033
8195
  teamIdentifier: string;
8034
8196
  }
8035
8197
 
8198
+ /**
8199
+ * Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
8200
+ */
8201
+ @complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
8202
+ /**
8203
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
8204
+ */
8205
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
8206
+ /**
8207
+ * The unique identifier of the DDM app configuration to associate with the app.
8208
+ */
8209
+ ddmAppConfigId: guid | null;
8210
+ /**
8211
+ * If true, the device installs an iOS or iPadOS app that runs on a Mac with Apple Silicon. This is only used when the app is a VPP app. Default is false.
8212
+ */
8213
+ isIosApp: boolean | null;
8214
+ /**
8215
+ * When TRUE, indicates that the app should be assigned using device licensing. When FALSE, indicates that the app should be assigned using user licensing. By default, this property is set to FALSE.
8216
+ */
8217
+ useDeviceLicensing: boolean;
8218
+ /**
8219
+ * Specifies the version of the VPP app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version. This property maps to the Version key in Apple's AppManagedInstallBehaviorObject declaration.
8220
+ */
8221
+ version: int32 | null;
8222
+ }
8223
+
8036
8224
  /**
8037
8225
  * Properties related to macOS-specific configured and Intune-managed local administrator account
8038
8226
  */
@@ -9474,8 +9662,26 @@ namespace reference.`microsoft.graph` {
9474
9662
  internalUrl: string | null;
9475
9663
  }
9476
9664
 
9665
+ @complex model onPremisesCurrentExportData {
9666
+ clientMachineName: string | null;
9667
+ pendingObjectsAddition: int32 | null;
9668
+ pendingObjectsDeletion: int32 | null;
9669
+ pendingObjectsUpdate: int32 | null;
9670
+ serviceAccount: string | null;
9671
+ successfulLinksProvisioningCount: int64 | null;
9672
+ successfulObjectsProvisioningCount: int32 | null;
9673
+ totalConnectorSpaceObjects: int32 | null;
9674
+ }
9675
+
9477
9676
  @complex model onPremisesDirectorySynchronizationConfiguration {
9478
9677
  accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
9678
+ anchorAttribute: string | null;
9679
+ applicationId: string | null;
9680
+ currentExportData: onPremisesCurrentExportData | null;
9681
+ customerRequestedSynchronizationInterval: duration | null;
9682
+ synchronizationClientVersion: string | null;
9683
+ synchronizationInterval: duration | null;
9684
+ writebackConfiguration: onPremisesWritebackConfiguration | null;
9479
9685
  }
9480
9686
 
9481
9687
  @complex model onPremisesDirectorySynchronizationFeature {
@@ -9562,6 +9768,11 @@ namespace reference.`microsoft.graph` {
9562
9768
  SingleSignOnMode: singleSignOnMode | null;
9563
9769
  }
9564
9770
 
9771
+ @complex model onPremisesWritebackConfiguration {
9772
+ unifiedGroupContainer: string | null;
9773
+ userContainer: string | null;
9774
+ }
9775
+
9565
9776
  @complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
9566
9777
  configuration: customExtensionOverwriteConfiguration | null;
9567
9778
  @references customExtension: onTokenIssuanceStartCustomExtension | null;
@@ -15547,6 +15758,9 @@ namespace reference.`microsoft.graph` {
15547
15758
  @entity model agentIdentity extends servicePrincipal {
15548
15759
  agentIdentityBlueprintId: string;
15549
15760
  @computed createdDateTime: offsetDateTime | null;
15761
+ managerApplications: guid;
15762
+ @references inheritedAppRoleAssignments: appRoleAssignment[];
15763
+ @references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
15550
15764
  @references sponsors: directoryObject[];
15551
15765
  }
15552
15766
 
@@ -15558,6 +15772,7 @@ namespace reference.`microsoft.graph` {
15558
15772
 
15559
15773
  @open
15560
15774
  @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
15775
+ managerApplications: guid;
15561
15776
  @references sponsors: directoryObject[];
15562
15777
  }
15563
15778
 
@@ -18148,6 +18363,10 @@ namespace reference.`microsoft.graph` {
18148
18363
  * Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
18149
18364
  */
18150
18365
  appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
18366
+ /**
18367
+ * Defines a managed app behavior, either warn, block, or wipe, if Developer Options are enabled on the Android device. If the admin does not set this action, the default is null, which indicates this setting is not configured.
18368
+ */
18369
+ appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
18151
18370
  /**
18152
18371
  * Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
18153
18372
  */
@@ -19850,10 +20069,18 @@ namespace reference.`microsoft.graph` {
19850
20069
  * Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
19851
20070
  */
19852
20071
  excludedDomains: string[] | null;
20072
+ /**
20073
+ * Indicates whether local network traffic is excluded from the VPN tunnel. When TRUE, local network traffic bypasses the VPN tunnel. Default value is null. Only takes effect when includeAllNetworks is TRUE or enforceVpnRouting is TRUE. Not applicable when enablePerApp is TRUE.
20074
+ */
20075
+ excludeLocalNetworks: boolean | null;
19853
20076
  /**
19854
20077
  * Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin
19855
20078
  */
19856
20079
  identifier: string | null;
20080
+ /**
20081
+ * Indicates whether most network traffic is routed through the VPN tunnel. When TRUE, most network traffic is sent through the VPN tunnel. Default value is null. Not applicable when enablePerApp is TRUE.
20082
+ */
20083
+ includeAllNetworks: boolean | null;
19857
20084
  /**
19858
20085
  * Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
19859
20086
  */
@@ -20686,11 +20913,13 @@ namespace reference.`microsoft.graph` {
20686
20913
  body: chatMessageBody;
20687
20914
  channelIdentity: channelIdentity | null;
20688
20915
  chatId: string | null;
20916
+ citations: chatMessageCitation[] | null;
20689
20917
  @computed createdDateTime: offsetDateTime | null;
20690
20918
  deletedDateTime: offsetDateTime | null;
20691
20919
  etag: string | null;
20692
20920
  eventDetail: eventMessageDetail | null;
20693
20921
  from: chatMessageFromIdentitySet | null;
20922
+ hasReplies: boolean;
20694
20923
  importance: chatMessageImportance;
20695
20924
  @computed lastEditedDateTime: offsetDateTime | null;
20696
20925
  @computed lastModifiedDateTime: offsetDateTime | null;
@@ -23173,7 +23402,7 @@ namespace reference.`microsoft.graph` {
23173
23402
  */
23174
23403
  @computed lastModifiedDateTime: offsetDateTime;
23175
23404
  /**
23176
- * Indicates the operating system platform type that this compliance script targets.
23405
+ * Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
23177
23406
  */
23178
23407
  platform: deviceComplianceScriptPlatformType | null;
23179
23408
  /**
@@ -23185,7 +23414,7 @@ namespace reference.`microsoft.graph` {
23185
23414
  */
23186
23415
  roleScopeTagIds: string[] | null;
23187
23416
  /**
23188
- * Specifies whether the PowerShell script runs in 32-bit mode. When set to true, the script runs in a 32-bit PowerShell host. Default is false.
23417
+ * Indicate whether PowerShell script(s) should run as 32-bit
23189
23418
  */
23190
23419
  runAs32Bit: boolean;
23191
23420
  /**
@@ -23699,6 +23928,7 @@ namespace reference.`microsoft.graph` {
23699
23928
  successCount: int32;
23700
23929
  }
23701
23930
 
23931
+ @graphDeprecated("Rv1MigrationDeprecation")
23702
23932
  @entity model deviceConfigurationUserStateSummary extends entity {
23703
23933
  /**
23704
23934
  * Number of compliant users
@@ -24669,6 +24899,8 @@ namespace reference.`microsoft.graph` {
24669
24899
  /**
24670
24900
  * The device configuration user state summary for this account.
24671
24901
  */
24902
+
24903
+ @graphDeprecated("Rv1MigrationDeprecation")
24672
24904
  @contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
24673
24905
  /**
24674
24906
  * The list of device custom attribute shell scripts associated with the tenant.
@@ -30967,6 +31199,7 @@ namespace reference.`microsoft.graph` {
30967
31199
  * Contains properties and inherited properties for iOS store apps.
30968
31200
  */
30969
31201
  @entity model iosStoreApp extends mobileApp {
31202
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
30970
31203
  /**
30971
31204
  * The iOS architecture for which this app can run on.
30972
31205
  */
@@ -31134,6 +31367,7 @@ namespace reference.`microsoft.graph` {
31134
31367
  * Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
31135
31368
  */
31136
31369
  @entity model iosVppApp extends mobileApp {
31370
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
31137
31371
  /**
31138
31372
  * The applicable iOS Device Type.
31139
31373
  */
@@ -32786,6 +33020,10 @@ namespace reference.`microsoft.graph` {
32786
33020
  * Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
32787
33021
  */
32788
33022
  @entity model macOsVppApp extends mobileApp {
33023
+ /**
33024
+ * The protocol used to deliver the app to the apple device(s). When the property is set to Declarative Device Management (DDM) protocol ('declarativeDeviceManagement') then it can no longer be modified or updated to 'mobileDeviceManagement' or 'default'. Default value is: 'default' which indicates Apple MDM protocol.
33025
+ */
33026
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
32789
33027
  /**
32790
33028
  * The store URL.
32791
33029
  */
@@ -32924,6 +33162,10 @@ namespace reference.`microsoft.graph` {
32924
33162
  * This is the name of the Wi-Fi network that is broadcast to all devices.
32925
33163
  */
32926
33164
  ssid: string;
33165
+ /**
33166
+ * Indicates whether devices connecting with this Wi-Fi profile must use their physical MAC address instead of a randomized MAC address. When TRUE, it uses the actual Wi-Fi MAC address. When FALSE, it enables the MAC address randomization. Applies to macOS 15 and later. Default is null.
33167
+ */
33168
+ wifiRequirePhysicalMacAddressEnabled: boolean | null;
32927
33169
  /**
32928
33170
  * Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
32929
33171
  */
@@ -33946,6 +34188,8 @@ namespace reference.`microsoft.graph` {
33946
34188
  /**
33947
34189
  * Security baseline states for this device.
33948
34190
  */
34191
+
34192
+ @graphDeprecated("Rv1MigrationDeprecation")
33949
34193
  @contains securityBaselineStates: securityBaselineState[];
33950
34194
  /**
33951
34195
  * The primary users associated with the managed device.
@@ -35210,6 +35454,10 @@ namespace reference.`microsoft.graph` {
35210
35454
  * Indicates the size of the file after encryption, in bytes.
35211
35455
  */
35212
35456
  sizeEncrypted: int64;
35457
+ /**
35458
+ * Indicates optional error details when uploadState is indicating an error. For example, when uploadState has commitFileFailed value, this field may have the error code of apkIsInvalid. Read-only.
35459
+ */
35460
+ uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
35213
35461
  /**
35214
35462
  * Indicates the state of the current upload request. Possible values are: success, transientError, error, unknown, azureStorageUriRequestSuccess, azureStorageUriRequestPending, azureStorageUriRequestFailed, azureStorageUriRequestTimedOut, azureStorageUriRenewalSuccess, azureStorageUriRenewalPending, azureStorageUriRenewalFailed, azureStorageUriRenewalTimedOut, commitFileSuccess, commitFilePending, commitFileFailed, commitFileTimedOut. Default value is success. This property is read-only.
35215
35463
  */
@@ -35682,6 +35930,14 @@ namespace reference.`microsoft.graph` {
35682
35930
  * Timestamp when on-prem certificate connector was enrolled in Intune.
35683
35931
  */
35684
35932
  enrolledDateTime: offsetDateTime;
35933
+ /**
35934
+ * The collection of individual health check results for this connector. Each entry represents an independent health metric with its current status. Empty when the connector is disconnected or when health has not been evaluated yet. Read-only.
35935
+ */
35936
+ healthChecks: connectorHealthCheck[] | null;
35937
+ /**
35938
+ * The overall health status of the connector, representing the worst status across all individual health checks. This value is pre-computed on each connector upload and may be overridden to disconnected at read time if the connector has not connected recently. Read-only.
35939
+ */
35940
+ healthStatus: ndesConnectorHealthStatus | null;
35685
35941
  /**
35686
35942
  * Last connection time for the Ndes Connector
35687
35943
  */
@@ -37546,6 +37802,8 @@ namespace reference.`microsoft.graph` {
37546
37802
  /**
37547
37803
  * The security baseline per category compliance state summary for the security baseline of the account.
37548
37804
  */
37805
+ @graphDeprecated("Rv1MigrationDeprecation")
37806
+ @graphDeprecated("Rv1MigrationDeprecation")
37549
37807
  @entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
37550
37808
  /**
37551
37809
  * The category name
@@ -37556,6 +37814,7 @@ namespace reference.`microsoft.graph` {
37556
37814
  /**
37557
37815
  * The security baseline compliance state summary of the security baseline for a device.
37558
37816
  */
37817
+ @graphDeprecated("Rv1MigrationDeprecation")
37559
37818
  @entity model securityBaselineDeviceState extends entity {
37560
37819
  /**
37561
37820
  * Display name of the device
@@ -37582,6 +37841,7 @@ namespace reference.`microsoft.graph` {
37582
37841
  /**
37583
37842
  * The security baseline compliance state of a setting for a device
37584
37843
  */
37844
+ @graphDeprecated("Rv1MigrationDeprecation")
37585
37845
  @entity model securityBaselineSettingState extends entity {
37586
37846
  /**
37587
37847
  * The policies that contribute to this setting instance
@@ -37620,6 +37880,7 @@ namespace reference.`microsoft.graph` {
37620
37880
  /**
37621
37881
  * Security baseline state for a device.
37622
37882
  */
37883
+ @graphDeprecated("Rv1MigrationDeprecation")
37623
37884
  @entity model securityBaselineState extends entity {
37624
37885
  /**
37625
37886
  * The display name of the security baseline
@@ -37640,12 +37901,15 @@ namespace reference.`microsoft.graph` {
37640
37901
  /**
37641
37902
  * The security baseline state for different settings for a device
37642
37903
  */
37904
+
37905
+ @graphDeprecated("Rv1MigrationDeprecation")
37643
37906
  @contains settingStates: securityBaselineSettingState[];
37644
37907
  }
37645
37908
 
37646
37909
  /**
37647
37910
  * The security baseline compliance state summary for the security baseline of the account.
37648
37911
  */
37912
+ @graphDeprecated("Rv1MigrationDeprecation")
37649
37913
  @entity model securityBaselineStateSummary extends entity {
37650
37914
  /**
37651
37915
  * Number of conflict devices
@@ -37680,14 +37944,20 @@ namespace reference.`microsoft.graph` {
37680
37944
  /**
37681
37945
  * The security baseline per category device state summary
37682
37946
  */
37947
+
37948
+ @graphDeprecated("Rv1MigrationDeprecation")
37683
37949
  @contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
37684
37950
  /**
37685
37951
  * The security baseline device states
37686
37952
  */
37953
+
37954
+ @graphDeprecated("Rv1MigrationDeprecation")
37687
37955
  @contains deviceStates: securityBaselineDeviceState[];
37688
37956
  /**
37689
37957
  * The security baseline device state summary
37690
37958
  */
37959
+
37960
+ @graphDeprecated("Rv1MigrationDeprecation")
37691
37961
  @contains deviceStateSummary: securityBaselineStateSummary | null;
37692
37962
  }
37693
37963
 
@@ -46468,7 +46738,11 @@ namespace reference.`microsoft.graph` {
46468
46738
  */
46469
46739
  @entity model windowsManagedAppProtection extends managedAppPolicy {
46470
46740
  /**
46471
- * Indicates the sources from which data is allowed to be transferred. Some possible values are allApps or none.
46741
+ * When allowedInboundDataTransferSources is set to selectedApps, this property indicates the location from which data is allowed to be received into the org context. Data from the selected source will be treated as org data and subject to Intune app protection policy.
46742
+ */
46743
+ allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
46744
+ /**
46745
+ * Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
46472
46746
  */
46473
46747
  allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
46474
46748
  /**
@@ -46476,7 +46750,11 @@ namespace reference.`microsoft.graph` {
46476
46750
  */
46477
46751
  allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
46478
46752
  /**
46479
- * Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps or none.
46753
+ * When allowedOutboundDataTransferDestinations is set to selectedApps, this property indicates the location to which org data is allowed to be transferred. Data shared with the selected destination is not protected by Intune app protection policy.
46754
+ */
46755
+ allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
46756
+ /**
46757
+ * Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
46480
46758
  */
46481
46759
  allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
46482
46760
  /**
@@ -49512,18 +49790,6 @@ namespace reference.`microsoft.graph` {
49512
49790
  */
49513
49791
  wpaPersonal: 4,
49514
49792
  unknownFutureValue: 5,
49515
- /**
49516
- * Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
49517
- */
49518
- wpa2Personal: 6,
49519
- /**
49520
- * Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
49521
- */
49522
- wpa3Personal: 7,
49523
- /**
49524
- * Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
49525
- */
49526
- wpa3Enterprise: 8,
49527
49793
  }
49528
49794
 
49529
49795
  /**
@@ -49698,22 +49964,6 @@ namespace reference.`microsoft.graph` {
49698
49964
  */
49699
49965
  wpaEnterprise: 4,
49700
49966
  unknownFutureValue: 5,
49701
- /**
49702
- * Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
49703
- */
49704
- wpa2Personal: 6,
49705
- /**
49706
- * Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
49707
- */
49708
- wpa2Enterprise: 7,
49709
- /**
49710
- * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
49711
- */
49712
- wpa3Personal: 8,
49713
- /**
49714
- * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
49715
- */
49716
- wpa3Enterprise: 9,
49717
49967
  }
49718
49968
 
49719
49969
  /**
@@ -51922,6 +52172,29 @@ namespace reference.`microsoft.graph` {
51922
52172
  applicationProxy: 0,
51923
52173
  }
51924
52174
 
52175
+ /**
52176
+ * The name of the health check metric being evaluated for an NDES connector.
52177
+ */
52178
+ enum connectorHealthCheckMetricName {
52179
+ /**
52180
+ * Measures connectivity between the connector and the Certificate Authority.
52181
+ */
52182
+ caConnectivity: 0,
52183
+ /**
52184
+ * Measures whether the connector has the required Enroll permission on the certificate template for issuance.
52185
+ */
52186
+ caIssuancePermissions: 1,
52187
+ /**
52188
+ * Measures whether the connector has the required permissions to revoke certificates on the CA.
52189
+ */
52190
+ caRevocationPermissions: 2,
52191
+ /**
52192
+ * Measures whether the configured certificate template is valid and accessible.
52193
+ */
52194
+ certificateTemplate: 3,
52195
+ unknownFutureValue: 4,
52196
+ }
52197
+
51925
52198
  /**
51926
52199
  * Connector health state for connector status
51927
52200
  */
@@ -52163,6 +52436,44 @@ namespace reference.`microsoft.graph` {
52163
52436
  saturday: 6,
52164
52437
  }
52165
52438
 
52439
+ /**
52440
+ * Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
52441
+ */
52442
+ enum ddmAppAllowDownloadsOverCellular {
52443
+ /**
52444
+ * The device downloads apps of any size using a cellular network.
52445
+ */
52446
+ alwaysOn: 0,
52447
+ /**
52448
+ * The device doesn't download apps using a cellular network. The device pauses the automatic install or update operation until a different network is active.
52449
+ */
52450
+ alwaysOff: 1,
52451
+ /**
52452
+ * The device uses the settings for the corresponding store when downloading apps.
52453
+ */
52454
+ storeSettings: 2,
52455
+ unknownFutureValue: 3,
52456
+ }
52457
+
52458
+ /**
52459
+ * Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
52460
+ */
52461
+ enum ddmAppAutomaticAppUpdates {
52462
+ /**
52463
+ * The device automatically updates the app to the latest version.
52464
+ */
52465
+ alwaysOn: 0,
52466
+ /**
52467
+ * The device never automatically updates the app.
52468
+ */
52469
+ alwaysOff: 1,
52470
+ /**
52471
+ * The device uses the settings for the corresponding store to determine when to automatically update the app.
52472
+ */
52473
+ storeSettings: 2,
52474
+ unknownFutureValue: 3,
52475
+ }
52476
+
52166
52477
  @graphFlags
52167
52478
  enum decisionItemPrincipalResourceMembershipType {
52168
52479
  direct: 1,
@@ -54281,6 +54592,10 @@ namespace reference.`microsoft.graph` {
54281
54592
  * Indicates the settings that can be deployed through the Android channel.
54282
54593
  */
54283
54594
  android: 65536,
54595
+ /**
54596
+ * Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
54597
+ */
54598
+ intuneOpenExtensibility: 131072,
54284
54599
  }
54285
54600
 
54286
54601
  /**
@@ -56559,6 +56874,176 @@ namespace reference.`microsoft.graph` {
56559
56874
  IgnoreLookupReferenceResolutionFailure: 2,
56560
56875
  }
56561
56876
 
56877
+ /**
56878
+ * Indicates the detailed error condition for an eSIM profile operation.
56879
+ */
56880
+ enum eSimProfileErrorDetail {
56881
+ /**
56882
+ * No error.
56883
+ */
56884
+ none: 0,
56885
+ /**
56886
+ * The eSIM card encountered a general failure.
56887
+ */
56888
+ cardGeneralFailure: 1,
56889
+ /**
56890
+ * The confirmation code provided was incorrect.
56891
+ */
56892
+ confirmationCodeIncorrect: 2,
56893
+ /**
56894
+ * The confirmation code was missing.
56895
+ */
56896
+ confirmationCodeMissing: 3,
56897
+ /**
56898
+ * The maximum number of retries for the confirmation code was exceeded.
56899
+ */
56900
+ confirmationCodeMaxRetriesExceeded: 4,
56901
+ /**
56902
+ * The operation is forbidden by policy.
56903
+ */
56904
+ forbiddenByPolicy: 5,
56905
+ /**
56906
+ * The matching ID provided was invalid.
56907
+ */
56908
+ invalidMatchingId: 6,
56909
+ /**
56910
+ * No eligible eSIM profile was found for this device.
56911
+ */
56912
+ noEligibleProfileForThisDevice: 7,
56913
+ /**
56914
+ * There was not enough space on the eSIM card.
56915
+ */
56916
+ notEnoughSpaceOnCard: 8,
56917
+ /**
56918
+ * The operation was aborted.
56919
+ */
56920
+ operationAborted: 9,
56921
+ /**
56922
+ * The eSIM profile EID did not match the device.
56923
+ */
56924
+ profileEidMismatch: 10,
56925
+ /**
56926
+ * The eSIM profile is not available for a new binding.
56927
+ */
56928
+ profileNotAvailableForNewBinding: 11,
56929
+ /**
56930
+ * The eSIM profile has not been released by the operator.
56931
+ */
56932
+ profileNotReleasedByOperator: 12,
56933
+ /**
56934
+ * The remote server encountered a general failure.
56935
+ */
56936
+ remoteServerGeneralFailure: 13,
56937
+ /**
56938
+ * The remote server was unreachable.
56939
+ */
56940
+ remoteServerUnreachable: 14,
56941
+ /**
56942
+ * A timeout occurred while waiting for user consent.
56943
+ */
56944
+ timeoutWaitingForUserConsent: 15,
56945
+ /**
56946
+ * The operation is prohibited by the eSIM profile class.
56947
+ */
56948
+ operationProhibitedByProfileClass: 16,
56949
+ /**
56950
+ * The provisioning profile is not present.
56951
+ */
56952
+ provisioningProfileNotPresent: 17,
56953
+ /**
56954
+ * There is no corresponding request for this operation.
56955
+ */
56956
+ noCorrespondingRequest: 18,
56957
+ /**
56958
+ * A timeout occurred while waiting for a response.
56959
+ */
56960
+ timeoutWaitingForResponse: 19,
56961
+ /**
56962
+ * The ICCID already exists on the device.
56963
+ */
56964
+ iccidAlreadyExists: 20,
56965
+ /**
56966
+ * An error occurred while processing the eSIM profile.
56967
+ */
56968
+ profileProcessingError: 21,
56969
+ /**
56970
+ * The remote server is not trusted.
56971
+ */
56972
+ remoteServerNotTrusted: 22,
56973
+ /**
56974
+ * The maximum number of retries for profile download was exceeded.
56975
+ */
56976
+ profileDownloadMaxRetriesExceeded: 23,
56977
+ /**
56978
+ * The WinHTTP name could not be resolved.
56979
+ */
56980
+ winhttpNameNotResolved: 24,
56981
+ /**
56982
+ * The WinHTTP operation was cancelled.
56983
+ */
56984
+ winhttpOperationCancelled: 25,
56985
+ /**
56986
+ * The status is unspecified.
56987
+ */
56988
+ statusUnspecified: 26,
56989
+ /**
56990
+ * The operation is in progress.
56991
+ */
56992
+ inProgress: 27,
56993
+ /**
56994
+ * The operation is pending user action.
56995
+ */
56996
+ pendingUserAction: 28,
56997
+ /**
56998
+ * An error occurred while setup was in progress.
56999
+ */
57000
+ errorSetupInProgress: 29,
57001
+ /**
57002
+ * The user denied the operation.
57003
+ */
57004
+ errorUserDenied: 30,
57005
+ /**
57006
+ * An internal error occurred.
57007
+ */
57008
+ internalError: 31,
57009
+ /**
57010
+ * The ICCID was not found.
57011
+ */
57012
+ errorIccIdNotFound: 32,
57013
+ /**
57014
+ * Multiple active eSIMs are present but no slot is available.
57015
+ */
57016
+ errorMultipleActiveEsimsNoAvailableSlot: 33,
57017
+ unknownFutureValue: 34,
57018
+ }
57019
+
57020
+ /**
57021
+ * Indicates the state of an eSIM profile on a managed device.
57022
+ */
57023
+ enum eSimProfileState {
57024
+ /**
57025
+ * Unknown state.
57026
+ */
57027
+ `unknown`: 0,
57028
+ /**
57029
+ * The eSIM profile is being installed.
57030
+ */
57031
+ installing: 1,
57032
+ /**
57033
+ * The eSIM profile has been successfully installed.
57034
+ */
57035
+ installed: 2,
57036
+ /**
57037
+ * The eSIM profile is being deleted.
57038
+ */
57039
+ deleting: 3,
57040
+ /**
57041
+ * An error occurred while processing the eSIM profile.
57042
+ */
57043
+ error: 4,
57044
+ unknownFutureValue: 5,
57045
+ }
57046
+
56562
57047
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
56563
57048
  enum eventType {
56564
57049
  singleInstance: 0,
@@ -59896,6 +60381,22 @@ namespace reference.`microsoft.graph` {
59896
60381
  userRequestedInstall: 5,
59897
60382
  }
59898
60383
 
60384
+ /**
60385
+ * Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
60386
+ */
60387
+ enum mobileAppContentFileUploadErrorCode {
60388
+ apkIsInvalid: 1,
60389
+ apkIsMissingSignerCertificates: 2,
60390
+ apkHasInvalidPackageName: 3,
60391
+ apkPackageNameMismatch: 4,
60392
+ apkHasInvalidVersionCode: 5,
60393
+ apkHasVersionCodeMismatch: 6,
60394
+ apkHasInvalidMinSdk: 7,
60395
+ apkMinSdkMismatch: 8,
60396
+ apkVersionNameMismatch: 9,
60397
+ unknownFutureValue: 10,
60398
+ }
60399
+
59899
60400
  /**
59900
60401
  * Contains properties for upload request states.
59901
60402
  */
@@ -60104,6 +60605,33 @@ namespace reference.`microsoft.graph` {
60104
60605
  WriteOnly: 3,
60105
60606
  }
60106
60607
 
60608
+ /**
60609
+ * The health status of an NDES connector or individual health check metric.
60610
+ */
60611
+ enum ndesConnectorHealthStatus {
60612
+ /**
60613
+ * Health has not been evaluated yet for this connector.
60614
+ */
60615
+ `unknown`: 0,
60616
+ /**
60617
+ * All health checks are passing. Error rates are below the attention threshold for all metrics.
60618
+ */
60619
+ noActionRequired: 1,
60620
+ /**
60621
+ * One or more health checks have error rates between the attention and action thresholds.
60622
+ */
60623
+ attentionRequired: 2,
60624
+ /**
60625
+ * One or more health checks have error rates above the action threshold. Investigation is required.
60626
+ */
60627
+ actionRequired: 3,
60628
+ /**
60629
+ * The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
60630
+ */
60631
+ disconnected: 4,
60632
+ unknownFutureValue: 5,
60633
+ }
60634
+
60107
60635
  /**
60108
60636
  * The current status of the Ndes Connector.
60109
60637
  */
@@ -62244,6 +62772,14 @@ namespace reference.`microsoft.graph` {
62244
62772
  * Indicates remote device action to restore the Managed Home Screen kiosk app.
62245
62773
  */
62246
62774
  restoreManagedHomeScreen: 42,
62775
+ /**
62776
+ * Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
62777
+ */
62778
+ triggerEnhancedLogCollection: 44,
62779
+ /**
62780
+ * Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
62781
+ */
62782
+ cancelEnhancedLogCollection: 45,
62247
62783
  }
62248
62784
 
62249
62785
  /**
@@ -62280,6 +62816,25 @@ namespace reference.`microsoft.graph` {
62280
62816
  enabled: 2,
62281
62817
  }
62282
62818
 
62819
+ /**
62820
+ * Enumeration indicating the state of session recording
62821
+ */
62822
+ enum remoteHelpRecordingState {
62823
+ /**
62824
+ * Recording is not enabled for this session.
62825
+ */
62826
+ notEnabled: 0,
62827
+ /**
62828
+ * Recording is in progress.
62829
+ */
62830
+ recording: 1,
62831
+ /**
62832
+ * Recording failed.
62833
+ */
62834
+ failed: 2,
62835
+ unknownFutureValue: 3,
62836
+ }
62837
+
62283
62838
  enum replyRestriction {
62284
62839
  everyone: 0,
62285
62840
  authorAndModerators: 1,
@@ -62541,6 +63096,10 @@ namespace reference.`microsoft.graph` {
62541
63096
  * App was removed in order to install a superseding app.
62542
63097
  */
62543
63098
  appRemovedBySupersedence: 3005,
63099
+ /**
63100
+ * App cannot be installed. One or more of the application's dependencies are in use.
63101
+ */
63102
+ dependencyAppInUse: 3006,
62544
63103
  /**
62545
63104
  * Application failed to uninstall. See error code property for more details.
62546
63105
  */
@@ -62557,6 +63116,18 @@ namespace reference.`microsoft.graph` {
62557
63116
  * Application content was downloaded to the device.
62558
63117
  */
62559
63118
  contentDownloaded: 5002,
63119
+ /**
63120
+ * App enforcement is pending because the app is currently in use.
63121
+ */
63122
+ inUse: 5005,
63123
+ /**
63124
+ * App enforcement was deferred by the user because the app is currently in use.
63125
+ */
63126
+ deferred: 5006,
63127
+ /**
63128
+ * App enforcement was automatically deferred because the app is currently in use and a user response was not available.
63129
+ */
63130
+ autoDeferred: 5007,
62560
63131
  }
62561
63132
 
62562
63133
  enum riskDetail {
@@ -65041,10 +65612,6 @@ namespace reference.`microsoft.graph` {
65041
65612
  * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
65042
65613
  */
65043
65614
  wpa3Personal: 7,
65044
- /**
65045
- * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
65046
- */
65047
- wpa3Enterprise: 8,
65048
65615
  }
65049
65616
 
65050
65617
  /**
@@ -65476,6 +66043,7 @@ namespace reference.`microsoft.graph` {
65476
66043
  /**
65477
66044
  * Contains rule types for Win32 LOB apps.
65478
66045
  */
66046
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
65479
66047
  enum win32LobAppRuleType {
65480
66048
  /**
65481
66049
  * Detection rule.
@@ -65485,11 +66053,6 @@ namespace reference.`microsoft.graph` {
65485
66053
  * Requirement rule.
65486
66054
  */
65487
66055
  requirement: 1,
65488
- /**
65489
- * Indicates that the associated rule represents an executable for app in-use detection.
65490
- */
65491
- inUse: 2,
65492
- unknownFutureValue: 3,
65493
66056
  }
65494
66057
 
65495
66058
  /**
@@ -66925,7 +67488,6 @@ namespace reference.`microsoft.graph` {
66925
67488
  /**
66926
67489
  * Data can be transferred from/to these classes of apps
66927
67490
  */
66928
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
66929
67491
  enum windowsManagedAppDataTransferLevel {
66930
67492
  /**
66931
67493
  * All apps.
@@ -66935,6 +67497,27 @@ namespace reference.`microsoft.graph` {
66935
67497
  * No apps.
66936
67498
  */
66937
67499
  none: 1,
67500
+ /**
67501
+ * Selected apps only. Allowed locations are specified by the child property.
67502
+ */
67503
+ selectedApps: 2,
67504
+ unknownFutureValue: 3,
67505
+ }
67506
+
67507
+ /**
67508
+ * Windows MAM data transfer locations
67509
+ */
67510
+ @graphFlags
67511
+ enum windowsManagedAppDataTransferLocations {
67512
+ /**
67513
+ * No locations selected.
67514
+ */
67515
+ none: 0,
67516
+ /**
67517
+ * OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
67518
+ */
67519
+ oneDriveForBusiness: 1,
67520
+ unknownFutureValue: 2,
66938
67521
  }
66939
67522
 
66940
67523
  /**