@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11
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 +17 -17
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +1011 -52
- package/lib/Bleu/V1.0/main.tsp +27 -2
- package/lib/Delos/Beta/main.tsp +1704 -51
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +865 -55
- package/lib/Fairfax/V1.0/main.tsp +93 -3
- package/lib/GovSG/Beta/main.tsp +28 -0
- package/lib/Mooncake/Beta/main.tsp +709 -52
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1190 -332
- package/lib/Prod/V1.0/main.tsp +310 -2
- package/lib/USNat/Beta/main.tsp +145 -9
- package/lib/USNat/V1.0/main.tsp +91 -1
- package/lib/USSec/Beta/main.tsp +145 -9
- package/lib/USSec/V1.0/main.tsp +91 -1
- 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
|
/**
|
|
@@ -7227,12 +7286,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7227
7286
|
itemMajorVersionLimit: int32 | null;
|
|
7228
7287
|
}
|
|
7229
7288
|
|
|
7230
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
7231
|
-
chatEmbedAllowedHosts: string[];
|
|
7232
|
-
}
|
|
7233
|
-
|
|
7234
7289
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
7235
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
7236
7290
|
isDiscoverabilityEnabled: boolean | null;
|
|
7237
7291
|
isItemVersioningEnabled: boolean | null;
|
|
7238
7292
|
isSearchEnabled: boolean | null;
|
|
@@ -7244,7 +7298,6 @@ namespace reference.`microsoft.graph` {
|
|
|
7244
7298
|
}
|
|
7245
7299
|
|
|
7246
7300
|
@complex model fileStorageContainerTypeSettings {
|
|
7247
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
7248
7301
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
7249
7302
|
isDiscoverabilityEnabled: boolean | null;
|
|
7250
7303
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -8078,10 +8131,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8078
8131
|
* 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
8132
|
*/
|
|
8080
8133
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8134
|
+
cellularSliceConfigurationId: string | null;
|
|
8135
|
+
contentFilterConfigurationId: string | null;
|
|
8136
|
+
/**
|
|
8137
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8138
|
+
*/
|
|
8139
|
+
ddmAppConfigId: guid | null;
|
|
8140
|
+
dnsProxyConfigurationId: string | null;
|
|
8081
8141
|
/**
|
|
8082
8142
|
* 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
8143
|
*/
|
|
8084
8144
|
preventManagedAppBackup: boolean | null;
|
|
8145
|
+
relayConfigurationId: string | null;
|
|
8085
8146
|
/**
|
|
8086
8147
|
* 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
8148
|
*/
|
|
@@ -8092,6 +8153,122 @@ namespace reference.`microsoft.graph` {
|
|
|
8092
8153
|
vpnConfigurationId: string | null;
|
|
8093
8154
|
}
|
|
8094
8155
|
|
|
8156
|
+
/**
|
|
8157
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
8158
|
+
*/
|
|
8159
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8160
|
+
/**
|
|
8161
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8162
|
+
*/
|
|
8163
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
8164
|
+
/**
|
|
8165
|
+
* Domain names to associate with the app
|
|
8166
|
+
*/
|
|
8167
|
+
associatedDomains: string[] | null;
|
|
8168
|
+
/**
|
|
8169
|
+
* 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.
|
|
8170
|
+
*/
|
|
8171
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8172
|
+
/**
|
|
8173
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8174
|
+
*/
|
|
8175
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8176
|
+
/**
|
|
8177
|
+
* 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'.
|
|
8178
|
+
*/
|
|
8179
|
+
cellularSliceConfigurationId: string | null;
|
|
8180
|
+
/**
|
|
8181
|
+
* The unique identifier of the content filter to associate with the app.
|
|
8182
|
+
*/
|
|
8183
|
+
contentFilterConfigurationId: string | null;
|
|
8184
|
+
/**
|
|
8185
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
8186
|
+
*/
|
|
8187
|
+
dnsProxyConfigurationId: string | null;
|
|
8188
|
+
/**
|
|
8189
|
+
* 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.
|
|
8190
|
+
*/
|
|
8191
|
+
preventManagedAppBackup: boolean | null;
|
|
8192
|
+
/**
|
|
8193
|
+
* The unique identifier of the relay to associate with the app.
|
|
8194
|
+
*/
|
|
8195
|
+
relayConfigurationId: string | null;
|
|
8196
|
+
/**
|
|
8197
|
+
* 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.
|
|
8198
|
+
*/
|
|
8199
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
8200
|
+
/**
|
|
8201
|
+
* 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.
|
|
8202
|
+
*/
|
|
8203
|
+
version: int32 | null;
|
|
8204
|
+
/**
|
|
8205
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
8206
|
+
*/
|
|
8207
|
+
vpnConfigurationId: string | null;
|
|
8208
|
+
}
|
|
8209
|
+
|
|
8210
|
+
/**
|
|
8211
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
8212
|
+
*/
|
|
8213
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8214
|
+
/**
|
|
8215
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8216
|
+
*/
|
|
8217
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
8218
|
+
/**
|
|
8219
|
+
* Domain names to associate with the app
|
|
8220
|
+
*/
|
|
8221
|
+
associatedDomains: string[] | null;
|
|
8222
|
+
/**
|
|
8223
|
+
* 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.
|
|
8224
|
+
*/
|
|
8225
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
8226
|
+
/**
|
|
8227
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8228
|
+
*/
|
|
8229
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8230
|
+
/**
|
|
8231
|
+
* 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'.
|
|
8232
|
+
*/
|
|
8233
|
+
cellularSliceConfigurationId: string | null;
|
|
8234
|
+
/**
|
|
8235
|
+
* The unique identifier of the content filter to associate with the app.
|
|
8236
|
+
*/
|
|
8237
|
+
contentFilterConfigurationId: string | null;
|
|
8238
|
+
/**
|
|
8239
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8240
|
+
*/
|
|
8241
|
+
ddmAppConfigId: guid | null;
|
|
8242
|
+
/**
|
|
8243
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
8244
|
+
*/
|
|
8245
|
+
dnsProxyConfigurationId: string | null;
|
|
8246
|
+
/**
|
|
8247
|
+
* 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.
|
|
8248
|
+
*/
|
|
8249
|
+
preventManagedAppBackup: boolean | null;
|
|
8250
|
+
/**
|
|
8251
|
+
* The unique identifier of the relay to associate with the app.
|
|
8252
|
+
*/
|
|
8253
|
+
relayConfigurationId: string | null;
|
|
8254
|
+
/**
|
|
8255
|
+
* 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.
|
|
8256
|
+
*/
|
|
8257
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
8258
|
+
/**
|
|
8259
|
+
* Whether or not to use device licensing.
|
|
8260
|
+
*/
|
|
8261
|
+
useDeviceLicensing: boolean;
|
|
8262
|
+
/**
|
|
8263
|
+
* 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.
|
|
8264
|
+
*/
|
|
8265
|
+
version: int32 | null;
|
|
8266
|
+
/**
|
|
8267
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
8268
|
+
*/
|
|
8269
|
+
vpnConfigurationId: string | null;
|
|
8270
|
+
}
|
|
8271
|
+
|
|
8095
8272
|
/**
|
|
8096
8273
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
8097
8274
|
*/
|
|
@@ -9249,6 +9426,32 @@ namespace reference.`microsoft.graph` {
|
|
|
9249
9426
|
teamIdentifier: string;
|
|
9250
9427
|
}
|
|
9251
9428
|
|
|
9429
|
+
/**
|
|
9430
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
9431
|
+
*/
|
|
9432
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
9433
|
+
/**
|
|
9434
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
9435
|
+
*/
|
|
9436
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
9437
|
+
/**
|
|
9438
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
9439
|
+
*/
|
|
9440
|
+
ddmAppConfigId: guid | null;
|
|
9441
|
+
/**
|
|
9442
|
+
* 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.
|
|
9443
|
+
*/
|
|
9444
|
+
isIosApp: boolean | null;
|
|
9445
|
+
/**
|
|
9446
|
+
* 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.
|
|
9447
|
+
*/
|
|
9448
|
+
useDeviceLicensing: boolean;
|
|
9449
|
+
/**
|
|
9450
|
+
* 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.
|
|
9451
|
+
*/
|
|
9452
|
+
version: int32 | null;
|
|
9453
|
+
}
|
|
9454
|
+
|
|
9252
9455
|
/**
|
|
9253
9456
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
9254
9457
|
*/
|
|
@@ -10586,6 +10789,13 @@ namespace reference.`microsoft.graph` {
|
|
|
10586
10789
|
networkType: networkType | null;
|
|
10587
10790
|
}
|
|
10588
10791
|
|
|
10792
|
+
@complex model nistClassification {
|
|
10793
|
+
category: string;
|
|
10794
|
+
description: string | null;
|
|
10795
|
+
function: string | null;
|
|
10796
|
+
name: string;
|
|
10797
|
+
}
|
|
10798
|
+
|
|
10589
10799
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
10590
10800
|
}
|
|
10591
10801
|
|
|
@@ -10815,8 +11025,26 @@ namespace reference.`microsoft.graph` {
|
|
|
10815
11025
|
internalUrl: string | null;
|
|
10816
11026
|
}
|
|
10817
11027
|
|
|
11028
|
+
@complex model onPremisesCurrentExportData {
|
|
11029
|
+
clientMachineName: string | null;
|
|
11030
|
+
pendingObjectsAddition: int32 | null;
|
|
11031
|
+
pendingObjectsDeletion: int32 | null;
|
|
11032
|
+
pendingObjectsUpdate: int32 | null;
|
|
11033
|
+
serviceAccount: string | null;
|
|
11034
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
11035
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
11036
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
11037
|
+
}
|
|
11038
|
+
|
|
10818
11039
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
10819
11040
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
11041
|
+
anchorAttribute: string | null;
|
|
11042
|
+
applicationId: string | null;
|
|
11043
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
11044
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
11045
|
+
synchronizationClientVersion: string | null;
|
|
11046
|
+
synchronizationInterval: duration | null;
|
|
11047
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
10820
11048
|
}
|
|
10821
11049
|
|
|
10822
11050
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -10877,6 +11105,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10877
11105
|
isAccessibleViaZTNAClient: boolean | null;
|
|
10878
11106
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
10879
11107
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
11108
|
+
isDeviceAccessEnabled: boolean;
|
|
10880
11109
|
isDnsResolutionEnabled: boolean | null;
|
|
10881
11110
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
10882
11111
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -10903,6 +11132,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10903
11132
|
singleSignOnMode: singleSignOnMode | null;
|
|
10904
11133
|
}
|
|
10905
11134
|
|
|
11135
|
+
@complex model onPremisesWritebackConfiguration {
|
|
11136
|
+
unifiedGroupContainer: string | null;
|
|
11137
|
+
userContainer: string | null;
|
|
11138
|
+
}
|
|
11139
|
+
|
|
10906
11140
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
10907
11141
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
10908
11142
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -12975,6 +13209,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
12975
13209
|
searchablePlainTexts: metaDataKeyStringPair[] | null;
|
|
12976
13210
|
}
|
|
12977
13211
|
|
|
13212
|
+
@complex model serviceActivityPerformanceMetric {
|
|
13213
|
+
intervalStartDateTime: offsetDateTime;
|
|
13214
|
+
percentage: float64;
|
|
13215
|
+
}
|
|
13216
|
+
|
|
12978
13217
|
@complex model serviceActivityValueMetric {
|
|
12979
13218
|
intervalStartDateTime: offsetDateTime;
|
|
12980
13219
|
value: int64;
|
|
@@ -14028,6 +14267,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
14028
14267
|
timeslots: timeSlot[] | null;
|
|
14029
14268
|
}
|
|
14030
14269
|
|
|
14270
|
+
@complex model timeOffDetails {
|
|
14271
|
+
isAllDay: boolean;
|
|
14272
|
+
subject: string | null;
|
|
14273
|
+
}
|
|
14274
|
+
|
|
14031
14275
|
/**
|
|
14032
14276
|
* Parameter passed to GetHealthMetricTimeSeries when requesting snapshot time series.
|
|
14033
14277
|
*/
|
|
@@ -17782,6 +18026,9 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17782
18026
|
@entity model agentIdentity extends servicePrincipal {
|
|
17783
18027
|
agentIdentityBlueprintId: string;
|
|
17784
18028
|
@computed createdDateTime: offsetDateTime | null;
|
|
18029
|
+
managerApplications: guid;
|
|
18030
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
18031
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
17785
18032
|
@references sponsors: directoryObject[];
|
|
17786
18033
|
}
|
|
17787
18034
|
|
|
@@ -17793,6 +18040,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17793
18040
|
|
|
17794
18041
|
@open
|
|
17795
18042
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
18043
|
+
managerApplications: guid;
|
|
17796
18044
|
@references sponsors: directoryObject[];
|
|
17797
18045
|
}
|
|
17798
18046
|
|
|
@@ -20474,6 +20722,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
20474
20722
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
20475
20723
|
*/
|
|
20476
20724
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
20725
|
+
/**
|
|
20726
|
+
* 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.
|
|
20727
|
+
*/
|
|
20728
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
20477
20729
|
/**
|
|
20478
20730
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
20479
20731
|
*/
|
|
@@ -22169,10 +22421,18 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22169
22421
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
22170
22422
|
*/
|
|
22171
22423
|
excludedDomains: string[] | null;
|
|
22424
|
+
/**
|
|
22425
|
+
* 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.
|
|
22426
|
+
*/
|
|
22427
|
+
excludeLocalNetworks: boolean | null;
|
|
22172
22428
|
/**
|
|
22173
22429
|
* 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
22430
|
*/
|
|
22175
22431
|
identifier: string | null;
|
|
22432
|
+
/**
|
|
22433
|
+
* 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.
|
|
22434
|
+
*/
|
|
22435
|
+
includeAllNetworks: boolean | null;
|
|
22176
22436
|
/**
|
|
22177
22437
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
22178
22438
|
*/
|
|
@@ -23272,11 +23532,13 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23272
23532
|
body: chatMessageBody;
|
|
23273
23533
|
channelIdentity: channelIdentity | null;
|
|
23274
23534
|
chatId: string | null;
|
|
23535
|
+
citations: chatMessageCitation[] | null;
|
|
23275
23536
|
@computed createdDateTime: offsetDateTime | null;
|
|
23276
23537
|
deletedDateTime: offsetDateTime | null;
|
|
23277
23538
|
etag: string | null;
|
|
23278
23539
|
eventDetail: eventMessageDetail | null;
|
|
23279
23540
|
from: chatMessageFromIdentitySet | null;
|
|
23541
|
+
hasReplies: boolean;
|
|
23280
23542
|
importance: chatMessageImportance;
|
|
23281
23543
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
23282
23544
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -23716,6 +23978,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23716
23978
|
statusDetails: cloudPcStatusDetails | null;
|
|
23717
23979
|
userAccountType: cloudPcUserAccountType | null;
|
|
23718
23980
|
userDetail: cloudPcEntraUserDetail | null;
|
|
23981
|
+
userExperienceType: cloudPcUserExperienceType | null;
|
|
23719
23982
|
userPrincipalName: string | null;
|
|
23720
23983
|
}
|
|
23721
23984
|
|
|
@@ -23783,6 +24046,21 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23783
24046
|
@entity model cloudPcBulkTroubleshoot extends cloudPcBulkAction {
|
|
23784
24047
|
}
|
|
23785
24048
|
|
|
24049
|
+
@entity model cloudPcCloudApp extends entity {
|
|
24050
|
+
actionFailedErrorCode: cloudPcCloudAppActionFailedErrorCode | null;
|
|
24051
|
+
actionFailedErrorMessage: string | null;
|
|
24052
|
+
addedDateTime: offsetDateTime | null;
|
|
24053
|
+
appDetail: cloudPcCloudAppDetail;
|
|
24054
|
+
appStatus: cloudPcCloudAppStatus;
|
|
24055
|
+
availableToUser: boolean;
|
|
24056
|
+
description: string | null;
|
|
24057
|
+
discoveredAppName: string;
|
|
24058
|
+
displayName: string;
|
|
24059
|
+
@computed lastPublishedDateTime: offsetDateTime | null;
|
|
24060
|
+
provisioningPolicyId: string;
|
|
24061
|
+
scopeIds: string[] | null;
|
|
24062
|
+
}
|
|
24063
|
+
|
|
23786
24064
|
/**
|
|
23787
24065
|
* The user experience analyte connectivity issue entity.
|
|
23788
24066
|
*/
|
|
@@ -23952,6 +24230,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23952
24230
|
provisioningType: cloudPcProvisioningType | null;
|
|
23953
24231
|
scopeIds: string[] | null;
|
|
23954
24232
|
snapshotResetMode: cloudPcSnapshotResetMode;
|
|
24233
|
+
userExperienceType: cloudPcUserExperienceType | null;
|
|
23955
24234
|
userSettingsPersistenceConfiguration: cloudPcUserSettingsPersistenceConfiguration | null;
|
|
23956
24235
|
windowsSetting: cloudPcWindowsSetting | null;
|
|
23957
24236
|
|
|
@@ -25687,7 +25966,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
25687
25966
|
/**
|
|
25688
25967
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
25689
25968
|
*/
|
|
25690
|
-
@entity model deviceAppManagement extends entity {
|
|
25969
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
25691
25970
|
/**
|
|
25692
25971
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
25693
25972
|
*/
|
|
@@ -26261,7 +26540,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26261
26540
|
*/
|
|
26262
26541
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
26263
26542
|
/**
|
|
26264
|
-
* Indicates the
|
|
26543
|
+
* 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
26544
|
*/
|
|
26266
26545
|
platform: deviceComplianceScriptPlatformType | null;
|
|
26267
26546
|
/**
|
|
@@ -26273,7 +26552,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26273
26552
|
*/
|
|
26274
26553
|
roleScopeTagIds: string[] | null;
|
|
26275
26554
|
/**
|
|
26276
|
-
*
|
|
26555
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
26277
26556
|
*/
|
|
26278
26557
|
runAs32Bit: boolean;
|
|
26279
26558
|
/**
|
|
@@ -26787,6 +27066,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26787
27066
|
successCount: int32;
|
|
26788
27067
|
}
|
|
26789
27068
|
|
|
27069
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
26790
27070
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
26791
27071
|
/**
|
|
26792
27072
|
* Number of compliant users
|
|
@@ -27757,6 +28037,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
27757
28037
|
/**
|
|
27758
28038
|
* The device configuration user state summary for this account.
|
|
27759
28039
|
*/
|
|
28040
|
+
|
|
28041
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
27760
28042
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
27761
28043
|
/**
|
|
27762
28044
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -32213,6 +32495,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32213
32495
|
resourceType: string;
|
|
32214
32496
|
status: recommendationStatus;
|
|
32215
32497
|
subjectId: string;
|
|
32498
|
+
@contains tags: recommendationTag[];
|
|
32216
32499
|
}
|
|
32217
32500
|
|
|
32218
32501
|
/**
|
|
@@ -34234,6 +34517,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34234
34517
|
* Contains properties and inherited properties for iOS store apps.
|
|
34235
34518
|
*/
|
|
34236
34519
|
@entity model iosStoreApp extends mobileApp {
|
|
34520
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
34237
34521
|
/**
|
|
34238
34522
|
* The iOS architecture for which this app can run on.
|
|
34239
34523
|
*/
|
|
@@ -34401,6 +34685,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34401
34685
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
34402
34686
|
*/
|
|
34403
34687
|
@entity model iosVppApp extends mobileApp {
|
|
34688
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
34404
34689
|
/**
|
|
34405
34690
|
* The applicable iOS Device Type.
|
|
34406
34691
|
*/
|
|
@@ -36087,6 +36372,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36087
36372
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
36088
36373
|
*/
|
|
36089
36374
|
@entity model macOsVppApp extends mobileApp {
|
|
36375
|
+
/**
|
|
36376
|
+
* 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.
|
|
36377
|
+
*/
|
|
36378
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
36090
36379
|
/**
|
|
36091
36380
|
* The store URL.
|
|
36092
36381
|
*/
|
|
@@ -36225,6 +36514,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36225
36514
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
36226
36515
|
*/
|
|
36227
36516
|
ssid: string;
|
|
36517
|
+
/**
|
|
36518
|
+
* 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.
|
|
36519
|
+
*/
|
|
36520
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
36228
36521
|
/**
|
|
36229
36522
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
36230
36523
|
*/
|
|
@@ -37248,6 +37541,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
37248
37541
|
/**
|
|
37249
37542
|
* Security baseline states for this device.
|
|
37250
37543
|
*/
|
|
37544
|
+
|
|
37545
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37251
37546
|
@contains securityBaselineStates: securityBaselineState[];
|
|
37252
37547
|
/**
|
|
37253
37548
|
* The primary users associated with the managed device.
|
|
@@ -38537,6 +38832,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38537
38832
|
* Indicates the size of the file after encryption, in bytes.
|
|
38538
38833
|
*/
|
|
38539
38834
|
sizeEncrypted: int64;
|
|
38835
|
+
/**
|
|
38836
|
+
* 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.
|
|
38837
|
+
*/
|
|
38838
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
38540
38839
|
/**
|
|
38541
38840
|
* 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
38841
|
*/
|
|
@@ -39009,6 +39308,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39009
39308
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
39010
39309
|
*/
|
|
39011
39310
|
enrolledDateTime: offsetDateTime;
|
|
39311
|
+
/**
|
|
39312
|
+
* 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.
|
|
39313
|
+
*/
|
|
39314
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
39315
|
+
/**
|
|
39316
|
+
* 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.
|
|
39317
|
+
*/
|
|
39318
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
39012
39319
|
/**
|
|
39013
39320
|
* Last connection time for the Ndes Connector
|
|
39014
39321
|
*/
|
|
@@ -39845,8 +40152,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39845
40152
|
status: placeOperationStatus;
|
|
39846
40153
|
}
|
|
39847
40154
|
|
|
39848
|
-
@entity model planner extends entity {
|
|
40155
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
39849
40156
|
@contains buckets: plannerBucket[];
|
|
40157
|
+
|
|
40158
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40159
|
+
@contains goals: plannerGoal[];
|
|
39850
40160
|
@contains plans: plannerPlan[];
|
|
39851
40161
|
@contains rosters: plannerRoster[];
|
|
39852
40162
|
@contains tasks: plannerTask[];
|
|
@@ -39874,6 +40184,18 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39874
40184
|
@entity model plannerDelta extends entity {
|
|
39875
40185
|
}
|
|
39876
40186
|
|
|
40187
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40188
|
+
@entity model plannerGoal extends plannerDelta {
|
|
40189
|
+
displayName: string;
|
|
40190
|
+
finishDate: offsetDateTime | null;
|
|
40191
|
+
notes: itemBody | null;
|
|
40192
|
+
planId: string;
|
|
40193
|
+
priority: int32 | null;
|
|
40194
|
+
startDate: offsetDateTime | null;
|
|
40195
|
+
status: plannerGoalStatus;
|
|
40196
|
+
@references tasks: plannerTask[];
|
|
40197
|
+
}
|
|
40198
|
+
|
|
39877
40199
|
@entity model plannerGroup extends entity {
|
|
39878
40200
|
@references plans: plannerPlan[];
|
|
39879
40201
|
}
|
|
@@ -39894,6 +40216,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39894
40216
|
title: string;
|
|
39895
40217
|
@references buckets: plannerBucket[];
|
|
39896
40218
|
@contains details: plannerPlanDetails | null;
|
|
40219
|
+
|
|
40220
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40221
|
+
@references goals: plannerGoal[];
|
|
39897
40222
|
@references tasks: plannerTask[];
|
|
39898
40223
|
}
|
|
39899
40224
|
|
|
@@ -39934,6 +40259,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39934
40259
|
@computed createdDateTime: offsetDateTime | null;
|
|
39935
40260
|
creationSource: plannerTaskCreation | null;
|
|
39936
40261
|
dueDateTime: offsetDateTime | null;
|
|
40262
|
+
|
|
40263
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
40264
|
+
goalIds: string[];
|
|
39937
40265
|
hasChat: boolean;
|
|
39938
40266
|
hasDescription: boolean | null;
|
|
39939
40267
|
isArchived: boolean | null;
|
|
@@ -40711,9 +41039,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
40711
41039
|
actionSteps: actionStep[] | null;
|
|
40712
41040
|
benefits: string | null;
|
|
40713
41041
|
category: recommendationCategory;
|
|
41042
|
+
categoryGroup: recommendationCategoryGroup;
|
|
41043
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
41044
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
40714
41045
|
@computed createdDateTime: offsetDateTime;
|
|
40715
41046
|
currentScore: float64 | null;
|
|
40716
41047
|
displayName: string;
|
|
41048
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
40717
41049
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
40718
41050
|
impactStartDateTime: offsetDateTime | null;
|
|
40719
41051
|
impactType: string | null;
|
|
@@ -40722,14 +41054,23 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
40722
41054
|
lastModifiedBy: string | null;
|
|
40723
41055
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
40724
41056
|
maxScore: float64 | null;
|
|
41057
|
+
needsMoreActionResourceCount: int32 | null;
|
|
41058
|
+
nistClassifications: nistClassification[];
|
|
40725
41059
|
postponeUntilDateTime: offsetDateTime | null;
|
|
40726
41060
|
priority: recommendationPriority;
|
|
40727
41061
|
recommendationType: recommendationType | null;
|
|
40728
41062
|
releaseType: string | null;
|
|
41063
|
+
remediatedDateTime: offsetDateTime | null;
|
|
40729
41064
|
remediationImpact: string | null;
|
|
40730
41065
|
requiredLicenses: requiredLicenses | null;
|
|
40731
41066
|
status: recommendationStatus;
|
|
41067
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
40732
41068
|
@contains impactedResources: impactedResource[];
|
|
41069
|
+
@contains tags: recommendationTag[];
|
|
41070
|
+
}
|
|
41071
|
+
|
|
41072
|
+
@entity model recommendationTag extends entity {
|
|
41073
|
+
displayName: string;
|
|
40733
41074
|
}
|
|
40734
41075
|
|
|
40735
41076
|
@open
|
|
@@ -41039,6 +41380,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41039
41380
|
riskState: riskState;
|
|
41040
41381
|
}
|
|
41041
41382
|
|
|
41383
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
41384
|
+
}
|
|
41385
|
+
|
|
41042
41386
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
41043
41387
|
@references agentIdentity: agentIdentity | null;
|
|
41044
41388
|
}
|
|
@@ -41275,7 +41619,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41275
41619
|
roleMemberInfo: identity;
|
|
41276
41620
|
}
|
|
41277
41621
|
|
|
41278
|
-
@entity model searchEntity extends entity {
|
|
41622
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
41279
41623
|
}
|
|
41280
41624
|
|
|
41281
41625
|
@entity model section extends place {
|
|
@@ -41340,6 +41684,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41340
41684
|
/**
|
|
41341
41685
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
41342
41686
|
*/
|
|
41687
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41688
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41343
41689
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
41344
41690
|
/**
|
|
41345
41691
|
* The category name
|
|
@@ -41350,6 +41696,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41350
41696
|
/**
|
|
41351
41697
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
41352
41698
|
*/
|
|
41699
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41353
41700
|
@entity model securityBaselineDeviceState extends entity {
|
|
41354
41701
|
/**
|
|
41355
41702
|
* Display name of the device
|
|
@@ -41376,6 +41723,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41376
41723
|
/**
|
|
41377
41724
|
* The security baseline compliance state of a setting for a device
|
|
41378
41725
|
*/
|
|
41726
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41379
41727
|
@entity model securityBaselineSettingState extends entity {
|
|
41380
41728
|
/**
|
|
41381
41729
|
* The policies that contribute to this setting instance
|
|
@@ -41414,6 +41762,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41414
41762
|
/**
|
|
41415
41763
|
* Security baseline state for a device.
|
|
41416
41764
|
*/
|
|
41765
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41417
41766
|
@entity model securityBaselineState extends entity {
|
|
41418
41767
|
/**
|
|
41419
41768
|
* The display name of the security baseline
|
|
@@ -41434,12 +41783,15 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41434
41783
|
/**
|
|
41435
41784
|
* The security baseline state for different settings for a device
|
|
41436
41785
|
*/
|
|
41786
|
+
|
|
41787
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41437
41788
|
@contains settingStates: securityBaselineSettingState[];
|
|
41438
41789
|
}
|
|
41439
41790
|
|
|
41440
41791
|
/**
|
|
41441
41792
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
41442
41793
|
*/
|
|
41794
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41443
41795
|
@entity model securityBaselineStateSummary extends entity {
|
|
41444
41796
|
/**
|
|
41445
41797
|
* Number of conflict devices
|
|
@@ -41474,14 +41826,20 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41474
41826
|
/**
|
|
41475
41827
|
* The security baseline per category device state summary
|
|
41476
41828
|
*/
|
|
41829
|
+
|
|
41830
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41477
41831
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
41478
41832
|
/**
|
|
41479
41833
|
* The security baseline device states
|
|
41480
41834
|
*/
|
|
41835
|
+
|
|
41836
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41481
41837
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
41482
41838
|
/**
|
|
41483
41839
|
* The security baseline device state summary
|
|
41484
41840
|
*/
|
|
41841
|
+
|
|
41842
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
41485
41843
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
41486
41844
|
}
|
|
41487
41845
|
|
|
@@ -42666,7 +43024,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
42666
43024
|
@contains teamDefinition: team | null;
|
|
42667
43025
|
}
|
|
42668
43026
|
|
|
42669
|
-
@entity model teamwork extends entity {
|
|
43027
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
42670
43028
|
isTeamsEnabled: boolean;
|
|
42671
43029
|
region: string | null;
|
|
42672
43030
|
@contains deletedChats: deletedChat[];
|
|
@@ -45539,6 +45897,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
45539
45897
|
@entity model userSettings extends entity {
|
|
45540
45898
|
@contains itemInsights: userInsightsSettings | null;
|
|
45541
45899
|
@contains regionalAndLanguageSettings: regionalAndLanguageSettings | null;
|
|
45900
|
+
@contains workHoursAndLocations: workHoursAndLocationsSetting | null;
|
|
45542
45901
|
}
|
|
45543
45902
|
|
|
45544
45903
|
@entity model userSignInInsight extends governanceInsight {
|
|
@@ -45587,6 +45946,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
45587
45946
|
@entity model virtualEndpoint extends entity {
|
|
45588
45947
|
@contains auditEvents: cloudPcAuditEvent[];
|
|
45589
45948
|
@contains bulkActions: cloudPcBulkAction[];
|
|
45949
|
+
@contains cloudApps: cloudPcCloudApp[];
|
|
45590
45950
|
@contains cloudPCs: cloudPC[];
|
|
45591
45951
|
@contains deviceImages: cloudPcDeviceImage[];
|
|
45592
45952
|
@contains externalPartners: cloudPcExternalPartner[];
|
|
@@ -50439,7 +50799,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
50439
50799
|
*/
|
|
50440
50800
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
50441
50801
|
/**
|
|
50442
|
-
*
|
|
50802
|
+
* 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.
|
|
50803
|
+
*/
|
|
50804
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
50805
|
+
/**
|
|
50806
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
50443
50807
|
*/
|
|
50444
50808
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
50445
50809
|
/**
|
|
@@ -50447,7 +50811,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
50447
50811
|
*/
|
|
50448
50812
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
50449
50813
|
/**
|
|
50450
|
-
*
|
|
50814
|
+
* 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.
|
|
50815
|
+
*/
|
|
50816
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
50817
|
+
/**
|
|
50818
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
50451
50819
|
*/
|
|
50452
50820
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
50453
50821
|
/**
|
|
@@ -52320,6 +52688,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
52320
52688
|
protected: boolean;
|
|
52321
52689
|
}
|
|
52322
52690
|
|
|
52691
|
+
@entity model workHoursAndLocationsSetting extends entity {
|
|
52692
|
+
maxSharedWorkLocationDetails: maxWorkLocationDetails;
|
|
52693
|
+
@contains occurrences: workPlanOccurrence[];
|
|
52694
|
+
@contains recurrences: workPlanRecurrence[];
|
|
52695
|
+
}
|
|
52696
|
+
|
|
52323
52697
|
@entity model workplace extends MsGraph.SharedModels.entity {
|
|
52324
52698
|
@contains sensorDevices: workplaceSensorDevice[];
|
|
52325
52699
|
}
|
|
@@ -52367,6 +52741,23 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
52367
52741
|
tags: string[] | null;
|
|
52368
52742
|
}
|
|
52369
52743
|
|
|
52744
|
+
@entity model workPlanOccurrence extends entity {
|
|
52745
|
+
end: dateTimeTimeZone;
|
|
52746
|
+
placeId: string | null;
|
|
52747
|
+
recurrenceId: string | null;
|
|
52748
|
+
start: dateTimeTimeZone;
|
|
52749
|
+
timeOffDetails: timeOffDetails | null;
|
|
52750
|
+
workLocationType: workLocationType;
|
|
52751
|
+
}
|
|
52752
|
+
|
|
52753
|
+
@entity model workPlanRecurrence extends entity {
|
|
52754
|
+
end: dateTimeTimeZone;
|
|
52755
|
+
placeId: string | null;
|
|
52756
|
+
recurrence: patternedRecurrence;
|
|
52757
|
+
start: dateTimeTimeZone;
|
|
52758
|
+
workLocationType: workLocationType;
|
|
52759
|
+
}
|
|
52760
|
+
|
|
52370
52761
|
@entity model workPosition extends itemFacet {
|
|
52371
52762
|
categories: string[] | null;
|
|
52372
52763
|
colleagues: relatedPerson[] | null;
|
|
@@ -52734,6 +53125,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
52734
53125
|
unknownFutureValue: 2,
|
|
52735
53126
|
agentIdentityBlueprintPrincipal: 3,
|
|
52736
53127
|
user: 4,
|
|
53128
|
+
discoveredAgentIdentity: 5,
|
|
52737
53129
|
}
|
|
52738
53130
|
|
|
52739
53131
|
enum agentIdRiskLevel {
|
|
@@ -53899,18 +54291,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
53899
54291
|
*/
|
|
53900
54292
|
wpaPersonal: 4,
|
|
53901
54293
|
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
54294
|
}
|
|
53915
54295
|
|
|
53916
54296
|
/**
|
|
@@ -54097,22 +54477,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54097
54477
|
*/
|
|
54098
54478
|
wpaEnterprise: 4,
|
|
54099
54479
|
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
54480
|
}
|
|
54117
54481
|
|
|
54118
54482
|
/**
|
|
@@ -56081,6 +56445,26 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56081
56445
|
unknownFutureValue: 1,
|
|
56082
56446
|
}
|
|
56083
56447
|
|
|
56448
|
+
enum cloudPcCloudAppActionFailedErrorCode {
|
|
56449
|
+
cloudAppQuotaExceeded: 0,
|
|
56450
|
+
cloudPcLicenseNotFound: 1,
|
|
56451
|
+
internalServerError: 2,
|
|
56452
|
+
appDiscoveryFailed: 3,
|
|
56453
|
+
unknownFutureValue: 4,
|
|
56454
|
+
iconPathInvalid: 5,
|
|
56455
|
+
filePathInvalid: 6,
|
|
56456
|
+
}
|
|
56457
|
+
|
|
56458
|
+
enum cloudPcCloudAppStatus {
|
|
56459
|
+
preparing: 0,
|
|
56460
|
+
ready: 1,
|
|
56461
|
+
publishing: 2,
|
|
56462
|
+
published: 3,
|
|
56463
|
+
unpublishing: 4,
|
|
56464
|
+
failed: 5,
|
|
56465
|
+
unknownFutureValue: 6,
|
|
56466
|
+
}
|
|
56467
|
+
|
|
56084
56468
|
enum cloudPCConnectionQualityReportType {
|
|
56085
56469
|
remoteConnectionQualityReport: 0,
|
|
56086
56470
|
regionalConnectionQualityTrendReport: 1,
|
|
@@ -56470,6 +56854,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56470
56854
|
dedicated: 0,
|
|
56471
56855
|
shared: 1,
|
|
56472
56856
|
unknownFutureValue: 2,
|
|
56857
|
+
sharedByUser: 3,
|
|
56858
|
+
sharedByEntraGroup: 4,
|
|
56473
56859
|
reserve: 5,
|
|
56474
56860
|
}
|
|
56475
56861
|
|
|
@@ -56698,6 +57084,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
56698
57084
|
unknownFutureValue: 2,
|
|
56699
57085
|
}
|
|
56700
57086
|
|
|
57087
|
+
enum cloudPcUserExperienceType {
|
|
57088
|
+
cloudPc: 0,
|
|
57089
|
+
cloudApp: 1,
|
|
57090
|
+
unknownFutureValue: 2,
|
|
57091
|
+
}
|
|
57092
|
+
|
|
56701
57093
|
enum cloudPcUserSettingsPersistenceStorageSizeCategory {
|
|
56702
57094
|
fourGB: 0,
|
|
56703
57095
|
eightGB: 1,
|
|
@@ -57251,6 +57643,29 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
57251
57643
|
applicationProxy: 0,
|
|
57252
57644
|
}
|
|
57253
57645
|
|
|
57646
|
+
/**
|
|
57647
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
57648
|
+
*/
|
|
57649
|
+
enum connectorHealthCheckMetricName {
|
|
57650
|
+
/**
|
|
57651
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
57652
|
+
*/
|
|
57653
|
+
caConnectivity: 0,
|
|
57654
|
+
/**
|
|
57655
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
57656
|
+
*/
|
|
57657
|
+
caIssuancePermissions: 1,
|
|
57658
|
+
/**
|
|
57659
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
57660
|
+
*/
|
|
57661
|
+
caRevocationPermissions: 2,
|
|
57662
|
+
/**
|
|
57663
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
57664
|
+
*/
|
|
57665
|
+
certificateTemplate: 3,
|
|
57666
|
+
unknownFutureValue: 4,
|
|
57667
|
+
}
|
|
57668
|
+
|
|
57254
57669
|
/**
|
|
57255
57670
|
* Connector health state for connector status
|
|
57256
57671
|
*/
|
|
@@ -57531,6 +57946,44 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
57531
57946
|
saturday: 6,
|
|
57532
57947
|
}
|
|
57533
57948
|
|
|
57949
|
+
/**
|
|
57950
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
57951
|
+
*/
|
|
57952
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
57953
|
+
/**
|
|
57954
|
+
* The device downloads apps of any size using a cellular network.
|
|
57955
|
+
*/
|
|
57956
|
+
alwaysOn: 0,
|
|
57957
|
+
/**
|
|
57958
|
+
* 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.
|
|
57959
|
+
*/
|
|
57960
|
+
alwaysOff: 1,
|
|
57961
|
+
/**
|
|
57962
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
57963
|
+
*/
|
|
57964
|
+
storeSettings: 2,
|
|
57965
|
+
unknownFutureValue: 3,
|
|
57966
|
+
}
|
|
57967
|
+
|
|
57968
|
+
/**
|
|
57969
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
57970
|
+
*/
|
|
57971
|
+
enum ddmAppAutomaticAppUpdates {
|
|
57972
|
+
/**
|
|
57973
|
+
* The device automatically updates the app to the latest version.
|
|
57974
|
+
*/
|
|
57975
|
+
alwaysOn: 0,
|
|
57976
|
+
/**
|
|
57977
|
+
* The device never automatically updates the app.
|
|
57978
|
+
*/
|
|
57979
|
+
alwaysOff: 1,
|
|
57980
|
+
/**
|
|
57981
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
57982
|
+
*/
|
|
57983
|
+
storeSettings: 2,
|
|
57984
|
+
unknownFutureValue: 3,
|
|
57985
|
+
}
|
|
57986
|
+
|
|
57534
57987
|
@graphFlags
|
|
57535
57988
|
enum decisionItemPrincipalResourceMembershipType {
|
|
57536
57989
|
direct: 1,
|
|
@@ -59699,6 +60152,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
59699
60152
|
* Indicates the settings that can be deployed through the Android channel.
|
|
59700
60153
|
*/
|
|
59701
60154
|
android: 65536,
|
|
60155
|
+
/**
|
|
60156
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
60157
|
+
*/
|
|
60158
|
+
intuneOpenExtensibility: 131072,
|
|
59702
60159
|
}
|
|
59703
60160
|
|
|
59704
60161
|
/**
|
|
@@ -62017,6 +62474,176 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
62017
62474
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
62018
62475
|
}
|
|
62019
62476
|
|
|
62477
|
+
/**
|
|
62478
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
62479
|
+
*/
|
|
62480
|
+
enum eSimProfileErrorDetail {
|
|
62481
|
+
/**
|
|
62482
|
+
* No error.
|
|
62483
|
+
*/
|
|
62484
|
+
none: 0,
|
|
62485
|
+
/**
|
|
62486
|
+
* The eSIM card encountered a general failure.
|
|
62487
|
+
*/
|
|
62488
|
+
cardGeneralFailure: 1,
|
|
62489
|
+
/**
|
|
62490
|
+
* The confirmation code provided was incorrect.
|
|
62491
|
+
*/
|
|
62492
|
+
confirmationCodeIncorrect: 2,
|
|
62493
|
+
/**
|
|
62494
|
+
* The confirmation code was missing.
|
|
62495
|
+
*/
|
|
62496
|
+
confirmationCodeMissing: 3,
|
|
62497
|
+
/**
|
|
62498
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
62499
|
+
*/
|
|
62500
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
62501
|
+
/**
|
|
62502
|
+
* The operation is forbidden by policy.
|
|
62503
|
+
*/
|
|
62504
|
+
forbiddenByPolicy: 5,
|
|
62505
|
+
/**
|
|
62506
|
+
* The matching ID provided was invalid.
|
|
62507
|
+
*/
|
|
62508
|
+
invalidMatchingId: 6,
|
|
62509
|
+
/**
|
|
62510
|
+
* No eligible eSIM profile was found for this device.
|
|
62511
|
+
*/
|
|
62512
|
+
noEligibleProfileForThisDevice: 7,
|
|
62513
|
+
/**
|
|
62514
|
+
* There was not enough space on the eSIM card.
|
|
62515
|
+
*/
|
|
62516
|
+
notEnoughSpaceOnCard: 8,
|
|
62517
|
+
/**
|
|
62518
|
+
* The operation was aborted.
|
|
62519
|
+
*/
|
|
62520
|
+
operationAborted: 9,
|
|
62521
|
+
/**
|
|
62522
|
+
* The eSIM profile EID did not match the device.
|
|
62523
|
+
*/
|
|
62524
|
+
profileEidMismatch: 10,
|
|
62525
|
+
/**
|
|
62526
|
+
* The eSIM profile is not available for a new binding.
|
|
62527
|
+
*/
|
|
62528
|
+
profileNotAvailableForNewBinding: 11,
|
|
62529
|
+
/**
|
|
62530
|
+
* The eSIM profile has not been released by the operator.
|
|
62531
|
+
*/
|
|
62532
|
+
profileNotReleasedByOperator: 12,
|
|
62533
|
+
/**
|
|
62534
|
+
* The remote server encountered a general failure.
|
|
62535
|
+
*/
|
|
62536
|
+
remoteServerGeneralFailure: 13,
|
|
62537
|
+
/**
|
|
62538
|
+
* The remote server was unreachable.
|
|
62539
|
+
*/
|
|
62540
|
+
remoteServerUnreachable: 14,
|
|
62541
|
+
/**
|
|
62542
|
+
* A timeout occurred while waiting for user consent.
|
|
62543
|
+
*/
|
|
62544
|
+
timeoutWaitingForUserConsent: 15,
|
|
62545
|
+
/**
|
|
62546
|
+
* The operation is prohibited by the eSIM profile class.
|
|
62547
|
+
*/
|
|
62548
|
+
operationProhibitedByProfileClass: 16,
|
|
62549
|
+
/**
|
|
62550
|
+
* The provisioning profile is not present.
|
|
62551
|
+
*/
|
|
62552
|
+
provisioningProfileNotPresent: 17,
|
|
62553
|
+
/**
|
|
62554
|
+
* There is no corresponding request for this operation.
|
|
62555
|
+
*/
|
|
62556
|
+
noCorrespondingRequest: 18,
|
|
62557
|
+
/**
|
|
62558
|
+
* A timeout occurred while waiting for a response.
|
|
62559
|
+
*/
|
|
62560
|
+
timeoutWaitingForResponse: 19,
|
|
62561
|
+
/**
|
|
62562
|
+
* The ICCID already exists on the device.
|
|
62563
|
+
*/
|
|
62564
|
+
iccidAlreadyExists: 20,
|
|
62565
|
+
/**
|
|
62566
|
+
* An error occurred while processing the eSIM profile.
|
|
62567
|
+
*/
|
|
62568
|
+
profileProcessingError: 21,
|
|
62569
|
+
/**
|
|
62570
|
+
* The remote server is not trusted.
|
|
62571
|
+
*/
|
|
62572
|
+
remoteServerNotTrusted: 22,
|
|
62573
|
+
/**
|
|
62574
|
+
* The maximum number of retries for profile download was exceeded.
|
|
62575
|
+
*/
|
|
62576
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
62577
|
+
/**
|
|
62578
|
+
* The WinHTTP name could not be resolved.
|
|
62579
|
+
*/
|
|
62580
|
+
winhttpNameNotResolved: 24,
|
|
62581
|
+
/**
|
|
62582
|
+
* The WinHTTP operation was cancelled.
|
|
62583
|
+
*/
|
|
62584
|
+
winhttpOperationCancelled: 25,
|
|
62585
|
+
/**
|
|
62586
|
+
* The status is unspecified.
|
|
62587
|
+
*/
|
|
62588
|
+
statusUnspecified: 26,
|
|
62589
|
+
/**
|
|
62590
|
+
* The operation is in progress.
|
|
62591
|
+
*/
|
|
62592
|
+
inProgress: 27,
|
|
62593
|
+
/**
|
|
62594
|
+
* The operation is pending user action.
|
|
62595
|
+
*/
|
|
62596
|
+
pendingUserAction: 28,
|
|
62597
|
+
/**
|
|
62598
|
+
* An error occurred while setup was in progress.
|
|
62599
|
+
*/
|
|
62600
|
+
errorSetupInProgress: 29,
|
|
62601
|
+
/**
|
|
62602
|
+
* The user denied the operation.
|
|
62603
|
+
*/
|
|
62604
|
+
errorUserDenied: 30,
|
|
62605
|
+
/**
|
|
62606
|
+
* An internal error occurred.
|
|
62607
|
+
*/
|
|
62608
|
+
internalError: 31,
|
|
62609
|
+
/**
|
|
62610
|
+
* The ICCID was not found.
|
|
62611
|
+
*/
|
|
62612
|
+
errorIccIdNotFound: 32,
|
|
62613
|
+
/**
|
|
62614
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
62615
|
+
*/
|
|
62616
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
62617
|
+
unknownFutureValue: 34,
|
|
62618
|
+
}
|
|
62619
|
+
|
|
62620
|
+
/**
|
|
62621
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
62622
|
+
*/
|
|
62623
|
+
enum eSimProfileState {
|
|
62624
|
+
/**
|
|
62625
|
+
* Unknown state.
|
|
62626
|
+
*/
|
|
62627
|
+
`unknown`: 0,
|
|
62628
|
+
/**
|
|
62629
|
+
* The eSIM profile is being installed.
|
|
62630
|
+
*/
|
|
62631
|
+
installing: 1,
|
|
62632
|
+
/**
|
|
62633
|
+
* The eSIM profile has been successfully installed.
|
|
62634
|
+
*/
|
|
62635
|
+
installed: 2,
|
|
62636
|
+
/**
|
|
62637
|
+
* The eSIM profile is being deleted.
|
|
62638
|
+
*/
|
|
62639
|
+
deleting: 3,
|
|
62640
|
+
/**
|
|
62641
|
+
* An error occurred while processing the eSIM profile.
|
|
62642
|
+
*/
|
|
62643
|
+
error: 4,
|
|
62644
|
+
unknownFutureValue: 5,
|
|
62645
|
+
}
|
|
62646
|
+
|
|
62020
62647
|
enum evaluationScopeType {
|
|
62021
62648
|
tenant: 0,
|
|
62022
62649
|
agent: 1,
|
|
@@ -64952,6 +65579,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
64952
65579
|
unknownFutureValue: 12,
|
|
64953
65580
|
}
|
|
64954
65581
|
|
|
65582
|
+
enum maxWorkLocationDetails {
|
|
65583
|
+
`unknown`: 0,
|
|
65584
|
+
none: 1,
|
|
65585
|
+
approximate: 2,
|
|
65586
|
+
specific: 3,
|
|
65587
|
+
unknownFutureValue: 4,
|
|
65588
|
+
}
|
|
65589
|
+
|
|
64955
65590
|
/**
|
|
64956
65591
|
* App configuration key types.
|
|
64957
65592
|
*/
|
|
@@ -65452,6 +66087,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
65452
66087
|
userRequestedInstall: 5,
|
|
65453
66088
|
}
|
|
65454
66089
|
|
|
66090
|
+
/**
|
|
66091
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
66092
|
+
*/
|
|
66093
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
66094
|
+
apkIsInvalid: 1,
|
|
66095
|
+
apkIsMissingSignerCertificates: 2,
|
|
66096
|
+
apkHasInvalidPackageName: 3,
|
|
66097
|
+
apkPackageNameMismatch: 4,
|
|
66098
|
+
apkHasInvalidVersionCode: 5,
|
|
66099
|
+
apkHasVersionCodeMismatch: 6,
|
|
66100
|
+
apkHasInvalidMinSdk: 7,
|
|
66101
|
+
apkMinSdkMismatch: 8,
|
|
66102
|
+
apkVersionNameMismatch: 9,
|
|
66103
|
+
unknownFutureValue: 10,
|
|
66104
|
+
}
|
|
66105
|
+
|
|
65455
66106
|
/**
|
|
65456
66107
|
* Contains properties for upload request states.
|
|
65457
66108
|
*/
|
|
@@ -65660,6 +66311,33 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
65660
66311
|
WriteOnly: 3,
|
|
65661
66312
|
}
|
|
65662
66313
|
|
|
66314
|
+
/**
|
|
66315
|
+
* The health status of an NDES connector or individual health check metric.
|
|
66316
|
+
*/
|
|
66317
|
+
enum ndesConnectorHealthStatus {
|
|
66318
|
+
/**
|
|
66319
|
+
* Health has not been evaluated yet for this connector.
|
|
66320
|
+
*/
|
|
66321
|
+
`unknown`: 0,
|
|
66322
|
+
/**
|
|
66323
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
66324
|
+
*/
|
|
66325
|
+
noActionRequired: 1,
|
|
66326
|
+
/**
|
|
66327
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
66328
|
+
*/
|
|
66329
|
+
attentionRequired: 2,
|
|
66330
|
+
/**
|
|
66331
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
66332
|
+
*/
|
|
66333
|
+
actionRequired: 3,
|
|
66334
|
+
/**
|
|
66335
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
66336
|
+
*/
|
|
66337
|
+
disconnected: 4,
|
|
66338
|
+
unknownFutureValue: 5,
|
|
66339
|
+
}
|
|
66340
|
+
|
|
65663
66341
|
/**
|
|
65664
66342
|
* The current status of the Ndes Connector.
|
|
65665
66343
|
*/
|
|
@@ -66520,6 +67198,15 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
66520
67198
|
unknownFutureValue: 3,
|
|
66521
67199
|
}
|
|
66522
67200
|
|
|
67201
|
+
enum plannerGoalStatus {
|
|
67202
|
+
notStarted: 0,
|
|
67203
|
+
onTrack: 1,
|
|
67204
|
+
behind: 2,
|
|
67205
|
+
atRisk: 3,
|
|
67206
|
+
closed: 4,
|
|
67207
|
+
unknownFutureValue: 5,
|
|
67208
|
+
}
|
|
67209
|
+
|
|
66523
67210
|
enum plannerPlanAccessLevel {
|
|
66524
67211
|
readAccess: 0,
|
|
66525
67212
|
readWriteAccess: 1,
|
|
@@ -68630,6 +69317,16 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68630
69317
|
mdiSecureScore: 3,
|
|
68631
69318
|
}
|
|
68632
69319
|
|
|
69320
|
+
enum recommendationCategoryGroup {
|
|
69321
|
+
strengthenAuthentication: 0,
|
|
69322
|
+
detectAndRespondToThreats: 1,
|
|
69323
|
+
enforceLeastPrivilege: 2,
|
|
69324
|
+
governAppsCredentialsAndAgents: 3,
|
|
69325
|
+
hardenInfrastructure: 4,
|
|
69326
|
+
defenderForIdentity: 5,
|
|
69327
|
+
unknownFutureValue: 6,
|
|
69328
|
+
}
|
|
69329
|
+
|
|
68633
69330
|
enum recommendationFeatureAreas {
|
|
68634
69331
|
users: 0,
|
|
68635
69332
|
groups: 1,
|
|
@@ -68641,11 +69338,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68641
69338
|
unknownFutureValue: 7,
|
|
68642
69339
|
}
|
|
68643
69340
|
|
|
68644
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
68645
69341
|
enum recommendationPriority {
|
|
68646
69342
|
low: 0,
|
|
68647
69343
|
medium: 1,
|
|
68648
69344
|
high: 2,
|
|
69345
|
+
critical: 3,
|
|
69346
|
+
unknownFutureValue: 4,
|
|
68649
69347
|
}
|
|
68650
69348
|
|
|
68651
69349
|
enum recommendationStatus {
|
|
@@ -68659,6 +69357,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68659
69357
|
thirdParty: 7,
|
|
68660
69358
|
planned: 8,
|
|
68661
69359
|
alternateMitigation: 9,
|
|
69360
|
+
needsMoreAction: 10,
|
|
68662
69361
|
}
|
|
68663
69362
|
|
|
68664
69363
|
enum recommendationType {
|
|
@@ -68974,6 +69673,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68974
69673
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
68975
69674
|
*/
|
|
68976
69675
|
restoreManagedHomeScreen: 42,
|
|
69676
|
+
/**
|
|
69677
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
69678
|
+
*/
|
|
69679
|
+
triggerEnhancedLogCollection: 44,
|
|
69680
|
+
/**
|
|
69681
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
69682
|
+
*/
|
|
69683
|
+
cancelEnhancedLogCollection: 45,
|
|
68977
69684
|
}
|
|
68978
69685
|
|
|
68979
69686
|
/**
|
|
@@ -69010,6 +69717,25 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69010
69717
|
enabled: 2,
|
|
69011
69718
|
}
|
|
69012
69719
|
|
|
69720
|
+
/**
|
|
69721
|
+
* Enumeration indicating the state of session recording
|
|
69722
|
+
*/
|
|
69723
|
+
enum remoteHelpRecordingState {
|
|
69724
|
+
/**
|
|
69725
|
+
* Recording is not enabled for this session.
|
|
69726
|
+
*/
|
|
69727
|
+
notEnabled: 0,
|
|
69728
|
+
/**
|
|
69729
|
+
* Recording is in progress.
|
|
69730
|
+
*/
|
|
69731
|
+
recording: 1,
|
|
69732
|
+
/**
|
|
69733
|
+
* Recording failed.
|
|
69734
|
+
*/
|
|
69735
|
+
failed: 2,
|
|
69736
|
+
unknownFutureValue: 3,
|
|
69737
|
+
}
|
|
69738
|
+
|
|
69013
69739
|
enum replyRestriction {
|
|
69014
69740
|
everyone: 0,
|
|
69015
69741
|
authorAndModerators: 1,
|
|
@@ -69025,6 +69751,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69025
69751
|
microsoftEntraWorkloadId: 5,
|
|
69026
69752
|
unknownFutureValue: 6,
|
|
69027
69753
|
aatp: 7,
|
|
69754
|
+
microsoftEntraSuite: 8,
|
|
69028
69755
|
}
|
|
69029
69756
|
|
|
69030
69757
|
/**
|
|
@@ -69317,6 +70044,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69317
70044
|
* App was removed in order to install a superseding app.
|
|
69318
70045
|
*/
|
|
69319
70046
|
appRemovedBySupersedence: 3005,
|
|
70047
|
+
/**
|
|
70048
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
70049
|
+
*/
|
|
70050
|
+
dependencyAppInUse: 3006,
|
|
69320
70051
|
/**
|
|
69321
70052
|
* Application failed to uninstall. See error code property for more details.
|
|
69322
70053
|
*/
|
|
@@ -69333,6 +70064,18 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
69333
70064
|
* Application content was downloaded to the device.
|
|
69334
70065
|
*/
|
|
69335
70066
|
contentDownloaded: 5002,
|
|
70067
|
+
/**
|
|
70068
|
+
* App enforcement is pending because the app is currently in use.
|
|
70069
|
+
*/
|
|
70070
|
+
inUse: 5005,
|
|
70071
|
+
/**
|
|
70072
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
70073
|
+
*/
|
|
70074
|
+
deferred: 5006,
|
|
70075
|
+
/**
|
|
70076
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
70077
|
+
*/
|
|
70078
|
+
autoDeferred: 5007,
|
|
69336
70079
|
}
|
|
69337
70080
|
|
|
69338
70081
|
enum riskDetail {
|
|
@@ -72001,10 +72744,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72001
72744
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
72002
72745
|
*/
|
|
72003
72746
|
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
72747
|
}
|
|
72009
72748
|
|
|
72010
72749
|
/**
|
|
@@ -72436,6 +73175,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72436
73175
|
/**
|
|
72437
73176
|
* Contains rule types for Win32 LOB apps.
|
|
72438
73177
|
*/
|
|
73178
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
72439
73179
|
enum win32LobAppRuleType {
|
|
72440
73180
|
/**
|
|
72441
73181
|
* Detection rule.
|
|
@@ -72445,11 +73185,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
72445
73185
|
* Requirement rule.
|
|
72446
73186
|
*/
|
|
72447
73187
|
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
73188
|
}
|
|
72454
73189
|
|
|
72455
73190
|
/**
|
|
@@ -73891,7 +74626,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
73891
74626
|
/**
|
|
73892
74627
|
* Data can be transferred from/to these classes of apps
|
|
73893
74628
|
*/
|
|
73894
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
73895
74629
|
enum windowsManagedAppDataTransferLevel {
|
|
73896
74630
|
/**
|
|
73897
74631
|
* All apps.
|
|
@@ -73901,6 +74635,27 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
73901
74635
|
* No apps.
|
|
73902
74636
|
*/
|
|
73903
74637
|
none: 1,
|
|
74638
|
+
/**
|
|
74639
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
74640
|
+
*/
|
|
74641
|
+
selectedApps: 2,
|
|
74642
|
+
unknownFutureValue: 3,
|
|
74643
|
+
}
|
|
74644
|
+
|
|
74645
|
+
/**
|
|
74646
|
+
* Windows MAM data transfer locations
|
|
74647
|
+
*/
|
|
74648
|
+
@graphFlags
|
|
74649
|
+
enum windowsManagedAppDataTransferLocations {
|
|
74650
|
+
/**
|
|
74651
|
+
* No locations selected.
|
|
74652
|
+
*/
|
|
74653
|
+
none: 0,
|
|
74654
|
+
/**
|
|
74655
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
74656
|
+
*/
|
|
74657
|
+
oneDriveForBusiness: 1,
|
|
74658
|
+
unknownFutureValue: 2,
|
|
73904
74659
|
}
|
|
73905
74660
|
|
|
73906
74661
|
/**
|
|
@@ -74475,6 +75230,20 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
74475
75230
|
failed: 3,
|
|
74476
75231
|
}
|
|
74477
75232
|
|
|
75233
|
+
enum workLocationType {
|
|
75234
|
+
unspecified: 0,
|
|
75235
|
+
office: 1,
|
|
75236
|
+
remote: 2,
|
|
75237
|
+
timeOff: 3,
|
|
75238
|
+
unknownFutureValue: 4,
|
|
75239
|
+
}
|
|
75240
|
+
|
|
75241
|
+
enum workLocationUpdateScope {
|
|
75242
|
+
currentSegment: 1,
|
|
75243
|
+
currentDay: 2,
|
|
75244
|
+
unknownFutureValue: 3,
|
|
75245
|
+
}
|
|
75246
|
+
|
|
74478
75247
|
enum workplaceSensorEventType {
|
|
74479
75248
|
badgeIn: 0,
|
|
74480
75249
|
badgeOut: 1,
|
|
@@ -75716,6 +76485,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
75716
76485
|
targetSubject: workflowSubject | null;
|
|
75717
76486
|
}
|
|
75718
76487
|
|
|
76488
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
76489
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
76490
|
+
}
|
|
76491
|
+
|
|
75719
76492
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
75720
76493
|
@references groups: reference.`microsoft.graph`.group[];
|
|
75721
76494
|
}
|
|
@@ -75780,6 +76553,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
75780
76553
|
totalUsers: int32;
|
|
75781
76554
|
}
|
|
75782
76555
|
|
|
76556
|
+
@complex model subjectSummary {
|
|
76557
|
+
failedSubjects: int32;
|
|
76558
|
+
failedTasks: int32;
|
|
76559
|
+
successfulSubjects: int32;
|
|
76560
|
+
totalSubjects: int32;
|
|
76561
|
+
totalTasks: int32;
|
|
76562
|
+
}
|
|
76563
|
+
|
|
75783
76564
|
@complex model taskReportSummary {
|
|
75784
76565
|
failedTasks: int32;
|
|
75785
76566
|
successfulTasks: int32;
|
|
@@ -75940,6 +76721,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
75940
76721
|
scheduledDateTime: offsetDateTime;
|
|
75941
76722
|
startedDateTime: offsetDateTime | null;
|
|
75942
76723
|
subject: workflowSubject;
|
|
76724
|
+
subjectType: subjectType;
|
|
75943
76725
|
totalTasksCount: int32;
|
|
75944
76726
|
totalUnprocessedTasksCount: int32;
|
|
75945
76727
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -76039,6 +76821,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
76039
76821
|
isEnabled: boolean;
|
|
76040
76822
|
isSchedulingEnabled: boolean;
|
|
76041
76823
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
76824
|
+
targetSubjectType: subjectType;
|
|
76042
76825
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
76043
76826
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
76044
76827
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -76131,6 +76914,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
76131
76914
|
unknownFutureValue: 4,
|
|
76132
76915
|
}
|
|
76133
76916
|
|
|
76917
|
+
@graphFlags
|
|
76918
|
+
enum subjectType {
|
|
76919
|
+
user: 1,
|
|
76920
|
+
unknownFutureValue: 8,
|
|
76921
|
+
provisioningObject: 16,
|
|
76922
|
+
}
|
|
76923
|
+
|
|
76134
76924
|
enum valueType {
|
|
76135
76925
|
`enum`: 0,
|
|
76136
76926
|
`string`: 1,
|
|
@@ -76495,7 +77285,7 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
76495
77285
|
@contains traffic: networkAccessTraffic[];
|
|
76496
77286
|
}
|
|
76497
77287
|
|
|
76498
|
-
@entity model networkAccessRoot extends
|
|
77288
|
+
@entity model networkAccessRoot extends MsGraph.SharedModels.entity {
|
|
76499
77289
|
@contains alerts: alert[];
|
|
76500
77290
|
@contains forwardingPolicies: forwardingPolicy[];
|
|
76501
77291
|
@contains forwardingProfiles: forwardingProfile[];
|
|
@@ -77106,6 +77896,19 @@ namespace reference.`microsoft.graph.security` {
|
|
|
77106
77896
|
registry: string | null;
|
|
77107
77897
|
}
|
|
77108
77898
|
|
|
77899
|
+
@complex model createAlertInput {
|
|
77900
|
+
category: string;
|
|
77901
|
+
description: string;
|
|
77902
|
+
entityDefinitions: entityDefinition[];
|
|
77903
|
+
isExcludedFromCorrelation: boolean;
|
|
77904
|
+
linkToIncident: int64 | null;
|
|
77905
|
+
mitreTechniques: string[];
|
|
77906
|
+
recommendedActions: string | null;
|
|
77907
|
+
sentinelWorkspace: string | null;
|
|
77908
|
+
severity: alertSeverity;
|
|
77909
|
+
title: string;
|
|
77910
|
+
}
|
|
77911
|
+
|
|
77109
77912
|
@complex model deploymentAccessKeyType {
|
|
77110
77913
|
deploymentAccessKey: string;
|
|
77111
77914
|
}
|
|
@@ -77162,6 +77965,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
77162
77965
|
@complex model enableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
77163
77966
|
}
|
|
77164
77967
|
|
|
77968
|
+
@complex model entityDefinition {
|
|
77969
|
+
entityIdentifier: string;
|
|
77970
|
+
entityType: manualAlertEntityType;
|
|
77971
|
+
identifierValue: string;
|
|
77972
|
+
role: entityDefinitionInputRole;
|
|
77973
|
+
}
|
|
77974
|
+
|
|
77165
77975
|
@complex model eventPropagationResult {
|
|
77166
77976
|
location: string | null;
|
|
77167
77977
|
serviceName: string | null;
|