@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
package/lib/Bleu/Beta/main.tsp
CHANGED
|
@@ -22,6 +22,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
22
22
|
@deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
|
|
23
23
|
@privatePreviewDefinition("ControlConfigurations", "2024-09-27", "2025-09-27", "<theOwner>")
|
|
24
24
|
// Metadata item PrivatePreviewDefinition_ControlConfigurations was already defined with a different value.
|
|
25
|
+
@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.")
|
|
26
|
+
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
25
27
|
@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.")
|
|
26
28
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
27
29
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
@@ -1269,6 +1271,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1269
1271
|
skuId: guid | null;
|
|
1270
1272
|
}
|
|
1271
1273
|
|
|
1274
|
+
@complex model assignedPlaceMode extends placeMode {
|
|
1275
|
+
assignedUserEmailAddress: string | null;
|
|
1276
|
+
assignedUserId: string | null;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1272
1279
|
@complex model assignedPlan {
|
|
1273
1280
|
assignedDateTime: offsetDateTime | null;
|
|
1274
1281
|
capabilityStatus: string | null;
|
|
@@ -2190,6 +2197,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2190
2197
|
messageBodyContentType: chatMessageBodyContentType | null;
|
|
2191
2198
|
}
|
|
2192
2199
|
|
|
2200
|
+
@complex model chatMessageCitation {
|
|
2201
|
+
excerpt: string | null;
|
|
2202
|
+
iconType: string | null;
|
|
2203
|
+
id: int32 | null;
|
|
2204
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
2205
|
+
title: string | null;
|
|
2206
|
+
webUrl: string | null;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
2210
|
+
description: string | null;
|
|
2211
|
+
displayName: string | null;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2193
2214
|
@open
|
|
2194
2215
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
2195
2216
|
}
|
|
@@ -2707,6 +2728,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2707
2728
|
value: string | null;
|
|
2708
2729
|
}
|
|
2709
2730
|
|
|
2731
|
+
/**
|
|
2732
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
2733
|
+
*/
|
|
2734
|
+
@complex model connectorHealthCheck {
|
|
2735
|
+
/**
|
|
2736
|
+
* The name of the health check metric being evaluated.
|
|
2737
|
+
*/
|
|
2738
|
+
metricName: connectorHealthCheckMetricName;
|
|
2739
|
+
/**
|
|
2740
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
2741
|
+
*/
|
|
2742
|
+
status: ndesConnectorHealthStatus;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2710
2745
|
/**
|
|
2711
2746
|
* Represent connector status
|
|
2712
2747
|
*/
|
|
@@ -2808,6 +2843,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2808
2843
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
2809
2844
|
*/
|
|
2810
2845
|
@complex model createRemoteHelpSessionResponse {
|
|
2846
|
+
/**
|
|
2847
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
2848
|
+
*/
|
|
2849
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
2811
2850
|
/**
|
|
2812
2851
|
* The unique identifier for a session
|
|
2813
2852
|
*/
|
|
@@ -3418,6 +3457,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3418
3457
|
* 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.
|
|
3419
3458
|
*/
|
|
3420
3459
|
rulesContent: binary | null;
|
|
3460
|
+
/**
|
|
3461
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
3462
|
+
*/
|
|
3463
|
+
runIntervalInMinutes: int32 | null;
|
|
3421
3464
|
}
|
|
3422
3465
|
|
|
3423
3466
|
/**
|
|
@@ -5568,6 +5611,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5568
5611
|
objectId: string | null;
|
|
5569
5612
|
}
|
|
5570
5613
|
|
|
5614
|
+
@complex model dropInPlaceMode extends placeMode {
|
|
5615
|
+
}
|
|
5616
|
+
|
|
5571
5617
|
/**
|
|
5572
5618
|
* The home button configuration base class used to identify the available options
|
|
5573
5619
|
*/
|
|
@@ -6057,12 +6103,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6057
6103
|
itemMajorVersionLimit: int32 | null;
|
|
6058
6104
|
}
|
|
6059
6105
|
|
|
6060
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
6061
|
-
chatEmbedAllowedHosts: string[];
|
|
6062
|
-
}
|
|
6063
|
-
|
|
6064
6106
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
6065
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6066
6107
|
isDiscoverabilityEnabled: boolean | null;
|
|
6067
6108
|
isItemVersioningEnabled: boolean | null;
|
|
6068
6109
|
isSearchEnabled: boolean | null;
|
|
@@ -6074,7 +6115,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6074
6115
|
}
|
|
6075
6116
|
|
|
6076
6117
|
@complex model fileStorageContainerTypeSettings {
|
|
6077
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6078
6118
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
6079
6119
|
isDiscoverabilityEnabled: boolean | null;
|
|
6080
6120
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -6523,6 +6563,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6523
6563
|
enableIdTokenIssuance: boolean | null;
|
|
6524
6564
|
}
|
|
6525
6565
|
|
|
6566
|
+
@complex model importBuildingMapSetting {
|
|
6567
|
+
isDryRun: boolean;
|
|
6568
|
+
}
|
|
6569
|
+
|
|
6526
6570
|
@complex model importedWindowsAutopilotDeviceIdentityState {
|
|
6527
6571
|
/**
|
|
6528
6572
|
* Device error code reported by Device Directory Service(DDS).
|
|
@@ -6867,10 +6911,18 @@ namespace reference.`microsoft.graph` {
|
|
|
6867
6911
|
* 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.
|
|
6868
6912
|
*/
|
|
6869
6913
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6914
|
+
cellularSliceConfigurationId: string | null;
|
|
6915
|
+
contentFilterConfigurationId: string | null;
|
|
6916
|
+
/**
|
|
6917
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6918
|
+
*/
|
|
6919
|
+
ddmAppConfigId: guid | null;
|
|
6920
|
+
dnsProxyConfigurationId: string | null;
|
|
6870
6921
|
/**
|
|
6871
6922
|
* 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.
|
|
6872
6923
|
*/
|
|
6873
6924
|
preventManagedAppBackup: boolean | null;
|
|
6925
|
+
relayConfigurationId: string | null;
|
|
6874
6926
|
/**
|
|
6875
6927
|
* 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.
|
|
6876
6928
|
*/
|
|
@@ -6881,6 +6933,122 @@ namespace reference.`microsoft.graph` {
|
|
|
6881
6933
|
vpnConfigurationId: string | null;
|
|
6882
6934
|
}
|
|
6883
6935
|
|
|
6936
|
+
/**
|
|
6937
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
6938
|
+
*/
|
|
6939
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6940
|
+
/**
|
|
6941
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6942
|
+
*/
|
|
6943
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6944
|
+
/**
|
|
6945
|
+
* Domain names to associate with the app
|
|
6946
|
+
*/
|
|
6947
|
+
associatedDomains: string[] | null;
|
|
6948
|
+
/**
|
|
6949
|
+
* 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.
|
|
6950
|
+
*/
|
|
6951
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6952
|
+
/**
|
|
6953
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6954
|
+
*/
|
|
6955
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6956
|
+
/**
|
|
6957
|
+
* 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'.
|
|
6958
|
+
*/
|
|
6959
|
+
cellularSliceConfigurationId: string | null;
|
|
6960
|
+
/**
|
|
6961
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6962
|
+
*/
|
|
6963
|
+
contentFilterConfigurationId: string | null;
|
|
6964
|
+
/**
|
|
6965
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6966
|
+
*/
|
|
6967
|
+
dnsProxyConfigurationId: string | null;
|
|
6968
|
+
/**
|
|
6969
|
+
* 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.
|
|
6970
|
+
*/
|
|
6971
|
+
preventManagedAppBackup: boolean | null;
|
|
6972
|
+
/**
|
|
6973
|
+
* The unique identifier of the relay to associate with the app.
|
|
6974
|
+
*/
|
|
6975
|
+
relayConfigurationId: string | null;
|
|
6976
|
+
/**
|
|
6977
|
+
* 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.
|
|
6978
|
+
*/
|
|
6979
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6980
|
+
/**
|
|
6981
|
+
* 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.
|
|
6982
|
+
*/
|
|
6983
|
+
version: int32 | null;
|
|
6984
|
+
/**
|
|
6985
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6986
|
+
*/
|
|
6987
|
+
vpnConfigurationId: string | null;
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
/**
|
|
6991
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
6992
|
+
*/
|
|
6993
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6994
|
+
/**
|
|
6995
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6996
|
+
*/
|
|
6997
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6998
|
+
/**
|
|
6999
|
+
* Domain names to associate with the app
|
|
7000
|
+
*/
|
|
7001
|
+
associatedDomains: string[] | null;
|
|
7002
|
+
/**
|
|
7003
|
+
* 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.
|
|
7004
|
+
*/
|
|
7005
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
7006
|
+
/**
|
|
7007
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7008
|
+
*/
|
|
7009
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
7010
|
+
/**
|
|
7011
|
+
* 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'.
|
|
7012
|
+
*/
|
|
7013
|
+
cellularSliceConfigurationId: string | null;
|
|
7014
|
+
/**
|
|
7015
|
+
* The unique identifier of the content filter to associate with the app.
|
|
7016
|
+
*/
|
|
7017
|
+
contentFilterConfigurationId: string | null;
|
|
7018
|
+
/**
|
|
7019
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
7020
|
+
*/
|
|
7021
|
+
ddmAppConfigId: guid | null;
|
|
7022
|
+
/**
|
|
7023
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
7024
|
+
*/
|
|
7025
|
+
dnsProxyConfigurationId: string | null;
|
|
7026
|
+
/**
|
|
7027
|
+
* 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.
|
|
7028
|
+
*/
|
|
7029
|
+
preventManagedAppBackup: boolean | null;
|
|
7030
|
+
/**
|
|
7031
|
+
* The unique identifier of the relay to associate with the app.
|
|
7032
|
+
*/
|
|
7033
|
+
relayConfigurationId: string | null;
|
|
7034
|
+
/**
|
|
7035
|
+
* 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.
|
|
7036
|
+
*/
|
|
7037
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
7038
|
+
/**
|
|
7039
|
+
* Whether or not to use device licensing.
|
|
7040
|
+
*/
|
|
7041
|
+
useDeviceLicensing: boolean;
|
|
7042
|
+
/**
|
|
7043
|
+
* 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.
|
|
7044
|
+
*/
|
|
7045
|
+
version: int32 | null;
|
|
7046
|
+
/**
|
|
7047
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
7048
|
+
*/
|
|
7049
|
+
vpnConfigurationId: string | null;
|
|
7050
|
+
}
|
|
7051
|
+
|
|
6884
7052
|
/**
|
|
6885
7053
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
6886
7054
|
*/
|
|
@@ -8007,6 +8175,32 @@ namespace reference.`microsoft.graph` {
|
|
|
8007
8175
|
teamIdentifier: string;
|
|
8008
8176
|
}
|
|
8009
8177
|
|
|
8178
|
+
/**
|
|
8179
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
8180
|
+
*/
|
|
8181
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8182
|
+
/**
|
|
8183
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8184
|
+
*/
|
|
8185
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8186
|
+
/**
|
|
8187
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8188
|
+
*/
|
|
8189
|
+
ddmAppConfigId: guid | null;
|
|
8190
|
+
/**
|
|
8191
|
+
* 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.
|
|
8192
|
+
*/
|
|
8193
|
+
isIosApp: boolean | null;
|
|
8194
|
+
/**
|
|
8195
|
+
* 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.
|
|
8196
|
+
*/
|
|
8197
|
+
useDeviceLicensing: boolean;
|
|
8198
|
+
/**
|
|
8199
|
+
* 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.
|
|
8200
|
+
*/
|
|
8201
|
+
version: int32 | null;
|
|
8202
|
+
}
|
|
8203
|
+
|
|
8010
8204
|
/**
|
|
8011
8205
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
8012
8206
|
*/
|
|
@@ -8534,6 +8728,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8534
8728
|
userId: string | null;
|
|
8535
8729
|
}
|
|
8536
8730
|
|
|
8731
|
+
@complex model mailboxDetails {
|
|
8732
|
+
emailAddress: string | null;
|
|
8733
|
+
externalDirectoryObjectId: string | null;
|
|
8734
|
+
}
|
|
8735
|
+
|
|
8537
8736
|
@complex model mailboxSettings {
|
|
8538
8737
|
archiveFolder: string | null;
|
|
8539
8738
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -9253,6 +9452,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9253
9452
|
networkType: networkType | null;
|
|
9254
9453
|
}
|
|
9255
9454
|
|
|
9455
|
+
@complex model nistClassification {
|
|
9456
|
+
category: string;
|
|
9457
|
+
description: string | null;
|
|
9458
|
+
function: string | null;
|
|
9459
|
+
name: string;
|
|
9460
|
+
}
|
|
9461
|
+
|
|
9256
9462
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
9257
9463
|
}
|
|
9258
9464
|
|
|
@@ -9444,8 +9650,26 @@ namespace reference.`microsoft.graph` {
|
|
|
9444
9650
|
internalUrl: string | null;
|
|
9445
9651
|
}
|
|
9446
9652
|
|
|
9653
|
+
@complex model onPremisesCurrentExportData {
|
|
9654
|
+
clientMachineName: string | null;
|
|
9655
|
+
pendingObjectsAddition: int32 | null;
|
|
9656
|
+
pendingObjectsDeletion: int32 | null;
|
|
9657
|
+
pendingObjectsUpdate: int32 | null;
|
|
9658
|
+
serviceAccount: string | null;
|
|
9659
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
9660
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
9661
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
9662
|
+
}
|
|
9663
|
+
|
|
9447
9664
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
9448
9665
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
9666
|
+
anchorAttribute: string | null;
|
|
9667
|
+
applicationId: string | null;
|
|
9668
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
9669
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
9670
|
+
synchronizationClientVersion: string | null;
|
|
9671
|
+
synchronizationInterval: duration | null;
|
|
9672
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
9449
9673
|
}
|
|
9450
9674
|
|
|
9451
9675
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -9506,6 +9730,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9506
9730
|
isAccessibleViaZTNAClient: boolean | null;
|
|
9507
9731
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
9508
9732
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
9733
|
+
isDeviceAccessEnabled: boolean;
|
|
9509
9734
|
isDnsResolutionEnabled: boolean | null;
|
|
9510
9735
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
9511
9736
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -9532,6 +9757,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9532
9757
|
singleSignOnMode: singleSignOnMode | null;
|
|
9533
9758
|
}
|
|
9534
9759
|
|
|
9760
|
+
@complex model onPremisesWritebackConfiguration {
|
|
9761
|
+
unifiedGroupContainer: string | null;
|
|
9762
|
+
userContainer: string | null;
|
|
9763
|
+
}
|
|
9764
|
+
|
|
9535
9765
|
@complex model openIdConnectSetting {
|
|
9536
9766
|
clientId: string;
|
|
9537
9767
|
discoveryUrl: string;
|
|
@@ -9888,6 +10118,22 @@ namespace reference.`microsoft.graph` {
|
|
|
9888
10118
|
street: string | null;
|
|
9889
10119
|
}
|
|
9890
10120
|
|
|
10121
|
+
@complex model placeExecutionResult {
|
|
10122
|
+
children: placeExecutionResult[] | null;
|
|
10123
|
+
error: publicError | null;
|
|
10124
|
+
@references succeededPlace: place | null;
|
|
10125
|
+
}
|
|
10126
|
+
|
|
10127
|
+
@abstract
|
|
10128
|
+
@complex model placeMode {
|
|
10129
|
+
}
|
|
10130
|
+
|
|
10131
|
+
@complex model placeOperationProgress {
|
|
10132
|
+
failedPlaceCount: int32 | null;
|
|
10133
|
+
succeededPlaceCount: int32 | null;
|
|
10134
|
+
totalPlaceCount: int32 | null;
|
|
10135
|
+
}
|
|
10136
|
+
|
|
9891
10137
|
@open
|
|
9892
10138
|
@complex model plannerAppliedCategories {
|
|
9893
10139
|
}
|
|
@@ -10769,6 +11015,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10769
11015
|
resourceAppId: string;
|
|
10770
11016
|
}
|
|
10771
11017
|
|
|
11018
|
+
@complex model reservablePlaceMode extends placeMode {
|
|
11019
|
+
}
|
|
11020
|
+
|
|
10772
11021
|
/**
|
|
10773
11022
|
* Reset passcode action result
|
|
10774
11023
|
*/
|
|
@@ -10806,6 +11055,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10806
11055
|
@complex model resourceData {
|
|
10807
11056
|
}
|
|
10808
11057
|
|
|
11058
|
+
@complex model resourceLink {
|
|
11059
|
+
linkType: resourceLinkType;
|
|
11060
|
+
name: string | null;
|
|
11061
|
+
value: string | null;
|
|
11062
|
+
}
|
|
11063
|
+
|
|
10809
11064
|
@complex model resourcePermission {
|
|
10810
11065
|
type: string;
|
|
10811
11066
|
value: string;
|
|
@@ -12289,6 +12544,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12289
12544
|
type: emailType | null;
|
|
12290
12545
|
}
|
|
12291
12546
|
|
|
12547
|
+
@complex model unavailablePlaceMode extends placeMode {
|
|
12548
|
+
reason: string | null;
|
|
12549
|
+
}
|
|
12550
|
+
|
|
12292
12551
|
@complex model unifiedRoleManagementPolicyRuleTarget {
|
|
12293
12552
|
caller: string | null;
|
|
12294
12553
|
enforcedSettings: string[] | null;
|
|
@@ -15003,6 +15262,71 @@ namespace reference.`microsoft.graph` {
|
|
|
15003
15262
|
timeZone: timeZoneBase | null;
|
|
15004
15263
|
}
|
|
15005
15264
|
|
|
15265
|
+
@complex model workplaceSensor {
|
|
15266
|
+
/**
|
|
15267
|
+
* The display name of the sensor.
|
|
15268
|
+
*/
|
|
15269
|
+
displayName: string | null;
|
|
15270
|
+
/**
|
|
15271
|
+
* The unique identifier of the place served by the sensor. Only needs to be provided if the sensor serves a different place than the device's location.
|
|
15272
|
+
*/
|
|
15273
|
+
placeId: string | null;
|
|
15274
|
+
/**
|
|
15275
|
+
* The unique identifier of a sensor within the device. If the sensor Id is not provided, the sensorType will be used as sensorId.
|
|
15276
|
+
*/
|
|
15277
|
+
sensorId: string | null;
|
|
15278
|
+
/**
|
|
15279
|
+
* The type of the sensor. Possible values are occupancy, peopleCount.
|
|
15280
|
+
*/
|
|
15281
|
+
sensorType: workplaceSensorType;
|
|
15282
|
+
}
|
|
15283
|
+
|
|
15284
|
+
@complex model workplaceSensorDeviceTelemetry {
|
|
15285
|
+
/**
|
|
15286
|
+
* The value of the sensor.
|
|
15287
|
+
*/
|
|
15288
|
+
boolValue: boolean | null;
|
|
15289
|
+
/**
|
|
15290
|
+
* The unique identifier of the device.
|
|
15291
|
+
*/
|
|
15292
|
+
deviceId: string;
|
|
15293
|
+
/**
|
|
15294
|
+
* The extra values associate with badge signal.
|
|
15295
|
+
*/
|
|
15296
|
+
eventValue: workplaceSensorEventValue | null;
|
|
15297
|
+
/**
|
|
15298
|
+
* The value of the sensor.
|
|
15299
|
+
*/
|
|
15300
|
+
intValue: int32 | null;
|
|
15301
|
+
/**
|
|
15302
|
+
* The additional information to indicate the location of the device.
|
|
15303
|
+
*/
|
|
15304
|
+
locationHint: string | null;
|
|
15305
|
+
/**
|
|
15306
|
+
* The unique identifier of a sensor within the device. If the sensor Id is not provided, the sensorType will be used as sensorId.
|
|
15307
|
+
*/
|
|
15308
|
+
sensorId: string | null;
|
|
15309
|
+
/**
|
|
15310
|
+
* The type of the sensor. Possible values are occupancy, peopleCount.
|
|
15311
|
+
*/
|
|
15312
|
+
sensorType: workplaceSensorType;
|
|
15313
|
+
/**
|
|
15314
|
+
* The timestamp at which the sensor value was observed.
|
|
15315
|
+
*/
|
|
15316
|
+
timestamp: offsetDateTime;
|
|
15317
|
+
}
|
|
15318
|
+
|
|
15319
|
+
@complex model workplaceSensorEventValue {
|
|
15320
|
+
/**
|
|
15321
|
+
* The type of the event.
|
|
15322
|
+
*/
|
|
15323
|
+
eventType: workplaceSensorEventType | null;
|
|
15324
|
+
/**
|
|
15325
|
+
* The unique identifier of an user. It could be email or aad id.
|
|
15326
|
+
*/
|
|
15327
|
+
user: emailIdentity | null;
|
|
15328
|
+
}
|
|
15329
|
+
|
|
15006
15330
|
@complex model writebackConfiguration {
|
|
15007
15331
|
isEnabled: boolean | null;
|
|
15008
15332
|
}
|
|
@@ -15723,6 +16047,9 @@ namespace reference.`microsoft.graph` {
|
|
|
15723
16047
|
@entity model agentIdentity extends servicePrincipal {
|
|
15724
16048
|
agentIdentityBlueprintId: string;
|
|
15725
16049
|
@computed createdDateTime: offsetDateTime | null;
|
|
16050
|
+
managerApplications: guid;
|
|
16051
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
16052
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
15726
16053
|
@references sponsors: directoryObject[];
|
|
15727
16054
|
}
|
|
15728
16055
|
|
|
@@ -15734,6 +16061,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15734
16061
|
|
|
15735
16062
|
@open
|
|
15736
16063
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
16064
|
+
managerApplications: guid;
|
|
15737
16065
|
@references sponsors: directoryObject[];
|
|
15738
16066
|
}
|
|
15739
16067
|
|
|
@@ -18352,6 +18680,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18352
18680
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
18353
18681
|
*/
|
|
18354
18682
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
18683
|
+
/**
|
|
18684
|
+
* 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.
|
|
18685
|
+
*/
|
|
18686
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
18355
18687
|
/**
|
|
18356
18688
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
18357
18689
|
*/
|
|
@@ -20047,10 +20379,18 @@ namespace reference.`microsoft.graph` {
|
|
|
20047
20379
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
20048
20380
|
*/
|
|
20049
20381
|
excludedDomains: string[] | null;
|
|
20382
|
+
/**
|
|
20383
|
+
* 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.
|
|
20384
|
+
*/
|
|
20385
|
+
excludeLocalNetworks: boolean | null;
|
|
20050
20386
|
/**
|
|
20051
20387
|
* 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
|
|
20052
20388
|
*/
|
|
20053
20389
|
identifier: string | null;
|
|
20390
|
+
/**
|
|
20391
|
+
* 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.
|
|
20392
|
+
*/
|
|
20393
|
+
includeAllNetworks: boolean | null;
|
|
20054
20394
|
/**
|
|
20055
20395
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
20056
20396
|
*/
|
|
@@ -20562,6 +20902,11 @@ namespace reference.`microsoft.graph` {
|
|
|
20562
20902
|
publication: publicationFacet | null;
|
|
20563
20903
|
}
|
|
20564
20904
|
|
|
20905
|
+
@abstract
|
|
20906
|
+
@entity model baseMapFeature extends entity {
|
|
20907
|
+
properties: string | null;
|
|
20908
|
+
}
|
|
20909
|
+
|
|
20565
20910
|
@entity model baseSitePage extends baseItem {
|
|
20566
20911
|
pageLayout: pageLayoutType | null;
|
|
20567
20912
|
publishingState: publicationFacet | null;
|
|
@@ -20579,6 +20924,19 @@ namespace reference.`microsoft.graph` {
|
|
|
20579
20924
|
volumeType: volumeType | null;
|
|
20580
20925
|
}
|
|
20581
20926
|
|
|
20927
|
+
@entity model building extends place {
|
|
20928
|
+
hasWiFi: boolean;
|
|
20929
|
+
resourceLinks: resourceLink[];
|
|
20930
|
+
wifiState: placeFeatureEnablement;
|
|
20931
|
+
@contains map: buildingMap | null;
|
|
20932
|
+
}
|
|
20933
|
+
|
|
20934
|
+
@entity model buildingMap extends baseMapFeature {
|
|
20935
|
+
placeId: string | null;
|
|
20936
|
+
@contains footprints: footprintMap[];
|
|
20937
|
+
@contains levels: levelMap[];
|
|
20938
|
+
}
|
|
20939
|
+
|
|
20582
20940
|
@entity model bulkUpload extends entity {
|
|
20583
20941
|
}
|
|
20584
20942
|
|
|
@@ -20823,11 +21181,13 @@ namespace reference.`microsoft.graph` {
|
|
|
20823
21181
|
body: chatMessageBody;
|
|
20824
21182
|
channelIdentity: channelIdentity | null;
|
|
20825
21183
|
chatId: string | null;
|
|
21184
|
+
citations: chatMessageCitation[] | null;
|
|
20826
21185
|
@computed createdDateTime: offsetDateTime | null;
|
|
20827
21186
|
deletedDateTime: offsetDateTime | null;
|
|
20828
21187
|
etag: string | null;
|
|
20829
21188
|
eventDetail: eventMessageDetail | null;
|
|
20830
21189
|
from: chatMessageFromIdentitySet | null;
|
|
21190
|
+
hasReplies: boolean;
|
|
20831
21191
|
importance: chatMessageImportance;
|
|
20832
21192
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
20833
21193
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -20858,6 +21218,12 @@ namespace reference.`microsoft.graph` {
|
|
|
20858
21218
|
messageType: chatMessageType;
|
|
20859
21219
|
}
|
|
20860
21220
|
|
|
21221
|
+
@entity model checkInClaim extends MsGraph.SharedModels.entity {
|
|
21222
|
+
@computed @key calendarEventId: string;
|
|
21223
|
+
checkInMethod: checkInMethod;
|
|
21224
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21225
|
+
}
|
|
21226
|
+
|
|
20861
21227
|
/**
|
|
20862
21228
|
* Entity that represents a Chromebook tenant settings
|
|
20863
21229
|
*/
|
|
@@ -22607,6 +22973,13 @@ namespace reference.`microsoft.graph` {
|
|
|
22607
22973
|
@entity model depVisionOSEnrollmentProfile extends enrollmentProfile {
|
|
22608
22974
|
}
|
|
22609
22975
|
|
|
22976
|
+
@entity model desk extends place {
|
|
22977
|
+
displayDeviceName: string | null;
|
|
22978
|
+
heightAdjustableState: placeFeatureEnablement;
|
|
22979
|
+
mailboxDetails: mailboxDetails | null;
|
|
22980
|
+
mode: placeMode | null;
|
|
22981
|
+
}
|
|
22982
|
+
|
|
22610
22983
|
/**
|
|
22611
22984
|
* A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned.
|
|
22612
22985
|
*/
|
|
@@ -22751,7 +23124,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22751
23124
|
/**
|
|
22752
23125
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
22753
23126
|
*/
|
|
22754
|
-
@entity model deviceAppManagement extends entity {
|
|
23127
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
22755
23128
|
/**
|
|
22756
23129
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
22757
23130
|
*/
|
|
@@ -23325,7 +23698,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23325
23698
|
*/
|
|
23326
23699
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
23327
23700
|
/**
|
|
23328
|
-
* Indicates the
|
|
23701
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
23329
23702
|
*/
|
|
23330
23703
|
platform: deviceComplianceScriptPlatformType | null;
|
|
23331
23704
|
/**
|
|
@@ -23337,7 +23710,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23337
23710
|
*/
|
|
23338
23711
|
roleScopeTagIds: string[] | null;
|
|
23339
23712
|
/**
|
|
23340
|
-
*
|
|
23713
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
23341
23714
|
*/
|
|
23342
23715
|
runAs32Bit: boolean;
|
|
23343
23716
|
/**
|
|
@@ -23851,6 +24224,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23851
24224
|
successCount: int32;
|
|
23852
24225
|
}
|
|
23853
24226
|
|
|
24227
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
23854
24228
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
23855
24229
|
/**
|
|
23856
24230
|
* Number of compliant users
|
|
@@ -24821,6 +25195,8 @@ namespace reference.`microsoft.graph` {
|
|
|
24821
25195
|
/**
|
|
24822
25196
|
* The device configuration user state summary for this account.
|
|
24823
25197
|
*/
|
|
25198
|
+
|
|
25199
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
24824
25200
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
24825
25201
|
/**
|
|
24826
25202
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -27885,6 +28261,17 @@ namespace reference.`microsoft.graph` {
|
|
|
27885
28261
|
supportedAttributeTypes: attributeType[];
|
|
27886
28262
|
}
|
|
27887
28263
|
|
|
28264
|
+
@entity model fixtureMap extends baseMapFeature {
|
|
28265
|
+
placeId: string | null;
|
|
28266
|
+
}
|
|
28267
|
+
|
|
28268
|
+
@entity model floor extends place {
|
|
28269
|
+
sortOrder: int32 | null;
|
|
28270
|
+
}
|
|
28271
|
+
|
|
28272
|
+
@entity model footprintMap extends baseMapFeature {
|
|
28273
|
+
}
|
|
28274
|
+
|
|
27888
28275
|
@abstract
|
|
27889
28276
|
@entity model governanceInsight extends entity {
|
|
27890
28277
|
insightCreatedDateTime: offsetDateTime | null;
|
|
@@ -29064,6 +29451,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29064
29451
|
resourceType: string;
|
|
29065
29452
|
status: recommendationStatus;
|
|
29066
29453
|
subjectId: string;
|
|
29454
|
+
@contains tags: recommendationTag[];
|
|
29067
29455
|
}
|
|
29068
29456
|
|
|
29069
29457
|
/**
|
|
@@ -31085,6 +31473,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31085
31473
|
* Contains properties and inherited properties for iOS store apps.
|
|
31086
31474
|
*/
|
|
31087
31475
|
@entity model iosStoreApp extends mobileApp {
|
|
31476
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
31088
31477
|
/**
|
|
31089
31478
|
* The iOS architecture for which this app can run on.
|
|
31090
31479
|
*/
|
|
@@ -31252,6 +31641,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31252
31641
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
31253
31642
|
*/
|
|
31254
31643
|
@entity model iosVppApp extends mobileApp {
|
|
31644
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
31255
31645
|
/**
|
|
31256
31646
|
* The applicable iOS Device Type.
|
|
31257
31647
|
*/
|
|
@@ -31620,6 +32010,13 @@ namespace reference.`microsoft.graph` {
|
|
|
31620
32010
|
written: languageProficiencyLevel | null;
|
|
31621
32011
|
}
|
|
31622
32012
|
|
|
32013
|
+
@entity model levelMap extends baseMapFeature {
|
|
32014
|
+
placeId: string | null;
|
|
32015
|
+
@contains fixtures: fixtureMap[];
|
|
32016
|
+
@contains sections: sectionMap[];
|
|
32017
|
+
@contains units: unitMap[];
|
|
32018
|
+
}
|
|
32019
|
+
|
|
31623
32020
|
@entity model licenseDetails extends entity {
|
|
31624
32021
|
servicePlans: servicePlanInfo[];
|
|
31625
32022
|
skuId: guid | null;
|
|
@@ -32905,6 +33302,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32905
33302
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
32906
33303
|
*/
|
|
32907
33304
|
@entity model macOsVppApp extends mobileApp {
|
|
33305
|
+
/**
|
|
33306
|
+
* 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.
|
|
33307
|
+
*/
|
|
33308
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
32908
33309
|
/**
|
|
32909
33310
|
* The store URL.
|
|
32910
33311
|
*/
|
|
@@ -33043,6 +33444,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33043
33444
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
33044
33445
|
*/
|
|
33045
33446
|
ssid: string;
|
|
33447
|
+
/**
|
|
33448
|
+
* 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.
|
|
33449
|
+
*/
|
|
33450
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
33046
33451
|
/**
|
|
33047
33452
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
33048
33453
|
*/
|
|
@@ -34065,6 +34470,8 @@ namespace reference.`microsoft.graph` {
|
|
|
34065
34470
|
/**
|
|
34066
34471
|
* Security baseline states for this device.
|
|
34067
34472
|
*/
|
|
34473
|
+
|
|
34474
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
34068
34475
|
@contains securityBaselineStates: securityBaselineState[];
|
|
34069
34476
|
/**
|
|
34070
34477
|
* The primary users associated with the managed device.
|
|
@@ -35336,6 +35743,10 @@ namespace reference.`microsoft.graph` {
|
|
|
35336
35743
|
* Indicates the size of the file after encryption, in bytes.
|
|
35337
35744
|
*/
|
|
35338
35745
|
sizeEncrypted: int64;
|
|
35746
|
+
/**
|
|
35747
|
+
* 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.
|
|
35748
|
+
*/
|
|
35749
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
35339
35750
|
/**
|
|
35340
35751
|
* 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.
|
|
35341
35752
|
*/
|
|
@@ -35789,6 +36200,14 @@ namespace reference.`microsoft.graph` {
|
|
|
35789
36200
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
35790
36201
|
*/
|
|
35791
36202
|
enrolledDateTime: offsetDateTime;
|
|
36203
|
+
/**
|
|
36204
|
+
* 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.
|
|
36205
|
+
*/
|
|
36206
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
36207
|
+
/**
|
|
36208
|
+
* 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.
|
|
36209
|
+
*/
|
|
36210
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
35792
36211
|
/**
|
|
35793
36212
|
* Last connection time for the Ndes Connector
|
|
35794
36213
|
*/
|
|
@@ -36453,7 +36872,27 @@ namespace reference.`microsoft.graph` {
|
|
|
36453
36872
|
@references message: chatMessage | null;
|
|
36454
36873
|
}
|
|
36455
36874
|
|
|
36456
|
-
@
|
|
36875
|
+
@abstract
|
|
36876
|
+
@entity model place extends entity {
|
|
36877
|
+
address: physicalAddress | null;
|
|
36878
|
+
displayName: string;
|
|
36879
|
+
geoCoordinates: outlookGeoCoordinates | null;
|
|
36880
|
+
isWheelChairAccessible: boolean;
|
|
36881
|
+
label: string | null;
|
|
36882
|
+
parentId: string | null;
|
|
36883
|
+
phone: string | null;
|
|
36884
|
+
tags: string[];
|
|
36885
|
+
@contains checkIns: checkInClaim[];
|
|
36886
|
+
@references children: place[];
|
|
36887
|
+
}
|
|
36888
|
+
|
|
36889
|
+
@entity model placeOperation extends entity {
|
|
36890
|
+
details: placeExecutionResult[] | null;
|
|
36891
|
+
progress: placeOperationProgress | null;
|
|
36892
|
+
status: placeOperationStatus;
|
|
36893
|
+
}
|
|
36894
|
+
|
|
36895
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
36457
36896
|
@contains buckets: plannerBucket[];
|
|
36458
36897
|
@contains plans: plannerPlan[];
|
|
36459
36898
|
@contains rosters: plannerRoster[];
|
|
@@ -37172,9 +37611,13 @@ namespace reference.`microsoft.graph` {
|
|
|
37172
37611
|
actionSteps: actionStep[] | null;
|
|
37173
37612
|
benefits: string | null;
|
|
37174
37613
|
category: recommendationCategory;
|
|
37614
|
+
categoryGroup: recommendationCategoryGroup;
|
|
37615
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
37616
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
37175
37617
|
@computed createdDateTime: offsetDateTime;
|
|
37176
37618
|
currentScore: float64 | null;
|
|
37177
37619
|
displayName: string;
|
|
37620
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
37178
37621
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
37179
37622
|
impactStartDateTime: offsetDateTime | null;
|
|
37180
37623
|
impactType: string | null;
|
|
@@ -37183,14 +37626,23 @@ namespace reference.`microsoft.graph` {
|
|
|
37183
37626
|
lastModifiedBy: string | null;
|
|
37184
37627
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37185
37628
|
maxScore: float64 | null;
|
|
37629
|
+
needsMoreActionResourceCount: int32 | null;
|
|
37630
|
+
nistClassifications: nistClassification[];
|
|
37186
37631
|
postponeUntilDateTime: offsetDateTime | null;
|
|
37187
37632
|
priority: recommendationPriority;
|
|
37188
37633
|
recommendationType: recommendationType | null;
|
|
37189
37634
|
releaseType: string | null;
|
|
37635
|
+
remediatedDateTime: offsetDateTime | null;
|
|
37190
37636
|
remediationImpact: string | null;
|
|
37191
37637
|
requiredLicenses: requiredLicenses | null;
|
|
37192
37638
|
status: recommendationStatus;
|
|
37639
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
37193
37640
|
@contains impactedResources: impactedResource[];
|
|
37641
|
+
@contains tags: recommendationTag[];
|
|
37642
|
+
}
|
|
37643
|
+
|
|
37644
|
+
@entity model recommendationTag extends entity {
|
|
37645
|
+
displayName: string;
|
|
37194
37646
|
}
|
|
37195
37647
|
|
|
37196
37648
|
@open
|
|
@@ -37476,6 +37928,9 @@ namespace reference.`microsoft.graph` {
|
|
|
37476
37928
|
riskState: riskState;
|
|
37477
37929
|
}
|
|
37478
37930
|
|
|
37931
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
37932
|
+
}
|
|
37933
|
+
|
|
37479
37934
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
37480
37935
|
@references agentIdentity: agentIdentity | null;
|
|
37481
37936
|
}
|
|
@@ -37661,6 +38116,28 @@ namespace reference.`microsoft.graph` {
|
|
|
37661
38116
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
37662
38117
|
}
|
|
37663
38118
|
|
|
38119
|
+
@entity model room extends place {
|
|
38120
|
+
audioDeviceName: string | null;
|
|
38121
|
+
bookingType: bookingType | null;
|
|
38122
|
+
building: string | null;
|
|
38123
|
+
capacity: int32 | null;
|
|
38124
|
+
displayDeviceName: string | null;
|
|
38125
|
+
emailAddress: string | null;
|
|
38126
|
+
floorLabel: string | null;
|
|
38127
|
+
floorNumber: int32 | null;
|
|
38128
|
+
isTeamsEnabled: boolean;
|
|
38129
|
+
nickname: string;
|
|
38130
|
+
placeId: string | null;
|
|
38131
|
+
teamsEnabledState: placeFeatureEnablement;
|
|
38132
|
+
videoDeviceName: string | null;
|
|
38133
|
+
}
|
|
38134
|
+
|
|
38135
|
+
@entity model roomList extends place {
|
|
38136
|
+
emailAddress: string | null;
|
|
38137
|
+
@contains rooms: room[];
|
|
38138
|
+
@contains workspaces: workspace[];
|
|
38139
|
+
}
|
|
38140
|
+
|
|
37664
38141
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
37665
38142
|
@contains domains: externalDomainName[];
|
|
37666
38143
|
}
|
|
@@ -37688,9 +38165,18 @@ namespace reference.`microsoft.graph` {
|
|
|
37688
38165
|
roleMemberInfo: identity;
|
|
37689
38166
|
}
|
|
37690
38167
|
|
|
38168
|
+
@entity model section extends place {
|
|
38169
|
+
}
|
|
38170
|
+
|
|
38171
|
+
@entity model sectionMap extends baseMapFeature {
|
|
38172
|
+
placeId: string | null;
|
|
38173
|
+
}
|
|
38174
|
+
|
|
37691
38175
|
/**
|
|
37692
38176
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
37693
38177
|
*/
|
|
38178
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
38179
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37694
38180
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
37695
38181
|
/**
|
|
37696
38182
|
* The category name
|
|
@@ -37701,6 +38187,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37701
38187
|
/**
|
|
37702
38188
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
37703
38189
|
*/
|
|
38190
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37704
38191
|
@entity model securityBaselineDeviceState extends entity {
|
|
37705
38192
|
/**
|
|
37706
38193
|
* Display name of the device
|
|
@@ -37727,6 +38214,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37727
38214
|
/**
|
|
37728
38215
|
* The security baseline compliance state of a setting for a device
|
|
37729
38216
|
*/
|
|
38217
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37730
38218
|
@entity model securityBaselineSettingState extends entity {
|
|
37731
38219
|
/**
|
|
37732
38220
|
* The policies that contribute to this setting instance
|
|
@@ -37765,6 +38253,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37765
38253
|
/**
|
|
37766
38254
|
* Security baseline state for a device.
|
|
37767
38255
|
*/
|
|
38256
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37768
38257
|
@entity model securityBaselineState extends entity {
|
|
37769
38258
|
/**
|
|
37770
38259
|
* The display name of the security baseline
|
|
@@ -37785,12 +38274,15 @@ namespace reference.`microsoft.graph` {
|
|
|
37785
38274
|
/**
|
|
37786
38275
|
* The security baseline state for different settings for a device
|
|
37787
38276
|
*/
|
|
38277
|
+
|
|
38278
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37788
38279
|
@contains settingStates: securityBaselineSettingState[];
|
|
37789
38280
|
}
|
|
37790
38281
|
|
|
37791
38282
|
/**
|
|
37792
38283
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
37793
38284
|
*/
|
|
38285
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37794
38286
|
@entity model securityBaselineStateSummary extends entity {
|
|
37795
38287
|
/**
|
|
37796
38288
|
* Number of conflict devices
|
|
@@ -37825,14 +38317,20 @@ namespace reference.`microsoft.graph` {
|
|
|
37825
38317
|
/**
|
|
37826
38318
|
* The security baseline per category device state summary
|
|
37827
38319
|
*/
|
|
38320
|
+
|
|
38321
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37828
38322
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
37829
38323
|
/**
|
|
37830
38324
|
* The security baseline device states
|
|
37831
38325
|
*/
|
|
38326
|
+
|
|
38327
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37832
38328
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
37833
38329
|
/**
|
|
37834
38330
|
* The security baseline device state summary
|
|
37835
38331
|
*/
|
|
38332
|
+
|
|
38333
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37836
38334
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
37837
38335
|
}
|
|
37838
38336
|
|
|
@@ -38949,7 +39447,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38949
39447
|
@contains teamDefinition: team | null;
|
|
38950
39448
|
}
|
|
38951
39449
|
|
|
38952
|
-
@entity model teamwork extends entity {
|
|
39450
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
38953
39451
|
isTeamsEnabled: boolean;
|
|
38954
39452
|
region: string | null;
|
|
38955
39453
|
@contains deletedChats: deletedChat[];
|
|
@@ -39483,6 +39981,10 @@ namespace reference.`microsoft.graph` {
|
|
|
39483
39981
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
39484
39982
|
}
|
|
39485
39983
|
|
|
39984
|
+
@entity model unitMap extends baseMapFeature {
|
|
39985
|
+
placeId: string | null;
|
|
39986
|
+
}
|
|
39987
|
+
|
|
39486
39988
|
/**
|
|
39487
39989
|
* This task derived type represents a list of unmanaged devices discovered in the network.
|
|
39488
39990
|
*/
|
|
@@ -46543,7 +47045,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46543
47045
|
*/
|
|
46544
47046
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
46545
47047
|
/**
|
|
46546
|
-
*
|
|
47048
|
+
* 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.
|
|
47049
|
+
*/
|
|
47050
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
47051
|
+
/**
|
|
47052
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46547
47053
|
*/
|
|
46548
47054
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
46549
47055
|
/**
|
|
@@ -46551,7 +47057,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46551
47057
|
*/
|
|
46552
47058
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
46553
47059
|
/**
|
|
46554
|
-
*
|
|
47060
|
+
* 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.
|
|
47061
|
+
*/
|
|
47062
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
47063
|
+
/**
|
|
47064
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46555
47065
|
*/
|
|
46556
47066
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
46557
47067
|
/**
|
|
@@ -48094,6 +48604,53 @@ namespace reference.`microsoft.graph` {
|
|
|
48094
48604
|
packageIdentifier: string | null;
|
|
48095
48605
|
}
|
|
48096
48606
|
|
|
48607
|
+
@entity model workplace extends MsGraph.SharedModels.entity {
|
|
48608
|
+
@contains sensorDevices: workplaceSensorDevice[];
|
|
48609
|
+
}
|
|
48610
|
+
|
|
48611
|
+
@entity model workplaceSensorDevice extends entity {
|
|
48612
|
+
/**
|
|
48613
|
+
* The description of the device.
|
|
48614
|
+
*/
|
|
48615
|
+
description: string | null;
|
|
48616
|
+
/**
|
|
48617
|
+
* The unique identifier of the device set by the user.
|
|
48618
|
+
*/
|
|
48619
|
+
deviceId: string;
|
|
48620
|
+
/**
|
|
48621
|
+
* The display name of the device.
|
|
48622
|
+
*/
|
|
48623
|
+
displayName: string | null;
|
|
48624
|
+
/**
|
|
48625
|
+
* The IPv4 Address of the device.
|
|
48626
|
+
*/
|
|
48627
|
+
ipV4Address: string | null;
|
|
48628
|
+
/**
|
|
48629
|
+
* The IPv6 Address of the device.
|
|
48630
|
+
*/
|
|
48631
|
+
ipV6Address: string | null;
|
|
48632
|
+
/**
|
|
48633
|
+
* The MAC address of the device.
|
|
48634
|
+
*/
|
|
48635
|
+
macAddress: string | null;
|
|
48636
|
+
/**
|
|
48637
|
+
* The manufacturer of the device.
|
|
48638
|
+
*/
|
|
48639
|
+
manufacturer: string;
|
|
48640
|
+
/**
|
|
48641
|
+
* The unique identifier of the place where the device is located.
|
|
48642
|
+
*/
|
|
48643
|
+
placeId: string | null;
|
|
48644
|
+
/**
|
|
48645
|
+
* A list of sensors associated with the device. Sensors can measure physical quantities such as temperature, humidity, occupancy, etc.
|
|
48646
|
+
*/
|
|
48647
|
+
sensors: workplaceSensor[];
|
|
48648
|
+
/**
|
|
48649
|
+
* A list of custom tags associated with the device.
|
|
48650
|
+
*/
|
|
48651
|
+
tags: string[] | null;
|
|
48652
|
+
}
|
|
48653
|
+
|
|
48097
48654
|
@entity model workPosition extends itemFacet {
|
|
48098
48655
|
categories: string[] | null;
|
|
48099
48656
|
colleagues: relatedPerson[] | null;
|
|
@@ -48102,6 +48659,18 @@ namespace reference.`microsoft.graph` {
|
|
|
48102
48659
|
manager: relatedPerson | null;
|
|
48103
48660
|
}
|
|
48104
48661
|
|
|
48662
|
+
@entity model workspace extends place {
|
|
48663
|
+
building: string | null;
|
|
48664
|
+
capacity: int32 | null;
|
|
48665
|
+
displayDeviceName: string | null;
|
|
48666
|
+
emailAddress: string | null;
|
|
48667
|
+
floorLabel: string | null;
|
|
48668
|
+
floorNumber: int32 | null;
|
|
48669
|
+
mode: placeMode | null;
|
|
48670
|
+
nickname: string;
|
|
48671
|
+
placeId: string | null;
|
|
48672
|
+
}
|
|
48673
|
+
|
|
48105
48674
|
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
48106
48675
|
allowedIssuerSkis: string[];
|
|
48107
48676
|
allowedPolicyOIDs: string[];
|
|
@@ -48502,6 +49071,7 @@ namespace reference.`microsoft.graph` {
|
|
|
48502
49071
|
unknownFutureValue: 2,
|
|
48503
49072
|
agentIdentityBlueprintPrincipal: 3,
|
|
48504
49073
|
user: 4,
|
|
49074
|
+
discoveredAgentIdentity: 5,
|
|
48505
49075
|
}
|
|
48506
49076
|
|
|
48507
49077
|
enum agentIdRiskLevel {
|
|
@@ -49637,18 +50207,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49637
50207
|
*/
|
|
49638
50208
|
wpaPersonal: 4,
|
|
49639
50209
|
unknownFutureValue: 5,
|
|
49640
|
-
/**
|
|
49641
|
-
* 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.
|
|
49642
|
-
*/
|
|
49643
|
-
wpa2Personal: 6,
|
|
49644
|
-
/**
|
|
49645
|
-
* 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.
|
|
49646
|
-
*/
|
|
49647
|
-
wpa3Personal: 7,
|
|
49648
|
-
/**
|
|
49649
|
-
* 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.
|
|
49650
|
-
*/
|
|
49651
|
-
wpa3Enterprise: 8,
|
|
49652
50210
|
}
|
|
49653
50211
|
|
|
49654
50212
|
/**
|
|
@@ -49823,22 +50381,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49823
50381
|
*/
|
|
49824
50382
|
wpaEnterprise: 4,
|
|
49825
50383
|
unknownFutureValue: 5,
|
|
49826
|
-
/**
|
|
49827
|
-
* 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.
|
|
49828
|
-
*/
|
|
49829
|
-
wpa2Personal: 6,
|
|
49830
|
-
/**
|
|
49831
|
-
* 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.
|
|
49832
|
-
*/
|
|
49833
|
-
wpa2Enterprise: 7,
|
|
49834
|
-
/**
|
|
49835
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49836
|
-
*/
|
|
49837
|
-
wpa3Personal: 8,
|
|
49838
|
-
/**
|
|
49839
|
-
* 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.
|
|
49840
|
-
*/
|
|
49841
|
-
wpa3Enterprise: 9,
|
|
49842
50384
|
}
|
|
49843
50385
|
|
|
49844
50386
|
/**
|
|
@@ -50981,6 +51523,13 @@ namespace reference.`microsoft.graph` {
|
|
|
50981
51523
|
html: 1,
|
|
50982
51524
|
}
|
|
50983
51525
|
|
|
51526
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
51527
|
+
enum bookingType {
|
|
51528
|
+
`unknown`: 0,
|
|
51529
|
+
standard: 1,
|
|
51530
|
+
reserved: 2,
|
|
51531
|
+
}
|
|
51532
|
+
|
|
50984
51533
|
/**
|
|
50985
51534
|
* Allow(Not Configured) or prevent(Block) the syncing of Microsoft Edge Browser settings. Option to prevent syncing across devices, but allow user override.
|
|
50986
51535
|
*/
|
|
@@ -51335,6 +51884,14 @@ namespace reference.`microsoft.graph` {
|
|
|
51335
51884
|
unknownFutureValue: 3,
|
|
51336
51885
|
}
|
|
51337
51886
|
|
|
51887
|
+
enum checkInMethod {
|
|
51888
|
+
unspecified: 0,
|
|
51889
|
+
manual: 1,
|
|
51890
|
+
inferred: 2,
|
|
51891
|
+
verified: 3,
|
|
51892
|
+
unknownFutureValue: 4,
|
|
51893
|
+
}
|
|
51894
|
+
|
|
51338
51895
|
/**
|
|
51339
51896
|
* The onboarding status of the tenant.
|
|
51340
51897
|
*/
|
|
@@ -52119,6 +52676,29 @@ namespace reference.`microsoft.graph` {
|
|
|
52119
52676
|
applicationProxy: 0,
|
|
52120
52677
|
}
|
|
52121
52678
|
|
|
52679
|
+
/**
|
|
52680
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
52681
|
+
*/
|
|
52682
|
+
enum connectorHealthCheckMetricName {
|
|
52683
|
+
/**
|
|
52684
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
52685
|
+
*/
|
|
52686
|
+
caConnectivity: 0,
|
|
52687
|
+
/**
|
|
52688
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
52689
|
+
*/
|
|
52690
|
+
caIssuancePermissions: 1,
|
|
52691
|
+
/**
|
|
52692
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
52693
|
+
*/
|
|
52694
|
+
caRevocationPermissions: 2,
|
|
52695
|
+
/**
|
|
52696
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
52697
|
+
*/
|
|
52698
|
+
certificateTemplate: 3,
|
|
52699
|
+
unknownFutureValue: 4,
|
|
52700
|
+
}
|
|
52701
|
+
|
|
52122
52702
|
/**
|
|
52123
52703
|
* Connector health state for connector status
|
|
52124
52704
|
*/
|
|
@@ -52366,6 +52946,44 @@ namespace reference.`microsoft.graph` {
|
|
|
52366
52946
|
saturday: 6,
|
|
52367
52947
|
}
|
|
52368
52948
|
|
|
52949
|
+
/**
|
|
52950
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
52951
|
+
*/
|
|
52952
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
52953
|
+
/**
|
|
52954
|
+
* The device downloads apps of any size using a cellular network.
|
|
52955
|
+
*/
|
|
52956
|
+
alwaysOn: 0,
|
|
52957
|
+
/**
|
|
52958
|
+
* 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.
|
|
52959
|
+
*/
|
|
52960
|
+
alwaysOff: 1,
|
|
52961
|
+
/**
|
|
52962
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
52963
|
+
*/
|
|
52964
|
+
storeSettings: 2,
|
|
52965
|
+
unknownFutureValue: 3,
|
|
52966
|
+
}
|
|
52967
|
+
|
|
52968
|
+
/**
|
|
52969
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
52970
|
+
*/
|
|
52971
|
+
enum ddmAppAutomaticAppUpdates {
|
|
52972
|
+
/**
|
|
52973
|
+
* The device automatically updates the app to the latest version.
|
|
52974
|
+
*/
|
|
52975
|
+
alwaysOn: 0,
|
|
52976
|
+
/**
|
|
52977
|
+
* The device never automatically updates the app.
|
|
52978
|
+
*/
|
|
52979
|
+
alwaysOff: 1,
|
|
52980
|
+
/**
|
|
52981
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
52982
|
+
*/
|
|
52983
|
+
storeSettings: 2,
|
|
52984
|
+
unknownFutureValue: 3,
|
|
52985
|
+
}
|
|
52986
|
+
|
|
52369
52987
|
@graphFlags
|
|
52370
52988
|
enum decisionItemPrincipalResourceMembershipType {
|
|
52371
52989
|
direct: 1,
|
|
@@ -54484,6 +55102,10 @@ namespace reference.`microsoft.graph` {
|
|
|
54484
55102
|
* Indicates the settings that can be deployed through the Android channel.
|
|
54485
55103
|
*/
|
|
54486
55104
|
android: 65536,
|
|
55105
|
+
/**
|
|
55106
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
55107
|
+
*/
|
|
55108
|
+
intuneOpenExtensibility: 131072,
|
|
54487
55109
|
}
|
|
54488
55110
|
|
|
54489
55111
|
/**
|
|
@@ -56753,6 +57375,176 @@ namespace reference.`microsoft.graph` {
|
|
|
56753
57375
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
56754
57376
|
}
|
|
56755
57377
|
|
|
57378
|
+
/**
|
|
57379
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
57380
|
+
*/
|
|
57381
|
+
enum eSimProfileErrorDetail {
|
|
57382
|
+
/**
|
|
57383
|
+
* No error.
|
|
57384
|
+
*/
|
|
57385
|
+
none: 0,
|
|
57386
|
+
/**
|
|
57387
|
+
* The eSIM card encountered a general failure.
|
|
57388
|
+
*/
|
|
57389
|
+
cardGeneralFailure: 1,
|
|
57390
|
+
/**
|
|
57391
|
+
* The confirmation code provided was incorrect.
|
|
57392
|
+
*/
|
|
57393
|
+
confirmationCodeIncorrect: 2,
|
|
57394
|
+
/**
|
|
57395
|
+
* The confirmation code was missing.
|
|
57396
|
+
*/
|
|
57397
|
+
confirmationCodeMissing: 3,
|
|
57398
|
+
/**
|
|
57399
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
57400
|
+
*/
|
|
57401
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
57402
|
+
/**
|
|
57403
|
+
* The operation is forbidden by policy.
|
|
57404
|
+
*/
|
|
57405
|
+
forbiddenByPolicy: 5,
|
|
57406
|
+
/**
|
|
57407
|
+
* The matching ID provided was invalid.
|
|
57408
|
+
*/
|
|
57409
|
+
invalidMatchingId: 6,
|
|
57410
|
+
/**
|
|
57411
|
+
* No eligible eSIM profile was found for this device.
|
|
57412
|
+
*/
|
|
57413
|
+
noEligibleProfileForThisDevice: 7,
|
|
57414
|
+
/**
|
|
57415
|
+
* There was not enough space on the eSIM card.
|
|
57416
|
+
*/
|
|
57417
|
+
notEnoughSpaceOnCard: 8,
|
|
57418
|
+
/**
|
|
57419
|
+
* The operation was aborted.
|
|
57420
|
+
*/
|
|
57421
|
+
operationAborted: 9,
|
|
57422
|
+
/**
|
|
57423
|
+
* The eSIM profile EID did not match the device.
|
|
57424
|
+
*/
|
|
57425
|
+
profileEidMismatch: 10,
|
|
57426
|
+
/**
|
|
57427
|
+
* The eSIM profile is not available for a new binding.
|
|
57428
|
+
*/
|
|
57429
|
+
profileNotAvailableForNewBinding: 11,
|
|
57430
|
+
/**
|
|
57431
|
+
* The eSIM profile has not been released by the operator.
|
|
57432
|
+
*/
|
|
57433
|
+
profileNotReleasedByOperator: 12,
|
|
57434
|
+
/**
|
|
57435
|
+
* The remote server encountered a general failure.
|
|
57436
|
+
*/
|
|
57437
|
+
remoteServerGeneralFailure: 13,
|
|
57438
|
+
/**
|
|
57439
|
+
* The remote server was unreachable.
|
|
57440
|
+
*/
|
|
57441
|
+
remoteServerUnreachable: 14,
|
|
57442
|
+
/**
|
|
57443
|
+
* A timeout occurred while waiting for user consent.
|
|
57444
|
+
*/
|
|
57445
|
+
timeoutWaitingForUserConsent: 15,
|
|
57446
|
+
/**
|
|
57447
|
+
* The operation is prohibited by the eSIM profile class.
|
|
57448
|
+
*/
|
|
57449
|
+
operationProhibitedByProfileClass: 16,
|
|
57450
|
+
/**
|
|
57451
|
+
* The provisioning profile is not present.
|
|
57452
|
+
*/
|
|
57453
|
+
provisioningProfileNotPresent: 17,
|
|
57454
|
+
/**
|
|
57455
|
+
* There is no corresponding request for this operation.
|
|
57456
|
+
*/
|
|
57457
|
+
noCorrespondingRequest: 18,
|
|
57458
|
+
/**
|
|
57459
|
+
* A timeout occurred while waiting for a response.
|
|
57460
|
+
*/
|
|
57461
|
+
timeoutWaitingForResponse: 19,
|
|
57462
|
+
/**
|
|
57463
|
+
* The ICCID already exists on the device.
|
|
57464
|
+
*/
|
|
57465
|
+
iccidAlreadyExists: 20,
|
|
57466
|
+
/**
|
|
57467
|
+
* An error occurred while processing the eSIM profile.
|
|
57468
|
+
*/
|
|
57469
|
+
profileProcessingError: 21,
|
|
57470
|
+
/**
|
|
57471
|
+
* The remote server is not trusted.
|
|
57472
|
+
*/
|
|
57473
|
+
remoteServerNotTrusted: 22,
|
|
57474
|
+
/**
|
|
57475
|
+
* The maximum number of retries for profile download was exceeded.
|
|
57476
|
+
*/
|
|
57477
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
57478
|
+
/**
|
|
57479
|
+
* The WinHTTP name could not be resolved.
|
|
57480
|
+
*/
|
|
57481
|
+
winhttpNameNotResolved: 24,
|
|
57482
|
+
/**
|
|
57483
|
+
* The WinHTTP operation was cancelled.
|
|
57484
|
+
*/
|
|
57485
|
+
winhttpOperationCancelled: 25,
|
|
57486
|
+
/**
|
|
57487
|
+
* The status is unspecified.
|
|
57488
|
+
*/
|
|
57489
|
+
statusUnspecified: 26,
|
|
57490
|
+
/**
|
|
57491
|
+
* The operation is in progress.
|
|
57492
|
+
*/
|
|
57493
|
+
inProgress: 27,
|
|
57494
|
+
/**
|
|
57495
|
+
* The operation is pending user action.
|
|
57496
|
+
*/
|
|
57497
|
+
pendingUserAction: 28,
|
|
57498
|
+
/**
|
|
57499
|
+
* An error occurred while setup was in progress.
|
|
57500
|
+
*/
|
|
57501
|
+
errorSetupInProgress: 29,
|
|
57502
|
+
/**
|
|
57503
|
+
* The user denied the operation.
|
|
57504
|
+
*/
|
|
57505
|
+
errorUserDenied: 30,
|
|
57506
|
+
/**
|
|
57507
|
+
* An internal error occurred.
|
|
57508
|
+
*/
|
|
57509
|
+
internalError: 31,
|
|
57510
|
+
/**
|
|
57511
|
+
* The ICCID was not found.
|
|
57512
|
+
*/
|
|
57513
|
+
errorIccIdNotFound: 32,
|
|
57514
|
+
/**
|
|
57515
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
57516
|
+
*/
|
|
57517
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
57518
|
+
unknownFutureValue: 34,
|
|
57519
|
+
}
|
|
57520
|
+
|
|
57521
|
+
/**
|
|
57522
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
57523
|
+
*/
|
|
57524
|
+
enum eSimProfileState {
|
|
57525
|
+
/**
|
|
57526
|
+
* Unknown state.
|
|
57527
|
+
*/
|
|
57528
|
+
`unknown`: 0,
|
|
57529
|
+
/**
|
|
57530
|
+
* The eSIM profile is being installed.
|
|
57531
|
+
*/
|
|
57532
|
+
installing: 1,
|
|
57533
|
+
/**
|
|
57534
|
+
* The eSIM profile has been successfully installed.
|
|
57535
|
+
*/
|
|
57536
|
+
installed: 2,
|
|
57537
|
+
/**
|
|
57538
|
+
* The eSIM profile is being deleted.
|
|
57539
|
+
*/
|
|
57540
|
+
deleting: 3,
|
|
57541
|
+
/**
|
|
57542
|
+
* An error occurred while processing the eSIM profile.
|
|
57543
|
+
*/
|
|
57544
|
+
error: 4,
|
|
57545
|
+
unknownFutureValue: 5,
|
|
57546
|
+
}
|
|
57547
|
+
|
|
56756
57548
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
56757
57549
|
enum eventType {
|
|
56758
57550
|
singleInstance: 0,
|
|
@@ -60083,6 +60875,22 @@ namespace reference.`microsoft.graph` {
|
|
|
60083
60875
|
userRequestedInstall: 5,
|
|
60084
60876
|
}
|
|
60085
60877
|
|
|
60878
|
+
/**
|
|
60879
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
60880
|
+
*/
|
|
60881
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
60882
|
+
apkIsInvalid: 1,
|
|
60883
|
+
apkIsMissingSignerCertificates: 2,
|
|
60884
|
+
apkHasInvalidPackageName: 3,
|
|
60885
|
+
apkPackageNameMismatch: 4,
|
|
60886
|
+
apkHasInvalidVersionCode: 5,
|
|
60887
|
+
apkHasVersionCodeMismatch: 6,
|
|
60888
|
+
apkHasInvalidMinSdk: 7,
|
|
60889
|
+
apkMinSdkMismatch: 8,
|
|
60890
|
+
apkVersionNameMismatch: 9,
|
|
60891
|
+
unknownFutureValue: 10,
|
|
60892
|
+
}
|
|
60893
|
+
|
|
60086
60894
|
/**
|
|
60087
60895
|
* Contains properties for upload request states.
|
|
60088
60896
|
*/
|
|
@@ -60291,6 +61099,33 @@ namespace reference.`microsoft.graph` {
|
|
|
60291
61099
|
WriteOnly: 3,
|
|
60292
61100
|
}
|
|
60293
61101
|
|
|
61102
|
+
/**
|
|
61103
|
+
* The health status of an NDES connector or individual health check metric.
|
|
61104
|
+
*/
|
|
61105
|
+
enum ndesConnectorHealthStatus {
|
|
61106
|
+
/**
|
|
61107
|
+
* Health has not been evaluated yet for this connector.
|
|
61108
|
+
*/
|
|
61109
|
+
`unknown`: 0,
|
|
61110
|
+
/**
|
|
61111
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
61112
|
+
*/
|
|
61113
|
+
noActionRequired: 1,
|
|
61114
|
+
/**
|
|
61115
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
61116
|
+
*/
|
|
61117
|
+
attentionRequired: 2,
|
|
61118
|
+
/**
|
|
61119
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
61120
|
+
*/
|
|
61121
|
+
actionRequired: 3,
|
|
61122
|
+
/**
|
|
61123
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
61124
|
+
*/
|
|
61125
|
+
disconnected: 4,
|
|
61126
|
+
unknownFutureValue: 5,
|
|
61127
|
+
}
|
|
61128
|
+
|
|
60294
61129
|
/**
|
|
60295
61130
|
* The current status of the Ndes Connector.
|
|
60296
61131
|
*/
|
|
@@ -61061,6 +61896,23 @@ namespace reference.`microsoft.graph` {
|
|
|
61061
61896
|
other: 3,
|
|
61062
61897
|
}
|
|
61063
61898
|
|
|
61899
|
+
enum placeFeatureEnablement {
|
|
61900
|
+
`unknown`: 0,
|
|
61901
|
+
enabled: 1,
|
|
61902
|
+
disabled: 2,
|
|
61903
|
+
unknownFutureValue: 3,
|
|
61904
|
+
}
|
|
61905
|
+
|
|
61906
|
+
enum placeOperationStatus {
|
|
61907
|
+
created: 0,
|
|
61908
|
+
inProgress: 1,
|
|
61909
|
+
succeeded: 2,
|
|
61910
|
+
failed: 3,
|
|
61911
|
+
partiallySucceeded: 4,
|
|
61912
|
+
expired: 5,
|
|
61913
|
+
unknownFutureValue: 6,
|
|
61914
|
+
}
|
|
61915
|
+
|
|
61064
61916
|
enum plannerApprovalStatus {
|
|
61065
61917
|
requested: 0,
|
|
61066
61918
|
approved: 1,
|
|
@@ -62207,6 +63059,16 @@ namespace reference.`microsoft.graph` {
|
|
|
62207
63059
|
mdiSecureScore: 3,
|
|
62208
63060
|
}
|
|
62209
63061
|
|
|
63062
|
+
enum recommendationCategoryGroup {
|
|
63063
|
+
strengthenAuthentication: 0,
|
|
63064
|
+
detectAndRespondToThreats: 1,
|
|
63065
|
+
enforceLeastPrivilege: 2,
|
|
63066
|
+
governAppsCredentialsAndAgents: 3,
|
|
63067
|
+
hardenInfrastructure: 4,
|
|
63068
|
+
defenderForIdentity: 5,
|
|
63069
|
+
unknownFutureValue: 6,
|
|
63070
|
+
}
|
|
63071
|
+
|
|
62210
63072
|
enum recommendationFeatureAreas {
|
|
62211
63073
|
users: 0,
|
|
62212
63074
|
groups: 1,
|
|
@@ -62218,11 +63080,12 @@ namespace reference.`microsoft.graph` {
|
|
|
62218
63080
|
unknownFutureValue: 7,
|
|
62219
63081
|
}
|
|
62220
63082
|
|
|
62221
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
62222
63083
|
enum recommendationPriority {
|
|
62223
63084
|
low: 0,
|
|
62224
63085
|
medium: 1,
|
|
62225
63086
|
high: 2,
|
|
63087
|
+
critical: 3,
|
|
63088
|
+
unknownFutureValue: 4,
|
|
62226
63089
|
}
|
|
62227
63090
|
|
|
62228
63091
|
enum recommendationStatus {
|
|
@@ -62236,6 +63099,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62236
63099
|
thirdParty: 7,
|
|
62237
63100
|
planned: 8,
|
|
62238
63101
|
alternateMitigation: 9,
|
|
63102
|
+
needsMoreAction: 10,
|
|
62239
63103
|
}
|
|
62240
63104
|
|
|
62241
63105
|
enum recommendationType {
|
|
@@ -62515,6 +63379,14 @@ namespace reference.`microsoft.graph` {
|
|
|
62515
63379
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
62516
63380
|
*/
|
|
62517
63381
|
restoreManagedHomeScreen: 42,
|
|
63382
|
+
/**
|
|
63383
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
63384
|
+
*/
|
|
63385
|
+
triggerEnhancedLogCollection: 44,
|
|
63386
|
+
/**
|
|
63387
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
63388
|
+
*/
|
|
63389
|
+
cancelEnhancedLogCollection: 45,
|
|
62518
63390
|
}
|
|
62519
63391
|
|
|
62520
63392
|
/**
|
|
@@ -62551,6 +63423,25 @@ namespace reference.`microsoft.graph` {
|
|
|
62551
63423
|
enabled: 2,
|
|
62552
63424
|
}
|
|
62553
63425
|
|
|
63426
|
+
/**
|
|
63427
|
+
* Enumeration indicating the state of session recording
|
|
63428
|
+
*/
|
|
63429
|
+
enum remoteHelpRecordingState {
|
|
63430
|
+
/**
|
|
63431
|
+
* Recording is not enabled for this session.
|
|
63432
|
+
*/
|
|
63433
|
+
notEnabled: 0,
|
|
63434
|
+
/**
|
|
63435
|
+
* Recording is in progress.
|
|
63436
|
+
*/
|
|
63437
|
+
recording: 1,
|
|
63438
|
+
/**
|
|
63439
|
+
* Recording failed.
|
|
63440
|
+
*/
|
|
63441
|
+
failed: 2,
|
|
63442
|
+
unknownFutureValue: 3,
|
|
63443
|
+
}
|
|
63444
|
+
|
|
62554
63445
|
enum replyRestriction {
|
|
62555
63446
|
everyone: 0,
|
|
62556
63447
|
authorAndModerators: 1,
|
|
@@ -62566,6 +63457,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62566
63457
|
microsoftEntraWorkloadId: 5,
|
|
62567
63458
|
unknownFutureValue: 6,
|
|
62568
63459
|
aatp: 7,
|
|
63460
|
+
microsoftEntraSuite: 8,
|
|
62569
63461
|
}
|
|
62570
63462
|
|
|
62571
63463
|
/**
|
|
@@ -62611,6 +63503,11 @@ namespace reference.`microsoft.graph` {
|
|
|
62611
63503
|
unknownFutureValue: 20,
|
|
62612
63504
|
}
|
|
62613
63505
|
|
|
63506
|
+
enum resourceLinkType {
|
|
63507
|
+
url: 0,
|
|
63508
|
+
unknownFutureValue: 1,
|
|
63509
|
+
}
|
|
63510
|
+
|
|
62614
63511
|
enum resourceScopeType {
|
|
62615
63512
|
group: 1,
|
|
62616
63513
|
chat: 2,
|
|
@@ -62812,6 +63709,10 @@ namespace reference.`microsoft.graph` {
|
|
|
62812
63709
|
* App was removed in order to install a superseding app.
|
|
62813
63710
|
*/
|
|
62814
63711
|
appRemovedBySupersedence: 3005,
|
|
63712
|
+
/**
|
|
63713
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
63714
|
+
*/
|
|
63715
|
+
dependencyAppInUse: 3006,
|
|
62815
63716
|
/**
|
|
62816
63717
|
* Application failed to uninstall. See error code property for more details.
|
|
62817
63718
|
*/
|
|
@@ -62828,6 +63729,18 @@ namespace reference.`microsoft.graph` {
|
|
|
62828
63729
|
* Application content was downloaded to the device.
|
|
62829
63730
|
*/
|
|
62830
63731
|
contentDownloaded: 5002,
|
|
63732
|
+
/**
|
|
63733
|
+
* App enforcement is pending because the app is currently in use.
|
|
63734
|
+
*/
|
|
63735
|
+
inUse: 5005,
|
|
63736
|
+
/**
|
|
63737
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
63738
|
+
*/
|
|
63739
|
+
deferred: 5006,
|
|
63740
|
+
/**
|
|
63741
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
63742
|
+
*/
|
|
63743
|
+
autoDeferred: 5007,
|
|
62831
63744
|
}
|
|
62832
63745
|
|
|
62833
63746
|
enum riskDetail {
|
|
@@ -65337,10 +66250,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65337
66250
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
65338
66251
|
*/
|
|
65339
66252
|
wpa3Personal: 7,
|
|
65340
|
-
/**
|
|
65341
|
-
* 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.
|
|
65342
|
-
*/
|
|
65343
|
-
wpa3Enterprise: 8,
|
|
65344
66253
|
}
|
|
65345
66254
|
|
|
65346
66255
|
/**
|
|
@@ -65772,6 +66681,7 @@ namespace reference.`microsoft.graph` {
|
|
|
65772
66681
|
/**
|
|
65773
66682
|
* Contains rule types for Win32 LOB apps.
|
|
65774
66683
|
*/
|
|
66684
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
65775
66685
|
enum win32LobAppRuleType {
|
|
65776
66686
|
/**
|
|
65777
66687
|
* Detection rule.
|
|
@@ -65781,11 +66691,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65781
66691
|
* Requirement rule.
|
|
65782
66692
|
*/
|
|
65783
66693
|
requirement: 1,
|
|
65784
|
-
/**
|
|
65785
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65786
|
-
*/
|
|
65787
|
-
inUse: 2,
|
|
65788
|
-
unknownFutureValue: 3,
|
|
65789
66694
|
}
|
|
65790
66695
|
|
|
65791
66696
|
/**
|
|
@@ -67221,7 +68126,6 @@ namespace reference.`microsoft.graph` {
|
|
|
67221
68126
|
/**
|
|
67222
68127
|
* Data can be transferred from/to these classes of apps
|
|
67223
68128
|
*/
|
|
67224
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
67225
68129
|
enum windowsManagedAppDataTransferLevel {
|
|
67226
68130
|
/**
|
|
67227
68131
|
* All apps.
|
|
@@ -67231,6 +68135,27 @@ namespace reference.`microsoft.graph` {
|
|
|
67231
68135
|
* No apps.
|
|
67232
68136
|
*/
|
|
67233
68137
|
none: 1,
|
|
68138
|
+
/**
|
|
68139
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
68140
|
+
*/
|
|
68141
|
+
selectedApps: 2,
|
|
68142
|
+
unknownFutureValue: 3,
|
|
68143
|
+
}
|
|
68144
|
+
|
|
68145
|
+
/**
|
|
68146
|
+
* Windows MAM data transfer locations
|
|
68147
|
+
*/
|
|
68148
|
+
@graphFlags
|
|
68149
|
+
enum windowsManagedAppDataTransferLocations {
|
|
68150
|
+
/**
|
|
68151
|
+
* No locations selected.
|
|
68152
|
+
*/
|
|
68153
|
+
none: 0,
|
|
68154
|
+
/**
|
|
68155
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
68156
|
+
*/
|
|
68157
|
+
oneDriveForBusiness: 1,
|
|
68158
|
+
unknownFutureValue: 2,
|
|
67234
68159
|
}
|
|
67235
68160
|
|
|
67236
68161
|
/**
|
|
@@ -67797,6 +68722,40 @@ namespace reference.`microsoft.graph` {
|
|
|
67797
68722
|
thirdEthernet: 6,
|
|
67798
68723
|
}
|
|
67799
68724
|
|
|
68725
|
+
enum workplaceSensorEventType {
|
|
68726
|
+
badgeIn: 0,
|
|
68727
|
+
badgeOut: 1,
|
|
68728
|
+
unknownFutureValue: 2,
|
|
68729
|
+
}
|
|
68730
|
+
|
|
68731
|
+
enum workplaceSensorType {
|
|
68732
|
+
/**
|
|
68733
|
+
* The occupancy sensor type.
|
|
68734
|
+
*/
|
|
68735
|
+
occupancy: 0,
|
|
68736
|
+
/**
|
|
68737
|
+
* The people count sensor type.
|
|
68738
|
+
*/
|
|
68739
|
+
peopleCount: 1,
|
|
68740
|
+
/**
|
|
68741
|
+
* The inferred Occupancy sensor type.
|
|
68742
|
+
*/
|
|
68743
|
+
inferredOccupancy: 2,
|
|
68744
|
+
/**
|
|
68745
|
+
* The heartbeat sensor type.
|
|
68746
|
+
*/
|
|
68747
|
+
heartbeat: 3,
|
|
68748
|
+
/**
|
|
68749
|
+
* The badge swipe sensor type.
|
|
68750
|
+
*/
|
|
68751
|
+
badge: 4,
|
|
68752
|
+
unknownFutureValue: 5,
|
|
68753
|
+
/**
|
|
68754
|
+
* The Wifi sensor type.
|
|
68755
|
+
*/
|
|
68756
|
+
wifi: 6,
|
|
68757
|
+
}
|
|
68758
|
+
|
|
67800
68759
|
/**
|
|
67801
68760
|
* Configuration state set by admin for wriitng tools Apple Intelligence setting
|
|
67802
68761
|
*/
|