@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
|
@@ -17,6 +17,9 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
17
17
|
// Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
|
|
18
18
|
@deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
|
|
19
19
|
// Metadata item DeprecatedDefinition_identityProvider was already defined with a different value.
|
|
20
|
+
@deprecatedDefinition("Rv1MigrationDeprecation", "<ChangeLogCategory>", "2026-04-03", "2026-07-07", "This API is deprecated and will stop returning data on July 7, 2026. Use POST /deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport instead.")
|
|
21
|
+
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
22
|
+
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
|
|
20
23
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
21
24
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
22
25
|
@deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
|
|
@@ -2201,6 +2204,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2201
2204
|
messageBodyContentType: chatMessageBodyContentType | null;
|
|
2202
2205
|
}
|
|
2203
2206
|
|
|
2207
|
+
@complex model chatMessageCitation {
|
|
2208
|
+
excerpt: string | null;
|
|
2209
|
+
iconType: string | null;
|
|
2210
|
+
id: int32 | null;
|
|
2211
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
2212
|
+
title: string | null;
|
|
2213
|
+
webUrl: string | null;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
2217
|
+
description: string | null;
|
|
2218
|
+
displayName: string | null;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2204
2221
|
@open
|
|
2205
2222
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
2206
2223
|
}
|
|
@@ -2730,6 +2747,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2730
2747
|
value: string | null;
|
|
2731
2748
|
}
|
|
2732
2749
|
|
|
2750
|
+
/**
|
|
2751
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
2752
|
+
*/
|
|
2753
|
+
@complex model connectorHealthCheck {
|
|
2754
|
+
/**
|
|
2755
|
+
* The name of the health check metric being evaluated.
|
|
2756
|
+
*/
|
|
2757
|
+
metricName: connectorHealthCheckMetricName;
|
|
2758
|
+
/**
|
|
2759
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
2760
|
+
*/
|
|
2761
|
+
status: ndesConnectorHealthStatus;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2733
2764
|
/**
|
|
2734
2765
|
* Represent connector status
|
|
2735
2766
|
*/
|
|
@@ -2824,6 +2855,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2824
2855
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
2825
2856
|
*/
|
|
2826
2857
|
@complex model createRemoteHelpSessionResponse {
|
|
2858
|
+
/**
|
|
2859
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
2860
|
+
*/
|
|
2861
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
2827
2862
|
/**
|
|
2828
2863
|
* The unique identifier for a session
|
|
2829
2864
|
*/
|
|
@@ -3459,6 +3494,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3459
3494
|
* base64-encoded JSON rules content that defines compliance rules to evaluate on the device. When deviceCompliancePolicyScript is set, the rule conditions defined in the JSON are evaluated to determine compliance and the device is marked noncompliant when any rule evaluates to noncompliant. Default is null, when set to default it is not evaluated.
|
|
3460
3495
|
*/
|
|
3461
3496
|
rulesContent: binary | null;
|
|
3497
|
+
/**
|
|
3498
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
3499
|
+
*/
|
|
3500
|
+
runIntervalInMinutes: int32 | null;
|
|
3462
3501
|
}
|
|
3463
3502
|
|
|
3464
3503
|
/**
|
|
@@ -6094,12 +6133,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6094
6133
|
itemMajorVersionLimit: int32 | null;
|
|
6095
6134
|
}
|
|
6096
6135
|
|
|
6097
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
6098
|
-
chatEmbedAllowedHosts: string[];
|
|
6099
|
-
}
|
|
6100
|
-
|
|
6101
6136
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
6102
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6103
6137
|
isDiscoverabilityEnabled: boolean | null;
|
|
6104
6138
|
isItemVersioningEnabled: boolean | null;
|
|
6105
6139
|
isSearchEnabled: boolean | null;
|
|
@@ -6111,7 +6145,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6111
6145
|
}
|
|
6112
6146
|
|
|
6113
6147
|
@complex model fileStorageContainerTypeSettings {
|
|
6114
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6115
6148
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
6116
6149
|
isDiscoverabilityEnabled: boolean | null;
|
|
6117
6150
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -6888,10 +6921,18 @@ namespace reference.`microsoft.graph` {
|
|
|
6888
6921
|
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
6889
6922
|
*/
|
|
6890
6923
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6924
|
+
cellularSliceConfigurationId: string | null;
|
|
6925
|
+
contentFilterConfigurationId: string | null;
|
|
6926
|
+
/**
|
|
6927
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6928
|
+
*/
|
|
6929
|
+
ddmAppConfigId: guid | null;
|
|
6930
|
+
dnsProxyConfigurationId: string | null;
|
|
6891
6931
|
/**
|
|
6892
6932
|
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
6893
6933
|
*/
|
|
6894
6934
|
preventManagedAppBackup: boolean | null;
|
|
6935
|
+
relayConfigurationId: string | null;
|
|
6895
6936
|
/**
|
|
6896
6937
|
* When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
|
|
6897
6938
|
*/
|
|
@@ -6902,6 +6943,122 @@ namespace reference.`microsoft.graph` {
|
|
|
6902
6943
|
vpnConfigurationId: string | null;
|
|
6903
6944
|
}
|
|
6904
6945
|
|
|
6946
|
+
/**
|
|
6947
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
6948
|
+
*/
|
|
6949
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6950
|
+
/**
|
|
6951
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6952
|
+
*/
|
|
6953
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6954
|
+
/**
|
|
6955
|
+
* Domain names to associate with the app
|
|
6956
|
+
*/
|
|
6957
|
+
associatedDomains: string[] | null;
|
|
6958
|
+
/**
|
|
6959
|
+
* 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.
|
|
6960
|
+
*/
|
|
6961
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6962
|
+
/**
|
|
6963
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6964
|
+
*/
|
|
6965
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6966
|
+
/**
|
|
6967
|
+
* 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'.
|
|
6968
|
+
*/
|
|
6969
|
+
cellularSliceConfigurationId: string | null;
|
|
6970
|
+
/**
|
|
6971
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6972
|
+
*/
|
|
6973
|
+
contentFilterConfigurationId: string | null;
|
|
6974
|
+
/**
|
|
6975
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6976
|
+
*/
|
|
6977
|
+
dnsProxyConfigurationId: string | null;
|
|
6978
|
+
/**
|
|
6979
|
+
* 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.
|
|
6980
|
+
*/
|
|
6981
|
+
preventManagedAppBackup: boolean | null;
|
|
6982
|
+
/**
|
|
6983
|
+
* The unique identifier of the relay to associate with the app.
|
|
6984
|
+
*/
|
|
6985
|
+
relayConfigurationId: string | null;
|
|
6986
|
+
/**
|
|
6987
|
+
* 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.
|
|
6988
|
+
*/
|
|
6989
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6990
|
+
/**
|
|
6991
|
+
* 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.
|
|
6992
|
+
*/
|
|
6993
|
+
version: int32 | null;
|
|
6994
|
+
/**
|
|
6995
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6996
|
+
*/
|
|
6997
|
+
vpnConfigurationId: string | null;
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
/**
|
|
7001
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
7002
|
+
*/
|
|
7003
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
7004
|
+
/**
|
|
7005
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7006
|
+
*/
|
|
7007
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
7008
|
+
/**
|
|
7009
|
+
* Domain names to associate with the app
|
|
7010
|
+
*/
|
|
7011
|
+
associatedDomains: string[] | null;
|
|
7012
|
+
/**
|
|
7013
|
+
* 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.
|
|
7014
|
+
*/
|
|
7015
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
7016
|
+
/**
|
|
7017
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7018
|
+
*/
|
|
7019
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
7020
|
+
/**
|
|
7021
|
+
* 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'.
|
|
7022
|
+
*/
|
|
7023
|
+
cellularSliceConfigurationId: string | null;
|
|
7024
|
+
/**
|
|
7025
|
+
* The unique identifier of the content filter to associate with the app.
|
|
7026
|
+
*/
|
|
7027
|
+
contentFilterConfigurationId: string | null;
|
|
7028
|
+
/**
|
|
7029
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
7030
|
+
*/
|
|
7031
|
+
ddmAppConfigId: guid | null;
|
|
7032
|
+
/**
|
|
7033
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
7034
|
+
*/
|
|
7035
|
+
dnsProxyConfigurationId: string | null;
|
|
7036
|
+
/**
|
|
7037
|
+
* 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.
|
|
7038
|
+
*/
|
|
7039
|
+
preventManagedAppBackup: boolean | null;
|
|
7040
|
+
/**
|
|
7041
|
+
* The unique identifier of the relay to associate with the app.
|
|
7042
|
+
*/
|
|
7043
|
+
relayConfigurationId: string | null;
|
|
7044
|
+
/**
|
|
7045
|
+
* 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.
|
|
7046
|
+
*/
|
|
7047
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
7048
|
+
/**
|
|
7049
|
+
* Whether or not to use device licensing.
|
|
7050
|
+
*/
|
|
7051
|
+
useDeviceLicensing: boolean;
|
|
7052
|
+
/**
|
|
7053
|
+
* 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.
|
|
7054
|
+
*/
|
|
7055
|
+
version: int32 | null;
|
|
7056
|
+
/**
|
|
7057
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
7058
|
+
*/
|
|
7059
|
+
vpnConfigurationId: string | null;
|
|
7060
|
+
}
|
|
7061
|
+
|
|
6905
7062
|
/**
|
|
6906
7063
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
6907
7064
|
*/
|
|
@@ -8033,6 +8190,32 @@ namespace reference.`microsoft.graph` {
|
|
|
8033
8190
|
teamIdentifier: string;
|
|
8034
8191
|
}
|
|
8035
8192
|
|
|
8193
|
+
/**
|
|
8194
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
8195
|
+
*/
|
|
8196
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8197
|
+
/**
|
|
8198
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8199
|
+
*/
|
|
8200
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8201
|
+
/**
|
|
8202
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8203
|
+
*/
|
|
8204
|
+
ddmAppConfigId: guid | null;
|
|
8205
|
+
/**
|
|
8206
|
+
* 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.
|
|
8207
|
+
*/
|
|
8208
|
+
isIosApp: boolean | null;
|
|
8209
|
+
/**
|
|
8210
|
+
* 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.
|
|
8211
|
+
*/
|
|
8212
|
+
useDeviceLicensing: boolean;
|
|
8213
|
+
/**
|
|
8214
|
+
* 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.
|
|
8215
|
+
*/
|
|
8216
|
+
version: int32 | null;
|
|
8217
|
+
}
|
|
8218
|
+
|
|
8036
8219
|
/**
|
|
8037
8220
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
8038
8221
|
*/
|
|
@@ -9227,6 +9410,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9227
9410
|
networkType: networkType | null;
|
|
9228
9411
|
}
|
|
9229
9412
|
|
|
9413
|
+
@complex model nistClassification {
|
|
9414
|
+
category: string;
|
|
9415
|
+
description: string | null;
|
|
9416
|
+
function: string | null;
|
|
9417
|
+
name: string;
|
|
9418
|
+
}
|
|
9419
|
+
|
|
9230
9420
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
9231
9421
|
}
|
|
9232
9422
|
|
|
@@ -9474,8 +9664,26 @@ namespace reference.`microsoft.graph` {
|
|
|
9474
9664
|
internalUrl: string | null;
|
|
9475
9665
|
}
|
|
9476
9666
|
|
|
9667
|
+
@complex model onPremisesCurrentExportData {
|
|
9668
|
+
clientMachineName: string | null;
|
|
9669
|
+
pendingObjectsAddition: int32 | null;
|
|
9670
|
+
pendingObjectsDeletion: int32 | null;
|
|
9671
|
+
pendingObjectsUpdate: int32 | null;
|
|
9672
|
+
serviceAccount: string | null;
|
|
9673
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
9674
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
9675
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
9676
|
+
}
|
|
9677
|
+
|
|
9477
9678
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
9478
9679
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
9680
|
+
anchorAttribute: string | null;
|
|
9681
|
+
applicationId: string | null;
|
|
9682
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
9683
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
9684
|
+
synchronizationClientVersion: string | null;
|
|
9685
|
+
synchronizationInterval: duration | null;
|
|
9686
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
9479
9687
|
}
|
|
9480
9688
|
|
|
9481
9689
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -9536,6 +9744,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9536
9744
|
isAccessibleViaZTNAClient: boolean | null;
|
|
9537
9745
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
9538
9746
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
9747
|
+
isDeviceAccessEnabled: boolean;
|
|
9539
9748
|
isDnsResolutionEnabled: boolean | null;
|
|
9540
9749
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
9541
9750
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -9562,6 +9771,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9562
9771
|
SingleSignOnMode: singleSignOnMode | null;
|
|
9563
9772
|
}
|
|
9564
9773
|
|
|
9774
|
+
@complex model onPremisesWritebackConfiguration {
|
|
9775
|
+
unifiedGroupContainer: string | null;
|
|
9776
|
+
userContainer: string | null;
|
|
9777
|
+
}
|
|
9778
|
+
|
|
9565
9779
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
9566
9780
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
9567
9781
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -15547,6 +15761,9 @@ namespace reference.`microsoft.graph` {
|
|
|
15547
15761
|
@entity model agentIdentity extends servicePrincipal {
|
|
15548
15762
|
agentIdentityBlueprintId: string;
|
|
15549
15763
|
@computed createdDateTime: offsetDateTime | null;
|
|
15764
|
+
managerApplications: guid;
|
|
15765
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
15766
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
15550
15767
|
@references sponsors: directoryObject[];
|
|
15551
15768
|
}
|
|
15552
15769
|
|
|
@@ -15558,6 +15775,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15558
15775
|
|
|
15559
15776
|
@open
|
|
15560
15777
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
15778
|
+
managerApplications: guid;
|
|
15561
15779
|
@references sponsors: directoryObject[];
|
|
15562
15780
|
}
|
|
15563
15781
|
|
|
@@ -18148,6 +18366,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18148
18366
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
18149
18367
|
*/
|
|
18150
18368
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
18369
|
+
/**
|
|
18370
|
+
* 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.
|
|
18371
|
+
*/
|
|
18372
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
18151
18373
|
/**
|
|
18152
18374
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
18153
18375
|
*/
|
|
@@ -19850,10 +20072,18 @@ namespace reference.`microsoft.graph` {
|
|
|
19850
20072
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
19851
20073
|
*/
|
|
19852
20074
|
excludedDomains: string[] | null;
|
|
20075
|
+
/**
|
|
20076
|
+
* 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.
|
|
20077
|
+
*/
|
|
20078
|
+
excludeLocalNetworks: boolean | null;
|
|
19853
20079
|
/**
|
|
19854
20080
|
* Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin
|
|
19855
20081
|
*/
|
|
19856
20082
|
identifier: string | null;
|
|
20083
|
+
/**
|
|
20084
|
+
* 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.
|
|
20085
|
+
*/
|
|
20086
|
+
includeAllNetworks: boolean | null;
|
|
19857
20087
|
/**
|
|
19858
20088
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
19859
20089
|
*/
|
|
@@ -20686,11 +20916,13 @@ namespace reference.`microsoft.graph` {
|
|
|
20686
20916
|
body: chatMessageBody;
|
|
20687
20917
|
channelIdentity: channelIdentity | null;
|
|
20688
20918
|
chatId: string | null;
|
|
20919
|
+
citations: chatMessageCitation[] | null;
|
|
20689
20920
|
@computed createdDateTime: offsetDateTime | null;
|
|
20690
20921
|
deletedDateTime: offsetDateTime | null;
|
|
20691
20922
|
etag: string | null;
|
|
20692
20923
|
eventDetail: eventMessageDetail | null;
|
|
20693
20924
|
from: chatMessageFromIdentitySet | null;
|
|
20925
|
+
hasReplies: boolean;
|
|
20694
20926
|
importance: chatMessageImportance;
|
|
20695
20927
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
20696
20928
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -22599,7 +22831,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22599
22831
|
/**
|
|
22600
22832
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
22601
22833
|
*/
|
|
22602
|
-
@entity model deviceAppManagement extends entity {
|
|
22834
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
22603
22835
|
/**
|
|
22604
22836
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
22605
22837
|
*/
|
|
@@ -23173,7 +23405,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23173
23405
|
*/
|
|
23174
23406
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
23175
23407
|
/**
|
|
23176
|
-
* Indicates the
|
|
23408
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
23177
23409
|
*/
|
|
23178
23410
|
platform: deviceComplianceScriptPlatformType | null;
|
|
23179
23411
|
/**
|
|
@@ -23185,7 +23417,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23185
23417
|
*/
|
|
23186
23418
|
roleScopeTagIds: string[] | null;
|
|
23187
23419
|
/**
|
|
23188
|
-
*
|
|
23420
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
23189
23421
|
*/
|
|
23190
23422
|
runAs32Bit: boolean;
|
|
23191
23423
|
/**
|
|
@@ -23699,6 +23931,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23699
23931
|
successCount: int32;
|
|
23700
23932
|
}
|
|
23701
23933
|
|
|
23934
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
23702
23935
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
23703
23936
|
/**
|
|
23704
23937
|
* Number of compliant users
|
|
@@ -24669,6 +24902,8 @@ namespace reference.`microsoft.graph` {
|
|
|
24669
24902
|
/**
|
|
24670
24903
|
* The device configuration user state summary for this account.
|
|
24671
24904
|
*/
|
|
24905
|
+
|
|
24906
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
24672
24907
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
24673
24908
|
/**
|
|
24674
24909
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -26936,6 +27171,9 @@ namespace reference.`microsoft.graph` {
|
|
|
26936
27171
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
26937
27172
|
@contains deletedItems: directoryObject[];
|
|
26938
27173
|
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
27174
|
+
|
|
27175
|
+
@graphDeprecated("DirectoryFeatureRolloutPolicies")
|
|
27176
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
26939
27177
|
@contains federationConfigurations: identityProviderBase[];
|
|
26940
27178
|
@contains impactedResources: impactedResource[];
|
|
26941
27179
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
@@ -27623,6 +27861,15 @@ namespace reference.`microsoft.graph` {
|
|
|
27623
27861
|
onUserCreateStart: onUserCreateStartHandler | null;
|
|
27624
27862
|
}
|
|
27625
27863
|
|
|
27864
|
+
@entity model featureRolloutPolicy extends entity {
|
|
27865
|
+
description: string | null;
|
|
27866
|
+
displayName: string;
|
|
27867
|
+
feature: stagedFeatureName;
|
|
27868
|
+
isAppliedToOrganization: boolean;
|
|
27869
|
+
isEnabled: boolean;
|
|
27870
|
+
@contains appliesTo: directoryObject[];
|
|
27871
|
+
}
|
|
27872
|
+
|
|
27626
27873
|
@entity model federatedIdentityCredential extends entity {
|
|
27627
27874
|
audiences: string[];
|
|
27628
27875
|
claimsMatchingExpression: federatedIdentityExpression | null;
|
|
@@ -28945,6 +29192,7 @@ namespace reference.`microsoft.graph` {
|
|
|
28945
29192
|
resourceType: string;
|
|
28946
29193
|
status: recommendationStatus;
|
|
28947
29194
|
subjectId: string;
|
|
29195
|
+
@contains tags: recommendationTag[];
|
|
28948
29196
|
}
|
|
28949
29197
|
|
|
28950
29198
|
/**
|
|
@@ -30967,6 +31215,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30967
31215
|
* Contains properties and inherited properties for iOS store apps.
|
|
30968
31216
|
*/
|
|
30969
31217
|
@entity model iosStoreApp extends mobileApp {
|
|
31218
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
30970
31219
|
/**
|
|
30971
31220
|
* The iOS architecture for which this app can run on.
|
|
30972
31221
|
*/
|
|
@@ -31134,6 +31383,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31134
31383
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
31135
31384
|
*/
|
|
31136
31385
|
@entity model iosVppApp extends mobileApp {
|
|
31386
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
31137
31387
|
/**
|
|
31138
31388
|
* The applicable iOS Device Type.
|
|
31139
31389
|
*/
|
|
@@ -32786,6 +33036,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32786
33036
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
32787
33037
|
*/
|
|
32788
33038
|
@entity model macOsVppApp extends mobileApp {
|
|
33039
|
+
/**
|
|
33040
|
+
* 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.
|
|
33041
|
+
*/
|
|
33042
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
32789
33043
|
/**
|
|
32790
33044
|
* The store URL.
|
|
32791
33045
|
*/
|
|
@@ -32924,6 +33178,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32924
33178
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
32925
33179
|
*/
|
|
32926
33180
|
ssid: string;
|
|
33181
|
+
/**
|
|
33182
|
+
* 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.
|
|
33183
|
+
*/
|
|
33184
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
32927
33185
|
/**
|
|
32928
33186
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
32929
33187
|
*/
|
|
@@ -33946,6 +34204,8 @@ namespace reference.`microsoft.graph` {
|
|
|
33946
34204
|
/**
|
|
33947
34205
|
* Security baseline states for this device.
|
|
33948
34206
|
*/
|
|
34207
|
+
|
|
34208
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
33949
34209
|
@contains securityBaselineStates: securityBaselineState[];
|
|
33950
34210
|
/**
|
|
33951
34211
|
* The primary users associated with the managed device.
|
|
@@ -35210,6 +35470,10 @@ namespace reference.`microsoft.graph` {
|
|
|
35210
35470
|
* Indicates the size of the file after encryption, in bytes.
|
|
35211
35471
|
*/
|
|
35212
35472
|
sizeEncrypted: int64;
|
|
35473
|
+
/**
|
|
35474
|
+
* 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.
|
|
35475
|
+
*/
|
|
35476
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
35213
35477
|
/**
|
|
35214
35478
|
* Indicates the state of the current upload request. Possible values are: success, transientError, error, unknown, azureStorageUriRequestSuccess, azureStorageUriRequestPending, azureStorageUriRequestFailed, azureStorageUriRequestTimedOut, azureStorageUriRenewalSuccess, azureStorageUriRenewalPending, azureStorageUriRenewalFailed, azureStorageUriRenewalTimedOut, commitFileSuccess, commitFilePending, commitFileFailed, commitFileTimedOut. Default value is success. This property is read-only.
|
|
35215
35479
|
*/
|
|
@@ -35682,6 +35946,14 @@ namespace reference.`microsoft.graph` {
|
|
|
35682
35946
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
35683
35947
|
*/
|
|
35684
35948
|
enrolledDateTime: offsetDateTime;
|
|
35949
|
+
/**
|
|
35950
|
+
* 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.
|
|
35951
|
+
*/
|
|
35952
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
35953
|
+
/**
|
|
35954
|
+
* 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.
|
|
35955
|
+
*/
|
|
35956
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
35685
35957
|
/**
|
|
35686
35958
|
* Last connection time for the Ndes Connector
|
|
35687
35959
|
*/
|
|
@@ -36547,6 +36819,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36547
36819
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
36548
36820
|
@contains directoryRoleAccessReviewPolicy: directoryRoleAccessReviewPolicy | null;
|
|
36549
36821
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
36822
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
36550
36823
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
36551
36824
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
36552
36825
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
@@ -37090,9 +37363,13 @@ namespace reference.`microsoft.graph` {
|
|
|
37090
37363
|
actionSteps: actionStep[] | null;
|
|
37091
37364
|
benefits: string | null;
|
|
37092
37365
|
category: recommendationCategory;
|
|
37366
|
+
categoryGroup: recommendationCategoryGroup;
|
|
37367
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
37368
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
37093
37369
|
@computed createdDateTime: offsetDateTime;
|
|
37094
37370
|
currentScore: float64 | null;
|
|
37095
37371
|
displayName: string;
|
|
37372
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
37096
37373
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
37097
37374
|
impactStartDateTime: offsetDateTime | null;
|
|
37098
37375
|
impactType: string | null;
|
|
@@ -37101,14 +37378,23 @@ namespace reference.`microsoft.graph` {
|
|
|
37101
37378
|
lastModifiedBy: string | null;
|
|
37102
37379
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37103
37380
|
maxScore: float64 | null;
|
|
37381
|
+
needsMoreActionResourceCount: int32 | null;
|
|
37382
|
+
nistClassifications: nistClassification[];
|
|
37104
37383
|
postponeUntilDateTime: offsetDateTime | null;
|
|
37105
37384
|
priority: recommendationPriority;
|
|
37106
37385
|
recommendationType: recommendationType | null;
|
|
37107
37386
|
releaseType: string | null;
|
|
37387
|
+
remediatedDateTime: offsetDateTime | null;
|
|
37108
37388
|
remediationImpact: string | null;
|
|
37109
37389
|
requiredLicenses: requiredLicenses | null;
|
|
37110
37390
|
status: recommendationStatus;
|
|
37391
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
37111
37392
|
@contains impactedResources: impactedResource[];
|
|
37393
|
+
@contains tags: recommendationTag[];
|
|
37394
|
+
}
|
|
37395
|
+
|
|
37396
|
+
@entity model recommendationTag extends entity {
|
|
37397
|
+
displayName: string;
|
|
37112
37398
|
}
|
|
37113
37399
|
|
|
37114
37400
|
@open
|
|
@@ -37540,12 +37826,14 @@ namespace reference.`microsoft.graph` {
|
|
|
37540
37826
|
roleMemberInfo: identity;
|
|
37541
37827
|
}
|
|
37542
37828
|
|
|
37543
|
-
@entity model searchEntity extends entity {
|
|
37829
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
37544
37830
|
}
|
|
37545
37831
|
|
|
37546
37832
|
/**
|
|
37547
37833
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
37548
37834
|
*/
|
|
37835
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37836
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37549
37837
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
37550
37838
|
/**
|
|
37551
37839
|
* The category name
|
|
@@ -37556,6 +37844,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37556
37844
|
/**
|
|
37557
37845
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
37558
37846
|
*/
|
|
37847
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37559
37848
|
@entity model securityBaselineDeviceState extends entity {
|
|
37560
37849
|
/**
|
|
37561
37850
|
* Display name of the device
|
|
@@ -37582,6 +37871,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37582
37871
|
/**
|
|
37583
37872
|
* The security baseline compliance state of a setting for a device
|
|
37584
37873
|
*/
|
|
37874
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37585
37875
|
@entity model securityBaselineSettingState extends entity {
|
|
37586
37876
|
/**
|
|
37587
37877
|
* The policies that contribute to this setting instance
|
|
@@ -37620,6 +37910,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37620
37910
|
/**
|
|
37621
37911
|
* Security baseline state for a device.
|
|
37622
37912
|
*/
|
|
37913
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37623
37914
|
@entity model securityBaselineState extends entity {
|
|
37624
37915
|
/**
|
|
37625
37916
|
* The display name of the security baseline
|
|
@@ -37640,12 +37931,15 @@ namespace reference.`microsoft.graph` {
|
|
|
37640
37931
|
/**
|
|
37641
37932
|
* The security baseline state for different settings for a device
|
|
37642
37933
|
*/
|
|
37934
|
+
|
|
37935
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37643
37936
|
@contains settingStates: securityBaselineSettingState[];
|
|
37644
37937
|
}
|
|
37645
37938
|
|
|
37646
37939
|
/**
|
|
37647
37940
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
37648
37941
|
*/
|
|
37942
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37649
37943
|
@entity model securityBaselineStateSummary extends entity {
|
|
37650
37944
|
/**
|
|
37651
37945
|
* Number of conflict devices
|
|
@@ -37680,14 +37974,20 @@ namespace reference.`microsoft.graph` {
|
|
|
37680
37974
|
/**
|
|
37681
37975
|
* The security baseline per category device state summary
|
|
37682
37976
|
*/
|
|
37977
|
+
|
|
37978
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37683
37979
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
37684
37980
|
/**
|
|
37685
37981
|
* The security baseline device states
|
|
37686
37982
|
*/
|
|
37983
|
+
|
|
37984
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37687
37985
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
37688
37986
|
/**
|
|
37689
37987
|
* The security baseline device state summary
|
|
37690
37988
|
*/
|
|
37989
|
+
|
|
37990
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37691
37991
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
37692
37992
|
}
|
|
37693
37993
|
|
|
@@ -38803,7 +39103,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38803
39103
|
@contains teamDefinition: team | null;
|
|
38804
39104
|
}
|
|
38805
39105
|
|
|
38806
|
-
@entity model teamwork extends entity {
|
|
39106
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
38807
39107
|
isTeamsEnabled: boolean;
|
|
38808
39108
|
region: string | null;
|
|
38809
39109
|
@contains deletedChats: deletedChat[];
|
|
@@ -46468,7 +46768,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46468
46768
|
*/
|
|
46469
46769
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
46470
46770
|
/**
|
|
46471
|
-
*
|
|
46771
|
+
* 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.
|
|
46772
|
+
*/
|
|
46773
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
46774
|
+
/**
|
|
46775
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46472
46776
|
*/
|
|
46473
46777
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
46474
46778
|
/**
|
|
@@ -46476,7 +46780,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46476
46780
|
*/
|
|
46477
46781
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
46478
46782
|
/**
|
|
46479
|
-
*
|
|
46783
|
+
* 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.
|
|
46784
|
+
*/
|
|
46785
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
46786
|
+
/**
|
|
46787
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46480
46788
|
*/
|
|
46481
46789
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
46482
46790
|
/**
|
|
@@ -49512,18 +49820,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49512
49820
|
*/
|
|
49513
49821
|
wpaPersonal: 4,
|
|
49514
49822
|
unknownFutureValue: 5,
|
|
49515
|
-
/**
|
|
49516
|
-
* Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49517
|
-
*/
|
|
49518
|
-
wpa2Personal: 6,
|
|
49519
|
-
/**
|
|
49520
|
-
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49521
|
-
*/
|
|
49522
|
-
wpa3Personal: 7,
|
|
49523
|
-
/**
|
|
49524
|
-
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49525
|
-
*/
|
|
49526
|
-
wpa3Enterprise: 8,
|
|
49527
49823
|
}
|
|
49528
49824
|
|
|
49529
49825
|
/**
|
|
@@ -49698,22 +49994,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49698
49994
|
*/
|
|
49699
49995
|
wpaEnterprise: 4,
|
|
49700
49996
|
unknownFutureValue: 5,
|
|
49701
|
-
/**
|
|
49702
|
-
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
|
|
49703
|
-
*/
|
|
49704
|
-
wpa2Personal: 6,
|
|
49705
|
-
/**
|
|
49706
|
-
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49707
|
-
*/
|
|
49708
|
-
wpa2Enterprise: 7,
|
|
49709
|
-
/**
|
|
49710
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49711
|
-
*/
|
|
49712
|
-
wpa3Personal: 8,
|
|
49713
|
-
/**
|
|
49714
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49715
|
-
*/
|
|
49716
|
-
wpa3Enterprise: 9,
|
|
49717
49997
|
}
|
|
49718
49998
|
|
|
49719
49999
|
/**
|
|
@@ -51922,6 +52202,29 @@ namespace reference.`microsoft.graph` {
|
|
|
51922
52202
|
applicationProxy: 0,
|
|
51923
52203
|
}
|
|
51924
52204
|
|
|
52205
|
+
/**
|
|
52206
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
52207
|
+
*/
|
|
52208
|
+
enum connectorHealthCheckMetricName {
|
|
52209
|
+
/**
|
|
52210
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
52211
|
+
*/
|
|
52212
|
+
caConnectivity: 0,
|
|
52213
|
+
/**
|
|
52214
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
52215
|
+
*/
|
|
52216
|
+
caIssuancePermissions: 1,
|
|
52217
|
+
/**
|
|
52218
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
52219
|
+
*/
|
|
52220
|
+
caRevocationPermissions: 2,
|
|
52221
|
+
/**
|
|
52222
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
52223
|
+
*/
|
|
52224
|
+
certificateTemplate: 3,
|
|
52225
|
+
unknownFutureValue: 4,
|
|
52226
|
+
}
|
|
52227
|
+
|
|
51925
52228
|
/**
|
|
51926
52229
|
* Connector health state for connector status
|
|
51927
52230
|
*/
|
|
@@ -52163,6 +52466,44 @@ namespace reference.`microsoft.graph` {
|
|
|
52163
52466
|
saturday: 6,
|
|
52164
52467
|
}
|
|
52165
52468
|
|
|
52469
|
+
/**
|
|
52470
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
52471
|
+
*/
|
|
52472
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
52473
|
+
/**
|
|
52474
|
+
* The device downloads apps of any size using a cellular network.
|
|
52475
|
+
*/
|
|
52476
|
+
alwaysOn: 0,
|
|
52477
|
+
/**
|
|
52478
|
+
* 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.
|
|
52479
|
+
*/
|
|
52480
|
+
alwaysOff: 1,
|
|
52481
|
+
/**
|
|
52482
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
52483
|
+
*/
|
|
52484
|
+
storeSettings: 2,
|
|
52485
|
+
unknownFutureValue: 3,
|
|
52486
|
+
}
|
|
52487
|
+
|
|
52488
|
+
/**
|
|
52489
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
52490
|
+
*/
|
|
52491
|
+
enum ddmAppAutomaticAppUpdates {
|
|
52492
|
+
/**
|
|
52493
|
+
* The device automatically updates the app to the latest version.
|
|
52494
|
+
*/
|
|
52495
|
+
alwaysOn: 0,
|
|
52496
|
+
/**
|
|
52497
|
+
* The device never automatically updates the app.
|
|
52498
|
+
*/
|
|
52499
|
+
alwaysOff: 1,
|
|
52500
|
+
/**
|
|
52501
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
52502
|
+
*/
|
|
52503
|
+
storeSettings: 2,
|
|
52504
|
+
unknownFutureValue: 3,
|
|
52505
|
+
}
|
|
52506
|
+
|
|
52166
52507
|
@graphFlags
|
|
52167
52508
|
enum decisionItemPrincipalResourceMembershipType {
|
|
52168
52509
|
direct: 1,
|
|
@@ -54281,6 +54622,10 @@ namespace reference.`microsoft.graph` {
|
|
|
54281
54622
|
* Indicates the settings that can be deployed through the Android channel.
|
|
54282
54623
|
*/
|
|
54283
54624
|
android: 65536,
|
|
54625
|
+
/**
|
|
54626
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
54627
|
+
*/
|
|
54628
|
+
intuneOpenExtensibility: 131072,
|
|
54284
54629
|
}
|
|
54285
54630
|
|
|
54286
54631
|
/**
|
|
@@ -56559,6 +56904,176 @@ namespace reference.`microsoft.graph` {
|
|
|
56559
56904
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
56560
56905
|
}
|
|
56561
56906
|
|
|
56907
|
+
/**
|
|
56908
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
56909
|
+
*/
|
|
56910
|
+
enum eSimProfileErrorDetail {
|
|
56911
|
+
/**
|
|
56912
|
+
* No error.
|
|
56913
|
+
*/
|
|
56914
|
+
none: 0,
|
|
56915
|
+
/**
|
|
56916
|
+
* The eSIM card encountered a general failure.
|
|
56917
|
+
*/
|
|
56918
|
+
cardGeneralFailure: 1,
|
|
56919
|
+
/**
|
|
56920
|
+
* The confirmation code provided was incorrect.
|
|
56921
|
+
*/
|
|
56922
|
+
confirmationCodeIncorrect: 2,
|
|
56923
|
+
/**
|
|
56924
|
+
* The confirmation code was missing.
|
|
56925
|
+
*/
|
|
56926
|
+
confirmationCodeMissing: 3,
|
|
56927
|
+
/**
|
|
56928
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
56929
|
+
*/
|
|
56930
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
56931
|
+
/**
|
|
56932
|
+
* The operation is forbidden by policy.
|
|
56933
|
+
*/
|
|
56934
|
+
forbiddenByPolicy: 5,
|
|
56935
|
+
/**
|
|
56936
|
+
* The matching ID provided was invalid.
|
|
56937
|
+
*/
|
|
56938
|
+
invalidMatchingId: 6,
|
|
56939
|
+
/**
|
|
56940
|
+
* No eligible eSIM profile was found for this device.
|
|
56941
|
+
*/
|
|
56942
|
+
noEligibleProfileForThisDevice: 7,
|
|
56943
|
+
/**
|
|
56944
|
+
* There was not enough space on the eSIM card.
|
|
56945
|
+
*/
|
|
56946
|
+
notEnoughSpaceOnCard: 8,
|
|
56947
|
+
/**
|
|
56948
|
+
* The operation was aborted.
|
|
56949
|
+
*/
|
|
56950
|
+
operationAborted: 9,
|
|
56951
|
+
/**
|
|
56952
|
+
* The eSIM profile EID did not match the device.
|
|
56953
|
+
*/
|
|
56954
|
+
profileEidMismatch: 10,
|
|
56955
|
+
/**
|
|
56956
|
+
* The eSIM profile is not available for a new binding.
|
|
56957
|
+
*/
|
|
56958
|
+
profileNotAvailableForNewBinding: 11,
|
|
56959
|
+
/**
|
|
56960
|
+
* The eSIM profile has not been released by the operator.
|
|
56961
|
+
*/
|
|
56962
|
+
profileNotReleasedByOperator: 12,
|
|
56963
|
+
/**
|
|
56964
|
+
* The remote server encountered a general failure.
|
|
56965
|
+
*/
|
|
56966
|
+
remoteServerGeneralFailure: 13,
|
|
56967
|
+
/**
|
|
56968
|
+
* The remote server was unreachable.
|
|
56969
|
+
*/
|
|
56970
|
+
remoteServerUnreachable: 14,
|
|
56971
|
+
/**
|
|
56972
|
+
* A timeout occurred while waiting for user consent.
|
|
56973
|
+
*/
|
|
56974
|
+
timeoutWaitingForUserConsent: 15,
|
|
56975
|
+
/**
|
|
56976
|
+
* The operation is prohibited by the eSIM profile class.
|
|
56977
|
+
*/
|
|
56978
|
+
operationProhibitedByProfileClass: 16,
|
|
56979
|
+
/**
|
|
56980
|
+
* The provisioning profile is not present.
|
|
56981
|
+
*/
|
|
56982
|
+
provisioningProfileNotPresent: 17,
|
|
56983
|
+
/**
|
|
56984
|
+
* There is no corresponding request for this operation.
|
|
56985
|
+
*/
|
|
56986
|
+
noCorrespondingRequest: 18,
|
|
56987
|
+
/**
|
|
56988
|
+
* A timeout occurred while waiting for a response.
|
|
56989
|
+
*/
|
|
56990
|
+
timeoutWaitingForResponse: 19,
|
|
56991
|
+
/**
|
|
56992
|
+
* The ICCID already exists on the device.
|
|
56993
|
+
*/
|
|
56994
|
+
iccidAlreadyExists: 20,
|
|
56995
|
+
/**
|
|
56996
|
+
* An error occurred while processing the eSIM profile.
|
|
56997
|
+
*/
|
|
56998
|
+
profileProcessingError: 21,
|
|
56999
|
+
/**
|
|
57000
|
+
* The remote server is not trusted.
|
|
57001
|
+
*/
|
|
57002
|
+
remoteServerNotTrusted: 22,
|
|
57003
|
+
/**
|
|
57004
|
+
* The maximum number of retries for profile download was exceeded.
|
|
57005
|
+
*/
|
|
57006
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
57007
|
+
/**
|
|
57008
|
+
* The WinHTTP name could not be resolved.
|
|
57009
|
+
*/
|
|
57010
|
+
winhttpNameNotResolved: 24,
|
|
57011
|
+
/**
|
|
57012
|
+
* The WinHTTP operation was cancelled.
|
|
57013
|
+
*/
|
|
57014
|
+
winhttpOperationCancelled: 25,
|
|
57015
|
+
/**
|
|
57016
|
+
* The status is unspecified.
|
|
57017
|
+
*/
|
|
57018
|
+
statusUnspecified: 26,
|
|
57019
|
+
/**
|
|
57020
|
+
* The operation is in progress.
|
|
57021
|
+
*/
|
|
57022
|
+
inProgress: 27,
|
|
57023
|
+
/**
|
|
57024
|
+
* The operation is pending user action.
|
|
57025
|
+
*/
|
|
57026
|
+
pendingUserAction: 28,
|
|
57027
|
+
/**
|
|
57028
|
+
* An error occurred while setup was in progress.
|
|
57029
|
+
*/
|
|
57030
|
+
errorSetupInProgress: 29,
|
|
57031
|
+
/**
|
|
57032
|
+
* The user denied the operation.
|
|
57033
|
+
*/
|
|
57034
|
+
errorUserDenied: 30,
|
|
57035
|
+
/**
|
|
57036
|
+
* An internal error occurred.
|
|
57037
|
+
*/
|
|
57038
|
+
internalError: 31,
|
|
57039
|
+
/**
|
|
57040
|
+
* The ICCID was not found.
|
|
57041
|
+
*/
|
|
57042
|
+
errorIccIdNotFound: 32,
|
|
57043
|
+
/**
|
|
57044
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
57045
|
+
*/
|
|
57046
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
57047
|
+
unknownFutureValue: 34,
|
|
57048
|
+
}
|
|
57049
|
+
|
|
57050
|
+
/**
|
|
57051
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
57052
|
+
*/
|
|
57053
|
+
enum eSimProfileState {
|
|
57054
|
+
/**
|
|
57055
|
+
* Unknown state.
|
|
57056
|
+
*/
|
|
57057
|
+
`unknown`: 0,
|
|
57058
|
+
/**
|
|
57059
|
+
* The eSIM profile is being installed.
|
|
57060
|
+
*/
|
|
57061
|
+
installing: 1,
|
|
57062
|
+
/**
|
|
57063
|
+
* The eSIM profile has been successfully installed.
|
|
57064
|
+
*/
|
|
57065
|
+
installed: 2,
|
|
57066
|
+
/**
|
|
57067
|
+
* The eSIM profile is being deleted.
|
|
57068
|
+
*/
|
|
57069
|
+
deleting: 3,
|
|
57070
|
+
/**
|
|
57071
|
+
* An error occurred while processing the eSIM profile.
|
|
57072
|
+
*/
|
|
57073
|
+
error: 4,
|
|
57074
|
+
unknownFutureValue: 5,
|
|
57075
|
+
}
|
|
57076
|
+
|
|
56562
57077
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
56563
57078
|
enum eventType {
|
|
56564
57079
|
singleInstance: 0,
|
|
@@ -59896,6 +60411,22 @@ namespace reference.`microsoft.graph` {
|
|
|
59896
60411
|
userRequestedInstall: 5,
|
|
59897
60412
|
}
|
|
59898
60413
|
|
|
60414
|
+
/**
|
|
60415
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
60416
|
+
*/
|
|
60417
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
60418
|
+
apkIsInvalid: 1,
|
|
60419
|
+
apkIsMissingSignerCertificates: 2,
|
|
60420
|
+
apkHasInvalidPackageName: 3,
|
|
60421
|
+
apkPackageNameMismatch: 4,
|
|
60422
|
+
apkHasInvalidVersionCode: 5,
|
|
60423
|
+
apkHasVersionCodeMismatch: 6,
|
|
60424
|
+
apkHasInvalidMinSdk: 7,
|
|
60425
|
+
apkMinSdkMismatch: 8,
|
|
60426
|
+
apkVersionNameMismatch: 9,
|
|
60427
|
+
unknownFutureValue: 10,
|
|
60428
|
+
}
|
|
60429
|
+
|
|
59899
60430
|
/**
|
|
59900
60431
|
* Contains properties for upload request states.
|
|
59901
60432
|
*/
|
|
@@ -60104,6 +60635,33 @@ namespace reference.`microsoft.graph` {
|
|
|
60104
60635
|
WriteOnly: 3,
|
|
60105
60636
|
}
|
|
60106
60637
|
|
|
60638
|
+
/**
|
|
60639
|
+
* The health status of an NDES connector or individual health check metric.
|
|
60640
|
+
*/
|
|
60641
|
+
enum ndesConnectorHealthStatus {
|
|
60642
|
+
/**
|
|
60643
|
+
* Health has not been evaluated yet for this connector.
|
|
60644
|
+
*/
|
|
60645
|
+
`unknown`: 0,
|
|
60646
|
+
/**
|
|
60647
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
60648
|
+
*/
|
|
60649
|
+
noActionRequired: 1,
|
|
60650
|
+
/**
|
|
60651
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
60652
|
+
*/
|
|
60653
|
+
attentionRequired: 2,
|
|
60654
|
+
/**
|
|
60655
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
60656
|
+
*/
|
|
60657
|
+
actionRequired: 3,
|
|
60658
|
+
/**
|
|
60659
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
60660
|
+
*/
|
|
60661
|
+
disconnected: 4,
|
|
60662
|
+
unknownFutureValue: 5,
|
|
60663
|
+
}
|
|
60664
|
+
|
|
60107
60665
|
/**
|
|
60108
60666
|
* The current status of the Ndes Connector.
|
|
60109
60667
|
*/
|
|
@@ -61936,6 +62494,16 @@ namespace reference.`microsoft.graph` {
|
|
|
61936
62494
|
mdiSecureScore: 3,
|
|
61937
62495
|
}
|
|
61938
62496
|
|
|
62497
|
+
enum recommendationCategoryGroup {
|
|
62498
|
+
strengthenAuthentication: 0,
|
|
62499
|
+
detectAndRespondToThreats: 1,
|
|
62500
|
+
enforceLeastPrivilege: 2,
|
|
62501
|
+
governAppsCredentialsAndAgents: 3,
|
|
62502
|
+
hardenInfrastructure: 4,
|
|
62503
|
+
defenderForIdentity: 5,
|
|
62504
|
+
unknownFutureValue: 6,
|
|
62505
|
+
}
|
|
62506
|
+
|
|
61939
62507
|
enum recommendationFeatureAreas {
|
|
61940
62508
|
users: 0,
|
|
61941
62509
|
groups: 1,
|
|
@@ -61947,11 +62515,12 @@ namespace reference.`microsoft.graph` {
|
|
|
61947
62515
|
unknownFutureValue: 7,
|
|
61948
62516
|
}
|
|
61949
62517
|
|
|
61950
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61951
62518
|
enum recommendationPriority {
|
|
61952
62519
|
low: 0,
|
|
61953
62520
|
medium: 1,
|
|
61954
62521
|
high: 2,
|
|
62522
|
+
critical: 3,
|
|
62523
|
+
unknownFutureValue: 4,
|
|
61955
62524
|
}
|
|
61956
62525
|
|
|
61957
62526
|
enum recommendationStatus {
|
|
@@ -61965,6 +62534,7 @@ namespace reference.`microsoft.graph` {
|
|
|
61965
62534
|
thirdParty: 7,
|
|
61966
62535
|
planned: 8,
|
|
61967
62536
|
alternateMitigation: 9,
|
|
62537
|
+
needsMoreAction: 10,
|
|
61968
62538
|
}
|
|
61969
62539
|
|
|
61970
62540
|
enum recommendationType {
|
|
@@ -62244,6 +62814,14 @@ namespace reference.`microsoft.graph` {
|
|
|
62244
62814
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
62245
62815
|
*/
|
|
62246
62816
|
restoreManagedHomeScreen: 42,
|
|
62817
|
+
/**
|
|
62818
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
62819
|
+
*/
|
|
62820
|
+
triggerEnhancedLogCollection: 44,
|
|
62821
|
+
/**
|
|
62822
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
62823
|
+
*/
|
|
62824
|
+
cancelEnhancedLogCollection: 45,
|
|
62247
62825
|
}
|
|
62248
62826
|
|
|
62249
62827
|
/**
|
|
@@ -62280,6 +62858,25 @@ namespace reference.`microsoft.graph` {
|
|
|
62280
62858
|
enabled: 2,
|
|
62281
62859
|
}
|
|
62282
62860
|
|
|
62861
|
+
/**
|
|
62862
|
+
* Enumeration indicating the state of session recording
|
|
62863
|
+
*/
|
|
62864
|
+
enum remoteHelpRecordingState {
|
|
62865
|
+
/**
|
|
62866
|
+
* Recording is not enabled for this session.
|
|
62867
|
+
*/
|
|
62868
|
+
notEnabled: 0,
|
|
62869
|
+
/**
|
|
62870
|
+
* Recording is in progress.
|
|
62871
|
+
*/
|
|
62872
|
+
recording: 1,
|
|
62873
|
+
/**
|
|
62874
|
+
* Recording failed.
|
|
62875
|
+
*/
|
|
62876
|
+
failed: 2,
|
|
62877
|
+
unknownFutureValue: 3,
|
|
62878
|
+
}
|
|
62879
|
+
|
|
62283
62880
|
enum replyRestriction {
|
|
62284
62881
|
everyone: 0,
|
|
62285
62882
|
authorAndModerators: 1,
|
|
@@ -62295,6 +62892,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62295
62892
|
microsoftEntraWorkloadId: 5,
|
|
62296
62893
|
unknownFutureValue: 6,
|
|
62297
62894
|
aatp: 7,
|
|
62895
|
+
microsoftEntraSuite: 8,
|
|
62298
62896
|
}
|
|
62299
62897
|
|
|
62300
62898
|
/**
|
|
@@ -62541,6 +63139,10 @@ namespace reference.`microsoft.graph` {
|
|
|
62541
63139
|
* App was removed in order to install a superseding app.
|
|
62542
63140
|
*/
|
|
62543
63141
|
appRemovedBySupersedence: 3005,
|
|
63142
|
+
/**
|
|
63143
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
63144
|
+
*/
|
|
63145
|
+
dependencyAppInUse: 3006,
|
|
62544
63146
|
/**
|
|
62545
63147
|
* Application failed to uninstall. See error code property for more details.
|
|
62546
63148
|
*/
|
|
@@ -62557,6 +63159,18 @@ namespace reference.`microsoft.graph` {
|
|
|
62557
63159
|
* Application content was downloaded to the device.
|
|
62558
63160
|
*/
|
|
62559
63161
|
contentDownloaded: 5002,
|
|
63162
|
+
/**
|
|
63163
|
+
* App enforcement is pending because the app is currently in use.
|
|
63164
|
+
*/
|
|
63165
|
+
inUse: 5005,
|
|
63166
|
+
/**
|
|
63167
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
63168
|
+
*/
|
|
63169
|
+
deferred: 5006,
|
|
63170
|
+
/**
|
|
63171
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
63172
|
+
*/
|
|
63173
|
+
autoDeferred: 5007,
|
|
62560
63174
|
}
|
|
62561
63175
|
|
|
62562
63176
|
enum riskDetail {
|
|
@@ -63269,6 +63883,16 @@ namespace reference.`microsoft.graph` {
|
|
|
63269
63883
|
unknownFutureValue: 5,
|
|
63270
63884
|
}
|
|
63271
63885
|
|
|
63886
|
+
enum stagedFeatureName {
|
|
63887
|
+
passthroughAuthentication: 0,
|
|
63888
|
+
seamlessSso: 1,
|
|
63889
|
+
passwordHashSync: 2,
|
|
63890
|
+
emailAsAlternateId: 3,
|
|
63891
|
+
unknownFutureValue: 4,
|
|
63892
|
+
certificateBasedAuthentication: 5,
|
|
63893
|
+
multiFactorAuthentication: 6,
|
|
63894
|
+
}
|
|
63895
|
+
|
|
63272
63896
|
/**
|
|
63273
63897
|
* State Management Setting.
|
|
63274
63898
|
*/
|
|
@@ -65041,10 +65665,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65041
65665
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
65042
65666
|
*/
|
|
65043
65667
|
wpa3Personal: 7,
|
|
65044
|
-
/**
|
|
65045
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
|
|
65046
|
-
*/
|
|
65047
|
-
wpa3Enterprise: 8,
|
|
65048
65668
|
}
|
|
65049
65669
|
|
|
65050
65670
|
/**
|
|
@@ -65476,6 +66096,7 @@ namespace reference.`microsoft.graph` {
|
|
|
65476
66096
|
/**
|
|
65477
66097
|
* Contains rule types for Win32 LOB apps.
|
|
65478
66098
|
*/
|
|
66099
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
65479
66100
|
enum win32LobAppRuleType {
|
|
65480
66101
|
/**
|
|
65481
66102
|
* Detection rule.
|
|
@@ -65485,11 +66106,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65485
66106
|
* Requirement rule.
|
|
65486
66107
|
*/
|
|
65487
66108
|
requirement: 1,
|
|
65488
|
-
/**
|
|
65489
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65490
|
-
*/
|
|
65491
|
-
inUse: 2,
|
|
65492
|
-
unknownFutureValue: 3,
|
|
65493
66109
|
}
|
|
65494
66110
|
|
|
65495
66111
|
/**
|
|
@@ -66925,7 +67541,6 @@ namespace reference.`microsoft.graph` {
|
|
|
66925
67541
|
/**
|
|
66926
67542
|
* Data can be transferred from/to these classes of apps
|
|
66927
67543
|
*/
|
|
66928
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
66929
67544
|
enum windowsManagedAppDataTransferLevel {
|
|
66930
67545
|
/**
|
|
66931
67546
|
* All apps.
|
|
@@ -66935,6 +67550,27 @@ namespace reference.`microsoft.graph` {
|
|
|
66935
67550
|
* No apps.
|
|
66936
67551
|
*/
|
|
66937
67552
|
none: 1,
|
|
67553
|
+
/**
|
|
67554
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
67555
|
+
*/
|
|
67556
|
+
selectedApps: 2,
|
|
67557
|
+
unknownFutureValue: 3,
|
|
67558
|
+
}
|
|
67559
|
+
|
|
67560
|
+
/**
|
|
67561
|
+
* Windows MAM data transfer locations
|
|
67562
|
+
*/
|
|
67563
|
+
@graphFlags
|
|
67564
|
+
enum windowsManagedAppDataTransferLocations {
|
|
67565
|
+
/**
|
|
67566
|
+
* No locations selected.
|
|
67567
|
+
*/
|
|
67568
|
+
none: 0,
|
|
67569
|
+
/**
|
|
67570
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
67571
|
+
*/
|
|
67572
|
+
oneDriveForBusiness: 1,
|
|
67573
|
+
unknownFutureValue: 2,
|
|
66938
67574
|
}
|
|
66939
67575
|
|
|
66940
67576
|
/**
|
|
@@ -67809,6 +68445,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67809
68445
|
targetSubject: workflowSubject | null;
|
|
67810
68446
|
}
|
|
67811
68447
|
|
|
68448
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
68449
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
68450
|
+
}
|
|
68451
|
+
|
|
67812
68452
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67813
68453
|
@references groups: reference.`microsoft.graph`.group[];
|
|
67814
68454
|
}
|
|
@@ -67873,6 +68513,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67873
68513
|
totalUsers: int32;
|
|
67874
68514
|
}
|
|
67875
68515
|
|
|
68516
|
+
@complex model subjectSummary {
|
|
68517
|
+
failedSubjects: int32;
|
|
68518
|
+
failedTasks: int32;
|
|
68519
|
+
successfulSubjects: int32;
|
|
68520
|
+
totalSubjects: int32;
|
|
68521
|
+
totalTasks: int32;
|
|
68522
|
+
}
|
|
68523
|
+
|
|
67876
68524
|
@complex model taskReportSummary {
|
|
67877
68525
|
failedTasks: int32;
|
|
67878
68526
|
successfulTasks: int32;
|
|
@@ -68033,6 +68681,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68033
68681
|
scheduledDateTime: offsetDateTime;
|
|
68034
68682
|
startedDateTime: offsetDateTime | null;
|
|
68035
68683
|
subject: workflowSubject;
|
|
68684
|
+
subjectType: subjectType;
|
|
68036
68685
|
totalTasksCount: int32;
|
|
68037
68686
|
totalUnprocessedTasksCount: int32;
|
|
68038
68687
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -68132,6 +68781,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68132
68781
|
isEnabled: boolean;
|
|
68133
68782
|
isSchedulingEnabled: boolean;
|
|
68134
68783
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
68784
|
+
targetSubjectType: subjectType;
|
|
68135
68785
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
68136
68786
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
68137
68787
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -68224,6 +68874,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68224
68874
|
unknownFutureValue: 4,
|
|
68225
68875
|
}
|
|
68226
68876
|
|
|
68877
|
+
@graphFlags
|
|
68878
|
+
enum subjectType {
|
|
68879
|
+
user: 1,
|
|
68880
|
+
unknownFutureValue: 8,
|
|
68881
|
+
provisioningObject: 16,
|
|
68882
|
+
}
|
|
68883
|
+
|
|
68227
68884
|
enum valueType {
|
|
68228
68885
|
`enum`: 0,
|
|
68229
68886
|
`string`: 1,
|