@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.
@@ -18,6 +18,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
18
18
  @privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
19
19
  @deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
20
20
  @deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
21
+ @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.")
22
+ // Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
21
23
  @deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
22
24
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
23
25
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
@@ -2135,6 +2137,20 @@ namespace reference.`microsoft.graph` {
2135
2137
  value: string | null;
2136
2138
  }
2137
2139
 
2140
+ /**
2141
+ * Represents an individual health check result for an NDES connector, containing the metric name and its current status.
2142
+ */
2143
+ @complex model connectorHealthCheck {
2144
+ /**
2145
+ * The name of the health check metric being evaluated.
2146
+ */
2147
+ metricName: connectorHealthCheckMetricName;
2148
+ /**
2149
+ * The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
2150
+ */
2151
+ status: ndesConnectorHealthStatus;
2152
+ }
2153
+
2138
2154
  /**
2139
2155
  * Represent connector status
2140
2156
  */
@@ -2230,6 +2246,10 @@ namespace reference.`microsoft.graph` {
2230
2246
  * Remote help - response we provide back to the helper after successfully creating an ACS session
2231
2247
  */
2232
2248
  @complex model createRemoteHelpSessionResponse {
2249
+ /**
2250
+ * The current state of session recording. Null when the tenant is not flighted for session recording.
2251
+ */
2252
+ remoteHelpRecordingState: remoteHelpRecordingState | null;
2233
2253
  /**
2234
2254
  * The unique identifier for a session
2235
2255
  */
@@ -2789,6 +2809,10 @@ namespace reference.`microsoft.graph` {
2789
2809
  * 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.
2790
2810
  */
2791
2811
  rulesContent: binary | null;
2812
+ /**
2813
+ * Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
2814
+ */
2815
+ runIntervalInMinutes: int32 | null;
2792
2816
  }
2793
2817
 
2794
2818
  /**
@@ -6143,10 +6167,18 @@ namespace reference.`microsoft.graph` {
6143
6167
  * 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.
6144
6168
  */
6145
6169
  associatedDomainsDirectDownloadAllowed: boolean | null;
6170
+ cellularSliceConfigurationId: string | null;
6171
+ contentFilterConfigurationId: string | null;
6172
+ /**
6173
+ * The unique identifier of the DDM app configuration to associate with the app.
6174
+ */
6175
+ ddmAppConfigId: guid | null;
6176
+ dnsProxyConfigurationId: string | null;
6146
6177
  /**
6147
6178
  * 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.
6148
6179
  */
6149
6180
  preventManagedAppBackup: boolean | null;
6181
+ relayConfigurationId: string | null;
6150
6182
  /**
6151
6183
  * 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.
6152
6184
  */
@@ -6157,6 +6189,122 @@ namespace reference.`microsoft.graph` {
6157
6189
  vpnConfigurationId: string | null;
6158
6190
  }
6159
6191
 
6192
+ /**
6193
+ * Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
6194
+ */
6195
+ @complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
6196
+ /**
6197
+ * Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6198
+ */
6199
+ allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
6200
+ /**
6201
+ * Domain names to associate with the app
6202
+ */
6203
+ associatedDomains: string[] | null;
6204
+ /**
6205
+ * 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.
6206
+ */
6207
+ associatedDomainsDirectDownloadAllowed: boolean | null;
6208
+ /**
6209
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6210
+ */
6211
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
6212
+ /**
6213
+ * 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'.
6214
+ */
6215
+ cellularSliceConfigurationId: string | null;
6216
+ /**
6217
+ * The unique identifier of the content filter to associate with the app.
6218
+ */
6219
+ contentFilterConfigurationId: string | null;
6220
+ /**
6221
+ * The unique identifier of the DNS proxy to associate with the app.
6222
+ */
6223
+ dnsProxyConfigurationId: string | null;
6224
+ /**
6225
+ * 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.
6226
+ */
6227
+ preventManagedAppBackup: boolean | null;
6228
+ /**
6229
+ * The unique identifier of the relay to associate with the app.
6230
+ */
6231
+ relayConfigurationId: string | null;
6232
+ /**
6233
+ * 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.
6234
+ */
6235
+ tapToPayScreenLockEnabled: boolean | null;
6236
+ /**
6237
+ * 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.
6238
+ */
6239
+ version: int32 | null;
6240
+ /**
6241
+ * The unique identifier of the VPN Configuration to apply to the app.
6242
+ */
6243
+ vpnConfigurationId: string | null;
6244
+ }
6245
+
6246
+ /**
6247
+ * Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
6248
+ */
6249
+ @complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
6250
+ /**
6251
+ * Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6252
+ */
6253
+ allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
6254
+ /**
6255
+ * Domain names to associate with the app
6256
+ */
6257
+ associatedDomains: string[] | null;
6258
+ /**
6259
+ * 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.
6260
+ */
6261
+ associatedDomainsDirectDownloadAllowed: boolean | null;
6262
+ /**
6263
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
6264
+ */
6265
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
6266
+ /**
6267
+ * 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'.
6268
+ */
6269
+ cellularSliceConfigurationId: string | null;
6270
+ /**
6271
+ * The unique identifier of the content filter to associate with the app.
6272
+ */
6273
+ contentFilterConfigurationId: string | null;
6274
+ /**
6275
+ * The unique identifier of the DDM app configuration to associate with the app.
6276
+ */
6277
+ ddmAppConfigId: guid | null;
6278
+ /**
6279
+ * The unique identifier of the DNS proxy to associate with the app.
6280
+ */
6281
+ dnsProxyConfigurationId: string | null;
6282
+ /**
6283
+ * 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.
6284
+ */
6285
+ preventManagedAppBackup: boolean | null;
6286
+ /**
6287
+ * The unique identifier of the relay to associate with the app.
6288
+ */
6289
+ relayConfigurationId: string | null;
6290
+ /**
6291
+ * 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.
6292
+ */
6293
+ tapToPayScreenLockEnabled: boolean | null;
6294
+ /**
6295
+ * Whether or not to use device licensing.
6296
+ */
6297
+ useDeviceLicensing: boolean;
6298
+ /**
6299
+ * 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.
6300
+ */
6301
+ version: int32 | null;
6302
+ /**
6303
+ * The unique identifier of the VPN Configuration to apply to the app.
6304
+ */
6305
+ vpnConfigurationId: string | null;
6306
+ }
6307
+
6160
6308
  /**
6161
6309
  * Contains properties of the possible iOS device types the mobile app can run on.
6162
6310
  */
