@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5
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 +18 -0
- package/lib/Bleu/Beta/main.tsp +2411 -55
- package/lib/Bleu/V1.0/main.tsp +2245 -40
- package/lib/Delos/Beta/main.tsp +2674 -52
- package/lib/Delos/V1.0/main.tsp +401 -20
- package/lib/Fairfax/Beta/main.tsp +1261 -74
- package/lib/Fairfax/V1.0/main.tsp +307 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +196 -0
- package/lib/Mooncake/Beta/main.tsp +858 -54
- package/lib/Mooncake/V1.0/main.tsp +173 -20
- package/lib/Prod/Beta/main.tsp +4453 -269
- package/lib/Prod/V1.0/main.tsp +1457 -26
- package/lib/USNat/Beta/main.tsp +609 -37
- package/lib/USNat/V1.0/main.tsp +609 -3
- package/lib/USSec/Beta/main.tsp +1012 -69
- package/lib/USSec/V1.0/main.tsp +912 -3
- package/package.json +2 -2
|
@@ -292,6 +292,9 @@ namespace reference.`microsoft.graph` {
|
|
|
292
292
|
value: string | null;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
@complex model allAllowedScopes extends inheritableScopes {
|
|
296
|
+
}
|
|
297
|
+
|
|
295
298
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
296
299
|
}
|
|
297
300
|
|
|
@@ -504,6 +507,7 @@ namespace reference.`microsoft.graph` {
|
|
|
504
507
|
}
|
|
505
508
|
|
|
506
509
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
510
|
+
identifierUris: identifierUriConfiguration | null;
|
|
507
511
|
}
|
|
508
512
|
|
|
509
513
|
@abstract
|
|
@@ -512,6 +516,10 @@ namespace reference.`microsoft.graph` {
|
|
|
512
516
|
|
|
513
517
|
}
|
|
514
518
|
|
|
519
|
+
@complex model appManagementPolicyActorExemptions {
|
|
520
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
521
|
+
}
|
|
522
|
+
|
|
515
523
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
516
524
|
}
|
|
517
525
|
|
|
@@ -841,6 +849,7 @@ namespace reference.`microsoft.graph` {
|
|
|
841
849
|
@complex model azureADJoinPolicy {
|
|
842
850
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
843
851
|
isAdminConfigurable: boolean | null;
|
|
852
|
+
localAdmins: localAdminSettings | null;
|
|
844
853
|
}
|
|
845
854
|
|
|
846
855
|
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
@@ -877,6 +886,9 @@ namespace reference.`microsoft.graph` {
|
|
|
877
886
|
requireEncryptionForWriteAccess: boolean;
|
|
878
887
|
}
|
|
879
888
|
|
|
889
|
+
@complex model blockAccessAction extends dlpActionInfo {
|
|
890
|
+
}
|
|
891
|
+
|
|
880
892
|
@complex model bookingCustomerInformation extends bookingCustomerInformationBase {
|
|
881
893
|
customerId: string | null;
|
|
882
894
|
customQuestionAnswers: bookingQuestionAnswer[] | null;
|
|
@@ -1661,7 +1673,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1661
1673
|
locale: string | null;
|
|
1662
1674
|
}
|
|
1663
1675
|
|
|
1676
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
1677
|
+
identifierUris: identifierUriConfiguration | null;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1664
1680
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
1681
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
1665
1682
|
}
|
|
1666
1683
|
|
|
1667
1684
|
@abstract
|
|
@@ -1714,6 +1731,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1714
1731
|
@complex model customMetadataDictionary extends Dictionary {
|
|
1715
1732
|
}
|
|
1716
1733
|
|
|
1734
|
+
@abstract
|
|
1735
|
+
@complex model customSecurityAttributeExemption {
|
|
1736
|
+
id: string;
|
|
1737
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
1741
|
+
value: string | null;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1717
1744
|
@open
|
|
1718
1745
|
@complex model customSecurityAttributeValue {
|
|
1719
1746
|
}
|
|
@@ -2362,6 +2389,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2362
2389
|
@complex model deviceRegistrationMembership {
|
|
2363
2390
|
}
|
|
2364
2391
|
|
|
2392
|
+
@complex model deviceRestrictionAction extends dlpActionInfo {
|
|
2393
|
+
message: string | null;
|
|
2394
|
+
restrictionAction: restrictionAction | null;
|
|
2395
|
+
triggers: restrictionTrigger[] | null;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2365
2398
|
@open
|
|
2366
2399
|
@complex model Dictionary {
|
|
2367
2400
|
}
|
|
@@ -2487,6 +2520,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2487
2520
|
users: string[] | null;
|
|
2488
2521
|
}
|
|
2489
2522
|
|
|
2523
|
+
@complex model enumeratedScopes extends inheritableScopes {
|
|
2524
|
+
scopes: string[];
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2490
2527
|
@abstract
|
|
2491
2528
|
@complex model eventMessageDetail {
|
|
2492
2529
|
}
|
|
@@ -2755,6 +2792,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2755
2792
|
isPicture: boolean | null;
|
|
2756
2793
|
}
|
|
2757
2794
|
|
|
2795
|
+
@complex model identifierUriConfiguration {
|
|
2796
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
2797
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
@complex model identifierUriRestriction {
|
|
2801
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
2802
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
2803
|
+
excludeSaml: boolean | null;
|
|
2804
|
+
isStateSetByMicrosoft: boolean;
|
|
2805
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
2806
|
+
state: appManagementRestrictionState;
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2758
2809
|
@open
|
|
2759
2810
|
@complex model identity {
|
|
2760
2811
|
displayName: string | null;
|
|
@@ -2838,6 +2889,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2838
2889
|
termsOfServiceUrl: string | null;
|
|
2839
2890
|
}
|
|
2840
2891
|
|
|
2892
|
+
@abstract
|
|
2893
|
+
@complex model inheritableScopes {
|
|
2894
|
+
kind: scopeCollectionKind;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2841
2897
|
@open
|
|
2842
2898
|
@complex model initiator extends identity {
|
|
2843
2899
|
initiatorType: initiatorType | null;
|
|
@@ -3335,6 +3391,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3335
3391
|
isEnabled: boolean | null;
|
|
3336
3392
|
}
|
|
3337
3393
|
|
|
3394
|
+
@complex model localAdminSettings {
|
|
3395
|
+
enableGlobalAdmins: boolean | null;
|
|
3396
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3338
3399
|
@complex model localeInfo {
|
|
3339
3400
|
displayName: string | null;
|
|
3340
3401
|
locale: string | null;
|
|
@@ -3929,6 +3990,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3929
3990
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
3930
3991
|
}
|
|
3931
3992
|
|
|
3993
|
+
@complex model noScopes extends inheritableScopes {
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
@complex model notifyUserAction extends dlpActionInfo {
|
|
3997
|
+
@computed actionLastModifiedDateTime: offsetDateTime | null;
|
|
3998
|
+
emailText: string | null;
|
|
3999
|
+
policyTip: string | null;
|
|
4000
|
+
recipients: string[] | null;
|
|
4001
|
+
}
|
|
4002
|
+
|
|
3932
4003
|
@complex model numberColumn {
|
|
3933
4004
|
decimalPlaces: string | null;
|
|
3934
4005
|
displayAs: string | null;
|
|
@@ -4237,7 +4308,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4237
4308
|
*/
|
|
4238
4309
|
privacySettingsHidden: boolean;
|
|
4239
4310
|
/**
|
|
4240
|
-
* The type of user. Possible values are administrator and standard. Default value is administrator.
|
|
4311
|
+
* The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
|
|
4241
4312
|
|
|
4242
4313
|
*/
|
|
4243
4314
|
userType: windowsUserType;
|
|
@@ -4722,6 +4793,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4722
4793
|
localizations: displayNameLocalization[] | null;
|
|
4723
4794
|
}
|
|
4724
4795
|
|
|
4796
|
+
@complex model profileSourceLocalization {
|
|
4797
|
+
displayName: string | null;
|
|
4798
|
+
languageTag: string | null;
|
|
4799
|
+
webUrl: string | null;
|
|
4800
|
+
}
|
|
4801
|
+
|
|
4725
4802
|
@abstract
|
|
4726
4803
|
@complex model prompt {
|
|
4727
4804
|
}
|
|
@@ -5045,6 +5122,14 @@ namespace reference.`microsoft.graph` {
|
|
|
5045
5122
|
@complex model restoreAction {
|
|
5046
5123
|
}
|
|
5047
5124
|
|
|
5125
|
+
@complex model restrictAccessAction extends restrictAccessActionBase {
|
|
5126
|
+
}
|
|
5127
|
+
|
|
5128
|
+
@abstract
|
|
5129
|
+
@complex model restrictAccessActionBase extends dlpActionInfo {
|
|
5130
|
+
restrictionAction: restrictionAction | null;
|
|
5131
|
+
}
|
|
5132
|
+
|
|
5048
5133
|
@complex model resultInfo {
|
|
5049
5134
|
code: int32;
|
|
5050
5135
|
message: string | null;
|
|
@@ -6265,6 +6350,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6265
6350
|
userId: string | null;
|
|
6266
6351
|
}
|
|
6267
6352
|
|
|
6353
|
+
@complex model userWorkLocation {
|
|
6354
|
+
placeId: string | null;
|
|
6355
|
+
source: workLocationSource;
|
|
6356
|
+
workLocationType: workLocationType;
|
|
6357
|
+
}
|
|
6358
|
+
|
|
6268
6359
|
@complex model verifiedDomain {
|
|
6269
6360
|
capabilities: string | null;
|
|
6270
6361
|
isDefault: boolean | null;
|
|
@@ -7432,6 +7523,28 @@ namespace reference.`microsoft.graph` {
|
|
|
7432
7523
|
@contains scopedRoleMembers: scopedRoleMembership[];
|
|
7433
7524
|
}
|
|
7434
7525
|
|
|
7526
|
+
@open
|
|
7527
|
+
@entity model agentIdentity extends servicePrincipal {
|
|
7528
|
+
agentIdentityBlueprintId: string;
|
|
7529
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7530
|
+
@references sponsors: directoryObject[];
|
|
7531
|
+
}
|
|
7532
|
+
|
|
7533
|
+
@open
|
|
7534
|
+
@entity model agentIdentityBlueprint extends application {
|
|
7535
|
+
@contains inheritablePermissions: inheritablePermission[];
|
|
7536
|
+
@references sponsors: directoryObject[];
|
|
7537
|
+
}
|
|
7538
|
+
|
|
7539
|
+
@open
|
|
7540
|
+
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
7541
|
+
@references sponsors: directoryObject[];
|
|
7542
|
+
}
|
|
7543
|
+
|
|
7544
|
+
@open
|
|
7545
|
+
@entity model agentUser extends user {
|
|
7546
|
+
}
|
|
7547
|
+
|
|
7435
7548
|
@entity model agreement extends entity {
|
|
7436
7549
|
displayName: string | null;
|
|
7437
7550
|
isPerDeviceAcceptanceRequired: boolean | null;
|
|
@@ -8224,6 +8337,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8224
8337
|
applicationTemplateId: string | null;
|
|
8225
8338
|
appRoles: appRole[];
|
|
8226
8339
|
authenticationBehaviors: authenticationBehaviors | null;
|
|
8340
|
+
createdByAppId: string | null;
|
|
8227
8341
|
@computed createdDateTime: offsetDateTime | null;
|
|
8228
8342
|
defaultRedirectUri: string | null;
|
|
8229
8343
|
description: string | null;
|
|
@@ -8233,9 +8347,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8233
8347
|
identifierUris: string[];
|
|
8234
8348
|
info: informationalUrl | null;
|
|
8235
8349
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
8350
|
+
isDisabled: boolean | null;
|
|
8236
8351
|
isFallbackPublicClient: boolean | null;
|
|
8237
8352
|
keyCredentials: keyCredential[];
|
|
8238
8353
|
logo: stream;
|
|
8354
|
+
managerApplications: guid;
|
|
8239
8355
|
notes: string | null;
|
|
8240
8356
|
oauth2RequirePostResponse: boolean;
|
|
8241
8357
|
optionalClaims: optionalClaims | null;
|
|
@@ -8326,6 +8442,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8326
8442
|
status: string | null;
|
|
8327
8443
|
}
|
|
8328
8444
|
|
|
8445
|
+
@entity model approvedClientApp extends entity {
|
|
8446
|
+
displayName: string | null;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8329
8449
|
@entity model appScope extends entity {
|
|
8330
8450
|
displayName: string | null;
|
|
8331
8451
|
type: string | null;
|
|
@@ -9016,6 +9136,8 @@ namespace reference.`microsoft.graph` {
|
|
|
9016
9136
|
operatingSystem: string | null;
|
|
9017
9137
|
osBuildNumber: string | null;
|
|
9018
9138
|
osStatus: cloudPcDeviceImageOsStatus | null;
|
|
9139
|
+
osVersionNumber: string | null;
|
|
9140
|
+
sizeInGB: int32 | null;
|
|
9019
9141
|
sourceImageResourceId: string | null;
|
|
9020
9142
|
status: cloudPcDeviceImageStatus | null;
|
|
9021
9143
|
version: string | null;
|
|
@@ -9026,6 +9148,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9026
9148
|
endDate: offsetDateTime | null;
|
|
9027
9149
|
expirationDate: offsetDateTime | null;
|
|
9028
9150
|
offerName: string | null;
|
|
9151
|
+
osVersionNumber: string | null;
|
|
9029
9152
|
publisherName: string | null;
|
|
9030
9153
|
sizeInGB: int32 | null;
|
|
9031
9154
|
skuName: string | null;
|
|
@@ -9040,11 +9163,14 @@ namespace reference.`microsoft.graph` {
|
|
|
9040
9163
|
alternateResourceUrl: string | null;
|
|
9041
9164
|
connectionType: cloudPcOnPremisesConnectionType | null;
|
|
9042
9165
|
displayName: string;
|
|
9166
|
+
healthCheckPaused: boolean | null;
|
|
9043
9167
|
healthCheckStatus: cloudPcOnPremisesConnectionStatus;
|
|
9044
9168
|
healthCheckStatusDetail: cloudPcOnPremisesConnectionStatusDetail | null;
|
|
9045
9169
|
inUse: boolean | null;
|
|
9170
|
+
inUseByCloudPc: boolean | null;
|
|
9046
9171
|
organizationalUnit: string | null;
|
|
9047
9172
|
resourceGroupId: string;
|
|
9173
|
+
scopeIds: string[] | null;
|
|
9048
9174
|
subnetId: string;
|
|
9049
9175
|
subscriptionId: string;
|
|
9050
9176
|
subscriptionName: string | null;
|
|
@@ -11421,6 +11547,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11421
11547
|
targetObjects: string[];
|
|
11422
11548
|
}
|
|
11423
11549
|
|
|
11550
|
+
@entity model externalAuthenticationMethod extends authenticationMethod {
|
|
11551
|
+
configurationId: string;
|
|
11552
|
+
displayName: string;
|
|
11553
|
+
}
|
|
11554
|
+
|
|
11424
11555
|
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
11425
11556
|
appId: string;
|
|
11426
11557
|
displayName: string;
|
|
@@ -11454,9 +11585,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11454
11585
|
attestationLevel: attestationLevel | null;
|
|
11455
11586
|
displayName: string | null;
|
|
11456
11587
|
`model`: string | null;
|
|
11588
|
+
passkeyType: passkeyType | null;
|
|
11457
11589
|
}
|
|
11458
11590
|
|
|
11459
11591
|
@entity model fido2AuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
11592
|
+
defaultPasskeyProfile: string | null;
|
|
11460
11593
|
|
|
11461
11594
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
11462
11595
|
isAttestationEnforced: boolean | null;
|
|
@@ -11465,6 +11598,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11465
11598
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
11466
11599
|
keyRestrictions: fido2KeyRestrictions | null;
|
|
11467
11600
|
@contains includeTargets: authenticationMethodTarget[];
|
|
11601
|
+
@references passkeyProfiles: passkeyProfile[];
|
|
11468
11602
|
}
|
|
11469
11603
|
|
|
11470
11604
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -11560,6 +11694,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11560
11694
|
groupTypes: string[];
|
|
11561
11695
|
hasMembersWithLicenseErrors: boolean | null;
|
|
11562
11696
|
hideFromAddressLists: boolean | null;
|
|
11697
|
+
hideFromOutlookClients: boolean | null;
|
|
11698
|
+
infoCatalogs: string[];
|
|
11563
11699
|
isArchived: boolean | null;
|
|
11564
11700
|
isAssignableToRole: boolean | null;
|
|
11565
11701
|
isManagementRestricted: boolean | null;
|
|
@@ -11571,6 +11707,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11571
11707
|
membershipRule: string | null;
|
|
11572
11708
|
membershipRuleProcessingState: string | null;
|
|
11573
11709
|
onPremisesDomainName: string | null;
|
|
11710
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
11574
11711
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
11575
11712
|
onPremisesNetBiosName: string | null;
|
|
11576
11713
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -11590,6 +11727,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11590
11727
|
uniqueName: string | null;
|
|
11591
11728
|
unseenCount: int32 | null;
|
|
11592
11729
|
visibility: string | null;
|
|
11730
|
+
welcomeMessageEnabled: boolean | null;
|
|
11593
11731
|
@contains acceptedSenders: directoryObject[];
|
|
11594
11732
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
11595
11733
|
@contains calendar: calendar | null;
|
|
@@ -11757,6 +11895,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11757
11895
|
@contains bitlocker: bitlocker | null;
|
|
11758
11896
|
}
|
|
11759
11897
|
|
|
11898
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
11899
|
+
inheritableScopes: inheritableScopes | null;
|
|
11900
|
+
@computed @key resourceAppId: string;
|
|
11901
|
+
}
|
|
11902
|
+
|
|
11760
11903
|
@entity model insightsSettings extends entity {
|
|
11761
11904
|
disabledForGroup: string | null;
|
|
11762
11905
|
isEnabledInOrganization: boolean | null;
|
|
@@ -11827,7 +11970,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11827
11970
|
*/
|
|
11828
11971
|
passcodeBlockSimple: boolean;
|
|
11829
11972
|
/**
|
|
11830
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
11973
|
+
* Number of days before the passcode expires. Starting January 2026 (Intune release version: 2601), the maximum expiration days will be limited to 730 days. Any setting above 730 days will be default to 730 days. Valid values 1 to 65535
|
|
11831
11974
|
*/
|
|
11832
11975
|
passcodeExpirationDays: int32 | null;
|
|
11833
11976
|
/**
|
|
@@ -12855,71 +12998,71 @@ namespace reference.`microsoft.graph` {
|
|
|
12855
12998
|
*/
|
|
12856
12999
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
12857
13000
|
/**
|
|
12858
|
-
*
|
|
13001
|
+
* 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.
|
|
12859
13002
|
*/
|
|
12860
13003
|
deviceThreatProtectionEnabled: boolean;
|
|
12861
13004
|
/**
|
|
12862
|
-
*
|
|
13005
|
+
* 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.
|
|
12863
13006
|
*/
|
|
12864
13007
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
12865
13008
|
/**
|
|
12866
|
-
*
|
|
13009
|
+
* 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.
|
|
12867
13010
|
*/
|
|
12868
13011
|
firewallBlockAllIncoming: boolean;
|
|
12869
13012
|
/**
|
|
12870
|
-
*
|
|
13013
|
+
* 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.
|
|
12871
13014
|
*/
|
|
12872
13015
|
firewallEnabled: boolean;
|
|
12873
13016
|
/**
|
|
12874
|
-
*
|
|
13017
|
+
* 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.
|
|
12875
13018
|
*/
|
|
12876
13019
|
firewallEnableStealthMode: boolean;
|
|
12877
13020
|
/**
|
|
12878
|
-
*
|
|
13021
|
+
* 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.
|
|
12879
13022
|
*/
|
|
12880
13023
|
osMaximumVersion: string | null;
|
|
12881
13024
|
/**
|
|
12882
|
-
*
|
|
13025
|
+
* 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.
|
|
12883
13026
|
*/
|
|
12884
13027
|
osMinimumVersion: string | null;
|
|
12885
13028
|
/**
|
|
12886
|
-
*
|
|
13029
|
+
* 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.
|
|
12887
13030
|
*/
|
|
12888
13031
|
passwordBlockSimple: boolean;
|
|
12889
13032
|
/**
|
|
12890
|
-
*
|
|
13033
|
+
* 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
|
|
12891
13034
|
*/
|
|
12892
13035
|
passwordExpirationDays: int32 | null;
|
|
12893
13036
|
/**
|
|
12894
|
-
*
|
|
13037
|
+
* 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.
|
|
12895
13038
|
*/
|
|
12896
13039
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
12897
13040
|
/**
|
|
12898
|
-
*
|
|
13041
|
+
* 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
|
|
12899
13042
|
*/
|
|
12900
13043
|
passwordMinimumLength: int32 | null;
|
|
12901
13044
|
/**
|
|
12902
|
-
*
|
|
13045
|
+
* 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.
|
|
12903
13046
|
*/
|
|
12904
13047
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
12905
13048
|
/**
|
|
12906
|
-
*
|
|
13049
|
+
* 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
|
|
12907
13050
|
*/
|
|
12908
13051
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
12909
13052
|
/**
|
|
12910
|
-
*
|
|
13053
|
+
* 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.
|
|
12911
13054
|
*/
|
|
12912
13055
|
passwordRequired: boolean;
|
|
12913
13056
|
/**
|
|
12914
|
-
*
|
|
13057
|
+
* 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.
|
|
12915
13058
|
*/
|
|
12916
13059
|
passwordRequiredType: requiredPasswordType;
|
|
12917
13060
|
/**
|
|
12918
|
-
*
|
|
13061
|
+
* 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.
|
|
12919
13062
|
*/
|
|
12920
13063
|
storageRequireEncryption: boolean;
|
|
12921
13064
|
/**
|
|
12922
|
-
*
|
|
13065
|
+
* 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.
|
|
12923
13066
|
*/
|
|
12924
13067
|
systemIntegrityProtectionEnabled: boolean;
|
|
12925
13068
|
}
|
|
@@ -14772,6 +14915,17 @@ namespace reference.`microsoft.graph` {
|
|
|
14772
14915
|
recordingInfo: recordingInfo | null;
|
|
14773
14916
|
}
|
|
14774
14917
|
|
|
14918
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
14919
|
+
allowedPasskeyProfiles: guid | null;
|
|
14920
|
+
}
|
|
14921
|
+
|
|
14922
|
+
@entity model passkeyProfile extends entity {
|
|
14923
|
+
attestationEnforcement: attestationEnforcement;
|
|
14924
|
+
keyRestrictions: fido2KeyRestrictions | null;
|
|
14925
|
+
name: string | null;
|
|
14926
|
+
passkeyTypes: passkeyTypes | null;
|
|
14927
|
+
}
|
|
14928
|
+
|
|
14775
14929
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
14776
14930
|
password: string | null;
|
|
14777
14931
|
}
|
|
@@ -14779,6 +14933,8 @@ namespace reference.`microsoft.graph` {
|
|
|
14779
14933
|
@entity model peopleAdminSettings extends entity {
|
|
14780
14934
|
@contains itemInsights: insightsSettings | null;
|
|
14781
14935
|
@contains profileCardProperties: profileCardProperty[];
|
|
14936
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
14937
|
+
@contains profileSources: profileSource[];
|
|
14782
14938
|
@contains pronouns: pronounsSettings | null;
|
|
14783
14939
|
}
|
|
14784
14940
|
|
|
@@ -15008,6 +15164,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15008
15164
|
activity: string | null;
|
|
15009
15165
|
availability: string | null;
|
|
15010
15166
|
statusMessage: presenceStatusMessage | null;
|
|
15167
|
+
workLocation: userWorkLocation | null;
|
|
15011
15168
|
}
|
|
15012
15169
|
|
|
15013
15170
|
@entity model print extends MsGraph.SharedModels.entity {
|
|
@@ -15242,6 +15399,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15242
15399
|
@entity model profileCardProperty extends entity {
|
|
15243
15400
|
annotations: profileCardAnnotation[] | null;
|
|
15244
15401
|
directoryPropertyName: string | null;
|
|
15402
|
+
isVisible: boolean;
|
|
15245
15403
|
}
|
|
15246
15404
|
|
|
15247
15405
|
@entity model profilePhoto extends entity {
|
|
@@ -15249,6 +15407,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15249
15407
|
width: int32 | null;
|
|
15250
15408
|
}
|
|
15251
15409
|
|
|
15410
|
+
@entity model profilePropertySetting extends entity {
|
|
15411
|
+
displayName: string | null;
|
|
15412
|
+
name: string | null;
|
|
15413
|
+
prioritizedSourceUrls: string[];
|
|
15414
|
+
}
|
|
15415
|
+
|
|
15416
|
+
@entity model profileSource extends entity {
|
|
15417
|
+
displayName: string | null;
|
|
15418
|
+
kind: string | null;
|
|
15419
|
+
localizations: profileSourceLocalization[];
|
|
15420
|
+
sourceId: string | null;
|
|
15421
|
+
webUrl: string | null;
|
|
15422
|
+
}
|
|
15423
|
+
|
|
15252
15424
|
@entity model pronounsSettings extends entity {
|
|
15253
15425
|
isEnabledInOrganization: boolean;
|
|
15254
15426
|
}
|
|
@@ -15348,6 +15520,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15348
15520
|
|
|
15349
15521
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
15350
15522
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
15523
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
15351
15524
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
15352
15525
|
}
|
|
15353
15526
|
|
|
@@ -15675,12 +15848,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15675
15848
|
appOwnerOrganizationId: guid | null;
|
|
15676
15849
|
appRoleAssignmentRequired: boolean;
|
|
15677
15850
|
appRoles: appRole[];
|
|
15851
|
+
createdByAppId: string | null;
|
|
15678
15852
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
15679
15853
|
description: string | null;
|
|
15680
15854
|
disabledByMicrosoftStatus: string | null;
|
|
15681
15855
|
displayName: string | null;
|
|
15682
15856
|
homepage: string | null;
|
|
15683
15857
|
info: informationalUrl | null;
|
|
15858
|
+
isDisabled: boolean | null;
|
|
15684
15859
|
keyCredentials: keyCredential[];
|
|
15685
15860
|
loginUrl: string | null;
|
|
15686
15861
|
logoutUrl: string | null;
|
|
@@ -16802,6 +16977,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16802
16977
|
givenName: string | null;
|
|
16803
16978
|
hireDate: offsetDateTime;
|
|
16804
16979
|
identities: objectIdentity[] | null;
|
|
16980
|
+
identityParentId: string | null;
|
|
16805
16981
|
imAddresses: string[] | null;
|
|
16806
16982
|
interests: string[] | null;
|
|
16807
16983
|
isManagementRestricted: boolean | null;
|
|
@@ -19625,7 +19801,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19625
19801
|
*/
|
|
19626
19802
|
preprovisioningAllowed: boolean | null;
|
|
19627
19803
|
/**
|
|
19628
|
-
* List of role scope tags for the deployment profile.
|
|
19804
|
+
* List of role scope tags for the deployment profile.
|
|
19629
19805
|
*/
|
|
19630
19806
|
roleScopeTagIds: string[] | null;
|
|
19631
19807
|
/**
|
|
@@ -20247,6 +20423,10 @@ namespace reference.`microsoft.graph` {
|
|
|
20247
20423
|
* Current anti malware version
|
|
20248
20424
|
*/
|
|
20249
20425
|
antiMalwareVersion: string | null;
|
|
20426
|
+
/**
|
|
20427
|
+
* When TRUE indicates the Windows Defender controlled configuration feature is enabled, when FALSE indicates the Windows Defender controlled configuration feature is not enabled. Defaults to setting on client device.
|
|
20428
|
+
*/
|
|
20429
|
+
controlledConfigurationEnabled: boolean | null;
|
|
20250
20430
|
/**
|
|
20251
20431
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
20252
20432
|
*/
|
|
@@ -20963,6 +21143,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20963
21143
|
systemRemove: 9,
|
|
20964
21144
|
onBehalfAdd: 10,
|
|
20965
21145
|
unknownFutureValue: 11,
|
|
21146
|
+
approverRemove: 12,
|
|
20966
21147
|
}
|
|
20967
21148
|
|
|
20968
21149
|
enum accessPackageSubjectType {
|
|
@@ -21425,6 +21606,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21425
21606
|
unknownFutureValue: 3,
|
|
21426
21607
|
}
|
|
21427
21608
|
|
|
21609
|
+
enum appManagementRestrictionState {
|
|
21610
|
+
enabled: 1,
|
|
21611
|
+
disabled: 2,
|
|
21612
|
+
unknownFutureValue: 3,
|
|
21613
|
+
}
|
|
21614
|
+
|
|
21428
21615
|
enum approvalFilterByCurrentUserOptions {
|
|
21429
21616
|
target: 0,
|
|
21430
21617
|
createdBy: 1,
|
|
@@ -21463,6 +21650,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21463
21650
|
resource: 2,
|
|
21464
21651
|
}
|
|
21465
21652
|
|
|
21653
|
+
enum attestationEnforcement {
|
|
21654
|
+
disabled: 0,
|
|
21655
|
+
registrationOnly: 1,
|
|
21656
|
+
unknownFutureValue: 2,
|
|
21657
|
+
}
|
|
21658
|
+
|
|
21466
21659
|
enum attestationLevel {
|
|
21467
21660
|
attested: 0,
|
|
21468
21661
|
notAttested: 1,
|
|
@@ -22329,6 +22522,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22329
22522
|
approvedApplication: 4,
|
|
22330
22523
|
compliantApplication: 5,
|
|
22331
22524
|
unknownFutureValue: 6,
|
|
22525
|
+
riskRemediation: 7,
|
|
22332
22526
|
}
|
|
22333
22527
|
|
|
22334
22528
|
@graphFlags
|
|
@@ -22434,6 +22628,11 @@ namespace reference.`microsoft.graph` {
|
|
|
22434
22628
|
unknownFutureValue: 6,
|
|
22435
22629
|
}
|
|
22436
22630
|
|
|
22631
|
+
enum customSecurityAttributeComparisonOperator {
|
|
22632
|
+
equals: 1,
|
|
22633
|
+
unknownFutureValue: 2,
|
|
22634
|
+
}
|
|
22635
|
+
|
|
22437
22636
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22438
22637
|
enum dayOfWeek {
|
|
22439
22638
|
sunday: 0,
|
|
@@ -24851,6 +25050,19 @@ namespace reference.`microsoft.graph` {
|
|
|
24851
25050
|
unknownFutureValue: 7,
|
|
24852
25051
|
}
|
|
24853
25052
|
|
|
25053
|
+
enum passkeyType {
|
|
25054
|
+
deviceBound: 0,
|
|
25055
|
+
synced: 1,
|
|
25056
|
+
unknownFutureValue: 2,
|
|
25057
|
+
}
|
|
25058
|
+
|
|
25059
|
+
@graphFlags
|
|
25060
|
+
enum passkeyTypes {
|
|
25061
|
+
deviceBound: 1,
|
|
25062
|
+
synced: 2,
|
|
25063
|
+
unknownFutureValue: 4,
|
|
25064
|
+
}
|
|
25065
|
+
|
|
24854
25066
|
enum permissionClassificationType {
|
|
24855
25067
|
low: 1,
|
|
24856
25068
|
medium: 2,
|
|
@@ -26874,6 +27086,24 @@ namespace reference.`microsoft.graph` {
|
|
|
26874
27086
|
notResponded: 5,
|
|
26875
27087
|
}
|
|
26876
27088
|
|
|
27089
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27090
|
+
enum restrictionAction {
|
|
27091
|
+
warn: 0,
|
|
27092
|
+
audit: 1,
|
|
27093
|
+
block: 2,
|
|
27094
|
+
}
|
|
27095
|
+
|
|
27096
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27097
|
+
enum restrictionTrigger {
|
|
27098
|
+
copyPaste: 0,
|
|
27099
|
+
copyToNetworkShare: 1,
|
|
27100
|
+
copyToRemovableMedia: 2,
|
|
27101
|
+
screenCapture: 3,
|
|
27102
|
+
print: 4,
|
|
27103
|
+
cloudEgress: 5,
|
|
27104
|
+
unallowedApps: 6,
|
|
27105
|
+
}
|
|
27106
|
+
|
|
26877
27107
|
enum riskDetail {
|
|
26878
27108
|
none: 0,
|
|
26879
27109
|
adminGeneratedTemporaryPassword: 1,
|
|
@@ -26893,6 +27123,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26893
27123
|
userChangedPasswordOnPremises: 15,
|
|
26894
27124
|
adminDismissedRiskForSignIn: 16,
|
|
26895
27125
|
adminConfirmedAccountSafe: 17,
|
|
27126
|
+
microsoftRevokedSessions: 18,
|
|
26896
27127
|
}
|
|
26897
27128
|
|
|
26898
27129
|
enum riskDetectionTimingType {
|
|
@@ -27028,6 +27259,14 @@ namespace reference.`microsoft.graph` {
|
|
|
27028
27259
|
unknownFutureValue: 10,
|
|
27029
27260
|
}
|
|
27030
27261
|
|
|
27262
|
+
enum scopeCollectionKind {
|
|
27263
|
+
allAllowed: 0,
|
|
27264
|
+
enumerated: 1,
|
|
27265
|
+
none: 2,
|
|
27266
|
+
scopeKindNotSet: 3,
|
|
27267
|
+
unknownFutureValue: 4,
|
|
27268
|
+
}
|
|
27269
|
+
|
|
27031
27270
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27032
27271
|
enum scopeOperatorMultiValuedComparisonType {
|
|
27033
27272
|
All: 0,
|
|
@@ -29331,6 +29570,22 @@ namespace reference.`microsoft.graph` {
|
|
|
29331
29570
|
failed: 3,
|
|
29332
29571
|
}
|
|
29333
29572
|
|
|
29573
|
+
enum workLocationSource {
|
|
29574
|
+
none: 0,
|
|
29575
|
+
manual: 1,
|
|
29576
|
+
scheduled: 2,
|
|
29577
|
+
automatic: 3,
|
|
29578
|
+
unknownFutureValue: 4,
|
|
29579
|
+
}
|
|
29580
|
+
|
|
29581
|
+
enum workLocationType {
|
|
29582
|
+
unspecified: 0,
|
|
29583
|
+
office: 1,
|
|
29584
|
+
remote: 2,
|
|
29585
|
+
timeOff: 3,
|
|
29586
|
+
unknownFutureValue: 4,
|
|
29587
|
+
}
|
|
29588
|
+
|
|
29334
29589
|
enum x509CertificateAffinityLevel {
|
|
29335
29590
|
low: 0,
|
|
29336
29591
|
high: 1,
|
|
@@ -30404,6 +30659,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30404
30659
|
}
|
|
30405
30660
|
|
|
30406
30661
|
}
|
|
30662
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
30407
30663
|
@publicNamespace("microsoft.graph.security")
|
|
30408
30664
|
namespace reference.`microsoft.graph.security` {
|
|
30409
30665
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -30846,6 +31102,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
30846
31102
|
processes: processEvidence[] | null;
|
|
30847
31103
|
}
|
|
30848
31104
|
|
|
31105
|
+
@complex model mergeResponse {
|
|
31106
|
+
targetIncidentId: string;
|
|
31107
|
+
}
|
|
31108
|
+
|
|
30849
31109
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
30850
31110
|
destinationAddress: ipEvidence | null;
|
|
30851
31111
|
destinationPort: int32 | null;
|
|
@@ -31049,6 +31309,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31049
31309
|
displayName: string | null;
|
|
31050
31310
|
domainName: string | null;
|
|
31051
31311
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
31312
|
+
tenantId: string | null;
|
|
31052
31313
|
userPrincipalName: string | null;
|
|
31053
31314
|
userSid: string | null;
|
|
31054
31315
|
}
|
|
@@ -31071,6 +31332,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31071
31332
|
alertPolicyId: string | null;
|
|
31072
31333
|
alertWebUrl: string | null;
|
|
31073
31334
|
assignedTo: string | null;
|
|
31335
|
+
categories: string[] | null;
|
|
31336
|
+
|
|
31337
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
31074
31338
|
category: string | null;
|
|
31075
31339
|
classification: alertClassification | null;
|
|
31076
31340
|
comments: alertComment[] | null;
|
|
@@ -31652,6 +31916,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31652
31916
|
unknownFutureValue: 3,
|
|
31653
31917
|
}
|
|
31654
31918
|
|
|
31919
|
+
@graphFlags
|
|
31920
|
+
enum correlationReason {
|
|
31921
|
+
repeatedAlertOccurrence: 1,
|
|
31922
|
+
sameGeography: 2,
|
|
31923
|
+
similarArtifacts: 4,
|
|
31924
|
+
sameTargetedAsset: 8,
|
|
31925
|
+
sameNetworkSegment: 16,
|
|
31926
|
+
eventSequence: 32,
|
|
31927
|
+
timeFrame: 64,
|
|
31928
|
+
sameThreatSource: 128,
|
|
31929
|
+
similarTTPsOrBehavior: 256,
|
|
31930
|
+
sameActor: 512,
|
|
31931
|
+
sameCampaign: 1024,
|
|
31932
|
+
sharedIndicators: 2048,
|
|
31933
|
+
sameAsset: 4096,
|
|
31934
|
+
networkProximity: 8192,
|
|
31935
|
+
eventCasualSequence: 16384,
|
|
31936
|
+
temporalProximity: 32768,
|
|
31937
|
+
lateralMovementPath: 65536,
|
|
31938
|
+
unknownFutureValue: 131072,
|
|
31939
|
+
}
|
|
31940
|
+
|
|
31655
31941
|
enum dataSourceContainerStatus {
|
|
31656
31942
|
active: 1,
|
|
31657
31943
|
released: 2,
|
|
@@ -32087,6 +32373,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
32087
32373
|
microsoftSentinel: 512,
|
|
32088
32374
|
microsoftInsiderRiskManagement: 1024,
|
|
32089
32375
|
microsoftThreatIntelligence: 2048,
|
|
32376
|
+
microsoftSecurityForAI: 4096,
|
|
32090
32377
|
}
|
|
32091
32378
|
|
|
32092
32379
|
@graphFlags
|