@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4
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 +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +2222 -51
- package/lib/Bleu/V1.0/main.tsp +2203 -51
- package/lib/Delos/Beta/main.tsp +1721 -49
- package/lib/Delos/V1.0/main.tsp +308 -20
- package/lib/Fairfax/Beta/main.tsp +704 -60
- package/lib/Fairfax/V1.0/main.tsp +304 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +195 -0
- package/lib/Mooncake/Beta/main.tsp +653 -50
- package/lib/Mooncake/V1.0/main.tsp +171 -20
- package/lib/Prod/Beta/main.tsp +3553 -216
- package/lib/Prod/V1.0/main.tsp +979 -26
- package/lib/USNat/Beta/main.tsp +301 -37
- package/lib/USNat/V1.0/main.tsp +399 -3
- package/lib/USSec/Beta/main.tsp +700 -65
- package/lib/USSec/V1.0/main.tsp +702 -3
- package/package.json +2 -2
|
@@ -32,7 +32,6 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
32
32
|
// Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
|
|
33
33
|
@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.")
|
|
34
34
|
// Metadata item DeprecatedDefinition_identityProvider was already defined with a different value.
|
|
35
|
-
@deprecatedDefinition("cloudPcReports", "<ChangeLogCategory>", "2025-09-01", "2026-12-31", "Starting from December 31, 2026, this entity type ('cloudPcReports') will be deprecated and no longer supported. Please use 'cloudPcReport' instead.")
|
|
36
35
|
@deprecatedDefinition("connectionSettings", "<ChangeLogCategory>", "2023-10-12", "2024-08-31", "Starting from August 31, 2024, connectionSettings property will no longer be supported and will be marked as deprecated. Please use onnectionSetting instead.")
|
|
37
36
|
@deprecatedDefinition("frontlineCloudPcAvailability", "<ChangeLogCategory>", "2025-07-31", "2025-10-30", "Starting from Oct 30, 2025, this property:frontlineCloudPcAvailability will be deprecated and no longer be supported. Please use the new API:retrieveFrontlineCloudPcAvailability to retrieve same details.")
|
|
38
37
|
@deprecatedDefinition("offer", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, this property will no longer be supported and will be marked as deprecated. Please use offerName instead.")
|
|
@@ -738,6 +737,16 @@ namespace reference.`microsoft.graph` {
|
|
|
738
737
|
selections: keyValuePair[] | null;
|
|
739
738
|
}
|
|
740
739
|
|
|
740
|
+
/**
|
|
741
|
+
* The request parameter for requesting Android LOB app configuration schema.
|
|
742
|
+
*/
|
|
743
|
+
@complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
744
|
+
/**
|
|
745
|
+
* The application policy ID of the Android LOB app
|
|
746
|
+
*/
|
|
747
|
+
appId: string | null;
|
|
748
|
+
}
|
|
749
|
+
|
|
741
750
|
/**
|
|
742
751
|
* Contains properties used to assign an Android Managed Store mobile app to a group.
|
|
743
752
|
*/
|
|
@@ -942,6 +951,120 @@ namespace reference.`microsoft.graph` {
|
|
|
942
951
|
resourceSpecificApplicationPermissions: resourceSpecificPermission[];
|
|
943
952
|
}
|
|
944
953
|
|
|
954
|
+
/**
|
|
955
|
+
* Boolean configuration item inside an Android application's custom configuration schema.
|
|
956
|
+
*/
|
|
957
|
+
@complex model appConfigurationSchemaItemBooleanType extends appConfigurationSchemaItemType {
|
|
958
|
+
/**
|
|
959
|
+
* Default value, if specified by the app developer
|
|
960
|
+
*/
|
|
961
|
+
defaultValue: boolean | null;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* Bundle array configuration item inside an Android application's custom configuration schema.
|
|
966
|
+
*/
|
|
967
|
+
@complex model appConfigurationSchemaItemBundleArray extends appConfigurationSchemaItemType {
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* Bundle configuration item inside an Android application's custom configuration schema.
|
|
972
|
+
*/
|
|
973
|
+
@complex model appConfigurationSchemaItemBundleType extends appConfigurationSchemaItemType {
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* Choice configuration item inside an Android application's custom configuration schema.
|
|
978
|
+
*/
|
|
979
|
+
@complex model appConfigurationSchemaItemChoiceType extends appConfigurationSchemaItemType {
|
|
980
|
+
/**
|
|
981
|
+
* Default value, if specified by the app developer
|
|
982
|
+
*/
|
|
983
|
+
defaultValue: string | null;
|
|
984
|
+
/**
|
|
985
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
986
|
+
*/
|
|
987
|
+
selections: keyValuePair[] | null;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* Hidden configuration item inside an Android application's custom configuration schema.
|
|
992
|
+
*/
|
|
993
|
+
@complex model appConfigurationSchemaItemHiddenType extends appConfigurationSchemaItemType {
|
|
994
|
+
/**
|
|
995
|
+
* Default value, if specified by the app developer
|
|
996
|
+
*/
|
|
997
|
+
defaultValue: string | null;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* Integer configuration item inside an Android application's custom configuration schema.
|
|
1002
|
+
*/
|
|
1003
|
+
@complex model appConfigurationSchemaItemIntegerType extends appConfigurationSchemaItemType {
|
|
1004
|
+
/**
|
|
1005
|
+
* Default value, if specified by the app developer. Valid values 0 to 2147483647
|
|
1006
|
+
*/
|
|
1007
|
+
defaultValue: int32 | null;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
/**
|
|
1011
|
+
* Multiselect configuration item inside an Android application's custom configuration schema.
|
|
1012
|
+
*/
|
|
1013
|
+
@complex model appConfigurationSchemaItemMultiselectType extends appConfigurationSchemaItemType {
|
|
1014
|
+
/**
|
|
1015
|
+
* Default value, if specified by the app developer
|
|
1016
|
+
*/
|
|
1017
|
+
defaultValue: string[] | null;
|
|
1018
|
+
/**
|
|
1019
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
1020
|
+
*/
|
|
1021
|
+
selections: keyValuePair[] | null;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
/**
|
|
1025
|
+
* String configuration item inside an Android application's custom configuration schema.
|
|
1026
|
+
*/
|
|
1027
|
+
@complex model appConfigurationSchemaItemStringType extends appConfigurationSchemaItemType {
|
|
1028
|
+
/**
|
|
1029
|
+
* Default value, if specified by the app developer
|
|
1030
|
+
*/
|
|
1031
|
+
defaultValue: string | null;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* Single configuration item inside an Android application's configuration schema.
|
|
1036
|
+
*/
|
|
1037
|
+
@abstract
|
|
1038
|
+
@complex model appConfigurationSchemaItemType {
|
|
1039
|
+
/**
|
|
1040
|
+
* Description of what the item controls within the application
|
|
1041
|
+
*/
|
|
1042
|
+
description: string | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* Human readable name
|
|
1045
|
+
*/
|
|
1046
|
+
displayName: string | null;
|
|
1047
|
+
/**
|
|
1048
|
+
* Unique index the application uses to maintain nested schema items. Valid values 0 to 2147483647
|
|
1049
|
+
*/
|
|
1050
|
+
index: int32;
|
|
1051
|
+
/**
|
|
1052
|
+
* Index of parent schema item to track nested schema items. Valid values 0 to 2147483647
|
|
1053
|
+
*/
|
|
1054
|
+
parentIndex: int32 | null;
|
|
1055
|
+
/**
|
|
1056
|
+
* Unique key the application uses to identify the item
|
|
1057
|
+
*/
|
|
1058
|
+
schemaItemKey: string | null;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
/**
|
|
1062
|
+
* Base type for the request parameters that identifies the requested app configuration schema.
|
|
1063
|
+
*/
|
|
1064
|
+
@abstract
|
|
1065
|
+
@complex model appConfigurationSchemaRequestDetail {
|
|
1066
|
+
}
|
|
1067
|
+
|
|
945
1068
|
/**
|
|
946
1069
|
* Contains properties for App configuration setting item.
|
|
947
1070
|
*/
|
|
@@ -1115,7 +1238,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1115
1238
|
}
|
|
1116
1239
|
|
|
1117
1240
|
@complex model appManagementPolicyActorExemptions {
|
|
1118
|
-
|
|
1241
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
1119
1242
|
}
|
|
1120
1243
|
|
|
1121
1244
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -2475,6 +2598,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2475
2598
|
riskScore: string | null;
|
|
2476
2599
|
}
|
|
2477
2600
|
|
|
2601
|
+
/**
|
|
2602
|
+
* Complex type that represents usage details associated with a certification authority version. This type provides reporting data such as the number of leaf certificates issued during specific lifecycle phases.
|
|
2603
|
+
*/
|
|
2604
|
+
@complex model cloudCertificationAuthorityVersionUsage {
|
|
2605
|
+
/**
|
|
2606
|
+
* The number of leaf certificates issued by the certification authority version when it was in the staged status. Only applicable for staged certification authority versions. Nullable. Read-only.
|
|
2607
|
+
*/
|
|
2608
|
+
issuedStagedLeafCertificateCount: int32 | null;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2478
2611
|
@complex model cloudPcAgentHealthCheckDetail {
|
|
2479
2612
|
additionalDetails: keyValuePair[];
|
|
2480
2613
|
errorMessage: string | null;
|
|
@@ -2718,6 +2851,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2718
2851
|
startDateTime: offsetDateTime;
|
|
2719
2852
|
}
|
|
2720
2853
|
|
|
2854
|
+
@complex model cloudPcOnPremisesConnectionSubnetIpDetail {
|
|
2855
|
+
subnetAvailableIpCount: int32 | null;
|
|
2856
|
+
subnetAvailableIpCountLastSyncDateTime: offsetDateTime | null;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2721
2859
|
@complex model cloudPcPartnerAgentInstallResult {
|
|
2722
2860
|
errorMessage: string | null;
|
|
2723
2861
|
installStatus: cloudPcPartnerAgentInstallStatus | null;
|
|
@@ -2854,6 +2992,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2854
2992
|
}
|
|
2855
2993
|
|
|
2856
2994
|
@complex model cloudPcSupportedRegionRestrictionDetail {
|
|
2995
|
+
availabilityZoneRestricted: boolean | null;
|
|
2857
2996
|
cPURestricted: boolean | null;
|
|
2858
2997
|
gPURestricted: boolean | null;
|
|
2859
2998
|
nestedVirtualizationRestricted: boolean | null;
|
|
@@ -3344,6 +3483,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3344
3483
|
includedContainers: string[] | null;
|
|
3345
3484
|
}
|
|
3346
3485
|
|
|
3486
|
+
@complex model contentActivityMetadata extends processContentMetadataBase {
|
|
3487
|
+
enforcementResultStatus: enforcementResultStatus;
|
|
3488
|
+
recordType: auditLogRecordType;
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3347
3491
|
@complex model contentApprovalStatusColumn {
|
|
3348
3492
|
}
|
|
3349
3493
|
|
|
@@ -3754,6 +3898,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3754
3898
|
@complex model customMetadataDictionary extends Dictionary {
|
|
3755
3899
|
}
|
|
3756
3900
|
|
|
3901
|
+
@abstract
|
|
3902
|
+
@complex model customSecurityAttributeExemption {
|
|
3903
|
+
id: string;
|
|
3904
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
3908
|
+
value: string | null;
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3757
3911
|
@open
|
|
3758
3912
|
@complex model customSecurityAttributeValue {
|
|
3759
3913
|
}
|
|
@@ -4226,11 +4380,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4226
4380
|
|
|
4227
4381
|
@complex model deviceCompliancePolicyScript {
|
|
4228
4382
|
/**
|
|
4229
|
-
*
|
|
4383
|
+
* Identifier of the device compliance script used to evaluate custom compliance. When deviceCompliancePolicyScript is set, this identifies which script to run. Default is null, when set to default it is not evaluated.
|
|
4230
4384
|
*/
|
|
4231
4385
|
deviceComplianceScriptId: string | null;
|
|
4232
4386
|
/**
|
|
4233
|
-
*
|
|
4387
|
+
* 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.
|
|
4234
4388
|
*/
|
|
4235
4389
|
rulesContent: binary | null;
|
|
4236
4390
|
}
|
|
@@ -6823,6 +6977,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6823
6977
|
* The number of days after installation that forced reboot will happen.
|
|
6824
6978
|
*/
|
|
6825
6979
|
daysUntilForcedReboot: int32;
|
|
6980
|
+
/**
|
|
6981
|
+
* The unique identifier for the quality update catalog item targeted by the expedite.
|
|
6982
|
+
*/
|
|
6983
|
+
qualityUpdateCatalogItemId: string | null;
|
|
6826
6984
|
/**
|
|
6827
6985
|
* The release date to identify a quality update.
|
|
6828
6986
|
*/
|
|
@@ -7115,12 +7273,6 @@ namespace reference.`microsoft.graph` {
|
|
|
7115
7273
|
version: string | null;
|
|
7116
7274
|
}
|
|
7117
7275
|
|
|
7118
|
-
@complex model governancePermission {
|
|
7119
|
-
accessLevel: string | null;
|
|
7120
|
-
isActive: boolean | null;
|
|
7121
|
-
isEligible: boolean | null;
|
|
7122
|
-
}
|
|
7123
|
-
|
|
7124
7276
|
@complex model governancePolicy {
|
|
7125
7277
|
decisionMakerCriteria: governanceCriteria[] | null;
|
|
7126
7278
|
notificationPolicy: governanceNotificationPolicy | null;
|
|
@@ -8655,6 +8807,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8655
8807
|
usage: string | null;
|
|
8656
8808
|
}
|
|
8657
8809
|
|
|
8810
|
+
|
|
8658
8811
|
/**
|
|
8659
8812
|
* A key-value pair with a string key and an integer value.
|
|
8660
8813
|
*/
|
|
@@ -8887,6 +9040,21 @@ namespace reference.`microsoft.graph` {
|
|
|
8887
9040
|
primaryLookupColumnId: string | null;
|
|
8888
9041
|
}
|
|
8889
9042
|
|
|
9043
|
+
@complex model m365CapabilityInboundAccess {
|
|
9044
|
+
isAllowed: boolean | null;
|
|
9045
|
+
resourceScopes: m365CapabilityResourceScopes | null;
|
|
9046
|
+
}
|
|
9047
|
+
|
|
9048
|
+
@complex model m365CapabilityResourceScope {
|
|
9049
|
+
resourceId: string | null;
|
|
9050
|
+
resourceType: m365ResourceType;
|
|
9051
|
+
}
|
|
9052
|
+
|
|
9053
|
+
@complex model m365CapabilityResourceScopes {
|
|
9054
|
+
excluded: m365CapabilityResourceScope[];
|
|
9055
|
+
included: m365CapabilityResourceScope[];
|
|
9056
|
+
}
|
|
9057
|
+
|
|
8890
9058
|
/**
|
|
8891
9059
|
* The identifier for a Mac app.
|
|
8892
9060
|
*/
|
|
@@ -9763,6 +9931,16 @@ namespace reference.`microsoft.graph` {
|
|
|
9763
9931
|
msiType: msiType | null;
|
|
9764
9932
|
}
|
|
9765
9933
|
|
|
9934
|
+
/**
|
|
9935
|
+
* The request parameter for requesting Android Managed Play Store app configuration schema.
|
|
9936
|
+
*/
|
|
9937
|
+
@complex model managedStoreAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
9938
|
+
/**
|
|
9939
|
+
* The package name of the Android Managed Play Store app
|
|
9940
|
+
*/
|
|
9941
|
+
packageName: string | null;
|
|
9942
|
+
}
|
|
9943
|
+
|
|
9766
9944
|
@complex model managementCertificateWithThumbprint {
|
|
9767
9945
|
/**
|
|
9768
9946
|
* The Base 64 encoded management certificate
|
|
@@ -10863,6 +11041,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10863
11041
|
startDateTime: offsetDateTime | null;
|
|
10864
11042
|
}
|
|
10865
11043
|
|
|
11044
|
+
|
|
10866
11045
|
@complex model passwordProfile {
|
|
10867
11046
|
forceChangePasswordNextSignIn: boolean | null;
|
|
10868
11047
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -11540,6 +11719,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11540
11719
|
state: printJobProcessingState;
|
|
11541
11720
|
}
|
|
11542
11721
|
|
|
11722
|
+
@complex model printLogAnalyticsSettings {
|
|
11723
|
+
dataCollectionRuleImmutableId: string | null;
|
|
11724
|
+
logIngestionEndpoint: string | null;
|
|
11725
|
+
workspaceResourceId: string | null;
|
|
11726
|
+
}
|
|
11727
|
+
|
|
11543
11728
|
@complex model printMargin {
|
|
11544
11729
|
bottom: int32 | null;
|
|
11545
11730
|
left: int32 | null;
|
|
@@ -11652,6 +11837,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11652
11837
|
localizations: displayNameLocalization[] | null;
|
|
11653
11838
|
}
|
|
11654
11839
|
|
|
11840
|
+
@complex model profileSourceLocalization {
|
|
11841
|
+
displayName: string | null;
|
|
11842
|
+
languageTag: string | null;
|
|
11843
|
+
webUrl: string | null;
|
|
11844
|
+
}
|
|
11845
|
+
|
|
11655
11846
|
@open
|
|
11656
11847
|
@complex model programResource extends identity {
|
|
11657
11848
|
type: string | null;
|
|
@@ -15178,6 +15369,78 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
15178
15369
|
useDeviceContext: boolean;
|
|
15179
15370
|
}
|
|
15180
15371
|
|
|
15372
|
+
/**
|
|
15373
|
+
* Contains per-group deployment configuration for a windowsAutoUpdateCatalogApp. These settings control the end-user experience when the app is deployed to a specific group—including whether notifications are shown, how delivery bandwidth is used, when the app must be installed by, and how the device coordinates restarts afterward.
|
|
15374
|
+
*/
|
|
15375
|
+
@complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
15376
|
+
/**
|
|
15377
|
+
* Indicates the priority level for downloading the app content using Delivery Optimization. foreground prioritizes the download over background tasks, which may result in faster installation but higher bandwidth usage. Defaults to notConfigured (background priority) if not specified. When omitted from the request, the service applies notConfigured and the device downloads app content using normal background priority. In National Cloud environments (e.g., US Government, China), Delivery Optimization is not available; the service accepts and stores any value provided, but the device agent ignores it at runtime and delivers content via CDN using background priority regardless of the configured value. Possible values are: notConfigured, foreground, unknownFutureValue.
|
|
15378
|
+
*/
|
|
15379
|
+
deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
|
|
15380
|
+
/**
|
|
15381
|
+
* Specifies the deadline by which the app must be installed on the device. When null, the app is offered for immediate installation with no enforced deadline.
|
|
15382
|
+
*/
|
|
15383
|
+
installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
|
|
15384
|
+
/**
|
|
15385
|
+
* Indicates which notifications the Intune management extension displays to the end user during app installation and restart. Defaults to showAll if not specified. Possible values are: showAll, showReboot, hideAll, unknownFutureValue.
|
|
15386
|
+
*/
|
|
15387
|
+
notificationType: windowsAutoUpdateCatalogAppNotificationType;
|
|
15388
|
+
/**
|
|
15389
|
+
* Specifies the restart coordination behavior after the app is installed—including how long to wait before restarting, when to show a countdown, and how long the user can snooze. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting). Note: the service accepts restart settings regardless of the app's deviceRestartBehavior value; the device agent determines which settings are actually honored at runtime.
|
|
15390
|
+
*/
|
|
15391
|
+
restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
|
|
15392
|
+
}
|
|
15393
|
+
|
|
15394
|
+
/**
|
|
15395
|
+
* Describes how the app installer runs on target devices, including which account context it runs under and how the device handles restarts after installation. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
15396
|
+
*/
|
|
15397
|
+
@complex model windowsAutoUpdateCatalogAppInstallExperience {
|
|
15398
|
+
/**
|
|
15399
|
+
* Indicates how the device handles restarts after the app installation completes. This controls whether the Intune management extension initiates, suppresses, or forces a device restart based on the installer's exit code. Defaults to basedOnReturnCode if not specified. Possible values are: basedOnReturnCode, allow, suppress, force, unknownFutureValue.
|
|
15400
|
+
*/
|
|
15401
|
+
deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
|
|
15402
|
+
/**
|
|
15403
|
+
* Indicates the account context under which the app installer runs on the device. When set to system, the installer runs with elevated privileges in the SYSTEM account context. When set to user, the installer runs in the context of the currently logged-in user. Defaults to system if not specified. Possible values are: system, user.
|
|
15404
|
+
*/
|
|
15405
|
+
runAsAccount: runAsAccountType;
|
|
15406
|
+
}
|
|
15407
|
+
|
|
15408
|
+
/**
|
|
15409
|
+
* Specifies when the app should be installed on target devices. When null or is omitted from the assignment, the app is offered for immediate installation with no enforced deadline.
|
|
15410
|
+
*/
|
|
15411
|
+
@complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
|
|
15412
|
+
/**
|
|
15413
|
+
* The maximum allowed date and time by which the app must be installed on the device. After this deadline, the Intune management extension enforces installation automatically. When null, there is no enforced deadline.
|
|
15414
|
+
*/
|
|
15415
|
+
deadlineDateTime: offsetDateTime | null;
|
|
15416
|
+
/**
|
|
15417
|
+
* The time at which the app should be available for installation on the device. When null, the app is available immediately.
|
|
15418
|
+
*/
|
|
15419
|
+
startDateTime: offsetDateTime | null;
|
|
15420
|
+
/**
|
|
15421
|
+
* Indicates whether the startDateTime and deadlineDateTime values should be interpreted using the device's local time zone. When false, the values are interpreted as UTC. Defaults to false if not specified.
|
|
15422
|
+
*/
|
|
15423
|
+
useLocalTime: boolean;
|
|
15424
|
+
}
|
|
15425
|
+
|
|
15426
|
+
/**
|
|
15427
|
+
* Specifies how the device coordinates a restart after the app is installed. These settings control the grace period before a restart is initiated, when the user sees a countdown notification, and how long the user can defer the restart by snoozing. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting).
|
|
15428
|
+
*/
|
|
15429
|
+
@complex model windowsAutoUpdateCatalogAppRestartSettings {
|
|
15430
|
+
/**
|
|
15431
|
+
* The number of minutes before the scheduled restart at which a countdown notification is displayed to the user. Must be between 1 and the value of gracePeriodInMinutes. This countdown is non-dismissible and warns the user that a restart is imminent. For example, a value of 15 means the countdown appears 15 minutes before the restart.
|
|
15432
|
+
*/
|
|
15433
|
+
countdownDisplayBeforeRestartInMinutes: int32;
|
|
15434
|
+
/**
|
|
15435
|
+
* The number of minutes the device waits after app installation before initiating a restart. During this period, the user can continue working and save their documents. For example, a value of 1440 means the device waits 24 hours before restarting.
|
|
15436
|
+
*/
|
|
15437
|
+
gracePeriodInMinutes: int32;
|
|
15438
|
+
/**
|
|
15439
|
+
* The number of minutes by which the user can defer (snooze) the restart notification each time they press the snooze button. When null, the snooze option is not available and the user cannot defer the restart. For example, a value of 240 allows the user to defer the restart by 4 hours each time.
|
|
15440
|
+
*/
|
|
15441
|
+
restartNotificationSnoozeDurationInMinutes: int32 | null;
|
|
15442
|
+
}
|
|
15443
|
+
|
|
15181
15444
|
/**
|
|
15182
15445
|
* Windows Defender last scan result
|
|
15183
15446
|
*/
|
|
@@ -17323,6 +17586,24 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17323
17586
|
isActive: boolean | null;
|
|
17324
17587
|
}
|
|
17325
17588
|
|
|
17589
|
+
/**
|
|
17590
|
+
* Schema describing an Android application's custom configurations.
|
|
17591
|
+
*/
|
|
17592
|
+
@entity model androidAppConfigurationSchema extends entity {
|
|
17593
|
+
/**
|
|
17594
|
+
* UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
|
|
17595
|
+
*/
|
|
17596
|
+
exampleJson: binary | null;
|
|
17597
|
+
/**
|
|
17598
|
+
* Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
|
|
17599
|
+
*/
|
|
17600
|
+
nestedSchemaItems: appConfigurationSchemaItemType[] | null;
|
|
17601
|
+
/**
|
|
17602
|
+
* Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
|
|
17603
|
+
*/
|
|
17604
|
+
schemaItems: appConfigurationSchemaItemType[] | null;
|
|
17605
|
+
}
|
|
17606
|
+
|
|
17326
17607
|
/**
|
|
17327
17608
|
* Android certificate profile base.
|
|
17328
17609
|
*/
|
|
@@ -18542,6 +18823,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
18542
18823
|
* Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
|
|
18543
18824
|
*/
|
|
18544
18825
|
customKeyValueData: keyValuePair[] | null;
|
|
18826
|
+
/**
|
|
18827
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
18828
|
+
*/
|
|
18829
|
+
lockdownExclusionList: string[] | null;
|
|
18545
18830
|
/**
|
|
18546
18831
|
* Microsoft Tunnel site ID.
|
|
18547
18832
|
*/
|
|
@@ -20924,6 +21209,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
20924
21209
|
* Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.
|
|
20925
21210
|
*/
|
|
20926
21211
|
fingerprint: string | null;
|
|
21212
|
+
/**
|
|
21213
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
21214
|
+
*/
|
|
21215
|
+
lockdownExclusionList: string[] | null;
|
|
20927
21216
|
/**
|
|
20928
21217
|
* Microsoft Tunnel site ID.
|
|
20929
21218
|
*/
|
|
@@ -21583,9 +21872,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21583
21872
|
identifierUris: string[];
|
|
21584
21873
|
info: informationalUrl | null;
|
|
21585
21874
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
21875
|
+
isDisabled: boolean | null;
|
|
21586
21876
|
isFallbackPublicClient: boolean | null;
|
|
21587
21877
|
keyCredentials: keyCredential[];
|
|
21588
21878
|
logo: stream;
|
|
21879
|
+
managerApplications: guid;
|
|
21589
21880
|
notes: string | null;
|
|
21590
21881
|
onPremisesPublishing: onPremisesPublishing | null;
|
|
21591
21882
|
optionalClaims: optionalClaims | null;
|
|
@@ -21928,6 +22219,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21928
22219
|
requirements: strongAuthenticationRequirements | null;
|
|
21929
22220
|
signInPreferences: signInPreferences | null;
|
|
21930
22221
|
@contains emailMethods: emailAuthenticationMethod[];
|
|
22222
|
+
@contains externalAuthenticationMethods: externalAuthenticationMethod[];
|
|
21931
22223
|
@contains fido2Methods: fido2AuthenticationMethod[];
|
|
21932
22224
|
@contains methods: authenticationMethod[];
|
|
21933
22225
|
@contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
|
|
@@ -22673,7 +22965,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22673
22965
|
*/
|
|
22674
22966
|
@entity model cloudCertificationAuthority extends entity {
|
|
22675
22967
|
/**
|
|
22676
|
-
*
|
|
22968
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
|
|
22677
22969
|
*/
|
|
22678
22970
|
certificateDownloadUrl: string | null;
|
|
22679
22971
|
/**
|
|
@@ -22681,11 +22973,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22681
22973
|
*/
|
|
22682
22974
|
certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
|
|
22683
22975
|
/**
|
|
22684
|
-
*
|
|
22976
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
|
|
22685
22977
|
*/
|
|
22686
22978
|
certificateRevocationListUrl: string | null;
|
|
22687
22979
|
/**
|
|
22688
|
-
*
|
|
22980
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
|
|
22689
22981
|
*/
|
|
22690
22982
|
certificateSigningRequest: string | null;
|
|
22691
22983
|
/**
|
|
@@ -22693,7 +22985,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22693
22985
|
*/
|
|
22694
22986
|
certificationAuthorityIssuerId: string | null;
|
|
22695
22987
|
/**
|
|
22696
|
-
*
|
|
22988
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
|
|
22697
22989
|
*/
|
|
22698
22990
|
certificationAuthorityIssuerUri: string | null;
|
|
22699
22991
|
/**
|
|
@@ -22733,9 +23025,13 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22733
23025
|
*/
|
|
22734
23026
|
eTag: string | null;
|
|
22735
23027
|
extendedKeyUsages: extendedKeyUsage[] | null;
|
|
23028
|
+
/**
|
|
23029
|
+
* The geographic region where a cloud certification authority (CA) is hosted. Read-only.
|
|
23030
|
+
*/
|
|
23031
|
+
geographicRegion: string | null;
|
|
22736
23032
|
issuerCommonName: string | null;
|
|
22737
23033
|
/**
|
|
22738
|
-
*
|
|
23034
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
|
|
22739
23035
|
*/
|
|
22740
23036
|
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
22741
23037
|
/**
|
|
@@ -22747,7 +23043,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22747
23043
|
*/
|
|
22748
23044
|
localityName: string | null;
|
|
22749
23045
|
/**
|
|
22750
|
-
*
|
|
23046
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
|
|
22751
23047
|
*/
|
|
22752
23048
|
ocspResponderUri: string | null;
|
|
22753
23049
|
/**
|
|
@@ -22767,11 +23063,11 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22767
23063
|
*/
|
|
22768
23064
|
rootCertificateCommonName: string | null;
|
|
22769
23065
|
/**
|
|
22770
|
-
*
|
|
23066
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
|
|
22771
23067
|
*/
|
|
22772
23068
|
scepServerUrl: string | null;
|
|
22773
23069
|
/**
|
|
22774
|
-
*
|
|
23070
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
|
|
22775
23071
|
*/
|
|
22776
23072
|
serialNumber: string | null;
|
|
22777
23073
|
/**
|
|
@@ -22779,15 +23075,15 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22779
23075
|
*/
|
|
22780
23076
|
stateName: string | null;
|
|
22781
23077
|
/**
|
|
22782
|
-
*
|
|
23078
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
|
|
22783
23079
|
*/
|
|
22784
23080
|
subjectName: string | null;
|
|
22785
23081
|
/**
|
|
22786
|
-
*
|
|
23082
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
|
|
22787
23083
|
*/
|
|
22788
23084
|
thumbprint: string | null;
|
|
22789
23085
|
/**
|
|
22790
|
-
*
|
|
23086
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
|
|
22791
23087
|
*/
|
|
22792
23088
|
validityEndDateTime: offsetDateTime | null;
|
|
22793
23089
|
/**
|
|
@@ -22795,17 +23091,25 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22795
23091
|
*/
|
|
22796
23092
|
validityPeriodInYears: int32;
|
|
22797
23093
|
/**
|
|
22798
|
-
*
|
|
23094
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
|
|
22799
23095
|
*/
|
|
22800
23096
|
validityStartDateTime: offsetDateTime | null;
|
|
22801
23097
|
/**
|
|
22802
|
-
*
|
|
23098
|
+
* Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
|
|
22803
23099
|
*/
|
|
22804
23100
|
versionNumber: int32;
|
|
23101
|
+
/**
|
|
23102
|
+
* The currently active certification authority version. This navigation property provides direct access to the active version's details including certificate information, URLs, and validity periods. The active version is automatically included in the default response when retrieving a certification authority entity without requiring $expand. Read-only.
|
|
23103
|
+
*/
|
|
23104
|
+
@references activeVersion: cloudCertificationAuthorityVersion | null;
|
|
22805
23105
|
/**
|
|
22806
23106
|
* Required OData property to expose leaf certificate API.
|
|
22807
23107
|
*/
|
|
22808
23108
|
@references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
|
|
23109
|
+
/**
|
|
23110
|
+
* The collection of all certification authority versions, including active, staged, retired, and expired versions. This navigation property provides access to the full version history of the certification authority. Use $expand=versions to include this collection in the response. Read-only.
|
|
23111
|
+
*/
|
|
23112
|
+
@references versions: cloudCertificationAuthorityVersion[];
|
|
22809
23113
|
}
|
|
22810
23114
|
|
|
22811
23115
|
/**
|
|
@@ -22820,6 +23124,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22820
23124
|
* The URI of the certification authority that issued the certificate. Read-only.
|
|
22821
23125
|
*/
|
|
22822
23126
|
certificationAuthorityIssuerUri: string | null;
|
|
23127
|
+
/**
|
|
23128
|
+
* The version number of the certification authority that issued this leaf certificate. Read-only.
|
|
23129
|
+
*/
|
|
23130
|
+
certificationAuthorityVersionNumber: int32;
|
|
22823
23131
|
/**
|
|
22824
23132
|
* URL to find the relevant Certificate Revocation List for this certificate. Read-only.
|
|
22825
23133
|
*/
|
|
@@ -22885,6 +23193,88 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22885
23193
|
* The start date time of the validity period of a certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only. Supports $orderby.
|
|
22886
23194
|
*/
|
|
22887
23195
|
validityStartDateTime: offsetDateTime | null;
|
|
23196
|
+
/**
|
|
23197
|
+
* The certification authority version that issued this leaf certificate. Read-only.
|
|
23198
|
+
*/
|
|
23199
|
+
@references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
|
|
23200
|
+
}
|
|
23201
|
+
|
|
23202
|
+
/**
|
|
23203
|
+
* Entity that represents version-specific properties of a cloud certification authority.
|
|
23204
|
+
*/
|
|
23205
|
+
@entity model cloudCertificationAuthorityVersion extends entity {
|
|
23206
|
+
/**
|
|
23207
|
+
* The URL to download the certification authority certificate. Read-only.
|
|
23208
|
+
*/
|
|
23209
|
+
certificateDownloadUrl: string | null;
|
|
23210
|
+
/**
|
|
23211
|
+
* The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
|
|
23212
|
+
*/
|
|
23213
|
+
certificateRevocationListUrl: string | null;
|
|
23214
|
+
/**
|
|
23215
|
+
* The certificate signing request used to create an issuing certification authority with a root certification authority external to Microsoft Cloud PKI. The based-64 encoded certificate signing request can be downloaded through this property. After downloading the certificate signing request, it must be signed by the external root certifcation authority. Read-only.
|
|
23216
|
+
*/
|
|
23217
|
+
certificateSigningRequest: string | null;
|
|
23218
|
+
/**
|
|
23219
|
+
* The certification authority identifier. Read-only.
|
|
23220
|
+
*/
|
|
23221
|
+
certificationAuthorityId: string;
|
|
23222
|
+
/**
|
|
23223
|
+
* The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
|
|
23224
|
+
*/
|
|
23225
|
+
certificationAuthorityIssuerUri: string | null;
|
|
23226
|
+
/**
|
|
23227
|
+
* The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
|
|
23228
|
+
*/
|
|
23229
|
+
certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
|
|
23230
|
+
/**
|
|
23231
|
+
* The date and time when the certification authority version is scheduled to be decommissioned. Only applicable for staged certification authority versions. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
23232
|
+
*/
|
|
23233
|
+
decommissionDateTime: offsetDateTime | null;
|
|
23234
|
+
/**
|
|
23235
|
+
* The key platform used to store the certification authority keys. Read-only.
|
|
23236
|
+
*/
|
|
23237
|
+
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
23238
|
+
/**
|
|
23239
|
+
* Last modification date and time of this certification authority entity instance. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
23240
|
+
*/
|
|
23241
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
23242
|
+
/**
|
|
23243
|
+
* The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
|
|
23244
|
+
*/
|
|
23245
|
+
ocspResponderUri: string | null;
|
|
23246
|
+
/**
|
|
23247
|
+
* The SCEP server URL for device SCEP connections to request certificates. Read-only.
|
|
23248
|
+
*/
|
|
23249
|
+
scepServerUrl: string | null;
|
|
23250
|
+
/**
|
|
23251
|
+
* The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
|
|
23252
|
+
*/
|
|
23253
|
+
serialNumber: string | null;
|
|
23254
|
+
/**
|
|
23255
|
+
* The subject name of the certificate. The subject is the target or intended beneficiary of the security being provided, such as a company or government entity. Read-only.
|
|
23256
|
+
*/
|
|
23257
|
+
subjectName: string | null;
|
|
23258
|
+
/**
|
|
23259
|
+
* Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
|
|
23260
|
+
*/
|
|
23261
|
+
thumbprint: string | null;
|
|
23262
|
+
/**
|
|
23263
|
+
* The usage details associated with this certification authority version, including reporting data such as the number of leaf certificates issued during the staged period. Read-only.
|
|
23264
|
+
*/
|
|
23265
|
+
usage: cloudCertificationAuthorityVersionUsage | null;
|
|
23266
|
+
/**
|
|
23267
|
+
* The end date time of the validity period of a certification authority certificate. Certificates cannot be used after this date time as they are longer valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
23268
|
+
*/
|
|
23269
|
+
validityEndDateTime: offsetDateTime | null;
|
|
23270
|
+
/**
|
|
23271
|
+
* The start date time of the validity period of a certification authority certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
23272
|
+
*/
|
|
23273
|
+
validityStartDateTime: offsetDateTime | null;
|
|
23274
|
+
/**
|
|
23275
|
+
* The version number assigned to this specific certification authority version entity. Read-only.
|
|
23276
|
+
*/
|
|
23277
|
+
versionNumber: int32;
|
|
22888
23278
|
}
|
|
22889
23279
|
|
|
22890
23280
|
@entity model cloudCommunications extends MsGraph.SharedModels.entity {
|
|
@@ -22892,7 +23282,6 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22892
23282
|
@contains callRecords: reference.`microsoft.graph.callRecords`.callRecord[];
|
|
22893
23283
|
}
|
|
22894
23284
|
|
|
22895
|
-
@graphDeprecated("cloudPcReports")
|
|
22896
23285
|
@entity model cloudPC extends entity {
|
|
22897
23286
|
aadDeviceId: string | null;
|
|
22898
23287
|
allotmentDisplayName: string | null;
|
|
@@ -23130,6 +23519,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
23130
23519
|
resourceGroupId: string;
|
|
23131
23520
|
scopeIds: string[] | null;
|
|
23132
23521
|
subnetId: string;
|
|
23522
|
+
subnetPrivateIpDetail: cloudPcOnPremisesConnectionSubnetIpDetail | null;
|
|
23133
23523
|
subscriptionId: string;
|
|
23134
23524
|
subscriptionName: string | null;
|
|
23135
23525
|
|
|
@@ -23735,6 +24125,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
23735
24125
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
23736
24126
|
invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
|
|
23737
24127
|
isServiceDefault: boolean | null;
|
|
24128
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
23738
24129
|
}
|
|
23739
24130
|
|
|
23740
24131
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
@@ -23747,6 +24138,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
23747
24138
|
isServiceProvider: boolean | null;
|
|
23748
24139
|
@computed @key tenantId: string;
|
|
23749
24140
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
24141
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
24142
|
+
}
|
|
24143
|
+
|
|
24144
|
+
@entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
|
|
24145
|
+
}
|
|
24146
|
+
|
|
24147
|
+
@entity model crossTenantCalendarAvailabilityLimitedDetails extends m365CapabilityBase {
|
|
24148
|
+
}
|
|
24149
|
+
|
|
24150
|
+
@entity model crossTenantCalendarSharingFreeBusyDetail extends m365CapabilityBase {
|
|
24151
|
+
}
|
|
24152
|
+
|
|
24153
|
+
@entity model crossTenantCalendarSharingFreeBusyReviewer extends m365CapabilityBase {
|
|
24154
|
+
}
|
|
24155
|
+
|
|
24156
|
+
@entity model crossTenantCalendarSharingFreeBusySimple extends m365CapabilityBase {
|
|
23750
24157
|
}
|
|
23751
24158
|
|
|
23752
24159
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
@@ -23757,6 +24164,24 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
23757
24164
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
23758
24165
|
}
|
|
23759
24166
|
|
|
24167
|
+
@entity model crossTenantMailTipsAll extends m365CapabilityBase {
|
|
24168
|
+
}
|
|
24169
|
+
|
|
24170
|
+
@entity model crossTenantMailTipsLimited extends m365CapabilityBase {
|
|
24171
|
+
}
|
|
24172
|
+
|
|
24173
|
+
@entity model crossTenantMigration extends m365CapabilityBase {
|
|
24174
|
+
}
|
|
24175
|
+
|
|
24176
|
+
@entity model crossTenantOpenProfileCard extends m365CapabilityBase {
|
|
24177
|
+
}
|
|
24178
|
+
|
|
24179
|
+
@entity model crossTenantPlacesDeskBooking extends m365CapabilityBase {
|
|
24180
|
+
}
|
|
24181
|
+
|
|
24182
|
+
@entity model crossTenantPlacesRoomBooking extends m365CapabilityBase {
|
|
24183
|
+
}
|
|
24184
|
+
|
|
23760
24185
|
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
23761
24186
|
@entity model customAccessPackageWorkflowExtension extends customCalloutExtension {
|
|
23762
24187
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -23818,15 +24243,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
23818
24243
|
@contains allowedValues: allowedValue[];
|
|
23819
24244
|
}
|
|
23820
24245
|
|
|
23821
|
-
@abstract
|
|
23822
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
23823
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
23824
|
-
}
|
|
23825
|
-
|
|
23826
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
23827
|
-
value: string | null;
|
|
23828
|
-
}
|
|
23829
|
-
|
|
23830
24246
|
@entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
|
|
23831
24247
|
inactive1DayCount: int64 | null;
|
|
23832
24248
|
}
|
|
@@ -25441,6 +25857,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
25441
25857
|
* The timestamp of when the device compliance script was modified. This property is read-only.
|
|
25442
25858
|
*/
|
|
25443
25859
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
25860
|
+
/**
|
|
25861
|
+
* Indicates the operating system platform type that this compliance script targets.
|
|
25862
|
+
*/
|
|
25863
|
+
platform: deviceComplianceScriptPlatformType | null;
|
|
25444
25864
|
/**
|
|
25445
25865
|
* Name of the device compliance script publisher
|
|
25446
25866
|
*/
|
|
@@ -26666,6 +27086,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26666
27086
|
status: appLogUploadState;
|
|
26667
27087
|
}
|
|
26668
27088
|
|
|
27089
|
+
/**
|
|
27090
|
+
* Singleton that acts as container for a collection of Resource Access entities.
|
|
27091
|
+
*/
|
|
26669
27092
|
@entity model deviceManagement extends entity {
|
|
26670
27093
|
/**
|
|
26671
27094
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -26751,6 +27174,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
26751
27174
|
* The summary state of ATP onboarding state for this account.
|
|
26752
27175
|
*/
|
|
26753
27176
|
@contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
|
|
27177
|
+
/**
|
|
27178
|
+
* Android App Configurations Schema entity.
|
|
27179
|
+
*/
|
|
27180
|
+
@contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
|
|
26754
27181
|
/**
|
|
26755
27182
|
* Android device owner enrollment profile entities.
|
|
26756
27183
|
*/
|
|
@@ -29914,6 +30341,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
29914
30341
|
targetObjects: string[];
|
|
29915
30342
|
}
|
|
29916
30343
|
|
|
30344
|
+
@entity model externalAuthenticationMethod extends authenticationMethod {
|
|
30345
|
+
configurationId: string;
|
|
30346
|
+
displayName: string;
|
|
30347
|
+
}
|
|
30348
|
+
|
|
29917
30349
|
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
29918
30350
|
appId: string;
|
|
29919
30351
|
displayName: string;
|
|
@@ -30168,6 +30600,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30168
30600
|
groupTypes: string[];
|
|
30169
30601
|
hasMembersWithLicenseErrors: boolean | null;
|
|
30170
30602
|
hideFromAddressLists: boolean | null;
|
|
30603
|
+
hideFromOutlookClients: boolean | null;
|
|
30171
30604
|
infoCatalogs: string[];
|
|
30172
30605
|
isArchived: boolean | null;
|
|
30173
30606
|
isAssignableToRole: boolean | null;
|
|
@@ -30182,6 +30615,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30182
30615
|
membershipRuleProcessingState: string | null;
|
|
30183
30616
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
30184
30617
|
onPremisesDomainName: string | null;
|
|
30618
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
30185
30619
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
30186
30620
|
onPremisesNetBiosName: string | null;
|
|
30187
30621
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -30204,6 +30638,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30204
30638
|
unseenCount: int32 | null;
|
|
30205
30639
|
unseenMessagesCount: int32 | null;
|
|
30206
30640
|
visibility: string | null;
|
|
30641
|
+
welcomeMessageEnabled: boolean | null;
|
|
30207
30642
|
writebackConfiguration: groupWritebackConfiguration | null;
|
|
30208
30643
|
@contains acceptedSenders: directoryObject[];
|
|
30209
30644
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
@@ -31553,7 +31988,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
31553
31988
|
}
|
|
31554
31989
|
|
|
31555
31990
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
31556
|
-
inheritableScopes: inheritableScopes;
|
|
31991
|
+
inheritableScopes: inheritableScopes | null;
|
|
31557
31992
|
@computed @key resourceAppId: string;
|
|
31558
31993
|
}
|
|
31559
31994
|
|
|
@@ -33914,7 +34349,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33914
34349
|
userId: string | null;
|
|
33915
34350
|
}
|
|
33916
34351
|
|
|
33917
|
-
|
|
33918
34352
|
@entity model labelContentRight extends entity {
|
|
33919
34353
|
cid: string | null;
|
|
33920
34354
|
format: string | null;
|
|
@@ -33946,6 +34380,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33946
34380
|
|
|
33947
34381
|
@entity model list extends baseItem {
|
|
33948
34382
|
displayName: string | null;
|
|
34383
|
+
itemCount: int32 | null;
|
|
33949
34384
|
list: listInfo | null;
|
|
33950
34385
|
sharepointIds: sharepointIds | null;
|
|
33951
34386
|
system: systemFacet | null;
|
|
@@ -34014,6 +34449,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34014
34449
|
row: string | null;
|
|
34015
34450
|
}
|
|
34016
34451
|
|
|
34452
|
+
@abstract
|
|
34453
|
+
@entity model m365CapabilityBase extends MsGraph.SharedModels.entity {
|
|
34454
|
+
inboundAccess: m365CapabilityInboundAccess | null;
|
|
34455
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
34456
|
+
@computed @key name: string;
|
|
34457
|
+
}
|
|
34458
|
+
|
|
34017
34459
|
/**
|
|
34018
34460
|
* Mac OS certificate profile.
|
|
34019
34461
|
*/
|
|
@@ -34046,87 +34488,91 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34046
34488
|
*/
|
|
34047
34489
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
34048
34490
|
/**
|
|
34049
|
-
*
|
|
34491
|
+
* Specifies the Microsoft Defender for Endpoint (MDE) risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
|
|
34050
34492
|
*/
|
|
34051
34493
|
advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
34052
34494
|
/**
|
|
34053
|
-
*
|
|
34495
|
+
* Custom compliance configuration for the policy (script identifier and rules content). When set, custom compliance rules are evaluated and the device is marked noncompliant when any rule evaluates to noncompliant. When not set, no custom compliance rules are evaluated. Default is null, when set to default it is not evaluated.
|
|
34496
|
+
*/
|
|
34497
|
+
deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
|
|
34498
|
+
/**
|
|
34499
|
+
* Specifies whether Mobile Threat Defense (MTD) must be enabled. When set to true, the device is marked noncompliant if MTD isn't enabled or doesn't report a threat level. When false, threat protection level requirements aren't enforced. Default is false.
|
|
34054
34500
|
*/
|
|
34055
34501
|
deviceThreatProtectionEnabled: boolean;
|
|
34056
34502
|
/**
|
|
34057
|
-
*
|
|
34503
|
+
* Specifies the Mobile Threat Defense risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
|
|
34058
34504
|
*/
|
|
34059
34505
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
34060
34506
|
/**
|
|
34061
|
-
*
|
|
34507
|
+
* Specifies whether Block all incoming connections must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
34062
34508
|
*/
|
|
34063
34509
|
firewallBlockAllIncoming: boolean;
|
|
34064
34510
|
/**
|
|
34065
|
-
*
|
|
34511
|
+
* Specifies whether the macOS application firewall must be enabled. When set to true, the device is marked noncompliant if the firewall is disabled. Default is false.
|
|
34066
34512
|
*/
|
|
34067
34513
|
firewallEnabled: boolean;
|
|
34068
34514
|
/**
|
|
34069
|
-
*
|
|
34515
|
+
* Specifies whether Enable stealth mode must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
34070
34516
|
*/
|
|
34071
34517
|
firewallEnableStealthMode: boolean;
|
|
34072
34518
|
/**
|
|
34073
|
-
* System
|
|
34519
|
+
* Specifies the Gatekeeper app source policy (System Settings > Privacy & Security) that determines which app download locations are allowed (for example, macAppStore or anywhere). When set to a value other than notConfigured, the device is marked noncompliant if its Gatekeeper setting allows apps from sources not permitted by this value. Default is notConfigured.
|
|
34074
34520
|
*/
|
|
34075
34521
|
gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
|
|
34076
34522
|
/**
|
|
34077
|
-
*
|
|
34523
|
+
* Specifies the maximum allowed macOS build version. When set, the device is marked noncompliant if its build version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
34078
34524
|
*/
|
|
34079
34525
|
osMaximumBuildVersion: string | null;
|
|
34080
34526
|
/**
|
|
34081
|
-
*
|
|
34527
|
+
* Specifies the maximum allowed macOS version. When set, the device is marked noncompliant if its OS version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
34082
34528
|
*/
|
|
34083
34529
|
osMaximumVersion: string | null;
|
|
34084
34530
|
/**
|
|
34085
|
-
*
|
|
34531
|
+
* Specifies the minimum allowed macOS build version. When set, the device is marked noncompliant if its build version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
34086
34532
|
*/
|
|
34087
34533
|
osMinimumBuildVersion: string | null;
|
|
34088
34534
|
/**
|
|
34089
|
-
*
|
|
34535
|
+
* Specifies the minimum allowed macOS version. When set, the device is marked noncompliant if its OS version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
34090
34536
|
*/
|
|
34091
34537
|
osMinimumVersion: string | null;
|
|
34092
34538
|
/**
|
|
34093
|
-
*
|
|
34539
|
+
* Specifies whether simple passwords such as 1111 or 1234 are allowed. When set to true, the device is marked noncompliant if it allows simple passwords. Default is false.
|
|
34094
34540
|
*/
|
|
34095
34541
|
passwordBlockSimple: boolean;
|
|
34096
34542
|
/**
|
|
34097
|
-
*
|
|
34543
|
+
* Specifies the maximum password age in days. When set, the device is marked noncompliant if the password age exceeds this value. Valid values are 1 to 65535. Default is null, when set to default it is not evaluated. Valid values 1 to 65535
|
|
34098
34544
|
*/
|
|
34099
34545
|
passwordExpirationDays: int32 | null;
|
|
34100
34546
|
/**
|
|
34101
|
-
*
|
|
34547
|
+
* Specifies the minimum number of character sets required in the password. When set, the device is marked noncompliant if the password doesn't meet this requirement. Default is null, when set to default it is not evaluated.
|
|
34102
34548
|
*/
|
|
34103
34549
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
34104
34550
|
/**
|
|
34105
|
-
*
|
|
34551
|
+
* Specifies the minimum password length. When set, the device is marked noncompliant if the password length is less than this value. Valid values are 4 to 14. Default is null, when set to default it is not evaluated. Valid values 4 to 14
|
|
34106
34552
|
*/
|
|
34107
34553
|
passwordMinimumLength: int32 | null;
|
|
34108
34554
|
/**
|
|
34109
|
-
*
|
|
34555
|
+
* Specifies the maximum minutes of inactivity before a password is required to unlock the device. When set, the device is marked noncompliant if it allows a longer inactivity period. Default is null, when set to default it is not evaluated.
|
|
34110
34556
|
*/
|
|
34111
34557
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
34112
34558
|
/**
|
|
34113
|
-
*
|
|
34559
|
+
* Specifies the number of previous passwords that can't be reused. When set, the device is marked noncompliant if it doesn't enforce this history count. Valid values are 1 to 24. Default is null, when set to default it is not evaluated. Valid values 1 to 24
|
|
34114
34560
|
*/
|
|
34115
34561
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
34116
34562
|
/**
|
|
34117
|
-
*
|
|
34563
|
+
* Specifies whether a device password is required. When set to true, the device is marked noncompliant if a password isn't configured. Default is false.
|
|
34118
34564
|
*/
|
|
34119
34565
|
passwordRequired: boolean;
|
|
34120
34566
|
/**
|
|
34121
|
-
*
|
|
34567
|
+
* Specifies the required password type (for example, deviceDefault or alphanumeric). When set to a value other than deviceDefault, the device is marked noncompliant if the password type doesn't match. Default is deviceDefault.
|
|
34122
34568
|
*/
|
|
34123
34569
|
passwordRequiredType: requiredPasswordType;
|
|
34124
34570
|
/**
|
|
34125
|
-
*
|
|
34571
|
+
* Specifies whether storage encryption is required on macOS devices. When set to true, the device is marked noncompliant if storage isn't encrypted. Default is false.
|
|
34126
34572
|
*/
|
|
34127
34573
|
storageRequireEncryption: boolean;
|
|
34128
34574
|
/**
|
|
34129
|
-
*
|
|
34575
|
+
* Specifies whether System Integrity Protection must be enabled. When set to true, the device is marked noncompliant if System Integrity Protection is disabled. Default is false.
|
|
34130
34576
|
*/
|
|
34131
34577
|
systemIntegrityProtectionEnabled: boolean;
|
|
34132
34578
|
}
|
|
@@ -38014,6 +38460,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38014
38460
|
* When TRUE, indicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for Android devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
|
|
38015
38461
|
*/
|
|
38016
38462
|
androidMobileApplicationManagementEnabled: boolean;
|
|
38463
|
+
/**
|
|
38464
|
+
* When TRUE, indicates that the Mobile Threat Defense partner is granted the Mobile Threat Defense role on enrolled Android Corporate Owned Business Only and Corporate Owned Personally Enabled devices. When FALSE, indicates that the Mobile Threat Defense partner is not granted the Mobile Threat Defense role. Default value is FALSE.
|
|
38465
|
+
*/
|
|
38466
|
+
grantMobileThreatDefensePartnerRole: boolean;
|
|
38017
38467
|
/**
|
|
38018
38468
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
|
|
38019
38469
|
*/
|
|
@@ -38030,6 +38480,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38030
38480
|
* DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
|
|
38031
38481
|
*/
|
|
38032
38482
|
@computed lastHeartbeatDateTime: offsetDateTime;
|
|
38483
|
+
/**
|
|
38484
|
+
* When TRUE, indicates that the Mobile Threat Defense partner will be automatically launched during Android Corporate Owned Business Only and Corporate Owned Personally Enabled device setup. When FALSE, indicates that the Mobile Threat Defense partner will not be automatically launched during setup. Default value is FALSE.
|
|
38485
|
+
*/
|
|
38486
|
+
launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
|
|
38033
38487
|
/**
|
|
38034
38488
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a Mac device compliant. When FALSE, indicates that Intune may mark a Mac device compliant prior to receiving data from the Mobile Threat Defense partner. Default value is FALSE.
|
|
38035
38489
|
*/
|
|
@@ -38632,6 +39086,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38632
39086
|
|
|
38633
39087
|
@graphDeprecated("Beta:ItemInsightsOranizationSettings")
|
|
38634
39088
|
@contains itemInsights: insightsSettings | null;
|
|
39089
|
+
@contains peopleInsights: insightsSettings | null;
|
|
38635
39090
|
}
|
|
38636
39091
|
|
|
38637
39092
|
@open
|
|
@@ -38761,7 +39216,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38761
39216
|
password: string | null;
|
|
38762
39217
|
}
|
|
38763
39218
|
|
|
38764
|
-
|
|
38765
39219
|
@entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
|
|
38766
39220
|
|
|
38767
39221
|
@graphDeprecated("CreationDateTime")
|
|
@@ -38783,7 +39237,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38783
39237
|
@entity model peopleAdminSettings extends entity {
|
|
38784
39238
|
@contains itemInsights: insightsSettings | null;
|
|
38785
39239
|
@contains namePronunciation: namePronunciationSettings | null;
|
|
39240
|
+
@contains photoUpdateSettings: photoUpdateSettings | null;
|
|
38786
39241
|
@contains profileCardProperties: profileCardProperty[];
|
|
39242
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
39243
|
+
@contains profileSources: profileSource[];
|
|
38787
39244
|
@contains pronouns: pronounsSettings | null;
|
|
38788
39245
|
}
|
|
38789
39246
|
|
|
@@ -38929,6 +39386,11 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
38929
39386
|
phoneNumber: string | null;
|
|
38930
39387
|
}
|
|
38931
39388
|
|
|
39389
|
+
@entity model photoUpdateSettings extends entity {
|
|
39390
|
+
allowedRoles: string[] | null;
|
|
39391
|
+
source: photoUpdateSource;
|
|
39392
|
+
}
|
|
39393
|
+
|
|
38932
39394
|
@entity model pinnedChatMessageInfo extends entity {
|
|
38933
39395
|
@references message: chatMessage | null;
|
|
38934
39396
|
}
|
|
@@ -39694,6 +40156,20 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
39694
40156
|
width: int32 | null;
|
|
39695
40157
|
}
|
|
39696
40158
|
|
|
40159
|
+
@entity model profilePropertySetting extends entity {
|
|
40160
|
+
displayName: string | null;
|
|
40161
|
+
name: string | null;
|
|
40162
|
+
prioritizedSourceUrls: string[] | null;
|
|
40163
|
+
}
|
|
40164
|
+
|
|
40165
|
+
@entity model profileSource extends entity {
|
|
40166
|
+
displayName: string | null;
|
|
40167
|
+
kind: string | null;
|
|
40168
|
+
localizations: profileSourceLocalization[];
|
|
40169
|
+
sourceId: string | null;
|
|
40170
|
+
webUrl: string | null;
|
|
40171
|
+
}
|
|
40172
|
+
|
|
39697
40173
|
@entity model program extends entity {
|
|
39698
40174
|
description: string;
|
|
39699
40175
|
displayName: string;
|
|
@@ -40734,6 +41210,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
40734
41210
|
errorUrl: string | null;
|
|
40735
41211
|
homepage: string | null;
|
|
40736
41212
|
info: informationalUrl | null;
|
|
41213
|
+
isDisabled: boolean | null;
|
|
40737
41214
|
keyCredentials: keyCredential[];
|
|
40738
41215
|
loginUrl: string | null;
|
|
40739
41216
|
logoutUrl: string | null;
|
|
@@ -41122,6 +41599,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41122
41599
|
azureResourceId: string | null;
|
|
41123
41600
|
clientAppUsed: string | null;
|
|
41124
41601
|
clientCredentialType: clientCredentialType | null;
|
|
41602
|
+
clientSessionId: string | null;
|
|
41125
41603
|
conditionalAccessAudiences: string[] | null;
|
|
41126
41604
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
41127
41605
|
correlationId: string | null;
|
|
@@ -41421,6 +41899,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
41421
41899
|
signInCount: int64 | null;
|
|
41422
41900
|
status: signInStatus | null;
|
|
41423
41901
|
tenantId: string | null;
|
|
41902
|
+
tokenIssuerType: tokenIssuerType;
|
|
41424
41903
|
userPrincipalName: string | null;
|
|
41425
41904
|
}
|
|
41426
41905
|
|
|
@@ -48506,6 +48985,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
48506
48985
|
* A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
|
|
48507
48986
|
*/
|
|
48508
48987
|
@entity model windowsAutoUpdateCatalogApp extends mobileApp {
|
|
48988
|
+
/**
|
|
48989
|
+
* Indicates the set of CPU architectures on which this application is allowed to be installed. When null, the app is eligible for installation on all the supported architectures. Possible values are: x86, x64, arm64, or a combination of them.
|
|
48990
|
+
*/
|
|
48991
|
+
allowedArchitectures: windowsArchitecture | null;
|
|
48992
|
+
/**
|
|
48993
|
+
* Describes how the app installer executes on the target device, including the account context (system or user) under which the installer runs and how the device handles restarts after installation completes. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
48994
|
+
*/
|
|
48995
|
+
installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
|
|
48509
48996
|
/**
|
|
48510
48997
|
* The identifier of a specific branch in a product, which is a specific subset of product functionality as defined by the publisher . This is run-time resolved to be the latest MobileAppCatalogPackage in the branch. (example:'31a4c766-f23d-8d41-4803-35e155be7389'). Read-Only
|
|
48511
48998
|
*/
|
|
@@ -54790,7 +55277,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54790
55277
|
}
|
|
54791
55278
|
|
|
54792
55279
|
/**
|
|
54793
|
-
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates
|
|
55280
|
+
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates, temporarily paused, pending signing, revoked, or expired.
|
|
54794
55281
|
*/
|
|
54795
55282
|
enum cloudCertificationAuthorityStatus {
|
|
54796
55283
|
/**
|
|
@@ -54814,6 +55301,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54814
55301
|
*/
|
|
54815
55302
|
signingPending: 4,
|
|
54816
55303
|
unknownFutureValue: 5,
|
|
55304
|
+
/**
|
|
55305
|
+
* Indicates certification authority has expired and cannot issue certificates until renewed and activated.
|
|
55306
|
+
*/
|
|
55307
|
+
expired: 6,
|
|
54817
55308
|
}
|
|
54818
55309
|
|
|
54819
55310
|
/**
|
|
@@ -54839,6 +55330,49 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54839
55330
|
unknownFutureValue: 4,
|
|
54840
55331
|
}
|
|
54841
55332
|
|
|
55333
|
+
/**
|
|
55334
|
+
* Enum type of possible certification authority version statuses. These statuses indicate the lifecycle state of a certification authority version, including whether it is currently active, staged for renewal, retired, or in other states.
|
|
55335
|
+
*/
|
|
55336
|
+
enum cloudCertificationAuthorityVersionStatus {
|
|
55337
|
+
/**
|
|
55338
|
+
* Default. Indicates certification authority version has an unknown or invalid status.
|
|
55339
|
+
*/
|
|
55340
|
+
`unknown`: 0,
|
|
55341
|
+
/**
|
|
55342
|
+
* Indicates certification authority version is active and can issue leaf certificates.
|
|
55343
|
+
*/
|
|
55344
|
+
active: 1,
|
|
55345
|
+
/**
|
|
55346
|
+
* Indicates certification authority version was created during the renewal process and is currently in the staged phase. Upon activation, it becomes the new active certification authority version.
|
|
55347
|
+
*/
|
|
55348
|
+
staged: 2,
|
|
55349
|
+
/**
|
|
55350
|
+
* Indicates certification authority version has been paused from issuing certificates. The paused state is supported only for active certification authority versions. Staged certification authority versions cannot be paused and may only be revoked.
|
|
55351
|
+
*/
|
|
55352
|
+
paused: 3,
|
|
55353
|
+
/**
|
|
55354
|
+
* Indicates certification authority version has been retired after renewal. The retired certification authority version is not expired and continues to validate certificates it previously issued.
|
|
55355
|
+
*/
|
|
55356
|
+
retired: 4,
|
|
55357
|
+
/**
|
|
55358
|
+
* Indicates certification authority version has exceeded its validity period.
|
|
55359
|
+
*/
|
|
55360
|
+
expired: 5,
|
|
55361
|
+
/**
|
|
55362
|
+
* Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
|
|
55363
|
+
*/
|
|
55364
|
+
revoked: 6,
|
|
55365
|
+
/**
|
|
55366
|
+
* Indicates certification authority version has been decommissioned. Only applicable for staged certification authority versions. Decommissioned certification authority versions cannot issue or validate leaf certificates. This is a permanent state that cannot be changed.
|
|
55367
|
+
*/
|
|
55368
|
+
decommissioned: 7,
|
|
55369
|
+
/**
|
|
55370
|
+
* Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
|
|
55371
|
+
*/
|
|
55372
|
+
signingPending: 8,
|
|
55373
|
+
unknownFutureValue: 9,
|
|
55374
|
+
}
|
|
55375
|
+
|
|
54842
55376
|
enum cloudPcAgentDiagnosticResultType {
|
|
54843
55377
|
healthy: 0,
|
|
54844
55378
|
versionOutdated: 1,
|
|
@@ -54966,7 +55500,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
54966
55500
|
available: 1,
|
|
54967
55501
|
availableWithWarning: 2,
|
|
54968
55502
|
unavailable: 3,
|
|
54969
|
-
unknownFutureValue:
|
|
55503
|
+
unknownFutureValue: 4,
|
|
55504
|
+
underServiceMaintenance: 5,
|
|
55505
|
+
inUse: 6,
|
|
54970
55506
|
}
|
|
54971
55507
|
|
|
54972
55508
|
enum cloudPcDeviceImageErrorCode {
|
|
@@ -55105,6 +55641,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
55105
55641
|
usGovernment: 13,
|
|
55106
55642
|
unknownFutureValue: 14,
|
|
55107
55643
|
mexico: 15,
|
|
55644
|
+
australiaNewZealand: 16,
|
|
55108
55645
|
}
|
|
55109
55646
|
|
|
55110
55647
|
enum cloudPcImportedSnapshotState {
|
|
@@ -55852,6 +56389,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
55852
56389
|
compliantApplication: 5,
|
|
55853
56390
|
passwordChange: 6,
|
|
55854
56391
|
unknownFutureValue: 7,
|
|
56392
|
+
riskRemediation: 8,
|
|
55855
56393
|
}
|
|
55856
56394
|
|
|
55857
56395
|
@graphFlags
|
|
@@ -57139,6 +57677,25 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
57139
57677
|
remoteLock: 10,
|
|
57140
57678
|
}
|
|
57141
57679
|
|
|
57680
|
+
/**
|
|
57681
|
+
* Indicates the platform that a device compliance script targets for evaluation.
|
|
57682
|
+
*/
|
|
57683
|
+
enum deviceComplianceScriptPlatformType {
|
|
57684
|
+
/**
|
|
57685
|
+
* Default. Indicates that the compliance script targets devices running Windows 10 and later.
|
|
57686
|
+
*/
|
|
57687
|
+
windows10: 0,
|
|
57688
|
+
/**
|
|
57689
|
+
* Indicates that the compliance script targets devices running Linux.
|
|
57690
|
+
*/
|
|
57691
|
+
linux: 1,
|
|
57692
|
+
/**
|
|
57693
|
+
* Indicates that the compliance script targets devices running macOS.
|
|
57694
|
+
*/
|
|
57695
|
+
macOS: 2,
|
|
57696
|
+
unknownFutureValue: 3,
|
|
57697
|
+
}
|
|
57698
|
+
|
|
57142
57699
|
/**
|
|
57143
57700
|
* Data types for rules.
|
|
57144
57701
|
*/
|
|
@@ -60545,6 +61102,18 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
60545
61102
|
unknownFutureValue: 4,
|
|
60546
61103
|
}
|
|
60547
61104
|
|
|
61105
|
+
enum enforcementResultStatus {
|
|
61106
|
+
success: 1,
|
|
61107
|
+
missingOrInvalidConfiguration: 2,
|
|
61108
|
+
userOverride: 3,
|
|
61109
|
+
agentFailure: 4,
|
|
61110
|
+
enforcementTimeout: 5,
|
|
61111
|
+
oSOverride: 6,
|
|
61112
|
+
processNonExistent: 7,
|
|
61113
|
+
other: 8,
|
|
61114
|
+
unknownFutureValue: 9,
|
|
61115
|
+
}
|
|
61116
|
+
|
|
60548
61117
|
/**
|
|
60549
61118
|
* Options available for enrollment flow customization
|
|
60550
61119
|
*/
|
|
@@ -62569,6 +63138,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
62569
63138
|
enabled: 1,
|
|
62570
63139
|
}
|
|
62571
63140
|
|
|
63141
|
+
enum m365ResourceType {
|
|
63142
|
+
none: 0,
|
|
63143
|
+
group: 1,
|
|
63144
|
+
user: 2,
|
|
63145
|
+
unknownFutureValue: 3,
|
|
63146
|
+
}
|
|
63147
|
+
|
|
62572
63148
|
/**
|
|
62573
63149
|
* An enum representing the possible values of Android MAC Address Randomization Mode.
|
|
62574
63150
|
*/
|
|
@@ -68042,6 +68618,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
68042
68618
|
userChangedPasswordOnPremises: 15,
|
|
68043
68619
|
adminDismissedRiskForSignIn: 16,
|
|
68044
68620
|
adminConfirmedAccountSafe: 17,
|
|
68621
|
+
microsoftRevokedSessions: 18,
|
|
68045
68622
|
}
|
|
68046
68623
|
|
|
68047
68624
|
enum riskDetectionTimingType {
|
|
@@ -71576,6 +72153,63 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
71576
72153
|
unknownFutureValue: 3,
|
|
71577
72154
|
}
|
|
71578
72155
|
|
|
72156
|
+
/**
|
|
72157
|
+
* Indicates the delivery optimization download priority level for app content. This controls whether the download uses background bandwidth (minimal impact on other network activity) or foreground bandwidth (prioritized download at the expense of other network traffic).
|
|
72158
|
+
*/
|
|
72159
|
+
enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
|
|
72160
|
+
/**
|
|
72161
|
+
* Indicates that no delivery optimization priority is configured. The download uses normal background priority, which minimizes impact on other network activity. This is the default value when the property is omitted.
|
|
72162
|
+
*/
|
|
72163
|
+
notConfigured: 0,
|
|
72164
|
+
/**
|
|
72165
|
+
* Indicates that the app content download uses foreground priority, which prioritizes the download over background network tasks. This may result in faster installation but increased network bandwidth consumption. In National Cloud environments, this value is accepted and stored but has no effect on device behavior.
|
|
72166
|
+
*/
|
|
72167
|
+
foreground: 1,
|
|
72168
|
+
unknownFutureValue: 2,
|
|
72169
|
+
}
|
|
72170
|
+
|
|
72171
|
+
/**
|
|
72172
|
+
* Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
|
|
72173
|
+
*/
|
|
72174
|
+
enum windowsAutoUpdateCatalogAppNotificationType {
|
|
72175
|
+
/**
|
|
72176
|
+
* Indicates that all notifications related to app installation and restart are displayed to the end user.
|
|
72177
|
+
*/
|
|
72178
|
+
showAll: 0,
|
|
72179
|
+
/**
|
|
72180
|
+
* Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
|
|
72181
|
+
*/
|
|
72182
|
+
showReboot: 1,
|
|
72183
|
+
/**
|
|
72184
|
+
* Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
|
|
72185
|
+
*/
|
|
72186
|
+
hideAll: 2,
|
|
72187
|
+
unknownFutureValue: 3,
|
|
72188
|
+
}
|
|
72189
|
+
|
|
72190
|
+
/**
|
|
72191
|
+
* Indicates how the device handles restarts after the app installer finishes executing. This setting, configured on the app's installExperience, determines whether the Intune management extension initiates, suppresses, or forces a restart based on the installer's exit code.
|
|
72192
|
+
*/
|
|
72193
|
+
enum windowsAutoUpdateCatalogAppRestartBehavior {
|
|
72194
|
+
/**
|
|
72195
|
+
* Indicates that the Intune management extension restarts the device only if the app installer returns an exit code that signals a reboot is required (e.g., exit code 3010).
|
|
72196
|
+
*/
|
|
72197
|
+
basedOnReturnCode: 0,
|
|
72198
|
+
/**
|
|
72199
|
+
* Indicates that the Intune management extension does not take any specific action to control restarts. If the app installer initiates a restart (e.g., an MSI with ForceReboot action), it is allowed to proceed.
|
|
72200
|
+
*/
|
|
72201
|
+
allow: 1,
|
|
72202
|
+
/**
|
|
72203
|
+
* Indicates that the Intune management extension attempts to suppress restarts initiated by the installer. For MSI-based installations, this passes the REBOOT=ReallySuppress property to msiexec. Not all installers honor suppression.
|
|
72204
|
+
*/
|
|
72205
|
+
suppress: 2,
|
|
72206
|
+
/**
|
|
72207
|
+
* Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
|
|
72208
|
+
*/
|
|
72209
|
+
force: 3,
|
|
72210
|
+
unknownFutureValue: 4,
|
|
72211
|
+
}
|
|
72212
|
+
|
|
71579
72213
|
/**
|
|
71580
72214
|
* Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
|
|
71581
72215
|
*/
|
|
@@ -74880,9 +75514,14 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
74880
75514
|
}
|
|
74881
75515
|
|
|
74882
75516
|
@entity model forwardingPolicyLink extends policyLink {
|
|
75517
|
+
priority: int64 | null;
|
|
74883
75518
|
}
|
|
74884
75519
|
|
|
74885
|
-
@entity model forwardingProfile extends
|
|
75520
|
+
@entity model forwardingProfile extends forwardingProfileBase {
|
|
75521
|
+
}
|
|
75522
|
+
|
|
75523
|
+
@abstract
|
|
75524
|
+
@entity model forwardingProfileBase extends profile {
|
|
74886
75525
|
associations: association[] | null;
|
|
74887
75526
|
priority: int32;
|
|
74888
75527
|
trafficForwardingType: trafficForwardingType;
|
|
@@ -75376,6 +76015,7 @@ namespace reference.`microsoft.graph.partner.security` {
|
|
|
75376
76015
|
}
|
|
75377
76016
|
|
|
75378
76017
|
}
|
|
76018
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
75379
76019
|
@deprecatedDefinition("azureBlobContainer", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobContainer will be deprecated on April 30, 2023.")
|
|
75380
76020
|
@deprecatedDefinition("azureBlobToken", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobToken will be deprecated on April 30, 2023.")
|
|
75381
76021
|
@deprecatedDefinition("outputFolderId", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The outputFolderId will be deprecated on April 30, 2023.")
|
|
@@ -76099,6 +76739,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
76099
76739
|
displayName: string | null;
|
|
76100
76740
|
domainName: string | null;
|
|
76101
76741
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
76742
|
+
tenantId: string | null;
|
|
76102
76743
|
userPrincipalName: string | null;
|
|
76103
76744
|
userSid: string | null;
|
|
76104
76745
|
}
|
|
@@ -76121,6 +76762,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
76121
76762
|
alertPolicyId: string | null;
|
|
76122
76763
|
alertWebUrl: string | null;
|
|
76123
76764
|
assignedTo: string | null;
|
|
76765
|
+
categories: string[] | null;
|
|
76766
|
+
|
|
76767
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
76124
76768
|
category: string | null;
|
|
76125
76769
|
classification: alertClassification | null;
|
|
76126
76770
|
comments: alertComment[] | null;
|