@@ -7268,6 +7416,32 @@ namespace reference.`microsoft.graph` {
7268
7416
  teamIdentifier: string;
7269
7417
  }
7270
7418
 
7419
+ /**
7420
+ * Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
7421
+ */
7422
+ @complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
7423
+ /**
7424
+ * Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
7425
+ */
7426
+ automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
7427
+ /**
7428
+ * The unique identifier of the DDM app configuration to associate with the app.
7429
+ */
7430
+ ddmAppConfigId: guid | null;
7431
+ /**
7432
+ * 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.
7433
+ */
7434
+ isIosApp: boolean | null;
7435
+ /**
7436
+ * 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.
7437
+ */
7438
+ useDeviceLicensing: boolean;
7439
+ /**
7440
+ * 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.
7441
+ */
7442
+ version: int32 | null;
7443
+ }
7444
+
7271
7445
  /**
7272
7446
  * Properties related to macOS-specific configured and Intune-managed local administrator account
7273
7447
  */
@@ -8668,8 +8842,26 @@ namespace reference.`microsoft.graph` {
8668
8842
  internalUrl: string | null;
8669
8843
  }
8670
8844
 
8845
+ @complex model onPremisesCurrentExportData {
8846
+ clientMachineName: string | null;
8847
+ pendingObjectsAddition: int32 | null;
8848
+ pendingObjectsDeletion: int32 | null;
8849
+ pendingObjectsUpdate: int32 | null;
8850
+ serviceAccount: string | null;
8851
+ successfulLinksProvisioningCount: int64 | null;
8852
+ successfulObjectsProvisioningCount: int32 | null;
8853
+ totalConnectorSpaceObjects: int32 | null;
8854
+ }
8855
+
8671
8856
  @complex model onPremisesDirectorySynchronizationConfiguration {
8672
8857
  accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
8858
+ anchorAttribute: string | null;
8859
+ applicationId: string | null;
8860
+ currentExportData: onPremisesCurrentExportData | null;
8861
+ customerRequestedSynchronizationInterval: duration | null;
8862
+ synchronizationClientVersion: string | null;
8863
+ synchronizationInterval: duration | null;
8864
+ writebackConfiguration: onPremisesWritebackConfiguration | null;
8673
8865
  }
8674
8866
 
