@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
|
@@ -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;
|
|
@@ -11590,6 +11726,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11590
11726
|
uniqueName: string | null;
|
|
11591
11727
|
unseenCount: int32 | null;
|
|
11592
11728
|
visibility: string | null;
|
|
11729
|
+
welcomeMessageEnabled: boolean | null;
|
|
11593
11730
|
@contains acceptedSenders: directoryObject[];
|
|
11594
11731
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
11595
11732
|
@contains calendar: calendar | null;
|
|
@@ -11757,6 +11894,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11757
11894
|
@contains bitlocker: bitlocker | null;
|
|
11758
11895
|
}
|
|
11759
11896
|
|
|
11897
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
11898
|
+
inheritableScopes: inheritableScopes | null;
|
|
11899
|
+
@computed @key resourceAppId: string;
|
|
11900
|
+
}
|
|
11901
|
+
|
|
11760
11902
|
@entity model insightsSettings extends entity {
|
|
11761
11903
|
disabledForGroup: string | null;
|
|
11762
11904
|
isEnabledInOrganization: boolean | null;
|
|
@@ -11827,7 +11969,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11827
11969
|
*/
|
|
11828
11970
|
passcodeBlockSimple: boolean;
|
|
11829
11971
|
/**
|
|
11830
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
11972
|
+
* 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
11973
|
*/
|
|
11832
11974
|
passcodeExpirationDays: int32 | null;
|
|
11833
11975
|
/**
|
|
@@ -12855,71 +12997,71 @@ namespace reference.`microsoft.graph` {
|
|
|
12855
12997
|
*/
|
|
12856
12998
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
12857
12999
|
/**
|
|
12858
|
-
*
|
|
13000
|
+
* 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
13001
|
*/
|
|
12860
13002
|
deviceThreatProtectionEnabled: boolean;
|
|
12861
13003
|
/**
|
|
12862
|
-
*
|
|
13004
|
+
* 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
13005
|
*/
|
|
12864
13006
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
12865
13007
|
/**
|
|
12866
|
-
*
|
|
13008
|
+
* 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
13009
|
*/
|
|
12868
13010
|
firewallBlockAllIncoming: boolean;
|
|
12869
13011
|
/**
|
|
12870
|
-
*
|
|
13012
|
+
* 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
13013
|
*/
|
|
12872
13014
|
firewallEnabled: boolean;
|
|
12873
13015
|
/**
|
|
12874
|
-
*
|
|
13016
|
+
* 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
13017
|
*/
|
|
12876
13018
|
firewallEnableStealthMode: boolean;
|
|
12877
13019
|
/**
|
|
12878
|
-
*
|
|
13020
|
+
* 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
13021
|
*/
|
|
12880
13022
|
osMaximumVersion: string | null;
|
|
12881
13023
|
/**
|
|
12882
|
-
*
|
|
13024
|
+
* 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
13025
|
*/
|
|
12884
13026
|
osMinimumVersion: string | null;
|
|
12885
13027
|
/**
|
|
12886
|
-
*
|
|
13028
|
+
* 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
13029
|
*/
|
|
12888
13030
|
passwordBlockSimple: boolean;
|
|
12889
13031
|
/**
|
|
12890
|
-
*
|
|
13032
|
+
* 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
13033
|
*/
|
|
12892
13034
|
passwordExpirationDays: int32 | null;
|
|
12893
13035
|
/**
|
|
12894
|
-
*
|
|
13036
|
+
* 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
13037
|
*/
|
|
12896
13038
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
12897
13039
|
/**
|
|
12898
|
-
*
|
|
13040
|
+
* 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
13041
|
*/
|
|
12900
13042
|
passwordMinimumLength: int32 | null;
|
|
12901
13043
|
/**
|
|
12902
|
-
*
|
|
13044
|
+
* 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
13045
|
*/
|
|
12904
13046
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
12905
13047
|
/**
|
|
12906
|
-
*
|
|
13048
|
+
* 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
13049
|
*/
|
|
12908
13050
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
12909
13051
|
/**
|
|
12910
|
-
*
|
|
13052
|
+
* 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
13053
|
*/
|
|
12912
13054
|
passwordRequired: boolean;
|
|
12913
13055
|
/**
|
|
12914
|
-
*
|
|
13056
|
+
* 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
13057
|
*/
|
|
12916
13058
|
passwordRequiredType: requiredPasswordType;
|
|
12917
13059
|
/**
|
|
12918
|
-
*
|
|
13060
|
+
* 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
13061
|
*/
|
|
12920
13062
|
storageRequireEncryption: boolean;
|
|
12921
13063
|
/**
|
|
12922
|
-
*
|
|
13064
|
+
* 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
13065
|
*/
|
|
12924
13066
|
systemIntegrityProtectionEnabled: boolean;
|
|
12925
13067
|
}
|
|
@@ -14772,6 +14914,17 @@ namespace reference.`microsoft.graph` {
|
|
|
14772
14914
|
recordingInfo: recordingInfo | null;
|
|
14773
14915
|
}
|
|
14774
14916
|
|
|
14917
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
14918
|
+
allowedPasskeyProfiles: guid | null;
|
|
14919
|
+
}
|
|
14920
|
+
|
|
14921
|
+
@entity model passkeyProfile extends entity {
|
|
14922
|
+
attestationEnforcement: attestationEnforcement;
|
|
14923
|
+
keyRestrictions: fido2KeyRestrictions | null;
|
|
14924
|
+
name: string | null;
|
|
14925
|
+
passkeyTypes: passkeyTypes | null;
|
|
14926
|
+
}
|
|
14927
|
+
|
|
14775
14928
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
14776
14929
|
password: string | null;
|
|
14777
14930
|
}
|
|
@@ -14779,6 +14932,8 @@ namespace reference.`microsoft.graph` {
|
|
|
14779
14932
|
@entity model peopleAdminSettings extends entity {
|
|
14780
14933
|
@contains itemInsights: insightsSettings | null;
|
|
14781
14934
|
@contains profileCardProperties: profileCardProperty[];
|
|
14935
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
14936
|
+
@contains profileSources: profileSource[];
|
|
14782
14937
|
@contains pronouns: pronounsSettings | null;
|
|
14783
14938
|
}
|
|
14784
14939
|
|
|
@@ -15008,6 +15163,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15008
15163
|
activity: string | null;
|
|
15009
15164
|
availability: string | null;
|
|
15010
15165
|
statusMessage: presenceStatusMessage | null;
|
|
15166
|
+
workLocation: userWorkLocation | null;
|
|
15011
15167
|
}
|
|
15012
15168
|
|
|
15013
15169
|
@entity model print extends MsGraph.SharedModels.entity {
|
|
@@ -15249,6 +15405,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15249
15405
|
width: int32 | null;
|
|
15250
15406
|
}
|
|
15251
15407
|
|
|
15408
|
+
@entity model profilePropertySetting extends entity {
|
|
15409
|
+
displayName: string | null;
|
|
15410
|
+
name: string | null;
|
|
15411
|
+
prioritizedSourceUrls: string[];
|
|
15412
|
+
}
|
|
15413
|
+
|
|
15414
|
+
@entity model profileSource extends entity {
|
|
15415
|
+
displayName: string | null;
|
|
15416
|
+
kind: string | null;
|
|
15417
|
+
localizations: profileSourceLocalization[];
|
|
15418
|
+
sourceId: string | null;
|
|
15419
|
+
webUrl: string | null;
|
|
15420
|
+
}
|
|
15421
|
+
|
|
15252
15422
|
@entity model pronounsSettings extends entity {
|
|
15253
15423
|
isEnabledInOrganization: boolean;
|
|
15254
15424
|
}
|
|
@@ -15348,6 +15518,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15348
15518
|
|
|
15349
15519
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
15350
15520
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
15521
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
15351
15522
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
15352
15523
|
}
|
|
15353
15524
|
|
|
@@ -15675,12 +15846,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15675
15846
|
appOwnerOrganizationId: guid | null;
|
|
15676
15847
|
appRoleAssignmentRequired: boolean;
|
|
15677
15848
|
appRoles: appRole[];
|
|
15849
|
+
createdByAppId: string | null;
|
|
15678
15850
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
15679
15851
|
description: string | null;
|
|
15680
15852
|
disabledByMicrosoftStatus: string | null;
|
|
15681
15853
|
displayName: string | null;
|
|
15682
15854
|
homepage: string | null;
|
|
15683
15855
|
info: informationalUrl | null;
|
|
15856
|
+
isDisabled: boolean | null;
|
|
15684
15857
|
keyCredentials: keyCredential[];
|
|
15685
15858
|
loginUrl: string | null;
|
|
15686
15859
|
logoutUrl: string | null;
|
|
@@ -16802,6 +16975,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16802
16975
|
givenName: string | null;
|
|
16803
16976
|
hireDate: offsetDateTime;
|
|
16804
16977
|
identities: objectIdentity[] | null;
|
|
16978
|
+
identityParentId: string | null;
|
|
16805
16979
|
imAddresses: string[] | null;
|
|
16806
16980
|
interests: string[] | null;
|
|
16807
16981
|
isManagementRestricted: boolean | null;
|
|
@@ -19625,7 +19799,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19625
19799
|
*/
|
|
19626
19800
|
preprovisioningAllowed: boolean | null;
|
|
19627
19801
|
/**
|
|
19628
|
-
* List of role scope tags for the deployment profile.
|
|
19802
|
+
* List of role scope tags for the deployment profile.
|
|
19629
19803
|
*/
|
|
19630
19804
|
roleScopeTagIds: string[] | null;
|
|
19631
19805
|
/**
|
|
@@ -20247,6 +20421,10 @@ namespace reference.`microsoft.graph` {
|
|
|
20247
20421
|
* Current anti malware version
|
|
20248
20422
|
*/
|
|
20249
20423
|
antiMalwareVersion: string | null;
|
|
20424
|
+
/**
|
|
20425
|
+
* 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.
|
|
20426
|
+
*/
|
|
20427
|
+
controlledConfigurationEnabled: boolean | null;
|
|
20250
20428
|
/**
|
|
20251
20429
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
20252
20430
|
*/
|
|
@@ -20963,6 +21141,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20963
21141
|
systemRemove: 9,
|
|
20964
21142
|
onBehalfAdd: 10,
|
|
20965
21143
|
unknownFutureValue: 11,
|
|
21144
|
+
approverRemove: 12,
|
|
20966
21145
|
}
|
|
20967
21146
|
|
|
20968
21147
|
enum accessPackageSubjectType {
|
|
@@ -21425,6 +21604,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21425
21604
|
unknownFutureValue: 3,
|
|
21426
21605
|
}
|
|
21427
21606
|
|
|
21607
|
+
enum appManagementRestrictionState {
|
|
21608
|
+
enabled: 1,
|
|
21609
|
+
disabled: 2,
|
|
21610
|
+
unknownFutureValue: 3,
|
|
21611
|
+
}
|
|
21612
|
+
|
|
21428
21613
|
enum approvalFilterByCurrentUserOptions {
|
|
21429
21614
|
target: 0,
|
|
21430
21615
|
createdBy: 1,
|
|
@@ -21463,6 +21648,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21463
21648
|
resource: 2,
|
|
21464
21649
|
}
|
|
21465
21650
|
|
|
21651
|
+
enum attestationEnforcement {
|
|
21652
|
+
disabled: 0,
|
|
21653
|
+
registrationOnly: 1,
|
|
21654
|
+
unknownFutureValue: 2,
|
|
21655
|
+
}
|
|
21656
|
+
|
|
21466
21657
|
enum attestationLevel {
|
|
21467
21658
|
attested: 0,
|
|
21468
21659
|
notAttested: 1,
|
|
@@ -22329,6 +22520,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22329
22520
|
approvedApplication: 4,
|
|
22330
22521
|
compliantApplication: 5,
|
|
22331
22522
|
unknownFutureValue: 6,
|
|
22523
|
+
riskRemediation: 7,
|
|
22332
22524
|
}
|
|
22333
22525
|
|
|
22334
22526
|
@graphFlags
|
|
@@ -22434,6 +22626,11 @@ namespace reference.`microsoft.graph` {
|
|
|
22434
22626
|
unknownFutureValue: 6,
|
|
22435
22627
|
}
|
|
22436
22628
|
|
|
22629
|
+
enum customSecurityAttributeComparisonOperator {
|
|
22630
|
+
equals: 1,
|
|
22631
|
+
unknownFutureValue: 2,
|
|
22632
|
+
}
|
|
22633
|
+
|
|
22437
22634
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22438
22635
|
enum dayOfWeek {
|
|
22439
22636
|
sunday: 0,
|
|
@@ -24851,6 +25048,19 @@ namespace reference.`microsoft.graph` {
|
|
|
24851
25048
|
unknownFutureValue: 7,
|
|
24852
25049
|
}
|
|
24853
25050
|
|
|
25051
|
+
enum passkeyType {
|
|
25052
|
+
deviceBound: 0,
|
|
25053
|
+
synced: 1,
|
|
25054
|
+
unknownFutureValue: 2,
|
|
25055
|
+
}
|
|
25056
|
+
|
|
25057
|
+
@graphFlags
|
|
25058
|
+
enum passkeyTypes {
|
|
25059
|
+
deviceBound: 1,
|
|
25060
|
+
synced: 2,
|
|
25061
|
+
unknownFutureValue: 4,
|
|
25062
|
+
}
|
|
25063
|
+
|
|
24854
25064
|
enum permissionClassificationType {
|
|
24855
25065
|
low: 1,
|
|
24856
25066
|
medium: 2,
|
|
@@ -26874,6 +27084,24 @@ namespace reference.`microsoft.graph` {
|
|
|
26874
27084
|
notResponded: 5,
|
|
26875
27085
|
}
|
|
26876
27086
|
|
|
27087
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27088
|
+
enum restrictionAction {
|
|
27089
|
+
warn: 0,
|
|
27090
|
+
audit: 1,
|
|
27091
|
+
block: 2,
|
|
27092
|
+
}
|
|
27093
|
+
|
|
27094
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27095
|
+
enum restrictionTrigger {
|
|
27096
|
+
copyPaste: 0,
|
|
27097
|
+
copyToNetworkShare: 1,
|
|
27098
|
+
copyToRemovableMedia: 2,
|
|
27099
|
+
screenCapture: 3,
|
|
27100
|
+
print: 4,
|
|
27101
|
+
cloudEgress: 5,
|
|
27102
|
+
unallowedApps: 6,
|
|
27103
|
+
}
|
|
27104
|
+
|
|
26877
27105
|
enum riskDetail {
|
|
26878
27106
|
none: 0,
|
|
26879
27107
|
adminGeneratedTemporaryPassword: 1,
|
|
@@ -26893,6 +27121,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26893
27121
|
userChangedPasswordOnPremises: 15,
|
|
26894
27122
|
adminDismissedRiskForSignIn: 16,
|
|
26895
27123
|
adminConfirmedAccountSafe: 17,
|
|
27124
|
+
microsoftRevokedSessions: 18,
|
|
26896
27125
|
}
|
|
26897
27126
|
|
|
26898
27127
|
enum riskDetectionTimingType {
|
|
@@ -27028,6 +27257,14 @@ namespace reference.`microsoft.graph` {
|
|
|
27028
27257
|
unknownFutureValue: 10,
|
|
27029
27258
|
}
|
|
27030
27259
|
|
|
27260
|
+
enum scopeCollectionKind {
|
|
27261
|
+
allAllowed: 0,
|
|
27262
|
+
enumerated: 1,
|
|
27263
|
+
none: 2,
|
|
27264
|
+
scopeKindNotSet: 3,
|
|
27265
|
+
unknownFutureValue: 4,
|
|
27266
|
+
}
|
|
27267
|
+
|
|
27031
27268
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27032
27269
|
enum scopeOperatorMultiValuedComparisonType {
|
|
27033
27270
|
All: 0,
|
|
@@ -29331,6 +29568,22 @@ namespace reference.`microsoft.graph` {
|
|
|
29331
29568
|
failed: 3,
|
|
29332
29569
|
}
|
|
29333
29570
|
|
|
29571
|
+
enum workLocationSource {
|
|
29572
|
+
none: 0,
|
|
29573
|
+
manual: 1,
|
|
29574
|
+
scheduled: 2,
|
|
29575
|
+
automatic: 3,
|
|
29576
|
+
unknownFutureValue: 4,
|
|
29577
|
+
}
|
|
29578
|
+
|
|
29579
|
+
enum workLocationType {
|
|
29580
|
+
unspecified: 0,
|
|
29581
|
+
office: 1,
|
|
29582
|
+
remote: 2,
|
|
29583
|
+
timeOff: 3,
|
|
29584
|
+
unknownFutureValue: 4,
|
|
29585
|
+
}
|
|
29586
|
+
|
|
29334
29587
|
enum x509CertificateAffinityLevel {
|
|
29335
29588
|
low: 0,
|
|
29336
29589
|
high: 1,
|
|
@@ -30404,6 +30657,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30404
30657
|
}
|
|
30405
30658
|
|
|
30406
30659
|
}
|
|
30660
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
30407
30661
|
@publicNamespace("microsoft.graph.security")
|
|
30408
30662
|
namespace reference.`microsoft.graph.security` {
|
|
30409
30663
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -30846,6 +31100,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
30846
31100
|
processes: processEvidence[] | null;
|
|
30847
31101
|
}
|
|
30848
31102
|
|
|
31103
|
+
@complex model mergeResponse {
|
|
31104
|
+
targetIncidentId: string;
|
|
31105
|
+
}
|
|
31106
|
+
|
|
30849
31107
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
30850
31108
|
destinationAddress: ipEvidence | null;
|
|
30851
31109
|
destinationPort: int32 | null;
|
|
@@ -31049,6 +31307,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31049
31307
|
displayName: string | null;
|
|
31050
31308
|
domainName: string | null;
|
|
31051
31309
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
31310
|
+
tenantId: string | null;
|
|
31052
31311
|
userPrincipalName: string | null;
|
|
31053
31312
|
userSid: string | null;
|
|
31054
31313
|
}
|
|
@@ -31071,6 +31330,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31071
31330
|
alertPolicyId: string | null;
|
|
31072
31331
|
alertWebUrl: string | null;
|
|
31073
31332
|
assignedTo: string | null;
|
|
31333
|
+
categories: string[] | null;
|
|
31334
|
+
|
|
31335
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
31074
31336
|
category: string | null;
|
|
31075
31337
|
classification: alertClassification | null;
|
|
31076
31338
|
comments: alertComment[] | null;
|
|
@@ -31652,6 +31914,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31652
31914
|
unknownFutureValue: 3,
|
|
31653
31915
|
}
|
|
31654
31916
|
|
|
31917
|
+
@graphFlags
|
|
31918
|
+
enum correlationReason {
|
|
31919
|
+
repeatedAlertOccurrence: 1,
|
|
31920
|
+
sameGeography: 2,
|
|
31921
|
+
similarArtifacts: 4,
|
|
31922
|
+
sameTargetedAsset: 8,
|
|
31923
|
+
sameNetworkSegment: 16,
|
|
31924
|
+
eventSequence: 32,
|
|
31925
|
+
timeFrame: 64,
|
|
31926
|
+
sameThreatSource: 128,
|
|
31927
|
+
similarTTPsOrBehavior: 256,
|
|
31928
|
+
sameActor: 512,
|
|
31929
|
+
sameCampaign: 1024,
|
|
31930
|
+
sharedIndicators: 2048,
|
|
31931
|
+
sameAsset: 4096,
|
|
31932
|
+
networkProximity: 8192,
|
|
31933
|
+
eventCasualSequence: 16384,
|
|
31934
|
+
temporalProximity: 32768,
|
|
31935
|
+
lateralMovementPath: 65536,
|
|
31936
|
+
unknownFutureValue: 131072,
|
|
31937
|
+
}
|
|
31938
|
+
|
|
31655
31939
|
enum dataSourceContainerStatus {
|
|
31656
31940
|
active: 1,
|
|
31657
31941
|
released: 2,
|