@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
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -48,6 +48,7 @@ namespace reference.`microsoft.graph` {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
@complex model accessPackageApprovalStage {
|
|
51
|
+
approverInformationVisibility: approverInformationVisibility;
|
|
51
52
|
durationBeforeAutomaticDenial: duration | null;
|
|
52
53
|
durationBeforeEscalation: duration | null;
|
|
53
54
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -147,6 +148,20 @@ namespace reference.`microsoft.graph` {
|
|
|
147
148
|
@complex model accessPackageResourceAttributeSource {
|
|
148
149
|
}
|
|
149
150
|
|
|
151
|
+
@abstract
|
|
152
|
+
@complex model accessPackageSuggestionReason {
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@complex model accessPackageSuggestionRelatedPeopleBased extends accessPackageSuggestionReason {
|
|
156
|
+
relatedPeople: identity[];
|
|
157
|
+
relatedPeopleAssignmentCount: int32;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@complex model accessPackageSuggestionSelfAssignmentHistoryBased extends accessPackageSuggestionReason {
|
|
161
|
+
@computed lastAssignmentDateTime: offsetDateTime;
|
|
162
|
+
pastAssignmentCount: int32;
|
|
163
|
+
}
|
|
164
|
+
|
|
150
165
|
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
151
166
|
}
|
|
152
167
|
|
|
@@ -398,6 +413,9 @@ namespace reference.`microsoft.graph` {
|
|
|
398
413
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
399
414
|
}
|
|
400
415
|
|
|
416
|
+
@complex model allDomains extends validatingDomains {
|
|
417
|
+
}
|
|
418
|
+
|
|
401
419
|
/**
|
|
402
420
|
* Represents an assignment to all licensed users in the tenant.
|
|
403
421
|
*/
|
|
@@ -554,6 +572,127 @@ namespace reference.`microsoft.graph` {
|
|
|
554
572
|
@complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
|
|
555
573
|
}
|
|
556
574
|
|
|
575
|
+
@complex model applicationLocation {
|
|
576
|
+
dataCenter: string | null;
|
|
577
|
+
headquarters: string | null;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
@complex model applicationRiskFactorCertificateInfo {
|
|
581
|
+
hasBadCommonName: boolean | null;
|
|
582
|
+
hasInsecureSignature: boolean | null;
|
|
583
|
+
hasNoChainOfTrust: boolean | null;
|
|
584
|
+
isDenylisted: boolean | null;
|
|
585
|
+
isHostnameMismatch: boolean | null;
|
|
586
|
+
isNotAfter: boolean | null;
|
|
587
|
+
isNotBefore: boolean | null;
|
|
588
|
+
isRevoked: boolean | null;
|
|
589
|
+
isSelfSigned: boolean | null;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
@complex model applicationRiskFactorGeneralInfo {
|
|
593
|
+
consumerPopularity: int32 | null;
|
|
594
|
+
domainRegistrationDate: offsetDateTime | null;
|
|
595
|
+
founded: int32 | null;
|
|
596
|
+
hasDisasterRecoveryPlan: boolean | null;
|
|
597
|
+
hold: holdType;
|
|
598
|
+
hostingCompanyName: string | null;
|
|
599
|
+
location: applicationLocation | null;
|
|
600
|
+
privacyPolicy: string | null;
|
|
601
|
+
processedDataTypes: applicationDataType;
|
|
602
|
+
termsOfService: string | null;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
@complex model applicationRiskFactorLegalInfo {
|
|
606
|
+
dataRetention: dataRetentionLevel;
|
|
607
|
+
gdpr: applicationRiskFactorLegalInfoGdpr;
|
|
608
|
+
hasDataOwnership: boolean | null;
|
|
609
|
+
hasDmca: boolean | null;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
@complex model applicationRiskFactorLegalInfoGdpr {
|
|
613
|
+
dataProtection: dataProtection;
|
|
614
|
+
hasRightToErasure: boolean | null;
|
|
615
|
+
isReportingDataBreaches: boolean | null;
|
|
616
|
+
statementUrl: string | null;
|
|
617
|
+
userOwnership: userOwnership;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
@complex model applicationRiskFactors {
|
|
621
|
+
compliance: applicationSecurityCompliance | null;
|
|
622
|
+
general: applicationRiskFactorGeneralInfo | null;
|
|
623
|
+
legal: applicationRiskFactorLegalInfo | null;
|
|
624
|
+
security: applicationRiskFactorSecurityInfo | null;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
@complex model applicationRiskFactorSecurityInfo {
|
|
628
|
+
certificate: applicationRiskFactorCertificateInfo;
|
|
629
|
+
domainToCheck: string | null;
|
|
630
|
+
hasAdminAuditTrail: boolean | null;
|
|
631
|
+
hasAnonymousUsage: boolean | null;
|
|
632
|
+
hasDataAuditTrail: boolean | null;
|
|
633
|
+
hasDataClassification: boolean | null;
|
|
634
|
+
hasDataEncrypted: boolean | null;
|
|
635
|
+
hasEnforceTransportEnc: boolean | null;
|
|
636
|
+
hasIpRestriction: boolean | null;
|
|
637
|
+
hasMFA: boolean | null;
|
|
638
|
+
hasPenTest: boolean | null;
|
|
639
|
+
hasRememberPassword: boolean | null;
|
|
640
|
+
hasSamlSupport: boolean | null;
|
|
641
|
+
hasUserAuditLogs: boolean | null;
|
|
642
|
+
hasUserDataUpload: boolean | null;
|
|
643
|
+
hasUserRolesSupport: boolean | null;
|
|
644
|
+
hasValidCertName: boolean | null;
|
|
645
|
+
httpsSecurityHeaders: string[];
|
|
646
|
+
isCertTrusted: boolean | null;
|
|
647
|
+
isDrownVulnerable: boolean | null;
|
|
648
|
+
isHeartbleedProof: boolean | null;
|
|
649
|
+
lastBreachDate: offsetDateTime | null;
|
|
650
|
+
latestValidSSL: sslVersion;
|
|
651
|
+
passwordPolicy: passwordPolicy;
|
|
652
|
+
restEncryptionType: restEncryptionType;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
@complex model applicationRiskScore {
|
|
656
|
+
compliance: float32 | null;
|
|
657
|
+
legal: float32 | null;
|
|
658
|
+
provider: float32 | null;
|
|
659
|
+
security: float32 | null;
|
|
660
|
+
total: float32 | null;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
@complex model applicationSecurityCompliance {
|
|
664
|
+
cobit: boolean | null;
|
|
665
|
+
coppa: boolean | null;
|
|
666
|
+
csaStar: csaStarLevel | null;
|
|
667
|
+
fedRamp: fedRampLevel | null;
|
|
668
|
+
ferpa: boolean | null;
|
|
669
|
+
ffiec: boolean | null;
|
|
670
|
+
finra: boolean | null;
|
|
671
|
+
fisma: boolean | null;
|
|
672
|
+
gaap: boolean | null;
|
|
673
|
+
gapp: boolean | null;
|
|
674
|
+
glba: boolean | null;
|
|
675
|
+
hipaa: boolean | null;
|
|
676
|
+
hitrust: boolean | null;
|
|
677
|
+
isae3402: boolean | null;
|
|
678
|
+
iso27001: boolean | null;
|
|
679
|
+
iso27002: boolean | null;
|
|
680
|
+
iso27017: boolean | null;
|
|
681
|
+
iso27018: boolean | null;
|
|
682
|
+
itar: boolean | null;
|
|
683
|
+
jerichoForumCommandments: boolean | null;
|
|
684
|
+
pci: pciVersion | null;
|
|
685
|
+
privacyShield: boolean | null;
|
|
686
|
+
safeHarbor: boolean | null;
|
|
687
|
+
soc1: boolean | null;
|
|
688
|
+
soc2: boolean | null;
|
|
689
|
+
soc3: boolean | null;
|
|
690
|
+
sox: boolean | null;
|
|
691
|
+
sp800_53: boolean | null;
|
|
692
|
+
ssae16: boolean | null;
|
|
693
|
+
ustr: boolean | null;
|
|
694
|
+
}
|
|
695
|
+
|
|
557
696
|
@complex model applicationServicePrincipal {
|
|
558
697
|
@references application: application | null;
|
|
559
698
|
@references servicePrincipal: servicePrincipal | null;
|
|
@@ -605,6 +744,7 @@ namespace reference.`microsoft.graph` {
|
|
|
605
744
|
}
|
|
606
745
|
|
|
607
746
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
747
|
+
identifierUris: identifierUriConfiguration | null;
|
|
608
748
|
}
|
|
609
749
|
|
|
610
750
|
@abstract
|
|
@@ -613,6 +753,10 @@ namespace reference.`microsoft.graph` {
|
|
|
613
753
|
|
|
614
754
|
}
|
|
615
755
|
|
|
756
|
+
@complex model appManagementPolicyActorExemptions {
|
|
757
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
758
|
+
}
|
|
759
|
+
|
|
616
760
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
617
761
|
}
|
|
618
762
|
|
|
@@ -1045,6 +1189,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1045
1189
|
@complex model azureADJoinPolicy {
|
|
1046
1190
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
1047
1191
|
isAdminConfigurable: boolean | null;
|
|
1192
|
+
localAdmins: localAdminSettings | null;
|
|
1048
1193
|
}
|
|
1049
1194
|
|
|
1050
1195
|
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
@@ -1069,6 +1214,18 @@ namespace reference.`microsoft.graph` {
|
|
|
1069
1214
|
@references endUserNotification: endUserNotification | null;
|
|
1070
1215
|
}
|
|
1071
1216
|
|
|
1217
|
+
@complex model baselineParameter {
|
|
1218
|
+
description: string | null;
|
|
1219
|
+
displayName: string;
|
|
1220
|
+
parameterType: baselineParameterType;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
@complex model baselineResource {
|
|
1224
|
+
displayName: string;
|
|
1225
|
+
properties: openComplexDictionaryType;
|
|
1226
|
+
resourceType: string;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1072
1229
|
@complex model basicAuthentication extends apiAuthenticationConfigurationBase {
|
|
1073
1230
|
password: string | null;
|
|
1074
1231
|
username: string | null;
|
|
@@ -1288,6 +1445,15 @@ namespace reference.`microsoft.graph` {
|
|
|
1288
1445
|
isVideoOnDemandEnabled: boolean | null;
|
|
1289
1446
|
}
|
|
1290
1447
|
|
|
1448
|
+
@complex model browseQueryResponseItem {
|
|
1449
|
+
itemKey: string | null;
|
|
1450
|
+
itemsCount: int32 | null;
|
|
1451
|
+
name: string | null;
|
|
1452
|
+
sizeInBytes: string | null;
|
|
1453
|
+
type: browseQueryResponseItemType;
|
|
1454
|
+
webUrl: string | null;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1291
1457
|
@complex model browserSharedCookieHistory {
|
|
1292
1458
|
/**
|
|
1293
1459
|
* The comment of the cookie
|
|
@@ -1641,6 +1807,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1641
1807
|
displayAs: string | null;
|
|
1642
1808
|
}
|
|
1643
1809
|
|
|
1810
|
+
@complex model claimBinding {
|
|
1811
|
+
matchConfidenceLevel: matchConfidenceLevel;
|
|
1812
|
+
sourceAttribute: string;
|
|
1813
|
+
verifiedIdClaim: string;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
@complex model claimValidation {
|
|
1817
|
+
customExtensionId: string;
|
|
1818
|
+
isEnabled: boolean;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1644
1821
|
@complex model classifcationErrorBase {
|
|
1645
1822
|
code: string | null;
|
|
1646
1823
|
innerError: classificationInnerError | null;
|
|
@@ -2124,6 +2301,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2124
2301
|
tenantId: string | null;
|
|
2125
2302
|
}
|
|
2126
2303
|
|
|
2304
|
+
@complex model crossTenantAccessPolicyAppServiceConnectSetting {
|
|
2305
|
+
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2127
2308
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
2128
2309
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2129
2310
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -2135,6 +2316,14 @@ namespace reference.`microsoft.graph` {
|
|
|
2135
2316
|
isMfaAccepted: boolean | null;
|
|
2136
2317
|
}
|
|
2137
2318
|
|
|
2319
|
+
@complex model crossTenantAccessPolicyM365CollaborationInboundSetting {
|
|
2320
|
+
users: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
@complex model crossTenantAccessPolicyM365CollaborationOutboundSetting {
|
|
2324
|
+
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2138
2327
|
@complex model crossTenantAccessPolicyTarget {
|
|
2139
2328
|
target: string | null;
|
|
2140
2329
|
targetType: crossTenantAccessPolicyTargetType | null;
|
|
@@ -2157,7 +2346,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2157
2346
|
locale: string | null;
|
|
2158
2347
|
}
|
|
2159
2348
|
|
|
2349
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
2350
|
+
identifierUris: identifierUriConfiguration | null;
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2160
2353
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
2354
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2161
2355
|
}
|
|
2162
2356
|
|
|
2163
2357
|
@abstract
|
|
@@ -2215,6 +2409,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2215
2409
|
@complex model customMetadataDictionary extends Dictionary {
|
|
2216
2410
|
}
|
|
2217
2411
|
|
|
2412
|
+
@abstract
|
|
2413
|
+
@complex model customSecurityAttributeExemption {
|
|
2414
|
+
id: string;
|
|
2415
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
2419
|
+
value: string | null;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2218
2422
|
@open
|
|
2219
2423
|
@complex model customSecurityAttributeValue {
|
|
2220
2424
|
}
|
|
@@ -2946,6 +3150,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2946
3150
|
status: string | null;
|
|
2947
3151
|
}
|
|
2948
3152
|
|
|
3153
|
+
@complex model driftedProperty {
|
|
3154
|
+
currentValue: Json | null;
|
|
3155
|
+
desiredValue: Json | null;
|
|
3156
|
+
propertyName: string;
|
|
3157
|
+
}
|
|
3158
|
+
|
|
2949
3159
|
@complex model driveItemSource {
|
|
2950
3160
|
application: driveItemSourceApplication | null;
|
|
2951
3161
|
externalId: string | null;
|
|
@@ -3209,6 +3419,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3209
3419
|
name: string | null;
|
|
3210
3420
|
}
|
|
3211
3421
|
|
|
3422
|
+
@complex model emailDetails {
|
|
3423
|
+
body: string;
|
|
3424
|
+
senderEmailAddress: string;
|
|
3425
|
+
subject: string;
|
|
3426
|
+
}
|
|
3427
|
+
|
|
3212
3428
|
@open
|
|
3213
3429
|
@complex model emailIdentity extends identity {
|
|
3214
3430
|
email: string | null;
|
|
@@ -3272,10 +3488,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3272
3488
|
users: string[] | null;
|
|
3273
3489
|
}
|
|
3274
3490
|
|
|
3491
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
3492
|
+
domainNames: string[];
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3275
3495
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
3276
3496
|
scopes: string[];
|
|
3277
3497
|
}
|
|
3278
3498
|
|
|
3499
|
+
@complex model errorDetail {
|
|
3500
|
+
errorMessage: string;
|
|
3501
|
+
resourceInstanceName: string;
|
|
3502
|
+
resourceType: string;
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3279
3505
|
@abstract
|
|
3280
3506
|
@complex model eventMessageDetail {
|
|
3281
3507
|
}
|
|
@@ -3297,6 +3523,13 @@ namespace reference.`microsoft.graph` {
|
|
|
3297
3523
|
type: expirationPatternType | null;
|
|
3298
3524
|
}
|
|
3299
3525
|
|
|
3526
|
+
@complex model exportItemResponse {
|
|
3527
|
+
changeKey: string | null;
|
|
3528
|
+
data: stream | null;
|
|
3529
|
+
error: mailTipsError | null;
|
|
3530
|
+
itemId: string | null;
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3300
3533
|
@complex model expressionInputObject {
|
|
3301
3534
|
definition: objectDefinition | null;
|
|
3302
3535
|
properties: stringKeyObjectValuePair[] | null;
|
|
@@ -3328,6 +3561,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3328
3561
|
labels: sensitivityLabelAssignment[] | null;
|
|
3329
3562
|
}
|
|
3330
3563
|
|
|
3564
|
+
@complex model faceCheckConfiguration {
|
|
3565
|
+
isEnabled: boolean;
|
|
3566
|
+
sourcePhotoClaimName: string;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3331
3569
|
@complex model fallbackToMicrosoftProviderOnError extends customExtensionBehaviorOnError {
|
|
3332
3570
|
}
|
|
3333
3571
|
|
|
@@ -3563,6 +3801,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3563
3801
|
isPicture: boolean | null;
|
|
3564
3802
|
}
|
|
3565
3803
|
|
|
3804
|
+
@complex model identifierUriConfiguration {
|
|
3805
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
3806
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
@complex model identifierUriRestriction {
|
|
3810
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3811
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
3812
|
+
excludeSaml: boolean | null;
|
|
3813
|
+
isStateSetByMicrosoft: boolean;
|
|
3814
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3815
|
+
state: appManagementRestrictionState;
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3566
3818
|
@open
|
|
3567
3819
|
@complex model identity {
|
|
3568
3820
|
displayName: string | null;
|
|
@@ -4125,6 +4377,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4125
4377
|
passcode: string | null;
|
|
4126
4378
|
}
|
|
4127
4379
|
|
|
4380
|
+
/**
|
|
4381
|
+
* Standard way to represent a Json blob on Graph.
|
|
4382
|
+
*/
|
|
4128
4383
|
@complex model Json {
|
|
4129
4384
|
}
|
|
4130
4385
|
|
|
@@ -4185,6 +4440,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4185
4440
|
isEnabled: boolean | null;
|
|
4186
4441
|
}
|
|
4187
4442
|
|
|
4443
|
+
@complex model localAdminSettings {
|
|
4444
|
+
enableGlobalAdmins: boolean | null;
|
|
4445
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4188
4448
|
@complex model localeInfo {
|
|
4189
4449
|
displayName: string | null;
|
|
4190
4450
|
locale: string | null;
|
|
@@ -4352,6 +4612,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4352
4612
|
externalDirectoryObjectId: string | null;
|
|
4353
4613
|
}
|
|
4354
4614
|
|
|
4615
|
+
@complex model mailboxItemImportSession {
|
|
4616
|
+
expirationDateTime: offsetDateTime | null;
|
|
4617
|
+
importUrl: string | null;
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4355
4620
|
@complex model mailboxSettings {
|
|
4356
4621
|
archiveFolder: string | null;
|
|
4357
4622
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -4852,6 +5117,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4852
5117
|
oneNoteWebUrl: externalLink | null;
|
|
4853
5118
|
}
|
|
4854
5119
|
|
|
5120
|
+
@complex model notificationRecipients {
|
|
5121
|
+
customRecipients: emailIdentity[];
|
|
5122
|
+
role: notificationRecipientsType;
|
|
5123
|
+
}
|
|
5124
|
+
|
|
4855
5125
|
@complex model noTrainingNotificationSetting extends endUserNotificationSetting {
|
|
4856
5126
|
simulationNotification: simulationNotification | null;
|
|
4857
5127
|
}
|
|
@@ -5125,6 +5395,16 @@ namespace reference.`microsoft.graph` {
|
|
|
5125
5395
|
@complex model onOtpSendHandler {
|
|
5126
5396
|
}
|
|
5127
5397
|
|
|
5398
|
+
@complex model onPasswordMigrationCustomExtensionHandler extends onPasswordSubmitHandler {
|
|
5399
|
+
configuration: customExtensionOverwriteConfiguration | null;
|
|
5400
|
+
migrationPropertyId: string;
|
|
5401
|
+
@references customExtension: onPasswordSubmitCustomExtension | null;
|
|
5402
|
+
}
|
|
5403
|
+
|
|
5404
|
+
@abstract
|
|
5405
|
+
@complex model onPasswordSubmitHandler {
|
|
5406
|
+
}
|
|
5407
|
+
|
|
5128
5408
|
@complex model onPremisesAccidentalDeletionPrevention {
|
|
5129
5409
|
alertThreshold: int32 | null;
|
|
5130
5410
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
@@ -5135,6 +5415,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5135
5415
|
}
|
|
5136
5416
|
|
|
5137
5417
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
5418
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
5138
5419
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
5139
5420
|
blockSoftMatchEnabled: boolean | null;
|
|
5140
5421
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -5202,6 +5483,19 @@ namespace reference.`microsoft.graph` {
|
|
|
5202
5483
|
@complex model onUserCreateStartHandler {
|
|
5203
5484
|
}
|
|
5204
5485
|
|
|
5486
|
+
@complex model onVerifiedIdClaimValidationCustomExtensionHandler extends onVerifiedIdClaimValidationHandler {
|
|
5487
|
+
configuration: customExtensionOverwriteConfiguration | null;
|
|
5488
|
+
@references customExtension: onVerifiedIdClaimValidationCustomExtension | null;
|
|
5489
|
+
}
|
|
5490
|
+
|
|
5491
|
+
@abstract
|
|
5492
|
+
@complex model onVerifiedIdClaimValidationHandler {
|
|
5493
|
+
}
|
|
5494
|
+
|
|
5495
|
+
@open
|
|
5496
|
+
@complex model openComplexDictionaryType extends Dictionary {
|
|
5497
|
+
}
|
|
5498
|
+
|
|
5205
5499
|
@complex model openIdConnectSetting {
|
|
5206
5500
|
clientId: string;
|
|
5207
5501
|
discoveryUrl: string;
|
|
@@ -5293,7 +5587,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5293
5587
|
*/
|
|
5294
5588
|
privacySettingsHidden: boolean;
|
|
5295
5589
|
/**
|
|
5296
|
-
* The type of user. Possible values are administrator and standard. Default value is administrator.
|
|
5590
|
+
* The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
|
|
5297
5591
|
|
|
5298
5592
|
*/
|
|
5299
5593
|
userType: windowsUserType;
|
|
@@ -5308,6 +5602,21 @@ namespace reference.`microsoft.graph` {
|
|
|
5308
5602
|
type: string | null;
|
|
5309
5603
|
}
|
|
5310
5604
|
|
|
5605
|
+
@complex model packageAccessEntity {
|
|
5606
|
+
resourceId: string;
|
|
5607
|
+
resourceType: accessEntityType;
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
@complex model packageElement {
|
|
5611
|
+
definition: Json | null;
|
|
5612
|
+
id: string | null;
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
@complex model packageElementDetail {
|
|
5616
|
+
elements: packageElement[];
|
|
5617
|
+
elementType: string | null;
|
|
5618
|
+
}
|
|
5619
|
+
|
|
5311
5620
|
@complex model pageLinks {
|
|
5312
5621
|
oneNoteClientUrl: externalLink | null;
|
|
5313
5622
|
oneNoteWebUrl: externalLink | null;
|
|
@@ -7108,6 +7417,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7108
7417
|
managerLevel: int32 | null;
|
|
7109
7418
|
}
|
|
7110
7419
|
|
|
7420
|
+
@complex model targetOwners {
|
|
7421
|
+
notifyMembers: notifyMembers;
|
|
7422
|
+
securityGroups: string[];
|
|
7423
|
+
}
|
|
7424
|
+
|
|
7111
7425
|
@complex model targetResource {
|
|
7112
7426
|
displayName: string | null;
|
|
7113
7427
|
groupType: groupType | null;
|
|
@@ -7847,6 +8161,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7847
8161
|
workLocationType: workLocationType;
|
|
7848
8162
|
}
|
|
7849
8163
|
|
|
8164
|
+
@abstract
|
|
8165
|
+
@complex model validatingDomains {
|
|
8166
|
+
rootDomains: rootDomains;
|
|
8167
|
+
}
|
|
8168
|
+
|
|
7850
8169
|
@complex model verifiedDomain {
|
|
7851
8170
|
capabilities: string | null;
|
|
7852
8171
|
isDefault: boolean | null;
|
|
@@ -7855,6 +8174,19 @@ namespace reference.`microsoft.graph` {
|
|
|
7855
8174
|
type: string | null;
|
|
7856
8175
|
}
|
|
7857
8176
|
|
|
8177
|
+
@complex model verifiedIdProfileConfiguration {
|
|
8178
|
+
acceptedIssuer: string;
|
|
8179
|
+
claimBindings: claimBinding[];
|
|
8180
|
+
claimBindingSource: claimBindingSource;
|
|
8181
|
+
claimValidation: claimValidation;
|
|
8182
|
+
type: string;
|
|
8183
|
+
}
|
|
8184
|
+
|
|
8185
|
+
@complex model verifiedIdUsageConfiguration {
|
|
8186
|
+
isEnabledForTestOnly: boolean;
|
|
8187
|
+
purpose: verifiedIdUsageConfigurationPurpose;
|
|
8188
|
+
}
|
|
8189
|
+
|
|
7858
8190
|
@complex model verifiedPublisher {
|
|
7859
8191
|
addedDateTime: offsetDateTime | null;
|
|
7860
8192
|
displayName: string | null;
|
|
@@ -7976,6 +8308,70 @@ namespace reference.`microsoft.graph` {
|
|
|
7976
8308
|
dnsConfiguration: webApplicationFirewallDnsConfiguration | null;
|
|
7977
8309
|
}
|
|
7978
8310
|
|
|
8311
|
+
@open
|
|
8312
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
8313
|
+
}
|
|
8314
|
+
|
|
8315
|
+
@open
|
|
8316
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
8317
|
+
}
|
|
8318
|
+
|
|
8319
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
8320
|
+
attestationObject: string | null;
|
|
8321
|
+
clientDataJSON: string | null;
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8324
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
8325
|
+
authenticatorAttachment: string | null;
|
|
8326
|
+
requireResidentKey: boolean | null;
|
|
8327
|
+
userVerification: string | null;
|
|
8328
|
+
}
|
|
8329
|
+
|
|
8330
|
+
@complex model webauthnCredentialCreationOptions {
|
|
8331
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
8332
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
8333
|
+
}
|
|
8334
|
+
|
|
8335
|
+
@complex model webauthnPublicKeyCredential {
|
|
8336
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
8337
|
+
id: string | null;
|
|
8338
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
8339
|
+
}
|
|
8340
|
+
|
|
8341
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
8342
|
+
attestation: string | null;
|
|
8343
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
8344
|
+
challenge: string | null;
|
|
8345
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
8346
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
8347
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
8348
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
8349
|
+
timeout: int32 | null;
|
|
8350
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
8351
|
+
}
|
|
8352
|
+
|
|
8353
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
8354
|
+
id: string | null;
|
|
8355
|
+
transports: string[] | null;
|
|
8356
|
+
type: string | null;
|
|
8357
|
+
}
|
|
8358
|
+
|
|
8359
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
8360
|
+
alg: int32 | null;
|
|
8361
|
+
type: string | null;
|
|
8362
|
+
}
|
|
8363
|
+
|
|
8364
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
8365
|
+
id: string | null;
|
|
8366
|
+
name: string | null;
|
|
8367
|
+
}
|
|
8368
|
+
|
|
8369
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
8370
|
+
displayName: string | null;
|
|
8371
|
+
id: string | null;
|
|
8372
|
+
name: string | null;
|
|
8373
|
+
}
|
|
8374
|
+
|
|
7979
8375
|
@complex model webPartData {
|
|
7980
8376
|
dataVersion: string | null;
|
|
7981
8377
|
description: string | null;
|
|
@@ -8927,6 +9323,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8927
9323
|
displayName: string | null;
|
|
8928
9324
|
originId: string | null;
|
|
8929
9325
|
originSystem: string | null;
|
|
9326
|
+
type: roleType | null;
|
|
8930
9327
|
@contains resource: accessPackageResource | null;
|
|
8931
9328
|
}
|
|
8932
9329
|
|
|
@@ -8951,10 +9348,16 @@ namespace reference.`microsoft.graph` {
|
|
|
8951
9348
|
objectId: string | null;
|
|
8952
9349
|
onPremisesSecurityIdentifier: string | null;
|
|
8953
9350
|
principalName: string | null;
|
|
9351
|
+
subjectLifecycle: accessPackageSubjectLifecycle;
|
|
8954
9352
|
subjectType: accessPackageSubjectType | null;
|
|
8955
9353
|
@references connectedOrganization: connectedOrganization | null;
|
|
8956
9354
|
}
|
|
8957
9355
|
|
|
9356
|
+
@entity model accessPackageSuggestion extends entity {
|
|
9357
|
+
reasons: accessPackageSuggestionReason[];
|
|
9358
|
+
@references accessPackage: availableAccessPackage | null;
|
|
9359
|
+
}
|
|
9360
|
+
|
|
8958
9361
|
@entity model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
8959
9362
|
isSingleLineQuestion: boolean | null;
|
|
8960
9363
|
regexPattern: string | null;
|
|
@@ -9079,6 +9482,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9079
9482
|
}
|
|
9080
9483
|
|
|
9081
9484
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
9485
|
+
@contains configurationManagement: configurationManagement | null;
|
|
9082
9486
|
@contains edge: edge | null;
|
|
9083
9487
|
@contains exchange: exchangeAdmin | null;
|
|
9084
9488
|
@contains microsoft365Apps: adminMicrosoft365Apps | null;
|
|
@@ -9123,21 +9527,18 @@ namespace reference.`microsoft.graph` {
|
|
|
9123
9527
|
@open
|
|
9124
9528
|
@entity model agentIdentity extends servicePrincipal {
|
|
9125
9529
|
agentIdentityBlueprintId: string;
|
|
9126
|
-
createdByAppId: string | null;
|
|
9127
9530
|
@computed createdDateTime: offsetDateTime | null;
|
|
9128
9531
|
@references sponsors: directoryObject[];
|
|
9129
9532
|
}
|
|
9130
9533
|
|
|
9131
9534
|
@open
|
|
9132
9535
|
@entity model agentIdentityBlueprint extends application {
|
|
9133
|
-
createdByAppId: string | null;
|
|
9134
9536
|
@contains inheritablePermissions: inheritablePermission[];
|
|
9135
9537
|
@references sponsors: directoryObject[];
|
|
9136
9538
|
}
|
|
9137
9539
|
|
|
9138
9540
|
@open
|
|
9139
9541
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
9140
|
-
createdByAppId: string | null;
|
|
9141
9542
|
@references sponsors: directoryObject[];
|
|
9142
9543
|
}
|
|
9143
9544
|
|
|
@@ -9989,6 +10390,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9989
10390
|
appRoles: appRole[];
|
|
9990
10391
|
authenticationBehaviors: authenticationBehaviors | null;
|
|
9991
10392
|
certification: certification | null;
|
|
10393
|
+
createdByAppId: string | null;
|
|
9992
10394
|
@computed createdDateTime: offsetDateTime | null;
|
|
9993
10395
|
defaultRedirectUri: string | null;
|
|
9994
10396
|
description: string | null;
|
|
@@ -9998,9 +10400,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9998
10400
|
identifierUris: string[];
|
|
9999
10401
|
info: informationalUrl | null;
|
|
10000
10402
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
10403
|
+
isDisabled: boolean | null;
|
|
10001
10404
|
isFallbackPublicClient: boolean | null;
|
|
10002
10405
|
keyCredentials: keyCredential[];
|
|
10003
10406
|
logo: stream;
|
|
10407
|
+
managerApplications: guid;
|
|
10004
10408
|
nativeAuthenticationApisEnabled: nativeAuthenticationApisEnabled | null;
|
|
10005
10409
|
notes: string | null;
|
|
10006
10410
|
oauth2RequirePostResponse: boolean;
|
|
@@ -10034,11 +10438,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10034
10438
|
|
|
10035
10439
|
@entity model applicationTemplate extends entity {
|
|
10036
10440
|
categories: string[] | null;
|
|
10441
|
+
deprecationDate: offsetDateTime | null;
|
|
10037
10442
|
description: string | null;
|
|
10038
10443
|
displayName: string | null;
|
|
10444
|
+
endpoints: string[] | null;
|
|
10039
10445
|
homePageUrl: string | null;
|
|
10446
|
+
isEntraIntegrated: boolean;
|
|
10447
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
10040
10448
|
logoUrl: string | null;
|
|
10041
10449
|
publisher: string | null;
|
|
10450
|
+
riskFactors: applicationRiskFactors | null;
|
|
10451
|
+
riskScore: applicationRiskScore | null;
|
|
10042
10452
|
supportedProvisioningTypes: string[] | null;
|
|
10043
10453
|
supportedSingleSignOnModes: string[] | null;
|
|
10044
10454
|
}
|
|
@@ -10095,6 +10505,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10095
10505
|
status: string | null;
|
|
10096
10506
|
}
|
|
10097
10507
|
|
|
10508
|
+
@entity model approvedClientApp extends entity {
|
|
10509
|
+
displayName: string | null;
|
|
10510
|
+
}
|
|
10511
|
+
|
|
10098
10512
|
@entity model appScope extends entity {
|
|
10099
10513
|
displayName: string | null;
|
|
10100
10514
|
type: string | null;
|
|
@@ -10357,6 +10771,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10357
10771
|
guestUserRoleId: guid | null;
|
|
10358
10772
|
}
|
|
10359
10773
|
|
|
10774
|
+
@entity model availableAccessPackage extends entity {
|
|
10775
|
+
description: string | null;
|
|
10776
|
+
displayName: string | null;
|
|
10777
|
+
@references resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
10778
|
+
}
|
|
10779
|
+
|
|
10360
10780
|
@entity model azureCommunicationServicesUserConversationMember extends conversationMember {
|
|
10361
10781
|
azureCommunicationServicesId: string | null;
|
|
10362
10782
|
}
|
|
@@ -10373,14 +10793,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10373
10793
|
|
|
10374
10794
|
@entity model backupRestoreRoot extends entity {
|
|
10375
10795
|
serviceStatus: serviceStatus | null;
|
|
10796
|
+
@contains browseSessions: browseSessionBase[];
|
|
10376
10797
|
@contains driveInclusionRules: driveProtectionRule[];
|
|
10377
10798
|
@contains driveProtectionUnits: driveProtectionUnit[];
|
|
10378
10799
|
@contains driveProtectionUnitsBulkAdditionJobs: driveProtectionUnitsBulkAdditionJob[];
|
|
10800
|
+
@contains emailNotificationsSetting: emailNotificationsSetting | null;
|
|
10379
10801
|
@contains exchangeProtectionPolicies: exchangeProtectionPolicy[];
|
|
10380
10802
|
@contains exchangeRestoreSessions: exchangeRestoreSession[];
|
|
10381
10803
|
@contains mailboxInclusionRules: mailboxProtectionRule[];
|
|
10382
10804
|
@contains mailboxProtectionUnits: mailboxProtectionUnit[];
|
|
10383
10805
|
@contains mailboxProtectionUnitsBulkAdditionJobs: mailboxProtectionUnitsBulkAdditionJob[];
|
|
10806
|
+
@contains oneDriveForBusinessBrowseSessions: oneDriveForBusinessBrowseSession[];
|
|
10384
10807
|
@contains oneDriveForBusinessProtectionPolicies: oneDriveForBusinessProtectionPolicy[];
|
|
10385
10808
|
@contains oneDriveForBusinessRestoreSessions: oneDriveForBusinessRestoreSession[];
|
|
10386
10809
|
@contains protectionPolicies: protectionPolicyBase[];
|
|
@@ -10388,6 +10811,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10388
10811
|
@contains restorePoints: restorePoint[];
|
|
10389
10812
|
@contains restoreSessions: restoreSessionBase[];
|
|
10390
10813
|
@contains serviceApps: serviceApp[];
|
|
10814
|
+
@contains sharePointBrowseSessions: sharePointBrowseSession[];
|
|
10391
10815
|
@contains sharePointProtectionPolicies: sharePointProtectionPolicy[];
|
|
10392
10816
|
@contains sharePointRestoreSessions: sharePointRestoreSession[];
|
|
10393
10817
|
@contains siteInclusionRules: siteProtectionRule[];
|
|
@@ -10798,6 +11222,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10798
11222
|
@contains sites: browserSite[];
|
|
10799
11223
|
}
|
|
10800
11224
|
|
|
11225
|
+
@abstract
|
|
11226
|
+
@entity model browseSessionBase extends entity {
|
|
11227
|
+
backupSizeInBytes: string | null;
|
|
11228
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11229
|
+
error: publicError | null;
|
|
11230
|
+
expirationDateTime: offsetDateTime | null;
|
|
11231
|
+
restorePointDateTime: offsetDateTime | null;
|
|
11232
|
+
restorePointId: string | null;
|
|
11233
|
+
status: browseSessionStatus;
|
|
11234
|
+
}
|
|
11235
|
+
|
|
10801
11236
|
@entity model building extends place {
|
|
10802
11237
|
resourceLinks: resourceLink[];
|
|
10803
11238
|
wifiState: placeFeatureEnablement;
|
|
@@ -10936,6 +11371,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10936
11371
|
@contains verticalSection: verticalSection | null;
|
|
10937
11372
|
}
|
|
10938
11373
|
|
|
11374
|
+
@entity model caPoliciesDeletableRoot extends entity {
|
|
11375
|
+
@contains namedLocations: namedLocation[];
|
|
11376
|
+
@contains policies: conditionalAccessPolicy[];
|
|
11377
|
+
}
|
|
11378
|
+
|
|
10939
11379
|
@entity model certificateAuthorityDetail extends directoryObject {
|
|
10940
11380
|
certificate: binary;
|
|
10941
11381
|
certificateAuthorityType: certificateAuthorityType | null;
|
|
@@ -10977,11 +11417,15 @@ namespace reference.`microsoft.graph` {
|
|
|
10977
11417
|
email: string | null;
|
|
10978
11418
|
isArchived: boolean | null;
|
|
10979
11419
|
isFavoriteByDefault: boolean | null;
|
|
11420
|
+
layoutType: channelLayoutType | null;
|
|
10980
11421
|
membershipType: channelMembershipType | null;
|
|
11422
|
+
migrationMode: migrationMode | null;
|
|
11423
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10981
11424
|
summary: channelSummary | null;
|
|
10982
11425
|
tenantId: string | null;
|
|
10983
11426
|
webUrl: string | null;
|
|
10984
11427
|
@contains allMembers: conversationMember[];
|
|
11428
|
+
@references enabledApps: teamsApp[];
|
|
10985
11429
|
@contains filesFolder: driveItem | null;
|
|
10986
11430
|
@contains members: conversationMember[];
|
|
10987
11431
|
@contains messages: chatMessage[];
|
|
@@ -10994,7 +11438,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10994
11438
|
@computed createdDateTime: offsetDateTime | null;
|
|
10995
11439
|
isHiddenForAllMembers: boolean | null;
|
|
10996
11440
|
@computed lastUpdatedDateTime: offsetDateTime | null;
|
|
11441
|
+
migrationMode: migrationMode | null;
|
|
10997
11442
|
onlineMeetingInfo: teamworkOnlineMeetingInfo | null;
|
|
11443
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10998
11444
|
tenantId: string | null;
|
|
10999
11445
|
topic: string | null;
|
|
11000
11446
|
viewpoint: chatViewpoint | null;
|
|
@@ -11006,6 +11452,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11006
11452
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
11007
11453
|
@contains pinnedMessages: pinnedChatMessageInfo[];
|
|
11008
11454
|
@contains tabs: teamsTab[];
|
|
11455
|
+
@contains targetedMessages: targetedChatMessage[];
|
|
11009
11456
|
}
|
|
11010
11457
|
|
|
11011
11458
|
@entity model chatMessage extends entity {
|
|
@@ -11133,6 +11580,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11133
11580
|
operatingSystem: string | null;
|
|
11134
11581
|
osBuildNumber: string | null;
|
|
11135
11582
|
osStatus: cloudPcDeviceImageOsStatus | null;
|
|
11583
|
+
osVersionNumber: string | null;
|
|
11584
|
+
sizeInGB: int32 | null;
|
|
11136
11585
|
sourceImageResourceId: string | null;
|
|
11137
11586
|
status: cloudPcDeviceImageStatus | null;
|
|
11138
11587
|
version: string | null;
|
|
@@ -11143,6 +11592,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11143
11592
|
endDate: offsetDateTime | null;
|
|
11144
11593
|
expirationDate: offsetDateTime | null;
|
|
11145
11594
|
offerName: string | null;
|
|
11595
|
+
osVersionNumber: string | null;
|
|
11146
11596
|
publisherName: string | null;
|
|
11147
11597
|
sizeInGB: int32 | null;
|
|
11148
11598
|
skuName: string | null;
|
|
@@ -11157,11 +11607,14 @@ namespace reference.`microsoft.graph` {
|
|
|
11157
11607
|
alternateResourceUrl: string | null;
|
|
11158
11608
|
connectionType: cloudPcOnPremisesConnectionType | null;
|
|
11159
11609
|
displayName: string;
|
|
11610
|
+
healthCheckPaused: boolean | null;
|
|
11160
11611
|
healthCheckStatus: cloudPcOnPremisesConnectionStatus;
|
|
11161
11612
|
healthCheckStatusDetail: cloudPcOnPremisesConnectionStatusDetail | null;
|
|
11162
11613
|
inUse: boolean | null;
|
|
11614
|
+
inUseByCloudPc: boolean | null;
|
|
11163
11615
|
organizationalUnit: string | null;
|
|
11164
11616
|
resourceGroupId: string;
|
|
11617
|
+
scopeIds: string[] | null;
|
|
11165
11618
|
subnetId: string;
|
|
11166
11619
|
subscriptionId: string;
|
|
11167
11620
|
subscriptionName: string | null;
|
|
@@ -11349,12 +11802,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11349
11802
|
partnerState: deviceManagementPartnerTenantState;
|
|
11350
11803
|
}
|
|
11351
11804
|
|
|
11352
|
-
@entity model conditionalAccessPolicy extends
|
|
11805
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
11353
11806
|
conditions: conditionalAccessConditionSet;
|
|
11354
11807
|
@computed createdDateTime: offsetDateTime | null;
|
|
11355
11808
|
description: string | null;
|
|
11356
11809
|
displayName: string;
|
|
11357
11810
|
grantControls: conditionalAccessGrantControls | null;
|
|
11811
|
+
@computed @key id: string;
|
|
11358
11812
|
modifiedDateTime: offsetDateTime | null;
|
|
11359
11813
|
sessionControls: conditionalAccessSessionControls | null;
|
|
11360
11814
|
state: conditionalAccessPolicyState;
|
|
@@ -11364,6 +11818,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11364
11818
|
@entity model conditionalAccessRoot extends entity {
|
|
11365
11819
|
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
11366
11820
|
@contains authenticationStrength: authenticationStrengthRoot | null;
|
|
11821
|
+
@contains deletedItems: caPoliciesDeletableRoot | null;
|
|
11367
11822
|
@contains namedLocations: namedLocation[];
|
|
11368
11823
|
@contains policies: conditionalAccessPolicy[];
|
|
11369
11824
|
@contains templates: conditionalAccessTemplate[];
|
|
@@ -11376,6 +11831,71 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11376
11831
|
scenarios: templateScenarios;
|
|
11377
11832
|
}
|
|
11378
11833
|
|
|
11834
|
+
@entity model configurationBaseline extends entity {
|
|
11835
|
+
description: string;
|
|
11836
|
+
displayName: string;
|
|
11837
|
+
parameters: baselineParameter[];
|
|
11838
|
+
resources: baselineResource[];
|
|
11839
|
+
}
|
|
11840
|
+
|
|
11841
|
+
@entity model configurationDrift extends entity {
|
|
11842
|
+
baselineResourceDisplayName: string;
|
|
11843
|
+
driftedProperties: driftedProperty[];
|
|
11844
|
+
firstReportedDateTime: offsetDateTime;
|
|
11845
|
+
monitorId: string;
|
|
11846
|
+
resourceInstanceIdentifier: openComplexDictionaryType;
|
|
11847
|
+
resourceType: string;
|
|
11848
|
+
status: driftStatus;
|
|
11849
|
+
tenantId: string;
|
|
11850
|
+
}
|
|
11851
|
+
|
|
11852
|
+
@entity model configurationManagement extends entity {
|
|
11853
|
+
@contains configurationDrifts: configurationDrift[];
|
|
11854
|
+
@contains configurationMonitoringResults: configurationMonitoringResult[];
|
|
11855
|
+
@contains configurationMonitors: configurationMonitor[];
|
|
11856
|
+
@contains configurationSnapshotJobs: configurationSnapshotJob[];
|
|
11857
|
+
@contains configurationSnapshots: configurationBaseline[];
|
|
11858
|
+
}
|
|
11859
|
+
|
|
11860
|
+
@entity model configurationMonitor extends entity {
|
|
11861
|
+
createdBy: identitySet;
|
|
11862
|
+
@computed createdDateTime: offsetDateTime;
|
|
11863
|
+
description: string;
|
|
11864
|
+
displayName: string;
|
|
11865
|
+
inactivationReason: string | null;
|
|
11866
|
+
lastModifiedBy: identitySet;
|
|
11867
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
11868
|
+
mode: monitorMode;
|
|
11869
|
+
monitorRunFrequencyInHours: int32;
|
|
11870
|
+
parameters: openComplexDictionaryType | null;
|
|
11871
|
+
status: monitorStatus;
|
|
11872
|
+
tenantId: string;
|
|
11873
|
+
@contains baseline: configurationBaseline;
|
|
11874
|
+
}
|
|
11875
|
+
|
|
11876
|
+
@entity model configurationMonitoringResult extends entity {
|
|
11877
|
+
driftsCount: int32;
|
|
11878
|
+
errorDetails: errorDetail[];
|
|
11879
|
+
monitorId: string;
|
|
11880
|
+
runCompletionDateTime: offsetDateTime;
|
|
11881
|
+
runInitiationDateTime: offsetDateTime;
|
|
11882
|
+
runStatus: monitorRunStatus;
|
|
11883
|
+
tenantId: string;
|
|
11884
|
+
}
|
|
11885
|
+
|
|
11886
|
+
@entity model configurationSnapshotJob extends entity {
|
|
11887
|
+
completedDateTime: offsetDateTime;
|
|
11888
|
+
createdBy: identitySet;
|
|
11889
|
+
@computed createdDateTime: offsetDateTime;
|
|
11890
|
+
description: string;
|
|
11891
|
+
displayName: string;
|
|
11892
|
+
errorDetails: string[];
|
|
11893
|
+
resourceLocation: string;
|
|
11894
|
+
resources: string[];
|
|
11895
|
+
status: snapshotJobStatus;
|
|
11896
|
+
tenantId: string;
|
|
11897
|
+
}
|
|
11898
|
+
|
|
11379
11899
|
@entity model connectedOrganization extends entity {
|
|
11380
11900
|
@computed createdDateTime: offsetDateTime | null;
|
|
11381
11901
|
description: string | null;
|
|
@@ -11480,6 +12000,15 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11480
12000
|
displayName: string | null;
|
|
11481
12001
|
}
|
|
11482
12002
|
|
|
12003
|
+
@abstract
|
|
12004
|
+
@entity model controlConfiguration extends entity {
|
|
12005
|
+
createdBy: string | null;
|
|
12006
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12007
|
+
isEnabled: boolean;
|
|
12008
|
+
modifiedBy: string | null;
|
|
12009
|
+
modifiedDateTime: offsetDateTime | null;
|
|
12010
|
+
}
|
|
12011
|
+
|
|
11483
12012
|
@entity model conversation extends entity {
|
|
11484
12013
|
hasAttachments: boolean;
|
|
11485
12014
|
@computed lastDeliveredDateTime: offsetDateTime;
|
|
@@ -11509,9 +12038,14 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11509
12038
|
}
|
|
11510
12039
|
|
|
11511
12040
|
@entity model copilotAdmin extends entity {
|
|
12041
|
+
@contains catalog: copilotAdminCatalog | null;
|
|
11512
12042
|
@contains settings: copilotAdminSetting | null;
|
|
11513
12043
|
}
|
|
11514
12044
|
|
|
12045
|
+
@entity model copilotAdminCatalog extends entity {
|
|
12046
|
+
@contains packages: copilotPackageDetail[];
|
|
12047
|
+
}
|
|
12048
|
+
|
|
11515
12049
|
@entity model copilotAdminLimitedMode extends entity {
|
|
11516
12050
|
groupId: string | null;
|
|
11517
12051
|
isEnabledForGroup: boolean | null;
|
|
@@ -11521,6 +12055,36 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11521
12055
|
@contains limitedMode: copilotAdminLimitedMode | null;
|
|
11522
12056
|
}
|
|
11523
12057
|
|
|
12058
|
+
@entity model copilotPackage extends entity {
|
|
12059
|
+
appId: string | null;
|
|
12060
|
+
assetId: string | null;
|
|
12061
|
+
availableTo: packageStatus;
|
|
12062
|
+
deployedTo: packageStatus;
|
|
12063
|
+
displayName: string | null;
|
|
12064
|
+
elementTypes: string[];
|
|
12065
|
+
isBlocked: boolean;
|
|
12066
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12067
|
+
manifestId: string | null;
|
|
12068
|
+
manifestVersion: string | null;
|
|
12069
|
+
ownerId: string | null;
|
|
12070
|
+
platform: string | null;
|
|
12071
|
+
publisher: string | null;
|
|
12072
|
+
shortDescription: string | null;
|
|
12073
|
+
supportedHosts: string[];
|
|
12074
|
+
type: packageType;
|
|
12075
|
+
version: string | null;
|
|
12076
|
+
zipFile: stream | null;
|
|
12077
|
+
}
|
|
12078
|
+
|
|
12079
|
+
@entity model copilotPackageDetail extends copilotPackage {
|
|
12080
|
+
acquireUsersAndGroups: packageAccessEntity[];
|
|
12081
|
+
allowedUsersAndGroups: packageAccessEntity[];
|
|
12082
|
+
categories: string[];
|
|
12083
|
+
elementDetails: packageElementDetail[];
|
|
12084
|
+
longDescription: string | null;
|
|
12085
|
+
sensitivity: string | null;
|
|
12086
|
+
}
|
|
12087
|
+
|
|
11524
12088
|
@entity model copilotReportRoot extends entity {
|
|
11525
12089
|
}
|
|
11526
12090
|
|
|
@@ -11545,6 +12109,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11545
12109
|
}
|
|
11546
12110
|
|
|
11547
12111
|
@entity model crossTenantAccessPolicyConfigurationDefault extends entity {
|
|
12112
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11548
12113
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11549
12114
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11550
12115
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11553,10 +12118,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11553
12118
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11554
12119
|
invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
|
|
11555
12120
|
isServiceDefault: boolean | null;
|
|
12121
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12122
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11556
12123
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11557
12124
|
}
|
|
11558
12125
|
|
|
11559
12126
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
12127
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11560
12128
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11561
12129
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11562
12130
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11565,6 +12133,8 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11565
12133
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11566
12134
|
isInMultiTenantOrganization: boolean | null;
|
|
11567
12135
|
isServiceProvider: boolean | null;
|
|
12136
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12137
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11568
12138
|
@computed @key tenantId: string;
|
|
11569
12139
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11570
12140
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
@@ -13721,6 +14291,12 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
13721
14291
|
recipientEmail: string;
|
|
13722
14292
|
}
|
|
13723
14293
|
|
|
14294
|
+
@entity model emailNotificationsSetting extends entity {
|
|
14295
|
+
additionalEvents: notificationEventsType;
|
|
14296
|
+
isEnabled: boolean;
|
|
14297
|
+
recipients: notificationRecipients;
|
|
14298
|
+
}
|
|
14299
|
+
|
|
13724
14300
|
@entity model emergencyCallEvent extends callEvent {
|
|
13725
14301
|
callerInfo: emergencyCallerInfo | null;
|
|
13726
14302
|
emergencyNumberDialed: string | null;
|
|
@@ -13787,6 +14363,11 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
13787
14363
|
subject: string;
|
|
13788
14364
|
}
|
|
13789
14365
|
|
|
14366
|
+
@entity model endUserSettings extends controlConfiguration {
|
|
14367
|
+
relatedPeopleInsightLevel: accessPackageSuggestionRelatedPeopleInsightLevel | null;
|
|
14368
|
+
showApproverDetailsToMembers: boolean;
|
|
14369
|
+
}
|
|
14370
|
+
|
|
13790
14371
|
/**
|
|
13791
14372
|
* Represents the status of a Viva Engage async operation that is an operation that transcends the
|
|
13792
14373
|
lifetime of a single API request. These operations are long-running or too expensive to complete
|
|
@@ -14030,16 +14611,20 @@ within the time frame of their original request.
|
|
|
14030
14611
|
@entity model entitlementManagement extends entity {
|
|
14031
14612
|
@contains accessPackageAssignmentApprovals: approval[];
|
|
14032
14613
|
@contains accessPackages: accessPackage[];
|
|
14614
|
+
@contains accessPackageSuggestions: accessPackageSuggestion[];
|
|
14033
14615
|
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
14034
14616
|
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
14035
14617
|
@contains assignments: accessPackageAssignment[];
|
|
14618
|
+
@contains availableAccessPackages: availableAccessPackage[];
|
|
14036
14619
|
@contains catalogs: accessPackageCatalog[];
|
|
14037
14620
|
@contains connectedOrganizations: connectedOrganization[];
|
|
14621
|
+
@contains controlConfigurations: controlConfiguration[];
|
|
14038
14622
|
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
14039
14623
|
@contains resourceRequests: accessPackageResourceRequest[];
|
|
14040
14624
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
14041
14625
|
@contains resources: accessPackageResource[];
|
|
14042
14626
|
@contains settings: entitlementManagementSettings | null;
|
|
14627
|
+
@contains subjects: accessPackageSubject[];
|
|
14043
14628
|
}
|
|
14044
14629
|
|
|
14045
14630
|
@entity model entitlementManagementSettings extends entity {
|
|
@@ -14128,6 +14713,7 @@ within the time frame of their original request.
|
|
|
14128
14713
|
}
|
|
14129
14714
|
|
|
14130
14715
|
@entity model exchangeAdmin extends entity {
|
|
14716
|
+
@contains mailboxes: mailbox[];
|
|
14131
14717
|
@contains tracing: messageTracingRoot | null;
|
|
14132
14718
|
}
|
|
14133
14719
|
|
|
@@ -14164,6 +14750,10 @@ within the time frame of their original request.
|
|
|
14164
14750
|
@contains mailboxRestoreArtifactsBulkAdditionRequests: mailboxRestoreArtifactsBulkAdditionRequest[];
|
|
14165
14751
|
}
|
|
14166
14752
|
|
|
14753
|
+
@entity model exchangeSettings extends entity {
|
|
14754
|
+
primaryMailboxId: string | null;
|
|
14755
|
+
}
|
|
14756
|
+
|
|
14167
14757
|
@abstract
|
|
14168
14758
|
@open
|
|
14169
14759
|
@entity model extension extends entity {
|
|
@@ -14220,15 +14810,22 @@ within the time frame of their original request.
|
|
|
14220
14810
|
subject: string;
|
|
14221
14811
|
}
|
|
14222
14812
|
|
|
14813
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
14814
|
+
validatingDomains: validatingDomains;
|
|
14815
|
+
}
|
|
14816
|
+
|
|
14223
14817
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
14224
14818
|
aaGuid: string | null;
|
|
14225
14819
|
attestationCertificates: string[] | null;
|
|
14226
14820
|
attestationLevel: attestationLevel | null;
|
|
14227
14821
|
displayName: string | null;
|
|
14228
14822
|
`model`: string | null;
|
|
14823
|
+
passkeyType: passkeyType | null;
|
|
14824
|
+
publicKeyCredential: webauthnPublicKeyCredential | null;
|
|
14229
14825
|
}
|
|
14230
14826
|
|
|
14231
14827
|
@entity model fido2AuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
14828
|
+
defaultPasskeyProfile: string | null;
|
|
14232
14829
|
|
|
14233
14830
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14234
14831
|
isAttestationEnforced: boolean | null;
|
|
@@ -14236,7 +14833,8 @@ within the time frame of their original request.
|
|
|
14236
14833
|
|
|
14237
14834
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14238
14835
|
keyRestrictions: fido2KeyRestrictions | null;
|
|
14239
|
-
@contains includeTargets:
|
|
14836
|
+
@contains includeTargets: passkeyAuthenticationMethodTarget[];
|
|
14837
|
+
@references passkeyProfiles: passkeyProfile[];
|
|
14240
14838
|
}
|
|
14241
14839
|
|
|
14242
14840
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -14340,16 +14938,37 @@ within the time frame of their original request.
|
|
|
14340
14938
|
insightCreatedDateTime: offsetDateTime | null;
|
|
14341
14939
|
}
|
|
14342
14940
|
|
|
14941
|
+
@entity model granularDriveRestoreArtifact extends granularRestoreArtifactBase {
|
|
14942
|
+
directoryObjectId: string | null;
|
|
14943
|
+
}
|
|
14944
|
+
|
|
14343
14945
|
@entity model granularMailboxRestoreArtifact extends mailboxRestoreArtifact {
|
|
14344
14946
|
artifactCount: int32 | null;
|
|
14345
14947
|
searchResponseId: string;
|
|
14346
14948
|
}
|
|
14347
14949
|
|
|
14950
|
+
@entity model granularRestoreArtifactBase extends entity {
|
|
14951
|
+
browseSessionId: string | null;
|
|
14952
|
+
completionDateTime: offsetDateTime | null;
|
|
14953
|
+
restoredItemKey: string | null;
|
|
14954
|
+
restoredItemPath: string | null;
|
|
14955
|
+
restoredItemWebUrl: string | null;
|
|
14956
|
+
restorePointDateTime: offsetDateTime | null;
|
|
14957
|
+
startDateTime: offsetDateTime | null;
|
|
14958
|
+
status: artifactRestoreStatus;
|
|
14959
|
+
webUrl: string | null;
|
|
14960
|
+
}
|
|
14961
|
+
|
|
14962
|
+
@entity model granularSiteRestoreArtifact extends granularRestoreArtifactBase {
|
|
14963
|
+
siteId: string | null;
|
|
14964
|
+
}
|
|
14965
|
+
|
|
14348
14966
|
/**
|
|
14349
14967
|
* Represents a Microsoft Entra group.
|
|
14350
14968
|
*/
|
|
14351
14969
|
@open
|
|
14352
14970
|
@entity model group extends directoryObject {
|
|
14971
|
+
accessType: groupAccessType | null;
|
|
14353
14972
|
allowExternalSenders: boolean | null;
|
|
14354
14973
|
assignedLabels: assignedLabel[] | null;
|
|
14355
14974
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -14363,8 +14982,10 @@ within the time frame of their original request.
|
|
|
14363
14982
|
hasMembersWithLicenseErrors: boolean | null;
|
|
14364
14983
|
hideFromAddressLists: boolean | null;
|
|
14365
14984
|
hideFromOutlookClients: boolean | null;
|
|
14985
|
+
infoCatalogs: string[];
|
|
14366
14986
|
isArchived: boolean | null;
|
|
14367
14987
|
isAssignableToRole: boolean | null;
|
|
14988
|
+
isFavorite: boolean | null;
|
|
14368
14989
|
isManagementRestricted: boolean | null;
|
|
14369
14990
|
isSubscribedByMail: boolean | null;
|
|
14370
14991
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -14374,6 +14995,7 @@ within the time frame of their original request.
|
|
|
14374
14995
|
membershipRule: string | null;
|
|
14375
14996
|
membershipRuleProcessingState: string | null;
|
|
14376
14997
|
onPremisesDomainName: string | null;
|
|
14998
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
14377
14999
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
14378
15000
|
onPremisesNetBiosName: string | null;
|
|
14379
15001
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -14391,7 +15013,9 @@ within the time frame of their original request.
|
|
|
14391
15013
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
14392
15014
|
theme: string | null;
|
|
14393
15015
|
uniqueName: string | null;
|
|
15016
|
+
unseenConversationsCount: int32 | null;
|
|
14394
15017
|
unseenCount: int32 | null;
|
|
15018
|
+
unseenMessagesCount: int32 | null;
|
|
14395
15019
|
visibility: string | null;
|
|
14396
15020
|
welcomeMessageEnabled: boolean | null;
|
|
14397
15021
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -14482,6 +15106,7 @@ within the time frame of their original request.
|
|
|
14482
15106
|
@contains identityProviders: identityProviderBase[];
|
|
14483
15107
|
@contains riskPrevention: riskPreventionContainer | null;
|
|
14484
15108
|
@contains userFlowAttributes: identityUserFlowAttribute[];
|
|
15109
|
+
@contains verifiedId: identityVerifiedIdRoot;
|
|
14485
15110
|
}
|
|
14486
15111
|
|
|
14487
15112
|
@entity model identityCustomUserFlowAttribute extends identityUserFlowAttribute {
|
|
@@ -14541,6 +15166,10 @@ within the time frame of their original request.
|
|
|
14541
15166
|
@references userAttribute: identityUserFlowAttribute | null;
|
|
14542
15167
|
}
|
|
14543
15168
|
|
|
15169
|
+
@entity model identityVerifiedIdRoot extends entity {
|
|
15170
|
+
@contains profiles: verifiedIdProfile[];
|
|
15171
|
+
}
|
|
15172
|
+
|
|
14544
15173
|
/**
|
|
14545
15174
|
* Imported windows autopilot devices.
|
|
14546
15175
|
*/
|
|
@@ -14687,7 +15316,7 @@ within the time frame of their original request.
|
|
|
14687
15316
|
*/
|
|
14688
15317
|
passcodeBlockSimple: boolean;
|
|
14689
15318
|
/**
|
|
14690
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
15319
|
+
* 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
|
|
14691
15320
|
*/
|
|
14692
15321
|
passcodeExpirationDays: int32 | null;
|
|
14693
15322
|
/**
|
|
@@ -15824,71 +16453,71 @@ within the time frame of their original request.
|
|
|
15824
16453
|
*/
|
|
15825
16454
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
15826
16455
|
/**
|
|
15827
|
-
*
|
|
16456
|
+
* 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.
|
|
15828
16457
|
*/
|
|
15829
16458
|
deviceThreatProtectionEnabled: boolean;
|
|
15830
16459
|
/**
|
|
15831
|
-
*
|
|
16460
|
+
* 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.
|
|
15832
16461
|
*/
|
|
15833
16462
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
15834
16463
|
/**
|
|
15835
|
-
*
|
|
16464
|
+
* 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.
|
|
15836
16465
|
*/
|
|
15837
16466
|
firewallBlockAllIncoming: boolean;
|
|
15838
16467
|
/**
|
|
15839
|
-
*
|
|
16468
|
+
* 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.
|
|
15840
16469
|
*/
|
|
15841
16470
|
firewallEnabled: boolean;
|
|
15842
16471
|
/**
|
|
15843
|
-
*
|
|
16472
|
+
* 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.
|
|
15844
16473
|
*/
|
|
15845
16474
|
firewallEnableStealthMode: boolean;
|
|
15846
16475
|
/**
|
|
15847
|
-
*
|
|
16476
|
+
* 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.
|
|
15848
16477
|
*/
|
|
15849
16478
|
osMaximumVersion: string | null;
|
|
15850
16479
|
/**
|
|
15851
|
-
*
|
|
16480
|
+
* 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.
|
|
15852
16481
|
*/
|
|
15853
16482
|
osMinimumVersion: string | null;
|
|
15854
16483
|
/**
|
|
15855
|
-
*
|
|
16484
|
+
* 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.
|
|
15856
16485
|
*/
|
|
15857
16486
|
passwordBlockSimple: boolean;
|
|
15858
16487
|
/**
|
|
15859
|
-
*
|
|
16488
|
+
* 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
|
|
15860
16489
|
*/
|
|
15861
16490
|
passwordExpirationDays: int32 | null;
|
|
15862
16491
|
/**
|
|
15863
|
-
*
|
|
16492
|
+
* 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.
|
|
15864
16493
|
*/
|
|
15865
16494
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
15866
16495
|
/**
|
|
15867
|
-
*
|
|
16496
|
+
* 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
|
|
15868
16497
|
*/
|
|
15869
16498
|
passwordMinimumLength: int32 | null;
|
|
15870
16499
|
/**
|
|
15871
|
-
*
|
|
16500
|
+
* 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.
|
|
15872
16501
|
*/
|
|
15873
16502
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
15874
16503
|
/**
|
|
15875
|
-
*
|
|
16504
|
+
* 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
|
|
15876
16505
|
*/
|
|
15877
16506
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
15878
16507
|
/**
|
|
15879
|
-
*
|
|
16508
|
+
* 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.
|
|
15880
16509
|
*/
|
|
15881
16510
|
passwordRequired: boolean;
|
|
15882
16511
|
/**
|
|
15883
|
-
*
|
|
16512
|
+
* 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.
|
|
15884
16513
|
*/
|
|
15885
16514
|
passwordRequiredType: requiredPasswordType;
|
|
15886
16515
|
/**
|
|
15887
|
-
*
|
|
16516
|
+
* 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.
|
|
15888
16517
|
*/
|
|
15889
16518
|
storageRequireEncryption: boolean;
|
|
15890
16519
|
/**
|
|
15891
|
-
*
|
|
16520
|
+
* 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.
|
|
15892
16521
|
*/
|
|
15893
16522
|
systemIntegrityProtectionEnabled: boolean;
|
|
15894
16523
|
}
|
|
@@ -16067,6 +16696,29 @@ within the time frame of their original request.
|
|
|
16067
16696
|
recipientEmail: string;
|
|
16068
16697
|
}
|
|
16069
16698
|
|
|
16699
|
+
@entity model mailbox extends directoryObject {
|
|
16700
|
+
@contains folders: mailboxFolder[];
|
|
16701
|
+
}
|
|
16702
|
+
|
|
16703
|
+
@entity model mailboxFolder extends entity {
|
|
16704
|
+
childFolderCount: int32 | null;
|
|
16705
|
+
displayName: string | null;
|
|
16706
|
+
parentFolderId: string | null;
|
|
16707
|
+
totalItemCount: int32 | null;
|
|
16708
|
+
type: string | null;
|
|
16709
|
+
@contains childFolders: mailboxFolder[];
|
|
16710
|
+
@contains items: mailboxItem[];
|
|
16711
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
16712
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
16713
|
+
}
|
|
16714
|
+
|
|
16715
|
+
@entity model mailboxItem extends outlookItem {
|
|
16716
|
+
size: int64 | null;
|
|
16717
|
+
type: string | null;
|
|
16718
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
16719
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
16720
|
+
}
|
|
16721
|
+
|
|
16070
16722
|
@entity model mailboxProtectionRule extends protectionRuleBase {
|
|
16071
16723
|
mailboxExpression: string | null;
|
|
16072
16724
|
}
|
|
@@ -17578,9 +18230,10 @@ within the time frame of their original request.
|
|
|
17578
18230
|
@entity model muteParticipantOperation extends commsOperation {
|
|
17579
18231
|
}
|
|
17580
18232
|
|
|
17581
|
-
@entity model namedLocation extends
|
|
18233
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
17582
18234
|
@computed createdDateTime: offsetDateTime | null;
|
|
17583
18235
|
displayName: string;
|
|
18236
|
+
@computed @key id: string;
|
|
17584
18237
|
modifiedDateTime: offsetDateTime | null;
|
|
17585
18238
|
}
|
|
17586
18239
|
|
|
@@ -17678,6 +18331,10 @@ within the time frame of their original request.
|
|
|
17678
18331
|
handler: onAuthenticationMethodLoadStartHandler | null;
|
|
17679
18332
|
}
|
|
17680
18333
|
|
|
18334
|
+
@entity model oneDriveForBusinessBrowseSession extends browseSessionBase {
|
|
18335
|
+
directoryObjectId: string | null;
|
|
18336
|
+
}
|
|
18337
|
+
|
|
17681
18338
|
@entity model oneDriveForBusinessProtectionPolicy extends protectionPolicyBase {
|
|
17682
18339
|
@references driveInclusionRules: driveProtectionRule[];
|
|
17683
18340
|
@references driveProtectionUnits: driveProtectionUnit[];
|
|
@@ -17687,6 +18344,7 @@ within the time frame of their original request.
|
|
|
17687
18344
|
@entity model oneDriveForBusinessRestoreSession extends restoreSessionBase {
|
|
17688
18345
|
@contains driveRestoreArtifacts: driveRestoreArtifact[];
|
|
17689
18346
|
@contains driveRestoreArtifactsBulkAdditionRequests: driveRestoreArtifactsBulkAdditionRequest[];
|
|
18347
|
+
@contains granularDriveRestoreArtifacts: granularDriveRestoreArtifact[];
|
|
17690
18348
|
}
|
|
17691
18349
|
|
|
17692
18350
|
@entity model onEmailOtpSendListener extends authenticationEventListener {
|
|
@@ -17848,6 +18506,13 @@ within the time frame of their original request.
|
|
|
17848
18506
|
@entity model onOtpSendCustomExtension extends customAuthenticationExtension {
|
|
17849
18507
|
}
|
|
17850
18508
|
|
|
18509
|
+
@entity model onPasswordSubmitCustomExtension extends customAuthenticationExtension {
|
|
18510
|
+
}
|
|
18511
|
+
|
|
18512
|
+
@entity model onPasswordSubmitListener extends authenticationEventListener {
|
|
18513
|
+
handler: onPasswordSubmitHandler | null;
|
|
18514
|
+
}
|
|
18515
|
+
|
|
17851
18516
|
/**
|
|
17852
18517
|
* Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant.
|
|
17853
18518
|
*/
|
|
@@ -17891,6 +18556,13 @@ within the time frame of their original request.
|
|
|
17891
18556
|
handler: onUserCreateStartHandler | null;
|
|
17892
18557
|
}
|
|
17893
18558
|
|
|
18559
|
+
@entity model onVerifiedIdClaimValidationCustomExtension extends customAuthenticationExtension {
|
|
18560
|
+
}
|
|
18561
|
+
|
|
18562
|
+
@entity model onVerifiedIdClaimValidationListener extends authenticationEventListener {
|
|
18563
|
+
handler: onVerifiedIdClaimValidationHandler | null;
|
|
18564
|
+
}
|
|
18565
|
+
|
|
17894
18566
|
@entity model openShift extends changeTrackedEntity {
|
|
17895
18567
|
draftOpenShift: openShiftItem | null;
|
|
17896
18568
|
isStagedForDeletion: boolean | null;
|
|
@@ -18030,6 +18702,16 @@ within the time frame of their original request.
|
|
|
18030
18702
|
@contains masterCategories: outlookCategory[];
|
|
18031
18703
|
}
|
|
18032
18704
|
|
|
18705
|
+
@entity model ownerlessGroupPolicy extends entity {
|
|
18706
|
+
emailInfo: emailDetails;
|
|
18707
|
+
enabledGroupIds: string[];
|
|
18708
|
+
isEnabled: boolean;
|
|
18709
|
+
maxMembersToNotify: int64;
|
|
18710
|
+
notificationDurationInWeeks: int64;
|
|
18711
|
+
policyWebUrl: string | null;
|
|
18712
|
+
targetOwners: targetOwners;
|
|
18713
|
+
}
|
|
18714
|
+
|
|
18033
18715
|
@entity model participant extends entity {
|
|
18034
18716
|
info: participantInfo;
|
|
18035
18717
|
isInLobby: boolean;
|
|
@@ -18055,6 +18737,17 @@ within the time frame of their original request.
|
|
|
18055
18737
|
@contains billing: reference.`microsoft.graph.partners.billing`.billing | null;
|
|
18056
18738
|
}
|
|
18057
18739
|
|
|
18740
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
18741
|
+
allowedPasskeyProfiles: guid | null;
|
|
18742
|
+
}
|
|
18743
|
+
|
|
18744
|
+
@entity model passkeyProfile extends entity {
|
|
18745
|
+
attestationEnforcement: attestationEnforcement;
|
|
18746
|
+
keyRestrictions: fido2KeyRestrictions | null;
|
|
18747
|
+
name: string | null;
|
|
18748
|
+
passkeyTypes: passkeyTypes | null;
|
|
18749
|
+
}
|
|
18750
|
+
|
|
18058
18751
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
18059
18752
|
password: string | null;
|
|
18060
18753
|
}
|
|
@@ -18087,6 +18780,7 @@ within the time frame of their original request.
|
|
|
18087
18780
|
@entity model peopleAdminSettings extends entity {
|
|
18088
18781
|
@contains itemInsights: insightsSettings | null;
|
|
18089
18782
|
@contains profileCardProperties: profileCardProperty[];
|
|
18783
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
18090
18784
|
@contains profileSources: profileSource[];
|
|
18091
18785
|
@contains pronouns: pronounsSettings | null;
|
|
18092
18786
|
}
|
|
@@ -18279,6 +18973,11 @@ within the time frame of their original request.
|
|
|
18279
18973
|
displayName: string | null;
|
|
18280
18974
|
}
|
|
18281
18975
|
|
|
18976
|
+
@abstract
|
|
18977
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
18978
|
+
deletedDateTime: offsetDateTime | null;
|
|
18979
|
+
}
|
|
18980
|
+
|
|
18282
18981
|
@entity model policyRoot extends entity {
|
|
18283
18982
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
18284
18983
|
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
@@ -18293,8 +18992,10 @@ within the time frame of their original request.
|
|
|
18293
18992
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
18294
18993
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
18295
18994
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
18995
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
18296
18996
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18297
18997
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
18998
|
+
@contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
|
|
18298
18999
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
18299
19000
|
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
18300
19001
|
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
@@ -18578,6 +19279,7 @@ within the time frame of their original request.
|
|
|
18578
19279
|
@entity model profileCardProperty extends entity {
|
|
18579
19280
|
annotations: profileCardAnnotation[] | null;
|
|
18580
19281
|
directoryPropertyName: string | null;
|
|
19282
|
+
isVisible: boolean;
|
|
18581
19283
|
}
|
|
18582
19284
|
|
|
18583
19285
|
@entity model profilePhoto extends entity {
|
|
@@ -18585,6 +19287,12 @@ within the time frame of their original request.
|
|
|
18585
19287
|
width: int32 | null;
|
|
18586
19288
|
}
|
|
18587
19289
|
|
|
19290
|
+
@entity model profilePropertySetting extends entity {
|
|
19291
|
+
displayName: string | null;
|
|
19292
|
+
name: string | null;
|
|
19293
|
+
prioritizedSourceUrls: string[];
|
|
19294
|
+
}
|
|
19295
|
+
|
|
18588
19296
|
@entity model profileSource extends entity {
|
|
18589
19297
|
displayName: string | null;
|
|
18590
19298
|
kind: string | null;
|
|
@@ -18816,6 +19524,7 @@ within the time frame of their original request.
|
|
|
18816
19524
|
|
|
18817
19525
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
18818
19526
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
19527
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
18819
19528
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
18820
19529
|
}
|
|
18821
19530
|
|
|
@@ -19207,6 +19916,7 @@ within the time frame of their original request.
|
|
|
19207
19916
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
19208
19917
|
@contains attackSimulation: attackSimulationRoot | null;
|
|
19209
19918
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
19919
|
+
@contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
|
|
19210
19920
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
19211
19921
|
@contains identities: reference.`microsoft.graph.security`.identityContainer | null;
|
|
19212
19922
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
@@ -19306,12 +20016,14 @@ within the time frame of their original request.
|
|
|
19306
20016
|
appOwnerOrganizationId: guid | null;
|
|
19307
20017
|
appRoleAssignmentRequired: boolean;
|
|
19308
20018
|
appRoles: appRole[];
|
|
20019
|
+
createdByAppId: string | null;
|
|
19309
20020
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
19310
20021
|
description: string | null;
|
|
19311
20022
|
disabledByMicrosoftStatus: string | null;
|
|
19312
20023
|
displayName: string | null;
|
|
19313
20024
|
homepage: string | null;
|
|
19314
20025
|
info: informationalUrl | null;
|
|
20026
|
+
isDisabled: boolean | null;
|
|
19315
20027
|
keyCredentials: keyCredential[];
|
|
19316
20028
|
loginUrl: string | null;
|
|
19317
20029
|
logoutUrl: string | null;
|
|
@@ -19516,6 +20228,10 @@ within the time frame of their original request.
|
|
|
19516
20228
|
@contains settings: sharepointSettings | null;
|
|
19517
20229
|
}
|
|
19518
20230
|
|
|
20231
|
+
@entity model sharePointBrowseSession extends browseSessionBase {
|
|
20232
|
+
siteId: string | null;
|
|
20233
|
+
}
|
|
20234
|
+
|
|
19519
20235
|
@entity model sharePointGroup extends entity {
|
|
19520
20236
|
description: string | null;
|
|
19521
20237
|
principalId: string | null;
|
|
@@ -19601,6 +20317,7 @@ within the time frame of their original request.
|
|
|
19601
20317
|
}
|
|
19602
20318
|
|
|
19603
20319
|
@entity model sharePointRestoreSession extends restoreSessionBase {
|
|
20320
|
+
@contains granularSiteRestoreArtifacts: granularSiteRestoreArtifact[];
|
|
19604
20321
|
@contains siteRestoreArtifacts: siteRestoreArtifact[];
|
|
19605
20322
|
@contains siteRestoreArtifactsBulkAdditionRequests: siteRestoreArtifactsBulkAdditionRequest[];
|
|
19606
20323
|
}
|
|
@@ -20051,6 +20768,10 @@ within the time frame of their original request.
|
|
|
20051
20768
|
displayName: string | null;
|
|
20052
20769
|
}
|
|
20053
20770
|
|
|
20771
|
+
@entity model targetedChatMessage extends chatMessage {
|
|
20772
|
+
recipient: identity | null;
|
|
20773
|
+
}
|
|
20774
|
+
|
|
20054
20775
|
/**
|
|
20055
20776
|
* Configuration used to deliver a set of custom settings as-is to all users in the targeted security group
|
|
20056
20777
|
*/
|
|
@@ -21915,6 +22636,7 @@ within the time frame of their original request.
|
|
|
21915
22636
|
@entity model userSettings extends entity {
|
|
21916
22637
|
contributionToContentDiscoveryAsOrganizationDisabled: boolean;
|
|
21917
22638
|
contributionToContentDiscoveryDisabled: boolean;
|
|
22639
|
+
@contains exchange: exchangeSettings | null;
|
|
21918
22640
|
@contains itemInsights: userInsightsSettings | null;
|
|
21919
22641
|
@contains shiftPreferences: shiftPreferences | null;
|
|
21920
22642
|
@contains storage: userStorage | null;
|
|
@@ -21941,6 +22663,26 @@ within the time frame of their original request.
|
|
|
21941
22663
|
@contains installedApps: userScopeTeamsAppInstallation[];
|
|
21942
22664
|
}
|
|
21943
22665
|
|
|
22666
|
+
@entity model verifiableCredentialAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
22667
|
+
verifiedIdProfiles: guid;
|
|
22668
|
+
}
|
|
22669
|
+
|
|
22670
|
+
@entity model verifiableCredentialsAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
22671
|
+
@contains includeTargets: verifiableCredentialAuthenticationMethodTarget[];
|
|
22672
|
+
}
|
|
22673
|
+
|
|
22674
|
+
@entity model verifiedIdProfile extends entity {
|
|
22675
|
+
description: string;
|
|
22676
|
+
faceCheckConfiguration: faceCheckConfiguration;
|
|
22677
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
22678
|
+
name: string;
|
|
22679
|
+
priority: int32 | null;
|
|
22680
|
+
state: verifiedIdProfileState;
|
|
22681
|
+
verifiedIdProfileConfiguration: verifiedIdProfileConfiguration;
|
|
22682
|
+
verifiedIdUsageConfigurations: verifiedIdUsageConfiguration[];
|
|
22683
|
+
verifierDid: string;
|
|
22684
|
+
}
|
|
22685
|
+
|
|
21944
22686
|
@entity model verticalSection extends entity {
|
|
21945
22687
|
emphasis: sectionEmphasisType | null;
|
|
21946
22688
|
@contains webparts: webPart[];
|
|
@@ -23722,7 +24464,7 @@ within the time frame of their original request.
|
|
|
23722
24464
|
*/
|
|
23723
24465
|
preprovisioningAllowed: boolean | null;
|
|
23724
24466
|
/**
|
|
23725
|
-
* List of role scope tags for the deployment profile.
|
|
24467
|
+
* List of role scope tags for the deployment profile.
|
|
23726
24468
|
*/
|
|
23727
24469
|
roleScopeTagIds: string[] | null;
|
|
23728
24470
|
/**
|
|
@@ -24344,6 +25086,10 @@ within the time frame of their original request.
|
|
|
24344
25086
|
* Current anti malware version
|
|
24345
25087
|
*/
|
|
24346
25088
|
antiMalwareVersion: string | null;
|
|
25089
|
+
/**
|
|
25090
|
+
* 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.
|
|
25091
|
+
*/
|
|
25092
|
+
controlledConfigurationEnabled: boolean | null;
|
|
24347
25093
|
/**
|
|
24348
25094
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
24349
25095
|
*/
|
|
@@ -25036,10 +25782,18 @@ within the time frame of their original request.
|
|
|
25036
25782
|
allowedPolicyOIDs: string[];
|
|
25037
25783
|
}
|
|
25038
25784
|
|
|
25785
|
+
enum accessEntityType {
|
|
25786
|
+
user: 0,
|
|
25787
|
+
group: 1,
|
|
25788
|
+
unknownFutureValue: 2,
|
|
25789
|
+
}
|
|
25790
|
+
|
|
25039
25791
|
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
25040
25792
|
target: 1,
|
|
25041
25793
|
createdBy: 2,
|
|
25042
25794
|
unknownFutureValue: 99,
|
|
25795
|
+
targetManager: 100,
|
|
25796
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
25043
25797
|
}
|
|
25044
25798
|
|
|
25045
25799
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -25047,6 +25801,10 @@ within the time frame of their original request.
|
|
|
25047
25801
|
createdBy: 2,
|
|
25048
25802
|
approver: 3,
|
|
25049
25803
|
unknownFutureValue: 99,
|
|
25804
|
+
targetOrRequestor: 100,
|
|
25805
|
+
targetManager: 101,
|
|
25806
|
+
requestForOthers: 102,
|
|
25807
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
25050
25808
|
}
|
|
25051
25809
|
|
|
25052
25810
|
enum accessPackageAssignmentState {
|
|
@@ -25119,6 +25877,14 @@ within the time frame of their original request.
|
|
|
25119
25877
|
systemRemove: 9,
|
|
25120
25878
|
onBehalfAdd: 10,
|
|
25121
25879
|
unknownFutureValue: 11,
|
|
25880
|
+
approverRemove: 12,
|
|
25881
|
+
}
|
|
25882
|
+
|
|
25883
|
+
enum accessPackageSubjectLifecycle {
|
|
25884
|
+
notDefined: 0,
|
|
25885
|
+
notGoverned: 1,
|
|
25886
|
+
governed: 2,
|
|
25887
|
+
unknownFutureValue: 3,
|
|
25122
25888
|
}
|
|
25123
25889
|
|
|
25124
25890
|
enum accessPackageSubjectType {
|
|
@@ -25128,6 +25894,21 @@ within the time frame of their original request.
|
|
|
25128
25894
|
unknownFutureValue: 3,
|
|
25129
25895
|
}
|
|
25130
25896
|
|
|
25897
|
+
@graphFlags
|
|
25898
|
+
enum accessPackageSuggestionFilterByCurrentUserOptions {
|
|
25899
|
+
none: 0,
|
|
25900
|
+
relatedPeopleAssignments: 1,
|
|
25901
|
+
assignmentHistory: 2,
|
|
25902
|
+
unknownFutureValue: 4,
|
|
25903
|
+
}
|
|
25904
|
+
|
|
25905
|
+
enum accessPackageSuggestionRelatedPeopleInsightLevel {
|
|
25906
|
+
disabled: 0,
|
|
25907
|
+
count: 1,
|
|
25908
|
+
countAndNames: 2,
|
|
25909
|
+
unknownFutureValue: 3,
|
|
25910
|
+
}
|
|
25911
|
+
|
|
25131
25912
|
enum accessReviewExpirationBehavior {
|
|
25132
25913
|
keepAccess: 0,
|
|
25133
25914
|
removeAccess: 1,
|
|
@@ -25446,6 +26227,17 @@ within the time frame of their original request.
|
|
|
25446
26227
|
unknownFutureValue: 99,
|
|
25447
26228
|
}
|
|
25448
26229
|
|
|
26230
|
+
@graphFlags
|
|
26231
|
+
enum applicationDataType {
|
|
26232
|
+
none: 0,
|
|
26233
|
+
codingFiles: 1,
|
|
26234
|
+
creditCards: 2,
|
|
26235
|
+
databaseFiles: 4,
|
|
26236
|
+
documents: 8,
|
|
26237
|
+
mediaFiles: 16,
|
|
26238
|
+
unknownFutureValue: 32,
|
|
26239
|
+
}
|
|
26240
|
+
|
|
25449
26241
|
/**
|
|
25450
26242
|
* Possible values for applicationGuardBlockClipboardSharingType
|
|
25451
26243
|
*/
|
|
@@ -25614,6 +26406,13 @@ within the time frame of their original request.
|
|
|
25614
26406
|
unknownFutureValue: 3,
|
|
25615
26407
|
}
|
|
25616
26408
|
|
|
26409
|
+
enum approverInformationVisibility {
|
|
26410
|
+
default: 0,
|
|
26411
|
+
notVisible: 1,
|
|
26412
|
+
visible: 2,
|
|
26413
|
+
unknownFutureValue: 3,
|
|
26414
|
+
}
|
|
26415
|
+
|
|
25617
26416
|
enum appsUpdateChannelType {
|
|
25618
26417
|
current: 0,
|
|
25619
26418
|
monthlyEnterprise: 1,
|
|
@@ -25675,6 +26474,12 @@ within the time frame of their original request.
|
|
|
25675
26474
|
resource: 2,
|
|
25676
26475
|
}
|
|
25677
26476
|
|
|
26477
|
+
enum attestationEnforcement {
|
|
26478
|
+
disabled: 0,
|
|
26479
|
+
registrationOnly: 1,
|
|
26480
|
+
unknownFutureValue: 2,
|
|
26481
|
+
}
|
|
26482
|
+
|
|
25678
26483
|
enum attestationLevel {
|
|
25679
26484
|
attested: 0,
|
|
25680
26485
|
notAttested: 1,
|
|
@@ -25944,6 +26749,13 @@ within the time frame of their original request.
|
|
|
25944
26749
|
qrCodePin: 14,
|
|
25945
26750
|
}
|
|
25946
26751
|
|
|
26752
|
+
enum baselineParameterType {
|
|
26753
|
+
`string`: 0,
|
|
26754
|
+
`integer`: 1,
|
|
26755
|
+
`boolean`: 2,
|
|
26756
|
+
unknownFutureValue: 3,
|
|
26757
|
+
}
|
|
26758
|
+
|
|
25947
26759
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
25948
26760
|
enum binaryOperator {
|
|
25949
26761
|
or: 0,
|
|
@@ -26077,6 +26889,31 @@ within the time frame of their original request.
|
|
|
26077
26889
|
unknownFutureValue: 3,
|
|
26078
26890
|
}
|
|
26079
26891
|
|
|
26892
|
+
enum browsableResourceType {
|
|
26893
|
+
none: 0,
|
|
26894
|
+
site: 1,
|
|
26895
|
+
documentLibrary: 2,
|
|
26896
|
+
folder: 3,
|
|
26897
|
+
unknownFutureValue: 4,
|
|
26898
|
+
}
|
|
26899
|
+
|
|
26900
|
+
enum browseQueryOrder {
|
|
26901
|
+
pathAsc: 0,
|
|
26902
|
+
pathDsc: 1,
|
|
26903
|
+
nameAsc: 2,
|
|
26904
|
+
nameDsc: 3,
|
|
26905
|
+
unknownFutureValue: 4,
|
|
26906
|
+
}
|
|
26907
|
+
|
|
26908
|
+
enum browseQueryResponseItemType {
|
|
26909
|
+
none: 0,
|
|
26910
|
+
site: 1,
|
|
26911
|
+
documentLibrary: 2,
|
|
26912
|
+
folder: 3,
|
|
26913
|
+
file: 4,
|
|
26914
|
+
unknownFutureValue: 5,
|
|
26915
|
+
}
|
|
26916
|
+
|
|
26080
26917
|
enum browserSharedCookieSourceEnvironment {
|
|
26081
26918
|
/**
|
|
26082
26919
|
* Share session cookies from Microsoft Edge to Internet Explorer.
|
|
@@ -26225,6 +27062,13 @@ within the time frame of their original request.
|
|
|
26225
27062
|
unknownFutureValue: 5,
|
|
26226
27063
|
}
|
|
26227
27064
|
|
|
27065
|
+
enum browseSessionStatus {
|
|
27066
|
+
creating: 0,
|
|
27067
|
+
created: 1,
|
|
27068
|
+
failed: 2,
|
|
27069
|
+
unknownFutureValue: 3,
|
|
27070
|
+
}
|
|
27071
|
+
|
|
26228
27072
|
enum bucketAggregationSortProperty {
|
|
26229
27073
|
count: 0,
|
|
26230
27074
|
keyAsString: 1,
|
|
@@ -26368,6 +27212,12 @@ within the time frame of their original request.
|
|
|
26368
27212
|
deleted: 2,
|
|
26369
27213
|
}
|
|
26370
27214
|
|
|
27215
|
+
enum channelLayoutType {
|
|
27216
|
+
post: 0,
|
|
27217
|
+
chat: 1,
|
|
27218
|
+
unknownFutureValue: 2,
|
|
27219
|
+
}
|
|
27220
|
+
|
|
26371
27221
|
enum channelMembershipType {
|
|
26372
27222
|
standard: 0,
|
|
26373
27223
|
private: 1,
|
|
@@ -26439,6 +27289,11 @@ within the time frame of their original request.
|
|
|
26439
27289
|
unknownFutureValue: 4,
|
|
26440
27290
|
}
|
|
26441
27291
|
|
|
27292
|
+
enum claimBindingSource {
|
|
27293
|
+
directory: 0,
|
|
27294
|
+
unknownFutureValue: 1,
|
|
27295
|
+
}
|
|
27296
|
+
|
|
26442
27297
|
enum clickSource {
|
|
26443
27298
|
`unknown`: 0,
|
|
26444
27299
|
qrCode: 1,
|
|
@@ -26803,6 +27658,7 @@ within the time frame of their original request.
|
|
|
26803
27658
|
compliantApplication: 5,
|
|
26804
27659
|
passwordChange: 6,
|
|
26805
27660
|
unknownFutureValue: 7,
|
|
27661
|
+
riskRemediation: 8,
|
|
26806
27662
|
}
|
|
26807
27663
|
|
|
26808
27664
|
@graphFlags
|
|
@@ -26925,6 +27781,17 @@ within the time frame of their original request.
|
|
|
26925
27781
|
unknownFutureValue: 4,
|
|
26926
27782
|
}
|
|
26927
27783
|
|
|
27784
|
+
enum csaStarLevel {
|
|
27785
|
+
none: 0,
|
|
27786
|
+
attestation: 1,
|
|
27787
|
+
certification: 2,
|
|
27788
|
+
continuousMonitoring: 3,
|
|
27789
|
+
cStarAssessment: 4,
|
|
27790
|
+
selfAssessment: 5,
|
|
27791
|
+
notSupported: 6,
|
|
27792
|
+
unknownFutureValue: 7,
|
|
27793
|
+
}
|
|
27794
|
+
|
|
26928
27795
|
enum customExtensionCalloutInstanceStatus {
|
|
26929
27796
|
calloutSent: 1,
|
|
26930
27797
|
callbackReceived: 2,
|
|
@@ -26934,6 +27801,11 @@ within the time frame of their original request.
|
|
|
26934
27801
|
unknownFutureValue: 6,
|
|
26935
27802
|
}
|
|
26936
27803
|
|
|
27804
|
+
enum customSecurityAttributeComparisonOperator {
|
|
27805
|
+
equals: 1,
|
|
27806
|
+
unknownFutureValue: 2,
|
|
27807
|
+
}
|
|
27808
|
+
|
|
26937
27809
|
enum dataPolicyOperationStatus {
|
|
26938
27810
|
notStarted: 0,
|
|
26939
27811
|
running: 1,
|
|
@@ -26942,6 +27814,26 @@ within the time frame of their original request.
|
|
|
26942
27814
|
unknownFutureValue: 4,
|
|
26943
27815
|
}
|
|
26944
27816
|
|
|
27817
|
+
@graphFlags
|
|
27818
|
+
enum dataProtection {
|
|
27819
|
+
none: 0,
|
|
27820
|
+
impactAssessments: 1,
|
|
27821
|
+
officers: 2,
|
|
27822
|
+
secureCrossBorderDataTransfer: 4,
|
|
27823
|
+
unknownFutureValue: 8,
|
|
27824
|
+
}
|
|
27825
|
+
|
|
27826
|
+
enum dataRetentionLevel {
|
|
27827
|
+
none: 0,
|
|
27828
|
+
dataRetained: 1,
|
|
27829
|
+
deletedImmediately: 2,
|
|
27830
|
+
deletedWithin1Month: 3,
|
|
27831
|
+
deletedWithin2Weeks: 4,
|
|
27832
|
+
deletedWithin3Months: 5,
|
|
27833
|
+
deletedWithinMoreThan3Months: 6,
|
|
27834
|
+
unknownFutureValue: 7,
|
|
27835
|
+
}
|
|
27836
|
+
|
|
26945
27837
|
enum dataSubjectType {
|
|
26946
27838
|
customer: 0,
|
|
26947
27839
|
currentEmployee: 1,
|
|
@@ -27880,6 +28772,12 @@ within the time frame of their original request.
|
|
|
27880
28772
|
restrictWebGrounding: 12,
|
|
27881
28773
|
}
|
|
27882
28774
|
|
|
28775
|
+
enum driftStatus {
|
|
28776
|
+
active: 0,
|
|
28777
|
+
fixed: 1,
|
|
28778
|
+
unknownFutureValue: 2,
|
|
28779
|
+
}
|
|
28780
|
+
|
|
27883
28781
|
enum driveItemSourceApplication {
|
|
27884
28782
|
teams: 0,
|
|
27885
28783
|
yammer: 1,
|
|
@@ -28423,6 +29321,16 @@ within the time frame of their original request.
|
|
|
28423
29321
|
unknownFutureValue: 3,
|
|
28424
29322
|
}
|
|
28425
29323
|
|
|
29324
|
+
enum fedRampLevel {
|
|
29325
|
+
none: 0,
|
|
29326
|
+
high: 1,
|
|
29327
|
+
liSaas: 2,
|
|
29328
|
+
low: 3,
|
|
29329
|
+
moderate: 4,
|
|
29330
|
+
notSupported: 5,
|
|
29331
|
+
unknownFutureValue: 6,
|
|
29332
|
+
}
|
|
29333
|
+
|
|
28426
29334
|
enum fido2RestrictionEnforcementType {
|
|
28427
29335
|
allow: 0,
|
|
28428
29336
|
block: 1,
|
|
@@ -28587,12 +29495,27 @@ within the time frame of their original request.
|
|
|
28587
29495
|
unknownFutureValue: 2,
|
|
28588
29496
|
}
|
|
28589
29497
|
|
|
29498
|
+
enum groupAccessType {
|
|
29499
|
+
none: 0,
|
|
29500
|
+
private: 1,
|
|
29501
|
+
secret: 2,
|
|
29502
|
+
public: 3,
|
|
29503
|
+
unknownFutureValue: 4,
|
|
29504
|
+
}
|
|
29505
|
+
|
|
28590
29506
|
enum groupType {
|
|
28591
29507
|
unifiedGroups: 0,
|
|
28592
29508
|
azureAD: 1,
|
|
28593
29509
|
unknownFutureValue: 2,
|
|
28594
29510
|
}
|
|
28595
29511
|
|
|
29512
|
+
enum holdType {
|
|
29513
|
+
none: 0,
|
|
29514
|
+
private: 1,
|
|
29515
|
+
public: 2,
|
|
29516
|
+
unknownFutureValue: 3,
|
|
29517
|
+
}
|
|
29518
|
+
|
|
28596
29519
|
enum horizontalSectionLayoutType {
|
|
28597
29520
|
none: 0,
|
|
28598
29521
|
oneColumn: 1,
|
|
@@ -29288,6 +30211,12 @@ within the time frame of their original request.
|
|
|
29288
30211
|
unknownFutureValue: 12,
|
|
29289
30212
|
}
|
|
29290
30213
|
|
|
30214
|
+
enum matchConfidenceLevel {
|
|
30215
|
+
exact: 0,
|
|
30216
|
+
relaxed: 1,
|
|
30217
|
+
unknownFutureValue: 2,
|
|
30218
|
+
}
|
|
30219
|
+
|
|
29291
30220
|
enum maxWorkLocationDetails {
|
|
29292
30221
|
`unknown`: 0,
|
|
29293
30222
|
none: 1,
|
|
@@ -29459,6 +30388,12 @@ within the time frame of their original request.
|
|
|
29459
30388
|
online: 1,
|
|
29460
30389
|
}
|
|
29461
30390
|
|
|
30391
|
+
enum migrationMode {
|
|
30392
|
+
inProgress: 0,
|
|
30393
|
+
completed: 1,
|
|
30394
|
+
unknownFutureValue: 2,
|
|
30395
|
+
}
|
|
30396
|
+
|
|
29462
30397
|
enum migrationStatus {
|
|
29463
30398
|
ready: 0,
|
|
29464
30399
|
needsReview: 1,
|
|
@@ -29630,6 +30565,24 @@ within the time frame of their original request.
|
|
|
29630
30565
|
unknownFutureValue: 5,
|
|
29631
30566
|
}
|
|
29632
30567
|
|
|
30568
|
+
enum monitorMode {
|
|
30569
|
+
monitorOnly: 0,
|
|
30570
|
+
unknownFutureValue: 1,
|
|
30571
|
+
}
|
|
30572
|
+
|
|
30573
|
+
enum monitorRunStatus {
|
|
30574
|
+
successful: 0,
|
|
30575
|
+
partiallySuccessful: 1,
|
|
30576
|
+
failed: 2,
|
|
30577
|
+
unknownFutureValue: 3,
|
|
30578
|
+
}
|
|
30579
|
+
|
|
30580
|
+
enum monitorStatus {
|
|
30581
|
+
active: 0,
|
|
30582
|
+
inactive: 1,
|
|
30583
|
+
unknownFutureValue: 2,
|
|
30584
|
+
}
|
|
30585
|
+
|
|
29633
30586
|
enum multiFactorAuthConfiguration {
|
|
29634
30587
|
notRequired: 0,
|
|
29635
30588
|
required: 1,
|
|
@@ -29692,6 +30645,23 @@ within the time frame of their original request.
|
|
|
29692
30645
|
unknownFutureValue: 3,
|
|
29693
30646
|
}
|
|
29694
30647
|
|
|
30648
|
+
@graphFlags
|
|
30649
|
+
enum notificationEventsType {
|
|
30650
|
+
none: 1,
|
|
30651
|
+
restoreAndPolicyUpdates: 2,
|
|
30652
|
+
unknownFutureValue: 4,
|
|
30653
|
+
}
|
|
30654
|
+
|
|
30655
|
+
@graphFlags
|
|
30656
|
+
enum notificationRecipientsType {
|
|
30657
|
+
none: 0,
|
|
30658
|
+
globalAdmins: 1,
|
|
30659
|
+
backupAdmins: 2,
|
|
30660
|
+
custom: 4,
|
|
30661
|
+
allAdmins: 8,
|
|
30662
|
+
unknownFutureValue: 16,
|
|
30663
|
+
}
|
|
30664
|
+
|
|
29695
30665
|
/**
|
|
29696
30666
|
* Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
|
|
29697
30667
|
*/
|
|
@@ -29724,6 +30694,13 @@ within the time frame of their original request.
|
|
|
29724
30694
|
unknownFutureValue: 32,
|
|
29725
30695
|
}
|
|
29726
30696
|
|
|
30697
|
+
enum notifyMembers {
|
|
30698
|
+
all: 0,
|
|
30699
|
+
allowSelected: 1,
|
|
30700
|
+
blockSelected: 2,
|
|
30701
|
+
unknownFutureValue: 3,
|
|
30702
|
+
}
|
|
30703
|
+
|
|
29727
30704
|
enum oAuthAppScope {
|
|
29728
30705
|
`unknown`: 0,
|
|
29729
30706
|
readCalendar: 1,
|
|
@@ -29920,6 +30897,21 @@ within the time frame of their original request.
|
|
|
29920
30897
|
unknownFutureValue: 1,
|
|
29921
30898
|
}
|
|
29922
30899
|
|
|
30900
|
+
enum packageStatus {
|
|
30901
|
+
none: 0,
|
|
30902
|
+
some: 1,
|
|
30903
|
+
all: 2,
|
|
30904
|
+
unknownFutureValue: 3,
|
|
30905
|
+
}
|
|
30906
|
+
|
|
30907
|
+
enum packageType {
|
|
30908
|
+
microsoft: 0,
|
|
30909
|
+
external: 1,
|
|
30910
|
+
shared: 2,
|
|
30911
|
+
custom: 3,
|
|
30912
|
+
unknownFutureValue: 4,
|
|
30913
|
+
}
|
|
30914
|
+
|
|
29923
30915
|
enum pageLayoutType {
|
|
29924
30916
|
microsoftReserved: 0,
|
|
29925
30917
|
article: 1,
|
|
@@ -29944,6 +30936,30 @@ within the time frame of their original request.
|
|
|
29944
30936
|
unknownFutureValue: 7,
|
|
29945
30937
|
}
|
|
29946
30938
|
|
|
30939
|
+
enum passkeyType {
|
|
30940
|
+
deviceBound: 0,
|
|
30941
|
+
synced: 1,
|
|
30942
|
+
unknownFutureValue: 2,
|
|
30943
|
+
}
|
|
30944
|
+
|
|
30945
|
+
@graphFlags
|
|
30946
|
+
enum passkeyTypes {
|
|
30947
|
+
deviceBound: 1,
|
|
30948
|
+
synced: 2,
|
|
30949
|
+
unknownFutureValue: 4,
|
|
30950
|
+
}
|
|
30951
|
+
|
|
30952
|
+
@graphFlags
|
|
30953
|
+
enum passwordPolicy {
|
|
30954
|
+
none: 0,
|
|
30955
|
+
changePasswordPeriod: 1,
|
|
30956
|
+
charactersCombination: 2,
|
|
30957
|
+
passwordHistoryAndReuse: 4,
|
|
30958
|
+
passwordLengthLimit: 8,
|
|
30959
|
+
personalInformationUse: 16,
|
|
30960
|
+
unknownFutureValue: 32,
|
|
30961
|
+
}
|
|
30962
|
+
|
|
29947
30963
|
enum payloadBrand {
|
|
29948
30964
|
`unknown`: 0,
|
|
29949
30965
|
other: 1,
|
|
@@ -30044,6 +31060,14 @@ within the time frame of their original request.
|
|
|
30044
31060
|
unknownFutureValue: 31,
|
|
30045
31061
|
}
|
|
30046
31062
|
|
|
31063
|
+
enum pciVersion {
|
|
31064
|
+
none: 0,
|
|
31065
|
+
v3_2_1: 1,
|
|
31066
|
+
v4: 2,
|
|
31067
|
+
notSupported: 3,
|
|
31068
|
+
unknownFutureValue: 4,
|
|
31069
|
+
}
|
|
31070
|
+
|
|
30047
31071
|
enum permissionClassificationType {
|
|
30048
31072
|
low: 1,
|
|
30049
31073
|
medium: 2,
|
|
@@ -32209,6 +33233,18 @@ within the time frame of their original request.
|
|
|
32209
33233
|
notResponded: 5,
|
|
32210
33234
|
}
|
|
32211
33235
|
|
|
33236
|
+
enum restEncryptionType {
|
|
33237
|
+
none: 0,
|
|
33238
|
+
aes: 1,
|
|
33239
|
+
bitlocker: 2,
|
|
33240
|
+
blowfish: 3,
|
|
33241
|
+
des: 4,
|
|
33242
|
+
rc4: 5,
|
|
33243
|
+
rsa: 6,
|
|
33244
|
+
notSupported: 7,
|
|
33245
|
+
unknownFutureValue: 8,
|
|
33246
|
+
}
|
|
33247
|
+
|
|
32212
33248
|
enum restorableArtifact {
|
|
32213
33249
|
message: 0,
|
|
32214
33250
|
unknownFutureValue: 1,
|
|
@@ -32226,6 +33262,7 @@ within the time frame of their original request.
|
|
|
32226
33262
|
standard: 0,
|
|
32227
33263
|
bulk: 1,
|
|
32228
33264
|
unknownFutureValue: 2,
|
|
33265
|
+
granular: 3,
|
|
32229
33266
|
}
|
|
32230
33267
|
|
|
32231
33268
|
enum restorePointPreference {
|
|
@@ -32294,6 +33331,7 @@ within the time frame of their original request.
|
|
|
32294
33331
|
userChangedPasswordOnPremises: 15,
|
|
32295
33332
|
adminDismissedRiskForSignIn: 16,
|
|
32296
33333
|
adminConfirmedAccountSafe: 17,
|
|
33334
|
+
microsoftRevokedSessions: 18,
|
|
32297
33335
|
}
|
|
32298
33336
|
|
|
32299
33337
|
enum riskDetectionTimingType {
|
|
@@ -32375,6 +33413,24 @@ within the time frame of their original request.
|
|
|
32375
33413
|
unknownFutureValue: 4,
|
|
32376
33414
|
}
|
|
32377
33415
|
|
|
33416
|
+
enum roleType {
|
|
33417
|
+
active: 0,
|
|
33418
|
+
eligible: 1,
|
|
33419
|
+
application: 2,
|
|
33420
|
+
delegated: 3,
|
|
33421
|
+
unknownFutureValue: 99,
|
|
33422
|
+
}
|
|
33423
|
+
|
|
33424
|
+
enum rootDomains {
|
|
33425
|
+
none: 0,
|
|
33426
|
+
all: 1,
|
|
33427
|
+
allFederated: 2,
|
|
33428
|
+
allManaged: 3,
|
|
33429
|
+
enumerated: 4,
|
|
33430
|
+
allManagedAndEnumeratedFederated: 5,
|
|
33431
|
+
unknownFutureValue: 6,
|
|
33432
|
+
}
|
|
33433
|
+
|
|
32378
33434
|
enum routingMode {
|
|
32379
33435
|
oneToOne: 0,
|
|
32380
33436
|
multicast: 1,
|
|
@@ -32451,6 +33507,29 @@ within the time frame of their original request.
|
|
|
32451
33507
|
darkPink: 10,
|
|
32452
33508
|
darkYellow: 11,
|
|
32453
33509
|
unknownFutureValue: 12,
|
|
33510
|
+
darkRed: 13,
|
|
33511
|
+
cranberry: 14,
|
|
33512
|
+
darkOrange: 15,
|
|
33513
|
+
bronze: 16,
|
|
33514
|
+
peach: 17,
|
|
33515
|
+
gold: 18,
|
|
33516
|
+
lime: 19,
|
|
33517
|
+
forest: 20,
|
|
33518
|
+
lightGreen: 21,
|
|
33519
|
+
jade: 22,
|
|
33520
|
+
lightTeal: 23,
|
|
33521
|
+
darkTeal: 24,
|
|
33522
|
+
steel: 25,
|
|
33523
|
+
skyBlue: 26,
|
|
33524
|
+
blueGray: 27,
|
|
33525
|
+
lavender: 28,
|
|
33526
|
+
lilac: 29,
|
|
33527
|
+
plum: 30,
|
|
33528
|
+
magenta: 31,
|
|
33529
|
+
darkBrown: 32,
|
|
33530
|
+
beige: 33,
|
|
33531
|
+
charcoal: 34,
|
|
33532
|
+
silver: 35,
|
|
32454
33533
|
}
|
|
32455
33534
|
|
|
32456
33535
|
enum scheduleRequestActions {
|
|
@@ -32842,11 +33921,31 @@ within the time frame of their original request.
|
|
|
32842
33921
|
high: 5,
|
|
32843
33922
|
}
|
|
32844
33923
|
|
|
33924
|
+
enum snapshotJobStatus {
|
|
33925
|
+
notStarted: 0,
|
|
33926
|
+
running: 1,
|
|
33927
|
+
succeeded: 2,
|
|
33928
|
+
failed: 3,
|
|
33929
|
+
partiallySuccessful: 4,
|
|
33930
|
+
unknownFutureValue: 5,
|
|
33931
|
+
}
|
|
33932
|
+
|
|
32845
33933
|
enum socialIdentitySourceType {
|
|
32846
33934
|
facebook: 1,
|
|
32847
33935
|
unknownFutureValue: 2,
|
|
32848
33936
|
}
|
|
32849
33937
|
|
|
33938
|
+
enum sslVersion {
|
|
33939
|
+
none: 0,
|
|
33940
|
+
ssl3_0: 1,
|
|
33941
|
+
tls1_0: 2,
|
|
33942
|
+
tls1_1: 3,
|
|
33943
|
+
tls1_2: 4,
|
|
33944
|
+
tls1_3: 5,
|
|
33945
|
+
notSupported: 6,
|
|
33946
|
+
unknownFutureValue: 7,
|
|
33947
|
+
}
|
|
33948
|
+
|
|
32850
33949
|
enum stagedFeatureName {
|
|
32851
33950
|
passthroughAuthentication: 0,
|
|
32852
33951
|
seamlessSso: 1,
|
|
@@ -33579,6 +34678,20 @@ within the time frame of their original request.
|
|
|
33579
34678
|
unknownFutureValue: 7,
|
|
33580
34679
|
}
|
|
33581
34680
|
|
|
34681
|
+
@graphFlags
|
|
34682
|
+
enum userOwnership {
|
|
34683
|
+
none: 0,
|
|
34684
|
+
lawfulBasisForProcessing: 1,
|
|
34685
|
+
rightToAccess: 2,
|
|
34686
|
+
rightToBeInformed: 4,
|
|
34687
|
+
rightToDataPortability: 8,
|
|
34688
|
+
rightToObject: 16,
|
|
34689
|
+
rightToRectification: 32,
|
|
34690
|
+
rightToRestrictionOfProcessing: 64,
|
|
34691
|
+
rightsRelatedToAutomatedDecisionMaking: 128,
|
|
34692
|
+
unknownFutureValue: 256,
|
|
34693
|
+
}
|
|
34694
|
+
|
|
33582
34695
|
enum userPurpose {
|
|
33583
34696
|
user: 1,
|
|
33584
34697
|
linked: 2,
|
|
@@ -33608,6 +34721,19 @@ within the time frame of their original request.
|
|
|
33608
34721
|
unknownFutureValue: 2,
|
|
33609
34722
|
}
|
|
33610
34723
|
|
|
34724
|
+
enum verifiedIdProfileState {
|
|
34725
|
+
enabled: 0,
|
|
34726
|
+
disabled: 1,
|
|
34727
|
+
unknownFutureValue: 2,
|
|
34728
|
+
}
|
|
34729
|
+
|
|
34730
|
+
enum verifiedIdUsageConfigurationPurpose {
|
|
34731
|
+
recovery: 0,
|
|
34732
|
+
onboarding: 1,
|
|
34733
|
+
all: 2,
|
|
34734
|
+
unknownFutureValue: 3,
|
|
34735
|
+
}
|
|
34736
|
+
|
|
33611
34737
|
enum virtualAppointmentMessageType {
|
|
33612
34738
|
confirmation: 0,
|
|
33613
34739
|
reschedule: 1,
|
|
@@ -35892,6 +37018,12 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35892
37018
|
personManager: 49,
|
|
35893
37019
|
personAlternateContacts: 50,
|
|
35894
37020
|
personEmergencyContacts: 51,
|
|
37021
|
+
personEducationalActivities: 52,
|
|
37022
|
+
personInterests: 53,
|
|
37023
|
+
personLanguages: 54,
|
|
37024
|
+
personPublications: 55,
|
|
37025
|
+
personPatents: 56,
|
|
37026
|
+
personWorkPositions: 57,
|
|
35895
37027
|
}
|
|
35896
37028
|
|
|
35897
37029
|
enum propertyType {
|
|
@@ -36163,6 +37295,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
36163
37295
|
completedDateTime: offsetDateTime | null;
|
|
36164
37296
|
@computed createdDateTime: offsetDateTime;
|
|
36165
37297
|
failureReason: string | null;
|
|
37298
|
+
processingInfo: string | null;
|
|
36166
37299
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
36167
37300
|
startedDateTime: offsetDateTime | null;
|
|
36168
37301
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -36466,6 +37599,8 @@ namespace reference.`microsoft.graph.search` {
|
|
|
36466
37599
|
}
|
|
36467
37600
|
|
|
36468
37601
|
}
|
|
37602
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
37603
|
+
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
36469
37604
|
@publicNamespace("microsoft.graph.security")
|
|
36470
37605
|
namespace reference.`microsoft.graph.security` {
|
|
36471
37606
|
@complex model account {
|
|
@@ -36509,6 +37644,67 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36509
37644
|
resourceType: string | null;
|
|
36510
37645
|
}
|
|
36511
37646
|
|
|
37647
|
+
@complex model analyzedEmailAttachment {
|
|
37648
|
+
detonationDetails: detonationDetails | null;
|
|
37649
|
+
fileExtension: string | null;
|
|
37650
|
+
fileName: string | null;
|
|
37651
|
+
fileSize: int32 | null;
|
|
37652
|
+
fileType: string | null;
|
|
37653
|
+
malwareFamily: string | null;
|
|
37654
|
+
sha256: string | null;
|
|
37655
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
37656
|
+
threatType: threatType | null;
|
|
37657
|
+
}
|
|
37658
|
+
|
|
37659
|
+
@complex model analyzedEmailAuthenticationDetail {
|
|
37660
|
+
compositeAuthentication: string | null;
|
|
37661
|
+
dkim: string | null;
|
|
37662
|
+
dmarc: string | null;
|
|
37663
|
+
senderPolicyFramework: string | null;
|
|
37664
|
+
}
|
|
37665
|
+
|
|
37666
|
+
@complex model analyzedEmailDeliveryDetail {
|
|
37667
|
+
action: deliveryAction | null;
|
|
37668
|
+
latestThreats: string | null;
|
|
37669
|
+
location: deliveryLocation | null;
|
|
37670
|
+
originalThreats: string | null;
|
|
37671
|
+
}
|
|
37672
|
+
|
|
37673
|
+
@complex model analyzedEmailDlpRuleInfo {
|
|
37674
|
+
name: string | null;
|
|
37675
|
+
ruleId: string | null;
|
|
37676
|
+
}
|
|
37677
|
+
|
|
37678
|
+
@complex model analyzedEmailExchangeTransportRuleInfo {
|
|
37679
|
+
name: string | null;
|
|
37680
|
+
ruleId: string | null;
|
|
37681
|
+
}
|
|
37682
|
+
|
|
37683
|
+
@complex model analyzedEmailRecipientDetail {
|
|
37684
|
+
ccRecipients: string[] | null;
|
|
37685
|
+
domainName: string | null;
|
|
37686
|
+
}
|
|
37687
|
+
|
|
37688
|
+
@complex model analyzedEmailSenderDetail {
|
|
37689
|
+
displayName: string | null;
|
|
37690
|
+
domainCreationDateTime: offsetDateTime | null;
|
|
37691
|
+
domainName: string | null;
|
|
37692
|
+
domainOwner: string | null;
|
|
37693
|
+
fromAddress: string | null;
|
|
37694
|
+
ipv4: string | null;
|
|
37695
|
+
location: string | null;
|
|
37696
|
+
mailFromAddress: string | null;
|
|
37697
|
+
mailFromDomainName: string | null;
|
|
37698
|
+
}
|
|
37699
|
+
|
|
37700
|
+
@complex model analyzedEmailUrl {
|
|
37701
|
+
detectionMethod: string | null;
|
|
37702
|
+
detonationDetails: detonationDetails | null;
|
|
37703
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
37704
|
+
threatType: threatType | null;
|
|
37705
|
+
url: string | null;
|
|
37706
|
+
}
|
|
37707
|
+
|
|
36512
37708
|
@complex model analyzedMessageEvidence extends alertEvidence {
|
|
36513
37709
|
antiSpamDirection: string | null;
|
|
36514
37710
|
attachmentsCount: int64 | null;
|
|
@@ -36582,6 +37778,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36582
37778
|
userAgent: string | null;
|
|
36583
37779
|
}
|
|
36584
37780
|
|
|
37781
|
+
@complex model compromiseIndicator {
|
|
37782
|
+
value: string | null;
|
|
37783
|
+
verdict: verdictCategory | null;
|
|
37784
|
+
}
|
|
37785
|
+
|
|
36585
37786
|
@complex model containerEvidence extends alertEvidence {
|
|
36586
37787
|
args: string[] | null;
|
|
36587
37788
|
command: string[] | null;
|
|
@@ -36612,6 +37813,46 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36612
37813
|
deploymentAccessKey: string;
|
|
36613
37814
|
}
|
|
36614
37815
|
|
|
37816
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
37817
|
+
@complex model detonationBehaviourDetails {
|
|
37818
|
+
actionStatus: string | null;
|
|
37819
|
+
behaviourCapability: string | null;
|
|
37820
|
+
behaviourGroup: string | null;
|
|
37821
|
+
details: string | null;
|
|
37822
|
+
eventDateTime: offsetDateTime | null;
|
|
37823
|
+
operation: string | null;
|
|
37824
|
+
processId: string | null;
|
|
37825
|
+
processName: string | null;
|
|
37826
|
+
target: string | null;
|
|
37827
|
+
}
|
|
37828
|
+
|
|
37829
|
+
@complex model detonationChain {
|
|
37830
|
+
childNodes: detonationChain[] | null;
|
|
37831
|
+
value: string | null;
|
|
37832
|
+
}
|
|
37833
|
+
|
|
37834
|
+
@complex model detonationDetails {
|
|
37835
|
+
analysisDateTime: offsetDateTime | null;
|
|
37836
|
+
compromiseIndicators: compromiseIndicator[] | null;
|
|
37837
|
+
detonationBehaviourDetails: detonationBehaviourDetails | null;
|
|
37838
|
+
detonationBehaviourDetailsV2: string | null;
|
|
37839
|
+
detonationChain: detonationChain | null;
|
|
37840
|
+
detonationObservables: detonationObservables | null;
|
|
37841
|
+
detonationScreenshotUri: string | null;
|
|
37842
|
+
detonationVerdict: string | null;
|
|
37843
|
+
detonationVerdictReason: string | null;
|
|
37844
|
+
entityMetadata: string | null;
|
|
37845
|
+
mitreTechniques: string | null;
|
|
37846
|
+
staticAnalysis: string | null;
|
|
37847
|
+
submissionSource: string | null;
|
|
37848
|
+
}
|
|
37849
|
+
|
|
37850
|
+
@complex model detonationObservables {
|
|
37851
|
+
contactedIps: string[] | null;
|
|
37852
|
+
contactedUrls: string[] | null;
|
|
37853
|
+
droppedfiles: string[] | null;
|
|
37854
|
+
}
|
|
37855
|
+
|
|
36615
37856
|
@complex model deviceEvidence extends alertEvidence {
|
|
36616
37857
|
azureAdDeviceId: string | null;
|
|
36617
37858
|
defenderAvStatus: defenderAvStatus | null;
|
|
@@ -36977,6 +38218,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36977
38218
|
processes: processEvidence[] | null;
|
|
36978
38219
|
}
|
|
36979
38220
|
|
|
38221
|
+
@complex model mergeResponse {
|
|
38222
|
+
targetIncidentId: string;
|
|
38223
|
+
}
|
|
38224
|
+
|
|
36980
38225
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
36981
38226
|
destinationAddress: ipEvidence | null;
|
|
36982
38227
|
destinationPort: int32 | null;
|
|
@@ -37174,6 +38419,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37174
38419
|
urls: urlEvidence[] | null;
|
|
37175
38420
|
}
|
|
37176
38421
|
|
|
38422
|
+
@complex model threatDetectionDetail {
|
|
38423
|
+
confidenceLevel: string | null;
|
|
38424
|
+
priorityAccountProtection: string | null;
|
|
38425
|
+
threats: string | null;
|
|
38426
|
+
}
|
|
38427
|
+
|
|
38428
|
+
@complex model timelineEvent {
|
|
38429
|
+
eventDateTime: offsetDateTime | null;
|
|
38430
|
+
eventDetails: string | null;
|
|
38431
|
+
eventResult: string | null;
|
|
38432
|
+
eventSource: eventSource | null;
|
|
38433
|
+
eventThreats: string[] | null;
|
|
38434
|
+
eventType: timelineEventType | null;
|
|
38435
|
+
}
|
|
38436
|
+
|
|
37177
38437
|
@complex model topicModelingSettings {
|
|
37178
38438
|
dynamicallyAdjustTopicCount: boolean | null;
|
|
37179
38439
|
ignoreNumbers: boolean | null;
|
|
@@ -37192,6 +38452,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37192
38452
|
displayName: string | null;
|
|
37193
38453
|
domainName: string | null;
|
|
37194
38454
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
38455
|
+
tenantId: string | null;
|
|
37195
38456
|
userPrincipalName: string | null;
|
|
37196
38457
|
userSid: string | null;
|
|
37197
38458
|
}
|
|
@@ -37229,6 +38490,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37229
38490
|
alertPolicyId: string | null;
|
|
37230
38491
|
alertWebUrl: string | null;
|
|
37231
38492
|
assignedTo: string | null;
|
|
38493
|
+
categories: string[] | null;
|
|
38494
|
+
|
|
38495
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
37232
38496
|
category: string | null;
|
|
37233
38497
|
classification: alertClassification | null;
|
|
37234
38498
|
comments: alertComment[] | null;
|
|
@@ -37260,6 +38524,46 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37260
38524
|
title: string | null;
|
|
37261
38525
|
}
|
|
37262
38526
|
|
|
38527
|
+
@entity model analyzedEmail extends reference.`microsoft.graph`.entity {
|
|
38528
|
+
alertIds: string[] | null;
|
|
38529
|
+
attachments: analyzedEmailAttachment[] | null;
|
|
38530
|
+
authenticationDetails: analyzedEmailAuthenticationDetail | null;
|
|
38531
|
+
bulkComplaintLevel: string | null;
|
|
38532
|
+
clientType: string | null;
|
|
38533
|
+
contexts: string[] | null;
|
|
38534
|
+
detectionMethods: string[] | null;
|
|
38535
|
+
directionality: antispamDirectionality | null;
|
|
38536
|
+
distributionList: string | null;
|
|
38537
|
+
dlpRules: analyzedEmailDlpRuleInfo[] | null;
|
|
38538
|
+
emailClusterId: string | null;
|
|
38539
|
+
exchangeTransportRules: analyzedEmailExchangeTransportRuleInfo[] | null;
|
|
38540
|
+
forwardingDetail: string | null;
|
|
38541
|
+
inboundConnectorFormattedName: string | null;
|
|
38542
|
+
internetMessageId: string | null;
|
|
38543
|
+
language: string | null;
|
|
38544
|
+
latestDelivery: analyzedEmailDeliveryDetail | null;
|
|
38545
|
+
loggedDateTime: offsetDateTime | null;
|
|
38546
|
+
networkMessageId: string | null;
|
|
38547
|
+
originalDelivery: analyzedEmailDeliveryDetail | null;
|
|
38548
|
+
overrideSources: string[] | null;
|
|
38549
|
+
phishConfidenceLevel: string | null;
|
|
38550
|
+
policy: string | null;
|
|
38551
|
+
policyAction: string | null;
|
|
38552
|
+
policyType: string | null;
|
|
38553
|
+
primaryOverrideSource: string | null;
|
|
38554
|
+
recipientDetail: analyzedEmailRecipientDetail | null;
|
|
38555
|
+
recipientEmailAddress: string | null;
|
|
38556
|
+
returnPath: string | null;
|
|
38557
|
+
senderDetail: analyzedEmailSenderDetail | null;
|
|
38558
|
+
sizeInBytes: int32 | null;
|
|
38559
|
+
spamConfidenceLevel: string | null;
|
|
38560
|
+
subject: string | null;
|
|
38561
|
+
threatDetectionDetails: threatDetectionDetail[] | null;
|
|
38562
|
+
threatTypes: threatType[] | null;
|
|
38563
|
+
timelineEvents: timelineEvent[] | null;
|
|
38564
|
+
urls: analyzedEmailUrl[] | null;
|
|
38565
|
+
}
|
|
38566
|
+
|
|
37263
38567
|
@entity model article extends reference.`microsoft.graph`.entity {
|
|
37264
38568
|
body: formattedContent;
|
|
37265
38569
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -37282,6 +38586,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37282
38586
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
37283
38587
|
}
|
|
37284
38588
|
|
|
38589
|
+
@entity model autoAuditingConfiguration extends reference.`microsoft.graph`.entity {
|
|
38590
|
+
isAutomatic: boolean;
|
|
38591
|
+
}
|
|
38592
|
+
|
|
37285
38593
|
@abstract
|
|
37286
38594
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
37287
38595
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -37315,6 +38623,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37315
38623
|
citationUrl: string | null;
|
|
37316
38624
|
}
|
|
37317
38625
|
|
|
38626
|
+
@abstract
|
|
38627
|
+
@entity model collaborationRoot extends reference.`microsoft.graph`.entity {
|
|
38628
|
+
@contains analyzedEmails: analyzedEmail[];
|
|
38629
|
+
}
|
|
38630
|
+
|
|
37318
38631
|
@abstract
|
|
37319
38632
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
37320
38633
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -37616,6 +38929,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37616
38929
|
@contains sensorCandidateActivationConfiguration: sensorCandidateActivationConfiguration;
|
|
37617
38930
|
@contains sensorCandidates: sensorCandidate[];
|
|
37618
38931
|
@contains sensors: sensor[];
|
|
38932
|
+
@contains settings: settingsContainer | null;
|
|
37619
38933
|
}
|
|
37620
38934
|
|
|
37621
38935
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
@@ -37775,6 +39089,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37775
39089
|
activationMode: sensorCandidateActivationMode;
|
|
37776
39090
|
}
|
|
37777
39091
|
|
|
39092
|
+
@entity model settingsContainer extends reference.`microsoft.graph`.entity {
|
|
39093
|
+
@contains autoAuditingConfiguration: autoAuditingConfiguration | null;
|
|
39094
|
+
}
|
|
39095
|
+
|
|
37778
39096
|
@entity model siteSource extends dataSource {
|
|
37779
39097
|
@references site: reference.`microsoft.graph`.site;
|
|
37780
39098
|
}
|
|
@@ -37939,6 +39257,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37939
39257
|
messageConversationExpansion: 64,
|
|
37940
39258
|
locationsWithoutHits: 256,
|
|
37941
39259
|
allItemsInFolder: 512,
|
|
39260
|
+
cloudNativeHtmlConversion: 1024,
|
|
37942
39261
|
}
|
|
37943
39262
|
|
|
37944
39263
|
@graphFlags
|
|
@@ -38012,6 +39331,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38012
39331
|
unknownFutureValue: 31,
|
|
38013
39332
|
}
|
|
38014
39333
|
|
|
39334
|
+
enum antispamDirectionality {
|
|
39335
|
+
`unknown`: 0,
|
|
39336
|
+
inbound: 1,
|
|
39337
|
+
outbound: 2,
|
|
39338
|
+
intraOrg: 3,
|
|
39339
|
+
unknownFutureValue: 127,
|
|
39340
|
+
}
|
|
39341
|
+
|
|
38015
39342
|
enum antispamTeamsDirection {
|
|
38016
39343
|
`unknown`: 0,
|
|
38017
39344
|
inbound: 1,
|
|
@@ -38097,6 +39424,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38097
39424
|
unknownFutureValue: 3,
|
|
38098
39425
|
}
|
|
38099
39426
|
|
|
39427
|
+
@graphFlags
|
|
39428
|
+
enum correlationReason {
|
|
39429
|
+
repeatedAlertOccurrence: 1,
|
|
39430
|
+
sameGeography: 2,
|
|
39431
|
+
similarArtifacts: 4,
|
|
39432
|
+
sameTargetedAsset: 8,
|
|
39433
|
+
sameNetworkSegment: 16,
|
|
39434
|
+
eventSequence: 32,
|
|
39435
|
+
timeFrame: 64,
|
|
39436
|
+
sameThreatSource: 128,
|
|
39437
|
+
similarTTPsOrBehavior: 256,
|
|
39438
|
+
sameActor: 512,
|
|
39439
|
+
sameCampaign: 1024,
|
|
39440
|
+
sharedIndicators: 2048,
|
|
39441
|
+
sameAsset: 4096,
|
|
39442
|
+
networkProximity: 8192,
|
|
39443
|
+
eventCasualSequence: 16384,
|
|
39444
|
+
temporalProximity: 32768,
|
|
39445
|
+
lateralMovementPath: 65536,
|
|
39446
|
+
unknownFutureValue: 131072,
|
|
39447
|
+
}
|
|
39448
|
+
|
|
38100
39449
|
enum dataSourceContainerStatus {
|
|
38101
39450
|
active: 1,
|
|
38102
39451
|
released: 2,
|
|
@@ -38138,6 +39487,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38138
39487
|
unknownFutureValue: 1023,
|
|
38139
39488
|
}
|
|
38140
39489
|
|
|
39490
|
+
enum deliveryAction {
|
|
39491
|
+
`unknown`: 0,
|
|
39492
|
+
deliveredToJunk: 1,
|
|
39493
|
+
delivered: 2,
|
|
39494
|
+
blocked: 3,
|
|
39495
|
+
replaced: 4,
|
|
39496
|
+
unknownFutureValue: 127,
|
|
39497
|
+
}
|
|
39498
|
+
|
|
39499
|
+
enum deliveryLocation {
|
|
39500
|
+
`unknown`: 0,
|
|
39501
|
+
inbox_folder: 1,
|
|
39502
|
+
junkFolder: 2,
|
|
39503
|
+
deletedFolder: 3,
|
|
39504
|
+
quarantine: 4,
|
|
39505
|
+
onprem_external: 5,
|
|
39506
|
+
failed: 6,
|
|
39507
|
+
dropped: 7,
|
|
39508
|
+
others: 10,
|
|
39509
|
+
unknownFutureValue: 127,
|
|
39510
|
+
}
|
|
39511
|
+
|
|
38141
39512
|
enum deploymentStatus {
|
|
38142
39513
|
upToDate: 1,
|
|
38143
39514
|
outdated: 2,
|
|
@@ -38235,6 +39606,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38235
39606
|
unknownFutureValue: 4,
|
|
38236
39607
|
}
|
|
38237
39608
|
|
|
39609
|
+
enum eventSource {
|
|
39610
|
+
system: 0,
|
|
39611
|
+
admin: 1,
|
|
39612
|
+
user: 2,
|
|
39613
|
+
unknownFutureValue: 127,
|
|
39614
|
+
}
|
|
39615
|
+
|
|
38238
39616
|
enum eventStatusType {
|
|
38239
39617
|
pending: 0,
|
|
38240
39618
|
error: 1,
|
|
@@ -38526,6 +39904,23 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38526
39904
|
unknownFutureValue: 4,
|
|
38527
39905
|
}
|
|
38528
39906
|
|
|
39907
|
+
enum remediationAction {
|
|
39908
|
+
moveToJunk: 1,
|
|
39909
|
+
moveToInbox: 2,
|
|
39910
|
+
hardDelete: 5,
|
|
39911
|
+
softDelete: 6,
|
|
39912
|
+
moveToDeletedItems: 7,
|
|
39913
|
+
unknownFutureValue: 14,
|
|
39914
|
+
moveToQuarantine: 15,
|
|
39915
|
+
}
|
|
39916
|
+
|
|
39917
|
+
enum remediationSeverity {
|
|
39918
|
+
low: 1,
|
|
39919
|
+
medium: 2,
|
|
39920
|
+
high: 3,
|
|
39921
|
+
unknownFutureValue: 127,
|
|
39922
|
+
}
|
|
39923
|
+
|
|
38529
39924
|
enum retentionTrigger {
|
|
38530
39925
|
dateLabeled: 0,
|
|
38531
39926
|
dateCreated: 1,
|
|
@@ -38587,6 +39982,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38587
39982
|
microsoftSentinel: 512,
|
|
38588
39983
|
microsoftInsiderRiskManagement: 1024,
|
|
38589
39984
|
microsoftThreatIntelligence: 2048,
|
|
39985
|
+
microsoftSecurityForAI: 4096,
|
|
38590
39986
|
}
|
|
38591
39987
|
|
|
38592
39988
|
enum serviceStatus {
|
|
@@ -38633,6 +40029,41 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38633
40029
|
unknownFutureValue: 31,
|
|
38634
40030
|
}
|
|
38635
40031
|
|
|
40032
|
+
enum threatType {
|
|
40033
|
+
`unknown`: 0,
|
|
40034
|
+
spam: 1,
|
|
40035
|
+
malware: 2,
|
|
40036
|
+
phish: 3,
|
|
40037
|
+
none: 4,
|
|
40038
|
+
unknownFutureValue: 127,
|
|
40039
|
+
}
|
|
40040
|
+
|
|
40041
|
+
enum timelineEventType {
|
|
40042
|
+
originalDelivery: 0,
|
|
40043
|
+
systemTimeTravel: 1,
|
|
40044
|
+
dynamicDelivery: 2,
|
|
40045
|
+
userUrlClick: 3,
|
|
40046
|
+
reprocessed: 4,
|
|
40047
|
+
zap: 5,
|
|
40048
|
+
quarantineRelease: 6,
|
|
40049
|
+
air: 7,
|
|
40050
|
+
`unknown`: 8,
|
|
40051
|
+
unknownFutureValue: 127,
|
|
40052
|
+
}
|
|
40053
|
+
|
|
40054
|
+
enum verdictCategory {
|
|
40055
|
+
none: 0,
|
|
40056
|
+
malware: 1,
|
|
40057
|
+
phish: 2,
|
|
40058
|
+
siteUnavailable: 3,
|
|
40059
|
+
spam: 4,
|
|
40060
|
+
decryptionFailed: 5,
|
|
40061
|
+
unsupportedUriScheme: 6,
|
|
40062
|
+
unsupportedFileType: 7,
|
|
40063
|
+
undefined: 8,
|
|
40064
|
+
unknownFutureValue: 127,
|
|
40065
|
+
}
|
|
40066
|
+
|
|
38636
40067
|
enum vmCloudProvider {
|
|
38637
40068
|
`unknown`: 0,
|
|
38638
40069
|
azure: 1,
|