8675
8867
  @complex model onPremisesDirectorySynchronizationFeature {
@@ -8756,6 +8948,11 @@ namespace reference.`microsoft.graph` {
8756
8948
  singleSignOnMode: singleSignOnMode | null;
8757
8949
  }
8758
8950
 
8951
+ @complex model onPremisesWritebackConfiguration {
8952
+ unifiedGroupContainer: string | null;
8953
+ userContainer: string | null;
8954
+ }
8955
+
8759
8956
  @complex model openIdConnectSetting {
8760
8957
  clientId: string;
8761
8958
  discoveryUrl: string;
@@ -13950,6 +14147,7 @@ namespace reference.`microsoft.graph` {
13950
14147
  }
13951
14148
 
13952
14149
  @entity model admin extends MsGraph.SharedModels.entity {
14150
+ @contains cloudLicensing: reference.`microsoft.graph.cloudLicensing`.adminCloudLicensing | null;
13953
14151
  @contains people: peopleAdminSettings | null;
13954
14152
  @contains serviceAnnouncement: serviceAnnouncement | null;
13955
14153
  @contains sharepoint: sharepoint | null;
@@ -14068,6 +14266,9 @@ namespace reference.`microsoft.graph` {
14068
14266
  @entity model agentIdentity extends servicePrincipal {
14069
14267
  agentIdentityBlueprintId: string;
14070
14268
  @computed createdDateTime: offsetDateTime | null;
14269
+ managerApplications: guid;
14270
+ @references inheritedAppRoleAssignments: appRoleAssignment[];
14271
+ @references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
14071
14272
  @references sponsors: directoryObject[];
14072
14273
  }
14073
14274
 
@@ -14079,6 +14280,7 @@ namespace reference.`microsoft.graph` {
14079
14280
 
14080
14281
  @open
14081
14282
  @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
14283
+ managerApplications: guid;
14082
14284
  @references sponsors: directoryObject[];
14083
14285
  }
14084
14286
 
@@ -16649,6 +16851,10 @@ namespace reference.`microsoft.graph` {
16649
16851
  * Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
16650
16852
  */
16651
16853
  appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
16854
+ /**
16855
+ * 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.
16856
+ */
16857
+ appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
16652
16858
  /**
16653
16859
  * Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
16654
16860
  */
@@ -18329,10 +18535,18 @@ namespace reference.`microsoft.graph` {
18329
18535
  * Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
18330
18536
  */
18331
18537
  excludedDomains: string[] | null;
18538
+ /**
18539
+ * 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.
18540
+ */
18541
+ excludeLocalNetworks: boolean | null;
18332
18542
  /**
18333
18543
  * 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
18334
18544
  */
18335
18545
  identifier: string | null;
18546
+ /**
18547
+ * 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.
18548
+ */
18549
+ includeAllNetworks: boolean | null;
18336
18550
  /**
18337
18551
  * Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
18338
18552
  */
@@ -21334,7 +21548,7 @@ namespace reference.`microsoft.graph` {
21334
21548
  */
21335
21549
  @computed lastModifiedDateTime: offsetDateTime;
21336
21550
  /**
21337
- * Indicates the operating system platform type that this compliance script targets.
21551
+ * Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
21338
21552
  */
21339
21553
  platform: deviceComplianceScriptPlatformType | null;
21340
21554
  /**
@@ -21346,7 +21560,7 @@ namespace reference.`microsoft.graph` {
21346
21560
  */
21347
21561
  roleScopeTagIds: string[] | null;
21348
21562
  /**
21349
- * 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.
21563
+ * Indicate whether PowerShell script(s) should run as 32-bit
21350
21564
  */
21351
21565
  runAs32Bit: boolean;
21352
21566
  /**
@@ -21860,6 +22074,7 @@ namespace reference.`microsoft.graph` {
21860
22074
  successCount: int32;
21861
22075
  }
21862
22076
 
22077
+ @graphDeprecated("Rv1MigrationDeprecation")
21863
22078
  @entity model deviceConfigurationUserStateSummary extends entity {
21864
22079
  /**
21865
22080
  * Number of compliant users
@@ -22830,6 +23045,8 @@ namespace reference.`microsoft.graph` {
22830
23045
  /**
22831
23046
  * The device configuration user state summary for this account.
22832
23047
  */
23048
+
23049
+ @graphDeprecated("Rv1MigrationDeprecation")
22833
23050
  @contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
22834
23051
  /**
22835
23052
  * The list of device custom attribute shell scripts associated with the tenant.
@@ -25849,6 +26066,7 @@ namespace reference.`microsoft.graph` {
25849
26066
  assignedLicenses: assignedLicense[] | null;
25850
26067
  autoSubscribeNewMembers: boolean | null;
25851
26068
  classification: string | null;
26069
+ cloudLicensing: reference.`microsoft.graph.cloudLicensing`.groupCloudLicensing | null;
25852
26070
  createdByAppId: string | null;
25853
26071
  @computed createdDateTime: offsetDateTime | null;
25854
26072
  description: string | null;
@@ -29006,6 +29224,7 @@ namespace reference.`microsoft.graph` {
29006
29224
  * Contains properties and inherited properties for iOS store apps.
29007
29225
  */
29008
29226
  @entity model iosStoreApp extends mobileApp {
29227
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
29009
29228
  /**
29010
29229
  * The iOS architecture for which this app can run on.
29011
29230
  */
@@ -29173,6 +29392,7 @@ namespace reference.`microsoft.graph` {
29173
29392
  * Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
29174
29393
  */
29175
29394
  @entity model iosVppApp extends mobileApp {
29395
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
29176
29396
  /**
29177
29397
  * The applicable iOS Device Type.
29178
29398
  */
@@ -30819,6 +31039,10 @@ namespace reference.`microsoft.graph` {
30819
31039
  * Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
30820
31040
  */
30821
31041
  @entity model macOsVppApp extends mobileApp {
31042
+ /**
31043
+ * 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.
31044
+ */
31045
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
30822
31046
  /**
30823
31047
  * The store URL.
30824
31048
  */
@@ -30957,6 +31181,10 @@ namespace reference.`microsoft.graph` {
30957
31181
  * This is the name of the Wi-Fi network that is broadcast to all devices.
30958
31182
  */
30959
31183
  ssid: string;
31184
+ /**
31185
+ * 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.
31186
+ */
31187
+ wifiRequirePhysicalMacAddressEnabled: boolean | null;
30960
31188
  /**
30961
31189
  * Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
30962
31190
  */
@@ -31979,6 +32207,8 @@ namespace reference.`microsoft.graph` {
31979
32207
  /**
31980
32208
  * Security baseline states for this device.
31981
32209
  */
32210
+
32211
+ @graphDeprecated("Rv1MigrationDeprecation")
31982
32212
  @contains securityBaselineStates: securityBaselineState[];
31983
32213
  /**
31984
32214
  * The primary users associated with the managed device.
@@ -33246,6 +33476,10 @@ namespace reference.`microsoft.graph` {
33246
33476
  * Indicates the size of the file after encryption, in bytes.
33247
33477
  */
33248
33478
  sizeEncrypted: int64;
33479
+ /**
33480
+ * 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.
33481
+ */
33482
+ uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
33249
33483
  /**
33250
33484
  * 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.
33251
33485
  */
@@ -33695,6 +33929,14 @@ namespace reference.`microsoft.graph` {
33695
33929
  * Timestamp when on-prem certificate connector was enrolled in Intune.
33696
33930
  */
33697
33931
  enrolledDateTime: offsetDateTime;
33932
+ /**
33933
+ * 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.
33934
+ */
33935
+ healthChecks: connectorHealthCheck[] | null;
33936
+ /**
33937
+ * 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.
33938
+ */
33939
+ healthStatus: ndesConnectorHealthStatus | null;
33698
33940
  /**
33699
33941
  * Last connection time for the Ndes Connector
33700
33942
  */
@@ -35381,6 +35623,8 @@ namespace reference.`microsoft.graph` {
35381
35623
  /**
35382
35624
  * The security baseline per category compliance state summary for the security baseline of the account.
35383
35625
  */
35626
+ @graphDeprecated("Rv1MigrationDeprecation")
35627
+ @graphDeprecated("Rv1MigrationDeprecation")
35384
35628
  @entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
35385
35629
  /**
35386
35630
  * The category name
@@ -35391,6 +35635,7 @@ namespace reference.`microsoft.graph` {
35391
35635
  /**
35392
35636
  * The security baseline compliance state summary of the security baseline for a device.
35393
35637
  */
35638
+ @graphDeprecated("Rv1MigrationDeprecation")
35394
35639
  @entity model securityBaselineDeviceState extends entity {
35395
35640
  /**
35396
35641
  * Display name of the device
@@ -35417,6 +35662,7 @@ namespace reference.`microsoft.graph` {
35417
35662
  /**
35418
35663
  * The security baseline compliance state of a setting for a device
35419
35664
  */
35665
+ @graphDeprecated("Rv1MigrationDeprecation")
35420
35666
  @entity model securityBaselineSettingState extends entity {
35421
35667
  /**
35422
35668
  * The policies that contribute to this setting instance
@@ -35455,6 +35701,7 @@ namespace reference.`microsoft.graph` {
35455
35701
  /**
35456
35702
  * Security baseline state for a device.
35457
35703
  */
35704
+ @graphDeprecated("Rv1MigrationDeprecation")
35458
35705
  @entity model securityBaselineState extends entity {
35459
35706
  /**
35460
35707
  * The display name of the security baseline
@@ -35475,12 +35722,15 @@ namespace reference.`microsoft.graph` {
35475
35722
  /**
35476
35723
  * The security baseline state for different settings for a device
35477
35724
  */
35725
+
35726
+ @graphDeprecated("Rv1MigrationDeprecation")
35478
35727
  @contains settingStates: securityBaselineSettingState[];
35479
35728
  }
35480
35729
 
35481
35730
  /**
35482
35731
  * The security baseline compliance state summary for the security baseline of the account.
35483
35732
  */
35733
+ @graphDeprecated("Rv1MigrationDeprecation")
35484
35734
  @entity model securityBaselineStateSummary extends entity {
35485
35735
  /**
35486
35736
  * Number of conflict devices
@@ -35515,14 +35765,20 @@ namespace reference.`microsoft.graph` {
35515
35765
  /**
35516
35766
  * The security baseline per category device state summary
35517
35767
  */
35768
+
35769
+ @graphDeprecated("Rv1MigrationDeprecation")
35518
35770
  @contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
35519
35771
  /**
35520
35772
  * The security baseline device states
35521
35773
  */
35774
+
35775
+ @graphDeprecated("Rv1MigrationDeprecation")
35522
35776
  @contains deviceStates: securityBaselineDeviceState[];
35523
35777
  /**
35524
35778
  * The security baseline device state summary
35525
35779
  */
35780
+
35781
+ @graphDeprecated("Rv1MigrationDeprecation")
35526
35782
  @contains deviceStateSummary: securityBaselineStateSummary | null;
35527
35783
  }
35528
35784
 
@@ -36744,6 +37000,7 @@ namespace reference.`microsoft.graph` {
36744
37000
  birthday: offsetDateTime;
36745
37001
  businessPhones: string[];
36746
37002
  city: string | null;
37003
+ cloudLicensing: reference.`microsoft.graph.cloudLicensing`.userCloudLicensing | null;
36747
37004
  cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
36748
37005
  companyName: string | null;
36749
37006
  consentProvidedForMinor: string | null;
@@ -43712,7 +43969,11 @@ namespace reference.`microsoft.graph` {
43712
43969
  */
43713
43970
  @entity model windowsManagedAppProtection extends managedAppPolicy {
43714
43971
  /**
43715
- * Indicates the sources from which data is allowed to be transferred. Some possible values are allApps or none.
43972
+ * 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.
43973
+ */
43974
+ allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
43975
+ /**
43976
+ * Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
43716
43977
  */
43717
43978
  allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
43718
43979
  /**
@@ -43720,7 +43981,11 @@ namespace reference.`microsoft.graph` {
43720
43981
  */
43721
43982
  allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
43722
43983
  /**
43723
- * Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps or none.
43984
+ * 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.
43985
+ */
43986
+ allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
43987
+ /**
43988
+ * Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
43724
43989
  */
43725
43990
  allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
43726
43991
  /**
@@ -46657,18 +46922,6 @@ namespace reference.`microsoft.graph` {
46657
46922
  */
46658
46923
  wpaPersonal: 4,
46659
46924
  unknownFutureValue: 5,
46660
- /**
46661
- * 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.
46662
- */
46663
- wpa2Personal: 6,
46664
- /**
46665
- * 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.
46666
- */
46667
- wpa3Personal: 7,
46668
- /**
46669
- * 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.
46670
- */
46671
- wpa3Enterprise: 8,
46672
46925
  }
46673
46926
 
46674
46927
  /**
@@ -46843,22 +47096,6 @@ namespace reference.`microsoft.graph` {
46843
47096
  */
46844
47097
  wpaEnterprise: 4,
46845
47098
  unknownFutureValue: 5,
46846
- /**
46847
- * 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.
46848
- */
46849
- wpa2Personal: 6,
46850
- /**
46851
- * 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.
46852
- */
46853
- wpa2Enterprise: 7,
46854
- /**
46855
- * Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
46856
- */
46857
- wpa3Personal: 8,
46858
- /**
46859
- * 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.
46860
- */
46861
- wpa3Enterprise: 9,
46862
47099
  }
46863
47100
 
46864
47101
  /**
@@ -49022,6 +49259,29 @@ namespace reference.`microsoft.graph` {
49022
49259
  applicationProxy: 0,
49023
49260
  }
49024
49261
 
49262
+ /**
49263
+ * The name of the health check metric being evaluated for an NDES connector.
49264
+ */
49265
+ enum connectorHealthCheckMetricName {
49266
+ /**
49267
+ * Measures connectivity between the connector and the Certificate Authority.
49268
+ */
49269
+ caConnectivity: 0,
49270
+ /**
49271
+ * Measures whether the connector has the required Enroll permission on the certificate template for issuance.
49272
+ */
49273
+ caIssuancePermissions: 1,
49274
+ /**
49275
+ * Measures whether the connector has the required permissions to revoke certificates on the CA.
49276
+ */
49277
+ caRevocationPermissions: 2,
49278
+ /**
49279
+ * Measures whether the configured certificate template is valid and accessible.
49280
+ */
49281
+ certificateTemplate: 3,
49282
+ unknownFutureValue: 4,
49283
+ }
49284
+
49025
49285
  /**
49026
49286
  * Connector health state for connector status
49027
49287
  */
@@ -49241,6 +49501,44 @@ namespace reference.`microsoft.graph` {
49241
49501
  saturday: 6,
49242
49502
  }
49243
49503
 
49504
+ /**
49505
+ * Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
49506
+ */
49507
+ enum ddmAppAllowDownloadsOverCellular {
49508
+ /**
49509
+ * The device downloads apps of any size using a cellular network.
49510
+ */
49511
+ alwaysOn: 0,
49512
+ /**
49513
+ * 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.
49514
+ */
49515
+ alwaysOff: 1,
49516
+ /**
49517
+ * The device uses the settings for the corresponding store when downloading apps.
49518
+ */
49519
+ storeSettings: 2,
49520
+ unknownFutureValue: 3,
49521
+ }
49522
+
49523
+ /**
49524
+ * Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
49525
+ */
49526
+ enum ddmAppAutomaticAppUpdates {
49527
+ /**
49528
+ * The device automatically updates the app to the latest version.
49529
+ */
49530
+ alwaysOn: 0,
49531
+ /**
49532
+ * The device never automatically updates the app.
49533
+ */
49534
+ alwaysOff: 1,
49535
+ /**
49536
+ * The device uses the settings for the corresponding store to determine when to automatically update the app.
49537
+ */
49538
+ storeSettings: 2,
49539
+ unknownFutureValue: 3,
49540
+ }
49541
+
49244
49542
  enum defaultMfaMethodType {
49245
49543
  none: 0,
49246
49544
  mobilePhone: 1,
@@ -51352,6 +51650,10 @@ namespace reference.`microsoft.graph` {
51352
51650
  * Indicates the settings that can be deployed through the Android channel.
51353
51651
  */
51354
51652
  android: 65536,
51653
+ /**
51654
+ * Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
51655
+ */
51656
+ intuneOpenExtensibility: 131072,
51355
51657
  }
51356
51658
 
51357
51659
  /**
@@ -53604,6 +53906,176 @@ namespace reference.`microsoft.graph` {
53604
53906
  IgnoreLookupReferenceResolutionFailure: 2,
53605
53907
  }
53606
53908
 
53909
+ /**
53910
+ * Indicates the detailed error condition for an eSIM profile operation.
53911
+ */
53912
+ enum eSimProfileErrorDetail {
53913
+ /**
53914
+ * No error.
53915
+ */
53916
+ none: 0,
53917
+ /**
53918
+ * The eSIM card encountered a general failure.
53919
+ */
53920
+ cardGeneralFailure: 1,
53921
+ /**
53922
+ * The confirmation code provided was incorrect.
53923
+ */
53924
+ confirmationCodeIncorrect: 2,
53925
+ /**
53926
+ * The confirmation code was missing.
53927
+ */
53928
+ confirmationCodeMissing: 3,
53929
+ /**
53930
+ * The maximum number of retries for the confirmation code was exceeded.
53931
+ */
53932
+ confirmationCodeMaxRetriesExceeded: 4,
53933
+ /**
53934
+ * The operation is forbidden by policy.
53935
+ */
53936
+ forbiddenByPolicy: 5,
53937
+ /**
53938
+ * The matching ID provided was invalid.
53939
+ */
53940
+ invalidMatchingId: 6,
53941
+ /**
53942
+ * No eligible eSIM profile was found for this device.
53943
+ */
53944
+ noEligibleProfileForThisDevice: 7,
53945
+ /**
53946
+ * There was not enough space on the eSIM card.
53947
+ */
53948
+ notEnoughSpaceOnCard: 8,
53949
+ /**
53950
+ * The operation was aborted.
53951
+ */
53952
+ operationAborted: 9,
53953
+ /**
53954
+ * The eSIM profile EID did not match the device.
53955
+ */
53956
+ profileEidMismatch: 10,
53957
+ /**
53958
+ * The eSIM profile is not available for a new binding.
53959
+ */
53960
+ profileNotAvailableForNewBinding: 11,
53961
+ /**
53962
+ * The eSIM profile has not been released by the operator.
53963
+ */
53964
+ profileNotReleasedByOperator: 12,
53965
+ /**
53966
+ * The remote server encountered a general failure.
53967
+ */
53968
+ remoteServerGeneralFailure: 13,
53969
+ /**
53970
+ * The remote server was unreachable.
53971
+ */
53972
+ remoteServerUnreachable: 14,
53973
+ /**
53974
+ * A timeout occurred while waiting for user consent.
53975
+ */
53976
+ timeoutWaitingForUserConsent: 15,
53977
+ /**
53978
+ * The operation is prohibited by the eSIM profile class.
53979
+ */
53980
+ operationProhibitedByProfileClass: 16,
53981
+ /**
53982
+ * The provisioning profile is not present.
53983
+ */
53984
+ provisioningProfileNotPresent: 17,
53985
+ /**
53986
+ * There is no corresponding request for this operation.
53987
+ */
53988
+ noCorrespondingRequest: 18,
53989
+ /**
53990
+ * A timeout occurred while waiting for a response.
53991
+ */
53992
+ timeoutWaitingForResponse: 19,
53993
+ /**
53994
+ * The ICCID already exists on the device.
53995
+ */
53996
+ iccidAlreadyExists: 20,
53997
+ /**
53998
+ * An error occurred while processing the eSIM profile.
53999
+ */
54000
+ profileProcessingError: 21,
54001
+ /**
54002
+ * The remote server is not trusted.
54003
+ */
54004
+ remoteServerNotTrusted: 22,
54005
+ /**
54006
+ * The maximum number of retries for profile download was exceeded.
54007
+ */
54008
+ profileDownloadMaxRetriesExceeded: 23,
54009
+ /**
54010
+ * The WinHTTP name could not be resolved.
54011
+ */
54012
+ winhttpNameNotResolved: 24,
54013
+ /**
54014
+ * The WinHTTP operation was cancelled.
54015
+ */
54016
+ winhttpOperationCancelled: 25,
54017
+ /**
54018
+ * The status is unspecified.
54019
+ */
54020
+ statusUnspecified: 26,
54021
+ /**
54022
+ * The operation is in progress.
54023
+ */
54024
+ inProgress: 27,
54025
+ /**
54026
+ * The operation is pending user action.
54027
+ */
54028
+ pendingUserAction: 28,
54029
+ /**
54030
+ * An error occurred while setup was in progress.
54031
+ */
54032
+ errorSetupInProgress: 29,
54033
+ /**
54034
+ * The user denied the operation.
54035
+ */
54036
+ errorUserDenied: 30,
54037
+ /**
54038
+ * An internal error occurred.
54039
+ */
54040
+ internalError: 31,
54041
+ /**
54042
+ * The ICCID was not found.
54043
+ */
54044
+ errorIccIdNotFound: 32,
54045
+ /**
54046
+ * Multiple active eSIMs are present but no slot is available.
54047
+ */
54048
+ errorMultipleActiveEsimsNoAvailableSlot: 33,
54049
+ unknownFutureValue: 34,
54050
+ }
54051
+
54052
+ /**
54053
+ * Indicates the state of an eSIM profile on a managed device.
54054
+ */
54055
+ enum eSimProfileState {
54056
+ /**
54057
+ * Unknown state.
54058
+ */
54059
+ `unknown`: 0,
54060
+ /**
54061
+ * The eSIM profile is being installed.
54062
+ */
54063
+ installing: 1,
54064
+ /**
54065
+ * The eSIM profile has been successfully installed.
54066
+ */
54067
+ installed: 2,
54068
+ /**
54069
+ * The eSIM profile is being deleted.
54070
+ */
54071
+ deleting: 3,
54072
+ /**
54073
+ * An error occurred while processing the eSIM profile.
54074
+ */
54075
+ error: 4,
54076
+ unknownFutureValue: 5,
54077
+ }
54078
+
53607
54079
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53608
54080
  enum eventType {
53609
54081
  singleInstance: 0,
@@ -56907,6 +57379,22 @@ namespace reference.`microsoft.graph` {
56907
57379
  userRequestedInstall: 5,
56908
57380
  }
56909
57381
 
57382
+ /**
57383
+ * Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
57384
+ */
57385
+ enum mobileAppContentFileUploadErrorCode {
57386
+ apkIsInvalid: 1,
57387
+ apkIsMissingSignerCertificates: 2,
57388
+ apkHasInvalidPackageName: 3,
57389
+ apkPackageNameMismatch: 4,
57390
+ apkHasInvalidVersionCode: 5,
57391
+ apkHasVersionCodeMismatch: 6,
57392
+ apkHasInvalidMinSdk: 7,
57393
+ apkMinSdkMismatch: 8,
57394
+ apkVersionNameMismatch: 9,
57395
+ unknownFutureValue: 10,
57396
+ }
57397
+
56910
57398
  /**
56911
57399
  * Contains properties for upload request states.
56912
57400
  */
@@ -57115,6 +57603,33 @@ namespace reference.`microsoft.graph` {
57115
57603
  WriteOnly: 3,
57116
57604
  }
57117
57605
 
57606
+ /**
57607
+ * The health status of an NDES connector or individual health check metric.
57608
+ */
57609
+ enum ndesConnectorHealthStatus {
57610
+ /**
57611
+ * Health has not been evaluated yet for this connector.
57612
+ */
57613
+ `unknown`: 0,
57614
+ /**
57615
+ * All health checks are passing. Error rates are below the attention threshold for all metrics.
57616
+ */
57617
+ noActionRequired: 1,
57618
+ /**
57619
+ * One or more health checks have error rates between the attention and action thresholds.
57620
+ */
57621
+ attentionRequired: 2,
57622
+ /**
57623
+ * One or more health checks have error rates above the action threshold. Investigation is required.
57624
+ */
57625
+ actionRequired: 3,
57626
+ /**
57627
+ * The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
57628
+ */
57629
+ disconnected: 4,
57630
+ unknownFutureValue: 5,
57631
+ }
57632
+
57118
57633
  /**
57119
57634
  * The current status of the Ndes Connector.
57120
57635
  */
@@ -59295,6 +59810,14 @@ namespace reference.`microsoft.graph` {
59295
59810
  * Indicates remote device action to restore the Managed Home Screen kiosk app.
59296
59811
  */
59297
59812
  restoreManagedHomeScreen: 42,
59813
+ /**
59814
+ * Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
59815
+ */
59816
+ triggerEnhancedLogCollection: 44,
59817
+ /**
59818
+ * Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
59819
+ */
59820
+ cancelEnhancedLogCollection: 45,
59298
59821
  }
59299
59822
 
59300
59823
  /**
@@ -59331,6 +59854,25 @@ namespace reference.`microsoft.graph` {
59331
59854
  enabled: 2,
59332
59855
  }
59333
59856
 
59857
+ /**
59858
+ * Enumeration indicating the state of session recording
59859
+ */
59860
+ enum remoteHelpRecordingState {
59861
+ /**
59862
+ * Recording is not enabled for this session.
59863
+ */
59864
+ notEnabled: 0,
59865
+ /**
59866
+ * Recording is in progress.
59867
+ */
59868
+ recording: 1,
59869
+ /**
59870
+ * Recording failed.
59871
+ */
59872
+ failed: 2,
59873
+ unknownFutureValue: 3,
59874
+ }
59875
+
59334
59876
  enum requiredLicenses {
59335
59877
  notApplicable: 0,
59336
59878
  microsoftEntraIdFree: 1,
@@ -59586,6 +60128,10 @@ namespace reference.`microsoft.graph` {
59586
60128
  * App was removed in order to install a superseding app.
59587
60129
  */
59588
60130
  appRemovedBySupersedence: 3005,
60131
+ /**
60132
+ * App cannot be installed. One or more of the application's dependencies are in use.
60133
+ */
60134
+ dependencyAppInUse: 3006,
59589
60135
  /**
59590
60136
  * Application failed to uninstall. See error code property for more details.
59591
60137
  */
@@ -59602,6 +60148,18 @@ namespace reference.`microsoft.graph` {
59602
60148
  * Application content was downloaded to the device.
59603
60149
  */
59604
60150
  contentDownloaded: 5002,
60151
+ /**
60152
+ * App enforcement is pending because the app is currently in use.
60153
+ */
60154
+ inUse: 5005,
60155
+ /**
60156
+ * App enforcement was deferred by the user because the app is currently in use.
60157
+ */
60158
+ deferred: 5006,
60159
+ /**
60160
+ * App enforcement was automatically deferred because the app is currently in use and a user response was not available.
60161
+ */
60162
+ autoDeferred: 5007,
59605
60163
  }
59606
60164
 
59607
60165
  enum riskDetail {
@@ -61834,10 +62392,6 @@ namespace reference.`microsoft.graph` {
61834
62392
  * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
61835
62393
  */
61836
62394
  wpa3Personal: 7,
61837
- /**
61838
- * 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.
61839
- */
61840
- wpa3Enterprise: 8,
61841
62395
  }
61842
62396
 
61843
62397
  /**
@@ -62269,6 +62823,7 @@ namespace reference.`microsoft.graph` {
62269
62823
  /**
62270
62824
  * Contains rule types for Win32 LOB apps.
62271
62825
  */
62826
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
62272
62827
  enum win32LobAppRuleType {
62273
62828
  /**
62274
62829
  * Detection rule.
@@ -62278,11 +62833,6 @@ namespace reference.`microsoft.graph` {
62278
62833
  * Requirement rule.
62279
62834
  */
62280
62835
  requirement: 1,
62281
- /**
62282
- * Indicates that the associated rule represents an executable for app in-use detection.
62283
- */
62284
- inUse: 2,
62285
- unknownFutureValue: 3,
62286
62836
  }
62287
62837
 
62288
62838
  /**
@@ -63718,7 +64268,6 @@ namespace reference.`microsoft.graph` {
63718
64268
  /**
63719
64269
  * Data can be transferred from/to these classes of apps
63720
64270
  */
63721
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
63722
64271
  enum windowsManagedAppDataTransferLevel {
63723
64272
  /**
63724
64273
  * All apps.
@@ -63728,6 +64277,27 @@ namespace reference.`microsoft.graph` {
63728
64277
  * No apps.
63729
64278
  */
63730
64279
  none: 1,
64280
+ /**
64281
+ * Selected apps only. Allowed locations are specified by the child property.
64282
+ */
64283
+ selectedApps: 2,
64284
+ unknownFutureValue: 3,
64285
+ }
64286
+
64287
+ /**
64288
+ * Windows MAM data transfer locations
64289
+ */
64290
+ @graphFlags
64291
+ enum windowsManagedAppDataTransferLocations {
64292
+ /**
64293
+ * No locations selected.
64294
+ */
64295
+ none: 0,
64296
+ /**
64297
+ * OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
64298
+ */
64299
+ oneDriveForBusiness: 1,
64300
+ unknownFutureValue: 2,
63731
64301
  }
63732
64302
 
63733
64303
  /**
@@ -64496,6 +65066,107 @@ namespace reference.`microsoft.graph.agentic` {
64496
65066
  unknownFutureValue: 4,
64497
65067
  }
64498
65068
 
65069
+ }
65070
+ @publicNamespace("microsoft.graph.cloudlicensing")
65071
+ namespace reference.`microsoft.graph.cloudLicensing` {
65072
+ @complex model groupCloudLicensing {
65073
+ @references assignments: assignment[];
65074
+ @contains usageRights: usageRight[];
65075
+ }
65076
+
65077
+ @complex model service {
65078
+ assignableTo: assigneeTypes;
65079
+ planId: guid;
65080
+ planName: string | null;
65081
+ }
65082
+
65083
+ @complex model subscription {
65084
+ nextLifecycleDate: offsetDateTime;
65085
+ startDate: offsetDateTime;
65086
+ state: subscriptionState;
65087
+ subscriptionId: string;
65088
+ tags: subscriptionTags;
65089
+ }
65090
+
65091
+ @complex model userCloudLicensing {
65092
+ @references assignmentErrors: assignmentError[];
65093
+ @references assignments: assignment[];
65094
+ @contains usageRights: usageRight[];
65095
+ @references waitingMembers: waitingMember[];
65096
+ }
65097
+
65098
+ @entity model adminCloudLicensing extends reference.`microsoft.graph`.entity {
65099
+ @contains allotments: allotment[];
65100
+ @contains assignmentErrors: assignmentError[];
65101
+ @contains assignments: assignment[];
65102
+ }
65103
+
65104
+ @entity model allotment extends reference.`microsoft.graph`.entity {
65105
+ allottedUnits: int32;
65106
+ assignableTo: assigneeTypes;
65107
+ consumedUnits: int32;
65108
+ services: service[];
65109
+ skuId: guid | null;
65110
+ skuPartNumber: string | null;
65111
+ subscriptions: subscription[];
65112
+ @references assignments: assignment[];
65113
+ @references waitingMembers: waitingMember[];
65114
+ }
65115
+
65116
+ @entity model assignment extends reference.`microsoft.graph`.entity {
65117
+ disabledServicePlanIds: guid;
65118
+ @references allotment: allotment | null;
65119
+ @references assignedTo: reference.`microsoft.graph`.directoryObject;
65120
+ }
65121
+
65122
+ @entity model assignmentError extends reference.`microsoft.graph`.entity {
65123
+ code: string;
65124
+ message: string;
65125
+ occurrenceDateTime: offsetDateTime;
65126
+ skuId: guid | null;
65127
+ @references assignedTo: reference.`microsoft.graph`.directoryObject;
65128
+ @references usageRight: usageRight | null;
65129
+ }
65130
+
65131
+ @entity model usageRight extends reference.`microsoft.graph`.entity {
65132
+ services: service[];
65133
+ skuId: guid | null;
65134
+ skuPartNumber: string | null;
65135
+ @references allotments: allotment[];
65136
+ @references assignments: assignment[];
65137
+ }
65138
+
65139
+ @entity model waitingMember extends reference.`microsoft.graph`.entity {
65140
+ waitingSinceDateTime: offsetDateTime;
65141
+ @references allotment: allotment;
65142
+ @references assignedTo: reference.`microsoft.graph`.directoryObject;
65143
+ }
65144
+
65145
+ @graphFlags
65146
+ enum assigneeTypes {
65147
+ none: 0,
65148
+ user: 1,
65149
+ group: 2,
65150
+ device: 4,
65151
+ unknownFutureValue: 8,
65152
+ }
65153
+
65154
+ enum subscriptionState {
65155
+ active: 1,
65156
+ warning: 2,
65157
+ suspended: 3,
65158
+ lockedOut: 4,
65159
+ deleted: 5,
65160
+ unknownFutureValue: 6,
65161
+ }
65162
+
65163
+ @graphFlags
65164
+ enum subscriptionTags {
65165
+ none: 0,
65166
+ trial: 1,
65167
+ unknownFutureValue: 2,
65168
+ }
65169
+
64499
65170
  }
64500
65171
  @publicNamespace("microsoft.graph.security")
64501
65172
  namespace reference.`microsoft.graph.security` {