@microsoft/typespec-msgraph-reference 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +19 -19
- package/.rush/temp/shrinkwrap-deps.json +97 -97
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +64737 -8299
- package/lib/Bleu/V1.0/main.tsp +18969 -113
- package/lib/Delos/Beta/main.tsp +56729 -509
- package/lib/Delos/V1.0/main.tsp +16666 -27
- package/lib/Fairfax/Beta/main.tsp +1115 -618
- package/lib/Fairfax/V1.0/main.tsp +327 -20
- package/lib/GovSG/Beta/main.tsp +163 -13
- package/lib/GovSG/V1.0/main.tsp +202 -0
- package/lib/Mooncake/Beta/main.tsp +810 -608
- package/lib/Mooncake/V1.0/main.tsp +246 -20
- package/lib/Prod/Beta/main.tsp +4096 -777
- package/lib/Prod/V1.0/main.tsp +1263 -24
- package/lib/USNat/Beta/main.tsp +1494 -53
- package/lib/USNat/V1.0/main.tsp +815 -3
- package/lib/USSec/Beta/main.tsp +1481 -72
- package/lib/USSec/V1.0/main.tsp +725 -3
- package/package.json +2 -2
- package/rush-logs/typespec-msgraph-reference.build.log +1 -1
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -10,7 +10,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
10
10
|
@deprecatedDefinition("Deprecation", "<ChangeLogCategory>", "2024-04-10", "2026-04-10", "The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API.")
|
|
11
11
|
@deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
|
|
12
12
|
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
13
|
-
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "
|
|
13
|
+
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2026-01-28", "2028-01-01", "This API is deprecated and will stop returning data after January, 2028.")
|
|
14
14
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
15
15
|
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
|
|
16
16
|
@deprecatedDefinition("PrivacyDeprecate", "<ChangeLogCategory>", "2022-03-22", "2025-03-20", "The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security.")
|
|
@@ -386,6 +386,9 @@ namespace reference.`microsoft.graph` {
|
|
|
386
386
|
value: string | null;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
+
@complex model allAllowedScopes extends inheritableScopes {
|
|
390
|
+
}
|
|
391
|
+
|
|
389
392
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
390
393
|
}
|
|
391
394
|
|
|
@@ -551,6 +554,127 @@ namespace reference.`microsoft.graph` {
|
|
|
551
554
|
@complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
|
|
552
555
|
}
|
|
553
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
|
+
|
|
554
678
|
@complex model applicationServicePrincipal {
|
|
555
679
|
@references application: application | null;
|
|
556
680
|
@references servicePrincipal: servicePrincipal | null;
|
|
@@ -602,6 +726,7 @@ namespace reference.`microsoft.graph` {
|
|
|
602
726
|
}
|
|
603
727
|
|
|
604
728
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
729
|
+
identifierUris: identifierUriConfiguration | null;
|
|
605
730
|
}
|
|
606
731
|
|
|
607
732
|
@abstract
|
|
@@ -610,6 +735,10 @@ namespace reference.`microsoft.graph` {
|
|
|
610
735
|
|
|
611
736
|
}
|
|
612
737
|
|
|
738
|
+
@complex model appManagementPolicyActorExemptions {
|
|
739
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
740
|
+
}
|
|
741
|
+
|
|
613
742
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
614
743
|
}
|
|
615
744
|
|
|
@@ -1042,6 +1171,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1042
1171
|
@complex model azureADJoinPolicy {
|
|
1043
1172
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
1044
1173
|
isAdminConfigurable: boolean | null;
|
|
1174
|
+
localAdmins: localAdminSettings | null;
|
|
1045
1175
|
}
|
|
1046
1176
|
|
|
1047
1177
|
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
@@ -1066,6 +1196,18 @@ namespace reference.`microsoft.graph` {
|
|
|
1066
1196
|
@references endUserNotification: endUserNotification | null;
|
|
1067
1197
|
}
|
|
1068
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
|
+
|
|
1069
1211
|
@complex model basicAuthentication extends apiAuthenticationConfigurationBase {
|
|
1070
1212
|
password: string | null;
|
|
1071
1213
|
username: string | null;
|
|
@@ -1285,6 +1427,15 @@ namespace reference.`microsoft.graph` {
|
|
|
1285
1427
|
isVideoOnDemandEnabled: boolean | null;
|
|
1286
1428
|
}
|
|
1287
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
|
+
|
|
1288
1439
|
@complex model browserSharedCookieHistory {
|
|
1289
1440
|
/**
|
|
1290
1441
|
* The comment of the cookie
|
|
@@ -1638,6 +1789,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1638
1789
|
displayAs: string | null;
|
|
1639
1790
|
}
|
|
1640
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
|
+
|
|
1641
1803
|
@complex model classifcationErrorBase {
|
|
1642
1804
|
code: string | null;
|
|
1643
1805
|
innerError: classificationInnerError | null;
|
|
@@ -2121,6 +2283,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2121
2283
|
tenantId: string | null;
|
|
2122
2284
|
}
|
|
2123
2285
|
|
|
2286
|
+
@complex model crossTenantAccessPolicyAppServiceConnectSetting {
|
|
2287
|
+
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2124
2290
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
2125
2291
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2126
2292
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -2132,6 +2298,14 @@ namespace reference.`microsoft.graph` {
|
|
|
2132
2298
|
isMfaAccepted: boolean | null;
|
|
2133
2299
|
}
|
|
2134
2300
|
|
|
2301
|
+
@complex model crossTenantAccessPolicyM365CollaborationInboundSetting {
|
|
2302
|
+
users: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
@complex model crossTenantAccessPolicyM365CollaborationOutboundSetting {
|
|
2306
|
+
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2135
2309
|
@complex model crossTenantAccessPolicyTarget {
|
|
2136
2310
|
target: string | null;
|
|
2137
2311
|
targetType: crossTenantAccessPolicyTargetType | null;
|
|
@@ -2154,7 +2328,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2154
2328
|
locale: string | null;
|
|
2155
2329
|
}
|
|
2156
2330
|
|
|
2331
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
2332
|
+
identifierUris: identifierUriConfiguration | null;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2157
2335
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
2336
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2158
2337
|
}
|
|
2159
2338
|
|
|
2160
2339
|
@abstract
|
|
@@ -2212,6 +2391,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2212
2391
|
@complex model customMetadataDictionary extends Dictionary {
|
|
2213
2392
|
}
|
|
2214
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
|
+
|
|
2215
2404
|
@open
|
|
2216
2405
|
@complex model customSecurityAttributeValue {
|
|
2217
2406
|
}
|
|
@@ -2943,6 +3132,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2943
3132
|
status: string | null;
|
|
2944
3133
|
}
|
|
2945
3134
|
|
|
3135
|
+
@complex model driftedProperty {
|
|
3136
|
+
currentValue: Json | null;
|
|
3137
|
+
desiredValue: Json | null;
|
|
3138
|
+
propertyName: string;
|
|
3139
|
+
}
|
|
3140
|
+
|
|
2946
3141
|
@complex model driveItemSource {
|
|
2947
3142
|
application: driveItemSourceApplication | null;
|
|
2948
3143
|
externalId: string | null;
|
|
@@ -3206,6 +3401,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3206
3401
|
name: string | null;
|
|
3207
3402
|
}
|
|
3208
3403
|
|
|
3404
|
+
@complex model emailDetails {
|
|
3405
|
+
body: string;
|
|
3406
|
+
senderEmailAddress: string;
|
|
3407
|
+
subject: string;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3209
3410
|
@open
|
|
3210
3411
|
@complex model emailIdentity extends identity {
|
|
3211
3412
|
email: string | null;
|
|
@@ -3269,6 +3470,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3269
3470
|
users: string[] | null;
|
|
3270
3471
|
}
|
|
3271
3472
|
|
|
3473
|
+
@complex model enumeratedScopes extends inheritableScopes {
|
|
3474
|
+
scopes: string[];
|
|
3475
|
+
}
|
|
3476
|
+
|
|
3477
|
+
@complex model errorDetail {
|
|
3478
|
+
errorMessage: string;
|
|
3479
|
+
resourceInstanceName: string;
|
|
3480
|
+
resourceType: string;
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3272
3483
|
@abstract
|
|
3273
3484
|
@complex model eventMessageDetail {
|
|
3274
3485
|
}
|
|
@@ -3290,6 +3501,13 @@ namespace reference.`microsoft.graph` {
|
|
|
3290
3501
|
type: expirationPatternType | null;
|
|
3291
3502
|
}
|
|
3292
3503
|
|
|
3504
|
+
@complex model exportItemResponse {
|
|
3505
|
+
changeKey: string | null;
|
|
3506
|
+
data: stream | null;
|
|
3507
|
+
error: mailTipsError | null;
|
|
3508
|
+
itemId: string | null;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3293
3511
|
@complex model expressionInputObject {
|
|
3294
3512
|
definition: objectDefinition | null;
|
|
3295
3513
|
properties: stringKeyObjectValuePair[] | null;
|
|
@@ -3321,6 +3539,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3321
3539
|
labels: sensitivityLabelAssignment[] | null;
|
|
3322
3540
|
}
|
|
3323
3541
|
|
|
3542
|
+
@complex model faceCheckConfiguration {
|
|
3543
|
+
isEnabled: boolean;
|
|
3544
|
+
sourcePhotoClaimName: string;
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3324
3547
|
@complex model fallbackToMicrosoftProviderOnError extends customExtensionBehaviorOnError {
|
|
3325
3548
|
}
|
|
3326
3549
|
|
|
@@ -3556,6 +3779,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3556
3779
|
isPicture: boolean | null;
|
|
3557
3780
|
}
|
|
3558
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
|
+
|
|
3559
3796
|
@open
|
|
3560
3797
|
@complex model identity {
|
|
3561
3798
|
displayName: string | null;
|
|
@@ -3627,6 +3864,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3627
3864
|
@complex model includeAllAccountTargetContent extends accountTargetContent {
|
|
3628
3865
|
}
|
|
3629
3866
|
|
|
3867
|
+
@complex model includeTarget {
|
|
3868
|
+
id: string;
|
|
3869
|
+
targetType: authenticationMethodTargetType;
|
|
3870
|
+
}
|
|
3871
|
+
|
|
3630
3872
|
@complex model incomingCallOptions extends callOptions {
|
|
3631
3873
|
}
|
|
3632
3874
|
|
|
@@ -3651,6 +3893,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3651
3893
|
termsOfServiceUrl: string | null;
|
|
3652
3894
|
}
|
|
3653
3895
|
|
|
3896
|
+
@abstract
|
|
3897
|
+
@complex model inheritableScopes {
|
|
3898
|
+
kind: scopeCollectionKind;
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3654
3901
|
@open
|
|
3655
3902
|
@complex model initiator extends identity {
|
|
3656
3903
|
initiatorType: initiatorType | null;
|
|
@@ -4168,6 +4415,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4168
4415
|
isEnabled: boolean | null;
|
|
4169
4416
|
}
|
|
4170
4417
|
|
|
4418
|
+
@complex model localAdminSettings {
|
|
4419
|
+
enableGlobalAdmins: boolean | null;
|
|
4420
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
4421
|
+
}
|
|
4422
|
+
|
|
4171
4423
|
@complex model localeInfo {
|
|
4172
4424
|
displayName: string | null;
|
|
4173
4425
|
locale: string | null;
|
|
@@ -4335,6 +4587,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4335
4587
|
externalDirectoryObjectId: string | null;
|
|
4336
4588
|
}
|
|
4337
4589
|
|
|
4590
|
+
@complex model mailboxItemImportSession {
|
|
4591
|
+
expirationDateTime: offsetDateTime | null;
|
|
4592
|
+
importUrl: string | null;
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4338
4595
|
@complex model mailboxSettings {
|
|
4339
4596
|
archiveFolder: string | null;
|
|
4340
4597
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -4827,6 +5084,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4827
5084
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
4828
5085
|
}
|
|
4829
5086
|
|
|
5087
|
+
@complex model noScopes extends inheritableScopes {
|
|
5088
|
+
}
|
|
5089
|
+
|
|
4830
5090
|
@complex model notebookLinks {
|
|
4831
5091
|
oneNoteClientUrl: externalLink | null;
|
|
4832
5092
|
oneNoteWebUrl: externalLink | null;
|
|
@@ -5105,6 +5365,16 @@ namespace reference.`microsoft.graph` {
|
|
|
5105
5365
|
@complex model onOtpSendHandler {
|
|
5106
5366
|
}
|
|
5107
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
|
+
|
|
5108
5378
|
@complex model onPremisesAccidentalDeletionPrevention {
|
|
5109
5379
|
alertThreshold: int32 | null;
|
|
5110
5380
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
@@ -5115,6 +5385,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5115
5385
|
}
|
|
5116
5386
|
|
|
5117
5387
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
5388
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
5118
5389
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
5119
5390
|
blockSoftMatchEnabled: boolean | null;
|
|
5120
5391
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -5182,6 +5453,19 @@ namespace reference.`microsoft.graph` {
|
|
|
5182
5453
|
@complex model onUserCreateStartHandler {
|
|
5183
5454
|
}
|
|
5184
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
|
+
|
|
5185
5469
|
@complex model openIdConnectSetting {
|
|
5186
5470
|
clientId: string;
|
|
5187
5471
|
discoveryUrl: string;
|
|
@@ -5273,7 +5557,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5273
5557
|
*/
|
|
5274
5558
|
privacySettingsHidden: boolean;
|
|
5275
5559
|
/**
|
|
5276
|
-
* 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
|
|
5277
5561
|
|
|
5278
5562
|
*/
|
|
5279
5563
|
userType: windowsUserType;
|
|
@@ -5809,6 +6093,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5809
6093
|
localizations: displayNameLocalization[] | null;
|
|
5810
6094
|
}
|
|
5811
6095
|
|
|
6096
|
+
@complex model profileSourceLocalization {
|
|
6097
|
+
displayName: string | null;
|
|
6098
|
+
languageTag: string | null;
|
|
6099
|
+
webUrl: string | null;
|
|
6100
|
+
}
|
|
6101
|
+
|
|
5812
6102
|
@abstract
|
|
5813
6103
|
@complex model prompt {
|
|
5814
6104
|
}
|
|
@@ -6664,6 +6954,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6664
6954
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
6665
6955
|
}
|
|
6666
6956
|
|
|
6957
|
+
@open
|
|
6958
|
+
@complex model sharePointGroupIdentity extends identity {
|
|
6959
|
+
principalId: string | null;
|
|
6960
|
+
title: string | null;
|
|
6961
|
+
}
|
|
6962
|
+
|
|
6667
6963
|
@open
|
|
6668
6964
|
@complex model sharePointIdentity extends identity {
|
|
6669
6965
|
loginName: string | null;
|
|
@@ -6672,6 +6968,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6672
6968
|
@open
|
|
6673
6969
|
@complex model sharePointIdentitySet extends identitySet {
|
|
6674
6970
|
group: identity | null;
|
|
6971
|
+
sharePointGroup: sharePointGroupIdentity | null;
|
|
6675
6972
|
siteGroup: sharePointIdentity | null;
|
|
6676
6973
|
siteUser: sharePointIdentity | null;
|
|
6677
6974
|
}
|
|
@@ -7075,6 +7372,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7075
7372
|
managerLevel: int32 | null;
|
|
7076
7373
|
}
|
|
7077
7374
|
|
|
7375
|
+
@complex model targetOwners {
|
|
7376
|
+
notifyMembers: notifyMembers;
|
|
7377
|
+
securityGroups: string[];
|
|
7378
|
+
}
|
|
7379
|
+
|
|
7078
7380
|
@complex model targetResource {
|
|
7079
7381
|
displayName: string | null;
|
|
7080
7382
|
groupType: groupType | null;
|
|
@@ -7822,6 +8124,19 @@ namespace reference.`microsoft.graph` {
|
|
|
7822
8124
|
type: string | null;
|
|
7823
8125
|
}
|
|
7824
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
|
+
|
|
7825
8140
|
@complex model verifiedPublisher {
|
|
7826
8141
|
addedDateTime: offsetDateTime | null;
|
|
7827
8142
|
displayName: string | null;
|
|
@@ -7943,6 +8258,70 @@ namespace reference.`microsoft.graph` {
|
|
|
7943
8258
|
dnsConfiguration: webApplicationFirewallDnsConfiguration | null;
|
|
7944
8259
|
}
|
|
7945
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
|
+
|
|
7946
8325
|
@complex model webPartData {
|
|
7947
8326
|
dataVersion: string | null;
|
|
7948
8327
|
description: string | null;
|
|
@@ -8714,11 +9093,21 @@ namespace reference.`microsoft.graph` {
|
|
|
8714
9093
|
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
8715
9094
|
}
|
|
8716
9095
|
|
|
9096
|
+
@complex model x509CertificateAuthorityScope {
|
|
9097
|
+
includeTargets: includeTarget[] | null;
|
|
9098
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
9099
|
+
subjectKeyIdentifier: string | null;
|
|
9100
|
+
}
|
|
9101
|
+
|
|
8717
9102
|
@complex model x509CertificateCRLValidationConfiguration {
|
|
8718
9103
|
exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
|
|
8719
9104
|
state: x509CertificateCRLValidationConfigurationState;
|
|
8720
9105
|
}
|
|
8721
9106
|
|
|
9107
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
9108
|
+
state: x509CertificateIssuerHintsState | null;
|
|
9109
|
+
}
|
|
9110
|
+
|
|
8722
9111
|
@complex model x509CertificateRule {
|
|
8723
9112
|
identifier: string | null;
|
|
8724
9113
|
issuerSubjectIdentifier: string | null;
|
|
@@ -8908,6 +9297,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8908
9297
|
objectId: string | null;
|
|
8909
9298
|
onPremisesSecurityIdentifier: string | null;
|
|
8910
9299
|
principalName: string | null;
|
|
9300
|
+
subjectLifecycle: accessPackageSubjectLifecycle;
|
|
8911
9301
|
subjectType: accessPackageSubjectType | null;
|
|
8912
9302
|
@references connectedOrganization: connectedOrganization | null;
|
|
8913
9303
|
}
|
|
@@ -9036,6 +9426,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9036
9426
|
}
|
|
9037
9427
|
|
|
9038
9428
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
9429
|
+
@contains configurationManagement: configurationManagement | null;
|
|
9039
9430
|
@contains edge: edge | null;
|
|
9040
9431
|
@contains exchange: exchangeAdmin | null;
|
|
9041
9432
|
@contains microsoft365Apps: adminMicrosoft365Apps | null;
|
|
@@ -9077,6 +9468,31 @@ namespace reference.`microsoft.graph` {
|
|
|
9077
9468
|
displayConcealedNames: boolean;
|
|
9078
9469
|
}
|
|
9079
9470
|
|
|
9471
|
+
@open
|
|
9472
|
+
@entity model agentIdentity extends servicePrincipal {
|
|
9473
|
+
agentIdentityBlueprintId: string;
|
|
9474
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
9475
|
+
@references sponsors: directoryObject[];
|
|
9476
|
+
}
|
|
9477
|
+
|
|
9478
|
+
@open
|
|
9479
|
+
@entity model agentIdentityBlueprint extends application {
|
|
9480
|
+
@contains inheritablePermissions: inheritablePermission[];
|
|
9481
|
+
@references sponsors: directoryObject[];
|
|
9482
|
+
}
|
|
9483
|
+
|
|
9484
|
+
@open
|
|
9485
|
+
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
9486
|
+
@references sponsors: directoryObject[];
|
|
9487
|
+
}
|
|
9488
|
+
|
|
9489
|
+
/**
|
|
9490
|
+
* Represents a Microsoft Entra user account.
|
|
9491
|
+
*/
|
|
9492
|
+
@open
|
|
9493
|
+
@entity model agentUser extends user {
|
|
9494
|
+
}
|
|
9495
|
+
|
|
9080
9496
|
@entity model agreement extends entity {
|
|
9081
9497
|
displayName: string | null;
|
|
9082
9498
|
isPerDeviceAcceptanceRequired: boolean | null;
|
|
@@ -9918,6 +10334,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9918
10334
|
appRoles: appRole[];
|
|
9919
10335
|
authenticationBehaviors: authenticationBehaviors | null;
|
|
9920
10336
|
certification: certification | null;
|
|
10337
|
+
createdByAppId: string | null;
|
|
9921
10338
|
@computed createdDateTime: offsetDateTime | null;
|
|
9922
10339
|
defaultRedirectUri: string | null;
|
|
9923
10340
|
description: string | null;
|
|
@@ -9927,9 +10344,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9927
10344
|
identifierUris: string[];
|
|
9928
10345
|
info: informationalUrl | null;
|
|
9929
10346
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
10347
|
+
isDisabled: boolean | null;
|
|
9930
10348
|
isFallbackPublicClient: boolean | null;
|
|
9931
10349
|
keyCredentials: keyCredential[];
|
|
9932
10350
|
logo: stream;
|
|
10351
|
+
managerApplications: guid;
|
|
9933
10352
|
nativeAuthenticationApisEnabled: nativeAuthenticationApisEnabled | null;
|
|
9934
10353
|
notes: string | null;
|
|
9935
10354
|
oauth2RequirePostResponse: boolean;
|
|
@@ -9963,11 +10382,17 @@ namespace reference.`microsoft.graph` {
|
|
|
9963
10382
|
|
|
9964
10383
|
@entity model applicationTemplate extends entity {
|
|
9965
10384
|
categories: string[] | null;
|
|
10385
|
+
deprecationDate: offsetDateTime | null;
|
|
9966
10386
|
description: string | null;
|
|
9967
10387
|
displayName: string | null;
|
|
10388
|
+
endpoints: string[] | null;
|
|
9968
10389
|
homePageUrl: string | null;
|
|
10390
|
+
isEntraIntegrated: boolean;
|
|
10391
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
9969
10392
|
logoUrl: string | null;
|
|
9970
10393
|
publisher: string | null;
|
|
10394
|
+
riskFactors: applicationRiskFactors | null;
|
|
10395
|
+
riskScore: applicationRiskScore | null;
|
|
9971
10396
|
supportedProvisioningTypes: string[] | null;
|
|
9972
10397
|
supportedSingleSignOnModes: string[] | null;
|
|
9973
10398
|
}
|
|
@@ -10024,6 +10449,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10024
10449
|
status: string | null;
|
|
10025
10450
|
}
|
|
10026
10451
|
|
|
10452
|
+
@entity model approvedClientApp extends entity {
|
|
10453
|
+
displayName: string | null;
|
|
10454
|
+
}
|
|
10455
|
+
|
|
10027
10456
|
@entity model appScope extends entity {
|
|
10028
10457
|
displayName: string | null;
|
|
10029
10458
|
type: string | null;
|
|
@@ -10302,6 +10731,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10302
10731
|
|
|
10303
10732
|
@entity model backupRestoreRoot extends entity {
|
|
10304
10733
|
serviceStatus: serviceStatus | null;
|
|
10734
|
+
@contains browseSessions: browseSessionBase[];
|
|
10305
10735
|
@contains driveInclusionRules: driveProtectionRule[];
|
|
10306
10736
|
@contains driveProtectionUnits: driveProtectionUnit[];
|
|
10307
10737
|
@contains driveProtectionUnitsBulkAdditionJobs: driveProtectionUnitsBulkAdditionJob[];
|
|
@@ -10310,6 +10740,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10310
10740
|
@contains mailboxInclusionRules: mailboxProtectionRule[];
|
|
10311
10741
|
@contains mailboxProtectionUnits: mailboxProtectionUnit[];
|
|
10312
10742
|
@contains mailboxProtectionUnitsBulkAdditionJobs: mailboxProtectionUnitsBulkAdditionJob[];
|
|
10743
|
+
@contains oneDriveForBusinessBrowseSessions: oneDriveForBusinessBrowseSession[];
|
|
10313
10744
|
@contains oneDriveForBusinessProtectionPolicies: oneDriveForBusinessProtectionPolicy[];
|
|
10314
10745
|
@contains oneDriveForBusinessRestoreSessions: oneDriveForBusinessRestoreSession[];
|
|
10315
10746
|
@contains protectionPolicies: protectionPolicyBase[];
|
|
@@ -10317,6 +10748,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10317
10748
|
@contains restorePoints: restorePoint[];
|
|
10318
10749
|
@contains restoreSessions: restoreSessionBase[];
|
|
10319
10750
|
@contains serviceApps: serviceApp[];
|
|
10751
|
+
@contains sharePointBrowseSessions: sharePointBrowseSession[];
|
|
10320
10752
|
@contains sharePointProtectionPolicies: sharePointProtectionPolicy[];
|
|
10321
10753
|
@contains sharePointRestoreSessions: sharePointRestoreSession[];
|
|
10322
10754
|
@contains siteInclusionRules: siteProtectionRule[];
|
|
@@ -10727,6 +11159,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10727
11159
|
@contains sites: browserSite[];
|
|
10728
11160
|
}
|
|
10729
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
|
+
|
|
10730
11173
|
@entity model building extends place {
|
|
10731
11174
|
resourceLinks: resourceLink[];
|
|
10732
11175
|
wifiState: placeFeatureEnablement;
|
|
@@ -10865,6 +11308,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10865
11308
|
@contains verticalSection: verticalSection | null;
|
|
10866
11309
|
}
|
|
10867
11310
|
|
|
11311
|
+
@entity model caPoliciesDeletableRoot extends entity {
|
|
11312
|
+
@contains namedLocations: namedLocation[];
|
|
11313
|
+
@contains policies: conditionalAccessPolicy[];
|
|
11314
|
+
}
|
|
11315
|
+
|
|
10868
11316
|
@entity model certificateAuthorityDetail extends directoryObject {
|
|
10869
11317
|
certificate: binary;
|
|
10870
11318
|
certificateAuthorityType: certificateAuthorityType | null;
|
|
@@ -10906,11 +11354,15 @@ namespace reference.`microsoft.graph` {
|
|
|
10906
11354
|
email: string | null;
|
|
10907
11355
|
isArchived: boolean | null;
|
|
10908
11356
|
isFavoriteByDefault: boolean | null;
|
|
11357
|
+
layoutType: channelLayoutType | null;
|
|
10909
11358
|
membershipType: channelMembershipType | null;
|
|
11359
|
+
migrationMode: migrationMode | null;
|
|
11360
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10910
11361
|
summary: channelSummary | null;
|
|
10911
11362
|
tenantId: string | null;
|
|
10912
11363
|
webUrl: string | null;
|
|
10913
11364
|
@contains allMembers: conversationMember[];
|
|
11365
|
+
@references enabledApps: teamsApp[];
|
|
10914
11366
|
@contains filesFolder: driveItem | null;
|
|
10915
11367
|
@contains members: conversationMember[];
|
|
10916
11368
|
@contains messages: chatMessage[];
|
|
@@ -10923,7 +11375,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10923
11375
|
@computed createdDateTime: offsetDateTime | null;
|
|
10924
11376
|
isHiddenForAllMembers: boolean | null;
|
|
10925
11377
|
@computed lastUpdatedDateTime: offsetDateTime | null;
|
|
11378
|
+
migrationMode: migrationMode | null;
|
|
10926
11379
|
onlineMeetingInfo: teamworkOnlineMeetingInfo | null;
|
|
11380
|
+
originalCreatedDateTime: offsetDateTime | null;
|
|
10927
11381
|
tenantId: string | null;
|
|
10928
11382
|
topic: string | null;
|
|
10929
11383
|
viewpoint: chatViewpoint | null;
|
|
@@ -10935,6 +11389,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10935
11389
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
10936
11390
|
@contains pinnedMessages: pinnedChatMessageInfo[];
|
|
10937
11391
|
@contains tabs: teamsTab[];
|
|
11392
|
+
@contains targetedMessages: targetedChatMessage[];
|
|
10938
11393
|
}
|
|
10939
11394
|
|
|
10940
11395
|
@entity model chatMessage extends entity {
|
|
@@ -11062,6 +11517,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11062
11517
|
operatingSystem: string | null;
|
|
11063
11518
|
osBuildNumber: string | null;
|
|
11064
11519
|
osStatus: cloudPcDeviceImageOsStatus | null;
|
|
11520
|
+
osVersionNumber: string | null;
|
|
11521
|
+
sizeInGB: int32 | null;
|
|
11065
11522
|
sourceImageResourceId: string | null;
|
|
11066
11523
|
status: cloudPcDeviceImageStatus | null;
|
|
11067
11524
|
version: string | null;
|
|
@@ -11072,6 +11529,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11072
11529
|
endDate: offsetDateTime | null;
|
|
11073
11530
|
expirationDate: offsetDateTime | null;
|
|
11074
11531
|
offerName: string | null;
|
|
11532
|
+
osVersionNumber: string | null;
|
|
11075
11533
|
publisherName: string | null;
|
|
11076
11534
|
sizeInGB: int32 | null;
|
|
11077
11535
|
skuName: string | null;
|
|
@@ -11086,11 +11544,14 @@ namespace reference.`microsoft.graph` {
|
|
|
11086
11544
|
alternateResourceUrl: string | null;
|
|
11087
11545
|
connectionType: cloudPcOnPremisesConnectionType | null;
|
|
11088
11546
|
displayName: string;
|
|
11547
|
+
healthCheckPaused: boolean | null;
|
|
11089
11548
|
healthCheckStatus: cloudPcOnPremisesConnectionStatus;
|
|
11090
11549
|
healthCheckStatusDetail: cloudPcOnPremisesConnectionStatusDetail | null;
|
|
11091
11550
|
inUse: boolean | null;
|
|
11551
|
+
inUseByCloudPc: boolean | null;
|
|
11092
11552
|
organizationalUnit: string | null;
|
|
11093
11553
|
resourceGroupId: string;
|
|
11554
|
+
scopeIds: string[] | null;
|
|
11094
11555
|
subnetId: string;
|
|
11095
11556
|
subscriptionId: string;
|
|
11096
11557
|
subscriptionName: string | null;
|
|
@@ -11278,12 +11739,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11278
11739
|
partnerState: deviceManagementPartnerTenantState;
|
|
11279
11740
|
}
|
|
11280
11741
|
|
|
11281
|
-
@entity model conditionalAccessPolicy extends
|
|
11742
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
11282
11743
|
conditions: conditionalAccessConditionSet;
|
|
11283
11744
|
@computed createdDateTime: offsetDateTime | null;
|
|
11284
11745
|
description: string | null;
|
|
11285
11746
|
displayName: string;
|
|
11286
11747
|
grantControls: conditionalAccessGrantControls | null;
|
|
11748
|
+
@computed @key id: string;
|
|
11287
11749
|
modifiedDateTime: offsetDateTime | null;
|
|
11288
11750
|
sessionControls: conditionalAccessSessionControls | null;
|
|
11289
11751
|
state: conditionalAccessPolicyState;
|
|
@@ -11293,6 +11755,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11293
11755
|
@entity model conditionalAccessRoot extends entity {
|
|
11294
11756
|
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
11295
11757
|
@contains authenticationStrength: authenticationStrengthRoot | null;
|
|
11758
|
+
@contains deletedItems: caPoliciesDeletableRoot | null;
|
|
11296
11759
|
@contains namedLocations: namedLocation[];
|
|
11297
11760
|
@contains policies: conditionalAccessPolicy[];
|
|
11298
11761
|
@contains templates: conditionalAccessTemplate[];
|
|
@@ -11305,6 +11768,71 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11305
11768
|
scenarios: templateScenarios;
|
|
11306
11769
|
}
|
|
11307
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
|
+
|
|
11308
11836
|
@entity model connectedOrganization extends entity {
|
|
11309
11837
|
@computed createdDateTime: offsetDateTime | null;
|
|
11310
11838
|
description: string | null;
|
|
@@ -11344,9 +11872,12 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11344
11872
|
otherAddress: physicalAddress | null;
|
|
11345
11873
|
parentFolderId: string | null;
|
|
11346
11874
|
personalNotes: string | null;
|
|
11875
|
+
primaryEmailAddress: emailAddress | null;
|
|
11347
11876
|
profession: string | null;
|
|
11877
|
+
secondaryEmailAddress: emailAddress | null;
|
|
11348
11878
|
spouseName: string | null;
|
|
11349
11879
|
surname: string | null;
|
|
11880
|
+
tertiaryEmailAddress: emailAddress | null;
|
|
11350
11881
|
title: string | null;
|
|
11351
11882
|
yomiCompanyName: string | null;
|
|
11352
11883
|
yomiGivenName: string | null;
|
|
@@ -11471,6 +12002,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11471
12002
|
}
|
|
11472
12003
|
|
|
11473
12004
|
@entity model crossTenantAccessPolicyConfigurationDefault extends entity {
|
|
12005
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11474
12006
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11475
12007
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11476
12008
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11479,10 +12011,13 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11479
12011
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11480
12012
|
invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
|
|
11481
12013
|
isServiceDefault: boolean | null;
|
|
12014
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12015
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11482
12016
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11483
12017
|
}
|
|
11484
12018
|
|
|
11485
12019
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
12020
|
+
appServiceConnectInbound: crossTenantAccessPolicyAppServiceConnectSetting | null;
|
|
11486
12021
|
automaticUserConsentSettings: inboundOutboundPolicyConfiguration | null;
|
|
11487
12022
|
b2bCollaborationInbound: crossTenantAccessPolicyB2BSetting | null;
|
|
11488
12023
|
b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
|
|
@@ -11491,6 +12026,8 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11491
12026
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
11492
12027
|
isInMultiTenantOrganization: boolean | null;
|
|
11493
12028
|
isServiceProvider: boolean | null;
|
|
12029
|
+
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12030
|
+
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
11494
12031
|
@computed @key tenantId: string;
|
|
11495
12032
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
11496
12033
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
@@ -13966,6 +14503,7 @@ within the time frame of their original request.
|
|
|
13966
14503
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
13967
14504
|
@contains resources: accessPackageResource[];
|
|
13968
14505
|
@contains settings: entitlementManagementSettings | null;
|
|
14506
|
+
@contains subjects: accessPackageSubject[];
|
|
13969
14507
|
}
|
|
13970
14508
|
|
|
13971
14509
|
@entity model entitlementManagementSettings extends entity {
|
|
@@ -14054,6 +14592,7 @@ within the time frame of their original request.
|
|
|
14054
14592
|
}
|
|
14055
14593
|
|
|
14056
14594
|
@entity model exchangeAdmin extends entity {
|
|
14595
|
+
@contains mailboxes: mailbox[];
|
|
14057
14596
|
@contains tracing: messageTracingRoot | null;
|
|
14058
14597
|
}
|
|
14059
14598
|
|
|
@@ -14090,6 +14629,10 @@ within the time frame of their original request.
|
|
|
14090
14629
|
@contains mailboxRestoreArtifactsBulkAdditionRequests: mailboxRestoreArtifactsBulkAdditionRequest[];
|
|
14091
14630
|
}
|
|
14092
14631
|
|
|
14632
|
+
@entity model exchangeSettings extends entity {
|
|
14633
|
+
primaryMailboxId: string | null;
|
|
14634
|
+
}
|
|
14635
|
+
|
|
14093
14636
|
@abstract
|
|
14094
14637
|
@open
|
|
14095
14638
|
@entity model extension extends entity {
|
|
@@ -14152,9 +14695,12 @@ within the time frame of their original request.
|
|
|
14152
14695
|
attestationLevel: attestationLevel | null;
|
|
14153
14696
|
displayName: string | null;
|
|
14154
14697
|
`model`: string | null;
|
|
14698
|
+
passkeyType: passkeyType | null;
|
|
14699
|
+
publicKeyCredential: webauthnPublicKeyCredential | null;
|
|
14155
14700
|
}
|
|
14156
14701
|
|
|
14157
14702
|
@entity model fido2AuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
14703
|
+
defaultPasskeyProfile: string | null;
|
|
14158
14704
|
|
|
14159
14705
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14160
14706
|
isAttestationEnforced: boolean | null;
|
|
@@ -14162,7 +14708,8 @@ within the time frame of their original request.
|
|
|
14162
14708
|
|
|
14163
14709
|
@graphDeprecated("PasskeyGlobalProperties")
|
|
14164
14710
|
keyRestrictions: fido2KeyRestrictions | null;
|
|
14165
|
-
@contains includeTargets:
|
|
14711
|
+
@contains includeTargets: passkeyAuthenticationMethodTarget[];
|
|
14712
|
+
@references passkeyProfiles: passkeyProfile[];
|
|
14166
14713
|
}
|
|
14167
14714
|
|
|
14168
14715
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -14207,6 +14754,7 @@ within the time frame of their original request.
|
|
|
14207
14754
|
@contains migrationJobs: sharePointMigrationJob[];
|
|
14208
14755
|
@contains permissions: permission[];
|
|
14209
14756
|
@contains recycleBin: recycleBin | null;
|
|
14757
|
+
@contains sharePointGroups: sharePointGroup[];
|
|
14210
14758
|
}
|
|
14211
14759
|
|
|
14212
14760
|
@entity model fileStorageContainerType extends entity {
|
|
@@ -14265,11 +14813,31 @@ within the time frame of their original request.
|
|
|
14265
14813
|
insightCreatedDateTime: offsetDateTime | null;
|
|
14266
14814
|
}
|
|
14267
14815
|
|
|
14816
|
+
@entity model granularDriveRestoreArtifact extends granularRestoreArtifactBase {
|
|
14817
|
+
directoryObjectId: string | null;
|
|
14818
|
+
}
|
|
14819
|
+
|
|
14268
14820
|
@entity model granularMailboxRestoreArtifact extends mailboxRestoreArtifact {
|
|
14269
14821
|
artifactCount: int32 | null;
|
|
14270
14822
|
searchResponseId: string;
|
|
14271
14823
|
}
|
|
14272
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
|
+
|
|
14273
14841
|
/**
|
|
14274
14842
|
* Represents a Microsoft Entra group.
|
|
14275
14843
|
*/
|
|
@@ -14288,6 +14856,7 @@ within the time frame of their original request.
|
|
|
14288
14856
|
hasMembersWithLicenseErrors: boolean | null;
|
|
14289
14857
|
hideFromAddressLists: boolean | null;
|
|
14290
14858
|
hideFromOutlookClients: boolean | null;
|
|
14859
|
+
infoCatalogs: string[];
|
|
14291
14860
|
isArchived: boolean | null;
|
|
14292
14861
|
isAssignableToRole: boolean | null;
|
|
14293
14862
|
isManagementRestricted: boolean | null;
|
|
@@ -14407,6 +14976,7 @@ within the time frame of their original request.
|
|
|
14407
14976
|
@contains identityProviders: identityProviderBase[];
|
|
14408
14977
|
@contains riskPrevention: riskPreventionContainer | null;
|
|
14409
14978
|
@contains userFlowAttributes: identityUserFlowAttribute[];
|
|
14979
|
+
@contains verifiedId: identityVerifiedIdRoot;
|
|
14410
14980
|
}
|
|
14411
14981
|
|
|
14412
14982
|
@entity model identityCustomUserFlowAttribute extends identityUserFlowAttribute {
|
|
@@ -14466,6 +15036,10 @@ within the time frame of their original request.
|
|
|
14466
15036
|
@references userAttribute: identityUserFlowAttribute | null;
|
|
14467
15037
|
}
|
|
14468
15038
|
|
|
15039
|
+
@entity model identityVerifiedIdRoot extends entity {
|
|
15040
|
+
@contains profiles: verifiedIdProfile[];
|
|
15041
|
+
}
|
|
15042
|
+
|
|
14469
15043
|
/**
|
|
14470
15044
|
* Imported windows autopilot devices.
|
|
14471
15045
|
*/
|
|
@@ -14532,6 +15106,11 @@ within the time frame of their original request.
|
|
|
14532
15106
|
@contains threatAssessmentRequests: threatAssessmentRequest[];
|
|
14533
15107
|
}
|
|
14534
15108
|
|
|
15109
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
15110
|
+
inheritableScopes: inheritableScopes | null;
|
|
15111
|
+
@computed @key resourceAppId: string;
|
|
15112
|
+
}
|
|
15113
|
+
|
|
14535
15114
|
@entity model insightsSettings extends entity {
|
|
14536
15115
|
disabledForGroup: string | null;
|
|
14537
15116
|
isEnabledInOrganization: boolean | null;
|
|
@@ -14607,7 +15186,7 @@ within the time frame of their original request.
|
|
|
14607
15186
|
*/
|
|
14608
15187
|
passcodeBlockSimple: boolean;
|
|
14609
15188
|
/**
|
|
14610
|
-
* 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
|
|
14611
15190
|
*/
|
|
14612
15191
|
passcodeExpirationDays: int32 | null;
|
|
14613
15192
|
/**
|
|
@@ -15744,71 +16323,71 @@ within the time frame of their original request.
|
|
|
15744
16323
|
*/
|
|
15745
16324
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
15746
16325
|
/**
|
|
15747
|
-
*
|
|
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.
|
|
15748
16327
|
*/
|
|
15749
16328
|
deviceThreatProtectionEnabled: boolean;
|
|
15750
16329
|
/**
|
|
15751
|
-
*
|
|
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.
|
|
15752
16331
|
*/
|
|
15753
16332
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
15754
16333
|
/**
|
|
15755
|
-
*
|
|
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.
|
|
15756
16335
|
*/
|
|
15757
16336
|
firewallBlockAllIncoming: boolean;
|
|
15758
16337
|
/**
|
|
15759
|
-
*
|
|
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.
|
|
15760
16339
|
*/
|
|
15761
16340
|
firewallEnabled: boolean;
|
|
15762
16341
|
/**
|
|
15763
|
-
*
|
|
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.
|
|
15764
16343
|
*/
|
|
15765
16344
|
firewallEnableStealthMode: boolean;
|
|
15766
16345
|
/**
|
|
15767
|
-
*
|
|
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.
|
|
15768
16347
|
*/
|
|
15769
16348
|
osMaximumVersion: string | null;
|
|
15770
16349
|
/**
|
|
15771
|
-
*
|
|
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.
|
|
15772
16351
|
*/
|
|
15773
16352
|
osMinimumVersion: string | null;
|
|
15774
16353
|
/**
|
|
15775
|
-
*
|
|
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.
|
|
15776
16355
|
*/
|
|
15777
16356
|
passwordBlockSimple: boolean;
|
|
15778
16357
|
/**
|
|
15779
|
-
*
|
|
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
|
|
15780
16359
|
*/
|
|
15781
16360
|
passwordExpirationDays: int32 | null;
|
|
15782
16361
|
/**
|
|
15783
|
-
*
|
|
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.
|
|
15784
16363
|
*/
|
|
15785
16364
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
15786
16365
|
/**
|
|
15787
|
-
*
|
|
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
|
|
15788
16367
|
*/
|
|
15789
16368
|
passwordMinimumLength: int32 | null;
|
|
15790
16369
|
/**
|
|
15791
|
-
*
|
|
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.
|
|
15792
16371
|
*/
|
|
15793
16372
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
15794
16373
|
/**
|
|
15795
|
-
*
|
|
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
|
|
15796
16375
|
*/
|
|
15797
16376
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
15798
16377
|
/**
|
|
15799
|
-
*
|
|
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.
|
|
15800
16379
|
*/
|
|
15801
16380
|
passwordRequired: boolean;
|
|
15802
16381
|
/**
|
|
15803
|
-
*
|
|
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.
|
|
15804
16383
|
*/
|
|
15805
16384
|
passwordRequiredType: requiredPasswordType;
|
|
15806
16385
|
/**
|
|
15807
|
-
*
|
|
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.
|
|
15808
16387
|
*/
|
|
15809
16388
|
storageRequireEncryption: boolean;
|
|
15810
16389
|
/**
|
|
15811
|
-
*
|
|
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.
|
|
15812
16391
|
*/
|
|
15813
16392
|
systemIntegrityProtectionEnabled: boolean;
|
|
15814
16393
|
}
|
|
@@ -15987,6 +16566,29 @@ within the time frame of their original request.
|
|
|
15987
16566
|
recipientEmail: string;
|
|
15988
16567
|
}
|
|
15989
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
|
+
|
|
15990
16592
|
@entity model mailboxProtectionRule extends protectionRuleBase {
|
|
15991
16593
|
mailboxExpression: string | null;
|
|
15992
16594
|
}
|
|
@@ -17498,9 +18100,10 @@ within the time frame of their original request.
|
|
|
17498
18100
|
@entity model muteParticipantOperation extends commsOperation {
|
|
17499
18101
|
}
|
|
17500
18102
|
|
|
17501
|
-
@entity model namedLocation extends
|
|
18103
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
17502
18104
|
@computed createdDateTime: offsetDateTime | null;
|
|
17503
18105
|
displayName: string;
|
|
18106
|
+
@computed @key id: string;
|
|
17504
18107
|
modifiedDateTime: offsetDateTime | null;
|
|
17505
18108
|
}
|
|
17506
18109
|
|
|
@@ -17598,6 +18201,10 @@ within the time frame of their original request.
|
|
|
17598
18201
|
handler: onAuthenticationMethodLoadStartHandler | null;
|
|
17599
18202
|
}
|
|
17600
18203
|
|
|
18204
|
+
@entity model oneDriveForBusinessBrowseSession extends browseSessionBase {
|
|
18205
|
+
directoryObjectId: string | null;
|
|
18206
|
+
}
|
|
18207
|
+
|
|
17601
18208
|
@entity model oneDriveForBusinessProtectionPolicy extends protectionPolicyBase {
|
|
17602
18209
|
@references driveInclusionRules: driveProtectionRule[];
|
|
17603
18210
|
@references driveProtectionUnits: driveProtectionUnit[];
|
|
@@ -17607,6 +18214,7 @@ within the time frame of their original request.
|
|
|
17607
18214
|
@entity model oneDriveForBusinessRestoreSession extends restoreSessionBase {
|
|
17608
18215
|
@contains driveRestoreArtifacts: driveRestoreArtifact[];
|
|
17609
18216
|
@contains driveRestoreArtifactsBulkAdditionRequests: driveRestoreArtifactsBulkAdditionRequest[];
|
|
18217
|
+
@contains granularDriveRestoreArtifacts: granularDriveRestoreArtifact[];
|
|
17610
18218
|
}
|
|
17611
18219
|
|
|
17612
18220
|
@entity model onEmailOtpSendListener extends authenticationEventListener {
|
|
@@ -17768,6 +18376,13 @@ within the time frame of their original request.
|
|
|
17768
18376
|
@entity model onOtpSendCustomExtension extends customAuthenticationExtension {
|
|
17769
18377
|
}
|
|
17770
18378
|
|
|
18379
|
+
@entity model onPasswordSubmitCustomExtension extends customAuthenticationExtension {
|
|
18380
|
+
}
|
|
18381
|
+
|
|
18382
|
+
@entity model onPasswordSubmitListener extends authenticationEventListener {
|
|
18383
|
+
handler: onPasswordSubmitHandler | null;
|
|
18384
|
+
}
|
|
18385
|
+
|
|
17771
18386
|
/**
|
|
17772
18387
|
* Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant.
|
|
17773
18388
|
*/
|
|
@@ -17811,6 +18426,13 @@ within the time frame of their original request.
|
|
|
17811
18426
|
handler: onUserCreateStartHandler | null;
|
|
17812
18427
|
}
|
|
17813
18428
|
|
|
18429
|
+
@entity model onVerifiedIdClaimValidationCustomExtension extends customAuthenticationExtension {
|
|
18430
|
+
}
|
|
18431
|
+
|
|
18432
|
+
@entity model onVerifiedIdClaimValidationListener extends authenticationEventListener {
|
|
18433
|
+
handler: onVerifiedIdClaimValidationHandler | null;
|
|
18434
|
+
}
|
|
18435
|
+
|
|
17814
18436
|
@entity model openShift extends changeTrackedEntity {
|
|
17815
18437
|
draftOpenShift: openShiftItem | null;
|
|
17816
18438
|
isStagedForDeletion: boolean | null;
|
|
@@ -17950,6 +18572,16 @@ within the time frame of their original request.
|
|
|
17950
18572
|
@contains masterCategories: outlookCategory[];
|
|
17951
18573
|
}
|
|
17952
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
|
+
|
|
17953
18585
|
@entity model participant extends entity {
|
|
17954
18586
|
info: participantInfo;
|
|
17955
18587
|
isInLobby: boolean;
|
|
@@ -17975,6 +18607,17 @@ within the time frame of their original request.
|
|
|
17975
18607
|
@contains billing: reference.`microsoft.graph.partners.billing`.billing | null;
|
|
17976
18608
|
}
|
|
17977
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
|
+
|
|
17978
18621
|
@entity model passwordAuthenticationMethod extends authenticationMethod {
|
|
17979
18622
|
password: string | null;
|
|
17980
18623
|
}
|
|
@@ -18007,6 +18650,8 @@ within the time frame of their original request.
|
|
|
18007
18650
|
@entity model peopleAdminSettings extends entity {
|
|
18008
18651
|
@contains itemInsights: insightsSettings | null;
|
|
18009
18652
|
@contains profileCardProperties: profileCardProperty[];
|
|
18653
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
18654
|
+
@contains profileSources: profileSource[];
|
|
18010
18655
|
@contains pronouns: pronounsSettings | null;
|
|
18011
18656
|
}
|
|
18012
18657
|
|
|
@@ -18198,6 +18843,11 @@ within the time frame of their original request.
|
|
|
18198
18843
|
displayName: string | null;
|
|
18199
18844
|
}
|
|
18200
18845
|
|
|
18846
|
+
@abstract
|
|
18847
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
18848
|
+
deletedDateTime: offsetDateTime | null;
|
|
18849
|
+
}
|
|
18850
|
+
|
|
18201
18851
|
@entity model policyRoot extends entity {
|
|
18202
18852
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
18203
18853
|
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
@@ -18214,6 +18864,7 @@ within the time frame of their original request.
|
|
|
18214
18864
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
18215
18865
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18216
18866
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
18867
|
+
@contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
|
|
18217
18868
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
18218
18869
|
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
18219
18870
|
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
@@ -18504,6 +19155,20 @@ within the time frame of their original request.
|
|
|
18504
19155
|
width: int32 | null;
|
|
18505
19156
|
}
|
|
18506
19157
|
|
|
19158
|
+
@entity model profilePropertySetting extends entity {
|
|
19159
|
+
displayName: string | null;
|
|
19160
|
+
name: string | null;
|
|
19161
|
+
prioritizedSourceUrls: string[];
|
|
19162
|
+
}
|
|
19163
|
+
|
|
19164
|
+
@entity model profileSource extends entity {
|
|
19165
|
+
displayName: string | null;
|
|
19166
|
+
kind: string | null;
|
|
19167
|
+
localizations: profileSourceLocalization[];
|
|
19168
|
+
sourceId: string | null;
|
|
19169
|
+
webUrl: string | null;
|
|
19170
|
+
}
|
|
19171
|
+
|
|
18507
19172
|
@entity model pronounsSettings extends entity {
|
|
18508
19173
|
isEnabledInOrganization: boolean;
|
|
18509
19174
|
}
|
|
@@ -18727,6 +19392,7 @@ within the time frame of their original request.
|
|
|
18727
19392
|
|
|
18728
19393
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
18729
19394
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
19395
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
18730
19396
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
18731
19397
|
}
|
|
18732
19398
|
|
|
@@ -19217,12 +19883,14 @@ within the time frame of their original request.
|
|
|
19217
19883
|
appOwnerOrganizationId: guid | null;
|
|
19218
19884
|
appRoleAssignmentRequired: boolean;
|
|
19219
19885
|
appRoles: appRole[];
|
|
19886
|
+
createdByAppId: string | null;
|
|
19220
19887
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
19221
19888
|
description: string | null;
|
|
19222
19889
|
disabledByMicrosoftStatus: string | null;
|
|
19223
19890
|
displayName: string | null;
|
|
19224
19891
|
homepage: string | null;
|
|
19225
19892
|
info: informationalUrl | null;
|
|
19893
|
+
isDisabled: boolean | null;
|
|
19226
19894
|
keyCredentials: keyCredential[];
|
|
19227
19895
|
loginUrl: string | null;
|
|
19228
19896
|
logoutUrl: string | null;
|
|
@@ -19354,6 +20022,7 @@ within the time frame of their original request.
|
|
|
19354
20022
|
@contains site: site | null;
|
|
19355
20023
|
}
|
|
19356
20024
|
|
|
20025
|
+
@graphDeprecated("Removal")
|
|
19357
20026
|
@entity model sharedInsight extends entity {
|
|
19358
20027
|
lastShared: sharingDetail | null;
|
|
19359
20028
|
resourceReference: resourceReference | null;
|
|
@@ -19426,6 +20095,21 @@ within the time frame of their original request.
|
|
|
19426
20095
|
@contains settings: sharepointSettings | null;
|
|
19427
20096
|
}
|
|
19428
20097
|
|
|
20098
|
+
@entity model sharePointBrowseSession extends browseSessionBase {
|
|
20099
|
+
siteId: string | null;
|
|
20100
|
+
}
|
|
20101
|
+
|
|
20102
|
+
@entity model sharePointGroup extends entity {
|
|
20103
|
+
description: string | null;
|
|
20104
|
+
principalId: string | null;
|
|
20105
|
+
title: string;
|
|
20106
|
+
@contains members: sharePointGroupMember[];
|
|
20107
|
+
}
|
|
20108
|
+
|
|
20109
|
+
@entity model sharePointGroupMember extends entity {
|
|
20110
|
+
identity: sharePointIdentitySet | null;
|
|
20111
|
+
}
|
|
20112
|
+
|
|
19429
20113
|
@entity model sharePointMigrationEvent extends entity {
|
|
19430
20114
|
correlationId: string;
|
|
19431
20115
|
eventDateTime: offsetDateTime;
|
|
@@ -19500,6 +20184,7 @@ within the time frame of their original request.
|
|
|
19500
20184
|
}
|
|
19501
20185
|
|
|
19502
20186
|
@entity model sharePointRestoreSession extends restoreSessionBase {
|
|
20187
|
+
@contains granularSiteRestoreArtifacts: granularSiteRestoreArtifact[];
|
|
19503
20188
|
@contains siteRestoreArtifacts: siteRestoreArtifact[];
|
|
19504
20189
|
@contains siteRestoreArtifactsBulkAdditionRequests: siteRestoreArtifactsBulkAdditionRequest[];
|
|
19505
20190
|
}
|
|
@@ -19950,6 +20635,10 @@ within the time frame of their original request.
|
|
|
19950
20635
|
displayName: string | null;
|
|
19951
20636
|
}
|
|
19952
20637
|
|
|
20638
|
+
@entity model targetedChatMessage extends chatMessage {
|
|
20639
|
+
recipient: identity | null;
|
|
20640
|
+
}
|
|
20641
|
+
|
|
19953
20642
|
/**
|
|
19954
20643
|
* Configuration used to deliver a set of custom settings as-is to all users in the targeted security group
|
|
19955
20644
|
*/
|
|
@@ -20606,6 +21295,7 @@ within the time frame of their original request.
|
|
|
20606
21295
|
value: usageRights;
|
|
20607
21296
|
}
|
|
20608
21297
|
|
|
21298
|
+
@graphDeprecated("Removal")
|
|
20609
21299
|
@entity model usedInsight extends entity {
|
|
20610
21300
|
lastUsed: usageDetails | null;
|
|
20611
21301
|
resourceReference: resourceReference | null;
|
|
@@ -20650,6 +21340,7 @@ within the time frame of their original request.
|
|
|
20650
21340
|
givenName: string | null;
|
|
20651
21341
|
hireDate: offsetDateTime;
|
|
20652
21342
|
identities: objectIdentity[] | null;
|
|
21343
|
+
identityParentId: string | null;
|
|
20653
21344
|
imAddresses: string[] | null;
|
|
20654
21345
|
interests: string[] | null;
|
|
20655
21346
|
isManagementRestricted: boolean | null;
|
|
@@ -21812,6 +22503,7 @@ within the time frame of their original request.
|
|
|
21812
22503
|
@entity model userSettings extends entity {
|
|
21813
22504
|
contributionToContentDiscoveryAsOrganizationDisabled: boolean;
|
|
21814
22505
|
contributionToContentDiscoveryDisabled: boolean;
|
|
22506
|
+
@contains exchange: exchangeSettings | null;
|
|
21815
22507
|
@contains itemInsights: userInsightsSettings | null;
|
|
21816
22508
|
@contains shiftPreferences: shiftPreferences | null;
|
|
21817
22509
|
@contains storage: userStorage | null;
|
|
@@ -21838,6 +22530,26 @@ within the time frame of their original request.
|
|
|
21838
22530
|
@contains installedApps: userScopeTeamsAppInstallation[];
|
|
21839
22531
|
}
|
|
21840
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
|
+
|
|
21841
22553
|
@entity model verticalSection extends entity {
|
|
21842
22554
|
emphasis: sectionEmphasisType | null;
|
|
21843
22555
|
@contains webparts: webPart[];
|
|
@@ -23619,7 +24331,7 @@ within the time frame of their original request.
|
|
|
23619
24331
|
*/
|
|
23620
24332
|
preprovisioningAllowed: boolean | null;
|
|
23621
24333
|
/**
|
|
23622
|
-
* List of role scope tags for the deployment profile.
|
|
24334
|
+
* List of role scope tags for the deployment profile.
|
|
23623
24335
|
*/
|
|
23624
24336
|
roleScopeTagIds: string[] | null;
|
|
23625
24337
|
/**
|
|
@@ -24241,6 +24953,10 @@ within the time frame of their original request.
|
|
|
24241
24953
|
* Current anti malware version
|
|
24242
24954
|
*/
|
|
24243
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;
|
|
24244
24960
|
/**
|
|
24245
24961
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
24246
24962
|
*/
|
|
@@ -24921,8 +25637,10 @@ within the time frame of their original request.
|
|
|
24921
25637
|
|
|
24922
25638
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
24923
25639
|
authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
|
|
25640
|
+
certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
|
|
24924
25641
|
certificateUserBindings: x509CertificateUserBinding[] | null;
|
|
24925
25642
|
crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
|
|
25643
|
+
issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
|
|
24926
25644
|
@contains includeTargets: authenticationMethodTarget[];
|
|
24927
25645
|
}
|
|
24928
25646
|
|
|
@@ -24935,6 +25653,8 @@ within the time frame of their original request.
|
|
|
24935
25653
|
target: 1,
|
|
24936
25654
|
createdBy: 2,
|
|
24937
25655
|
unknownFutureValue: 99,
|
|
25656
|
+
targetManager: 100,
|
|
25657
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
24938
25658
|
}
|
|
24939
25659
|
|
|
24940
25660
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -24942,6 +25662,10 @@ within the time frame of their original request.
|
|
|
24942
25662
|
createdBy: 2,
|
|
24943
25663
|
approver: 3,
|
|
24944
25664
|
unknownFutureValue: 99,
|
|
25665
|
+
targetOrRequestor: 100,
|
|
25666
|
+
targetManager: 101,
|
|
25667
|
+
requestForOthers: 102,
|
|
25668
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
24945
25669
|
}
|
|
24946
25670
|
|
|
24947
25671
|
enum accessPackageAssignmentState {
|
|
@@ -25014,6 +25738,14 @@ within the time frame of their original request.
|
|
|
25014
25738
|
systemRemove: 9,
|
|
25015
25739
|
onBehalfAdd: 10,
|
|
25016
25740
|
unknownFutureValue: 11,
|
|
25741
|
+
approverRemove: 12,
|
|
25742
|
+
}
|
|
25743
|
+
|
|
25744
|
+
enum accessPackageSubjectLifecycle {
|
|
25745
|
+
notDefined: 0,
|
|
25746
|
+
notGoverned: 1,
|
|
25747
|
+
governed: 2,
|
|
25748
|
+
unknownFutureValue: 3,
|
|
25017
25749
|
}
|
|
25018
25750
|
|
|
25019
25751
|
enum accessPackageSubjectType {
|
|
@@ -25341,6 +26073,17 @@ within the time frame of their original request.
|
|
|
25341
26073
|
unknownFutureValue: 99,
|
|
25342
26074
|
}
|
|
25343
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
|
+
|
|
25344
26087
|
/**
|
|
25345
26088
|
* Possible values for applicationGuardBlockClipboardSharingType
|
|
25346
26089
|
*/
|
|
@@ -25570,6 +26313,12 @@ within the time frame of their original request.
|
|
|
25570
26313
|
resource: 2,
|
|
25571
26314
|
}
|
|
25572
26315
|
|
|
26316
|
+
enum attestationEnforcement {
|
|
26317
|
+
disabled: 0,
|
|
26318
|
+
registrationOnly: 1,
|
|
26319
|
+
unknownFutureValue: 2,
|
|
26320
|
+
}
|
|
26321
|
+
|
|
25573
26322
|
enum attestationLevel {
|
|
25574
26323
|
attested: 0,
|
|
25575
26324
|
notAttested: 1,
|
|
@@ -25839,6 +26588,13 @@ within the time frame of their original request.
|
|
|
25839
26588
|
qrCodePin: 14,
|
|
25840
26589
|
}
|
|
25841
26590
|
|
|
26591
|
+
enum baselineParameterType {
|
|
26592
|
+
`string`: 0,
|
|
26593
|
+
`integer`: 1,
|
|
26594
|
+
`boolean`: 2,
|
|
26595
|
+
unknownFutureValue: 3,
|
|
26596
|
+
}
|
|
26597
|
+
|
|
25842
26598
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
25843
26599
|
enum binaryOperator {
|
|
25844
26600
|
or: 0,
|
|
@@ -25972,6 +26728,31 @@ within the time frame of their original request.
|
|
|
25972
26728
|
unknownFutureValue: 3,
|
|
25973
26729
|
}
|
|
25974
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
|
+
|
|
25975
26756
|
enum browserSharedCookieSourceEnvironment {
|
|
25976
26757
|
/**
|
|
25977
26758
|
* Share session cookies from Microsoft Edge to Internet Explorer.
|
|
@@ -26120,6 +26901,13 @@ within the time frame of their original request.
|
|
|
26120
26901
|
unknownFutureValue: 5,
|
|
26121
26902
|
}
|
|
26122
26903
|
|
|
26904
|
+
enum browseSessionStatus {
|
|
26905
|
+
creating: 0,
|
|
26906
|
+
created: 1,
|
|
26907
|
+
failed: 2,
|
|
26908
|
+
unknownFutureValue: 3,
|
|
26909
|
+
}
|
|
26910
|
+
|
|
26123
26911
|
enum bucketAggregationSortProperty {
|
|
26124
26912
|
count: 0,
|
|
26125
26913
|
keyAsString: 1,
|
|
@@ -26263,6 +27051,12 @@ within the time frame of their original request.
|
|
|
26263
27051
|
deleted: 2,
|
|
26264
27052
|
}
|
|
26265
27053
|
|
|
27054
|
+
enum channelLayoutType {
|
|
27055
|
+
post: 0,
|
|
27056
|
+
chat: 1,
|
|
27057
|
+
unknownFutureValue: 2,
|
|
27058
|
+
}
|
|
27059
|
+
|
|
26266
27060
|
enum channelMembershipType {
|
|
26267
27061
|
standard: 0,
|
|
26268
27062
|
private: 1,
|
|
@@ -26334,6 +27128,11 @@ within the time frame of their original request.
|
|
|
26334
27128
|
unknownFutureValue: 4,
|
|
26335
27129
|
}
|
|
26336
27130
|
|
|
27131
|
+
enum claimBindingSource {
|
|
27132
|
+
directory: 0,
|
|
27133
|
+
unknownFutureValue: 1,
|
|
27134
|
+
}
|
|
27135
|
+
|
|
26337
27136
|
enum clickSource {
|
|
26338
27137
|
`unknown`: 0,
|
|
26339
27138
|
qrCode: 1,
|
|
@@ -26698,6 +27497,7 @@ within the time frame of their original request.
|
|
|
26698
27497
|
compliantApplication: 5,
|
|
26699
27498
|
passwordChange: 6,
|
|
26700
27499
|
unknownFutureValue: 7,
|
|
27500
|
+
riskRemediation: 8,
|
|
26701
27501
|
}
|
|
26702
27502
|
|
|
26703
27503
|
@graphFlags
|
|
@@ -26820,6 +27620,17 @@ within the time frame of their original request.
|
|
|
26820
27620
|
unknownFutureValue: 4,
|
|
26821
27621
|
}
|
|
26822
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
|
+
|
|
26823
27634
|
enum customExtensionCalloutInstanceStatus {
|
|
26824
27635
|
calloutSent: 1,
|
|
26825
27636
|
callbackReceived: 2,
|
|
@@ -26829,6 +27640,11 @@ within the time frame of their original request.
|
|
|
26829
27640
|
unknownFutureValue: 6,
|
|
26830
27641
|
}
|
|
26831
27642
|
|
|
27643
|
+
enum customSecurityAttributeComparisonOperator {
|
|
27644
|
+
equals: 1,
|
|
27645
|
+
unknownFutureValue: 2,
|
|
27646
|
+
}
|
|
27647
|
+
|
|
26832
27648
|
enum dataPolicyOperationStatus {
|
|
26833
27649
|
notStarted: 0,
|
|
26834
27650
|
running: 1,
|
|
@@ -26837,6 +27653,26 @@ within the time frame of their original request.
|
|
|
26837
27653
|
unknownFutureValue: 4,
|
|
26838
27654
|
}
|
|
26839
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
|
+
|
|
26840
27676
|
enum dataSubjectType {
|
|
26841
27677
|
customer: 0,
|
|
26842
27678
|
currentEmployee: 1,
|
|
@@ -27775,6 +28611,12 @@ within the time frame of their original request.
|
|
|
27775
28611
|
restrictWebGrounding: 12,
|
|
27776
28612
|
}
|
|
27777
28613
|
|
|
28614
|
+
enum driftStatus {
|
|
28615
|
+
active: 0,
|
|
28616
|
+
fixed: 1,
|
|
28617
|
+
unknownFutureValue: 2,
|
|
28618
|
+
}
|
|
28619
|
+
|
|
27778
28620
|
enum driveItemSourceApplication {
|
|
27779
28621
|
teams: 0,
|
|
27780
28622
|
yammer: 1,
|
|
@@ -28318,6 +29160,16 @@ within the time frame of their original request.
|
|
|
28318
29160
|
unknownFutureValue: 3,
|
|
28319
29161
|
}
|
|
28320
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
|
+
|
|
28321
29173
|
enum fido2RestrictionEnforcementType {
|
|
28322
29174
|
allow: 0,
|
|
28323
29175
|
block: 1,
|
|
@@ -28488,6 +29340,13 @@ within the time frame of their original request.
|
|
|
28488
29340
|
unknownFutureValue: 2,
|
|
28489
29341
|
}
|
|
28490
29342
|
|
|
29343
|
+
enum holdType {
|
|
29344
|
+
none: 0,
|
|
29345
|
+
private: 1,
|
|
29346
|
+
public: 2,
|
|
29347
|
+
unknownFutureValue: 3,
|
|
29348
|
+
}
|
|
29349
|
+
|
|
28491
29350
|
enum horizontalSectionLayoutType {
|
|
28492
29351
|
none: 0,
|
|
28493
29352
|
oneColumn: 1,
|
|
@@ -29183,6 +30042,12 @@ within the time frame of their original request.
|
|
|
29183
30042
|
unknownFutureValue: 12,
|
|
29184
30043
|
}
|
|
29185
30044
|
|
|
30045
|
+
enum matchConfidenceLevel {
|
|
30046
|
+
exact: 0,
|
|
30047
|
+
relaxed: 1,
|
|
30048
|
+
unknownFutureValue: 2,
|
|
30049
|
+
}
|
|
30050
|
+
|
|
29186
30051
|
enum maxWorkLocationDetails {
|
|
29187
30052
|
`unknown`: 0,
|
|
29188
30053
|
none: 1,
|
|
@@ -29354,6 +30219,12 @@ within the time frame of their original request.
|
|
|
29354
30219
|
online: 1,
|
|
29355
30220
|
}
|
|
29356
30221
|
|
|
30222
|
+
enum migrationMode {
|
|
30223
|
+
inProgress: 0,
|
|
30224
|
+
completed: 1,
|
|
30225
|
+
unknownFutureValue: 2,
|
|
30226
|
+
}
|
|
30227
|
+
|
|
29357
30228
|
enum migrationStatus {
|
|
29358
30229
|
ready: 0,
|
|
29359
30230
|
needsReview: 1,
|
|
@@ -29525,6 +30396,24 @@ within the time frame of their original request.
|
|
|
29525
30396
|
unknownFutureValue: 5,
|
|
29526
30397
|
}
|
|
29527
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
|
+
|
|
29528
30417
|
enum multiFactorAuthConfiguration {
|
|
29529
30418
|
notRequired: 0,
|
|
29530
30419
|
required: 1,
|
|
@@ -29619,6 +30508,13 @@ within the time frame of their original request.
|
|
|
29619
30508
|
unknownFutureValue: 32,
|
|
29620
30509
|
}
|
|
29621
30510
|
|
|
30511
|
+
enum notifyMembers {
|
|
30512
|
+
all: 0,
|
|
30513
|
+
allowSelected: 1,
|
|
30514
|
+
blockSelected: 2,
|
|
30515
|
+
unknownFutureValue: 3,
|
|
30516
|
+
}
|
|
30517
|
+
|
|
29622
30518
|
enum oAuthAppScope {
|
|
29623
30519
|
`unknown`: 0,
|
|
29624
30520
|
readCalendar: 1,
|
|
@@ -29839,6 +30735,30 @@ within the time frame of their original request.
|
|
|
29839
30735
|
unknownFutureValue: 7,
|
|
29840
30736
|
}
|
|
29841
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
|
+
|
|
29842
30762
|
enum payloadBrand {
|
|
29843
30763
|
`unknown`: 0,
|
|
29844
30764
|
other: 1,
|
|
@@ -29939,6 +30859,14 @@ within the time frame of their original request.
|
|
|
29939
30859
|
unknownFutureValue: 31,
|
|
29940
30860
|
}
|
|
29941
30861
|
|
|
30862
|
+
enum pciVersion {
|
|
30863
|
+
none: 0,
|
|
30864
|
+
v3_2_1: 1,
|
|
30865
|
+
v4: 2,
|
|
30866
|
+
notSupported: 3,
|
|
30867
|
+
unknownFutureValue: 4,
|
|
30868
|
+
}
|
|
30869
|
+
|
|
29942
30870
|
enum permissionClassificationType {
|
|
29943
30871
|
low: 1,
|
|
29944
30872
|
medium: 2,
|
|
@@ -32104,6 +33032,18 @@ within the time frame of their original request.
|
|
|
32104
33032
|
notResponded: 5,
|
|
32105
33033
|
}
|
|
32106
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
|
+
|
|
32107
33047
|
enum restorableArtifact {
|
|
32108
33048
|
message: 0,
|
|
32109
33049
|
unknownFutureValue: 1,
|
|
@@ -32121,6 +33061,7 @@ within the time frame of their original request.
|
|
|
32121
33061
|
standard: 0,
|
|
32122
33062
|
bulk: 1,
|
|
32123
33063
|
unknownFutureValue: 2,
|
|
33064
|
+
granular: 3,
|
|
32124
33065
|
}
|
|
32125
33066
|
|
|
32126
33067
|
enum restorePointPreference {
|
|
@@ -32189,6 +33130,7 @@ within the time frame of their original request.
|
|
|
32189
33130
|
userChangedPasswordOnPremises: 15,
|
|
32190
33131
|
adminDismissedRiskForSignIn: 16,
|
|
32191
33132
|
adminConfirmedAccountSafe: 17,
|
|
33133
|
+
microsoftRevokedSessions: 18,
|
|
32192
33134
|
}
|
|
32193
33135
|
|
|
32194
33136
|
enum riskDetectionTimingType {
|
|
@@ -32346,6 +33288,29 @@ within the time frame of their original request.
|
|
|
32346
33288
|
darkPink: 10,
|
|
32347
33289
|
darkYellow: 11,
|
|
32348
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,
|
|
32349
33314
|
}
|
|
32350
33315
|
|
|
32351
33316
|
enum scheduleRequestActions {
|
|
@@ -32361,6 +33326,14 @@ within the time frame of their original request.
|
|
|
32361
33326
|
unknownFutureValue: 10,
|
|
32362
33327
|
}
|
|
32363
33328
|
|
|
33329
|
+
enum scopeCollectionKind {
|
|
33330
|
+
allAllowed: 0,
|
|
33331
|
+
enumerated: 1,
|
|
33332
|
+
none: 2,
|
|
33333
|
+
scopeKindNotSet: 3,
|
|
33334
|
+
unknownFutureValue: 4,
|
|
33335
|
+
}
|
|
33336
|
+
|
|
32364
33337
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
32365
33338
|
enum scopeOperatorMultiValuedComparisonType {
|
|
32366
33339
|
All: 0,
|
|
@@ -32729,11 +33702,31 @@ within the time frame of their original request.
|
|
|
32729
33702
|
high: 5,
|
|
32730
33703
|
}
|
|
32731
33704
|
|
|
33705
|
+
enum snapshotJobStatus {
|
|
33706
|
+
notStarted: 0,
|
|
33707
|
+
running: 1,
|
|
33708
|
+
succeeded: 2,
|
|
33709
|
+
failed: 3,
|
|
33710
|
+
partiallySuccessful: 4,
|
|
33711
|
+
unknownFutureValue: 5,
|
|
33712
|
+
}
|
|
33713
|
+
|
|
32732
33714
|
enum socialIdentitySourceType {
|
|
32733
33715
|
facebook: 1,
|
|
32734
33716
|
unknownFutureValue: 2,
|
|
32735
33717
|
}
|
|
32736
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
|
+
|
|
32737
33730
|
enum stagedFeatureName {
|
|
32738
33731
|
passthroughAuthentication: 0,
|
|
32739
33732
|
seamlessSso: 1,
|
|
@@ -33466,6 +34459,20 @@ within the time frame of their original request.
|
|
|
33466
34459
|
unknownFutureValue: 7,
|
|
33467
34460
|
}
|
|
33468
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
|
+
|
|
33469
34476
|
enum userPurpose {
|
|
33470
34477
|
user: 1,
|
|
33471
34478
|
linked: 2,
|
|
@@ -33495,6 +34502,19 @@ within the time frame of their original request.
|
|
|
33495
34502
|
unknownFutureValue: 2,
|
|
33496
34503
|
}
|
|
33497
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
|
+
|
|
33498
34518
|
enum virtualAppointmentMessageType {
|
|
33499
34519
|
confirmation: 0,
|
|
33500
34520
|
reschedule: 1,
|
|
@@ -35072,6 +36092,12 @@ within the time frame of their original request.
|
|
|
35072
36092
|
unknownFutureValue: 2,
|
|
35073
36093
|
}
|
|
35074
36094
|
|
|
36095
|
+
enum x509CertificateIssuerHintsState {
|
|
36096
|
+
disabled: 0,
|
|
36097
|
+
enabled: 1,
|
|
36098
|
+
unknownFutureValue: 2,
|
|
36099
|
+
}
|
|
36100
|
+
|
|
35075
36101
|
enum x509CertificateRuleType {
|
|
35076
36102
|
issuerSubject: 0,
|
|
35077
36103
|
policyOID: 1,
|
|
@@ -35550,12 +36576,23 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35550
36576
|
urlMatchInfo: urlMatchInfo | null;
|
|
35551
36577
|
}
|
|
35552
36578
|
|
|
36579
|
+
@complex model principal {
|
|
36580
|
+
email: string | null;
|
|
36581
|
+
entraDisplayName: string | null;
|
|
36582
|
+
entraId: string | null;
|
|
36583
|
+
externalId: string | null;
|
|
36584
|
+
externalName: string | null;
|
|
36585
|
+
tenantId: string | null;
|
|
36586
|
+
upn: string | null;
|
|
36587
|
+
}
|
|
36588
|
+
|
|
35553
36589
|
@open
|
|
35554
36590
|
@complex model properties {
|
|
35555
36591
|
}
|
|
35556
36592
|
|
|
35557
36593
|
@complex model `property` {
|
|
35558
36594
|
aliases: string[] | null;
|
|
36595
|
+
description: string | null;
|
|
35559
36596
|
isQueryable: boolean | null;
|
|
35560
36597
|
isRefinable: boolean | null;
|
|
35561
36598
|
isRetrievable: boolean | null;
|
|
@@ -35609,6 +36646,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35609
36646
|
activitySettings: activitySettings | null;
|
|
35610
36647
|
configuration: configuration | null;
|
|
35611
36648
|
connectorId: string | null;
|
|
36649
|
+
contentCategory: contentCategory;
|
|
35612
36650
|
description: string | null;
|
|
35613
36651
|
name: string | null;
|
|
35614
36652
|
searchSettings: searchSettings | null;
|
|
@@ -35672,6 +36710,24 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35672
36710
|
unknownFutureValue: 5,
|
|
35673
36711
|
}
|
|
35674
36712
|
|
|
36713
|
+
enum contentCategory {
|
|
36714
|
+
uncategorized: 0,
|
|
36715
|
+
knowledgeBase: 1,
|
|
36716
|
+
wikis: 2,
|
|
36717
|
+
fileRepository: 3,
|
|
36718
|
+
qna: 4,
|
|
36719
|
+
crm: 5,
|
|
36720
|
+
dashboard: 6,
|
|
36721
|
+
people: 7,
|
|
36722
|
+
media: 8,
|
|
36723
|
+
email: 9,
|
|
36724
|
+
messaging: 10,
|
|
36725
|
+
meetingTranscripts: 11,
|
|
36726
|
+
taskManagement: 12,
|
|
36727
|
+
learningManagement: 13,
|
|
36728
|
+
unknownFutureValue: 14,
|
|
36729
|
+
}
|
|
36730
|
+
|
|
35675
36731
|
enum externalActivityType {
|
|
35676
36732
|
viewed: 1,
|
|
35677
36733
|
modified: 2,
|
|
@@ -35704,7 +36760,50 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35704
36760
|
fileName: 7,
|
|
35705
36761
|
fileExtension: 8,
|
|
35706
36762
|
unknownFutureValue: 12,
|
|
36763
|
+
containerName: 13,
|
|
36764
|
+
containerUrl: 14,
|
|
35707
36765
|
iconUrl: 15,
|
|
36766
|
+
assignedToPeople: 16,
|
|
36767
|
+
closedBy: 17,
|
|
36768
|
+
closedDate: 18,
|
|
36769
|
+
priority: 19,
|
|
36770
|
+
sprintName: 20,
|
|
36771
|
+
tags: 21,
|
|
36772
|
+
severity: 22,
|
|
36773
|
+
state: 23,
|
|
36774
|
+
dueDate: 24,
|
|
36775
|
+
itemParentId: 25,
|
|
36776
|
+
itemPath: 26,
|
|
36777
|
+
itemType: 27,
|
|
36778
|
+
numberOfReactions: 28,
|
|
36779
|
+
parentUrl: 29,
|
|
36780
|
+
priorityNormalized: 30,
|
|
36781
|
+
reportedBy: 31,
|
|
36782
|
+
secondaryId: 32,
|
|
36783
|
+
personEmails: 33,
|
|
36784
|
+
personAddresses: 34,
|
|
36785
|
+
personAnniversaries: 35,
|
|
36786
|
+
personName: 36,
|
|
36787
|
+
personNote: 37,
|
|
36788
|
+
personPhones: 38,
|
|
36789
|
+
personCurrentPosition: 39,
|
|
36790
|
+
personWebAccounts: 40,
|
|
36791
|
+
personWebSite: 41,
|
|
36792
|
+
personSkills: 42,
|
|
36793
|
+
personProjects: 43,
|
|
36794
|
+
personAccount: 44,
|
|
36795
|
+
personAwards: 45,
|
|
36796
|
+
personCertifications: 46,
|
|
36797
|
+
personAssistants: 47,
|
|
36798
|
+
personColleagues: 48,
|
|
36799
|
+
personManager: 49,
|
|
36800
|
+
personAlternateContacts: 50,
|
|
36801
|
+
personEmergencyContacts: 51,
|
|
36802
|
+
personEducationalActivities: 52,
|
|
36803
|
+
personInterests: 53,
|
|
36804
|
+
personLanguages: 54,
|
|
36805
|
+
personPublications: 55,
|
|
36806
|
+
personPatents: 56,
|
|
35708
36807
|
}
|
|
35709
36808
|
|
|
35710
36809
|
enum propertyType {
|
|
@@ -35718,6 +36817,8 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
35718
36817
|
doubleCollection: 7,
|
|
35719
36818
|
dateTimeCollection: 8,
|
|
35720
36819
|
unknownFutureValue: 9,
|
|
36820
|
+
principal: 10,
|
|
36821
|
+
principalCollection: 11,
|
|
35721
36822
|
}
|
|
35722
36823
|
|
|
35723
36824
|
enum ruleOperation {
|
|
@@ -35974,6 +37075,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
35974
37075
|
completedDateTime: offsetDateTime | null;
|
|
35975
37076
|
@computed createdDateTime: offsetDateTime;
|
|
35976
37077
|
failureReason: string | null;
|
|
37078
|
+
processingInfo: string | null;
|
|
35977
37079
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
35978
37080
|
startedDateTime: offsetDateTime | null;
|
|
35979
37081
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -36277,6 +37379,7 @@ namespace reference.`microsoft.graph.search` {
|
|
|
36277
37379
|
}
|
|
36278
37380
|
|
|
36279
37381
|
}
|
|
37382
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
36280
37383
|
@publicNamespace("microsoft.graph.security")
|
|
36281
37384
|
namespace reference.`microsoft.graph.security` {
|
|
36282
37385
|
@complex model account {
|
|
@@ -36788,6 +37891,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
36788
37891
|
processes: processEvidence[] | null;
|
|
36789
37892
|
}
|
|
36790
37893
|
|
|
37894
|
+
@complex model mergeResponse {
|
|
37895
|
+
targetIncidentId: string;
|
|
37896
|
+
}
|
|
37897
|
+
|
|
36791
37898
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
36792
37899
|
destinationAddress: ipEvidence | null;
|
|
36793
37900
|
destinationPort: int32 | null;
|
|
@@ -37003,6 +38110,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37003
38110
|
displayName: string | null;
|
|
37004
38111
|
domainName: string | null;
|
|
37005
38112
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
38113
|
+
tenantId: string | null;
|
|
37006
38114
|
userPrincipalName: string | null;
|
|
37007
38115
|
userSid: string | null;
|
|
37008
38116
|
}
|
|
@@ -37040,6 +38148,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37040
38148
|
alertPolicyId: string | null;
|
|
37041
38149
|
alertWebUrl: string | null;
|
|
37042
38150
|
assignedTo: string | null;
|
|
38151
|
+
categories: string[] | null;
|
|
38152
|
+
|
|
38153
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
37043
38154
|
category: string | null;
|
|
37044
38155
|
classification: alertClassification | null;
|
|
37045
38156
|
comments: alertComment[] | null;
|
|
@@ -37093,6 +38204,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37093
38204
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
37094
38205
|
}
|
|
37095
38206
|
|
|
38207
|
+
@entity model autoAuditingConfiguration extends reference.`microsoft.graph`.entity {
|
|
38208
|
+
isAutomatic: boolean;
|
|
38209
|
+
}
|
|
38210
|
+
|
|
37096
38211
|
@abstract
|
|
37097
38212
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
37098
38213
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -37427,6 +38542,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37427
38542
|
@contains sensorCandidateActivationConfiguration: sensorCandidateActivationConfiguration;
|
|
37428
38543
|
@contains sensorCandidates: sensorCandidate[];
|
|
37429
38544
|
@contains sensors: sensor[];
|
|
38545
|
+
@contains settings: settingsContainer | null;
|
|
37430
38546
|
}
|
|
37431
38547
|
|
|
37432
38548
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
@@ -37586,6 +38702,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37586
38702
|
activationMode: sensorCandidateActivationMode;
|
|
37587
38703
|
}
|
|
37588
38704
|
|
|
38705
|
+
@entity model settingsContainer extends reference.`microsoft.graph`.entity {
|
|
38706
|
+
@contains autoAuditingConfiguration: autoAuditingConfiguration | null;
|
|
38707
|
+
}
|
|
38708
|
+
|
|
37589
38709
|
@entity model siteSource extends dataSource {
|
|
37590
38710
|
@references site: reference.`microsoft.graph`.site;
|
|
37591
38711
|
}
|
|
@@ -37908,6 +39028,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37908
39028
|
unknownFutureValue: 3,
|
|
37909
39029
|
}
|
|
37910
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
|
+
|
|
37911
39053
|
enum dataSourceContainerStatus {
|
|
37912
39054
|
active: 1,
|
|
37913
39055
|
released: 2,
|
|
@@ -38488,6 +39630,32 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
38488
39630
|
policyId: string;
|
|
38489
39631
|
}
|
|
38490
39632
|
|
|
39633
|
+
@complex model telephoneNumberLongRunningOperationDetails {
|
|
39634
|
+
resourceLocation: string | null;
|
|
39635
|
+
status: reference.`microsoft.graph`.longRunningOperationStatus | null;
|
|
39636
|
+
statusDetail: string | null;
|
|
39637
|
+
}
|
|
39638
|
+
|
|
39639
|
+
@entity model numberAssignment extends reference.`microsoft.graph`.entity {
|
|
39640
|
+
activationState: activationState;
|
|
39641
|
+
assignmentCategory: assignmentCategory | null;
|
|
39642
|
+
assignmentStatus: assignmentStatus | null;
|
|
39643
|
+
assignmentTargetId: string | null;
|
|
39644
|
+
capabilities: numberCapability[];
|
|
39645
|
+
city: string | null;
|
|
39646
|
+
civicAddressId: string | null;
|
|
39647
|
+
isoCountryCode: string | null;
|
|
39648
|
+
locationId: string | null;
|
|
39649
|
+
networkSiteId: string | null;
|
|
39650
|
+
numberSource: numberSource | null;
|
|
39651
|
+
numberType: numberType;
|
|
39652
|
+
operatorId: string;
|
|
39653
|
+
portInStatus: portInStatus | null;
|
|
39654
|
+
reverseNumberLookupOptions: reverseNumberLookupOption[];
|
|
39655
|
+
supportedCustomerActions: customerAction[];
|
|
39656
|
+
telephoneNumber: string;
|
|
39657
|
+
}
|
|
39658
|
+
|
|
38491
39659
|
@entity model policyIdentifierDetail extends reference.`microsoft.graph`.entity {
|
|
38492
39660
|
name: string;
|
|
38493
39661
|
policyId: string;
|
|
@@ -38495,6 +39663,7 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
38495
39663
|
|
|
38496
39664
|
@entity model teamsAdminRoot extends reference.`microsoft.graph`.entity {
|
|
38497
39665
|
@contains policy: teamsPolicyAssignment | null;
|
|
39666
|
+
@contains telephoneNumberManagement: telephoneNumberManagementRoot | null;
|
|
38498
39667
|
@contains userConfigurations: teamsUserConfiguration[];
|
|
38499
39668
|
}
|
|
38500
39669
|
|
|
@@ -38521,6 +39690,17 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
38521
39690
|
@references user: reference.`microsoft.graph`.user | null;
|
|
38522
39691
|
}
|
|
38523
39692
|
|
|
39693
|
+
@entity model telephoneNumberLongRunningOperation extends reference.`microsoft.graph`.entity {
|
|
39694
|
+
@computed createdDateTime: string;
|
|
39695
|
+
numbers: telephoneNumberLongRunningOperationDetails[] | null;
|
|
39696
|
+
status: reference.`microsoft.graph`.longRunningOperationStatus;
|
|
39697
|
+
}
|
|
39698
|
+
|
|
39699
|
+
@entity model telephoneNumberManagementRoot extends reference.`microsoft.graph`.entity {
|
|
39700
|
+
@contains numberAssignments: numberAssignment[];
|
|
39701
|
+
@contains operations: telephoneNumberLongRunningOperation[];
|
|
39702
|
+
}
|
|
39703
|
+
|
|
38524
39704
|
enum accountType {
|
|
38525
39705
|
user: 0,
|
|
38526
39706
|
resourceAccount: 1,
|
|
@@ -38531,6 +39711,15 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
38531
39711
|
ineligibleUser: 6,
|
|
38532
39712
|
}
|
|
38533
39713
|
|
|
39714
|
+
enum activationState {
|
|
39715
|
+
activated: 0,
|
|
39716
|
+
assignmentPending: 1,
|
|
39717
|
+
assignmentFailed: 2,
|
|
39718
|
+
updatePending: 3,
|
|
39719
|
+
updateFailed: 4,
|
|
39720
|
+
unknownFutureValue: 5,
|
|
39721
|
+
}
|
|
39722
|
+
|
|
38534
39723
|
enum assignmentCategory {
|
|
38535
39724
|
primary: 0,
|
|
38536
39725
|
private: 1,
|
|
@@ -38538,12 +39727,62 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
38538
39727
|
unknownFutureValue: 3,
|
|
38539
39728
|
}
|
|
38540
39729
|
|
|
39730
|
+
enum assignmentStatus {
|
|
39731
|
+
unassigned: 0,
|
|
39732
|
+
internalError: 1,
|
|
39733
|
+
userAssigned: 2,
|
|
39734
|
+
conferenceAssigned: 3,
|
|
39735
|
+
voiceApplicationAssigned: 4,
|
|
39736
|
+
thirdPartyAppAssigned: 5,
|
|
39737
|
+
policyAssigned: 6,
|
|
39738
|
+
unknownFutureValue: 7,
|
|
39739
|
+
}
|
|
39740
|
+
|
|
38541
39741
|
enum assignmentType {
|
|
38542
39742
|
direct: 0,
|
|
38543
39743
|
group: 1,
|
|
38544
39744
|
unknownFutureValue: 2,
|
|
38545
39745
|
}
|
|
38546
39746
|
|
|
39747
|
+
enum customerAction {
|
|
39748
|
+
locationUpdate: 0,
|
|
39749
|
+
release: 1,
|
|
39750
|
+
unknownFutureValue: 2,
|
|
39751
|
+
}
|
|
39752
|
+
|
|
39753
|
+
enum numberCapability {
|
|
39754
|
+
conferenceAssignment: 0,
|
|
39755
|
+
voiceApplicationAssignment: 1,
|
|
39756
|
+
userAssignment: 2,
|
|
39757
|
+
teamsPhoneMobile: 3,
|
|
39758
|
+
unknownFutureValue: 4,
|
|
39759
|
+
}
|
|
39760
|
+
|
|
39761
|
+
enum numberSource {
|
|
39762
|
+
online: 0,
|
|
39763
|
+
onPremises: 1,
|
|
39764
|
+
unknownFutureValue: 2,
|
|
39765
|
+
}
|
|
39766
|
+
|
|
39767
|
+
enum numberType {
|
|
39768
|
+
internalError: 0,
|
|
39769
|
+
directRouting: 1,
|
|
39770
|
+
callingPlan: 2,
|
|
39771
|
+
operatorConnect: 3,
|
|
39772
|
+
unknownFutureValue: 4,
|
|
39773
|
+
}
|
|
39774
|
+
|
|
39775
|
+
enum portInStatus {
|
|
39776
|
+
completed: 0,
|
|
39777
|
+
firmOrderCommitmentAccepted: 1,
|
|
39778
|
+
unknownFutureValue: 2,
|
|
39779
|
+
}
|
|
39780
|
+
|
|
39781
|
+
enum reverseNumberLookupOption {
|
|
39782
|
+
skipInternalVoip: 0,
|
|
39783
|
+
unknownFutureValue: 1,
|
|
39784
|
+
}
|
|
39785
|
+
|
|
38547
39786
|
}
|
|
38548
39787
|
@publicNamespace("microsoft.graph.termstore")
|
|
38549
39788
|
namespace reference.`microsoft.graph.termStore` {
|