@microsoft/typespec-msgraph-reference 1.0.2 → 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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +97 -97
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +64737 -8299
- package/lib/Bleu/V1.0/main.tsp +18969 -113
- package/lib/Delos/Beta/main.tsp +56729 -509
- package/lib/Delos/V1.0/main.tsp +16666 -27
- package/lib/Fairfax/Beta/main.tsp +1115 -618
- package/lib/Fairfax/V1.0/main.tsp +327 -20
- package/lib/GovSG/Beta/main.tsp +163 -13
- package/lib/GovSG/V1.0/main.tsp +202 -0
- package/lib/Mooncake/Beta/main.tsp +810 -608
- package/lib/Mooncake/V1.0/main.tsp +246 -20
- package/lib/Prod/Beta/main.tsp +4096 -777
- package/lib/Prod/V1.0/main.tsp +1263 -24
- package/lib/USNat/Beta/main.tsp +1494 -53
- package/lib/USNat/V1.0/main.tsp +815 -3
- package/lib/USSec/Beta/main.tsp +1481 -72
- package/lib/USSec/V1.0/main.tsp +725 -3
- package/package.json +2 -2
- package/rush-logs/typespec-msgraph-reference.build.log +1 -1
|
@@ -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;
|
|
@@ -2812,6 +2863,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2812
2863
|
outboundAllowed: boolean | null;
|
|
2813
2864
|
}
|
|
2814
2865
|
|
|
2866
|
+
@complex model includeTarget {
|
|
2867
|
+
id: string;
|
|
2868
|
+
targetType: authenticationMethodTargetType;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2815
2871
|
@complex model incomingContext {
|
|
2816
2872
|
observedParticipantId: string | null;
|
|
2817
2873
|
onBehalfOf: identitySet | null;
|
|
@@ -2833,6 +2889,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2833
2889
|
termsOfServiceUrl: string | null;
|
|
2834
2890
|
}
|
|
2835
2891
|
|
|
2892
|
+
@abstract
|
|
2893
|
+
@complex model inheritableScopes {
|
|
2894
|
+
kind: scopeCollectionKind;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2836
2897
|
@open
|
|
2837
2898
|
@complex model initiator extends identity {
|
|
2838
2899
|
initiatorType: initiatorType | null;
|
|
@@ -3330,6 +3391,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3330
3391
|
isEnabled: boolean | null;
|
|
3331
3392
|
}
|
|
3332
3393
|
|
|
3394
|
+
@complex model localAdminSettings {
|
|
3395
|
+
enableGlobalAdmins: boolean | null;
|
|
3396
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3333
3399
|
@complex model localeInfo {
|
|
3334
3400
|
displayName: string | null;
|
|
3335
3401
|
locale: string | null;
|
|
@@ -3924,6 +3990,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3924
3990
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
3925
3991
|
}
|
|
3926
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
|
+
|
|
3927
4003
|
@complex model numberColumn {
|
|
3928
4004
|
decimalPlaces: string | null;
|
|
3929
4005
|
displayAs: string | null;
|
|
@@ -4232,7 +4308,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4232
4308
|
*/
|
|
4233
4309
|
privacySettingsHidden: boolean;
|
|
4234
4310
|
/**
|
|
4235
|
-
* 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
|
|
4236
4312
|
|
|
4237
4313
|
*/
|
|
4238
4314
|
userType: windowsUserType;
|
|
@@ -4717,6 +4793,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4717
4793
|
localizations: displayNameLocalization[] | null;
|
|
4718
4794
|
}
|
|
4719
4795
|
|
|
4796
|
+
@complex model profileSourceLocalization {
|
|
4797
|
+
displayName: string | null;
|
|
4798
|
+
languageTag: string | null;
|
|
4799
|
+
webUrl: string | null;
|
|
4800
|
+
}
|
|
4801
|
+
|
|
4720
4802
|
@abstract
|
|
4721
4803
|
@complex model prompt {
|
|
4722
4804
|
}
|
|
@@ -5040,6 +5122,14 @@ namespace reference.`microsoft.graph` {
|
|
|
5040
5122
|
@complex model restoreAction {
|
|
5041
5123
|
}
|
|
5042
5124
|
|
|
5125
|
+
@complex model restrictAccessAction extends restrictAccessActionBase {
|
|
5126
|
+
}
|
|
5127
|
+
|
|
5128
|
+
@abstract
|
|
5129
|
+
@complex model restrictAccessActionBase extends dlpActionInfo {
|
|
5130
|
+
restrictionAction: restrictionAction | null;
|
|
5131
|
+
}
|
|
5132
|
+
|
|
5043
5133
|
@complex model resultInfo {
|
|
5044
5134
|
code: int32;
|
|
5045
5135
|
message: string | null;
|
|
@@ -6260,6 +6350,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6260
6350
|
userId: string | null;
|
|
6261
6351
|
}
|
|
6262
6352
|
|
|
6353
|
+
@complex model userWorkLocation {
|
|
6354
|
+
placeId: string | null;
|
|
6355
|
+
source: workLocationSource;
|
|
6356
|
+
workLocationType: workLocationType;
|
|
6357
|
+
}
|
|
6358
|
+
|
|
6263
6359
|
@complex model verifiedDomain {
|
|
6264
6360
|
capabilities: string | null;
|
|
6265
6361
|
isDefault: boolean | null;
|
|
@@ -7085,11 +7181,21 @@ namespace reference.`microsoft.graph` {
|
|
|
7085
7181
|
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
7086
7182
|
}
|
|
7087
7183
|
|
|
7184
|
+
@complex model x509CertificateAuthorityScope {
|
|
7185
|
+
includeTargets: includeTarget[] | null;
|
|
7186
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
7187
|
+
subjectKeyIdentifier: string | null;
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7088
7190
|
@complex model x509CertificateCRLValidationConfiguration {
|
|
7089
7191
|
exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
|
|
7090
7192
|
state: x509CertificateCRLValidationConfigurationState;
|
|
7091
7193
|
}
|
|
7092
7194
|
|
|
7195
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
7196
|
+
state: x509CertificateIssuerHintsState | null;
|
|
7197
|
+
}
|
|
7198
|
+
|
|
7093
7199
|
@complex model x509CertificateRule {
|
|
7094
7200
|
identifier: string | null;
|
|
7095
7201
|
issuerSubjectIdentifier: string | null;
|
|
@@ -7417,6 +7523,28 @@ namespace reference.`microsoft.graph` {
|
|
|
7417
7523
|
@contains scopedRoleMembers: scopedRoleMembership[];
|
|
7418
7524
|
}
|
|
7419
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
|
+
|
|
7420
7548
|
@entity model agreement extends entity {
|
|
7421
7549
|
displayName: string | null;
|
|
7422
7550
|
isPerDeviceAcceptanceRequired: boolean | null;
|
|
@@ -8209,6 +8337,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8209
8337
|
applicationTemplateId: string | null;
|
|
8210
8338
|
appRoles: appRole[];
|
|
8211
8339
|
authenticationBehaviors: authenticationBehaviors | null;
|
|
8340
|
+
createdByAppId: string | null;
|
|
8212
8341
|
@computed createdDateTime: offsetDateTime | null;
|
|
8213
8342
|
defaultRedirectUri: string | null;
|
|
8214
8343
|
description: string | null;
|
|
@@ -8218,9 +8347,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8218
8347
|
identifierUris: string[];
|
|
8219
8348
|
info: informationalUrl | null;
|
|
8220
8349
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
8350
|
+
isDisabled: boolean | null;
|
|
8221
8351
|
isFallbackPublicClient: boolean | null;
|
|
8222
8352
|
keyCredentials: keyCredential[];
|
|
8223
8353
|
logo: stream;
|
|
8354
|
+
managerApplications: guid;
|
|
8224
8355
|
notes: string | null;
|
|
8225
8356
|
oauth2RequirePostResponse: boolean;
|
|
8226
8357
|
optionalClaims: optionalClaims | null;
|
|
@@ -8311,6 +8442,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8311
8442
|
status: string | null;
|
|
8312
8443
|
}
|
|
8313
8444
|
|
|
8445
|
+
@entity model approvedClientApp extends entity {
|
|
8446
|
+
displayName: string | null;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8314
8449
|
@entity model appScope extends entity {
|
|
8315
8450
|
displayName: string | null;
|
|
8316
8451
|
type: string | null;
|
|
@@ -9001,6 +9136,8 @@ namespace reference.`microsoft.graph` {
|
|
|
9001
9136
|
operatingSystem: string | null;
|
|
9002
9137
|
osBuildNumber: string | null;
|
|
9003
9138
|
osStatus: cloudPcDeviceImageOsStatus | null;
|
|
9139
|
+
osVersionNumber: string | null;
|
|
9140
|
+
sizeInGB: int32 | null;
|
|
9004
9141
|
sourceImageResourceId: string | null;
|
|
9005
9142
|
status: cloudPcDeviceImageStatus | null;
|
|
9006
9143
|
version: string | null;
|
|
@@ -9011,6 +9148,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9011
9148
|
endDate: offsetDateTime | null;
|
|
9012
9149
|
expirationDate: offsetDateTime | null;
|
|
9013
9150
|
offerName: string | null;
|
|
9151
|
+
osVersionNumber: string | null;
|
|
9014
9152
|
publisherName: string | null;
|
|
9015
9153
|
sizeInGB: int32 | null;
|
|
9016
9154
|
skuName: string | null;
|
|
@@ -9025,11 +9163,14 @@ namespace reference.`microsoft.graph` {
|
|
|
9025
9163
|
alternateResourceUrl: string | null;
|
|
9026
9164
|
connectionType: cloudPcOnPremisesConnectionType | null;
|
|
9027
9165
|
displayName: string;
|
|
9166
|
+
healthCheckPaused: boolean | null;
|
|
9028
9167
|
healthCheckStatus: cloudPcOnPremisesConnectionStatus;
|
|
9029
9168
|
healthCheckStatusDetail: cloudPcOnPremisesConnectionStatusDetail | null;
|
|
9030
9169
|
inUse: boolean | null;
|
|
9170
|
+
inUseByCloudPc: boolean | null;
|
|
9031
9171
|
organizationalUnit: string | null;
|
|
9032
9172
|
resourceGroupId: string;
|
|
9173
|
+
scopeIds: string[] | null;
|
|
9033
9174
|
subnetId: string;
|
|
9034
9175
|
subscriptionId: string;
|
|
9035
9176
|
subscriptionName: string | null;
|
|
@@ -11406,6 +11547,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11406
11547
|
targetObjects: string[];
|
|
11407
11548
|
}
|
|
11408
11549
|
|
|
11550
|
+
@entity model externalAuthenticationMethod extends authenticationMethod {
|
|
11551
|
+
configurationId: string;
|
|
11552
|
+
displayName: string;
|
|
11553
|
+
}
|
|
11554
|
+
|
|
11409
11555
|
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
11410
11556
|
appId: string;
|
|
11411
11557
|
displayName: string;
|
|
@@ -11439,9 +11585,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11439
11585
|
attestationLevel: attestationLevel | null;
|
|
11440
11586
|
displayName: string | null;
|
|
11441
11587
|
`model`: string | null;
|
|
11588
|
+
passkeyType: passkeyType | null;
|
|
11442
11589
|
}
|
|
11443
11590
|
|
|
11444
11591
|
@entity model fido2AuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
11592
|
+
defaultPasskeyProfile: string | null;
|
|
11445
11593
|
|
|
11446
11594
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
11447
11595
|
isAttestationEnforced: boolean | null;
|
|
@@ -11450,6 +11598,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11450
11598
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
11451
11599
|
keyRestrictions: fido2KeyRestrictions | null;
|
|
11452
11600
|
@contains includeTargets: authenticationMethodTarget[];
|
|
11601
|
+
@references passkeyProfiles: passkeyProfile[];
|
|
11453
11602
|
}
|
|
11454
11603
|
|
|
11455
11604
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -11545,6 +11694,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11545
11694
|
groupTypes: string[];
|
|
11546
11695
|
hasMembersWithLicenseErrors: boolean | null;
|
|
11547
11696
|
hideFromAddressLists: boolean | null;
|
|
11697
|
+
hideFromOutlookClients: boolean | null;
|
|
11698
|
+
infoCatalogs: string[];
|
|
11548
11699
|
isArchived: boolean | null;
|
|
11549
11700
|
isAssignableToRole: boolean | null;
|
|
11550
11701
|
isManagementRestricted: boolean | null;
|
|
@@ -11575,6 +11726,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11575
11726
|
uniqueName: string | null;
|
|
11576
11727
|
unseenCount: int32 | null;
|
|
11577
11728
|
visibility: string | null;
|
|
11729
|
+
welcomeMessageEnabled: boolean | null;
|
|
11578
11730
|
@contains acceptedSenders: directoryObject[];
|
|
11579
11731
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
11580
11732
|
@contains calendar: calendar | null;
|
|
@@ -11742,6 +11894,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11742
11894
|
@contains bitlocker: bitlocker | null;
|
|
11743
11895
|
}
|
|
11744
11896
|
|
|
11897
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
11898
|
+
inheritableScopes: inheritableScopes | null;
|
|
11899
|
+
@computed @key resourceAppId: string;
|
|
11900
|
+
}
|
|
11901
|
+
|
|
11745
11902
|
@entity model insightsSettings extends entity {
|
|
11746
11903
|
disabledForGroup: string | null;
|
|
11747
11904
|
isEnabledInOrganization: boolean | null;
|
|
@@ -11812,7 +11969,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11812
11969
|
*/
|
|
11813
11970
|
passcodeBlockSimple: boolean;
|
|
11814
11971
|
/**
|
|
11815
|
-
* 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
|
|
11816
11973
|
*/
|
|
11817
11974
|
passcodeExpirationDays: int32 | null;
|
|
11818
11975
|
/**
|
|
@@ -12840,71 +12997,71 @@ namespace reference.`microsoft.graph` {
|
|
|
12840
12997
|
*/
|
|
12841
12998
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
12842
12999
|
/**
|
|
12843
|
-
*
|
|
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.
|
|
12844
13001
|
*/
|
|
12845
13002
|
deviceThreatProtectionEnabled: boolean;
|
|
12846
13003
|
/**
|
|
12847
|
-
*
|
|
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.
|
|
12848
13005
|
*/
|
|
12849
13006
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
12850
13007
|
/**
|
|
12851
|
-
*
|
|
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.
|
|
12852
13009
|
*/
|
|
12853
13010
|
firewallBlockAllIncoming: boolean;
|
|
12854
13011
|
/**
|
|
12855
|
-
*
|
|
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.
|
|
12856
13013
|
*/
|
|
12857
13014
|
firewallEnabled: boolean;
|
|
12858
13015
|
/**
|
|
12859
|
-
*
|
|
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.
|
|
12860
13017
|
*/
|
|
12861
13018
|
firewallEnableStealthMode: boolean;
|
|
12862
13019
|
/**
|
|
12863
|
-
*
|
|
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.
|
|
12864
13021
|
*/
|
|
12865
13022
|
osMaximumVersion: string | null;
|
|
12866
13023
|
/**
|
|
12867
|
-
*
|
|
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.
|
|
12868
13025
|
*/
|
|
12869
13026
|
osMinimumVersion: string | null;
|
|
12870
13027
|
/**
|
|
12871
|
-
*
|
|
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.
|
|
12872
13029
|
*/
|
|
12873
13030
|
passwordBlockSimple: boolean;
|
|
12874
13031
|
/**
|
|
12875
|
-
*
|
|
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
|
|
12876
13033
|
*/
|
|
12877
13034
|
passwordExpirationDays: int32 | null;
|
|
12878
13035
|
/**
|
|
12879
|
-
*
|
|
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.
|
|
12880
13037
|
*/
|
|
12881
13038
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
12882
13039
|
/**
|
|
12883
|
-
*
|
|
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
|
|
12884
13041
|
*/
|
|
12885
13042
|
passwordMinimumLength: int32 | null;
|
|
12886
13043
|
/**
|
|
12887
|
-
*
|
|
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.
|
|
12888
13045
|
*/
|
|
12889
13046
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
12890
13047
|
/**
|
|
12891
|
-
*
|
|
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
|
|
12892
13049
|
*/
|
|
12893
13050
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
12894
13051
|
/**
|
|
12895
|
-
*
|
|
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.
|
|
12896
13053
|
*/
|
|
12897
13054
|
passwordRequired: boolean;
|
|
12898
13055
|
/**
|
|
12899
|
-
*
|
|
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.
|
|
12900
13057
|
*/
|
|
12901
13058
|
passwordRequiredType: requiredPasswordType;
|
|
12902
13059
|
/**
|
|
12903
|
-
*
|
|
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.
|
|
12904
13061
|
*/
|
|
12905
13062
|
storageRequireEncryption: boolean;
|
|
12906
13063
|
/**
|
|
12907
|
-
*
|
|
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.
|
|
12908
13065
|
*/
|
|
12909
13066
|
systemIntegrityProtectionEnabled: boolean;
|
|
12910
13067
|
}
|
|
@@ -14757,6 +14914,17 @@ namespace reference.`microsoft.graph` {
|
|
|
14757
14914
|
recordingInfo: recordingInfo | null;
|
|
14758
14915
|
}
|
|
14759
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
|
+
|
|
14760
14928
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
14761
14929
|
password: string | null;
|
|
14762
14930
|
}
|
|
@@ -14764,6 +14932,8 @@ namespace reference.`microsoft.graph` {
|
|
|
14764
14932
|
@entity model peopleAdminSettings extends entity {
|
|
14765
14933
|
@contains itemInsights: insightsSettings | null;
|
|
14766
14934
|
@contains profileCardProperties: profileCardProperty[];
|
|
14935
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
14936
|
+
@contains profileSources: profileSource[];
|
|
14767
14937
|
@contains pronouns: pronounsSettings | null;
|
|
14768
14938
|
}
|
|
14769
14939
|
|
|
@@ -14993,6 +15163,7 @@ namespace reference.`microsoft.graph` {
|
|
|
14993
15163
|
activity: string | null;
|
|
14994
15164
|
availability: string | null;
|
|
14995
15165
|
statusMessage: presenceStatusMessage | null;
|
|
15166
|
+
workLocation: userWorkLocation | null;
|
|
14996
15167
|
}
|
|
14997
15168
|
|
|
14998
15169
|
@entity model print extends MsGraph.SharedModels.entity {
|
|
@@ -15234,6 +15405,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15234
15405
|
width: int32 | null;
|
|
15235
15406
|
}
|
|
15236
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
|
+
|
|
15237
15422
|
@entity model pronounsSettings extends entity {
|
|
15238
15423
|
isEnabledInOrganization: boolean;
|
|
15239
15424
|
}
|
|
@@ -15333,6 +15518,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15333
15518
|
|
|
15334
15519
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
15335
15520
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
15521
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
15336
15522
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
15337
15523
|
}
|
|
15338
15524
|
|
|
@@ -15660,12 +15846,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15660
15846
|
appOwnerOrganizationId: guid | null;
|
|
15661
15847
|
appRoleAssignmentRequired: boolean;
|
|
15662
15848
|
appRoles: appRole[];
|
|
15849
|
+
createdByAppId: string | null;
|
|
15663
15850
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
15664
15851
|
description: string | null;
|
|
15665
15852
|
disabledByMicrosoftStatus: string | null;
|
|
15666
15853
|
displayName: string | null;
|
|
15667
15854
|
homepage: string | null;
|
|
15668
15855
|
info: informationalUrl | null;
|
|
15856
|
+
isDisabled: boolean | null;
|
|
15669
15857
|
keyCredentials: keyCredential[];
|
|
15670
15858
|
loginUrl: string | null;
|
|
15671
15859
|
logoutUrl: string | null;
|
|
@@ -16787,6 +16975,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16787
16975
|
givenName: string | null;
|
|
16788
16976
|
hireDate: offsetDateTime;
|
|
16789
16977
|
identities: objectIdentity[] | null;
|
|
16978
|
+
identityParentId: string | null;
|
|
16790
16979
|
imAddresses: string[] | null;
|
|
16791
16980
|
interests: string[] | null;
|
|
16792
16981
|
isManagementRestricted: boolean | null;
|
|
@@ -19610,7 +19799,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19610
19799
|
*/
|
|
19611
19800
|
preprovisioningAllowed: boolean | null;
|
|
19612
19801
|
/**
|
|
19613
|
-
* List of role scope tags for the deployment profile.
|
|
19802
|
+
* List of role scope tags for the deployment profile.
|
|
19614
19803
|
*/
|
|
19615
19804
|
roleScopeTagIds: string[] | null;
|
|
19616
19805
|
/**
|
|
@@ -20232,6 +20421,10 @@ namespace reference.`microsoft.graph` {
|
|
|
20232
20421
|
* Current anti malware version
|
|
20233
20422
|
*/
|
|
20234
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;
|
|
20235
20428
|
/**
|
|
20236
20429
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
20237
20430
|
*/
|
|
@@ -20853,8 +21046,10 @@ namespace reference.`microsoft.graph` {
|
|
|
20853
21046
|
|
|
20854
21047
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
20855
21048
|
authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
|
|
21049
|
+
certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
|
|
20856
21050
|
certificateUserBindings: x509CertificateUserBinding[] | null;
|
|
20857
21051
|
crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
|
|
21052
|
+
issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
|
|
20858
21053
|
@contains includeTargets: authenticationMethodTarget[];
|
|
20859
21054
|
}
|
|
20860
21055
|
|
|
@@ -20946,6 +21141,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20946
21141
|
systemRemove: 9,
|
|
20947
21142
|
onBehalfAdd: 10,
|
|
20948
21143
|
unknownFutureValue: 11,
|
|
21144
|
+
approverRemove: 12,
|
|
20949
21145
|
}
|
|
20950
21146
|
|
|
20951
21147
|
enum accessPackageSubjectType {
|
|
@@ -21408,6 +21604,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21408
21604
|
unknownFutureValue: 3,
|
|
21409
21605
|
}
|
|
21410
21606
|
|
|
21607
|
+
enum appManagementRestrictionState {
|
|
21608
|
+
enabled: 1,
|
|
21609
|
+
disabled: 2,
|
|
21610
|
+
unknownFutureValue: 3,
|
|
21611
|
+
}
|
|
21612
|
+
|
|
21411
21613
|
enum approvalFilterByCurrentUserOptions {
|
|
21412
21614
|
target: 0,
|
|
21413
21615
|
createdBy: 1,
|
|
@@ -21446,6 +21648,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21446
21648
|
resource: 2,
|
|
21447
21649
|
}
|
|
21448
21650
|
|
|
21651
|
+
enum attestationEnforcement {
|
|
21652
|
+
disabled: 0,
|
|
21653
|
+
registrationOnly: 1,
|
|
21654
|
+
unknownFutureValue: 2,
|
|
21655
|
+
}
|
|
21656
|
+
|
|
21449
21657
|
enum attestationLevel {
|
|
21450
21658
|
attested: 0,
|
|
21451
21659
|
notAttested: 1,
|
|
@@ -22312,6 +22520,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22312
22520
|
approvedApplication: 4,
|
|
22313
22521
|
compliantApplication: 5,
|
|
22314
22522
|
unknownFutureValue: 6,
|
|
22523
|
+
riskRemediation: 7,
|
|
22315
22524
|
}
|
|
22316
22525
|
|
|
22317
22526
|
@graphFlags
|
|
@@ -22417,6 +22626,11 @@ namespace reference.`microsoft.graph` {
|
|
|
22417
22626
|
unknownFutureValue: 6,
|
|
22418
22627
|
}
|
|
22419
22628
|
|
|
22629
|
+
enum customSecurityAttributeComparisonOperator {
|
|
22630
|
+
equals: 1,
|
|
22631
|
+
unknownFutureValue: 2,
|
|
22632
|
+
}
|
|
22633
|
+
|
|
22420
22634
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22421
22635
|
enum dayOfWeek {
|
|
22422
22636
|
sunday: 0,
|
|
@@ -24834,6 +25048,19 @@ namespace reference.`microsoft.graph` {
|
|
|
24834
25048
|
unknownFutureValue: 7,
|
|
24835
25049
|
}
|
|
24836
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
|
+
|
|
24837
25064
|
enum permissionClassificationType {
|
|
24838
25065
|
low: 1,
|
|
24839
25066
|
medium: 2,
|
|
@@ -26857,6 +27084,24 @@ namespace reference.`microsoft.graph` {
|
|
|
26857
27084
|
notResponded: 5,
|
|
26858
27085
|
}
|
|
26859
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
|
+
|
|
26860
27105
|
enum riskDetail {
|
|
26861
27106
|
none: 0,
|
|
26862
27107
|
adminGeneratedTemporaryPassword: 1,
|
|
@@ -26876,6 +27121,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26876
27121
|
userChangedPasswordOnPremises: 15,
|
|
26877
27122
|
adminDismissedRiskForSignIn: 16,
|
|
26878
27123
|
adminConfirmedAccountSafe: 17,
|
|
27124
|
+
microsoftRevokedSessions: 18,
|
|
26879
27125
|
}
|
|
26880
27126
|
|
|
26881
27127
|
enum riskDetectionTimingType {
|
|
@@ -27011,6 +27257,14 @@ namespace reference.`microsoft.graph` {
|
|
|
27011
27257
|
unknownFutureValue: 10,
|
|
27012
27258
|
}
|
|
27013
27259
|
|
|
27260
|
+
enum scopeCollectionKind {
|
|
27261
|
+
allAllowed: 0,
|
|
27262
|
+
enumerated: 1,
|
|
27263
|
+
none: 2,
|
|
27264
|
+
scopeKindNotSet: 3,
|
|
27265
|
+
unknownFutureValue: 4,
|
|
27266
|
+
}
|
|
27267
|
+
|
|
27014
27268
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27015
27269
|
enum scopeOperatorMultiValuedComparisonType {
|
|
27016
27270
|
All: 0,
|
|
@@ -29314,6 +29568,22 @@ namespace reference.`microsoft.graph` {
|
|
|
29314
29568
|
failed: 3,
|
|
29315
29569
|
}
|
|
29316
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
|
+
|
|
29317
29587
|
enum x509CertificateAffinityLevel {
|
|
29318
29588
|
low: 0,
|
|
29319
29589
|
high: 1,
|
|
@@ -29332,6 +29602,12 @@ namespace reference.`microsoft.graph` {
|
|
|
29332
29602
|
unknownFutureValue: 2,
|
|
29333
29603
|
}
|
|
29334
29604
|
|
|
29605
|
+
enum x509CertificateIssuerHintsState {
|
|
29606
|
+
disabled: 0,
|
|
29607
|
+
enabled: 1,
|
|
29608
|
+
unknownFutureValue: 2,
|
|
29609
|
+
}
|
|
29610
|
+
|
|
29335
29611
|
enum x509CertificateRuleType {
|
|
29336
29612
|
issuerSubject: 0,
|
|
29337
29613
|
policyOID: 1,
|
|
@@ -30381,6 +30657,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30381
30657
|
}
|
|
30382
30658
|
|
|
30383
30659
|
}
|
|
30660
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
30384
30661
|
@publicNamespace("microsoft.graph.security")
|
|
30385
30662
|
namespace reference.`microsoft.graph.security` {
|
|
30386
30663
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -30823,6 +31100,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
30823
31100
|
processes: processEvidence[] | null;
|
|
30824
31101
|
}
|
|
30825
31102
|
|
|
31103
|
+
@complex model mergeResponse {
|
|
31104
|
+
targetIncidentId: string;
|
|
31105
|
+
}
|
|
31106
|
+
|
|
30826
31107
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
30827
31108
|
destinationAddress: ipEvidence | null;
|
|
30828
31109
|
destinationPort: int32 | null;
|
|
@@ -31026,6 +31307,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31026
31307
|
displayName: string | null;
|
|
31027
31308
|
domainName: string | null;
|
|
31028
31309
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
31310
|
+
tenantId: string | null;
|
|
31029
31311
|
userPrincipalName: string | null;
|
|
31030
31312
|
userSid: string | null;
|
|
31031
31313
|
}
|
|
@@ -31048,6 +31330,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31048
31330
|
alertPolicyId: string | null;
|
|
31049
31331
|
alertWebUrl: string | null;
|
|
31050
31332
|
assignedTo: string | null;
|
|
31333
|
+
categories: string[] | null;
|
|
31334
|
+
|
|
31335
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
31051
31336
|
category: string | null;
|
|
31052
31337
|
classification: alertClassification | null;
|
|
31053
31338
|
comments: alertComment[] | null;
|
|
@@ -31629,6 +31914,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
31629
31914
|
unknownFutureValue: 3,
|
|
31630
31915
|
}
|
|
31631
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
|
+
|
|
31632
31939
|
enum dataSourceContainerStatus {
|
|
31633
31940
|
active: 1,
|
|
31634
31941
|
released: 2,
|