@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.
- package/.rush/temp/package-deps_build.json +15 -15
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +625 -42
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +713 -42
- package/lib/Fairfax/Beta/main.tsp +728 -43
- package/lib/Fairfax/V1.0/main.tsp +10 -0
- package/lib/GovSG/Beta/main.tsp +27 -0
- package/lib/Mooncake/Beta/main.tsp +625 -42
- package/lib/Prod/Beta/main.tsp +116 -8
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +97 -1
- package/lib/USNat/V1.0/main.tsp +10 -0
- package/lib/USSec/Beta/main.tsp +97 -1
- package/lib/USSec/V1.0/main.tsp +10 -0
- package/package.json +2 -2
|
@@ -48,13 +48,16 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
48
48
|
@deprecatedDefinition("notificationSetting", "<ChangeLogCategory>", "2026-04-14", "2026-07-14", "Starting from July 14, 2026, the notificationSetting property will no longer be supported and will be marked as deprecated. This property will not be included as part of the API response.")
|
|
49
49
|
@deprecatedDefinition("selfServiceEnabled", "<ChangeLogCategory>", "2023-08-31", "2023-12-01", "The selfServiceEnabled property is deprecated and will not be supported starting Dec 1, 2023. This property will not be included as part of the API response.")
|
|
50
50
|
@deprecatedDefinition("AuthenticationStrengthsRemove", "<ChangeLogCategory>", "2023-02-01", "2023-03-31", "The 'authenticationStrengths' segment is deprecated. Please use 'authenticationStrength' instead.")
|
|
51
|
+
@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.")
|
|
52
|
+
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
51
53
|
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-26", "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.")
|
|
52
54
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
53
55
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
54
56
|
@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.")
|
|
55
57
|
@deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
|
|
56
58
|
@deprecatedDefinition("CreationDateTime", "<ChangeLogCategory>", "2020-11-06", "2020-12-31", "The creationDateTime property is deprecated and will stop returning data on December 31, 2020. Please use the createdDateTime property.")
|
|
57
|
-
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "
|
|
59
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2025-03-26", "2026-03-26", "private preview elements are required to be marked as deprecated")
|
|
60
|
+
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
58
61
|
@deprecatedDefinition("PIM_Iteration2_Deprecation", "<ChangeLogCategory>", "2025-10-27", "2026-10-28", "The PIM Iteration 2 beta API is deprecated and will be removed on October 28, 2026. Please migrate to PIM Iteration 3 API.")
|
|
59
62
|
@deprecatedDefinition("QrPolicyConfigRemove", "<ChangeLogCategory>", "2021-11-12", "2022-02-11", "The qrAuthenticationMethodConfiguration type is deprecated")
|
|
60
63
|
@deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
|
|
@@ -2517,6 +2520,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2517
2520
|
messageBodyContentType: chatMessageBodyContentType | null;
|
|
2518
2521
|
}
|
|
2519
2522
|
|
|
2523
|
+
@complex model chatMessageCitation {
|
|
2524
|
+
excerpt: string | null;
|
|
2525
|
+
iconType: string | null;
|
|
2526
|
+
id: int32 | null;
|
|
2527
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
2528
|
+
title: string | null;
|
|
2529
|
+
webUrl: string | null;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
2533
|
+
description: string | null;
|
|
2534
|
+
displayName: string | null;
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2520
2537
|
@open
|
|
2521
2538
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
2522
2539
|
}
|
|
@@ -2723,6 +2740,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2723
2740
|
resourceType: string;
|
|
2724
2741
|
}
|
|
2725
2742
|
|
|
2743
|
+
@complex model cloudPcAutomaticDiscoveredAppDetail extends cloudPcCloudAppDetail {
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2726
2746
|
@complex model cloudPcAutopilotConfiguration {
|
|
2727
2747
|
applicationTimeoutInMinutes: int32;
|
|
2728
2748
|
devicePreparationProfileId: string;
|
|
@@ -2744,6 +2764,13 @@ namespace reference.`microsoft.graph` {
|
|
|
2744
2764
|
successfulDeviceIds: string[] | null;
|
|
2745
2765
|
}
|
|
2746
2766
|
|
|
2767
|
+
@complex model cloudPcCloudAppDetail {
|
|
2768
|
+
commandLineArguments: string | null;
|
|
2769
|
+
filePath: string;
|
|
2770
|
+
iconIndex: int32 | null;
|
|
2771
|
+
iconPath: string | null;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2747
2774
|
@complex model cloudPcConnectionSetting {
|
|
2748
2775
|
enableSingleSignOn: boolean;
|
|
2749
2776
|
}
|
|
@@ -2771,6 +2798,13 @@ namespace reference.`microsoft.graph` {
|
|
|
2771
2798
|
updatedDateTime: offsetDateTime;
|
|
2772
2799
|
}
|
|
2773
2800
|
|
|
2801
|
+
@complex model cloudPcDiscoveredApp {
|
|
2802
|
+
appDetail: cloudPcCloudAppDetail;
|
|
2803
|
+
appName: string | null;
|
|
2804
|
+
discoveredAppId: string;
|
|
2805
|
+
sourceId: string | null;
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2774
2808
|
@complex model cloudPcDomainJoinConfiguration {
|
|
2775
2809
|
domainJoinType: cloudPcDomainJoinType | null;
|
|
2776
2810
|
geographicLocationType: cloudPcGeographicLocationType | null;
|
|
@@ -2824,6 +2858,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2824
2858
|
installParameters: string[];
|
|
2825
2859
|
}
|
|
2826
2860
|
|
|
2861
|
+
@complex model cloudPcFilePathAppDetail extends cloudPcCloudAppDetail {
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2827
2864
|
@complex model cloudPcForensicStorageAccount {
|
|
2828
2865
|
accessTier: cloudPcStorageAccountAccessTier | null;
|
|
2829
2866
|
immutableStorage: boolean | null;
|
|
@@ -3515,6 +3552,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3515
3552
|
value: string | null;
|
|
3516
3553
|
}
|
|
3517
3554
|
|
|
3555
|
+
/**
|
|
3556
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
3557
|
+
*/
|
|
3558
|
+
@complex model connectorHealthCheck {
|
|
3559
|
+
/**
|
|
3560
|
+
* The name of the health check metric being evaluated.
|
|
3561
|
+
*/
|
|
3562
|
+
metricName: connectorHealthCheckMetricName;
|
|
3563
|
+
/**
|
|
3564
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
3565
|
+
*/
|
|
3566
|
+
status: ndesConnectorHealthStatus;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3518
3569
|
/**
|
|
3519
3570
|
* Represent connector status
|
|
3520
3571
|
*/
|
|
@@ -3765,6 +3816,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3765
3816
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
3766
3817
|
*/
|
|
3767
3818
|
@complex model createRemoteHelpSessionResponse {
|
|
3819
|
+
/**
|
|
3820
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
3821
|
+
*/
|
|
3822
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
3768
3823
|
/**
|
|
3769
3824
|
* The unique identifier for a session
|
|
3770
3825
|
*/
|
|
@@ -4450,6 +4505,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4450
4505
|
* 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.
|
|
4451
4506
|
*/
|
|
4452
4507
|
rulesContent: binary | null;
|
|
4508
|
+
/**
|
|
4509
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
4510
|
+
*/
|
|
4511
|
+
runIntervalInMinutes: int32 | null;
|
|
4453
4512
|
}
|
|
4454
4513
|
|
|
4455
4514
|
/**
|
|
@@ -8078,10 +8137,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8078
8137
|
* 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.
|
|
8079
8138
|
*/
|
|
8080
8139
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8140
|
+
cellularSliceConfigurationId: string | null;
|
|
8141
|
+
contentFilterConfigurationId: string | null;
|
|
8142
|
+
/**
|
|
8143
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8144
|
+
*/
|
|
8145
|
+
ddmAppConfigId: guid | null;
|
|
8146
|
+
dnsProxyConfigurationId: string | null;
|
|
8081
8147
|
/**
|
|
8082
8148
|
* 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.
|
|
8083
8149
|
*/
|
|
8084
8150
|
preventManagedAppBackup: boolean | null;
|
|
8151
|
+
relayConfigurationId: string | null;
|
|
8085
8152
|
/**
|
|
8086
8153
|
* 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.
|
|
8087
8154
|
*/
|
|
@@ -8092,6 +8159,122 @@ namespace reference.`microsoft.graph` {
|
|
|
8092
8159
|
vpnConfigurationId: string | null;
|
|
8093
8160
|
}
|
|
8094
8161
|
|
|
8162
|
+
/**
|
|
8163
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
8164
|
+
*/
|
|
8165
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8166
|
+
/**
|
|
8167
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8168
|
+
*/
|
|
8169
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
8170
|
+
/**
|
|
8171
|
+
* Domain names to associate with the app
|
|
8172
|
+
*/
|
|
8173
|
+
associatedDomains: string[] | null;
|
|
8174
|
+
/**
|
|
8175
|
+
* 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.
|
|
8176
|
+
*/
|
|
8177
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8178
|
+
/**
|
|
8179
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8180
|
+
*/
|
|
8181
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8182
|
+
/**
|
|
8183
|
+
* 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'.
|
|
8184
|
+
*/
|
|
8185
|
+
cellularSliceConfigurationId: string | null;
|
|
8186
|
+
/**
|
|
8187
|
+
* The unique identifier of the content filter to associate with the app.
|
|
8188
|
+
*/
|
|
8189
|
+
contentFilterConfigurationId: string | null;
|
|
8190
|
+
/**
|
|
8191
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
8192
|
+
*/
|
|
8193
|
+
dnsProxyConfigurationId: string | null;
|
|
8194
|
+
/**
|
|
8195
|
+
* 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.
|
|
8196
|
+
*/
|
|
8197
|
+
preventManagedAppBackup: boolean | null;
|
|
8198
|
+
/**
|
|
8199
|
+
* The unique identifier of the relay to associate with the app.
|
|
8200
|
+
*/
|
|
8201
|
+
relayConfigurationId: string | null;
|
|
8202
|
+
/**
|
|
8203
|
+
* 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.
|
|
8204
|
+
*/
|
|
8205
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
8206
|
+
/**
|
|
8207
|
+
* 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.
|
|
8208
|
+
*/
|
|
8209
|
+
version: int32 | null;
|
|
8210
|
+
/**
|
|
8211
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
8212
|
+
*/
|
|
8213
|
+
vpnConfigurationId: string | null;
|
|
8214
|
+
}
|
|
8215
|
+
|
|
8216
|
+
/**
|
|
8217
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
8218
|
+
*/
|
|
8219
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8220
|
+
/**
|
|
8221
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8222
|
+
*/
|
|
8223
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
8224
|
+
/**
|
|
8225
|
+
* Domain names to associate with the app
|
|
8226
|
+
*/
|
|
8227
|
+
associatedDomains: string[] | null;
|
|
8228
|
+
/**
|
|
8229
|
+
* 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.
|
|
8230
|
+
*/
|
|
8231
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8232
|
+
/**
|
|
8233
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8234
|
+
*/
|
|
8235
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8236
|
+
/**
|
|
8237
|
+
* 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'.
|
|
8238
|
+
*/
|
|
8239
|
+
cellularSliceConfigurationId: string | null;
|
|
8240
|
+
/**
|
|
8241
|
+
* The unique identifier of the content filter to associate with the app.
|
|
8242
|
+
*/
|
|
8243
|
+
contentFilterConfigurationId: string | null;
|
|
8244
|
+
/**
|
|
8245
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8246
|
+
*/
|
|
8247
|
+
ddmAppConfigId: guid | null;
|
|
8248
|
+
/**
|
|
8249
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
8250
|
+
*/
|
|
8251
|
+
dnsProxyConfigurationId: string | null;
|
|
8252
|
+
/**
|
|
8253
|
+
* 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.
|
|
8254
|
+
*/
|
|
8255
|
+
preventManagedAppBackup: boolean | null;
|
|
8256
|
+
/**
|
|
8257
|
+
* The unique identifier of the relay to associate with the app.
|
|
8258
|
+
*/
|
|
8259
|
+
relayConfigurationId: string | null;
|
|
8260
|
+
/**
|
|
8261
|
+
* 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.
|
|
8262
|
+
*/
|
|
8263
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
8264
|
+
/**
|
|
8265
|
+
* Whether or not to use device licensing.
|
|
8266
|
+
*/
|
|
8267
|
+
useDeviceLicensing: boolean;
|
|
8268
|
+
/**
|
|
8269
|
+
* 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.
|
|
8270
|
+
*/
|
|
8271
|
+
version: int32 | null;
|
|
8272
|
+
/**
|
|
8273
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
8274
|
+
*/
|
|
8275
|
+
vpnConfigurationId: string | null;
|
|
8276
|
+
}
|
|
8277
|
+
|
|
8095
8278
|
/**
|
|
8096
8279
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
8097
8280
|
*/
|
|
@@ -9249,6 +9432,32 @@ namespace reference.`microsoft.graph` {
|
|
|
9249
9432
|
teamIdentifier: string;
|
|
9250
9433
|
}
|
|
9251
9434
|
|
|
9435
|
+
/**
|
|
9436
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
9437
|
+
*/
|
|
9438
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
9439
|
+
/**
|
|
9440
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
9441
|
+
*/
|
|
9442
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
9443
|
+
/**
|
|
9444
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
9445
|
+
*/
|
|
9446
|
+
ddmAppConfigId: guid | null;
|
|
9447
|
+
/**
|
|
9448
|
+
* 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.
|
|
9449
|
+
*/
|
|
9450
|
+
isIosApp: boolean | null;
|
|
9451
|
+
/**
|
|
9452
|
+
* 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.
|
|
9453
|
+
*/
|
|
9454
|
+
useDeviceLicensing: boolean;
|
|
9455
|
+
/**
|
|
9456
|
+
* 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.
|
|
9457
|
+
*/
|
|
9458
|
+
version: int32 | null;
|
|
9459
|
+
}
|
|
9460
|
+
|
|
9252
9461
|
/**
|
|
9253
9462
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
9254
9463
|
*/
|
|
@@ -10815,8 +11024,26 @@ namespace reference.`microsoft.graph` {
|
|
|
10815
11024
|
internalUrl: string | null;
|
|
10816
11025
|
}
|
|
10817
11026
|
|
|
11027
|
+
@complex model onPremisesCurrentExportData {
|
|
11028
|
+
clientMachineName: string | null;
|
|
11029
|
+
pendingObjectsAddition: int32 | null;
|
|
11030
|
+
pendingObjectsDeletion: int32 | null;
|
|
11031
|
+
pendingObjectsUpdate: int32 | null;
|
|
11032
|
+
serviceAccount: string | null;
|
|
11033
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
11034
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
11035
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
11036
|
+
}
|
|
11037
|
+
|
|
10818
11038
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
10819
11039
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
11040
|
+
anchorAttribute: string | null;
|
|
11041
|
+
applicationId: string | null;
|
|
11042
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
11043
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
11044
|
+
synchronizationClientVersion: string | null;
|
|
11045
|
+
synchronizationInterval: duration | null;
|
|
11046
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
10820
11047
|
}
|
|
10821
11048
|
|
|
10822
11049
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -10903,6 +11130,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10903
11130
|
singleSignOnMode: singleSignOnMode | null;
|
|
10904
11131
|
}
|
|
10905
11132
|
|
|
11133
|
+
@complex model onPremisesWritebackConfiguration {
|
|
11134
|
+
unifiedGroupContainer: string | null;
|
|
11135
|
+
userContainer: string | null;
|
|
11136
|
+
}
|
|
11137
|
+
|
|
10906
11138
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
10907
11139
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
10908
11140
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -12975,6 +13207,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
12975
13207
|
searchablePlainTexts: metaDataKeyStringPair[] | null;
|
|
12976
13208
|
}
|
|
12977
13209
|
|
|
13210
|
+
@complex model serviceActivityPerformanceMetric {
|
|
13211
|
+
intervalStartDateTime: offsetDateTime;
|
|
13212
|
+
percentage: float64;
|
|
13213
|
+
}
|
|
13214
|
+
|
|
12978
13215
|
@complex model serviceActivityValueMetric {
|
|
12979
13216
|
intervalStartDateTime: offsetDateTime;
|
|
12980
13217
|
value: int64;
|
|
@@ -17782,6 +18019,9 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17782
18019
|
@entity model agentIdentity extends servicePrincipal {
|
|
17783
18020
|
agentIdentityBlueprintId: string;
|
|
17784
18021
|
@computed createdDateTime: offsetDateTime | null;
|
|
18022
|
+
managerApplications: guid;
|
|
18023
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
18024
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
17785
18025
|
@references sponsors: directoryObject[];
|
|
17786
18026
|
}
|
|
17787
18027
|
|
|
@@ -17793,6 +18033,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17793
18033
|
|
|
17794
18034
|
@open
|
|
17795
18035
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
18036
|
+
managerApplications: guid;
|
|
17796
18037
|
@references sponsors: directoryObject[];
|
|
17797
18038
|
}
|
|
17798
18039
|
|
|
@@ -20474,6 +20715,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
20474
20715
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
20475
20716
|
*/
|
|
20476
20717
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
20718
|
+
/**
|
|
20719
|
+
* 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.
|
|
20720
|
+
*/
|
|
20721
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
20477
20722
|
/**
|
|
20478
20723
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
20479
20724
|
*/
|
|
@@ -22169,10 +22414,18 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22169
22414
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
22170
22415
|
*/
|
|
22171
22416
|
excludedDomains: string[] | null;
|
|
22417
|
+
/**
|
|
22418
|
+
* 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.
|
|
22419
|
+
*/
|
|
22420
|
+
excludeLocalNetworks: boolean | null;
|
|
22172
22421
|
/**
|
|
22173
22422
|
* 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
|
|
22174
22423
|
*/
|
|
22175
22424
|
identifier: string | null;
|
|
22425
|
+
/**
|
|
22426
|
+
* 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.
|
|
22427
|
+
*/
|
|
22428
|
+
includeAllNetworks: boolean | null;
|
|
22176
22429
|
/**
|
|
22177
22430
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
22178
22431
|
*/
|
|
@@ -23272,11 +23525,13 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23272
23525
|
body: chatMessageBody;
|
|
23273
23526
|
channelIdentity: channelIdentity | null;
|
|
23274
23527
|
chatId: string | null;
|
|
23528
|
+
citations: chatMessageCitation[] | null;
|
|
23275
23529
|
@computed createdDateTime: offsetDateTime | null;
|
|
23276
23530
|
deletedDateTime: offsetDateTime | null;
|
|
23277
23531
|
etag: string | null;
|
|
23278
23532
|
eventDetail: eventMessageDetail | null;
|
|
23279
23533
|
from: chatMessageFromIdentitySet | null;
|
|
23534
|
+
hasReplies: boolean;
|
|
23280
23535
|
importance: chatMessageImportance;
|
|
23281
23536
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
23282
23537
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -23716,6 +23971,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23716
23971
|
statusDetails: cloudPcStatusDetails | null;
|
|
23717
23972
|
userAccountType: cloudPcUserAccountType | null;
|
|
23718
23973
|
userDetail: cloudPcEntraUserDetail | null;
|
|
23974
|
+
userExperienceType: cloudPcUserExperienceType | null;
|
|
23719
23975
|
userPrincipalName: string | null;
|
|
23720
23976
|
}
|
|
23721
23977
|
|
|
@@ -23783,6 +24039,21 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23783
24039
|
@entity model cloudPcBulkTroubleshoot extends cloudPcBulkAction {
|
|
23784
24040
|
}
|
|
23785
24041
|
|
|
24042
|
+
@entity model cloudPcCloudApp extends entity {
|
|
24043
|
+
actionFailedErrorCode: cloudPcCloudAppActionFailedErrorCode | null;
|
|
24044
|
+
actionFailedErrorMessage: string | null;
|
|
24045
|
+
addedDateTime: offsetDateTime | null;
|
|
24046
|
+
appDetail: cloudPcCloudAppDetail;
|
|
24047
|
+
appStatus: cloudPcCloudAppStatus;
|
|
24048
|
+
availableToUser: boolean;
|
|
24049
|
+
description: string | null;
|
|
24050
|
+
discoveredAppName: string;
|
|
24051
|
+
displayName: string;
|
|
24052
|
+
@computed lastPublishedDateTime: offsetDateTime | null;
|
|
24053
|
+
provisioningPolicyId: string;
|
|
24054
|
+
scopeIds: string[] | null;
|
|
24055
|
+
}
|
|
24056
|
+
|
|
23786
24057
|
/**
|
|
23787
24058
|
* The user experience analyte connectivity issue entity.
|
|
23788
24059
|
*/
|
|
@@ -23952,6 +24223,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23952
24223
|
provisioningType: cloudPcProvisioningType | null;
|
|
23953
24224
|
scopeIds: string[] | null;
|
|
23954
24225
|
snapshotResetMode: cloudPcSnapshotResetMode;
|
|
24226
|
+
userExperienceType: cloudPcUserExperienceType | null;
|
|
23955
24227
|
userSettingsPersistenceConfiguration: cloudPcUserSettingsPersistenceConfiguration | null;
|
|
23956
24228
|
windowsSetting: cloudPcWindowsSetting | null;
|
|
23957
24229
|
|
|
@@ -26261,7 +26533,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26261
26533
|
*/
|
|
26262
26534
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
26263
26535
|
/**
|
|
26264
|
-
* Indicates the
|
|
26536
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
26265
26537
|
*/
|
|
26266
26538
|
platform: deviceComplianceScriptPlatformType | null;
|
|
26267
26539
|
/**
|
|
@@ -26273,7 +26545,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26273
26545
|
*/
|
|
26274
26546
|
roleScopeTagIds: string[] | null;
|
|
26275
26547
|
/**
|
|
26276
|
-
*
|
|
26548
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
26277
26549
|
*/
|
|
26278
26550
|
runAs32Bit: boolean;
|
|
26279
26551
|
/**
|
|
@@ -26787,6 +27059,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26787
27059
|
successCount: int32;
|
|
26788
27060
|
}
|
|
26789
27061
|
|
|
27062
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
26790
27063
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
26791
27064
|
/**
|
|
26792
27065
|
* Number of compliant users
|
|
@@ -27757,6 +28030,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
27757
28030
|
/**
|
|
27758
28031
|
* The device configuration user state summary for this account.
|
|
27759
28032
|
*/
|
|
28033
|
+
|
|
28034
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
27760
28035
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
27761
28036
|
/**
|
|
27762
28037
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -34234,6 +34509,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34234
34509
|
* Contains properties and inherited properties for iOS store apps.
|
|
34235
34510
|
*/
|
|
34236
34511
|
@entity model iosStoreApp extends mobileApp {
|
|
34512
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
34237
34513
|
/**
|
|
34238
34514
|
* The iOS architecture for which this app can run on.
|
|
34239
34515
|
*/
|
|
@@ -34401,6 +34677,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34401
34677
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
34402
34678
|
*/
|
|
34403
34679
|
@entity model iosVppApp extends mobileApp {
|
|
34680
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
34404
34681
|
/**
|
|
34405
34682
|
* The applicable iOS Device Type.
|
|
34406
34683
|
*/
|
|
@@ -36087,6 +36364,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36087
36364
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
36088
36365
|
*/
|
|
36089
36366
|
@entity model macOsVppApp extends mobileApp {
|
|
36367
|
+
/**
|
|
36368
|
+
* 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.
|
|
36369
|
+
*/
|
|
36370
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
36090
36371
|
/**
|
|
36091
36372
|
* The store URL.
|
|
36092
36373
|
*/
|
|
@@ -36225,6 +36506,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36225
36506
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
36226
36507
|
*/
|
|
36227
36508
|
ssid: string;
|
|
36509
|
+
/**
|
|
36510
|
+
* 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.
|
|
36511
|
+
*/
|
|
36512
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
36228
36513
|
/**
|
|
36229
36514
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
36230
36515
|
*/
|
|
@@ -37248,6 +37533,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
37248
37533
|
/**
|
|
37249
37534
|
* Security baseline states for this device.
|
|
37250
37535
|
*/
|
|
37536
|
+
|
|
37537
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37251
37538
|
@contains securityBaselineStates: securityBaselineState[];
|
|
37252
37539
|
/**
|
|
37253
37540
|
* The primary users associated with the managed device.
|
|
@@ -38537,6 +38824,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38537
38824
|
* Indicates the size of the file after encryption, in bytes.
|
|
38538
38825
|
*/
|
|
38539
38826
|
sizeEncrypted: int64;
|
|
38827
|
+
/**
|
|
38828
|
+
* 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.
|
|
38829
|
+
*/
|
|
38830
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
38540
38831
|
/**
|
|
38541
38832
|
* 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.
|
|
38542
38833
|
*/
|
|
@@ -39009,6 +39300,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39009
39300
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
39010
39301
|
*/
|
|
39011
39302
|
enrolledDateTime: offsetDateTime;
|
|
39303
|
+
/**
|
|
39304
|
+
* 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.
|
|
39305
|
+
*/
|
|
39306
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
39307
|
+
/**
|
|
39308
|
+
* 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.
|
|
39309
|
+
*/
|
|
39310
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
39012
39311
|
/**
|
|
39013
39312
|
* Last connection time for the Ndes Connector
|
|
39014
39313
|
*/
|
|
@@ -39847,6 +40146,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39847
40146
|
|
|
39848
40147
|
@entity model planner extends entity {
|
|
39849
40148
|
@contains buckets: plannerBucket[];
|
|
40149
|
+
|
|
40150
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40151
|
+
@contains goals: plannerGoal[];
|
|
39850
40152
|
@contains plans: plannerPlan[];
|
|
39851
40153
|
@contains rosters: plannerRoster[];
|
|
39852
40154
|
@contains tasks: plannerTask[];
|
|
@@ -39874,6 +40176,18 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39874
40176
|
@entity model plannerDelta extends entity {
|
|
39875
40177
|
}
|
|
39876
40178
|
|
|
40179
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40180
|
+
@entity model plannerGoal extends plannerDelta {
|
|
40181
|
+
displayName: string;
|
|
40182
|
+
finishDate: offsetDateTime | null;
|
|
40183
|
+
notes: itemBody | null;
|
|
40184
|
+
planId: string;
|
|
40185
|
+
priority: int32 | null;
|
|
40186
|
+
startDate: offsetDateTime | null;
|
|
40187
|
+
status: plannerGoalStatus;
|
|
40188
|
+
@references tasks: plannerTask[];
|
|
40189
|
+
}
|
|
40190
|
+
|
|
39877
40191
|
@entity model plannerGroup extends entity {
|
|
39878
40192
|
@references plans: plannerPlan[];
|
|
39879
40193
|
}
|
|
@@ -39894,6 +40208,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39894
40208
|
title: string;
|
|
39895
40209
|
@references buckets: plannerBucket[];
|
|
39896
40210
|
@contains details: plannerPlanDetails | null;
|
|
40211
|
+
|
|
40212
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40213
|
+
@references goals: plannerGoal[];
|
|
39897
40214
|
@references tasks: plannerTask[];
|
|
39898
40215
|
}
|
|
39899
40216
|
|
|
@@ -39934,6 +40251,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39934
40251
|
@computed createdDateTime: offsetDateTime | null;
|
|
39935
40252
|
creationSource: plannerTaskCreation | null;
|
|
39936
40253
|
dueDateTime: offsetDateTime | null;
|
|
40254
|
+
|
|
40255
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40256
|
+
goalIds: string[];
|
|
39937
40257
|
hasChat: boolean;
|
|
39938
40258
|
hasDescription: boolean | null;
|
|
39939
40259
|
isArchived: boolean | null;
|
|
@@ -41340,6 +41660,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41340
41660
|
/**
|
|
41341
41661
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
41342
41662
|
*/
|
|
41663
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41664
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41343
41665
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
41344
41666
|
/**
|
|
41345
41667
|
* The category name
|
|
@@ -41350,6 +41672,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41350
41672
|
/**
|
|
41351
41673
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
41352
41674
|
*/
|
|
41675
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41353
41676
|
@entity model securityBaselineDeviceState extends entity {
|
|
41354
41677
|
/**
|
|
41355
41678
|
* Display name of the device
|
|
@@ -41376,6 +41699,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41376
41699
|
/**
|
|
41377
41700
|
* The security baseline compliance state of a setting for a device
|
|
41378
41701
|
*/
|
|
41702
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41379
41703
|
@entity model securityBaselineSettingState extends entity {
|
|
41380
41704
|
/**
|
|
41381
41705
|
* The policies that contribute to this setting instance
|
|
@@ -41414,6 +41738,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41414
41738
|
/**
|
|
41415
41739
|
* Security baseline state for a device.
|
|
41416
41740
|
*/
|
|
41741
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41417
41742
|
@entity model securityBaselineState extends entity {
|
|
41418
41743
|
/**
|
|
41419
41744
|
* The display name of the security baseline
|
|
@@ -41434,12 +41759,15 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41434
41759
|
/**
|
|
41435
41760
|
* The security baseline state for different settings for a device
|
|
41436
41761
|
*/
|
|
41762
|
+
|
|
41763
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41437
41764
|
@contains settingStates: securityBaselineSettingState[];
|
|
41438
41765
|
}
|
|
41439
41766
|
|
|
41440
41767
|
/**
|
|
41441
41768
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
41442
41769
|
*/
|
|
41770
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41443
41771
|
@entity model securityBaselineStateSummary extends entity {
|
|
41444
41772
|
/**
|
|
41445
41773
|
* Number of conflict devices
|
|
@@ -41474,14 +41802,20 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41474
41802
|
/**
|
|
41475
41803
|
* The security baseline per category device state summary
|
|
41476
41804
|
*/
|
|
41805
|
+
|
|
41806
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41477
41807
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
41478
41808
|
/**
|
|
41479
41809
|
* The security baseline device states
|
|
41480
41810
|
*/
|
|
41811
|
+
|
|
41812
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41481
41813
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
41482
41814
|
/**
|
|
41483
41815
|
* The security baseline device state summary
|
|
41484
41816
|
*/
|
|
41817
|
+
|
|
41818
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41485
41819
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
41486
41820
|
}
|
|
41487
41821
|
|
|
@@ -45587,6 +45921,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
45587
45921
|
@entity model virtualEndpoint extends entity {
|
|
45588
45922
|
@contains auditEvents: cloudPcAuditEvent[];
|
|
45589
45923
|
@contains bulkActions: cloudPcBulkAction[];
|
|
45924
|
+
@contains cloudApps: cloudPcCloudApp[];
|
|
45590
45925
|
@contains cloudPCs: cloudPC[];
|
|
45591
45926
|
@contains deviceImages: cloudPcDeviceImage[];
|
|
45592
45927
|
@contains externalPartners: cloudPcExternalPartner[];
|
|
@@ -50439,7 +50774,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
50439
50774
|
*/
|
|
50440
50775
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
50441
50776
|
/**
|
|
50442
|
-
*
|
|
50777
|
+
* 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.
|
|
50778
|
+
*/
|
|
50779
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
50780
|
+
/**
|
|
50781
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
50443
50782
|
*/
|
|
50444
50783
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
50445
50784
|
/**
|
|
@@ -50447,7 +50786,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
50447
50786
|
*/
|
|
50448
50787
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
50449
50788
|
/**
|
|
50450
|
-
*
|
|
50789
|
+
* 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.
|
|
50790
|
+
*/
|
|
50791
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
50792
|
+
/**
|
|
50793
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
50451
50794
|
*/
|
|
50452
50795
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
50453
50796
|
/**
|
|
@@ -53899,18 +54242,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
53899
54242
|
*/
|
|
53900
54243
|
wpaPersonal: 4,
|
|
53901
54244
|
unknownFutureValue: 5,
|
|
53902
|
-
/**
|
|
53903
|
-
* 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.
|
|
53904
|
-
*/
|
|
53905
|
-
wpa2Personal: 6,
|
|
53906
|
-
/**
|
|
53907
|
-
* 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.
|
|
53908
|
-
*/
|
|
53909
|
-
wpa3Personal: 7,
|
|
53910
|
-
/**
|
|
53911
|
-
* 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.
|
|
53912
|
-
*/
|
|
53913
|
-
wpa3Enterprise: 8,
|
|
53914
54245
|
}
|
|
53915
54246
|
|
|
53916
54247
|
/**
|
|
@@ -54097,22 +54428,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54097
54428
|
*/
|
|
54098
54429
|
wpaEnterprise: 4,
|
|
54099
54430
|
unknownFutureValue: 5,
|
|
54100
|
-
/**
|
|
54101
|
-
* 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.
|
|
54102
|
-
*/
|
|
54103
|
-
wpa2Personal: 6,
|
|
54104
|
-
/**
|
|
54105
|
-
* 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.
|
|
54106
|
-
*/
|
|
54107
|
-
wpa2Enterprise: 7,
|
|
54108
|
-
/**
|
|
54109
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
54110
|
-
*/
|
|
54111
|
-
wpa3Personal: 8,
|
|
54112
|
-
/**
|
|
54113
|
-
* 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.
|
|
54114
|
-
*/
|
|
54115
|
-
wpa3Enterprise: 9,
|
|
54116
54431
|
}
|
|
54117
54432
|
|
|
54118
54433
|
/**
|
|
@@ -56081,6 +56396,26 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56081
56396
|
unknownFutureValue: 1,
|
|
56082
56397
|
}
|
|
56083
56398
|
|
|
56399
|
+
enum cloudPcCloudAppActionFailedErrorCode {
|
|
56400
|
+
cloudAppQuotaExceeded: 0,
|
|
56401
|
+
cloudPcLicenseNotFound: 1,
|
|
56402
|
+
internalServerError: 2,
|
|
56403
|
+
appDiscoveryFailed: 3,
|
|
56404
|
+
unknownFutureValue: 4,
|
|
56405
|
+
iconPathInvalid: 5,
|
|
56406
|
+
filePathInvalid: 6,
|
|
56407
|
+
}
|
|
56408
|
+
|
|
56409
|
+
enum cloudPcCloudAppStatus {
|
|
56410
|
+
preparing: 0,
|
|
56411
|
+
ready: 1,
|
|
56412
|
+
publishing: 2,
|
|
56413
|
+
published: 3,
|
|
56414
|
+
unpublishing: 4,
|
|
56415
|
+
failed: 5,
|
|
56416
|
+
unknownFutureValue: 6,
|
|
56417
|
+
}
|
|
56418
|
+
|
|
56084
56419
|
enum cloudPCConnectionQualityReportType {
|
|
56085
56420
|
remoteConnectionQualityReport: 0,
|
|
56086
56421
|
regionalConnectionQualityTrendReport: 1,
|
|
@@ -56470,6 +56805,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56470
56805
|
dedicated: 0,
|
|
56471
56806
|
shared: 1,
|
|
56472
56807
|
unknownFutureValue: 2,
|
|
56808
|
+
sharedByUser: 3,
|
|
56809
|
+
sharedByEntraGroup: 4,
|
|
56473
56810
|
reserve: 5,
|
|
56474
56811
|
}
|
|
56475
56812
|
|
|
@@ -56698,6 +57035,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56698
57035
|
unknownFutureValue: 2,
|
|
56699
57036
|
}
|
|
56700
57037
|
|
|
57038
|
+
enum cloudPcUserExperienceType {
|
|
57039
|
+
cloudPc: 0,
|
|
57040
|
+
cloudApp: 1,
|
|
57041
|
+
unknownFutureValue: 2,
|
|
57042
|
+
}
|
|
57043
|
+
|
|
56701
57044
|
enum cloudPcUserSettingsPersistenceStorageSizeCategory {
|
|
56702
57045
|
fourGB: 0,
|
|
56703
57046
|
eightGB: 1,
|
|
@@ -57251,6 +57594,29 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
57251
57594
|
applicationProxy: 0,
|
|
57252
57595
|
}
|
|
57253
57596
|
|
|
57597
|
+
/**
|
|
57598
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
57599
|
+
*/
|
|
57600
|
+
enum connectorHealthCheckMetricName {
|
|
57601
|
+
/**
|
|
57602
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
57603
|
+
*/
|
|
57604
|
+
caConnectivity: 0,
|
|
57605
|
+
/**
|
|
57606
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
57607
|
+
*/
|
|
57608
|
+
caIssuancePermissions: 1,
|
|
57609
|
+
/**
|
|
57610
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
57611
|
+
*/
|
|
57612
|
+
caRevocationPermissions: 2,
|
|
57613
|
+
/**
|
|
57614
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
57615
|
+
*/
|
|
57616
|
+
certificateTemplate: 3,
|
|
57617
|
+
unknownFutureValue: 4,
|
|
57618
|
+
}
|
|
57619
|
+
|
|
57254
57620
|
/**
|
|
57255
57621
|
* Connector health state for connector status
|
|
57256
57622
|
*/
|
|
@@ -57531,6 +57897,44 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
57531
57897
|
saturday: 6,
|
|
57532
57898
|
}
|
|
57533
57899
|
|
|
57900
|
+
/**
|
|
57901
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
57902
|
+
*/
|
|
57903
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
57904
|
+
/**
|
|
57905
|
+
* The device downloads apps of any size using a cellular network.
|
|
57906
|
+
*/
|
|
57907
|
+
alwaysOn: 0,
|
|
57908
|
+
/**
|
|
57909
|
+
* 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.
|
|
57910
|
+
*/
|
|
57911
|
+
alwaysOff: 1,
|
|
57912
|
+
/**
|
|
57913
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
57914
|
+
*/
|
|
57915
|
+
storeSettings: 2,
|
|
57916
|
+
unknownFutureValue: 3,
|
|
57917
|
+
}
|
|
57918
|
+
|
|
57919
|
+
/**
|
|
57920
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
57921
|
+
*/
|
|
57922
|
+
enum ddmAppAutomaticAppUpdates {
|
|
57923
|
+
/**
|
|
57924
|
+
* The device automatically updates the app to the latest version.
|
|
57925
|
+
*/
|
|
57926
|
+
alwaysOn: 0,
|
|
57927
|
+
/**
|
|
57928
|
+
* The device never automatically updates the app.
|
|
57929
|
+
*/
|
|
57930
|
+
alwaysOff: 1,
|
|
57931
|
+
/**
|
|
57932
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
57933
|
+
*/
|
|
57934
|
+
storeSettings: 2,
|
|
57935
|
+
unknownFutureValue: 3,
|
|
57936
|
+
}
|
|
57937
|
+
|
|
57534
57938
|
@graphFlags
|
|
57535
57939
|
enum decisionItemPrincipalResourceMembershipType {
|
|
57536
57940
|
direct: 1,
|
|
@@ -59699,6 +60103,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
59699
60103
|
* Indicates the settings that can be deployed through the Android channel.
|
|
59700
60104
|
*/
|
|
59701
60105
|
android: 65536,
|
|
60106
|
+
/**
|
|
60107
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
60108
|
+
*/
|
|
60109
|
+
intuneOpenExtensibility: 131072,
|
|
59702
60110
|
}
|
|
59703
60111
|
|
|
59704
60112
|
/**
|
|
@@ -62017,6 +62425,176 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
62017
62425
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
62018
62426
|
}
|
|
62019
62427
|
|
|
62428
|
+
/**
|
|
62429
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
62430
|
+
*/
|
|
62431
|
+
enum eSimProfileErrorDetail {
|
|
62432
|
+
/**
|
|
62433
|
+
* No error.
|
|
62434
|
+
*/
|
|
62435
|
+
none: 0,
|
|
62436
|
+
/**
|
|
62437
|
+
* The eSIM card encountered a general failure.
|
|
62438
|
+
*/
|
|
62439
|
+
cardGeneralFailure: 1,
|
|
62440
|
+
/**
|
|
62441
|
+
* The confirmation code provided was incorrect.
|
|
62442
|
+
*/
|
|
62443
|
+
confirmationCodeIncorrect: 2,
|
|
62444
|
+
/**
|
|
62445
|
+
* The confirmation code was missing.
|
|
62446
|
+
*/
|
|
62447
|
+
confirmationCodeMissing: 3,
|
|
62448
|
+
/**
|
|
62449
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
62450
|
+
*/
|
|
62451
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
62452
|
+
/**
|
|
62453
|
+
* The operation is forbidden by policy.
|
|
62454
|
+
*/
|
|
62455
|
+
forbiddenByPolicy: 5,
|
|
62456
|
+
/**
|
|
62457
|
+
* The matching ID provided was invalid.
|
|
62458
|
+
*/
|
|
62459
|
+
invalidMatchingId: 6,
|
|
62460
|
+
/**
|
|
62461
|
+
* No eligible eSIM profile was found for this device.
|
|
62462
|
+
*/
|
|
62463
|
+
noEligibleProfileForThisDevice: 7,
|
|
62464
|
+
/**
|
|
62465
|
+
* There was not enough space on the eSIM card.
|
|
62466
|
+
*/
|
|
62467
|
+
notEnoughSpaceOnCard: 8,
|
|
62468
|
+
/**
|
|
62469
|
+
* The operation was aborted.
|
|
62470
|
+
*/
|
|
62471
|
+
operationAborted: 9,
|
|
62472
|
+
/**
|
|
62473
|
+
* The eSIM profile EID did not match the device.
|
|
62474
|
+
*/
|
|
62475
|
+
profileEidMismatch: 10,
|
|
62476
|
+
/**
|
|
62477
|
+
* The eSIM profile is not available for a new binding.
|
|
62478
|
+
*/
|
|
62479
|
+
profileNotAvailableForNewBinding: 11,
|
|
62480
|
+
/**
|
|
62481
|
+
* The eSIM profile has not been released by the operator.
|
|
62482
|
+
*/
|
|
62483
|
+
profileNotReleasedByOperator: 12,
|
|
62484
|
+
/**
|
|
62485
|
+
* The remote server encountered a general failure.
|
|
62486
|
+
*/
|
|
62487
|
+
remoteServerGeneralFailure: 13,
|
|
62488
|
+
/**
|
|
62489
|
+
* The remote server was unreachable.
|
|
62490
|
+
*/
|
|
62491
|
+
remoteServerUnreachable: 14,
|
|
62492
|
+
/**
|
|
62493
|
+
* A timeout occurred while waiting for user consent.
|
|
62494
|
+
*/
|
|
62495
|
+
timeoutWaitingForUserConsent: 15,
|
|
62496
|
+
/**
|
|
62497
|
+
* The operation is prohibited by the eSIM profile class.
|
|
62498
|
+
*/
|
|
62499
|
+
operationProhibitedByProfileClass: 16,
|
|
62500
|
+
/**
|
|
62501
|
+
* The provisioning profile is not present.
|
|
62502
|
+
*/
|
|
62503
|
+
provisioningProfileNotPresent: 17,
|
|
62504
|
+
/**
|
|
62505
|
+
* There is no corresponding request for this operation.
|
|
62506
|
+
*/
|
|
62507
|
+
noCorrespondingRequest: 18,
|
|
62508
|
+
/**
|
|
62509
|
+
* A timeout occurred while waiting for a response.
|
|
62510
|
+
*/
|
|
62511
|
+
timeoutWaitingForResponse: 19,
|
|
62512
|
+
/**
|
|
62513
|
+
* The ICCID already exists on the device.
|
|
62514
|
+
*/
|
|
62515
|
+
iccidAlreadyExists: 20,
|
|
62516
|
+
/**
|
|
62517
|
+
* An error occurred while processing the eSIM profile.
|
|
62518
|
+
*/
|
|
62519
|
+
profileProcessingError: 21,
|
|
62520
|
+
/**
|
|
62521
|
+
* The remote server is not trusted.
|
|
62522
|
+
*/
|
|
62523
|
+
remoteServerNotTrusted: 22,
|
|
62524
|
+
/**
|
|
62525
|
+
* The maximum number of retries for profile download was exceeded.
|
|
62526
|
+
*/
|
|
62527
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
62528
|
+
/**
|
|
62529
|
+
* The WinHTTP name could not be resolved.
|
|
62530
|
+
*/
|
|
62531
|
+
winhttpNameNotResolved: 24,
|
|
62532
|
+
/**
|
|
62533
|
+
* The WinHTTP operation was cancelled.
|
|
62534
|
+
*/
|
|
62535
|
+
winhttpOperationCancelled: 25,
|
|
62536
|
+
/**
|
|
62537
|
+
* The status is unspecified.
|
|
62538
|
+
*/
|
|
62539
|
+
statusUnspecified: 26,
|
|
62540
|
+
/**
|
|
62541
|
+
* The operation is in progress.
|
|
62542
|
+
*/
|
|
62543
|
+
inProgress: 27,
|
|
62544
|
+
/**
|
|
62545
|
+
* The operation is pending user action.
|
|
62546
|
+
*/
|
|
62547
|
+
pendingUserAction: 28,
|
|
62548
|
+
/**
|
|
62549
|
+
* An error occurred while setup was in progress.
|
|
62550
|
+
*/
|
|
62551
|
+
errorSetupInProgress: 29,
|
|
62552
|
+
/**
|
|
62553
|
+
* The user denied the operation.
|
|
62554
|
+
*/
|
|
62555
|
+
errorUserDenied: 30,
|
|
62556
|
+
/**
|
|
62557
|
+
* An internal error occurred.
|
|
62558
|
+
*/
|
|
62559
|
+
internalError: 31,
|
|
62560
|
+
/**
|
|
62561
|
+
* The ICCID was not found.
|
|
62562
|
+
*/
|
|
62563
|
+
errorIccIdNotFound: 32,
|
|
62564
|
+
/**
|
|
62565
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
62566
|
+
*/
|
|
62567
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
62568
|
+
unknownFutureValue: 34,
|
|
62569
|
+
}
|
|
62570
|
+
|
|
62571
|
+
/**
|
|
62572
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
62573
|
+
*/
|
|
62574
|
+
enum eSimProfileState {
|
|
62575
|
+
/**
|
|
62576
|
+
* Unknown state.
|
|
62577
|
+
*/
|
|
62578
|
+
`unknown`: 0,
|
|
62579
|
+
/**
|
|
62580
|
+
* The eSIM profile is being installed.
|
|
62581
|
+
*/
|
|
62582
|
+
installing: 1,
|
|
62583
|
+
/**
|
|
62584
|
+
* The eSIM profile has been successfully installed.
|
|
62585
|
+
*/
|
|
62586
|
+
installed: 2,
|
|
62587
|
+
/**
|
|
62588
|
+
* The eSIM profile is being deleted.
|
|
62589
|
+
*/
|
|
62590
|
+
deleting: 3,
|
|
62591
|
+
/**
|
|
62592
|
+
* An error occurred while processing the eSIM profile.
|
|
62593
|
+
*/
|
|
62594
|
+
error: 4,
|
|
62595
|
+
unknownFutureValue: 5,
|
|
62596
|
+
}
|
|
62597
|
+
|
|
62020
62598
|
enum evaluationScopeType {
|
|
62021
62599
|
tenant: 0,
|
|
62022
62600
|
agent: 1,
|
|
@@ -65452,6 +66030,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
65452
66030
|
userRequestedInstall: 5,
|
|
65453
66031
|
}
|
|
65454
66032
|
|
|
66033
|
+
/**
|
|
66034
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
66035
|
+
*/
|
|
66036
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
66037
|
+
apkIsInvalid: 1,
|
|
66038
|
+
apkIsMissingSignerCertificates: 2,
|
|
66039
|
+
apkHasInvalidPackageName: 3,
|
|
66040
|
+
apkPackageNameMismatch: 4,
|
|
66041
|
+
apkHasInvalidVersionCode: 5,
|
|
66042
|
+
apkHasVersionCodeMismatch: 6,
|
|
66043
|
+
apkHasInvalidMinSdk: 7,
|
|
66044
|
+
apkMinSdkMismatch: 8,
|
|
66045
|
+
apkVersionNameMismatch: 9,
|
|
66046
|
+
unknownFutureValue: 10,
|
|
66047
|
+
}
|
|
66048
|
+
|
|
65455
66049
|
/**
|
|
65456
66050
|
* Contains properties for upload request states.
|
|
65457
66051
|
*/
|
|
@@ -65660,6 +66254,33 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
65660
66254
|
WriteOnly: 3,
|
|
65661
66255
|
}
|
|
65662
66256
|
|
|
66257
|
+
/**
|
|
66258
|
+
* The health status of an NDES connector or individual health check metric.
|
|
66259
|
+
*/
|
|
66260
|
+
enum ndesConnectorHealthStatus {
|
|
66261
|
+
/**
|
|
66262
|
+
* Health has not been evaluated yet for this connector.
|
|
66263
|
+
*/
|
|
66264
|
+
`unknown`: 0,
|
|
66265
|
+
/**
|
|
66266
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
66267
|
+
*/
|
|
66268
|
+
noActionRequired: 1,
|
|
66269
|
+
/**
|
|
66270
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
66271
|
+
*/
|
|
66272
|
+
attentionRequired: 2,
|
|
66273
|
+
/**
|
|
66274
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
66275
|
+
*/
|
|
66276
|
+
actionRequired: 3,
|
|
66277
|
+
/**
|
|
66278
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
66279
|
+
*/
|
|
66280
|
+
disconnected: 4,
|
|
66281
|
+
unknownFutureValue: 5,
|
|
66282
|
+
}
|
|
66283
|
+
|
|
65663
66284
|
/**
|
|
65664
66285
|
* The current status of the Ndes Connector.
|
|
65665
66286
|
*/
|
|
@@ -66520,6 +67141,15 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
66520
67141
|
unknownFutureValue: 3,
|
|
66521
67142
|
}
|
|
66522
67143
|
|
|
67144
|
+
enum plannerGoalStatus {
|
|
67145
|
+
notStarted: 0,
|
|
67146
|
+
onTrack: 1,
|
|
67147
|
+
behind: 2,
|
|
67148
|
+
atRisk: 3,
|
|
67149
|
+
closed: 4,
|
|
67150
|
+
unknownFutureValue: 5,
|
|
67151
|
+
}
|
|
67152
|
+
|
|
66523
67153
|
enum plannerPlanAccessLevel {
|
|
66524
67154
|
readAccess: 0,
|
|
66525
67155
|
readWriteAccess: 1,
|
|
@@ -68974,6 +69604,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68974
69604
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
68975
69605
|
*/
|
|
68976
69606
|
restoreManagedHomeScreen: 42,
|
|
69607
|
+
/**
|
|
69608
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
69609
|
+
*/
|
|
69610
|
+
triggerEnhancedLogCollection: 44,
|
|
69611
|
+
/**
|
|
69612
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
69613
|
+
*/
|
|
69614
|
+
cancelEnhancedLogCollection: 45,
|
|
68977
69615
|
}
|
|
68978
69616
|
|
|
68979
69617
|
/**
|
|
@@ -69010,6 +69648,25 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69010
69648
|
enabled: 2,
|
|
69011
69649
|
}
|
|
69012
69650
|
|
|
69651
|
+
/**
|
|
69652
|
+
* Enumeration indicating the state of session recording
|
|
69653
|
+
*/
|
|
69654
|
+
enum remoteHelpRecordingState {
|
|
69655
|
+
/**
|
|
69656
|
+
* Recording is not enabled for this session.
|
|
69657
|
+
*/
|
|
69658
|
+
notEnabled: 0,
|
|
69659
|
+
/**
|
|
69660
|
+
* Recording is in progress.
|
|
69661
|
+
*/
|
|
69662
|
+
recording: 1,
|
|
69663
|
+
/**
|
|
69664
|
+
* Recording failed.
|
|
69665
|
+
*/
|
|
69666
|
+
failed: 2,
|
|
69667
|
+
unknownFutureValue: 3,
|
|
69668
|
+
}
|
|
69669
|
+
|
|
69013
69670
|
enum replyRestriction {
|
|
69014
69671
|
everyone: 0,
|
|
69015
69672
|
authorAndModerators: 1,
|
|
@@ -69317,6 +69974,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69317
69974
|
* App was removed in order to install a superseding app.
|
|
69318
69975
|
*/
|
|
69319
69976
|
appRemovedBySupersedence: 3005,
|
|
69977
|
+
/**
|
|
69978
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
69979
|
+
*/
|
|
69980
|
+
dependencyAppInUse: 3006,
|
|
69320
69981
|
/**
|
|
69321
69982
|
* Application failed to uninstall. See error code property for more details.
|
|
69322
69983
|
*/
|
|
@@ -69333,6 +69994,18 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69333
69994
|
* Application content was downloaded to the device.
|
|
69334
69995
|
*/
|
|
69335
69996
|
contentDownloaded: 5002,
|
|
69997
|
+
/**
|
|
69998
|
+
* App enforcement is pending because the app is currently in use.
|
|
69999
|
+
*/
|
|
70000
|
+
inUse: 5005,
|
|
70001
|
+
/**
|
|
70002
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
70003
|
+
*/
|
|
70004
|
+
deferred: 5006,
|
|
70005
|
+
/**
|
|
70006
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
70007
|
+
*/
|
|
70008
|
+
autoDeferred: 5007,
|
|
69336
70009
|
}
|
|
69337
70010
|
|
|
69338
70011
|
enum riskDetail {
|
|
@@ -72001,10 +72674,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72001
72674
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
72002
72675
|
*/
|
|
72003
72676
|
wpa3Personal: 7,
|
|
72004
|
-
/**
|
|
72005
|
-
* 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.
|
|
72006
|
-
*/
|
|
72007
|
-
wpa3Enterprise: 8,
|
|
72008
72677
|
}
|
|
72009
72678
|
|
|
72010
72679
|
/**
|
|
@@ -72436,6 +73105,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72436
73105
|
/**
|
|
72437
73106
|
* Contains rule types for Win32 LOB apps.
|
|
72438
73107
|
*/
|
|
73108
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
72439
73109
|
enum win32LobAppRuleType {
|
|
72440
73110
|
/**
|
|
72441
73111
|
* Detection rule.
|
|
@@ -72445,11 +73115,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72445
73115
|
* Requirement rule.
|
|
72446
73116
|
*/
|
|
72447
73117
|
requirement: 1,
|
|
72448
|
-
/**
|
|
72449
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
72450
|
-
*/
|
|
72451
|
-
inUse: 2,
|
|
72452
|
-
unknownFutureValue: 3,
|
|
72453
73118
|
}
|
|
72454
73119
|
|
|
72455
73120
|
/**
|
|
@@ -73891,7 +74556,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
73891
74556
|
/**
|
|
73892
74557
|
* Data can be transferred from/to these classes of apps
|
|
73893
74558
|
*/
|
|
73894
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
73895
74559
|
enum windowsManagedAppDataTransferLevel {
|
|
73896
74560
|
/**
|
|
73897
74561
|
* All apps.
|
|
@@ -73901,6 +74565,27 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
73901
74565
|
* No apps.
|
|
73902
74566
|
*/
|
|
73903
74567
|
none: 1,
|
|
74568
|
+
/**
|
|
74569
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
74570
|
+
*/
|
|
74571
|
+
selectedApps: 2,
|
|
74572
|
+
unknownFutureValue: 3,
|
|
74573
|
+
}
|
|
74574
|
+
|
|
74575
|
+
/**
|
|
74576
|
+
* Windows MAM data transfer locations
|
|
74577
|
+
*/
|
|
74578
|
+
@graphFlags
|
|
74579
|
+
enum windowsManagedAppDataTransferLocations {
|
|
74580
|
+
/**
|
|
74581
|
+
* No locations selected.
|
|
74582
|
+
*/
|
|
74583
|
+
none: 0,
|
|
74584
|
+
/**
|
|
74585
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
74586
|
+
*/
|
|
74587
|
+
oneDriveForBusiness: 1,
|
|
74588
|
+
unknownFutureValue: 2,
|
|
73904
74589
|
}
|
|
73905
74590
|
|
|
73906
74591
|
/**
|