@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +2222 -51
- package/lib/Bleu/V1.0/main.tsp +2203 -51
- package/lib/Delos/Beta/main.tsp +1721 -49
- package/lib/Delos/V1.0/main.tsp +308 -20
- package/lib/Fairfax/Beta/main.tsp +704 -60
- package/lib/Fairfax/V1.0/main.tsp +304 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +195 -0
- package/lib/Mooncake/Beta/main.tsp +653 -50
- package/lib/Mooncake/V1.0/main.tsp +171 -20
- package/lib/Prod/Beta/main.tsp +3553 -216
- package/lib/Prod/V1.0/main.tsp +979 -26
- package/lib/USNat/Beta/main.tsp +301 -37
- package/lib/USNat/V1.0/main.tsp +399 -3
- package/lib/USSec/Beta/main.tsp +700 -65
- package/lib/USSec/V1.0/main.tsp +702 -3
- package/package.json +2 -2
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -554,6 +554,127 @@ namespace reference.`microsoft.graph` {
|
|
|
554
554
|
@complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
+
@complex model applicationLocation {
|
|
558
|
+
dataCenter: string | null;
|
|
559
|
+
headquarters: string | null;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
@complex model applicationRiskFactorCertificateInfo {
|
|
563
|
+
hasBadCommonName: boolean | null;
|
|
564
|
+
hasInsecureSignature: boolean | null;
|
|
565
|
+
hasNoChainOfTrust: boolean | null;
|
|
566
|
+
isDenylisted: boolean | null;
|
|
567
|
+
isHostnameMismatch: boolean | null;
|
|
568
|
+
isNotAfter: boolean | null;
|
|
569
|
+
isNotBefore: boolean | null;
|
|
570
|
+
isRevoked: boolean | null;
|
|
571
|
+
isSelfSigned: boolean | null;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
@complex model applicationRiskFactorGeneralInfo {
|
|
575
|
+
consumerPopularity: int32 | null;
|
|
576
|
+
domainRegistrationDate: offsetDateTime | null;
|
|
577
|
+
founded: int32 | null;
|
|
578
|
+
hasDisasterRecoveryPlan: boolean | null;
|
|
579
|
+
hold: holdType;
|
|
580
|
+
hostingCompanyName: string | null;
|
|
581
|
+
location: applicationLocation | null;
|
|
582
|
+
privacyPolicy: string | null;
|
|
583
|
+
processedDataTypes: applicationDataType;
|
|
584
|
+
termsOfService: string | null;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
@complex model applicationRiskFactorLegalInfo {
|
|
588
|
+
dataRetention: dataRetentionLevel;
|
|
589
|
+
gdpr: applicationRiskFactorLegalInfoGdpr;
|
|
590
|
+
hasDataOwnership: boolean | null;
|
|
591
|
+
hasDmca: boolean | null;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
@complex model applicationRiskFactorLegalInfoGdpr {
|
|
595
|
+
dataProtection: dataProtection;
|
|
596
|
+
hasRightToErasure: boolean | null;
|
|
597
|
+
isReportingDataBreaches: boolean | null;
|
|
598
|
+
statementUrl: string | null;
|
|
599
|
+
userOwnership: userOwnership;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
@complex model applicationRiskFactors {
|
|
603
|
+
compliance: applicationSecurityCompliance | null;
|
|
604
|
+
general: applicationRiskFactorGeneralInfo | null;
|
|
605
|
+
legal: applicationRiskFactorLegalInfo | null;
|
|
606
|
+
security: applicationRiskFactorSecurityInfo | null;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
@complex model applicationRiskFactorSecurityInfo {
|
|
610
|
+
certificate: applicationRiskFactorCertificateInfo;
|
|
611
|
+
domainToCheck: string | null;
|
|
612
|
+
hasAdminAuditTrail: boolean | null;
|
|
613
|
+
hasAnonymousUsage: boolean | null;
|
|
614
|
+
hasDataAuditTrail: boolean | null;
|
|
615
|
+
hasDataClassification: boolean | null;
|
|
616
|
+
hasDataEncrypted: boolean | null;
|
|
617
|
+
hasEnforceTransportEnc: boolean | null;
|
|
618
|
+
hasIpRestriction: boolean | null;
|
|
619
|
+
hasMFA: boolean | null;
|
|
620
|
+
hasPenTest: boolean | null;
|
|
621
|
+
hasRememberPassword: boolean | null;
|
|
622
|
+
hasSamlSupport: boolean | null;
|
|
623
|
+
hasUserAuditLogs: boolean | null;
|
|
624
|
+
hasUserDataUpload: boolean | null;
|
|
625
|
+
hasUserRolesSupport: boolean | null;
|
|
626
|
+
hasValidCertName: boolean | null;
|
|
627
|
+
httpsSecurityHeaders: string[];
|
|
628
|
+
isCertTrusted: boolean | null;
|
|
629
|
+
isDrownVulnerable: boolean | null;
|
|
630
|
+
isHeartbleedProof: boolean | null;
|
|
631
|
+
lastBreachDate: offsetDateTime | null;
|
|
632
|
+
latestValidSSL: sslVersion;
|
|
633
|
+
passwordPolicy: passwordPolicy;
|
|
634
|
+
restEncryptionType: restEncryptionType;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
@complex model applicationRiskScore {
|
|
638
|
+
compliance: float32 | null;
|
|
639
|
+
legal: float32 | null;
|
|
640
|
+
provider: float32 | null;
|
|
641
|
+
security: float32 | null;
|
|
642
|
+
total: float32 | null;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
@complex model applicationSecurityCompliance {
|
|
646
|
+
cobit: boolean | null;
|
|
647
|
+
coppa: boolean | null;
|
|
648
|
+
csaStar: csaStarLevel | null;
|
|
649
|
+
fedRamp: fedRampLevel | null;
|
|
650
|
+
ferpa: boolean | null;
|
|
651
|
+
ffiec: boolean | null;
|
|
652
|
+
finra: boolean | null;
|
|
653
|
+
fisma: boolean | null;
|
|
654
|
+
gaap: boolean | null;
|
|
655
|
+
gapp: boolean | null;
|
|
656
|
+
glba: boolean | null;
|
|
657
|
+
hipaa: boolean | null;
|
|
658
|
+
hitrust: boolean | null;
|
|
659
|
+
isae3402: boolean | null;
|
|
660
|
+
iso27001: boolean | null;
|
|
661
|
+
iso27002: boolean | null;
|
|
662
|
+
iso27017: boolean | null;
|
|
663
|
+
iso27018: boolean | null;
|
|
664
|
+
itar: boolean | null;
|
|
665
|
+
jerichoForumCommandments: boolean | null;
|
|
666
|
+
pci: pciVersion | null;
|
|
667
|
+
privacyShield: boolean | null;
|
|
668
|
+
safeHarbor: boolean | null;
|
|
669
|
+
soc1: boolean | null;
|
|
670
|
+
soc2: boolean | null;
|
|
671
|
+
soc3: boolean | null;
|
|
672
|
+
sox: boolean | null;
|
|
673
|
+
sp800_53: boolean | null;
|
|
674
|
+
ssae16: boolean | null;
|
|
675
|
+
ustr: boolean | null;
|
|
676
|
+
}
|
|
677
|
+
|
|
557
678
|
@complex model applicationServicePrincipal {
|
|
558
679
|
@references application: application | null;
|
|
559
680
|
@references servicePrincipal: servicePrincipal | null;
|
|
@@ -605,6 +726,7 @@ namespace reference.`microsoft.graph` {
|
|
|
605
726
|
}
|
|
606
727
|
|
|
607
728
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
729
|
+
identifierUris: identifierUriConfiguration | null;
|
|
608
730
|
}
|
|
609
731
|
|
|
610
732
|
@abstract
|
|
@@ -613,6 +735,10 @@ namespace reference.`microsoft.graph` {
|
|
|
613
735
|
|
|
614
736
|
}
|
|
615
737
|
|
|
738
|
+
@complex model appManagementPolicyActorExemptions {
|
|
739
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
740
|
+
}
|
|
741
|
+
|
|
616
742
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
617
743
|
}
|
|
618
744
|
|
|
@@ -1045,6 +1171,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1045
1171
|
@complex model azureADJoinPolicy {
|
|
1046
1172
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
1047
1173
|
isAdminConfigurable: boolean | null;
|
|
1174
|
+
localAdmins: localAdminSettings | null;
|
|
1048
1175
|
}
|
|
1049
1176
|
|
|
1050
1177
|
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
@@ -1069,6 +1196,18 @@ namespace reference.`microsoft.graph` {
|
|
|
1069
1196
|
@references endUserNotification: endUserNotification | null;
|
|
1070
1197
|
}
|
|
1071
1198
|
|
|
1199
|
+
@complex model baselineParameter {
|
|
1200
|
+
description: string | null;
|
|
1201
|
+
displayName: string;
|
|
1202
|
+
parameterType: baselineParameterType;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
@complex model baselineResource {
|
|
1206
|
+
displayName: string;
|
|
1207
|
+
properties: openComplexDictionaryType;
|
|
1208
|
+
resourceType: string;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1072
1211
|
@complex model basicAuthentication extends apiAuthenticationConfigurationBase {
|
|
1073
1212
|
password: string | null;
|
|
1074
1213
|
username: string | null;
|
|
@@ -1288,6 +1427,15 @@ namespace reference.`microsoft.graph` {
|
|
|
1288
1427
|
isVideoOnDemandEnabled: boolean | null;
|
|
1289
1428
|
}
|
|
1290
1429
|
|
|
1430
|
+
@complex model browseQueryResponseItem {
|
|
1431
|
+
itemKey: string | null;
|
|
1432
|
+
itemsCount: int32 | null;
|
|
1433
|
+
name: string | null;
|
|
1434
|
+
sizeInBytes: string | null;
|
|
1435
|
+
type: browseQueryResponseItemType;
|
|
1436
|
+
webUrl: string | null;
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1291
1439
|
@complex model browserSharedCookieHistory {
|
|
1292
1440
|
/**
|
|
1293
1441
|
* The comment of the cookie
|
|
@@ -1641,6 +1789,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1641
1789
|
displayAs: string | null;
|
|
1642
1790
|
}
|
|
1643
1791
|
|
|
1792
|
+
@complex model claimBinding {
|
|
1793
|
+
matchConfidenceLevel: matchConfidenceLevel;
|
|
1794
|
+
sourceAttribute: string;
|
|
1795
|
+
verifiedIdClaim: string;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
@complex model claimValidation {
|
|
1799
|
+
customExtensionId: string;
|
|
1800
|
+
isEnabled: boolean;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1644
1803
|
@complex model classifcationErrorBase {
|
|
1645
1804
|
code: string | null;
|
|
1646
1805
|
innerError: classificationInnerError | null;
|
|
@@ -2124,6 +2283,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2124
2283
|
tenantId: string | null;
|
|
2125
2284
|
}
|
|
2126
2285
|
|
|
2286
|
+
@complex model crossTenantAccessPolicyAppServiceConnectSetting {
|
|
2287
|
+
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2127
2290
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
2128
2291
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2129
2292
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -2135,6 +2298,14 @@ namespace reference.`microsoft.graph` {
|
|
|
2135
2298
|
isMfaAccepted: boolean | null;
|
|
2136
2299
|
}
|
|
2137
2300
|
|
|
2301
|
+
@complex model crossTenantAccessPolicyM365CollaborationInboundSetting {
|
|
2302
|
+
users: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
@complex model crossTenantAccessPolicyM365CollaborationOutboundSetting {
|
|
2306
|
+
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2138
2309
|
@complex model crossTenantAccessPolicyTarget {
|
|
2139
2310
|
target: string | null;
|
|
2140
2311
|
targetType: crossTenantAccessPolicyTargetType | null;
|
|
@@ -2157,7 +2328,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2157
2328
|
locale: string | null;
|
|
2158
2329
|
}
|
|
2159
2330
|
|
|
2331
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
2332
|
+
identifierUris: identifierUriConfiguration | null;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2160
2335
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
2336
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2161
2337
|
}
|
|
2162
2338
|
|
|
2163
2339
|
@abstract
|
|
@@ -2215,6 +2391,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2215
2391
|
@complex model customMetadataDictionary extends Dictionary {
|
|
2216
2392
|
}
|
|
2217
2393
|
|
|
2394
|
+
@abstract
|
|
2395
|
+
@complex model customSecurityAttributeExemption {
|
|
2396
|
+
id: string;
|
|
2397
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
2401
|
+
value: string | null;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2218
2404
|
@open
|
|
2219
2405
|
@complex model customSecurityAttributeValue {
|
|
2220
2406
|
}
|
|
@@ -2946,6 +3132,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2946
3132
|
status: string | null;
|
|
2947
3133
|
}
|
|
2948
3134
|
|
|
3135
|
+
@complex model driftedProperty {
|
|
3136
|
+
currentValue: Json | null;
|
|
3137
|
+
desiredValue: Json | null;
|
|
3138
|
+
propertyName: string;
|
|
3139
|
+
}
|
|
3140
|
+
|
|
2949
3141
|
@complex model driveItemSource {
|
|
2950
3142
|
application: driveItemSourceApplication | null;
|
|
2951
3143
|
externalId: string | null;
|
|
@@ -3209,6 +3401,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3209
3401
|
name: string | null;
|
|
3210
3402
|
}
|
|
3211
3403
|
|
|
3404
|
+
@complex model emailDetails {
|
|
3405
|
+
body: string;
|
|
3406
|
+
senderEmailAddress: string;
|
|
3407
|
+
subject: string;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3212
3410
|
@open
|
|
3213
3411
|
@complex model emailIdentity extends identity {
|
|
3214
3412
|
email: string | null;
|
|
@@ -3276,6 +3474,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3276
3474
|
scopes: string[];
|
|
3277
3475
|
}
|
|
3278
3476
|
|
|
3477
|
+
@complex model errorDetail {
|
|
3478
|
+
errorMessage: string;
|
|
3479
|
+
resourceInstanceName: string;
|
|
3480
|
+
resourceType: string;
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3279
3483
|
@abstract
|
|
3280
3484
|
@complex model eventMessageDetail {
|
|
3281
3485
|
}
|
|
@@ -3297,6 +3501,13 @@ namespace reference.`microsoft.graph` {
|
|
|
3297
3501
|
type: expirationPatternType | null;
|
|
3298
3502
|
}
|
|
3299
3503
|
|
|
3504
|
+
@complex model exportItemResponse {
|
|
3505
|
+
changeKey: string | null;
|
|
3506
|
+
data: stream | null;
|
|
3507
|
+
error: mailTipsError | null;
|
|
3508
|
+
itemId: string | null;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3300
3511
|
@complex model expressionInputObject {
|
|
3301
3512
|
definition: objectDefinition | null;
|
|
3302
3513
|
properties: stringKeyObjectValuePair[] | null;
|
|
@@ -3328,6 +3539,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3328
3539
|
labels: sensitivityLabelAssignment[] | null;
|
|
3329
3540
|
}
|
|
3330
3541
|
|
|
3542
|
+
@complex model faceCheckConfiguration {
|
|
3543
|
+
isEnabled: boolean;
|
|
3544
|
+
sourcePhotoClaimName: string;
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3331
3547
|
@complex model fallbackToMicrosoftProviderOnError extends customExtensionBehaviorOnError {
|
|
3332
3548
|
}
|
|
3333
3549
|
|
|
@@ -3563,6 +3779,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3563
3779
|
isPicture: boolean | null;
|
|
3564
3780
|
}
|
|
3565
3781
|
|
|
3782
|
+
@complex model identifierUriConfiguration {
|
|
3783
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
3784
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
3785
|
+
}
|
|
3786
|
+
|
|
3787
|
+
@complex model identifierUriRestriction {
|
|
3788
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
3789
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
3790
|
+
excludeSaml: boolean | null;
|
|
3791
|
+
isStateSetByMicrosoft: boolean;
|
|
3792
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
3793
|
+
state: appManagementRestrictionState;
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3566
3796
|
@open
|
|
3567
3797
|
@complex model identity {
|
|
3568
3798
|
displayName: string | null;
|
|
@@ -4185,6 +4415,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4185
4415
|
isEnabled: boolean | null;
|
|
4186
4416
|
}
|
|
4187
4417
|
|
|
4418
|
+
@complex model localAdminSettings {
|
|
4419
|
+
enableGlobalAdmins: boolean | null;
|
|
4420
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
4421
|
+
}
|
|
4422
|
+
|
|
4188
4423
|
@complex model localeInfo {
|
|
4189
4424
|
displayName: string | null;
|
|
4190
4425
|
locale: string | null;
|
|
@@ -4352,6 +4587,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4352
4587
|
externalDirectoryObjectId: string | null;
|
|
4353
4588
|
}
|
|
4354
4589
|
|
|
4590
|
+
@complex model mailboxItemImportSession {
|
|
4591
|
+
expirationDateTime: offsetDateTime | null;
|
|
4592
|
+
importUrl: string | null;
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4355
4595
|
@complex model mailboxSettings {
|
|
4356
4596
|
archiveFolder: string | null;
|
|
4357
4597
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -5125,6 +5365,16 @@ namespace reference.`microsoft.graph` {
|
|
|
5125
5365
|
@complex model onOtpSendHandler {
|
|
5126
5366
|
}
|
|
5127
5367
|
|
|
5368
|
+
@complex model onPasswordMigrationCustomExtensionHandler extends onPasswordSubmitHandler {
|
|
5369
|
+
configuration: customExtensionOverwriteConfiguration | null;
|
|
5370
|
+
migrationPropertyId: string;
|
|
5371
|
+
@references customExtension: onPasswordSubmitCustomExtension | null;
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5374
|
+
@abstract
|
|
5375
|
+
@complex model onPasswordSubmitHandler {
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5128
5378
|
@complex model onPremisesAccidentalDeletionPrevention {
|
|
5129
5379
|
alertThreshold: int32 | null;
|
|
5130
5380
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
@@ -5135,6 +5385,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5135
5385
|
}
|
|
5136
5386
|
|
|
5137
5387
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
5388
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
5138
5389
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
5139
5390
|
blockSoftMatchEnabled: boolean | null;
|
|
5140
5391
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -5202,6 +5453,19 @@ namespace reference.`microsoft.graph` {
|
|
|
5202
5453
|
@complex model onUserCreateStartHandler {
|
|
5203
5454
|
}
|
|
5204
5455
|
|
|
5456
|
+
@complex model onVerifiedIdClaimValidationCustomExtensionHandler extends onVerifiedIdClaimValidationHandler {
|
|
5457
|
+
configuration: customExtensionOverwriteConfiguration | null;
|
|
5458
|
+
@references customExtension: onVerifiedIdClaimValidationCustomExtension | null;
|
|
5459
|
+
}
|
|
5460
|
+
|
|
5461
|
+
@abstract
|
|
5462
|
+
@complex model onVerifiedIdClaimValidationHandler {
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
@open
|
|
5466
|
+
@complex model openComplexDictionaryType extends Dictionary {
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5205
5469
|
@complex model openIdConnectSetting {
|
|
5206
5470
|
clientId: string;
|
|
5207
5471
|
discoveryUrl: string;
|
|
@@ -5293,7 +5557,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5293
5557
|
*/
|
|
5294
5558
|
privacySettingsHidden: boolean;
|
|
5295
5559
|
/**
|
|
5296
|
-
* The type of user. Possible values are administrator and standard. Default value is administrator.
|
|
5560
|
+
* The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
|
|
5297
5561
|
|
|
5298
5562
|
*/
|
|
5299
5563
|
userType: windowsUserType;
|
|
@@ -7108,6 +7372,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7108
7372
|
managerLevel: int32 | null;
|
|
7109
7373
|
}
|
|
7110
7374
|
|
|
7375
|
+
@complex model targetOwners {
|
|
7376
|
+
notifyMembers: notifyMembers;
|
|
7377
|
+
securityGroups: string[];
|
|
7378
|
+
}
|
|
7379
|
+
|
|
7111
7380
|
@complex model targetResource {
|
|
7112
7381
|
displayName: string | null;
|
|
7113
7382
|
groupType: groupType | null;
|
|
@@ -7855,6 +8124,19 @@ namespace reference.`microsoft.graph` {
|
|
|
7855
8124
|
type: string | null;
|
|
7856
8125
|
}
|
|
7857
8126
|
|
|
8127
|
+
@complex model verifiedIdProfileConfiguration {
|
|
8128
|
+
acceptedIssuer: string;
|
|
8129
|
+
claimBindings: claimBinding[];
|
|
8130
|
+
claimBindingSource: claimBindingSource;
|
|
8131
|
+
claimValidation: claimValidation;
|
|
8132
|
+
type: string;
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8135
|
+
@complex model verifiedIdUsageConfiguration {
|
|
8136
|
+
isEnabledForTestOnly: boolean;
|
|
8137
|
+
purpose: verifiedIdUsageConfigurationPurpose;
|
|
8138
|
+
}
|
|
8139
|
+
|
|
7858
8140
|
@complex model verifiedPublisher {
|
|
7859
8141
|
addedDateTime: offsetDateTime | null;
|
|
7860
8142
|
displayName: string | null;
|
|
@@ -7976,6 +8258,70 @@ namespace reference.`microsoft.graph` {
|
|
|
7976
8258
|
dnsConfiguration: webApplicationFirewallDnsConfiguration | null;
|
|
7977
8259
|
}
|
|
7978
8260
|
|
|
8261
|
+
@open
|
|
8262
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
8263
|
+
}
|
|
8264
|
+
|
|
8265
|
+
@open
|
|
8266
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
8267
|
+
}
|
|
8268
|
+
|
|
8269
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
8270
|
+
attestationObject: string | null;
|
|
8271
|
+
clientDataJSON: string | null;
|
|
8272
|
+
}
|
|
8273
|
+
|
|
8274
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
8275
|
+
authenticatorAttachment: string | null;
|
|
8276
|
+
requireResidentKey: boolean | null;
|
|
8277
|
+
userVerification: string | null;
|
|
8278
|
+
}
|
|
8279
|
+
|
|
8280
|
+
@complex model webauthnCredentialCreationOptions {
|
|
8281
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
8282
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
8283
|
+
}
|
|
8284
|
+
|
|
8285
|
+
@complex model webauthnPublicKeyCredential {
|
|
8286
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
8287
|
+
id: string | null;
|
|
8288
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
8289
|
+
}
|
|
8290
|
+
|
|
8291
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
8292
|
+
attestation: string | null;
|
|
8293
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
8294
|
+
challenge: string | null;
|
|
8295
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
8296
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
8297
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
8298
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
8299
|
+
timeout: int32 | null;
|
|
8300
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
8301
|
+
}
|
|
8302
|
+
|
|
8303
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
8304
|
+
id: string | null;
|
|
8305
|
+
transports: string[] | null;
|
|
8306
|
+
type: string | null;
|
|
8307
|
+
}
|
|
8308
|
+
|
|
8309
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
8310
|
+
alg: int32 | null;
|
|
8311
|
+
type: string | null;
|
|
8312
|
+
}
|
|
8313
|
+
|
|
8314
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
8315
|
+
id: string | null;
|
|
8316
|
+
name: string | null;
|
|
8317
|
+
}
|
|
8318
|
+
|
|
8319
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
8320
|
+
displayName: string | null;
|
|
8321
|
+
id: string | null;
|
|
8322
|
+
name: string | null;
|
|
8323
|
+
}
|
|
8324
|
+
|
|
7979
8325
|
@complex model webPartData {
|
|
7980
8326
|
dataVersion: string | null;
|
|
7981
8327
|
description: string | null;
|
|
@@ -8951,6 +9297,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8951
9297
|
objectId: string | null;
|
|
8952
9298
|
onPremisesSecurityIdentifier: string | null;
|
|
8953
9299
|
principalName: string | null;
|
|
9300
|
+
subjectLifecycle: accessPackageSubjectLifecycle;
|
|
8954
9301
|
subjectType: accessPackageSubjectType | null;
|
|
8955
9302
|
@references connectedOrganization: connectedOrganization | null;
|
|
8956
9303
|
}
|
|
@@ -9079,6 +9426,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9079
9426
|
}
|
|
9080
9427
|
|
|
9081
9428
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
9429
|
+
@contains configurationManagement: configurationManagement | null;
|
|
9082
9430
|
@contains edge: edge | null;
|
|
9083
9431
|
@contains exchange: exchangeAdmin | null;
|
|
9084
9432
|
@contains microsoft365Apps: adminMicrosoft365Apps | null;
|
|
@@ -9123,21 +9471,18 @@ namespace reference.`microsoft.graph` {
|
|
|
9123
9471
|
@open
|
|
9124
9472
|
@entity model agentIdentity extends servicePrincipal {
|
|
9125
9473
|
agentIdentityBlueprintId: string;
|
|
9126
|
-
createdByAppId: string | null;
|
|
9127
9474
|
@computed createdDateTime: offsetDateTime | null;
|
|
9128
9475
|
@references sponsors: directoryObject[];
|
|
9129
9476
|
}
|
|
9130
9477
|
|
|
9131
9478
|
@open
|
|
9132
9479
|
@entity model agentIdentityBlueprint extends application {
|
|
9133
|
-
createdByAppId: string | null;
|
|
9134
9480
|
@contains inheritablePermissions: inheritablePermission[];
|
|
9135
9481
|
@references sponsors: directoryObject[];
|
|
9136
9482
|
}
|
|
9137
9483
|
|
|
9138
9484
|
@open
|
|
9139
9485
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
9140
|
-
createdByAppId: string | null;
|
|
9141
9486
|
@references sponsors: directoryObject[];
|
|
9142
9487
|
}
|
|
9143
9488
|
|
|
@@ -9989,6 +10334,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9989
10334
|
appRoles: appRole[];
|
|
9990
10335
|
authenticationBehaviors: authenticationBehaviors | null;
|
|
9991
10336
|
certification: certification | null;
|
|
10337
|
+
createdByAppId: string | null;
|
|
9992
10338
|
@computed createdDateTime: offsetDateTime | null;
|
|
9993
10339
|
defaultRedirectUri: string | null;
|
|
9994
10340
|
description: string | null;
|
|
@@ -9998,9 +10344,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9998
10344
|
identifierUris: string[];
|
|
9999
10345
|
info: informationalUrl | null;
|
|
10000
10346
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
10347
|
+
isDisabled: boolean | null;
|
|
10001
10348
|
isFallbackPublicClient: boolean | null;
|
|
10002
10349
|
keyCredentials: keyCredential[];
|
|
10003
10350
|
logo: stream;
|
|
10351
|
+
managerApplications: guid;
|
|
10004
10352
|
nativeAuthenticationApisEnabled: nativeAuthenticationApisEnabled | null;
|
|
10005
10353
|
notes: string | null;
|
|
10006
10354
|
oauth2RequirePostResponse: boolean;
|
|
@@ -10034,11 +10382,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10034
10382
|
|
|
10035
10383
|
@entity model applicationTemplate extends entity {
|
|
10036
10384
|
categories: string[] | null;
|
|
10385
|
+
deprecationDate: offsetDateTime | null;
|
|
10037
10386
|
description: string | null;
|
|
10038
10387
|
displayName: string | null;
|
|
10388
|
+
endpoints: string[] | null;
|
|
10039
10389
|
homePageUrl: string | null;
|
|
10390
|
+
isEntraIntegrated: boolean;
|
|
10391
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
10040
10392
|
logoUrl: string | null;
|
|
10041
10393
|
publisher: string | null;
|
|
10394
|
+
riskFactors: applicationRiskFactors | null;
|
|
10395
|
+
riskScore: applicationRiskScore | null;
|
|
10042
10396
|
supportedProvisioningTypes: string[] | null;
|
|
10043
10397
|
supportedSingleSignOnModes: string[] | null;
|
|
10044
10398
|
}
|
|
@@ -10095,6 +10449,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10095
10449
|
status: string | null;
|
|
10096
10450
|
}
|
|
10097
10451
|
|
|
10452
|
+
@entity model approvedClientApp extends entity {
|
|
10453
|
+
displayName: string | null;
|
|
10454
|
+
}
|
|
10455
|
+
|
|
10098
10456
|
@entity model appScope extends entity {
|
|
10099
10457
|
displayName: string | null;
|
|
10100
10458
|
type: string | null;
|
|
@@ -10373,6 +10731,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10373
10731
|
|
|
10374
10732
|
@entity model backupRestoreRoot extends entity {
|
|
10375
10733
|
serviceStatus: serviceStatus | null;
|
|
10734
|
+
@contains browseSessions: browseSessionBase[];
|
|
10376
10735
|
@contains driveInclusionRules: driveProtectionRule[];
|
|
10377
10736
|
@contains driveProtectionUnits: driveProtectionUnit[];
|
|
10378
10737
|
@contains driveProtectionUnitsBulkAdditionJobs: driveProtectionUnitsBulkAdditionJob[];
|
|
@@ -10381,6 +10740,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10381
10740
|
@contains mailboxInclusionRules: mailboxProtectionRule[];
|
|
10382
10741
|
@contains mailboxProtectionUnits: mailboxProtectionUnit[];
|
|
10383
10742
|
@contains mailboxProtectionUnitsBulkAdditionJobs: mailboxProtectionUnitsBulkAdditionJob[];
|
|
10743
|
+
@contains oneDriveForBusinessBrowseSessions: oneDriveForBusinessBrowseSession[];
|
|
10384
10744
|
@contains oneDriveForBusinessProtectionPolicies: oneDriveForBusinessProtectionPolicy[];
|
|
10385
10745
|
@contains oneDriveForBusinessRestoreSessions: oneDriveForBusinessRestoreSession[];
|
|
10386
10746
|
@contains protectionPolicies: protectionPolicyBase[];
|
|
@@ -10388,6 +10748,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10388
10748
|
@contains restorePoints: restorePoint[];
|
|
10389
10749
|
@contains restoreSessions: restoreSessionBase[];
|
|
10390
10750
|
@contains serviceApps: serviceApp[];
|
|
10751
|
+
@contains sharePointBrowseSessions: sharePointBrowseSession[];
|
|
10391
10752
|
@contains sharePointProtectionPolicies: sharePointProtectionPolicy[];
|
|
10392
10753
|
@contains sharePointRestoreSessions: sharePointRestoreSession[];
|
|
10393
10754
|
@contains siteInclusionRules: siteProtectionRule[];
|
|
@@ -10798,6 +11159,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10798
11159
|
@contains sites: browserSite[];
|
|
10799
11160
|
}
|
|
10800
11161
|
|
|
11162
|
+
@abstract
|
|
11163
|
+
@entity model browseSessionBase extends entity {
|
|
11164
|
+
backupSizeInBytes: string | null;
|
|
11165
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11166
|
+
error: publicError | null;
|
|
11167
|
+
expirationDateTime: offsetDateTime | null;
|
|
11168
|
+
restorePointDateTime: offsetDateTime | null;
|
|
11169
|
+
restorePointId: string | null;
|
|
11170
|
+
status: browseSessionStatus;
|
|
11171
|
+
}
|
|
11172
|
+
|
|
10801
11173
|
@entity model building extends place {
|
|
10802
11174
|
resourceLinks: resourceLink[];
|
|
10803
11175
|
wifiState: placeFeatureEnablement;
|
|
@@ -10936,6 +11308,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10936
11308
|
@contains verticalSection: verticalSection | null;
|
|
10937
11309
|
}
|
|
10938
11310
|
|
|
11311
|
+
@entity model caPoliciesDeletableRoot extends entity {
|
|
11312
|
+
@contains namedLocations: namedLocation[];
|
|
11313
|
+
@contains policies: conditionalAccessPolicy[];
|
|
11314
|
+
}
|
|
11315
|
+
|
|
10939
11316
|
@entity model certificateAuthorityDetail extends directoryObject {
|
|
10940
11317
|
certificate: binary;
|
|
10941
11318
|
certificateAuthorityType: certificateAuthorityType | null;
|
|
@@ -10977,11 +11354,15 @@ namespace reference.`microsoft.graph` {
|
|
|
10977
11354
|
email: string | null;
|
|
10978
11355
|
isArchived: boolean | null;
|
|
10979
11356
|
isFavoriteByDefault: boolean | null;
|
|
11357
|
+
layoutType: channelLayoutType | null;
|
|
10980
11358
|
membershipType: channelMembershipType | null;
|
|
11359
|
+
migrationMode: migrationMode | null;
|
|
11360
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10981
11361
|
summary: channelSummary | null;
|
|
10982
11362
|
tenantId: string | null;
|
|
10983
11363
|
webUrl: string | null;
|
|
10984
11364
|
@contains allMembers: conversationMember[];
|
|
11365
|
+
@references enabledApps: teamsApp[];
|
|
10985
11366
|
@contains filesFolder: driveItem | null;
|
|
10986
11367
|
@contains members: conversationMember[];
|
|
10987
11368
|
@contains messages: chatMessage[];
|
|
@@ -10994,7 +11375,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10994
11375
|
@computed createdDateTime: offsetDateTime | null;
|
|
10995
11376
|
isHiddenForAllMembers: boolean | null;
|
|
10996
11377
|
@computed lastUpdatedDateTime: offsetDateTime | null;
|
|
11378
|
+
migrationMode: migrationMode | null;
|
|
10997
11379
|
onlineMeetingInfo: teamworkOnlineMeetingInfo | null;
|
|
11380
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10998
11381
|
tenantId: string | null;
|
|
10999
11382
|
topic: string | null;
|
|
11000
11383
|
viewpoint: chatViewpoint | null;
|
|
@@ -11006,6 +11389,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11006
11389
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
11007
11390
|
@contains pinnedMessages: pinnedChatMessageInfo[];
|
|
11008
11391
|
@contains tabs: teamsTab[];
|
|
11392
|
+
@contains targetedMessages: targetedChatMessage[];
|
|
11009
11393
|
}
|
|
11010
11394
|
|
|
11011
11395
|
@entity model chatMessage extends entity {
|
|
@@ -11133,6 +11517,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11133
11517
|
operatingSystem: string | null;
|
|
11134
11518
|
osBuildNumber: string | null;
|
|
11135
11519
|
osStatus: cloudPcDeviceImageOsStatus | null;
|
|
11520
|
+
osVersionNumber: string | null;
|
|
11521
|
+
sizeInGB: int32 | null;
|
|
11136
11522
|
sourceImageResourceId: string | null;
|
|
11137
11523
|
status: cloudPcDeviceImageStatus | null;
|
|
11138
11524
|
version: string | null;
|
|
@@ -11143,6 +11529,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11143
11529
|
endDate: offsetDateTime | null;
|
|
11144
11530
|
expirationDate: offsetDateTime | null;
|
|
11145
11531
|
offerName: string | null;
|
|
11532
|
+
osVersionNumber: string | null;
|
|
11146
11533
|
publisherName: string | null;
|
|
11147
11534
|
sizeInGB: int32 | null;
|
|
11148
11535
|
skuName: string | null;
|
|
@@ -11157,11 +11544,14 @@ namespace reference.`microsoft.graph` {
|
|
|
11157
11544
|
alternateResourceUrl: string | null;
|
|
11158
11545
|
connectionType: cloudPcOnPremisesConnectionType | null;
|
|
11159
11546
|
displayName: string;
|
|
11547
|
+
healthCheckPaused: boolean | null;
|
|
11160
11548
|
healthCheckStatus: cloudPcOnPremisesConnectionStatus;
|
|
11161
11549
|
healthCheckStatusDetail: cloudPcOnPremisesConnectionStatusDetail | null;
|
|
11162
11550
|
inUse: boolean | null;
|
|
11551
|
+
inUseByCloudPc: boolean | null;
|
|
11163
11552
|
organizationalUnit: string | null;
|
|
11164
11553
|
resourceGroupId: string;
|
|
11554
|
+
scopeIds: string[] | null;
|
|
11165
11555
|
subnetId: string;
|
|
11166
11556
|
subscriptionId: string;
|
|
11167
11557
|
subscriptionName: string | null;
|
|
@@ -11349,12 +11739,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11349
11739
|
partnerState: deviceManagementPartnerTenantState;
|
|
11350
11740
|
}
|
|
11351
11741
|
|
|
11352
|
-
@entity model conditionalAccessPolicy extends
|
|
11742
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
11353
11743
|
conditions: conditionalAccessConditionSet;
|
|
11354
11744
|
@computed createdDateTime: offsetDateTime | null;
|
|
11355
11745
|
description: string | null;
|
|
11356
11746
|
displayName: string;
|
|
11357
11747
|
grantControls: conditionalAccessGrantControls | null;
|
|
11748
|
+
@computed @key id: string;
|
|
11358
11749
|
modifiedDateTime: offsetDateTime | null;
|
|
11359
11750
|
sessionControls: conditionalAccessSessionControls | null;
|
|
11360
11751
|
state: conditionalAccessPolicyState;
|
|
@@ -11364,6 +11755,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11364
11755
|
@entity model conditionalAccessRoot extends entity {
|
|
11365
11756
|
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
11366
11757
|
@contains authenticationStrength: authenticationStrengthRoot | null;
|
|
11758
|
+
@contains deletedItems: caPoliciesDeletableRoot | null;
|
|
11367
11759
|
@contains namedLocations: namedLocation[];
|
|
11368
11760
|
@contains policies: conditionalAccessPolicy[];
|
|
11369
11761
|
@contains templates: conditionalAccessTemplate[];
|
|
@@ -11376,6 +11768,71 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11376
11768
|
scenarios: templateScenarios;
|
|
11377
11769
|
}
|
|
11378
11770
|
|
|
11771
|
+
@entity model configurationBaseline extends entity {
|
|
11772
|
+
description: string;
|
|
11773
|
+
displayName: string;
|
|
11774
|
+
parameters: baselineParameter[];
|
|
11775
|
+
resources: baselineResource[];
|
|
11776
|
+
}
|
|
11777
|
+
|
|
11778
|
+
@entity model configurationDrift extends entity {
|
|
11779
|
+
baselineResourceDisplayName: string;
|
|
11780
|
+
driftedProperties: driftedProperty[];
|
|
11781
|
+
firstReportedDateTime: offsetDateTime;
|
|
11782
|
+
monitorId: string;
|
|
11783
|
+
resourceInstanceIdentifier: openComplexDictionaryType;
|
|
11784
|
+
resourceType: string;
|
|
11785
|
+
status: driftStatus;
|
|
11786
|
+
tenantId: string;
|
|
11787
|
+
}
|
|
11788
|
+
|
|
11789
|
+
@entity model configurationManagement extends entity {
|
|
11790
|
+
@contains configurationDrifts: configurationDrift[];
|
|
11791
|
+
@contains configurationMonitoringResults: configurationMonitoringResult[];
|
|
11792
|
+
@contains configurationMonitors: configurationMonitor[];
|
|
11793
|
+
@contains configurationSnapshotJobs: configurationSnapshotJob[];
|
|
11794
|
+
@contains configurationSnapshots: configurationBaseline[];
|
|
11795
|
+
}
|
|
11796
|
+
|
|
11797
|
+
@entity model configurationMonitor extends entity {
|
|
11798
|
+
createdBy: identitySet;
|
|
11799
|
+
@computed createdDateTime: offsetDateTime;
|
|
11800
|
+
description: string;
|
|
11801
|
+
displayName: string;
|
|
11802
|
+
inactivationReason: string | null;
|
|
11803
|
+
lastModifiedBy: identitySet;
|
|
11804
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
11805
|
+
mode: monitorMode;
|
|
11806
|
+
monitorRunFrequencyInHours: int32;
|
|
11807
|
+
parameters: openComplexDictionaryType | null;
|
|
11808
|
+
status: monitorStatus;
|
|
11809
|
+
tenantId: string;
|
|
11810
|
+
@contains baseline: configurationBaseline;
|
|
11811
|
+
}
|
|
11812
|
+
|
|
11813
|
+
@entity model configurationMonitoringResult extends entity {
|
|
11814
|
+
driftsCount: int32;
|
|
11815
|
+
errorDetails: errorDetail[];
|
|
11816
|
+
monitorId: string;
|
|
11817
|
+
runCompletionDateTime: offsetDateTime;
|
|
11818
|
+
runInitiationDateTime: offsetDateTime;
|
|
11819
|
+
runStatus: monitorRunStatus;
|
|
11820
|
+
tenantId: string;
|
|
11821
|
+
}
|
|
11822
|
+
|
|
11823
|
+
@entity model configurationSnapshotJob extends entity {
|
|
11824
|
+
completedDateTime: offsetDateTime;
|
|
11825
|
+
createdBy: identitySet;
|
|
11826
|
+
@computed createdDateTime: offsetDateTime;
|
|
11827
|
+
description: string;
|
|
11828
|
+
displayName: string;
|
|
11829
|
+
errorDetails: string[];
|
|
11830
|
+
resourceLocation: string;
|
|
11831
|
+
resources: string[];
|
|
11832
|
+
status: snapshotJobStatus;
|
|
11833
|
+
tenantId: string;
|
|
11834
|
+
}
|
|
11835
|
+
|
|
11379
11836
|
@entity model connectedOrganization extends entity {
|
|
11380
11837
|
@computed createdDateTime: offsetDateTime | null;
|
|
11381
11838
|
description: string | null;
|
|
@@ -11545,6 +12002,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11545
12002
|
}
|
|
11546
12003
|
|
|
11547
12004
|
@entity model crossTenantAccessPolicyConfigurationDefault extends entity {
|
|
12005
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11548
12006
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11549
12007
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11550
12008
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11553,10 +12011,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11553
12011
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11554
12012
|
invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
|
|
11555
12013
|
isServiceDefault: boolean | null;
|
|
12014
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12015
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11556
12016
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11557
12017
|
}
|
|
11558
12018
|
|
|
11559
12019
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
12020
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11560
12021
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11561
12022
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11562
12023
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11565,6 +12026,8 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11565
12026
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11566
12027
|
isInMultiTenantOrganization: boolean | null;
|
|
11567
12028
|
isServiceProvider: boolean | null;
|
|
12029
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12030
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11568
12031
|
@computed @key tenantId: string;
|
|
11569
12032
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11570
12033
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
@@ -14040,6 +14503,7 @@ within the time frame of their original request.
|
|
|
14040
14503
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
14041
14504
|
@contains resources: accessPackageResource[];
|
|
14042
14505
|
@contains settings: entitlementManagementSettings | null;
|
|
14506
|
+
@contains subjects: accessPackageSubject[];
|
|
14043
14507
|
}
|
|
14044
14508
|
|
|
14045
14509
|
@entity model entitlementManagementSettings extends entity {
|
|
@@ -14128,6 +14592,7 @@ within the time frame of their original request.
|
|
|
14128
14592
|
}
|
|
14129
14593
|
|
|
14130
14594
|
@entity model exchangeAdmin extends entity {
|
|
14595
|
+
@contains mailboxes: mailbox[];
|
|
14131
14596
|
@contains tracing: messageTracingRoot | null;
|
|
14132
14597
|
}
|
|
14133
14598
|
|
|
@@ -14164,6 +14629,10 @@ within the time frame of their original request.
|
|
|
14164
14629
|
@contains mailboxRestoreArtifactsBulkAdditionRequests: mailboxRestoreArtifactsBulkAdditionRequest[];
|
|
14165
14630
|
}
|
|
14166
14631
|
|
|
14632
|
+
@entity model exchangeSettings extends entity {
|
|
14633
|
+
primaryMailboxId: string | null;
|
|
14634
|
+
}
|
|
14635
|
+
|
|
14167
14636
|
@abstract
|
|
14168
14637
|
@open
|
|
14169
14638
|
@entity model extension extends entity {
|
|
@@ -14226,9 +14695,12 @@ within the time frame of their original request.
|
|
|
14226
14695
|
attestationLevel: attestationLevel | null;
|
|
14227
14696
|
displayName: string | null;
|
|
14228
14697
|
`model`: string | null;
|
|
14698
|
+
passkeyType: passkeyType | null;
|
|
14699
|
+
publicKeyCredential: webauthnPublicKeyCredential | null;
|
|
14229
14700
|
}
|
|
14230
14701
|
|
|
14231
14702
|
@entity model fido2AuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
14703
|
+
defaultPasskeyProfile: string | null;
|
|
14232
14704
|
|
|
14233
14705
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14234
14706
|
isAttestationEnforced: boolean | null;
|
|
@@ -14236,7 +14708,8 @@ within the time frame of their original request.
|
|
|
14236
14708
|
|
|
14237
14709
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14238
14710
|
keyRestrictions: fido2KeyRestrictions | null;
|
|
14239
|
-
@contains includeTargets:
|
|
14711
|
+
@contains includeTargets: passkeyAuthenticationMethodTarget[];
|
|
14712
|
+
@references passkeyProfiles: passkeyProfile[];
|
|
14240
14713
|
}
|
|
14241
14714
|
|
|
14242
14715
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -14340,11 +14813,31 @@ within the time frame of their original request.
|
|
|
14340
14813
|
insightCreatedDateTime: offsetDateTime | null;
|
|
14341
14814
|
}
|
|
14342
14815
|
|
|
14816
|
+
@entity model granularDriveRestoreArtifact extends granularRestoreArtifactBase {
|
|
14817
|
+
directoryObjectId: string | null;
|
|
14818
|
+
}
|
|
14819
|
+
|
|
14343
14820
|
@entity model granularMailboxRestoreArtifact extends mailboxRestoreArtifact {
|
|
14344
14821
|
artifactCount: int32 | null;
|
|
14345
14822
|
searchResponseId: string;
|
|
14346
14823
|
}
|
|
14347
14824
|
|
|
14825
|
+
@entity model granularRestoreArtifactBase extends entity {
|
|
14826
|
+
browseSessionId: string | null;
|
|
14827
|
+
completionDateTime: offsetDateTime | null;
|
|
14828
|
+
restoredItemKey: string | null;
|
|
14829
|
+
restoredItemPath: string | null;
|
|
14830
|
+
restoredItemWebUrl: string | null;
|
|
14831
|
+
restorePointDateTime: offsetDateTime | null;
|
|
14832
|
+
startDateTime: offsetDateTime | null;
|
|
14833
|
+
status: artifactRestoreStatus;
|
|
14834
|
+
webUrl: string | null;
|
|
14835
|
+
}
|
|
14836
|
+
|
|
14837
|
+
@entity model granularSiteRestoreArtifact extends granularRestoreArtifactBase {
|
|
14838
|
+
siteId: string | null;
|
|
14839
|
+
}
|
|
14840
|
+
|
|
14348
14841
|
/**
|
|
14349
14842
|
* Represents a Microsoft Entra group.
|
|
14350
14843
|
*/
|
|
@@ -14363,6 +14856,7 @@ within the time frame of their original request.
|
|
|
14363
14856
|
hasMembersWithLicenseErrors: boolean | null;
|
|
14364
14857
|
hideFromAddressLists: boolean | null;
|
|
14365
14858
|
hideFromOutlookClients: boolean | null;
|
|
14859
|
+
infoCatalogs: string[];
|
|
14366
14860
|
isArchived: boolean | null;
|
|
14367
14861
|
isAssignableToRole: boolean | null;
|
|
14368
14862
|
isManagementRestricted: boolean | null;
|
|
@@ -14482,6 +14976,7 @@ within the time frame of their original request.
|
|
|
14482
14976
|
@contains identityProviders: identityProviderBase[];
|
|
14483
14977
|
@contains riskPrevention: riskPreventionContainer | null;
|
|
14484
14978
|
@contains userFlowAttributes: identityUserFlowAttribute[];
|
|
14979
|
+
@contains verifiedId: identityVerifiedIdRoot;
|
|
14485
14980
|
}
|
|
14486
14981
|
|
|
14487
14982
|
@entity model identityCustomUserFlowAttribute extends identityUserFlowAttribute {
|
|
@@ -14541,6 +15036,10 @@ within the time frame of their original request.
|
|
|
14541
15036
|
@references userAttribute: identityUserFlowAttribute | null;
|
|
14542
15037
|
}
|
|
14543
15038
|
|
|
15039
|
+
@entity model identityVerifiedIdRoot extends entity {
|
|
15040
|
+
@contains profiles: verifiedIdProfile[];
|
|
15041
|
+
}
|
|
15042
|
+
|
|
14544
15043
|
/**
|
|
14545
15044
|
* Imported windows autopilot devices.
|
|
14546
15045
|
*/
|
|
@@ -14687,7 +15186,7 @@ within the time frame of their original request.
|
|
|
14687
15186
|
*/
|
|
14688
15187
|
passcodeBlockSimple: boolean;
|
|
14689
15188
|
/**
|
|
14690
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
15189
|
+
* 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
15190
|
*/
|
|
14692
15191
|
passcodeExpirationDays: int32 | null;
|
|
14693
15192
|
/**
|
|
@@ -15824,71 +16323,71 @@ within the time frame of their original request.
|
|
|
15824
16323
|
*/
|
|
15825
16324
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
15826
16325
|
/**
|
|
15827
|
-
*
|
|
16326
|
+
* 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
16327
|
*/
|
|
15829
16328
|
deviceThreatProtectionEnabled: boolean;
|
|
15830
16329
|
/**
|
|
15831
|
-
*
|
|
16330
|
+
* 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
16331
|
*/
|
|
15833
16332
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
15834
16333
|
/**
|
|
15835
|
-
*
|
|
16334
|
+
* 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
16335
|
*/
|
|
15837
16336
|
firewallBlockAllIncoming: boolean;
|
|
15838
16337
|
/**
|
|
15839
|
-
*
|
|
16338
|
+
* 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
16339
|
*/
|
|
15841
16340
|
firewallEnabled: boolean;
|
|
15842
16341
|
/**
|
|
15843
|
-
*
|
|
16342
|
+
* 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
16343
|
*/
|
|
15845
16344
|
firewallEnableStealthMode: boolean;
|
|
15846
16345
|
/**
|
|
15847
|
-
*
|
|
16346
|
+
* 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
16347
|
*/
|
|
15849
16348
|
osMaximumVersion: string | null;
|
|
15850
16349
|
/**
|
|
15851
|
-
*
|
|
16350
|
+
* 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
16351
|
*/
|
|
15853
16352
|
osMinimumVersion: string | null;
|
|
15854
16353
|
/**
|
|
15855
|
-
*
|
|
16354
|
+
* 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
16355
|
*/
|
|
15857
16356
|
passwordBlockSimple: boolean;
|
|
15858
16357
|
/**
|
|
15859
|
-
*
|
|
16358
|
+
* 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
16359
|
*/
|
|
15861
16360
|
passwordExpirationDays: int32 | null;
|
|
15862
16361
|
/**
|
|
15863
|
-
*
|
|
16362
|
+
* 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
16363
|
*/
|
|
15865
16364
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
15866
16365
|
/**
|
|
15867
|
-
*
|
|
16366
|
+
* 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
16367
|
*/
|
|
15869
16368
|
passwordMinimumLength: int32 | null;
|
|
15870
16369
|
/**
|
|
15871
|
-
*
|
|
16370
|
+
* 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
16371
|
*/
|
|
15873
16372
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
15874
16373
|
/**
|
|
15875
|
-
*
|
|
16374
|
+
* 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
16375
|
*/
|
|
15877
16376
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
15878
16377
|
/**
|
|
15879
|
-
*
|
|
16378
|
+
* 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
16379
|
*/
|
|
15881
16380
|
passwordRequired: boolean;
|
|
15882
16381
|
/**
|
|
15883
|
-
*
|
|
16382
|
+
* 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
16383
|
*/
|
|
15885
16384
|
passwordRequiredType: requiredPasswordType;
|
|
15886
16385
|
/**
|
|
15887
|
-
*
|
|
16386
|
+
* 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
16387
|
*/
|
|
15889
16388
|
storageRequireEncryption: boolean;
|
|
15890
16389
|
/**
|
|
15891
|
-
*
|
|
16390
|
+
* 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
16391
|
*/
|
|
15893
16392
|
systemIntegrityProtectionEnabled: boolean;
|
|
15894
16393
|
}
|
|
@@ -16067,6 +16566,29 @@ within the time frame of their original request.
|
|
|
16067
16566
|
recipientEmail: string;
|
|
16068
16567
|
}
|
|
16069
16568
|
|
|
16569
|
+
@entity model mailbox extends directoryObject {
|
|
16570
|
+
@contains folders: mailboxFolder[];
|
|
16571
|
+
}
|
|
16572
|
+
|
|
16573
|
+
@entity model mailboxFolder extends entity {
|
|
16574
|
+
childFolderCount: int32 | null;
|
|
16575
|
+
displayName: string | null;
|
|
16576
|
+
parentFolderId: string | null;
|
|
16577
|
+
totalItemCount: int32 | null;
|
|
16578
|
+
type: string | null;
|
|
16579
|
+
@contains childFolders: mailboxFolder[];
|
|
16580
|
+
@contains items: mailboxItem[];
|
|
16581
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
16582
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
16583
|
+
}
|
|
16584
|
+
|
|
16585
|
+
@entity model mailboxItem extends outlookItem {
|
|
16586
|
+
size: int64 | null;
|
|
16587
|
+
type: string | null;
|
|
16588
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
16589
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
16590
|
+
}
|
|
16591
|
+
|
|
16070
16592
|
@entity model mailboxProtectionRule extends protectionRuleBase {
|
|
16071
16593
|
mailboxExpression: string | null;
|
|
16072
16594
|
}
|
|
@@ -17578,9 +18100,10 @@ within the time frame of their original request.
|
|
|
17578
18100
|
@entity model muteParticipantOperation extends commsOperation {
|
|
17579
18101
|
}
|
|
17580
18102
|
|
|
17581
|
-
@entity model namedLocation extends
|
|
18103
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
17582
18104
|
@computed createdDateTime: offsetDateTime | null;
|
|
17583
18105
|
displayName: string;
|
|
18106
|
+
@computed @key id: string;
|
|
17584
18107
|
modifiedDateTime: offsetDateTime | null;
|
|
17585
18108
|
}
|
|
17586
18109
|
|
|
@@ -17678,6 +18201,10 @@ within the time frame of their original request.
|
|
|
17678
18201
|
handler: onAuthenticationMethodLoadStartHandler | null;
|
|
17679
18202
|
}
|
|
17680
18203
|
|
|
18204
|
+
@entity model oneDriveForBusinessBrowseSession extends browseSessionBase {
|
|
18205
|
+
directoryObjectId: string | null;
|
|
18206
|
+
}
|
|
18207
|
+
|
|
17681
18208
|
@entity model oneDriveForBusinessProtectionPolicy extends protectionPolicyBase {
|
|
17682
18209
|
@references driveInclusionRules: driveProtectionRule[];
|
|
17683
18210
|
@references driveProtectionUnits: driveProtectionUnit[];
|
|
@@ -17687,6 +18214,7 @@ within the time frame of their original request.
|
|
|
17687
18214
|
@entity model oneDriveForBusinessRestoreSession extends restoreSessionBase {
|
|
17688
18215
|
@contains driveRestoreArtifacts: driveRestoreArtifact[];
|
|
17689
18216
|
@contains driveRestoreArtifactsBulkAdditionRequests: driveRestoreArtifactsBulkAdditionRequest[];
|
|
18217
|
+
@contains granularDriveRestoreArtifacts: granularDriveRestoreArtifact[];
|
|
17690
18218
|
}
|
|
17691
18219
|
|
|
17692
18220
|
@entity model onEmailOtpSendListener extends authenticationEventListener {
|
|
@@ -17848,6 +18376,13 @@ within the time frame of their original request.
|
|
|
17848
18376
|
@entity model onOtpSendCustomExtension extends customAuthenticationExtension {
|
|
17849
18377
|
}
|
|
17850
18378
|
|
|
18379
|
+
@entity model onPasswordSubmitCustomExtension extends customAuthenticationExtension {
|
|
18380
|
+
}
|
|
18381
|
+
|
|
18382
|
+
@entity model onPasswordSubmitListener extends authenticationEventListener {
|
|
18383
|
+
handler: onPasswordSubmitHandler | null;
|
|
18384
|
+
}
|
|
18385
|
+
|
|
17851
18386
|
/**
|
|
17852
18387
|
* Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant.
|
|
17853
18388
|
*/
|
|
@@ -17891,6 +18426,13 @@ within the time frame of their original request.
|
|
|
17891
18426
|
handler: onUserCreateStartHandler | null;
|
|
17892
18427
|
}
|
|
17893
18428
|
|
|
18429
|
+
@entity model onVerifiedIdClaimValidationCustomExtension extends customAuthenticationExtension {
|
|
18430
|
+
}
|
|
18431
|
+
|
|
18432
|
+
@entity model onVerifiedIdClaimValidationListener extends authenticationEventListener {
|
|
18433
|
+
handler: onVerifiedIdClaimValidationHandler | null;
|
|
18434
|
+
}
|
|
18435
|
+
|
|
17894
18436
|
@entity model openShift extends changeTrackedEntity {
|
|
17895
18437
|
draftOpenShift: openShiftItem | null;
|
|
17896
18438
|
isStagedForDeletion: boolean | null;
|
|
@@ -18030,6 +18572,16 @@ within the time frame of their original request.
|
|
|
18030
18572
|
@contains masterCategories: outlookCategory[];
|
|
18031
18573
|
}
|
|
18032
18574
|
|
|
18575
|
+
@entity model ownerlessGroupPolicy extends entity {
|
|
18576
|
+
emailInfo: emailDetails;
|
|
18577
|
+
enabledGroupIds: string[];
|
|
18578
|
+
isEnabled: boolean;
|
|
18579
|
+
maxMembersToNotify: int64;
|
|
18580
|
+
notificationDurationInWeeks: int64;
|
|
18581
|
+
policyWebUrl: string | null;
|
|
18582
|
+
targetOwners: targetOwners;
|
|
18583
|
+
}
|
|
18584
|
+
|
|
18033
18585
|
@entity model participant extends entity {
|
|
18034
18586
|
info: participantInfo;
|
|
18035
18587
|
isInLobby: boolean;
|
|
@@ -18055,6 +18607,17 @@ within the time frame of their original request.
|
|
|
18055
18607
|
@contains billing: reference.`microsoft.graph.partners.billing`.billing | null;
|
|
18056
18608
|
}
|
|
18057
18609
|
|
|
18610
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
18611
|
+
allowedPasskeyProfiles: guid | null;
|
|
18612
|
+
}
|
|
18613
|
+
|
|
18614
|
+
@entity model passkeyProfile extends entity {
|
|
18615
|
+
attestationEnforcement: attestationEnforcement;
|
|
18616
|
+
keyRestrictions: fido2KeyRestrictions | null;
|
|
18617
|
+
name: string | null;
|
|
18618
|
+
passkeyTypes: passkeyTypes | null;
|
|
18619
|
+
}
|
|
18620
|
+
|
|
18058
18621
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
18059
18622
|
password: string | null;
|
|
18060
18623
|
}
|
|
@@ -18087,6 +18650,7 @@ within the time frame of their original request.
|
|
|
18087
18650
|
@entity model peopleAdminSettings extends entity {
|
|
18088
18651
|
@contains itemInsights: insightsSettings | null;
|
|
18089
18652
|
@contains profileCardProperties: profileCardProperty[];
|
|
18653
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
18090
18654
|
@contains profileSources: profileSource[];
|
|
18091
18655
|
@contains pronouns: pronounsSettings | null;
|
|
18092
18656
|
}
|
|
@@ -18279,6 +18843,11 @@ within the time frame of their original request.
|
|
|
18279
18843
|
displayName: string | null;
|
|
18280
18844
|
}
|
|
18281
18845
|
|
|
18846
|
+
@abstract
|
|
18847
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
18848
|
+
deletedDateTime: offsetDateTime | null;
|
|
18849
|
+
}
|
|
18850
|
+
|
|
18282
18851
|
@entity model policyRoot extends entity {
|
|
18283
18852
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
18284
18853
|
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
@@ -18295,6 +18864,7 @@ within the time frame of their original request.
|
|
|
18295
18864
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
18296
18865
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18297
18866
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
18867
|
+
@contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
|
|
18298
18868
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
18299
18869
|
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
18300
18870
|
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
@@ -18585,6 +19155,12 @@ within the time frame of their original request.
|
|
|
18585
19155
|
width: int32 | null;
|
|
18586
19156
|
}
|
|
18587
19157
|
|
|
19158
|
+
@entity model profilePropertySetting extends entity {
|
|
19159
|
+
displayName: string | null;
|
|
19160
|
+
name: string | null;
|
|
19161
|
+
prioritizedSourceUrls: string[];
|
|
19162
|
+
}
|
|
19163
|
+
|
|
18588
19164
|
@entity model profileSource extends entity {
|
|
18589
19165
|
displayName: string | null;
|
|
18590
19166
|
kind: string | null;
|
|
@@ -18816,6 +19392,7 @@ within the time frame of their original request.
|
|
|
18816
19392
|
|
|
18817
19393
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
18818
19394
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
19395
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
18819
19396
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
18820
19397
|
}
|
|
18821
19398
|
|
|
@@ -19306,12 +19883,14 @@ within the time frame of their original request.
|
|
|
19306
19883
|
appOwnerOrganizationId: guid | null;
|
|
19307
19884
|
appRoleAssignmentRequired: boolean;
|
|
19308
19885
|
appRoles: appRole[];
|
|
19886
|
+
createdByAppId: string | null;
|
|
19309
19887
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
19310
19888
|
description: string | null;
|
|
19311
19889
|
disabledByMicrosoftStatus: string | null;
|
|
19312
19890
|
displayName: string | null;
|
|
19313
19891
|
homepage: string | null;
|
|
19314
19892
|
info: informationalUrl | null;
|
|
19893
|
+
isDisabled: boolean | null;
|
|
19315
19894
|
keyCredentials: keyCredential[];
|
|
19316
19895
|
loginUrl: string | null;
|
|
19317
19896
|
logoutUrl: string | null;
|
|
@@ -19516,6 +20095,10 @@ within the time frame of their original request.
|
|
|
19516
20095
|
@contains settings: sharepointSettings | null;
|
|
19517
20096
|
}
|
|
19518
20097
|
|
|
20098
|
+
@entity model sharePointBrowseSession extends browseSessionBase {
|
|
20099
|
+
siteId: string | null;
|
|
20100
|
+
}
|
|
20101
|
+
|
|
19519
20102
|
@entity model sharePointGroup extends entity {
|
|
19520
20103
|
description: string | null;
|
|
19521
20104
|
principalId: string | null;
|
|
@@ -19601,6 +20184,7 @@ within the time frame of their original request.
|
|
|
19601
20184
|
}
|
|
19602
20185
|
|
|
19603
20186
|
@entity model sharePointRestoreSession extends restoreSessionBase {
|
|
20187
|
+
@contains granularSiteRestoreArtifacts: granularSiteRestoreArtifact[];
|
|
19604
20188
|
@contains siteRestoreArtifacts: siteRestoreArtifact[];
|
|
19605
20189
|
@contains siteRestoreArtifactsBulkAdditionRequests: siteRestoreArtifactsBulkAdditionRequest[];
|
|
19606
20190
|
}
|
|
@@ -20051,6 +20635,10 @@ within the time frame of their original request.
|
|
|
20051
20635
|
displayName: string | null;
|
|
20052
20636
|
}
|
|
20053
20637
|
|
|
20638
|
+
@entity model targetedChatMessage extends chatMessage {
|
|
20639
|
+
recipient: identity | null;
|
|
20640
|
+
}
|
|
20641
|
+
|
|
20054
20642
|
/**
|
|
20055
20643
|
* Configuration used to deliver a set of custom settings as-is to all users in the targeted security group
|
|
20056
20644
|
*/
|
|
@@ -21915,6 +22503,7 @@ within the time frame of their original request.
|
|
|
21915
22503
|
@entity model userSettings extends entity {
|
|
21916
22504
|
contributionToContentDiscoveryAsOrganizationDisabled: boolean;
|
|
21917
22505
|
contributionToContentDiscoveryDisabled: boolean;
|
|
22506
|
+
@contains exchange: exchangeSettings | null;
|
|
21918
22507
|
@contains itemInsights: userInsightsSettings | null;
|
|
21919
22508
|
@contains shiftPreferences: shiftPreferences | null;
|
|
21920
22509
|
@contains storage: userStorage | null;
|
|
@@ -21941,6 +22530,26 @@ within the time frame of their original request.
|
|
|
21941
22530
|
@contains installedApps: userScopeTeamsAppInstallation[];
|
|
21942
22531
|
}
|
|
21943
22532
|
|
|
22533
|
+
@entity model verifiableCredentialAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
22534
|
+
verifiedIdProfiles: guid;
|
|
22535
|
+
}
|
|
22536
|
+
|
|
22537
|
+
@entity model verifiableCredentialsAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
22538
|
+
@contains includeTargets: verifiableCredentialAuthenticationMethodTarget[];
|
|
22539
|
+
}
|
|
22540
|
+
|
|
22541
|
+
@entity model verifiedIdProfile extends entity {
|
|
22542
|
+
description: string;
|
|
22543
|
+
faceCheckConfiguration: faceCheckConfiguration;
|
|
22544
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
22545
|
+
name: string;
|
|
22546
|
+
priority: int32 | null;
|
|
22547
|
+
state: verifiedIdProfileState;
|
|
22548
|
+
verifiedIdProfileConfiguration: verifiedIdProfileConfiguration;
|
|
22549
|
+
verifiedIdUsageConfigurations: verifiedIdUsageConfiguration[];
|
|
22550
|
+
verifierDid: string;
|
|
22551
|
+
}
|
|
22552
|
+
|
|
21944
22553
|
@entity model verticalSection extends entity {
|
|
21945
22554
|
emphasis: sectionEmphasisType | null;
|
|
21946
22555
|
@contains webparts: webPart[];
|
|
@@ -23722,7 +24331,7 @@ within the time frame of their original request.
|
|
|
23722
24331
|
*/
|
|
23723
24332
|
preprovisioningAllowed: boolean | null;
|
|
23724
24333
|
/**
|
|
23725
|
-
* List of role scope tags for the deployment profile.
|
|
24334
|
+
* List of role scope tags for the deployment profile.
|
|
23726
24335
|
*/
|
|
23727
24336
|
roleScopeTagIds: string[] | null;
|
|
23728
24337
|
/**
|
|
@@ -24344,6 +24953,10 @@ within the time frame of their original request.
|
|
|
24344
24953
|
* Current anti malware version
|
|
24345
24954
|
*/
|
|
24346
24955
|
antiMalwareVersion: string | null;
|
|
24956
|
+
/**
|
|
24957
|
+
* 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.
|
|
24958
|
+
*/
|
|
24959
|
+
controlledConfigurationEnabled: boolean | null;
|
|
24347
24960
|
/**
|
|
24348
24961
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
24349
24962
|
*/
|
|
@@ -25040,6 +25653,8 @@ within the time frame of their original request.
|
|
|
25040
25653
|
target: 1,
|
|
25041
25654
|
createdBy: 2,
|
|
25042
25655
|
unknownFutureValue: 99,
|
|
25656
|
+
targetManager: 100,
|
|
25657
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
25043
25658
|
}
|
|
25044
25659
|
|
|
25045
25660
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -25047,6 +25662,10 @@ within the time frame of their original request.
|
|
|
25047
25662
|
createdBy: 2,
|
|
25048
25663
|
approver: 3,
|
|
25049
25664
|
unknownFutureValue: 99,
|
|
25665
|
+
targetOrRequestor: 100,
|
|
25666
|
+
targetManager: 101,
|
|
25667
|
+
requestForOthers: 102,
|
|
25668
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
25050
25669
|
}
|
|
25051
25670
|
|
|
25052
25671
|
enum accessPackageAssignmentState {
|
|
@@ -25119,6 +25738,14 @@ within the time frame of their original request.
|
|
|
25119
25738
|
systemRemove: 9,
|
|
25120
25739
|
onBehalfAdd: 10,
|
|
25121
25740
|
unknownFutureValue: 11,
|
|
25741
|
+
approverRemove: 12,
|
|
25742
|
+
}
|
|
25743
|
+
|
|
25744
|
+
enum accessPackageSubjectLifecycle {
|
|
25745
|
+
notDefined: 0,
|
|
25746
|
+
notGoverned: 1,
|
|
25747
|
+
governed: 2,
|
|
25748
|
+
unknownFutureValue: 3,
|
|
25122
25749
|
}
|
|
25123
25750
|
|
|
25124
25751
|
enum accessPackageSubjectType {
|
|
@@ -25446,6 +26073,17 @@ within the time frame of their original request.
|
|
|
25446
26073
|
unknownFutureValue: 99,
|
|
25447
26074
|
}
|
|
25448
26075
|
|
|
26076
|
+
@graphFlags
|
|
26077
|
+
enum applicationDataType {
|
|
26078
|
+
none: 0,
|
|
26079
|
+
codingFiles: 1,
|
|
26080
|
+
creditCards: 2,
|
|
26081
|
+
databaseFiles: 4,
|
|
26082
|
+
documents: 8,
|
|
26083
|
+
mediaFiles: 16,
|
|
26084
|
+
unknownFutureValue: 32,
|
|
26085
|
+
}
|
|
26086
|
+
|
|
25449
26087
|
/**
|
|
25450
26088
|
* Possible values for applicationGuardBlockClipboardSharingType
|
|
25451
26089
|
*/
|
|
@@ -25675,6 +26313,12 @@ within the time frame of their original request.
|
|
|
25675
26313
|
resource: 2,
|
|
25676
26314
|
}
|
|
25677
26315
|
|
|
26316
|
+
enum attestationEnforcement {
|
|
26317
|
+
disabled: 0,
|
|
26318
|
+
registrationOnly: 1,
|
|
26319
|
+
unknownFutureValue: 2,
|
|
26320
|
+
}
|
|
26321
|
+
|
|
25678
26322
|
enum attestationLevel {
|
|
25679
26323
|
attested: 0,
|
|
25680
26324
|
notAttested: 1,
|
|
@@ -25944,6 +26588,13 @@ within the time frame of their original request.
|
|
|
25944
26588
|
qrCodePin: 14,
|
|
25945
26589
|
}
|
|
25946
26590
|
|
|
26591
|
+
enum baselineParameterType {
|
|
26592
|
+
`string`: 0,
|
|
26593
|
+
`integer`: 1,
|
|
26594
|
+
`boolean`: 2,
|
|
26595
|
+
unknownFutureValue: 3,
|
|
26596
|
+
}
|
|
26597
|
+
|
|
25947
26598
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
25948
26599
|
enum binaryOperator {
|
|
25949
26600
|
or: 0,
|
|
@@ -26077,6 +26728,31 @@ within the time frame of their original request.
|
|
|
26077
26728
|
unknownFutureValue: 3,
|
|
26078
26729
|
}
|
|
26079
26730
|
|
|
26731
|
+
enum browsableResourceType {
|
|
26732
|
+
none: 0,
|
|
26733
|
+
site: 1,
|
|
26734
|
+
documentLibrary: 2,
|
|
26735
|
+
folder: 3,
|
|
26736
|
+
unknownFutureValue: 4,
|
|
26737
|
+
}
|
|
26738
|
+
|
|
26739
|
+
enum browseQueryOrder {
|
|
26740
|
+
pathAsc: 0,
|
|
26741
|
+
pathDsc: 1,
|
|
26742
|
+
nameAsc: 2,
|
|
26743
|
+
nameDsc: 3,
|
|
26744
|
+
unknownFutureValue: 4,
|
|
26745
|
+
}
|
|
26746
|
+
|
|
26747
|
+
enum browseQueryResponseItemType {
|
|
26748
|
+
none: 0,
|
|
26749
|
+
site: 1,
|
|
26750
|
+
documentLibrary: 2,
|
|
26751
|
+
folder: 3,
|
|
26752
|
+
file: 4,
|
|
26753
|
+
unknownFutureValue: 5,
|
|
26754
|
+
}
|
|
26755
|
+
|
|
26080
26756
|
enum browserSharedCookieSourceEnvironment {
|
|
26081
26757
|
/**
|
|
26082
26758
|
* Share session cookies from Microsoft Edge to Internet Explorer.
|
|
@@ -26225,6 +26901,13 @@ within the time frame of their original request.
|
|
|
26225
26901
|
unknownFutureValue: 5,
|
|
26226
26902
|
}
|
|
26227
26903
|
|
|
26904
|
+
enum browseSessionStatus {
|
|
26905
|
+
creating: 0,
|
|
26906
|
+
created: 1,
|
|
26907
|
+
failed: 2,
|
|
26908
|
+
unknownFutureValue: 3,
|
|
26909
|
+
}
|
|
26910
|
+
|
|
26228
26911
|
enum bucketAggregationSortProperty {
|
|
26229
26912
|
count: 0,
|
|
26230
26913
|
keyAsString: 1,
|
|
@@ -26368,6 +27051,12 @@ within the time frame of their original request.
|
|
|
26368
27051
|
deleted: 2,
|
|
26369
27052
|
}
|
|
26370
27053
|
|
|
27054
|
+
enum channelLayoutType {
|
|
27055
|
+
post: 0,
|
|
27056
|
+
chat: 1,
|
|
27057
|
+
unknownFutureValue: 2,
|
|
27058
|
+
}
|
|
27059
|
+
|
|
26371
27060
|
enum channelMembershipType {
|
|
26372
27061
|
standard: 0,
|
|
26373
27062
|
private: 1,
|
|
@@ -26439,6 +27128,11 @@ within the time frame of their original request.
|
|
|
26439
27128
|
unknownFutureValue: 4,
|
|
26440
27129
|
}
|
|
26441
27130
|
|
|
27131
|
+
enum claimBindingSource {
|
|
27132
|
+
directory: 0,
|
|
27133
|
+
unknownFutureValue: 1,
|
|
27134
|
+
}
|
|
27135
|
+
|
|
26442
27136
|
enum clickSource {
|
|
26443
27137
|
`unknown`: 0,
|
|
26444
27138
|
qrCode: 1,
|
|
@@ -26803,6 +27497,7 @@ within the time frame of their original request.
|
|
|
26803
27497
|
compliantApplication: 5,
|
|
26804
27498
|
passwordChange: 6,
|
|
26805
27499
|
unknownFutureValue: 7,
|
|
27500
|
+
riskRemediation: 8,
|
|
26806
27501
|
}
|
|
26807
27502
|
|
|
26808
27503
|
@graphFlags
|
|
@@ -26925,6 +27620,17 @@ within the time frame of their original request.
|
|
|
26925
27620
|
unknownFutureValue: 4,
|
|
26926
27621
|
}
|
|
26927
27622
|
|
|
27623
|
+
enum csaStarLevel {
|
|
27624
|
+
none: 0,
|
|
27625
|
+
attestation: 1,
|
|
27626
|
+
certification: 2,
|
|
27627
|
+
continuousMonitoring: 3,
|
|
27628
|
+
cStarAssessment: 4,
|
|
27629
|
+
selfAssessment: 5,
|
|
27630
|
+
notSupported: 6,
|
|
27631
|
+
unknownFutureValue: 7,
|
|
27632
|
+
}
|
|
27633
|
+
|
|
26928
27634
|
enum customExtensionCalloutInstanceStatus {
|
|
26929
27635
|
calloutSent: 1,
|
|
26930
27636
|
callbackReceived: 2,
|
|
@@ -26934,6 +27640,11 @@ within the time frame of their original request.
|
|
|
26934
27640
|
unknownFutureValue: 6,
|
|
26935
27641
|
}
|
|
26936
27642
|
|
|
27643
|
+
enum customSecurityAttributeComparisonOperator {
|
|
27644
|
+
equals: 1,
|
|
27645
|
+
unknownFutureValue: 2,
|
|
27646
|
+
}
|
|
27647
|
+
|
|
26937
27648
|
enum dataPolicyOperationStatus {
|
|
26938
27649
|
notStarted: 0,
|
|
26939
27650
|
running: 1,
|
|
@@ -26942,6 +27653,26 @@ within the time frame of their original request.
|
|
|
26942
27653
|
unknownFutureValue: 4,
|
|
26943
27654
|
}
|
|
26944
27655
|
|
|
27656
|
+
@graphFlags
|
|
27657
|
+
enum dataProtection {
|
|
27658
|
+
none: 0,
|
|
27659
|
+
impactAssessments: 1,
|
|
27660
|
+
officers: 2,
|
|
27661
|
+
secureCrossBorderDataTransfer: 4,
|
|
27662
|
+
unknownFutureValue: 8,
|
|
27663
|
+
}
|
|
27664
|
+
|
|
27665
|
+
enum dataRetentionLevel {
|
|
27666
|
+
none: 0,
|
|
27667
|
+
dataRetained: 1,
|
|
27668
|
+
deletedImmediately: 2,
|
|
27669
|
+
deletedWithin1Month: 3,
|
|
27670
|
+
deletedWithin2Weeks: 4,
|
|
27671
|
+
deletedWithin3Months: 5,
|
|
27672
|
+
deletedWithinMoreThan3Months: 6,
|
|
27673
|
+
unknownFutureValue: 7,
|
|
27674
|
+
}
|
|
27675
|
+
|
|
26945
27676
|
enum dataSubjectType {
|
|
26946
27677
|
customer: 0,
|
|
26947
27678
|
currentEmployee: 1,
|
|
@@ -27880,6 +28611,12 @@ within the time frame of their original request.
|
|
|
27880
28611
|
restrictWebGrounding: 12,
|
|
27881
28612
|
}
|
|
27882
28613
|
|
|
28614
|
+
enum driftStatus {
|
|
28615
|
+
active: 0,
|
|
28616
|
+
fixed: 1,
|
|
28617
|
+
unknownFutureValue: 2,
|
|
28618
|
+
}
|
|
28619
|
+
|
|
27883
28620
|
enum driveItemSourceApplication {
|
|
27884
28621
|
teams: 0,
|
|
27885
28622
|
yammer: 1,
|
|
@@ -28423,6 +29160,16 @@ within the time frame of their original request.
|
|
|
28423
29160
|
unknownFutureValue: 3,
|
|
28424
29161
|
}
|
|
28425
29162
|
|
|
29163
|
+
enum fedRampLevel {
|
|
29164
|
+
none: 0,
|
|
29165
|
+
high: 1,
|
|
29166
|
+
liSaas: 2,
|
|
29167
|
+
low: 3,
|
|
29168
|
+
moderate: 4,
|
|
29169
|
+
notSupported: 5,
|
|
29170
|
+
unknownFutureValue: 6,
|
|
29171
|
+
}
|
|
29172
|
+
|
|
28426
29173
|
enum fido2RestrictionEnforcementType {
|
|
28427
29174
|
allow: 0,
|
|
28428
29175
|
block: 1,
|
|
@@ -28593,6 +29340,13 @@ within the time frame of their original request.
|
|
|
28593
29340
|
unknownFutureValue: 2,
|
|
28594
29341
|
}
|
|
28595
29342
|
|
|
29343
|
+
enum holdType {
|
|
29344
|
+
none: 0,
|
|
29345
|
+
private: 1,
|
|
29346
|
+
public: 2,
|
|
29347
|
+
unknownFutureValue: 3,
|
|
29348
|
+
}
|
|
29349
|
+
|
|
28596
29350
|
enum horizontalSectionLayoutType {
|
|
28597
29351
|
none: 0,
|
|
28598
29352
|
oneColumn: 1,
|
|
@@ -29288,6 +30042,12 @@ within the time frame of their original request.
|
|
|
29288
30042
|
unknownFutureValue: 12,
|
|
29289
30043
|
}
|
|
29290
30044
|
|
|
30045
|
+
enum matchConfidenceLevel {
|
|
30046
|
+
exact: 0,
|
|
30047
|
+
relaxed: 1,
|
|
30048
|
+
unknownFutureValue: 2,
|
|
30049
|
+
}
|
|
30050
|
+
|
|
29291
30051
|
enum maxWorkLocationDetails {
|
|
29292
30052
|
`unknown`: 0,
|
|
29293
30053
|
none: 1,
|
|
@@ -29459,6 +30219,12 @@ within the time frame of their original request.
|
|
|
29459
30219
|
online: 1,
|
|
29460
30220
|
}
|
|
29461
30221
|
|
|
30222
|
+
enum migrationMode {
|
|
30223
|
+
inProgress: 0,
|
|
30224
|
+
completed: 1,
|
|
30225
|
+
unknownFutureValue: 2,
|
|
30226
|
+
}
|
|
30227
|
+
|
|
29462
30228
|
enum migrationStatus {
|
|
29463
30229
|
ready: 0,
|
|
29464
30230
|
needsReview: 1,
|
|
@@ -29630,6 +30396,24 @@ within the time frame of their original request.
|
|
|
29630
30396
|
unknownFutureValue: 5,
|
|
29631
30397
|
}
|
|
29632
30398
|
|
|
30399
|
+
enum monitorMode {
|
|
30400
|
+
monitorOnly: 0,
|
|
30401
|
+
unknownFutureValue: 1,
|
|
30402
|
+
}
|
|
30403
|
+
|
|
30404
|
+
enum monitorRunStatus {
|
|
30405
|
+
successful: 0,
|
|
30406
|
+
partiallySuccessful: 1,
|
|
30407
|
+
failed: 2,
|
|
30408
|
+
unknownFutureValue: 3,
|
|
30409
|
+
}
|
|
30410
|
+
|
|
30411
|
+
enum monitorStatus {
|
|
30412
|
+
active: 0,
|
|
30413
|
+
inactive: 1,
|
|
30414
|
+
unknownFutureValue: 2,
|
|
30415
|
+
}
|
|
30416
|
+
|
|
29633
30417
|
enum multiFactorAuthConfiguration {
|
|
29634
30418
|
notRequired: 0,
|
|
29635
30419
|
required: 1,
|
|
@@ -29724,6 +30508,13 @@ within the time frame of their original request.
|
|
|
29724
30508
|
unknownFutureValue: 32,
|
|
29725
30509
|
}
|
|
29726
30510
|
|
|
30511
|
+
enum notifyMembers {
|
|
30512
|
+
all: 0,
|
|
30513
|
+
allowSelected: 1,
|
|
30514
|
+
blockSelected: 2,
|
|
30515
|
+
unknownFutureValue: 3,
|
|
30516
|
+
}
|
|
30517
|
+
|
|
29727
30518
|
enum oAuthAppScope {
|
|
29728
30519
|
`unknown`: 0,
|
|
29729
30520
|
readCalendar: 1,
|
|
@@ -29944,6 +30735,30 @@ within the time frame of their original request.
|
|
|
29944
30735
|
unknownFutureValue: 7,
|
|
29945
30736
|
}
|
|
29946
30737
|
|
|
30738
|
+
enum passkeyType {
|
|
30739
|
+
deviceBound: 0,
|
|
30740
|
+
synced: 1,
|
|
30741
|
+
unknownFutureValue: 2,
|
|
30742
|
+
}
|
|
30743
|
+
|
|
30744
|
+
@graphFlags
|
|
30745
|
+
enum passkeyTypes {
|
|
30746
|
+
deviceBound: 1,
|
|
30747
|
+
synced: 2,
|
|
30748
|
+
unknownFutureValue: 4,
|
|
30749
|
+
}
|
|
30750
|
+
|
|
30751
|
+
@graphFlags
|
|
30752
|
+
enum passwordPolicy {
|
|
30753
|
+
none: 0,
|
|
30754
|
+
changePasswordPeriod: 1,
|
|
30755
|
+
charactersCombination: 2,
|
|
30756
|
+
passwordHistoryAndReuse: 4,
|
|
30757
|
+
passwordLengthLimit: 8,
|
|
30758
|
+
personalInformationUse: 16,
|
|
30759
|
+
unknownFutureValue: 32,
|
|
30760
|
+
}
|
|
30761
|
+
|
|
29947
30762
|
enum payloadBrand {
|
|
29948
30763
|
`unknown`: 0,
|
|
29949
30764
|
other: 1,
|
|
@@ -30044,6 +30859,14 @@ within the time frame of their original request.
|
|
|
30044
30859
|
unknownFutureValue: 31,
|
|
30045
30860
|
}
|
|
30046
30861
|
|
|
30862
|
+
enum pciVersion {
|
|
30863
|
+
none: 0,
|
|
30864
|
+
v3_2_1: 1,
|
|
30865
|
+
v4: 2,
|
|
30866
|
+
notSupported: 3,
|
|
30867
|
+
unknownFutureValue: 4,
|
|
30868
|
+
}
|
|
30869
|
+
|
|
30047
30870
|
enum permissionClassificationType {
|
|
30048
30871
|
low: 1,
|
|
30049
30872
|
medium: 2,
|
|
@@ -32209,6 +33032,18 @@ within the time frame of their original request.
|
|
|
32209
33032
|
notResponded: 5,
|
|
32210
33033
|
}
|
|
32211
33034
|
|
|
33035
|
+
enum restEncryptionType {
|
|
33036
|
+
none: 0,
|
|
33037
|
+
aes: 1,
|
|
33038
|
+
bitlocker: 2,
|
|
33039
|
+
blowfish: 3,
|
|
33040
|
+
des: 4,
|
|
33041
|
+
rc4: 5,
|
|
33042
|
+
rsa: 6,
|
|
33043
|
+
notSupported: 7,
|
|
33044
|
+
unknownFutureValue: 8,
|
|
33045
|
+
}
|
|
33046
|
+
|
|
32212
33047
|
enum restorableArtifact {
|
|
32213
33048
|
message: 0,
|
|
32214
33049
|
unknownFutureValue: 1,
|
|
@@ -32226,6 +33061,7 @@ within the time frame of their original request.
|
|
|
32226
33061
|
standard: 0,
|
|
32227
33062
|
bulk: 1,
|
|
32228
33063
|
unknownFutureValue: 2,
|
|
33064
|
+
granular: 3,
|
|
32229
33065
|
}
|
|
32230
33066
|
|
|
32231
33067
|
enum restorePointPreference {
|
|
@@ -32294,6 +33130,7 @@ within the time frame of their original request.
|
|
|
32294
33130
|
userChangedPasswordOnPremises: 15,
|
|
32295
33131
|
adminDismissedRiskForSignIn: 16,
|
|
32296
33132
|
adminConfirmedAccountSafe: 17,
|
|
33133
|
+
microsoftRevokedSessions: 18,
|
|
32297
33134
|
}
|
|
32298
33135
|
|
|
32299
33136
|
enum riskDetectionTimingType {
|
|
@@ -32451,6 +33288,29 @@ within the time frame of their original request.
|
|
|
32451
33288
|
darkPink: 10,
|
|
32452
33289
|
darkYellow: 11,
|
|
32453
33290
|
unknownFutureValue: 12,
|
|
33291
|
+
darkRed: 13,
|
|
33292
|
+
cranberry: 14,
|
|
33293
|
+
darkOrange: 15,
|
|
33294
|
+
bronze: 16,
|
|
33295
|
+
peach: 17,
|
|
33296
|
+
gold: 18,
|
|
33297
|
+
lime: 19,
|
|
33298
|
+
forest: 20,
|
|
33299
|
+
lightGreen: 21,
|
|
33300
|
+
jade: 22,
|
|
33301
|
+
lightTeal: 23,
|
|
33302
|
+
darkTeal: 24,
|
|
33303
|
+
steel: 25,
|
|
33304
|
+
skyBlue: 26,
|
|
33305
|
+
blueGray: 27,
|
|
33306
|
+
lavender: 28,
|
|
33307
|
+
lilac: 29,
|
|
33308
|
+
plum: 30,
|
|
33309
|
+
magenta: 31,
|
|
33310
|
+
darkBrown: 32,
|
|
33311
|
+
beige: 33,
|
|
33312
|
+
charcoal: 34,
|
|
33313
|
+
silver: 35,
|
|
32454
33314
|
}
|
|
32455
33315
|
|
|
32456
33316
|
enum scheduleRequestActions {
|
|
@@ -32842,11 +33702,31 @@ within the time frame of their original request.
|
|
|
32842
33702
|
high: 5,
|
|
32843
33703
|
}
|
|
32844
33704
|
|
|
33705
|
+
enum snapshotJobStatus {
|
|
33706
|
+
notStarted: 0,
|
|
33707
|
+
running: 1,
|
|
33708
|
+
succeeded: 2,
|
|
33709
|
+
failed: 3,
|
|
33710
|
+
partiallySuccessful: 4,
|
|
33711
|
+
unknownFutureValue: 5,
|
|
33712
|
+
}
|
|
33713
|
+
|
|
32845
33714
|
enum socialIdentitySourceType {
|
|
32846
33715
|
facebook: 1,
|
|
32847
33716
|
unknownFutureValue: 2,
|
|
32848
33717
|
}
|
|
32849
33718
|
|
|
33719
|
+
enum sslVersion {
|
|
33720
|
+
none: 0,
|
|
33721
|
+
ssl3_0: 1,
|
|
33722
|
+
tls1_0: 2,
|
|
33723
|
+
tls1_1: 3,
|
|
33724
|
+
tls1_2: 4,
|
|
33725
|
+
tls1_3: 5,
|
|
33726
|
+
notSupported: 6,
|
|
33727
|
+
unknownFutureValue: 7,
|
|
33728
|
+
}
|
|
33729
|
+
|
|
32850
33730
|
enum stagedFeatureName {
|
|
32851
33731
|
passthroughAuthentication: 0,
|
|
32852
33732
|
seamlessSso: 1,
|
|
@@ -33579,6 +34459,20 @@ within the time frame of their original request.
|
|
|
33579
34459
|
unknownFutureValue: 7,
|
|
33580
34460
|
}
|
|
33581
34461
|
|
|
34462
|
+
@graphFlags
|
|
34463
|
+
enum userOwnership {
|
|
34464
|
+
none: 0,
|
|
34465
|
+
lawfulBasisForProcessing: 1,
|
|
34466
|
+
rightToAccess: 2,
|
|
34467
|
+
rightToBeInformed: 4,
|
|
34468
|
+
rightToDataPortability: 8,
|
|
34469
|
+
rightToObject: 16,
|
|
34470
|
+
rightToRectification: 32,
|
|
34471
|
+
rightToRestrictionOfProcessing: 64,
|
|
34472
|
+
rightsRelatedToAutomatedDecisionMaking: 128,
|
|
34473
|
+
unknownFutureValue: 256,
|
|
34474
|
+
}
|
|
34475
|
+
|
|
33582
34476
|
enum userPurpose {
|
|
33583
34477
|
user: 1,
|
|
33584
34478
|
linked: 2,
|
|
@@ -33608,6 +34502,19 @@ within the time frame of their original request.
|
|
|
33608
34502
|
unknownFutureValue: 2,
|
|
33609
34503
|
}
|
|
33610
34504
|
|
|
34505
|
+
enum verifiedIdProfileState {
|
|
34506
|
+
enabled: 0,
|
|
34507
|
+
disabled: 1,
|
|
34508
|
+
unknownFutureValue: 2,
|
|
34509
|
+
}
|
|
34510
|
+
|
|
34511
|
+
enum verifiedIdUsageConfigurationPurpose {
|
|
34512
|
+
recovery: 0,
|
|
34513
|
+
onboarding: 1,
|
|
34514
|
+
all: 2,
|
|
34515
|
+
unknownFutureValue: 3,
|
|
34516
|
+
}
|
|
34517
|
+
|
|
33611
34518
|
enum virtualAppointmentMessageType {
|
|
33612
34519
|
confirmation: 0,
|
|
33613
34520
|
reschedule: 1,
|
|
@@ -35892,6 +36799,11 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35892
36799
|
personManager: 49,
|
|
35893
36800
|
personAlternateContacts: 50,
|
|
35894
36801
|
personEmergencyContacts: 51,
|
|
36802
|
+
personEducationalActivities: 52,
|
|
36803
|
+
personInterests: 53,
|
|
36804
|
+
personLanguages: 54,
|
|
36805
|
+
personPublications: 55,
|
|
36806
|
+
personPatents: 56,
|
|
35895
36807
|
}
|
|
35896
36808
|
|
|
35897
36809
|
enum propertyType {
|
|
@@ -36163,6 +37075,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
36163
37075
|
completedDateTime: offsetDateTime | null;
|
|
36164
37076
|
@computed createdDateTime: offsetDateTime;
|
|
36165
37077
|
failureReason: string | null;
|
|
37078
|
+
processingInfo: string | null;
|
|
36166
37079
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
36167
37080
|
startedDateTime: offsetDateTime | null;
|
|
36168
37081
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -36466,6 +37379,7 @@ namespace reference.`microsoft.graph.search` {
|
|
|
36466
37379
|
}
|
|
36467
37380
|
|
|
36468
37381
|
}
|
|
37382
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
36469
37383
|
@publicNamespace("microsoft.graph.security")
|
|
36470
37384
|
namespace reference.`microsoft.graph.security` {
|
|
36471
37385
|
@complex model account {
|
|
@@ -36977,6 +37891,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36977
37891
|
processes: processEvidence[] | null;
|
|
36978
37892
|
}
|
|
36979
37893
|
|
|
37894
|
+
@complex model mergeResponse {
|
|
37895
|
+
targetIncidentId: string;
|
|
37896
|
+
}
|
|
37897
|
+
|
|
36980
37898
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
36981
37899
|
destinationAddress: ipEvidence | null;
|
|
36982
37900
|
destinationPort: int32 | null;
|
|
@@ -37192,6 +38110,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37192
38110
|
displayName: string | null;
|
|
37193
38111
|
domainName: string | null;
|
|
37194
38112
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
38113
|
+
tenantId: string | null;
|
|
37195
38114
|
userPrincipalName: string | null;
|
|
37196
38115
|
userSid: string | null;
|
|
37197
38116
|
}
|
|
@@ -37229,6 +38148,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37229
38148
|
alertPolicyId: string | null;
|
|
37230
38149
|
alertWebUrl: string | null;
|
|
37231
38150
|
assignedTo: string | null;
|
|
38151
|
+
categories: string[] | null;
|
|
38152
|
+
|
|
38153
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
37232
38154
|
category: string | null;
|
|
37233
38155
|
classification: alertClassification | null;
|
|
37234
38156
|
comments: alertComment[] | null;
|
|
@@ -37282,6 +38204,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37282
38204
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
37283
38205
|
}
|
|
37284
38206
|
|
|
38207
|
+
@entity model autoAuditingConfiguration extends reference.`microsoft.graph`.entity {
|
|
38208
|
+
isAutomatic: boolean;
|
|
38209
|
+
}
|
|
38210
|
+
|
|
37285
38211
|
@abstract
|
|
37286
38212
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
37287
38213
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -37616,6 +38542,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37616
38542
|
@contains sensorCandidateActivationConfiguration: sensorCandidateActivationConfiguration;
|
|
37617
38543
|
@contains sensorCandidates: sensorCandidate[];
|
|
37618
38544
|
@contains sensors: sensor[];
|
|
38545
|
+
@contains settings: settingsContainer | null;
|
|
37619
38546
|
}
|
|
37620
38547
|
|
|
37621
38548
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
@@ -37775,6 +38702,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37775
38702
|
activationMode: sensorCandidateActivationMode;
|
|
37776
38703
|
}
|
|
37777
38704
|
|
|
38705
|
+
@entity model settingsContainer extends reference.`microsoft.graph`.entity {
|
|
38706
|
+
@contains autoAuditingConfiguration: autoAuditingConfiguration | null;
|
|
38707
|
+
}
|
|
38708
|
+
|
|
37778
38709
|
@entity model siteSource extends dataSource {
|
|
37779
38710
|
@references site: reference.`microsoft.graph`.site;
|
|
37780
38711
|
}
|
|
@@ -38097,6 +39028,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38097
39028
|
unknownFutureValue: 3,
|
|
38098
39029
|
}
|
|
38099
39030
|
|
|
39031
|
+
@graphFlags
|
|
39032
|
+
enum correlationReason {
|
|
39033
|
+
repeatedAlertOccurrence: 1,
|
|
39034
|
+
sameGeography: 2,
|
|
39035
|
+
similarArtifacts: 4,
|
|
39036
|
+
sameTargetedAsset: 8,
|
|
39037
|
+
sameNetworkSegment: 16,
|
|
39038
|
+
eventSequence: 32,
|
|
39039
|
+
timeFrame: 64,
|
|
39040
|
+
sameThreatSource: 128,
|
|
39041
|
+
similarTTPsOrBehavior: 256,
|
|
39042
|
+
sameActor: 512,
|
|
39043
|
+
sameCampaign: 1024,
|
|
39044
|
+
sharedIndicators: 2048,
|
|
39045
|
+
sameAsset: 4096,
|
|
39046
|
+
networkProximity: 8192,
|
|
39047
|
+
eventCasualSequence: 16384,
|
|
39048
|
+
temporalProximity: 32768,
|
|
39049
|
+
lateralMovementPath: 65536,
|
|
39050
|
+
unknownFutureValue: 131072,
|
|
39051
|
+
}
|
|
39052
|
+
|
|
38100
39053
|
enum dataSourceContainerStatus {
|
|
38101
39054
|
active: 1,
|
|
38102
39055
|
released: 2,
|