@microsoft/typespec-msgraph-reference 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +725 -44
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +1477 -51
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +828 -45
- package/lib/Fairfax/V1.0/main.tsp +26 -11
- package/lib/GovSG/Beta/main.tsp +112 -0
- package/lib/Mooncake/Beta/main.tsp +725 -44
- package/lib/Prod/Beta/main.tsp +203 -30
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +197 -3
- package/lib/USNat/V1.0/main.tsp +24 -9
- package/lib/USSec/Beta/main.tsp +197 -3
- package/lib/USSec/V1.0/main.tsp +24 -9
- package/package.json +5 -5
|
@@ -17,6 +17,8 @@ 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.
|
|
20
22
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
21
23
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
22
24
|
@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.")
|
|
@@ -1141,6 +1143,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1141
1143
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
1142
1144
|
audiences: audiencesConfiguration | null;
|
|
1143
1145
|
identifierUris: identifierUriConfiguration | null;
|
|
1146
|
+
redirectUris: redirectUriConfiguration | null;
|
|
1144
1147
|
}
|
|
1145
1148
|
|
|
1146
1149
|
@abstract
|
|
@@ -2194,6 +2197,26 @@ namespace reference.`microsoft.graph` {
|
|
|
2194
2197
|
thumbnailUrl: string | null;
|
|
2195
2198
|
}
|
|
2196
2199
|
|
|
2200
|
+
@complex model chatMessageBody {
|
|
2201
|
+
content: string | null;
|
|
2202
|
+
contentType: bodyType | null;
|
|
2203
|
+
messageBodyContentType: chatMessageBodyContentType | null;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
@complex model chatMessageCitation {
|
|
2207
|
+
excerpt: string | null;
|
|
2208
|
+
iconType: string | null;
|
|
2209
|
+
id: int32 | null;
|
|
2210
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
2211
|
+
title: string | null;
|
|
2212
|
+
webUrl: string | null;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
2216
|
+
description: string | null;
|
|
2217
|
+
displayName: string | null;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2197
2220
|
@open
|
|
2198
2221
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
2199
2222
|
}
|
|
@@ -2723,6 +2746,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2723
2746
|
value: string | null;
|
|
2724
2747
|
}
|
|
2725
2748
|
|
|
2749
|
+
/**
|
|
2750
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
2751
|
+
*/
|
|
2752
|
+
@complex model connectorHealthCheck {
|
|
2753
|
+
/**
|
|
2754
|
+
* The name of the health check metric being evaluated.
|
|
2755
|
+
*/
|
|
2756
|
+
metricName: connectorHealthCheckMetricName;
|
|
2757
|
+
/**
|
|
2758
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
2759
|
+
*/
|
|
2760
|
+
status: ndesConnectorHealthStatus;
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2726
2763
|
/**
|
|
2727
2764
|
* Represent connector status
|
|
2728
2765
|
*/
|
|
@@ -2817,6 +2854,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2817
2854
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
2818
2855
|
*/
|
|
2819
2856
|
@complex model createRemoteHelpSessionResponse {
|
|
2857
|
+
/**
|
|
2858
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
2859
|
+
*/
|
|
2860
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
2820
2861
|
/**
|
|
2821
2862
|
* The unique identifier for a session
|
|
2822
2863
|
*/
|
|
@@ -2927,6 +2968,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2927
2968
|
@complex model customAppManagementApplicationConfiguration {
|
|
2928
2969
|
audiences: audiencesConfiguration | null;
|
|
2929
2970
|
identifierUris: identifierUriConfiguration | null;
|
|
2971
|
+
redirectUris: redirectUriConfiguration | null;
|
|
2930
2972
|
}
|
|
2931
2973
|
|
|
2932
2974
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
@@ -3451,6 +3493,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3451
3493
|
* 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.
|
|
3452
3494
|
*/
|
|
3453
3495
|
rulesContent: binary | null;
|
|
3496
|
+
/**
|
|
3497
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
3498
|
+
*/
|
|
3499
|
+
runIntervalInMinutes: int32 | null;
|
|
3454
3500
|
}
|
|
3455
3501
|
|
|
3456
3502
|
/**
|
|
@@ -6880,10 +6926,18 @@ namespace reference.`microsoft.graph` {
|
|
|
6880
6926
|
* 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.
|
|
6881
6927
|
*/
|
|
6882
6928
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6929
|
+
cellularSliceConfigurationId: string | null;
|
|
6930
|
+
contentFilterConfigurationId: string | null;
|
|
6931
|
+
/**
|
|
6932
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6933
|
+
*/
|
|
6934
|
+
ddmAppConfigId: guid | null;
|
|
6935
|
+
dnsProxyConfigurationId: string | null;
|
|
6883
6936
|
/**
|
|
6884
6937
|
* 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.
|
|
6885
6938
|
*/
|
|
6886
6939
|
preventManagedAppBackup: boolean | null;
|
|
6940
|
+
relayConfigurationId: string | null;
|
|
6887
6941
|
/**
|
|
6888
6942
|
* 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.
|
|
6889
6943
|
*/
|
|
@@ -6894,6 +6948,122 @@ namespace reference.`microsoft.graph` {
|
|
|
6894
6948
|
vpnConfigurationId: string | null;
|
|
6895
6949
|
}
|
|
6896
6950
|
|
|
6951
|
+
/**
|
|
6952
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
6953
|
+
*/
|
|
6954
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6955
|
+
/**
|
|
6956
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6957
|
+
*/
|
|
6958
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6959
|
+
/**
|
|
6960
|
+
* Domain names to associate with the app
|
|
6961
|
+
*/
|
|
6962
|
+
associatedDomains: string[] | null;
|
|
6963
|
+
/**
|
|
6964
|
+
* 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.
|
|
6965
|
+
*/
|
|
6966
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6967
|
+
/**
|
|
6968
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6969
|
+
*/
|
|
6970
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6971
|
+
/**
|
|
6972
|
+
* 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'.
|
|
6973
|
+
*/
|
|
6974
|
+
cellularSliceConfigurationId: string | null;
|
|
6975
|
+
/**
|
|
6976
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6977
|
+
*/
|
|
6978
|
+
contentFilterConfigurationId: string | null;
|
|
6979
|
+
/**
|
|
6980
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6981
|
+
*/
|
|
6982
|
+
dnsProxyConfigurationId: string | null;
|
|
6983
|
+
/**
|
|
6984
|
+
* 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.
|
|
6985
|
+
*/
|
|
6986
|
+
preventManagedAppBackup: boolean | null;
|
|
6987
|
+
/**
|
|
6988
|
+
* The unique identifier of the relay to associate with the app.
|
|
6989
|
+
*/
|
|
6990
|
+
relayConfigurationId: string | null;
|
|
6991
|
+
/**
|
|
6992
|
+
* 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.
|
|
6993
|
+
*/
|
|
6994
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6995
|
+
/**
|
|
6996
|
+
* 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.
|
|
6997
|
+
*/
|
|
6998
|
+
version: int32 | null;
|
|
6999
|
+
/**
|
|
7000
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
7001
|
+
*/
|
|
7002
|
+
vpnConfigurationId: string | null;
|
|
7003
|
+
}
|
|
7004
|
+
|
|
7005
|
+
/**
|
|
7006
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
7007
|
+
*/
|
|
7008
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
7009
|
+
/**
|
|
7010
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7011
|
+
*/
|
|
7012
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
7013
|
+
/**
|
|
7014
|
+
* Domain names to associate with the app
|
|
7015
|
+
*/
|
|
7016
|
+
associatedDomains: string[] | null;
|
|
7017
|
+
/**
|
|
7018
|
+
* 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.
|
|
7019
|
+
*/
|
|
7020
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
7021
|
+
/**
|
|
7022
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7023
|
+
*/
|
|
7024
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
7025
|
+
/**
|
|
7026
|
+
* 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'.
|
|
7027
|
+
*/
|
|
7028
|
+
cellularSliceConfigurationId: string | null;
|
|
7029
|
+
/**
|
|
7030
|
+
* The unique identifier of the content filter to associate with the app.
|
|
7031
|
+
*/
|
|
7032
|
+
contentFilterConfigurationId: string | null;
|
|
7033
|
+
/**
|
|
7034
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
7035
|
+
*/
|
|
7036
|
+
ddmAppConfigId: guid | null;
|
|
7037
|
+
/**
|
|
7038
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
7039
|
+
*/
|
|
7040
|
+
dnsProxyConfigurationId: string | null;
|
|
7041
|
+
/**
|
|
7042
|
+
* 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.
|
|
7043
|
+
*/
|
|
7044
|
+
preventManagedAppBackup: boolean | null;
|
|
7045
|
+
/**
|
|
7046
|
+
* The unique identifier of the relay to associate with the app.
|
|
7047
|
+
*/
|
|
7048
|
+
relayConfigurationId: string | null;
|
|
7049
|
+
/**
|
|
7050
|
+
* 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.
|
|
7051
|
+
*/
|
|
7052
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
7053
|
+
/**
|
|
7054
|
+
* Whether or not to use device licensing.
|
|
7055
|
+
*/
|
|
7056
|
+
useDeviceLicensing: boolean;
|
|
7057
|
+
/**
|
|
7058
|
+
* 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.
|
|
7059
|
+
*/
|
|
7060
|
+
version: int32 | null;
|
|
7061
|
+
/**
|
|
7062
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
7063
|
+
*/
|
|
7064
|
+
vpnConfigurationId: string | null;
|
|
7065
|
+
}
|
|
7066
|
+
|
|
6897
7067
|
/**
|
|
6898
7068
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
6899
7069
|
*/
|
|
@@ -8025,6 +8195,32 @@ namespace reference.`microsoft.graph` {
|
|
|
8025
8195
|
teamIdentifier: string;
|
|
8026
8196
|
}
|
|
8027
8197
|
|
|
8198
|
+
/**
|
|
8199
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
8200
|
+
*/
|
|
8201
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
8202
|
+
/**
|
|
8203
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
8204
|
+
*/
|
|
8205
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
8206
|
+
/**
|
|
8207
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
8208
|
+
*/
|
|
8209
|
+
ddmAppConfigId: guid | null;
|
|
8210
|
+
/**
|
|
8211
|
+
* 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.
|
|
8212
|
+
*/
|
|
8213
|
+
isIosApp: boolean | null;
|
|
8214
|
+
/**
|
|
8215
|
+
* 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.
|
|
8216
|
+
*/
|
|
8217
|
+
useDeviceLicensing: boolean;
|
|
8218
|
+
/**
|
|
8219
|
+
* 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.
|
|
8220
|
+
*/
|
|
8221
|
+
version: int32 | null;
|
|
8222
|
+
}
|
|
8223
|
+
|
|
8028
8224
|
/**
|
|
8029
8225
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
8030
8226
|
*/
|
|
@@ -9466,8 +9662,26 @@ namespace reference.`microsoft.graph` {
|
|
|
9466
9662
|
internalUrl: string | null;
|
|
9467
9663
|
}
|
|
9468
9664
|
|
|
9665
|
+
@complex model onPremisesCurrentExportData {
|
|
9666
|
+
clientMachineName: string | null;
|
|
9667
|
+
pendingObjectsAddition: int32 | null;
|
|
9668
|
+
pendingObjectsDeletion: int32 | null;
|
|
9669
|
+
pendingObjectsUpdate: int32 | null;
|
|
9670
|
+
serviceAccount: string | null;
|
|
9671
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
9672
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
9673
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
9674
|
+
}
|
|
9675
|
+
|
|
9469
9676
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
9470
9677
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
9678
|
+
anchorAttribute: string | null;
|
|
9679
|
+
applicationId: string | null;
|
|
9680
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
9681
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
9682
|
+
synchronizationClientVersion: string | null;
|
|
9683
|
+
synchronizationInterval: duration | null;
|
|
9684
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
9471
9685
|
}
|
|
9472
9686
|
|
|
9473
9687
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -9554,6 +9768,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9554
9768
|
SingleSignOnMode: singleSignOnMode | null;
|
|
9555
9769
|
}
|
|
9556
9770
|
|
|
9771
|
+
@complex model onPremisesWritebackConfiguration {
|
|
9772
|
+
unifiedGroupContainer: string | null;
|
|
9773
|
+
userContainer: string | null;
|
|
9774
|
+
}
|
|
9775
|
+
|
|
9557
9776
|
@complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
|
|
9558
9777
|
configuration: customExtensionOverwriteConfiguration | null;
|
|
9559
9778
|
@references customExtension: onTokenIssuanceStartCustomExtension | null;
|
|
@@ -10267,11 +10486,94 @@ namespace reference.`microsoft.graph` {
|
|
|
10267
10486
|
urlPrefixes: string[] | null;
|
|
10268
10487
|
}
|
|
10269
10488
|
|
|
10489
|
+
@complex model redirectUriAllowedDomainConfiguration {
|
|
10490
|
+
allowedDomains: string[];
|
|
10491
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10492
|
+
isStateSetByMicrosoft: boolean;
|
|
10493
|
+
publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
10494
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10495
|
+
spa: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
10496
|
+
state: appManagementRestrictionState;
|
|
10497
|
+
web: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
10498
|
+
}
|
|
10499
|
+
|
|
10500
|
+
@complex model redirectUriAllowedSchemeConfiguration {
|
|
10501
|
+
allowedSchemes: string[];
|
|
10502
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10503
|
+
isStateSetByMicrosoft: boolean;
|
|
10504
|
+
publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
10505
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10506
|
+
spa: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
10507
|
+
state: appManagementRestrictionState;
|
|
10508
|
+
web: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
10509
|
+
}
|
|
10510
|
+
|
|
10511
|
+
@complex model redirectUriBlockedDomainConfiguration {
|
|
10512
|
+
blockedDomains: string[];
|
|
10513
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10514
|
+
isStateSetByMicrosoft: boolean;
|
|
10515
|
+
publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
10516
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10517
|
+
spa: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
10518
|
+
state: appManagementRestrictionState;
|
|
10519
|
+
web: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
@complex model redirectUriBlockedSchemeConfiguration {
|
|
10523
|
+
blockedSchemes: string[];
|
|
10524
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10525
|
+
exemptFormats: string[];
|
|
10526
|
+
isStateSetByMicrosoft: boolean;
|
|
10527
|
+
publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
10528
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10529
|
+
spa: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
10530
|
+
state: appManagementRestrictionState;
|
|
10531
|
+
web: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10534
|
+
@complex model redirectUriConfiguration {
|
|
10535
|
+
uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
|
|
10536
|
+
uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
|
|
10537
|
+
uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
|
|
10538
|
+
uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
|
|
10539
|
+
uriWithWildcard: redirectUriWildcardConfiguration | null;
|
|
10540
|
+
}
|
|
10541
|
+
|
|
10542
|
+
@complex model redirectUriPlatformAllowedDomainConfiguration {
|
|
10543
|
+
allowedDomains: string[];
|
|
10544
|
+
}
|
|
10545
|
+
|
|
10546
|
+
@complex model redirectUriPlatformAllowedSchemeConfiguration {
|
|
10547
|
+
allowedSchemes: string[];
|
|
10548
|
+
}
|
|
10549
|
+
|
|
10550
|
+
@complex model redirectUriPlatformBlockedDomainConfiguration {
|
|
10551
|
+
blockedDomains: string[];
|
|
10552
|
+
}
|
|
10553
|
+
|
|
10554
|
+
@complex model redirectUriPlatformBlockedSchemeConfiguration {
|
|
10555
|
+
blockedSchemes: string[];
|
|
10556
|
+
exemptFormats: string[];
|
|
10557
|
+
}
|
|
10558
|
+
|
|
10270
10559
|
@complex model redirectUriSettings {
|
|
10271
10560
|
index: int32 | null;
|
|
10272
10561
|
uri: string | null;
|
|
10273
10562
|
}
|
|
10274
10563
|
|
|
10564
|
+
@complex model redirectUriWildcardConfiguration {
|
|
10565
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10566
|
+
excludeFormats: redirectUriWildcardExcludeFormats | null;
|
|
10567
|
+
isStateSetByMicrosoft: boolean;
|
|
10568
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10569
|
+
state: appManagementRestrictionState;
|
|
10570
|
+
}
|
|
10571
|
+
|
|
10572
|
+
@complex model redirectUriWildcardExcludeFormats {
|
|
10573
|
+
excludeWildcardsInPath: boolean;
|
|
10574
|
+
excludeWildcardsInPathWithDomains: string[];
|
|
10575
|
+
}
|
|
10576
|
+
|
|
10275
10577
|
@complex model referencedObject {
|
|
10276
10578
|
referencedObjectName: string | null;
|
|
10277
10579
|
referencedProperty: string | null;
|
|
@@ -15456,6 +15758,9 @@ namespace reference.`microsoft.graph` {
|
|
|
15456
15758
|
@entity model agentIdentity extends servicePrincipal {
|
|
15457
15759
|
agentIdentityBlueprintId: string;
|
|
15458
15760
|
@computed createdDateTime: offsetDateTime | null;
|
|
15761
|
+
managerApplications: guid;
|
|
15762
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
15763
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
15459
15764
|
@references sponsors: directoryObject[];
|
|
15460
15765
|
}
|
|
15461
15766
|
|
|
@@ -15467,6 +15772,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15467
15772
|
|
|
15468
15773
|
@open
|
|
15469
15774
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
15775
|
+
managerApplications: guid;
|
|
15470
15776
|
@references sponsors: directoryObject[];
|
|
15471
15777
|
}
|
|
15472
15778
|
|
|
@@ -18057,6 +18363,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18057
18363
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
18058
18364
|
*/
|
|
18059
18365
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
18366
|
+
/**
|
|
18367
|
+
* 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.
|
|
18368
|
+
*/
|
|
18369
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
18060
18370
|
/**
|
|
18061
18371
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
18062
18372
|
*/
|
|
@@ -19759,10 +20069,18 @@ namespace reference.`microsoft.graph` {
|
|
|
19759
20069
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
19760
20070
|
*/
|
|
19761
20071
|
excludedDomains: string[] | null;
|
|
20072
|
+
/**
|
|
20073
|
+
* 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.
|
|
20074
|
+
*/
|
|
20075
|
+
excludeLocalNetworks: boolean | null;
|
|
19762
20076
|
/**
|
|
19763
20077
|
* 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
|
|
19764
20078
|
*/
|
|
19765
20079
|
identifier: string | null;
|
|
20080
|
+
/**
|
|
20081
|
+
* 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.
|
|
20082
|
+
*/
|
|
20083
|
+
includeAllNetworks: boolean | null;
|
|
19766
20084
|
/**
|
|
19767
20085
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
19768
20086
|
*/
|
|
@@ -20592,14 +20910,16 @@ namespace reference.`microsoft.graph` {
|
|
|
20592
20910
|
|
|
20593
20911
|
@entity model chatMessage extends entity {
|
|
20594
20912
|
attachments: chatMessageAttachment[] | null;
|
|
20595
|
-
body:
|
|
20913
|
+
body: chatMessageBody;
|
|
20596
20914
|
channelIdentity: channelIdentity | null;
|
|
20597
20915
|
chatId: string | null;
|
|
20916
|
+
citations: chatMessageCitation[] | null;
|
|
20598
20917
|
@computed createdDateTime: offsetDateTime | null;
|
|
20599
20918
|
deletedDateTime: offsetDateTime | null;
|
|
20600
20919
|
etag: string | null;
|
|
20601
20920
|
eventDetail: eventMessageDetail | null;
|
|
20602
20921
|
from: chatMessageFromIdentitySet | null;
|
|
20922
|
+
hasReplies: boolean;
|
|
20603
20923
|
importance: chatMessageImportance;
|
|
20604
20924
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
20605
20925
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -20622,7 +20942,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20622
20942
|
}
|
|
20623
20943
|
|
|
20624
20944
|
@entity model chatMessageInfo extends entity {
|
|
20625
|
-
body:
|
|
20945
|
+
body: chatMessageBody | null;
|
|
20626
20946
|
@computed createdDateTime: offsetDateTime | null;
|
|
20627
20947
|
eventDetail: eventMessageDetail | null;
|
|
20628
20948
|
from: chatMessageFromIdentitySet | null;
|
|
@@ -23082,7 +23402,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23082
23402
|
*/
|
|
23083
23403
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
23084
23404
|
/**
|
|
23085
|
-
* Indicates the
|
|
23405
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
23086
23406
|
*/
|
|
23087
23407
|
platform: deviceComplianceScriptPlatformType | null;
|
|
23088
23408
|
/**
|
|
@@ -23094,7 +23414,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23094
23414
|
*/
|
|
23095
23415
|
roleScopeTagIds: string[] | null;
|
|
23096
23416
|
/**
|
|
23097
|
-
*
|
|
23417
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
23098
23418
|
*/
|
|
23099
23419
|
runAs32Bit: boolean;
|
|
23100
23420
|
/**
|
|
@@ -23608,6 +23928,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23608
23928
|
successCount: int32;
|
|
23609
23929
|
}
|
|
23610
23930
|
|
|
23931
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
23611
23932
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
23612
23933
|
/**
|
|
23613
23934
|
* Number of compliant users
|
|
@@ -24578,6 +24899,8 @@ namespace reference.`microsoft.graph` {
|
|
|
24578
24899
|
/**
|
|
24579
24900
|
* The device configuration user state summary for this account.
|
|
24580
24901
|
*/
|
|
24902
|
+
|
|
24903
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
24581
24904
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
24582
24905
|
/**
|
|
24583
24906
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -30876,6 +31199,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30876
31199
|
* Contains properties and inherited properties for iOS store apps.
|
|
30877
31200
|
*/
|
|
30878
31201
|
@entity model iosStoreApp extends mobileApp {
|
|
31202
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
30879
31203
|
/**
|
|
30880
31204
|
* The iOS architecture for which this app can run on.
|
|
30881
31205
|
*/
|
|
@@ -31043,6 +31367,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31043
31367
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
31044
31368
|
*/
|
|
31045
31369
|
@entity model iosVppApp extends mobileApp {
|
|
31370
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
31046
31371
|
/**
|
|
31047
31372
|
* The applicable iOS Device Type.
|
|
31048
31373
|
*/
|
|
@@ -32695,6 +33020,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32695
33020
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
32696
33021
|
*/
|
|
32697
33022
|
@entity model macOsVppApp extends mobileApp {
|
|
33023
|
+
/**
|
|
33024
|
+
* 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.
|
|
33025
|
+
*/
|
|
33026
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
32698
33027
|
/**
|
|
32699
33028
|
* The store URL.
|
|
32700
33029
|
*/
|
|
@@ -32833,6 +33162,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32833
33162
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
32834
33163
|
*/
|
|
32835
33164
|
ssid: string;
|
|
33165
|
+
/**
|
|
33166
|
+
* 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.
|
|
33167
|
+
*/
|
|
33168
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
32836
33169
|
/**
|
|
32837
33170
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
32838
33171
|
*/
|
|
@@ -33855,6 +34188,8 @@ namespace reference.`microsoft.graph` {
|
|
|
33855
34188
|
/**
|
|
33856
34189
|
* Security baseline states for this device.
|
|
33857
34190
|
*/
|
|
34191
|
+
|
|
34192
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
33858
34193
|
@contains securityBaselineStates: securityBaselineState[];
|
|
33859
34194
|
/**
|
|
33860
34195
|
* The primary users associated with the managed device.
|
|
@@ -35119,6 +35454,10 @@ namespace reference.`microsoft.graph` {
|
|
|
35119
35454
|
* Indicates the size of the file after encryption, in bytes.
|
|
35120
35455
|
*/
|
|
35121
35456
|
sizeEncrypted: int64;
|
|
35457
|
+
/**
|
|
35458
|
+
* 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.
|
|
35459
|
+
*/
|
|
35460
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
35122
35461
|
/**
|
|
35123
35462
|
* 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.
|
|
35124
35463
|
*/
|
|
@@ -35591,6 +35930,14 @@ namespace reference.`microsoft.graph` {
|
|
|
35591
35930
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
35592
35931
|
*/
|
|
35593
35932
|
enrolledDateTime: offsetDateTime;
|
|
35933
|
+
/**
|
|
35934
|
+
* 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.
|
|
35935
|
+
*/
|
|
35936
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
35937
|
+
/**
|
|
35938
|
+
* 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.
|
|
35939
|
+
*/
|
|
35940
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
35594
35941
|
/**
|
|
35595
35942
|
* Last connection time for the Ndes Connector
|
|
35596
35943
|
*/
|
|
@@ -37455,6 +37802,8 @@ namespace reference.`microsoft.graph` {
|
|
|
37455
37802
|
/**
|
|
37456
37803
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
37457
37804
|
*/
|
|
37805
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37806
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37458
37807
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
37459
37808
|
/**
|
|
37460
37809
|
* The category name
|
|
@@ -37465,6 +37814,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37465
37814
|
/**
|
|
37466
37815
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
37467
37816
|
*/
|
|
37817
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37468
37818
|
@entity model securityBaselineDeviceState extends entity {
|
|
37469
37819
|
/**
|
|
37470
37820
|
* Display name of the device
|
|
@@ -37491,6 +37841,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37491
37841
|
/**
|
|
37492
37842
|
* The security baseline compliance state of a setting for a device
|
|
37493
37843
|
*/
|
|
37844
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37494
37845
|
@entity model securityBaselineSettingState extends entity {
|
|
37495
37846
|
/**
|
|
37496
37847
|
* The policies that contribute to this setting instance
|
|
@@ -37529,6 +37880,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37529
37880
|
/**
|
|
37530
37881
|
* Security baseline state for a device.
|
|
37531
37882
|
*/
|
|
37883
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37532
37884
|
@entity model securityBaselineState extends entity {
|
|
37533
37885
|
/**
|
|
37534
37886
|
* The display name of the security baseline
|
|
@@ -37549,12 +37901,15 @@ namespace reference.`microsoft.graph` {
|
|
|
37549
37901
|
/**
|
|
37550
37902
|
* The security baseline state for different settings for a device
|
|
37551
37903
|
*/
|
|
37904
|
+
|
|
37905
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37552
37906
|
@contains settingStates: securityBaselineSettingState[];
|
|
37553
37907
|
}
|
|
37554
37908
|
|
|
37555
37909
|
/**
|
|
37556
37910
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
37557
37911
|
*/
|
|
37912
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37558
37913
|
@entity model securityBaselineStateSummary extends entity {
|
|
37559
37914
|
/**
|
|
37560
37915
|
* Number of conflict devices
|
|
@@ -37589,14 +37944,20 @@ namespace reference.`microsoft.graph` {
|
|
|
37589
37944
|
/**
|
|
37590
37945
|
* The security baseline per category device state summary
|
|
37591
37946
|
*/
|
|
37947
|
+
|
|
37948
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37592
37949
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
37593
37950
|
/**
|
|
37594
37951
|
* The security baseline device states
|
|
37595
37952
|
*/
|
|
37953
|
+
|
|
37954
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37596
37955
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
37597
37956
|
/**
|
|
37598
37957
|
* The security baseline device state summary
|
|
37599
37958
|
*/
|
|
37959
|
+
|
|
37960
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
37600
37961
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
37601
37962
|
}
|
|
37602
37963
|
|
|
@@ -46377,7 +46738,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46377
46738
|
*/
|
|
46378
46739
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
46379
46740
|
/**
|
|
46380
|
-
*
|
|
46741
|
+
* 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.
|
|
46742
|
+
*/
|
|
46743
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
46744
|
+
/**
|
|
46745
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46381
46746
|
*/
|
|
46382
46747
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
46383
46748
|
/**
|
|
@@ -46385,7 +46750,11 @@ namespace reference.`microsoft.graph` {
|
|
|
46385
46750
|
*/
|
|
46386
46751
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
46387
46752
|
/**
|
|
46388
|
-
*
|
|
46753
|
+
* 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.
|
|
46754
|
+
*/
|
|
46755
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
46756
|
+
/**
|
|
46757
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
46389
46758
|
*/
|
|
46390
46759
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
46391
46760
|
/**
|
|
@@ -49421,18 +49790,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49421
49790
|
*/
|
|
49422
49791
|
wpaPersonal: 4,
|
|
49423
49792
|
unknownFutureValue: 5,
|
|
49424
|
-
/**
|
|
49425
|
-
* 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.
|
|
49426
|
-
*/
|
|
49427
|
-
wpa2Personal: 6,
|
|
49428
|
-
/**
|
|
49429
|
-
* 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.
|
|
49430
|
-
*/
|
|
49431
|
-
wpa3Personal: 7,
|
|
49432
|
-
/**
|
|
49433
|
-
* 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.
|
|
49434
|
-
*/
|
|
49435
|
-
wpa3Enterprise: 8,
|
|
49436
49793
|
}
|
|
49437
49794
|
|
|
49438
49795
|
/**
|
|
@@ -49607,22 +49964,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49607
49964
|
*/
|
|
49608
49965
|
wpaEnterprise: 4,
|
|
49609
49966
|
unknownFutureValue: 5,
|
|
49610
|
-
/**
|
|
49611
|
-
* 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.
|
|
49612
|
-
*/
|
|
49613
|
-
wpa2Personal: 6,
|
|
49614
|
-
/**
|
|
49615
|
-
* 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.
|
|
49616
|
-
*/
|
|
49617
|
-
wpa2Enterprise: 7,
|
|
49618
|
-
/**
|
|
49619
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49620
|
-
*/
|
|
49621
|
-
wpa3Personal: 8,
|
|
49622
|
-
/**
|
|
49623
|
-
* 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.
|
|
49624
|
-
*/
|
|
49625
|
-
wpa3Enterprise: 9,
|
|
49626
49967
|
}
|
|
49627
49968
|
|
|
49628
49969
|
/**
|
|
@@ -50998,6 +51339,13 @@ namespace reference.`microsoft.graph` {
|
|
|
50998
51339
|
unknownFutureValue: 8,
|
|
50999
51340
|
}
|
|
51000
51341
|
|
|
51342
|
+
enum chatMessageBodyContentType {
|
|
51343
|
+
text: 0,
|
|
51344
|
+
html: 1,
|
|
51345
|
+
markdown: 2,
|
|
51346
|
+
unknownFutureValue: 3,
|
|
51347
|
+
}
|
|
51348
|
+
|
|
51001
51349
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
51002
51350
|
enum chatMessageImportance {
|
|
51003
51351
|
normal: 0,
|
|
@@ -51824,6 +52172,29 @@ namespace reference.`microsoft.graph` {
|
|
|
51824
52172
|
applicationProxy: 0,
|
|
51825
52173
|
}
|
|
51826
52174
|
|
|
52175
|
+
/**
|
|
52176
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
52177
|
+
*/
|
|
52178
|
+
enum connectorHealthCheckMetricName {
|
|
52179
|
+
/**
|
|
52180
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
52181
|
+
*/
|
|
52182
|
+
caConnectivity: 0,
|
|
52183
|
+
/**
|
|
52184
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
52185
|
+
*/
|
|
52186
|
+
caIssuancePermissions: 1,
|
|
52187
|
+
/**
|
|
52188
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
52189
|
+
*/
|
|
52190
|
+
caRevocationPermissions: 2,
|
|
52191
|
+
/**
|
|
52192
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
52193
|
+
*/
|
|
52194
|
+
certificateTemplate: 3,
|
|
52195
|
+
unknownFutureValue: 4,
|
|
52196
|
+
}
|
|
52197
|
+
|
|
51827
52198
|
/**
|
|
51828
52199
|
* Connector health state for connector status
|
|
51829
52200
|
*/
|
|
@@ -52065,6 +52436,44 @@ namespace reference.`microsoft.graph` {
|
|
|
52065
52436
|
saturday: 6,
|
|
52066
52437
|
}
|
|
52067
52438
|
|
|
52439
|
+
/**
|
|
52440
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
52441
|
+
*/
|
|
52442
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
52443
|
+
/**
|
|
52444
|
+
* The device downloads apps of any size using a cellular network.
|
|
52445
|
+
*/
|
|
52446
|
+
alwaysOn: 0,
|
|
52447
|
+
/**
|
|
52448
|
+
* 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.
|
|
52449
|
+
*/
|
|
52450
|
+
alwaysOff: 1,
|
|
52451
|
+
/**
|
|
52452
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
52453
|
+
*/
|
|
52454
|
+
storeSettings: 2,
|
|
52455
|
+
unknownFutureValue: 3,
|
|
52456
|
+
}
|
|
52457
|
+
|
|
52458
|
+
/**
|
|
52459
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
52460
|
+
*/
|
|
52461
|
+
enum ddmAppAutomaticAppUpdates {
|
|
52462
|
+
/**
|
|
52463
|
+
* The device automatically updates the app to the latest version.
|
|
52464
|
+
*/
|
|
52465
|
+
alwaysOn: 0,
|
|
52466
|
+
/**
|
|
52467
|
+
* The device never automatically updates the app.
|
|
52468
|
+
*/
|
|
52469
|
+
alwaysOff: 1,
|
|
52470
|
+
/**
|
|
52471
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
52472
|
+
*/
|
|
52473
|
+
storeSettings: 2,
|
|
52474
|
+
unknownFutureValue: 3,
|
|
52475
|
+
}
|
|
52476
|
+
|
|
52068
52477
|
@graphFlags
|
|
52069
52478
|
enum decisionItemPrincipalResourceMembershipType {
|
|
52070
52479
|
direct: 1,
|
|
@@ -54183,6 +54592,10 @@ namespace reference.`microsoft.graph` {
|
|
|
54183
54592
|
* Indicates the settings that can be deployed through the Android channel.
|
|
54184
54593
|
*/
|
|
54185
54594
|
android: 65536,
|
|
54595
|
+
/**
|
|
54596
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
54597
|
+
*/
|
|
54598
|
+
intuneOpenExtensibility: 131072,
|
|
54186
54599
|
}
|
|
54187
54600
|
|
|
54188
54601
|
/**
|
|
@@ -56461,6 +56874,176 @@ namespace reference.`microsoft.graph` {
|
|
|
56461
56874
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
56462
56875
|
}
|
|
56463
56876
|
|
|
56877
|
+
/**
|
|
56878
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
56879
|
+
*/
|
|
56880
|
+
enum eSimProfileErrorDetail {
|
|
56881
|
+
/**
|
|
56882
|
+
* No error.
|
|
56883
|
+
*/
|
|
56884
|
+
none: 0,
|
|
56885
|
+
/**
|
|
56886
|
+
* The eSIM card encountered a general failure.
|
|
56887
|
+
*/
|
|
56888
|
+
cardGeneralFailure: 1,
|
|
56889
|
+
/**
|
|
56890
|
+
* The confirmation code provided was incorrect.
|
|
56891
|
+
*/
|
|
56892
|
+
confirmationCodeIncorrect: 2,
|
|
56893
|
+
/**
|
|
56894
|
+
* The confirmation code was missing.
|
|
56895
|
+
*/
|
|
56896
|
+
confirmationCodeMissing: 3,
|
|
56897
|
+
/**
|
|
56898
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
56899
|
+
*/
|
|
56900
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
56901
|
+
/**
|
|
56902
|
+
* The operation is forbidden by policy.
|
|
56903
|
+
*/
|
|
56904
|
+
forbiddenByPolicy: 5,
|
|
56905
|
+
/**
|
|
56906
|
+
* The matching ID provided was invalid.
|
|
56907
|
+
*/
|
|
56908
|
+
invalidMatchingId: 6,
|
|
56909
|
+
/**
|
|
56910
|
+
* No eligible eSIM profile was found for this device.
|
|
56911
|
+
*/
|
|
56912
|
+
noEligibleProfileForThisDevice: 7,
|
|
56913
|
+
/**
|
|
56914
|
+
* There was not enough space on the eSIM card.
|
|
56915
|
+
*/
|
|
56916
|
+
notEnoughSpaceOnCard: 8,
|
|
56917
|
+
/**
|
|
56918
|
+
* The operation was aborted.
|
|
56919
|
+
*/
|
|
56920
|
+
operationAborted: 9,
|
|
56921
|
+
/**
|
|
56922
|
+
* The eSIM profile EID did not match the device.
|
|
56923
|
+
*/
|
|
56924
|
+
profileEidMismatch: 10,
|
|
56925
|
+
/**
|
|
56926
|
+
* The eSIM profile is not available for a new binding.
|
|
56927
|
+
*/
|
|
56928
|
+
profileNotAvailableForNewBinding: 11,
|
|
56929
|
+
/**
|
|
56930
|
+
* The eSIM profile has not been released by the operator.
|
|
56931
|
+
*/
|
|
56932
|
+
profileNotReleasedByOperator: 12,
|
|
56933
|
+
/**
|
|
56934
|
+
* The remote server encountered a general failure.
|
|
56935
|
+
*/
|
|
56936
|
+
remoteServerGeneralFailure: 13,
|
|
56937
|
+
/**
|
|
56938
|
+
* The remote server was unreachable.
|
|
56939
|
+
*/
|
|
56940
|
+
remoteServerUnreachable: 14,
|
|
56941
|
+
/**
|
|
56942
|
+
* A timeout occurred while waiting for user consent.
|
|
56943
|
+
*/
|
|
56944
|
+
timeoutWaitingForUserConsent: 15,
|
|
56945
|
+
/**
|
|
56946
|
+
* The operation is prohibited by the eSIM profile class.
|
|
56947
|
+
*/
|
|
56948
|
+
operationProhibitedByProfileClass: 16,
|
|
56949
|
+
/**
|
|
56950
|
+
* The provisioning profile is not present.
|
|
56951
|
+
*/
|
|
56952
|
+
provisioningProfileNotPresent: 17,
|
|
56953
|
+
/**
|
|
56954
|
+
* There is no corresponding request for this operation.
|
|
56955
|
+
*/
|
|
56956
|
+
noCorrespondingRequest: 18,
|
|
56957
|
+
/**
|
|
56958
|
+
* A timeout occurred while waiting for a response.
|
|
56959
|
+
*/
|
|
56960
|
+
timeoutWaitingForResponse: 19,
|
|
56961
|
+
/**
|
|
56962
|
+
* The ICCID already exists on the device.
|
|
56963
|
+
*/
|
|
56964
|
+
iccidAlreadyExists: 20,
|
|
56965
|
+
/**
|
|
56966
|
+
* An error occurred while processing the eSIM profile.
|
|
56967
|
+
*/
|
|
56968
|
+
profileProcessingError: 21,
|
|
56969
|
+
/**
|
|
56970
|
+
* The remote server is not trusted.
|
|
56971
|
+
*/
|
|
56972
|
+
remoteServerNotTrusted: 22,
|
|
56973
|
+
/**
|
|
56974
|
+
* The maximum number of retries for profile download was exceeded.
|
|
56975
|
+
*/
|
|
56976
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
56977
|
+
/**
|
|
56978
|
+
* The WinHTTP name could not be resolved.
|
|
56979
|
+
*/
|
|
56980
|
+
winhttpNameNotResolved: 24,
|
|
56981
|
+
/**
|
|
56982
|
+
* The WinHTTP operation was cancelled.
|
|
56983
|
+
*/
|
|
56984
|
+
winhttpOperationCancelled: 25,
|
|
56985
|
+
/**
|
|
56986
|
+
* The status is unspecified.
|
|
56987
|
+
*/
|
|
56988
|
+
statusUnspecified: 26,
|
|
56989
|
+
/**
|
|
56990
|
+
* The operation is in progress.
|
|
56991
|
+
*/
|
|
56992
|
+
inProgress: 27,
|
|
56993
|
+
/**
|
|
56994
|
+
* The operation is pending user action.
|
|
56995
|
+
*/
|
|
56996
|
+
pendingUserAction: 28,
|
|
56997
|
+
/**
|
|
56998
|
+
* An error occurred while setup was in progress.
|
|
56999
|
+
*/
|
|
57000
|
+
errorSetupInProgress: 29,
|
|
57001
|
+
/**
|
|
57002
|
+
* The user denied the operation.
|
|
57003
|
+
*/
|
|
57004
|
+
errorUserDenied: 30,
|
|
57005
|
+
/**
|
|
57006
|
+
* An internal error occurred.
|
|
57007
|
+
*/
|
|
57008
|
+
internalError: 31,
|
|
57009
|
+
/**
|
|
57010
|
+
* The ICCID was not found.
|
|
57011
|
+
*/
|
|
57012
|
+
errorIccIdNotFound: 32,
|
|
57013
|
+
/**
|
|
57014
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
57015
|
+
*/
|
|
57016
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
57017
|
+
unknownFutureValue: 34,
|
|
57018
|
+
}
|
|
57019
|
+
|
|
57020
|
+
/**
|
|
57021
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
57022
|
+
*/
|
|
57023
|
+
enum eSimProfileState {
|
|
57024
|
+
/**
|
|
57025
|
+
* Unknown state.
|
|
57026
|
+
*/
|
|
57027
|
+
`unknown`: 0,
|
|
57028
|
+
/**
|
|
57029
|
+
* The eSIM profile is being installed.
|
|
57030
|
+
*/
|
|
57031
|
+
installing: 1,
|
|
57032
|
+
/**
|
|
57033
|
+
* The eSIM profile has been successfully installed.
|
|
57034
|
+
*/
|
|
57035
|
+
installed: 2,
|
|
57036
|
+
/**
|
|
57037
|
+
* The eSIM profile is being deleted.
|
|
57038
|
+
*/
|
|
57039
|
+
deleting: 3,
|
|
57040
|
+
/**
|
|
57041
|
+
* An error occurred while processing the eSIM profile.
|
|
57042
|
+
*/
|
|
57043
|
+
error: 4,
|
|
57044
|
+
unknownFutureValue: 5,
|
|
57045
|
+
}
|
|
57046
|
+
|
|
56464
57047
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
56465
57048
|
enum eventType {
|
|
56466
57049
|
singleInstance: 0,
|
|
@@ -59798,6 +60381,22 @@ namespace reference.`microsoft.graph` {
|
|
|
59798
60381
|
userRequestedInstall: 5,
|
|
59799
60382
|
}
|
|
59800
60383
|
|
|
60384
|
+
/**
|
|
60385
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
60386
|
+
*/
|
|
60387
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
60388
|
+
apkIsInvalid: 1,
|
|
60389
|
+
apkIsMissingSignerCertificates: 2,
|
|
60390
|
+
apkHasInvalidPackageName: 3,
|
|
60391
|
+
apkPackageNameMismatch: 4,
|
|
60392
|
+
apkHasInvalidVersionCode: 5,
|
|
60393
|
+
apkHasVersionCodeMismatch: 6,
|
|
60394
|
+
apkHasInvalidMinSdk: 7,
|
|
60395
|
+
apkMinSdkMismatch: 8,
|
|
60396
|
+
apkVersionNameMismatch: 9,
|
|
60397
|
+
unknownFutureValue: 10,
|
|
60398
|
+
}
|
|
60399
|
+
|
|
59801
60400
|
/**
|
|
59802
60401
|
* Contains properties for upload request states.
|
|
59803
60402
|
*/
|
|
@@ -60006,6 +60605,33 @@ namespace reference.`microsoft.graph` {
|
|
|
60006
60605
|
WriteOnly: 3,
|
|
60007
60606
|
}
|
|
60008
60607
|
|
|
60608
|
+
/**
|
|
60609
|
+
* The health status of an NDES connector or individual health check metric.
|
|
60610
|
+
*/
|
|
60611
|
+
enum ndesConnectorHealthStatus {
|
|
60612
|
+
/**
|
|
60613
|
+
* Health has not been evaluated yet for this connector.
|
|
60614
|
+
*/
|
|
60615
|
+
`unknown`: 0,
|
|
60616
|
+
/**
|
|
60617
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
60618
|
+
*/
|
|
60619
|
+
noActionRequired: 1,
|
|
60620
|
+
/**
|
|
60621
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
60622
|
+
*/
|
|
60623
|
+
attentionRequired: 2,
|
|
60624
|
+
/**
|
|
60625
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
60626
|
+
*/
|
|
60627
|
+
actionRequired: 3,
|
|
60628
|
+
/**
|
|
60629
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
60630
|
+
*/
|
|
60631
|
+
disconnected: 4,
|
|
60632
|
+
unknownFutureValue: 5,
|
|
60633
|
+
}
|
|
60634
|
+
|
|
60009
60635
|
/**
|
|
60010
60636
|
* The current status of the Ndes Connector.
|
|
60011
60637
|
*/
|
|
@@ -62146,6 +62772,14 @@ namespace reference.`microsoft.graph` {
|
|
|
62146
62772
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
62147
62773
|
*/
|
|
62148
62774
|
restoreManagedHomeScreen: 42,
|
|
62775
|
+
/**
|
|
62776
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
62777
|
+
*/
|
|
62778
|
+
triggerEnhancedLogCollection: 44,
|
|
62779
|
+
/**
|
|
62780
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
62781
|
+
*/
|
|
62782
|
+
cancelEnhancedLogCollection: 45,
|
|
62149
62783
|
}
|
|
62150
62784
|
|
|
62151
62785
|
/**
|
|
@@ -62182,6 +62816,25 @@ namespace reference.`microsoft.graph` {
|
|
|
62182
62816
|
enabled: 2,
|
|
62183
62817
|
}
|
|
62184
62818
|
|
|
62819
|
+
/**
|
|
62820
|
+
* Enumeration indicating the state of session recording
|
|
62821
|
+
*/
|
|
62822
|
+
enum remoteHelpRecordingState {
|
|
62823
|
+
/**
|
|
62824
|
+
* Recording is not enabled for this session.
|
|
62825
|
+
*/
|
|
62826
|
+
notEnabled: 0,
|
|
62827
|
+
/**
|
|
62828
|
+
* Recording is in progress.
|
|
62829
|
+
*/
|
|
62830
|
+
recording: 1,
|
|
62831
|
+
/**
|
|
62832
|
+
* Recording failed.
|
|
62833
|
+
*/
|
|
62834
|
+
failed: 2,
|
|
62835
|
+
unknownFutureValue: 3,
|
|
62836
|
+
}
|
|
62837
|
+
|
|
62185
62838
|
enum replyRestriction {
|
|
62186
62839
|
everyone: 0,
|
|
62187
62840
|
authorAndModerators: 1,
|
|
@@ -62443,6 +63096,10 @@ namespace reference.`microsoft.graph` {
|
|
|
62443
63096
|
* App was removed in order to install a superseding app.
|
|
62444
63097
|
*/
|
|
62445
63098
|
appRemovedBySupersedence: 3005,
|
|
63099
|
+
/**
|
|
63100
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
63101
|
+
*/
|
|
63102
|
+
dependencyAppInUse: 3006,
|
|
62446
63103
|
/**
|
|
62447
63104
|
* Application failed to uninstall. See error code property for more details.
|
|
62448
63105
|
*/
|
|
@@ -62459,6 +63116,18 @@ namespace reference.`microsoft.graph` {
|
|
|
62459
63116
|
* Application content was downloaded to the device.
|
|
62460
63117
|
*/
|
|
62461
63118
|
contentDownloaded: 5002,
|
|
63119
|
+
/**
|
|
63120
|
+
* App enforcement is pending because the app is currently in use.
|
|
63121
|
+
*/
|
|
63122
|
+
inUse: 5005,
|
|
63123
|
+
/**
|
|
63124
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
63125
|
+
*/
|
|
63126
|
+
deferred: 5006,
|
|
63127
|
+
/**
|
|
63128
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
63129
|
+
*/
|
|
63130
|
+
autoDeferred: 5007,
|
|
62462
63131
|
}
|
|
62463
63132
|
|
|
62464
63133
|
enum riskDetail {
|
|
@@ -64943,10 +65612,6 @@ namespace reference.`microsoft.graph` {
|
|
|
64943
65612
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
64944
65613
|
*/
|
|
64945
65614
|
wpa3Personal: 7,
|
|
64946
|
-
/**
|
|
64947
|
-
* 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.
|
|
64948
|
-
*/
|
|
64949
|
-
wpa3Enterprise: 8,
|
|
64950
65615
|
}
|
|
64951
65616
|
|
|
64952
65617
|
/**
|
|
@@ -65378,6 +66043,7 @@ namespace reference.`microsoft.graph` {
|
|
|
65378
66043
|
/**
|
|
65379
66044
|
* Contains rule types for Win32 LOB apps.
|
|
65380
66045
|
*/
|
|
66046
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
65381
66047
|
enum win32LobAppRuleType {
|
|
65382
66048
|
/**
|
|
65383
66049
|
* Detection rule.
|
|
@@ -65387,11 +66053,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65387
66053
|
* Requirement rule.
|
|
65388
66054
|
*/
|
|
65389
66055
|
requirement: 1,
|
|
65390
|
-
/**
|
|
65391
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65392
|
-
*/
|
|
65393
|
-
inUse: 2,
|
|
65394
|
-
unknownFutureValue: 3,
|
|
65395
66056
|
}
|
|
65396
66057
|
|
|
65397
66058
|
/**
|
|
@@ -66827,7 +67488,6 @@ namespace reference.`microsoft.graph` {
|
|
|
66827
67488
|
/**
|
|
66828
67489
|
* Data can be transferred from/to these classes of apps
|
|
66829
67490
|
*/
|
|
66830
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
66831
67491
|
enum windowsManagedAppDataTransferLevel {
|
|
66832
67492
|
/**
|
|
66833
67493
|
* All apps.
|
|
@@ -66837,6 +67497,27 @@ namespace reference.`microsoft.graph` {
|
|
|
66837
67497
|
* No apps.
|
|
66838
67498
|
*/
|
|
66839
67499
|
none: 1,
|
|
67500
|
+
/**
|
|
67501
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
67502
|
+
*/
|
|
67503
|
+
selectedApps: 2,
|
|
67504
|
+
unknownFutureValue: 3,
|
|
67505
|
+
}
|
|
67506
|
+
|
|
67507
|
+
/**
|
|
67508
|
+
* Windows MAM data transfer locations
|
|
67509
|
+
*/
|
|
67510
|
+
@graphFlags
|
|
67511
|
+
enum windowsManagedAppDataTransferLocations {
|
|
67512
|
+
/**
|
|
67513
|
+
* No locations selected.
|
|
67514
|
+
*/
|
|
67515
|
+
none: 0,
|
|
67516
|
+
/**
|
|
67517
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
67518
|
+
*/
|
|
67519
|
+
oneDriveForBusiness: 1,
|
|
67520
|
+
unknownFutureValue: 2,
|
|
66840
67521
|
}
|
|
66841
67522
|
|
|
66842
67523
|
/**
|