@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +121 -3
- package/lib/Bleu/V1.0/main.tsp +377 -1
- package/lib/Delos/Beta/main.tsp +3330 -19
- package/lib/Delos/V1.0/main.tsp +2710 -10
- package/lib/Fairfax/Beta/main.tsp +64 -3
- package/lib/Fairfax/V1.0/main.tsp +58 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +2 -1
- package/lib/Mooncake/Beta/main.tsp +64 -3
- package/lib/Mooncake/V1.0/main.tsp +58 -1
- package/lib/Prod/Beta/main.tsp +942 -169
- package/lib/Prod/V1.0/main.tsp +4093 -567
- package/lib/USNat/Beta/main.tsp +268 -0
- package/lib/USNat/V1.0/main.tsp +255 -1
- package/lib/USSec/Beta/main.tsp +268 -0
- package/lib/USSec/V1.0/main.tsp +255 -1
- package/package.json +2 -2
package/lib/Delos/V1.0/main.tsp
CHANGED
|
@@ -7,14 +7,24 @@ using MsGraph;
|
|
|
7
7
|
scalar binary; //TODO: Enables support for Edm.Binary
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
|
|
11
|
+
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
10
12
|
@publicNamespace("microsoft.graph")
|
|
11
13
|
namespace reference.`microsoft.graph` {
|
|
14
|
+
@open
|
|
15
|
+
@complex model accessAction {
|
|
16
|
+
}
|
|
17
|
+
|
|
12
18
|
@complex model addIn {
|
|
13
19
|
id: guid | null;
|
|
14
20
|
properties: keyValue[];
|
|
15
21
|
type: string;
|
|
16
22
|
}
|
|
17
23
|
|
|
24
|
+
@complex model album {
|
|
25
|
+
coverImageItemId: string | null;
|
|
26
|
+
}
|
|
27
|
+
|
|
18
28
|
@complex model allAllowedScopes extends inheritableScopes {
|
|
19
29
|
}
|
|
20
30
|
|
|
@@ -145,11 +155,33 @@ namespace reference.`microsoft.graph` {
|
|
|
145
155
|
appConfigKeyValue: string;
|
|
146
156
|
}
|
|
147
157
|
|
|
158
|
+
@complex model appIdentity {
|
|
159
|
+
appId: string | null;
|
|
160
|
+
displayName: string | null;
|
|
161
|
+
servicePrincipalId: string | null;
|
|
162
|
+
servicePrincipalName: string | null;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
@complex model applicationContext extends signInContext {
|
|
166
|
+
includeApplications: string[];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
@complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
|
|
170
|
+
}
|
|
171
|
+
|
|
148
172
|
@complex model applicationServicePrincipal {
|
|
149
173
|
@references application: application | null;
|
|
150
174
|
@references servicePrincipal: servicePrincipal | null;
|
|
151
175
|
}
|
|
152
176
|
|
|
177
|
+
@complex model appliedConditionalAccessPolicy {
|
|
178
|
+
displayName: string | null;
|
|
179
|
+
enforcedGrantControls: string[] | null;
|
|
180
|
+
enforcedSessionControls: string[] | null;
|
|
181
|
+
id: string | null;
|
|
182
|
+
result: appliedConditionalAccessPolicyResult | null;
|
|
183
|
+
}
|
|
184
|
+
|
|
153
185
|
/**
|
|
154
186
|
* Represents an app in the list of managed applications
|
|
155
187
|
*/
|
|
@@ -253,6 +285,30 @@ namespace reference.`microsoft.graph` {
|
|
|
253
285
|
type: attendeeType | null;
|
|
254
286
|
}
|
|
255
287
|
|
|
288
|
+
@complex model audio {
|
|
289
|
+
album: string | null;
|
|
290
|
+
albumArtist: string | null;
|
|
291
|
+
artist: string | null;
|
|
292
|
+
bitrate: int64 | null;
|
|
293
|
+
composers: string | null;
|
|
294
|
+
copyright: string | null;
|
|
295
|
+
disc: int16 | null;
|
|
296
|
+
discCount: int16 | null;
|
|
297
|
+
`duration`: int64 | null;
|
|
298
|
+
genre: string | null;
|
|
299
|
+
hasDrm: boolean | null;
|
|
300
|
+
isVariableBitrate: boolean | null;
|
|
301
|
+
title: string | null;
|
|
302
|
+
track: int32 | null;
|
|
303
|
+
trackCount: int32 | null;
|
|
304
|
+
year: int32 | null;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@complex model auditActivityInitiator {
|
|
308
|
+
app: appIdentity | null;
|
|
309
|
+
user: userIdentity | null;
|
|
310
|
+
}
|
|
311
|
+
|
|
256
312
|
/**
|
|
257
313
|
* A class containing the properties for Audit Actor.
|
|
258
314
|
*/
|
|
@@ -331,6 +387,33 @@ namespace reference.`microsoft.graph` {
|
|
|
331
387
|
resourceId: string | null;
|
|
332
388
|
}
|
|
333
389
|
|
|
390
|
+
@complex model authContext extends signInContext {
|
|
391
|
+
authenticationContextValue: string | null;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
@complex model authenticationFlow {
|
|
395
|
+
transferMethod: conditionalAccessTransferMethods | null;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
@complex model authenticationMethodFeatureConfiguration {
|
|
399
|
+
excludeTarget: featureTarget | null;
|
|
400
|
+
includeTarget: featureTarget | null;
|
|
401
|
+
state: advancedConfigState | null;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
@complex model authenticationMethodsRegistrationCampaign {
|
|
405
|
+
excludeTargets: excludeTarget[];
|
|
406
|
+
includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
|
|
407
|
+
snoozeDurationInDays: int32;
|
|
408
|
+
state: advancedConfigState;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
@complex model authenticationMethodsRegistrationCampaignIncludeTarget {
|
|
412
|
+
id: string;
|
|
413
|
+
targetedAuthenticationMethod: string | null;
|
|
414
|
+
targetType: authenticationMethodTargetType;
|
|
415
|
+
}
|
|
416
|
+
|
|
334
417
|
@complex model authorizationInfo {
|
|
335
418
|
certificateUserIds: string[] | null;
|
|
336
419
|
}
|
|
@@ -380,6 +463,20 @@ namespace reference.`microsoft.graph` {
|
|
|
380
463
|
requireEncryptionForWriteAccess: boolean;
|
|
381
464
|
}
|
|
382
465
|
|
|
466
|
+
@complex model booleanColumn {
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
@complex model bundle {
|
|
470
|
+
album: album | null;
|
|
471
|
+
childCount: int32 | null;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
@complex model calculatedColumn {
|
|
475
|
+
format: string | null;
|
|
476
|
+
formula: string | null;
|
|
477
|
+
outputType: string | null;
|
|
478
|
+
}
|
|
479
|
+
|
|
383
480
|
@complex model calendarSharingMessageAction {
|
|
384
481
|
action: calendarSharingAction | null;
|
|
385
482
|
actionType: calendarSharingActionType | null;
|
|
@@ -421,6 +518,28 @@ namespace reference.`microsoft.graph` {
|
|
|
421
518
|
encryptionCertificateThumbprint: string;
|
|
422
519
|
}
|
|
423
520
|
|
|
521
|
+
@complex model choiceColumn {
|
|
522
|
+
allowTextEntry: boolean | null;
|
|
523
|
+
choices: string[] | null;
|
|
524
|
+
displayAs: string | null;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
@complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
|
|
528
|
+
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
@complex model columnValidation {
|
|
532
|
+
defaultLanguage: string | null;
|
|
533
|
+
descriptions: displayNameLocalization[] | null;
|
|
534
|
+
formula: string | null;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
@complex model commentAction {
|
|
538
|
+
isReply: boolean | null;
|
|
539
|
+
parentAuthor: identitySet | null;
|
|
540
|
+
participants: identitySet[] | null;
|
|
541
|
+
}
|
|
542
|
+
|
|
424
543
|
@open
|
|
425
544
|
@complex model ComplexExtensionValue {
|
|
426
545
|
}
|
|
@@ -435,6 +554,112 @@ namespace reference.`microsoft.graph` {
|
|
|
435
554
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
436
555
|
}
|
|
437
556
|
|
|
557
|
+
@complex model conditionalAccessAllExternalTenants extends conditionalAccessExternalTenants {
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
@complex model conditionalAccessApplications {
|
|
561
|
+
applicationFilter: conditionalAccessFilter | null;
|
|
562
|
+
excludeApplications: string[];
|
|
563
|
+
includeApplications: string[];
|
|
564
|
+
includeAuthenticationContextClassReferences: string[];
|
|
565
|
+
includeUserActions: string[];
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
@complex model conditionalAccessAuthenticationFlows {
|
|
569
|
+
transferMethods: conditionalAccessTransferMethods;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
@complex model conditionalAccessClientApplications {
|
|
573
|
+
excludeServicePrincipals: string[];
|
|
574
|
+
includeServicePrincipals: string[];
|
|
575
|
+
servicePrincipalFilter: conditionalAccessFilter | null;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
@complex model conditionalAccessConditionSet {
|
|
579
|
+
applications: conditionalAccessApplications | null;
|
|
580
|
+
authenticationFlows: conditionalAccessAuthenticationFlows | null;
|
|
581
|
+
clientApplications: conditionalAccessClientApplications | null;
|
|
582
|
+
clientAppTypes: conditionalAccessClientApp[];
|
|
583
|
+
devices: conditionalAccessDevices | null;
|
|
584
|
+
locations: conditionalAccessLocations | null;
|
|
585
|
+
platforms: conditionalAccessPlatforms | null;
|
|
586
|
+
servicePrincipalRiskLevels: riskLevel[];
|
|
587
|
+
signInRiskLevels: riskLevel[];
|
|
588
|
+
userRiskLevels: riskLevel[];
|
|
589
|
+
users: conditionalAccessUsers | null;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
@complex model conditionalAccessDevices {
|
|
593
|
+
deviceFilter: conditionalAccessFilter | null;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
@complex model conditionalAccessEnumeratedExternalTenants extends conditionalAccessExternalTenants {
|
|
597
|
+
members: string[];
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
@abstract
|
|
601
|
+
@complex model conditionalAccessExternalTenants {
|
|
602
|
+
membershipKind: conditionalAccessExternalTenantsMembershipKind | null;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
@complex model conditionalAccessFilter {
|
|
606
|
+
mode: filterMode;
|
|
607
|
+
rule: string;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
@complex model conditionalAccessGrantControls {
|
|
611
|
+
builtInControls: conditionalAccessGrantControl[];
|
|
612
|
+
customAuthenticationFactors: string[];
|
|
613
|
+
operator: string | null;
|
|
614
|
+
termsOfUse: string[];
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
@complex model conditionalAccessGuestsOrExternalUsers {
|
|
618
|
+
externalTenants: conditionalAccessExternalTenants | null;
|
|
619
|
+
guestOrExternalUserTypes: conditionalAccessGuestOrExternalUserTypes;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
@complex model conditionalAccessLocations {
|
|
623
|
+
excludeLocations: string[];
|
|
624
|
+
includeLocations: string[];
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
@complex model conditionalAccessPlatforms {
|
|
628
|
+
excludePlatforms: conditionalAccessDevicePlatform[];
|
|
629
|
+
includePlatforms: conditionalAccessDevicePlatform[];
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
@complex model conditionalAccessPolicyDetail {
|
|
633
|
+
conditions: conditionalAccessConditionSet;
|
|
634
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
635
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
@abstract
|
|
639
|
+
@complex model conditionalAccessSessionControl {
|
|
640
|
+
isEnabled: boolean | null;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
@complex model conditionalAccessSessionControls {
|
|
644
|
+
applicationEnforcedRestrictions: applicationEnforcedRestrictionsSessionControl | null;
|
|
645
|
+
cloudAppSecurity: cloudAppSecuritySessionControl | null;
|
|
646
|
+
disableResilienceDefaults: boolean | null;
|
|
647
|
+
persistentBrowser: persistentBrowserSessionControl | null;
|
|
648
|
+
secureSignInSession: secureSignInSessionControl | null;
|
|
649
|
+
signInFrequency: signInFrequencySessionControl | null;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
@complex model conditionalAccessUsers {
|
|
653
|
+
excludeGroups: string[];
|
|
654
|
+
excludeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
655
|
+
excludeRoles: string[];
|
|
656
|
+
excludeUsers: string[];
|
|
657
|
+
includeGroups: string[];
|
|
658
|
+
includeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
659
|
+
includeRoles: string[];
|
|
660
|
+
includeUsers: string[];
|
|
661
|
+
}
|
|
662
|
+
|
|
438
663
|
/**
|
|
439
664
|
* configuration Manager client enabled features
|
|
440
665
|
*/
|
|
@@ -475,6 +700,9 @@ namespace reference.`microsoft.graph` {
|
|
|
475
700
|
collectionId: string | null;
|
|
476
701
|
}
|
|
477
702
|
|
|
703
|
+
@complex model contentApprovalStatusColumn {
|
|
704
|
+
}
|
|
705
|
+
|
|
478
706
|
@complex model contentCustomization {
|
|
479
707
|
attributeCollection: keyValue[];
|
|
480
708
|
attributeCollectionRelativeUrl: string | null;
|
|
@@ -482,12 +710,25 @@ namespace reference.`microsoft.graph` {
|
|
|
482
710
|
registrationCampaignRelativeUrl: string | null;
|
|
483
711
|
}
|
|
484
712
|
|
|
713
|
+
@complex model contentTypeInfo {
|
|
714
|
+
id: string | null;
|
|
715
|
+
name: string | null;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
@complex model contentTypeOrder {
|
|
719
|
+
default: boolean | null;
|
|
720
|
+
position: int32 | null;
|
|
721
|
+
}
|
|
722
|
+
|
|
485
723
|
@complex model convertIdResult {
|
|
486
724
|
errorDetails: genericError | null;
|
|
487
725
|
sourceId: string | null;
|
|
488
726
|
targetId: string | null;
|
|
489
727
|
}
|
|
490
728
|
|
|
729
|
+
@complex model createAction {
|
|
730
|
+
}
|
|
731
|
+
|
|
491
732
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
492
733
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
493
734
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -513,6 +754,10 @@ namespace reference.`microsoft.graph` {
|
|
|
513
754
|
isSyncAllowed: boolean | null;
|
|
514
755
|
}
|
|
515
756
|
|
|
757
|
+
@complex model currencyColumn {
|
|
758
|
+
locale: string | null;
|
|
759
|
+
}
|
|
760
|
+
|
|
516
761
|
@complex model customAppManagementApplicationConfiguration {
|
|
517
762
|
identifierUris: identifierUriConfiguration | null;
|
|
518
763
|
}
|
|
@@ -541,6 +786,11 @@ namespace reference.`microsoft.graph` {
|
|
|
541
786
|
standardOffset: standardTimeZoneOffset | null;
|
|
542
787
|
}
|
|
543
788
|
|
|
789
|
+
@complex model dateTimeColumn {
|
|
790
|
+
displayAs: string | null;
|
|
791
|
+
format: string | null;
|
|
792
|
+
}
|
|
793
|
+
|
|
544
794
|
@complex model dateTimeTimeZone {
|
|
545
795
|
dateTime: string;
|
|
546
796
|
timeZone: string | null;
|
|
@@ -550,6 +800,11 @@ namespace reference.`microsoft.graph` {
|
|
|
550
800
|
daylightBias: int32 | null;
|
|
551
801
|
}
|
|
552
802
|
|
|
803
|
+
@complex model defaultColumnValue {
|
|
804
|
+
formula: string | null;
|
|
805
|
+
value: string | null;
|
|
806
|
+
}
|
|
807
|
+
|
|
553
808
|
@complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
|
|
554
809
|
}
|
|
555
810
|
|
|
@@ -584,6 +839,15 @@ namespace reference.`microsoft.graph` {
|
|
|
584
839
|
severeSeverity: defenderThreatAction;
|
|
585
840
|
}
|
|
586
841
|
|
|
842
|
+
@complex model deleteAction {
|
|
843
|
+
name: string | null;
|
|
844
|
+
objectType: string | null;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
@complex model deleted {
|
|
848
|
+
state: string | null;
|
|
849
|
+
}
|
|
850
|
+
|
|
587
851
|
/**
|
|
588
852
|
* Delete user from shared apple device action result
|
|
589
853
|
*/
|
|
@@ -594,6 +858,10 @@ namespace reference.`microsoft.graph` {
|
|
|
594
858
|
userPrincipalName: string | null;
|
|
595
859
|
}
|
|
596
860
|
|
|
861
|
+
@open
|
|
862
|
+
@complex model detailsInfo {
|
|
863
|
+
}
|
|
864
|
+
|
|
597
865
|
/**
|
|
598
866
|
* Device action result
|
|
599
867
|
*/
|
|
@@ -738,6 +1006,16 @@ namespace reference.`microsoft.graph` {
|
|
|
738
1006
|
userPrincipalName: string | null;
|
|
739
1007
|
}
|
|
740
1008
|
|
|
1009
|
+
@complex model deviceDetail {
|
|
1010
|
+
browser: string | null;
|
|
1011
|
+
deviceId: string | null;
|
|
1012
|
+
displayName: string | null;
|
|
1013
|
+
isCompliant: boolean | null;
|
|
1014
|
+
isManaged: boolean | null;
|
|
1015
|
+
operatingSystem: string | null;
|
|
1016
|
+
trustType: string | null;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
741
1019
|
/**
|
|
742
1020
|
* Platform specific enrollment restrictions
|
|
743
1021
|
*/
|
|
@@ -955,6 +1233,38 @@ namespace reference.`microsoft.graph` {
|
|
|
955
1233
|
windowsPE: string | null;
|
|
956
1234
|
}
|
|
957
1235
|
|
|
1236
|
+
@complex model deviceInfo {
|
|
1237
|
+
deviceId: string | null;
|
|
1238
|
+
displayName: string | null;
|
|
1239
|
+
enrollmentProfileName: string | null;
|
|
1240
|
+
extensionAttribute1: string | null;
|
|
1241
|
+
extensionAttribute10: string | null;
|
|
1242
|
+
extensionAttribute11: string | null;
|
|
1243
|
+
extensionAttribute12: string | null;
|
|
1244
|
+
extensionAttribute13: string | null;
|
|
1245
|
+
extensionAttribute14: string | null;
|
|
1246
|
+
extensionAttribute15: string | null;
|
|
1247
|
+
extensionAttribute2: string | null;
|
|
1248
|
+
extensionAttribute3: string | null;
|
|
1249
|
+
extensionAttribute4: string | null;
|
|
1250
|
+
extensionAttribute5: string | null;
|
|
1251
|
+
extensionAttribute6: string | null;
|
|
1252
|
+
extensionAttribute7: string | null;
|
|
1253
|
+
extensionAttribute8: string | null;
|
|
1254
|
+
extensionAttribute9: string | null;
|
|
1255
|
+
isCompliant: boolean | null;
|
|
1256
|
+
manufacturer: string | null;
|
|
1257
|
+
mdmAppId: string | null;
|
|
1258
|
+
`model`: string | null;
|
|
1259
|
+
operatingSystem: string | null;
|
|
1260
|
+
operatingSystemVersion: string | null;
|
|
1261
|
+
ownership: string | null;
|
|
1262
|
+
physicalIds: string[] | null;
|
|
1263
|
+
profileType: string | null;
|
|
1264
|
+
systemLabels: string[] | null;
|
|
1265
|
+
trustType: string | null;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
958
1268
|
@complex model deviceLocalCredential {
|
|
959
1269
|
accountName: string;
|
|
960
1270
|
accountSid: string;
|
|
@@ -1094,12 +1404,63 @@ namespace reference.`microsoft.graph` {
|
|
|
1094
1404
|
@complex model deviceRegistrationMembership {
|
|
1095
1405
|
}
|
|
1096
1406
|
|
|
1407
|
+
@open
|
|
1408
|
+
@complex model Dictionary {
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
@complex model displayNameLocalization {
|
|
1412
|
+
displayName: string | null;
|
|
1413
|
+
languageTag: string | null;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
@complex model documentSet {
|
|
1417
|
+
allowedContentTypes: contentTypeInfo[] | null;
|
|
1418
|
+
defaultContents: documentSetContent[] | null;
|
|
1419
|
+
propagateWelcomePageChanges: boolean | null;
|
|
1420
|
+
shouldPrefixNameToFile: boolean | null;
|
|
1421
|
+
welcomePageUrl: string | null;
|
|
1422
|
+
@references sharedColumns: columnDefinition[];
|
|
1423
|
+
@references welcomePageColumns: columnDefinition[];
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
@complex model documentSetContent {
|
|
1427
|
+
contentType: contentTypeInfo | null;
|
|
1428
|
+
fileName: string | null;
|
|
1429
|
+
folderName: string | null;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
@complex model documentSetVersionItem {
|
|
1433
|
+
itemId: string | null;
|
|
1434
|
+
title: string | null;
|
|
1435
|
+
versionId: string | null;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1097
1438
|
@complex model domainState {
|
|
1098
1439
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1099
1440
|
operation: string | null;
|
|
1100
1441
|
status: string | null;
|
|
1101
1442
|
}
|
|
1102
1443
|
|
|
1444
|
+
@complex model driveItemSource {
|
|
1445
|
+
application: driveItemSourceApplication | null;
|
|
1446
|
+
externalId: string | null;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
@complex model driveItemUploadableProperties {
|
|
1450
|
+
description: string | null;
|
|
1451
|
+
driveItemSource: driveItemSource | null;
|
|
1452
|
+
fileSize: int64 | null;
|
|
1453
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
1454
|
+
mediaSource: mediaSource | null;
|
|
1455
|
+
name: string | null;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
@complex model driveRecipient {
|
|
1459
|
+
`alias`: string | null;
|
|
1460
|
+
email: string | null;
|
|
1461
|
+
objectId: string | null;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1103
1464
|
/**
|
|
1104
1465
|
* Allows IT admins to set a predefined default search engine for MDM-Controlled devices.
|
|
1105
1466
|
*/
|
|
@@ -1127,6 +1488,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1127
1488
|
edgeSearchEngineOpenSearchXmlUrl: string;
|
|
1128
1489
|
}
|
|
1129
1490
|
|
|
1491
|
+
@complex model editAction {
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1130
1494
|
@complex model emailAddress {
|
|
1131
1495
|
address: string | null;
|
|
1132
1496
|
name: string | null;
|
|
@@ -1146,6 +1510,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1146
1510
|
scopes: string[];
|
|
1147
1511
|
}
|
|
1148
1512
|
|
|
1513
|
+
@complex model excludeTarget {
|
|
1514
|
+
id: string;
|
|
1515
|
+
targetType: authenticationMethodTargetType;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1149
1518
|
/**
|
|
1150
1519
|
* Represents a group that should be excluded from an assignment.
|
|
1151
1520
|
*/
|
|
@@ -1157,6 +1526,27 @@ namespace reference.`microsoft.graph` {
|
|
|
1157
1526
|
type: string | null;
|
|
1158
1527
|
}
|
|
1159
1528
|
|
|
1529
|
+
@complex model extractSensitivityLabelsResult {
|
|
1530
|
+
labels: sensitivityLabelAssignment[] | null;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
@complex model featureTarget {
|
|
1534
|
+
id: string | null;
|
|
1535
|
+
targetType: featureTargetType | null;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
@complex model fido2KeyRestrictions {
|
|
1539
|
+
aaGuids: string[] | null;
|
|
1540
|
+
enforcementType: fido2RestrictionEnforcementType | null;
|
|
1541
|
+
isEnforced: boolean | null;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
@complex model file {
|
|
1545
|
+
hashes: hashes | null;
|
|
1546
|
+
mimeType: string | null;
|
|
1547
|
+
processingMetadata: boolean | null;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1160
1550
|
/**
|
|
1161
1551
|
* Contains properties for file encryption information for the content version of a line-of-business app.
|
|
1162
1552
|
*/
|
|
@@ -1191,6 +1581,65 @@ namespace reference.`microsoft.graph` {
|
|
|
1191
1581
|
profileIdentifier: string | null;
|
|
1192
1582
|
}
|
|
1193
1583
|
|
|
1584
|
+
@open
|
|
1585
|
+
@complex model fileStorageContainerCustomPropertyDictionary extends Dictionary {
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
@complex model fileStorageContainerCustomPropertyValue {
|
|
1589
|
+
isSearchable: boolean | null;
|
|
1590
|
+
value: string;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
@complex model fileStorageContainerSettings {
|
|
1594
|
+
isItemVersioningEnabled: boolean | null;
|
|
1595
|
+
isOcrEnabled: boolean | null;
|
|
1596
|
+
itemMajorVersionLimit: int32 | null;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
1600
|
+
isDiscoverabilityEnabled: boolean | null;
|
|
1601
|
+
isItemVersioningEnabled: boolean | null;
|
|
1602
|
+
isSearchEnabled: boolean | null;
|
|
1603
|
+
isSharingRestricted: boolean | null;
|
|
1604
|
+
itemMajorVersionLimit: int64 | null;
|
|
1605
|
+
maxStoragePerContainerInBytes: int64 | null;
|
|
1606
|
+
sharingCapability: sharingCapabilities | null;
|
|
1607
|
+
urlTemplate: string | null;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
@complex model fileStorageContainerTypeSettings {
|
|
1611
|
+
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
1612
|
+
isDiscoverabilityEnabled: boolean | null;
|
|
1613
|
+
isItemVersioningEnabled: boolean | null;
|
|
1614
|
+
isSearchEnabled: boolean | null;
|
|
1615
|
+
isSharingRestricted: boolean | null;
|
|
1616
|
+
itemMajorVersionLimit: int64 | null;
|
|
1617
|
+
maxStoragePerContainerInBytes: int64 | null;
|
|
1618
|
+
sharingCapability: sharingCapabilities | null;
|
|
1619
|
+
urlTemplate: string | null;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
@complex model fileStorageContainerViewpoint {
|
|
1623
|
+
effectiveRole: string;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
@complex model fileSystemInfo {
|
|
1627
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
1628
|
+
@computed lastAccessedDateTime: offsetDateTime | null;
|
|
1629
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
@complex model folder {
|
|
1633
|
+
childCount: int32 | null;
|
|
1634
|
+
view: folderView | null;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
@complex model folderView {
|
|
1638
|
+
sortBy: string | null;
|
|
1639
|
+
sortOrder: string | null;
|
|
1640
|
+
viewType: string | null;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1194
1643
|
@complex model followupFlag {
|
|
1195
1644
|
completedDateTime: dateTimeTimeZone | null;
|
|
1196
1645
|
dueDateTime: dateTimeTimeZone | null;
|
|
@@ -1214,6 +1663,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1214
1663
|
longitude: float64 | null;
|
|
1215
1664
|
}
|
|
1216
1665
|
|
|
1666
|
+
@complex model geolocationColumn {
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1217
1669
|
/**
|
|
1218
1670
|
* Represents an assignment to a group.
|
|
1219
1671
|
*/
|
|
@@ -1224,6 +1676,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1224
1676
|
groupId: string | null;
|
|
1225
1677
|
}
|
|
1226
1678
|
|
|
1679
|
+
@complex model hashes {
|
|
1680
|
+
crc32Hash: string | null;
|
|
1681
|
+
quickXorHash: string | null;
|
|
1682
|
+
sha1Hash: string | null;
|
|
1683
|
+
sha256Hash: string | null;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
@complex model hyperlinkOrPictureColumn {
|
|
1687
|
+
isPicture: boolean | null;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1227
1690
|
@complex model identifierUriConfiguration {
|
|
1228
1691
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
1229
1692
|
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
@@ -1244,6 +1707,24 @@ namespace reference.`microsoft.graph` {
|
|
|
1244
1707
|
id: string | null;
|
|
1245
1708
|
}
|
|
1246
1709
|
|
|
1710
|
+
@open
|
|
1711
|
+
@complex model identitySet {
|
|
1712
|
+
application: identity | null;
|
|
1713
|
+
device: identity | null;
|
|
1714
|
+
user: identity | null;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
@complex model idleSessionSignOut {
|
|
1718
|
+
isEnabled: boolean | null;
|
|
1719
|
+
signOutAfterInSeconds: int64 | null;
|
|
1720
|
+
warnAfterInSeconds: int64 | null;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
@complex model image {
|
|
1724
|
+
height: int32 | null;
|
|
1725
|
+
width: int32 | null;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1247
1728
|
@complex model implicitGrantSettings {
|
|
1248
1729
|
enableAccessTokenIssuance: boolean | null;
|
|
1249
1730
|
enableIdTokenIssuance: boolean | null;
|
|
@@ -1273,6 +1754,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1273
1754
|
outboundAllowed: boolean | null;
|
|
1274
1755
|
}
|
|
1275
1756
|
|
|
1757
|
+
@complex model includeTarget {
|
|
1758
|
+
id: string;
|
|
1759
|
+
targetType: authenticationMethodTargetType;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
@open
|
|
1763
|
+
@complex model incompleteData {
|
|
1764
|
+
missingDataBeforeDateTime: offsetDateTime | null;
|
|
1765
|
+
wasThrottled: boolean | null;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1276
1768
|
@complex model informationalUrl {
|
|
1277
1769
|
logoUrl: string | null;
|
|
1278
1770
|
marketingUrl: string | null;
|
|
@@ -1286,6 +1778,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1286
1778
|
kind: scopeCollectionKind;
|
|
1287
1779
|
}
|
|
1288
1780
|
|
|
1781
|
+
@open
|
|
1782
|
+
@complex model initiator extends identity {
|
|
1783
|
+
initiatorType: initiatorType | null;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1289
1786
|
/**
|
|
1290
1787
|
* The value in an user experience analytics insight.
|
|
1291
1788
|
*/
|
|
@@ -1660,14 +2157,34 @@ namespace reference.`microsoft.graph` {
|
|
|
1660
2157
|
upperAddress: string;
|
|
1661
2158
|
}
|
|
1662
2159
|
|
|
2160
|
+
@open
|
|
2161
|
+
@complex model itemActionStat {
|
|
2162
|
+
actionCount: int32 | null;
|
|
2163
|
+
actorCount: int32 | null;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
1663
2166
|
@complex model itemBody {
|
|
1664
2167
|
content: string | null;
|
|
1665
2168
|
contentType: bodyType | null;
|
|
1666
2169
|
}
|
|
1667
2170
|
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
2171
|
+
@complex model itemPreviewInfo {
|
|
2172
|
+
getUrl: string | null;
|
|
2173
|
+
postParameters: string | null;
|
|
2174
|
+
postUrl: string | null;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
@complex model itemReference {
|
|
2178
|
+
driveId: string | null;
|
|
2179
|
+
driveType: string | null;
|
|
2180
|
+
id: string | null;
|
|
2181
|
+
name: string | null;
|
|
2182
|
+
path: string | null;
|
|
2183
|
+
shareId: string | null;
|
|
2184
|
+
sharepointIds: sharepointIds | null;
|
|
2185
|
+
siteId: string | null;
|
|
2186
|
+
}
|
|
2187
|
+
|
|
1671
2188
|
@complex model Json {
|
|
1672
2189
|
}
|
|
1673
2190
|
|
|
@@ -1721,6 +2238,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1721
2238
|
warning: int32 | null;
|
|
1722
2239
|
}
|
|
1723
2240
|
|
|
2241
|
+
@complex model listInfo {
|
|
2242
|
+
contentTypesEnabled: boolean | null;
|
|
2243
|
+
hidden: boolean | null;
|
|
2244
|
+
template: string | null;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
1724
2247
|
@complex model localAdminPasswordSettings {
|
|
1725
2248
|
isEnabled: boolean | null;
|
|
1726
2249
|
}
|
|
@@ -1781,6 +2304,14 @@ namespace reference.`microsoft.graph` {
|
|
|
1781
2304
|
hideTermsOfUse: boolean | null;
|
|
1782
2305
|
}
|
|
1783
2306
|
|
|
2307
|
+
@complex model lookupColumn {
|
|
2308
|
+
allowMultipleValues: boolean | null;
|
|
2309
|
+
allowUnlimitedLength: boolean | null;
|
|
2310
|
+
columnName: string | null;
|
|
2311
|
+
listId: string | null;
|
|
2312
|
+
primaryLookupColumnId: string | null;
|
|
2313
|
+
}
|
|
2314
|
+
|
|
1784
2315
|
/**
|
|
1785
2316
|
* Contains properties of an included .app in a MacOS app.
|
|
1786
2317
|
*/
|
|
@@ -1908,6 +2439,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1908
2439
|
message: string | null;
|
|
1909
2440
|
}
|
|
1910
2441
|
|
|
2442
|
+
@complex model malware {
|
|
2443
|
+
description: string | null;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
1911
2446
|
/**
|
|
1912
2447
|
* Represents diagnostics status.
|
|
1913
2448
|
*/
|
|
@@ -2039,6 +2574,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2039
2574
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
2040
2575
|
}
|
|
2041
2576
|
|
|
2577
|
+
@complex model mediaSource {
|
|
2578
|
+
contentCategory: mediaSourceContentCategory | null;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2042
2581
|
@complex model meetingTimeSuggestion {
|
|
2043
2582
|
attendeeAvailability: attendeeAvailability[] | null;
|
|
2044
2583
|
confidence: float64 | null;
|
|
@@ -2054,6 +2593,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2054
2593
|
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
2055
2594
|
}
|
|
2056
2595
|
|
|
2596
|
+
@complex model mentionAction {
|
|
2597
|
+
mentionees: identitySet[] | null;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2057
2600
|
@complex model messageRuleActions {
|
|
2058
2601
|
assignCategories: string[] | null;
|
|
2059
2602
|
copyToFolder: string | null;
|
|
@@ -2101,6 +2644,21 @@ namespace reference.`microsoft.graph` {
|
|
|
2101
2644
|
withinSizeRange: sizeRange | null;
|
|
2102
2645
|
}
|
|
2103
2646
|
|
|
2647
|
+
@complex model metaDataKeyStringPair {
|
|
2648
|
+
key: string | null;
|
|
2649
|
+
value: string | null;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
@complex model metaDataKeyValuePair {
|
|
2653
|
+
key: string | null;
|
|
2654
|
+
value: Json | null;
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
@complex model microsoftAuthenticatorFeatureSettings {
|
|
2658
|
+
displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
2659
|
+
displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2104
2662
|
/**
|
|
2105
2663
|
* Contains properties used to assign an Microsoft Store for Business mobile app to a group.
|
|
2106
2664
|
*/
|
|
@@ -2157,12 +2715,30 @@ namespace reference.`microsoft.graph` {
|
|
|
2157
2715
|
useLocalTime: boolean;
|
|
2158
2716
|
}
|
|
2159
2717
|
|
|
2718
|
+
@complex model modifiedProperty {
|
|
2719
|
+
displayName: string | null;
|
|
2720
|
+
newValue: string | null;
|
|
2721
|
+
oldValue: string | null;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
@complex model moveAction {
|
|
2725
|
+
from: string | null;
|
|
2726
|
+
to: string | null;
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2160
2729
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
2161
2730
|
}
|
|
2162
2731
|
|
|
2163
2732
|
@complex model noScopes extends inheritableScopes {
|
|
2164
2733
|
}
|
|
2165
2734
|
|
|
2735
|
+
@complex model numberColumn {
|
|
2736
|
+
decimalPlaces: string | null;
|
|
2737
|
+
displayAs: string | null;
|
|
2738
|
+
maximum: float64 | null;
|
|
2739
|
+
minimum: float64 | null;
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2166
2742
|
@complex model objectIdentity {
|
|
2167
2743
|
issuer: string | null;
|
|
2168
2744
|
issuerAssignedId: string | null;
|
|
@@ -2285,6 +2861,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2285
2861
|
}
|
|
2286
2862
|
|
|
2287
2863
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
2864
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
2288
2865
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
2289
2866
|
blockSoftMatchEnabled: boolean | null;
|
|
2290
2867
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -2331,6 +2908,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2331
2908
|
value: string | null;
|
|
2332
2909
|
}
|
|
2333
2910
|
|
|
2911
|
+
@complex model openIdConnectSetting {
|
|
2912
|
+
clientId: string;
|
|
2913
|
+
discoveryUrl: string;
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2334
2916
|
@complex model optionalClaim {
|
|
2335
2917
|
additionalProperties: string[] | null;
|
|
2336
2918
|
essential: boolean;
|
|
@@ -2401,6 +2983,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2401
2983
|
userType: windowsUserType;
|
|
2402
2984
|
}
|
|
2403
2985
|
|
|
2986
|
+
@complex model `package` {
|
|
2987
|
+
type: string | null;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2404
2990
|
@complex model parentalControlSettings {
|
|
2405
2991
|
countriesBlockedForMinors: string[] | null;
|
|
2406
2992
|
legalAgeGroupRule: string | null;
|
|
@@ -2423,11 +3009,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2423
3009
|
password: string | null;
|
|
2424
3010
|
}
|
|
2425
3011
|
|
|
3012
|
+
@complex model passwordResetResponse {
|
|
3013
|
+
newPassword: string | null;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
2426
3016
|
@complex model patternedRecurrence {
|
|
2427
3017
|
pattern: recurrencePattern | null;
|
|
2428
3018
|
range: recurrenceRange | null;
|
|
2429
3019
|
}
|
|
2430
3020
|
|
|
3021
|
+
@complex model pendingContentUpdate {
|
|
3022
|
+
queuedDateTime: offsetDateTime | null;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
@complex model pendingOperations {
|
|
3026
|
+
pendingContentUpdate: pendingContentUpdate | null;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
2431
3029
|
@complex model permissionScope {
|
|
2432
3030
|
adminConsentDescription: string | null;
|
|
2433
3031
|
adminConsentDisplayName: string | null;
|
|
@@ -2440,6 +3038,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2440
3038
|
value: string | null;
|
|
2441
3039
|
}
|
|
2442
3040
|
|
|
3041
|
+
@complex model persistentBrowserSessionControl extends conditionalAccessSessionControl {
|
|
3042
|
+
mode: persistentBrowserSessionMode | null;
|
|
3043
|
+
}
|
|
3044
|
+
|
|
3045
|
+
@complex model personOrGroupColumn {
|
|
3046
|
+
allowMultipleSelection: boolean | null;
|
|
3047
|
+
chooseFromType: string | null;
|
|
3048
|
+
displayAs: string | null;
|
|
3049
|
+
}
|
|
3050
|
+
|
|
2443
3051
|
@complex model personType {
|
|
2444
3052
|
class: string | null;
|
|
2445
3053
|
subclass: string | null;
|
|
@@ -2452,6 +3060,18 @@ namespace reference.`microsoft.graph` {
|
|
|
2452
3060
|
type: phoneType | null;
|
|
2453
3061
|
}
|
|
2454
3062
|
|
|
3063
|
+
@complex model photo {
|
|
3064
|
+
cameraMake: string | null;
|
|
3065
|
+
cameraModel: string | null;
|
|
3066
|
+
exposureDenominator: float64 | null;
|
|
3067
|
+
exposureNumerator: float64 | null;
|
|
3068
|
+
fNumber: float64 | null;
|
|
3069
|
+
focalLength: float64 | null;
|
|
3070
|
+
iso: int32 | null;
|
|
3071
|
+
orientation: int16 | null;
|
|
3072
|
+
takenDateTime: offsetDateTime | null;
|
|
3073
|
+
}
|
|
3074
|
+
|
|
2455
3075
|
@complex model physicalAddress {
|
|
2456
3076
|
city: string | null;
|
|
2457
3077
|
countryOrRegion: string | null;
|
|
@@ -2479,10 +3099,57 @@ namespace reference.`microsoft.graph` {
|
|
|
2479
3099
|
statementUrl: string | null;
|
|
2480
3100
|
}
|
|
2481
3101
|
|
|
2482
|
-
@complex model
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
3102
|
+
@complex model profileCardAnnotation {
|
|
3103
|
+
displayName: string | null;
|
|
3104
|
+
localizations: displayNameLocalization[] | null;
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3107
|
+
@complex model profileSourceLocalization {
|
|
3108
|
+
displayName: string | null;
|
|
3109
|
+
languageTag: string | null;
|
|
3110
|
+
webUrl: string | null;
|
|
3111
|
+
}
|
|
3112
|
+
|
|
3113
|
+
@open
|
|
3114
|
+
@complex model provisionedIdentity extends identity {
|
|
3115
|
+
details: detailsInfo | null;
|
|
3116
|
+
identityType: string | null;
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
@complex model provisionedPlan {
|
|
3120
|
+
capabilityStatus: string | null;
|
|
3121
|
+
provisioningStatus: string | null;
|
|
3122
|
+
service: string | null;
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
@complex model provisioningErrorInfo {
|
|
3126
|
+
additionalDetails: string | null;
|
|
3127
|
+
errorCategory: provisioningStatusErrorCategory | null;
|
|
3128
|
+
errorCode: string | null;
|
|
3129
|
+
reason: string | null;
|
|
3130
|
+
recommendedAction: string | null;
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
@open
|
|
3134
|
+
@complex model provisioningServicePrincipal extends identity {
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
@complex model provisioningStatusInfo {
|
|
3138
|
+
errorInformation: provisioningErrorInfo | null;
|
|
3139
|
+
status: provisioningResult | null;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
@complex model provisioningStep {
|
|
3143
|
+
description: string | null;
|
|
3144
|
+
details: detailsInfo | null;
|
|
3145
|
+
name: string | null;
|
|
3146
|
+
provisioningStepType: provisioningStepType | null;
|
|
3147
|
+
status: provisioningResult | null;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
@open
|
|
3151
|
+
@complex model provisioningSystem extends identity {
|
|
3152
|
+
details: detailsInfo | null;
|
|
2486
3153
|
}
|
|
2487
3154
|
|
|
2488
3155
|
/**
|
|
@@ -2499,10 +3166,60 @@ namespace reference.`microsoft.graph` {
|
|
|
2499
3166
|
proxy: string | null;
|
|
2500
3167
|
}
|
|
2501
3168
|
|
|
3169
|
+
@complex model publicationFacet {
|
|
3170
|
+
checkedOutBy: identitySet | null;
|
|
3171
|
+
level: string | null;
|
|
3172
|
+
versionId: string | null;
|
|
3173
|
+
}
|
|
3174
|
+
|
|
2502
3175
|
@complex model publicClientApplication {
|
|
2503
3176
|
redirectUris: string[];
|
|
2504
3177
|
}
|
|
2505
3178
|
|
|
3179
|
+
@complex model publicError {
|
|
3180
|
+
code: string | null;
|
|
3181
|
+
details: publicErrorDetail[] | null;
|
|
3182
|
+
innerError: publicInnerError | null;
|
|
3183
|
+
message: string | null;
|
|
3184
|
+
target: string | null;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
@complex model publicErrorDetail {
|
|
3188
|
+
code: string | null;
|
|
3189
|
+
message: string | null;
|
|
3190
|
+
target: string | null;
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
@open
|
|
3194
|
+
@complex model publicInnerError {
|
|
3195
|
+
code: string | null;
|
|
3196
|
+
details: publicErrorDetail[] | null;
|
|
3197
|
+
message: string | null;
|
|
3198
|
+
target: string | null;
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
@complex model qrCodeImageDetails {
|
|
3202
|
+
binaryValue: binary | null;
|
|
3203
|
+
errorCorrectionLevel: errorCorrectionLevel | null;
|
|
3204
|
+
rawContent: binary | null;
|
|
3205
|
+
version: int32 | null;
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
@complex model quota {
|
|
3209
|
+
deleted: int64 | null;
|
|
3210
|
+
remaining: int64 | null;
|
|
3211
|
+
state: string | null;
|
|
3212
|
+
storagePlanInformation: storagePlanInformation | null;
|
|
3213
|
+
total: int64 | null;
|
|
3214
|
+
used: int64 | null;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
@complex model reactionsFacet {
|
|
3218
|
+
commentCount: int32 | null;
|
|
3219
|
+
likeCount: int32 | null;
|
|
3220
|
+
shareCount: int32 | null;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
2506
3223
|
@complex model recipient {
|
|
2507
3224
|
emailAddress: emailAddress | null;
|
|
2508
3225
|
}
|
|
@@ -2525,11 +3242,19 @@ namespace reference.`microsoft.graph` {
|
|
|
2525
3242
|
type: recurrenceRangeType | null;
|
|
2526
3243
|
}
|
|
2527
3244
|
|
|
3245
|
+
@complex model recycleBinSettings {
|
|
3246
|
+
retentionPeriodOverrideDays: int32 | null;
|
|
3247
|
+
}
|
|
3248
|
+
|
|
2528
3249
|
@complex model redirectUriSettings {
|
|
2529
3250
|
index: int32 | null;
|
|
2530
3251
|
uri: string | null;
|
|
2531
3252
|
}
|
|
2532
3253
|
|
|
3254
|
+
@complex model registrationEnforcement {
|
|
3255
|
+
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
2533
3258
|
@complex model reminder {
|
|
2534
3259
|
changeKey: string | null;
|
|
2535
3260
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -2541,6 +3266,28 @@ namespace reference.`microsoft.graph` {
|
|
|
2541
3266
|
reminderFireTime: dateTimeTimeZone | null;
|
|
2542
3267
|
}
|
|
2543
3268
|
|
|
3269
|
+
@complex model remoteItem {
|
|
3270
|
+
createdBy: identitySet | null;
|
|
3271
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
3272
|
+
file: file | null;
|
|
3273
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
3274
|
+
folder: folder | null;
|
|
3275
|
+
id: string | null;
|
|
3276
|
+
image: image | null;
|
|
3277
|
+
lastModifiedBy: identitySet | null;
|
|
3278
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3279
|
+
name: string | null;
|
|
3280
|
+
`package`: `package` | null;
|
|
3281
|
+
parentReference: itemReference | null;
|
|
3282
|
+
shared: shared | null;
|
|
3283
|
+
sharepointIds: sharepointIds | null;
|
|
3284
|
+
size: int64 | null;
|
|
3285
|
+
specialFolder: specialFolder | null;
|
|
3286
|
+
video: video | null;
|
|
3287
|
+
webDavUrl: string | null;
|
|
3288
|
+
webUrl: string | null;
|
|
3289
|
+
}
|
|
3290
|
+
|
|
2544
3291
|
/**
|
|
2545
3292
|
* Lock action result with a pin to unlock
|
|
2546
3293
|
*/
|
|
@@ -2551,6 +3298,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2551
3298
|
unlockPin: string | null;
|
|
2552
3299
|
}
|
|
2553
3300
|
|
|
3301
|
+
@complex model renameAction {
|
|
3302
|
+
newName: string | null;
|
|
3303
|
+
oldName: string | null;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
2554
3306
|
/**
|
|
2555
3307
|
* Device Configuration profile History reports.
|
|
2556
3308
|
*/
|
|
@@ -2615,6 +3367,18 @@ namespace reference.`microsoft.graph` {
|
|
|
2615
3367
|
time: offsetDateTime | null;
|
|
2616
3368
|
}
|
|
2617
3369
|
|
|
3370
|
+
@complex model restoreAction {
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
@complex model retentionLabelSettings {
|
|
3374
|
+
behaviorDuringRetentionPeriod: reference.`microsoft.graph.security`.behaviorDuringRetentionPeriod | null;
|
|
3375
|
+
isContentUpdateAllowed: boolean | null;
|
|
3376
|
+
isDeleteAllowed: boolean | null;
|
|
3377
|
+
isLabelUpdateAllowed: boolean | null;
|
|
3378
|
+
isMetadataUpdateAllowed: boolean | null;
|
|
3379
|
+
isRecordLocked: boolean | null;
|
|
3380
|
+
}
|
|
3381
|
+
|
|
2618
3382
|
/**
|
|
2619
3383
|
* Color in RGB.
|
|
2620
3384
|
*/
|
|
@@ -2653,6 +3417,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2653
3417
|
resourceActions: resourceAction[] | null;
|
|
2654
3418
|
}
|
|
2655
3419
|
|
|
3420
|
+
@complex model root {
|
|
3421
|
+
}
|
|
3422
|
+
|
|
2656
3423
|
/**
|
|
2657
3424
|
* RotateBitLockerKeys device action result
|
|
2658
3425
|
*/
|
|
@@ -2691,6 +3458,26 @@ namespace reference.`microsoft.graph` {
|
|
|
2691
3458
|
selectionLikelihood: selectionLikelihoodInfo | null;
|
|
2692
3459
|
}
|
|
2693
3460
|
|
|
3461
|
+
@complex model searchResult {
|
|
3462
|
+
onClickTelemetryUrl: string | null;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
@complex model secureSignInSessionControl extends conditionalAccessSessionControl {
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3468
|
+
@complex model sensitivityLabelAssignment {
|
|
3469
|
+
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
3470
|
+
sensitivityLabelId: string;
|
|
3471
|
+
tenantId: string;
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
@complex model serverProcessedContent {
|
|
3475
|
+
htmlStrings: metaDataKeyStringPair[] | null;
|
|
3476
|
+
imageSources: metaDataKeyStringPair[] | null;
|
|
3477
|
+
links: metaDataKeyStringPair[] | null;
|
|
3478
|
+
searchablePlainTexts: metaDataKeyStringPair[] | null;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
2694
3481
|
@complex model servicePlanInfo {
|
|
2695
3482
|
appliesTo: string | null;
|
|
2696
3483
|
provisioningStatus: string | null;
|
|
@@ -2706,6 +3493,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2706
3493
|
tokenEncryptionKeyId: boolean | null;
|
|
2707
3494
|
}
|
|
2708
3495
|
|
|
3496
|
+
@complex model servicePrincipalSignIn extends signInIdentity {
|
|
3497
|
+
servicePrincipalId: string | null;
|
|
3498
|
+
}
|
|
3499
|
+
|
|
2709
3500
|
@complex model settingSource {
|
|
2710
3501
|
displayName: string | null;
|
|
2711
3502
|
id: string | null;
|
|
@@ -2724,6 +3515,17 @@ namespace reference.`microsoft.graph` {
|
|
|
2724
3515
|
value: string | null;
|
|
2725
3516
|
}
|
|
2726
3517
|
|
|
3518
|
+
@complex model shareAction {
|
|
3519
|
+
recipients: identitySet[] | null;
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3522
|
+
@complex model shared {
|
|
3523
|
+
owner: identitySet | null;
|
|
3524
|
+
scope: string | null;
|
|
3525
|
+
sharedBy: identitySet | null;
|
|
3526
|
+
sharedDateTime: offsetDateTime | null;
|
|
3527
|
+
}
|
|
3528
|
+
|
|
2727
3529
|
/**
|
|
2728
3530
|
* SharedPC Account Manager Policy. Only applies when the account manager is enabled.
|
|
2729
3531
|
*/
|
|
@@ -2746,11 +3548,98 @@ namespace reference.`microsoft.graph` {
|
|
|
2746
3548
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
2747
3549
|
}
|
|
2748
3550
|
|
|
3551
|
+
@open
|
|
3552
|
+
@complex model sharePointGroupIdentity extends identity {
|
|
3553
|
+
principalId: string | null;
|
|
3554
|
+
title: string | null;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
@open
|
|
3558
|
+
@complex model sharePointIdentity extends identity {
|
|
3559
|
+
loginName: string | null;
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
@open
|
|
3563
|
+
@complex model sharePointIdentitySet extends identitySet {
|
|
3564
|
+
group: identity | null;
|
|
3565
|
+
sharePointGroup: sharePointGroupIdentity | null;
|
|
3566
|
+
siteGroup: sharePointIdentity | null;
|
|
3567
|
+
siteUser: sharePointIdentity | null;
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
@complex model sharepointIds {
|
|
3571
|
+
listId: string | null;
|
|
3572
|
+
listItemId: string | null;
|
|
3573
|
+
listItemUniqueId: string | null;
|
|
3574
|
+
siteId: string | null;
|
|
3575
|
+
siteUrl: string | null;
|
|
3576
|
+
tenantId: string | null;
|
|
3577
|
+
webId: string | null;
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
@complex model sharePointMigrationContainerInfo {
|
|
3581
|
+
dataContainerUri: string;
|
|
3582
|
+
encryptionKey: string;
|
|
3583
|
+
metadataContainerUri: string;
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
@complex model sharingInvitation {
|
|
3587
|
+
email: string | null;
|
|
3588
|
+
invitedBy: identitySet | null;
|
|
3589
|
+
redeemedBy: string | null;
|
|
3590
|
+
signInRequired: boolean | null;
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
@complex model sharingLink {
|
|
3594
|
+
application: identity | null;
|
|
3595
|
+
preventsDownload: boolean | null;
|
|
3596
|
+
scope: string | null;
|
|
3597
|
+
type: string | null;
|
|
3598
|
+
webHtml: string | null;
|
|
3599
|
+
webUrl: string | null;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
@complex model signInActivity {
|
|
3603
|
+
@computed lastNonInteractiveSignInDateTime: offsetDateTime | null;
|
|
3604
|
+
lastNonInteractiveSignInRequestId: string | null;
|
|
3605
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
3606
|
+
lastSignInRequestId: string | null;
|
|
3607
|
+
@computed lastSuccessfulSignInDateTime: offsetDateTime | null;
|
|
3608
|
+
lastSuccessfulSignInRequestId: string | null;
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
@complex model signInConditions {
|
|
3612
|
+
authenticationFlow: authenticationFlow | null;
|
|
3613
|
+
clientAppType: conditionalAccessClientApp | null;
|
|
3614
|
+
country: string | null;
|
|
3615
|
+
deviceInfo: deviceInfo | null;
|
|
3616
|
+
devicePlatform: conditionalAccessDevicePlatform | null;
|
|
3617
|
+
ipAddress: string | null;
|
|
3618
|
+
servicePrincipalRiskLevel: riskLevel | null;
|
|
3619
|
+
signInRiskLevel: riskLevel | null;
|
|
3620
|
+
userRiskLevel: riskLevel | null;
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
@abstract
|
|
3624
|
+
@complex model signInContext {
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
@complex model signInFrequencySessionControl extends conditionalAccessSessionControl {
|
|
3628
|
+
authenticationType: signInFrequencyAuthenticationType | null;
|
|
3629
|
+
frequencyInterval: signInFrequencyInterval | null;
|
|
3630
|
+
type: signinFrequencyType | null;
|
|
3631
|
+
value: int32 | null;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
2749
3634
|
@complex model signingCertificateUpdateStatus {
|
|
2750
3635
|
certificateUpdateResult: string | null;
|
|
2751
3636
|
@computed lastRunDateTime: offsetDateTime | null;
|
|
2752
3637
|
}
|
|
2753
3638
|
|
|
3639
|
+
@abstract
|
|
3640
|
+
@complex model signInIdentity {
|
|
3641
|
+
}
|
|
3642
|
+
|
|
2754
3643
|
@complex model signInLocation {
|
|
2755
3644
|
city: string | null;
|
|
2756
3645
|
countryOrRegion: string | null;
|
|
@@ -2758,6 +3647,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2758
3647
|
state: string | null;
|
|
2759
3648
|
}
|
|
2760
3649
|
|
|
3650
|
+
@complex model signInStatus {
|
|
3651
|
+
additionalDetails: string | null;
|
|
3652
|
+
errorCode: int32 | null;
|
|
3653
|
+
failureReason: string | null;
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
@complex model siteArchivalDetails {
|
|
3657
|
+
archiveStatus: siteArchiveStatus | null;
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
@complex model siteCollection {
|
|
3661
|
+
archivalDetails: siteArchivalDetails | null;
|
|
3662
|
+
dataLocationCode: string | null;
|
|
3663
|
+
hostname: string | null;
|
|
3664
|
+
root: root | null;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
2761
3667
|
@complex model sizeRange {
|
|
2762
3668
|
maximumSize: int32 | null;
|
|
2763
3669
|
minimumSize: int32 | null;
|
|
@@ -2767,6 +3673,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2767
3673
|
redirectUris: string[];
|
|
2768
3674
|
}
|
|
2769
3675
|
|
|
3676
|
+
@complex model specialFolder {
|
|
3677
|
+
name: string | null;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
2770
3680
|
@complex model standardTimeZoneOffset {
|
|
2771
3681
|
dayOccurrence: int32 | null;
|
|
2772
3682
|
dayOfWeek: dayOfWeek | null;
|
|
@@ -2775,6 +3685,22 @@ namespace reference.`microsoft.graph` {
|
|
|
2775
3685
|
year: int32 | null;
|
|
2776
3686
|
}
|
|
2777
3687
|
|
|
3688
|
+
@complex model storagePlanInformation {
|
|
3689
|
+
upgradeAvailable: boolean | null;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
@complex model systemFacet {
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
@complex model targetResource {
|
|
3696
|
+
displayName: string | null;
|
|
3697
|
+
groupType: groupType | null;
|
|
3698
|
+
id: string | null;
|
|
3699
|
+
modifiedProperties: modifiedProperty[] | null;
|
|
3700
|
+
type: string | null;
|
|
3701
|
+
userPrincipalName: string | null;
|
|
3702
|
+
}
|
|
3703
|
+
|
|
2778
3704
|
@complex model tenantInformation {
|
|
2779
3705
|
defaultDomainName: string | null;
|
|
2780
3706
|
displayName: string | null;
|
|
@@ -2782,6 +3708,32 @@ namespace reference.`microsoft.graph` {
|
|
|
2782
3708
|
tenantId: string;
|
|
2783
3709
|
}
|
|
2784
3710
|
|
|
3711
|
+
@complex model termColumn {
|
|
3712
|
+
allowMultipleValues: boolean | null;
|
|
3713
|
+
showFullyQualifiedName: boolean | null;
|
|
3714
|
+
@references parentTerm: reference.`microsoft.graph.termStore`.term | null;
|
|
3715
|
+
@references termSet: reference.`microsoft.graph.termStore`.set | null;
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3718
|
+
@complex model textColumn {
|
|
3719
|
+
allowMultipleLines: boolean | null;
|
|
3720
|
+
appendChangesToExistingText: boolean | null;
|
|
3721
|
+
linesForEditing: int32 | null;
|
|
3722
|
+
maxLength: int32 | null;
|
|
3723
|
+
textType: string | null;
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
@complex model thumbnail {
|
|
3727
|
+
content: stream | null;
|
|
3728
|
+
height: int32 | null;
|
|
3729
|
+
sourceItemId: string | null;
|
|
3730
|
+
url: string | null;
|
|
3731
|
+
width: int32 | null;
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
@complex model thumbnailColumn {
|
|
3735
|
+
}
|
|
3736
|
+
|
|
2785
3737
|
@complex model timeConstraint {
|
|
2786
3738
|
activityDomain: activityDomain | null;
|
|
2787
3739
|
timeSlots: timeSlot[] | null;
|
|
@@ -2801,12 +3753,33 @@ namespace reference.`microsoft.graph` {
|
|
|
2801
3753
|
displayName: string | null;
|
|
2802
3754
|
}
|
|
2803
3755
|
|
|
3756
|
+
@open
|
|
3757
|
+
@complex model titleArea {
|
|
3758
|
+
alternativeText: string | null;
|
|
3759
|
+
enableGradientEffect: boolean | null;
|
|
3760
|
+
imageWebUrl: string | null;
|
|
3761
|
+
layout: titleAreaLayoutType | null;
|
|
3762
|
+
serverProcessedContent: serverProcessedContent | null;
|
|
3763
|
+
showAuthor: boolean | null;
|
|
3764
|
+
showPublishedDate: boolean | null;
|
|
3765
|
+
showTextBlockAboveTitle: boolean | null;
|
|
3766
|
+
textAboveTitle: string | null;
|
|
3767
|
+
textAlignment: titleAreaTextAlignmentType | null;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
2804
3770
|
@complex model unifiedRolePermission {
|
|
2805
3771
|
allowedResourceActions: string[];
|
|
2806
3772
|
condition: string | null;
|
|
2807
3773
|
excludedResourceActions: string[] | null;
|
|
2808
3774
|
}
|
|
2809
3775
|
|
|
3776
|
+
@complex model updateAllowedCombinationsResult {
|
|
3777
|
+
additionalInformation: string | null;
|
|
3778
|
+
conditionalAccessReferences: string[] | null;
|
|
3779
|
+
currentCombinations: authenticationMethodModes[];
|
|
3780
|
+
previousCombinations: authenticationMethodModes[];
|
|
3781
|
+
}
|
|
3782
|
+
|
|
2810
3783
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
2811
3784
|
calendarSyncEnabled: boolean | null;
|
|
2812
3785
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -2822,6 +3795,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2822
3795
|
uploadUrl: string | null;
|
|
2823
3796
|
}
|
|
2824
3797
|
|
|
3798
|
+
@complex model userActionContext extends signInContext {
|
|
3799
|
+
userAction: userAction | null;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
2825
3802
|
/**
|
|
2826
3803
|
* The user experience analytics summary of Devices not windows autopilot ready.
|
|
2827
3804
|
*/
|
|
@@ -2979,6 +3956,42 @@ namespace reference.`microsoft.graph` {
|
|
|
2979
3956
|
windows10DevicesWithoutTenantAttach: int32;
|
|
2980
3957
|
}
|
|
2981
3958
|
|
|
3959
|
+
@open
|
|
3960
|
+
@complex model userIdentity extends identity {
|
|
3961
|
+
ipAddress: string | null;
|
|
3962
|
+
userPrincipalName: string | null;
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
@complex model userRegistrationFeatureCount {
|
|
3966
|
+
feature: authenticationMethodFeature;
|
|
3967
|
+
userCount: int64;
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
@complex model userRegistrationFeatureSummary {
|
|
3971
|
+
totalUserCount: int64;
|
|
3972
|
+
userRegistrationFeatureCounts: userRegistrationFeatureCount[];
|
|
3973
|
+
userRoles: includedUserRoles | null;
|
|
3974
|
+
userTypes: includedUserTypes | null;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
@complex model userRegistrationMethodCount {
|
|
3978
|
+
authenticationMethod: string;
|
|
3979
|
+
userCount: int64;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
@complex model userRegistrationMethodSummary {
|
|
3983
|
+
totalUserCount: int64;
|
|
3984
|
+
userRegistrationMethodCounts: userRegistrationMethodCount[];
|
|
3985
|
+
userRoles: includedUserRoles | null;
|
|
3986
|
+
userTypes: includedUserTypes | null;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
@complex model userSignIn extends signInIdentity {
|
|
3990
|
+
externalTenantId: string | null;
|
|
3991
|
+
externalUserType: conditionalAccessGuestOrExternalUserTypes;
|
|
3992
|
+
userId: string | null;
|
|
3993
|
+
}
|
|
3994
|
+
|
|
2982
3995
|
@complex model verifiedDomain {
|
|
2983
3996
|
capabilities: string | null;
|
|
2984
3997
|
isDefault: boolean | null;
|
|
@@ -2987,6 +4000,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2987
4000
|
type: string | null;
|
|
2988
4001
|
}
|
|
2989
4002
|
|
|
4003
|
+
@complex model versionAction {
|
|
4004
|
+
newVersion: string | null;
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
@complex model video {
|
|
4008
|
+
audioBitsPerSample: int32 | null;
|
|
4009
|
+
audioChannels: int32 | null;
|
|
4010
|
+
audioFormat: string | null;
|
|
4011
|
+
audioSamplesPerSecond: int32 | null;
|
|
4012
|
+
bitrate: int32 | null;
|
|
4013
|
+
`duration`: int64 | null;
|
|
4014
|
+
fourCC: string | null;
|
|
4015
|
+
frameRate: float64 | null;
|
|
4016
|
+
height: int32 | null;
|
|
4017
|
+
width: int32 | null;
|
|
4018
|
+
}
|
|
4019
|
+
|
|
2990
4020
|
/**
|
|
2991
4021
|
* Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type.
|
|
2992
4022
|
*/
|
|
@@ -3009,6 +4039,85 @@ namespace reference.`microsoft.graph` {
|
|
|
3009
4039
|
redirectUriSettings: redirectUriSettings[];
|
|
3010
4040
|
}
|
|
3011
4041
|
|
|
4042
|
+
@open
|
|
4043
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
@open
|
|
4047
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
4051
|
+
attestationObject: string | null;
|
|
4052
|
+
clientDataJSON: string | null;
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
4056
|
+
authenticatorAttachment: string | null;
|
|
4057
|
+
requireResidentKey: boolean | null;
|
|
4058
|
+
userVerification: string | null;
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
@complex model webauthnCredentialCreationOptions {
|
|
4062
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
4063
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
@complex model webauthnPublicKeyCredential {
|
|
4067
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
4068
|
+
id: string | null;
|
|
4069
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
4070
|
+
}
|
|
4071
|
+
|
|
4072
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
4073
|
+
attestation: string | null;
|
|
4074
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
4075
|
+
challenge: string | null;
|
|
4076
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
4077
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
4078
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
4079
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
4080
|
+
timeout: int32 | null;
|
|
4081
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
4085
|
+
id: string | null;
|
|
4086
|
+
transports: string[] | null;
|
|
4087
|
+
type: string | null;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
4091
|
+
alg: int32 | null;
|
|
4092
|
+
type: string | null;
|
|
4093
|
+
}
|
|
4094
|
+
|
|
4095
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
4096
|
+
id: string | null;
|
|
4097
|
+
name: string | null;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
4101
|
+
displayName: string | null;
|
|
4102
|
+
id: string | null;
|
|
4103
|
+
name: string | null;
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
@complex model webPartData {
|
|
4107
|
+
dataVersion: string | null;
|
|
4108
|
+
description: string | null;
|
|
4109
|
+
properties: Json | null;
|
|
4110
|
+
serverProcessedContent: serverProcessedContent | null;
|
|
4111
|
+
title: string | null;
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
@complex model webPartPosition {
|
|
4115
|
+
columnId: float64 | null;
|
|
4116
|
+
horizontalSectionId: float64 | null;
|
|
4117
|
+
isInVerticalSection: boolean | null;
|
|
4118
|
+
webPartIndex: float64 | null;
|
|
4119
|
+
}
|
|
4120
|
+
|
|
3012
4121
|
@complex model website {
|
|
3013
4122
|
address: string | null;
|
|
3014
4123
|
displayName: string | null;
|
|
@@ -3695,9 +4804,46 @@ namespace reference.`microsoft.graph` {
|
|
|
3695
4804
|
timeZone: timeZoneBase | null;
|
|
3696
4805
|
}
|
|
3697
4806
|
|
|
4807
|
+
@complex model x509CertificateAuthenticationModeConfiguration {
|
|
4808
|
+
rules: x509CertificateRule[] | null;
|
|
4809
|
+
x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
|
|
4810
|
+
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
@complex model x509CertificateAuthorityScope {
|
|
4814
|
+
includeTargets: includeTarget[] | null;
|
|
4815
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
4816
|
+
subjectKeyIdentifier: string | null;
|
|
4817
|
+
}
|
|
4818
|
+
|
|
4819
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
4820
|
+
state: x509CertificateIssuerHintsState | null;
|
|
4821
|
+
}
|
|
4822
|
+
|
|
4823
|
+
@complex model x509CertificateRule {
|
|
4824
|
+
identifier: string | null;
|
|
4825
|
+
issuerSubjectIdentifier: string | null;
|
|
4826
|
+
policyOidIdentifier: string | null;
|
|
4827
|
+
x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
|
|
4828
|
+
x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
4829
|
+
x509CertificateRuleType: x509CertificateRuleType | null;
|
|
4830
|
+
}
|
|
4831
|
+
|
|
4832
|
+
@complex model x509CertificateUserBinding {
|
|
4833
|
+
priority: int32;
|
|
4834
|
+
trustAffinityLevel: x509CertificateAffinityLevel | null;
|
|
4835
|
+
userProperty: string | null;
|
|
4836
|
+
x509CertificateField: string | null;
|
|
4837
|
+
}
|
|
4838
|
+
|
|
3698
4839
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
3699
4840
|
}
|
|
3700
4841
|
|
|
4842
|
+
@entity model admin extends MsGraph.SharedModels.entity {
|
|
4843
|
+
@contains people: peopleAdminSettings | null;
|
|
4844
|
+
@contains sharepoint: sharepoint | null;
|
|
4845
|
+
}
|
|
4846
|
+
|
|
3701
4847
|
@open
|
|
3702
4848
|
@entity model administrativeUnit extends directoryObject {
|
|
3703
4849
|
description: string | null;
|
|
@@ -4581,6 +5727,48 @@ namespace reference.`microsoft.graph` {
|
|
|
4581
5727
|
resources: auditResource[] | null;
|
|
4582
5728
|
}
|
|
4583
5729
|
|
|
5730
|
+
@entity model auditLogRoot extends MsGraph.SharedModels.entity {
|
|
5731
|
+
@contains directoryAudits: directoryAudit[];
|
|
5732
|
+
@contains provisioning: provisioningObjectSummary[];
|
|
5733
|
+
@contains signIns: signIn[];
|
|
5734
|
+
}
|
|
5735
|
+
|
|
5736
|
+
@abstract
|
|
5737
|
+
@entity model authenticationCombinationConfiguration extends entity {
|
|
5738
|
+
appliesToCombinations: authenticationMethodModes[];
|
|
5739
|
+
}
|
|
5740
|
+
|
|
5741
|
+
@entity model authenticationContextClassReference extends entity {
|
|
5742
|
+
description: string | null;
|
|
5743
|
+
displayName: string | null;
|
|
5744
|
+
isAvailable: boolean | null;
|
|
5745
|
+
}
|
|
5746
|
+
|
|
5747
|
+
@entity model authenticationMethodModeDetail extends entity {
|
|
5748
|
+
authenticationMethod: baseAuthenticationMethod;
|
|
5749
|
+
displayName: string;
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
@entity model authenticationMethodsRoot extends entity {
|
|
5753
|
+
@contains userRegistrationDetails: userRegistrationDetails[];
|
|
5754
|
+
}
|
|
5755
|
+
|
|
5756
|
+
@entity model authenticationMethodTarget extends entity {
|
|
5757
|
+
isRegistrationRequired: boolean;
|
|
5758
|
+
targetType: authenticationMethodTargetType;
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5761
|
+
@entity model authenticationStrengthPolicy extends entity {
|
|
5762
|
+
allowedCombinations: authenticationMethodModes[];
|
|
5763
|
+
@computed createdDateTime: offsetDateTime;
|
|
5764
|
+
description: string | null;
|
|
5765
|
+
displayName: string;
|
|
5766
|
+
modifiedDateTime: offsetDateTime;
|
|
5767
|
+
policyType: authenticationStrengthPolicyType;
|
|
5768
|
+
requirementsSatisfied: authenticationStrengthRequirements;
|
|
5769
|
+
@contains combinationConfigurations: authenticationCombinationConfiguration[];
|
|
5770
|
+
}
|
|
5771
|
+
|
|
4584
5772
|
@entity model authorizationPolicy extends policyBase {
|
|
4585
5773
|
allowedToSignUpEmailBasedSubscriptions: boolean;
|
|
4586
5774
|
allowedToUseSSPR: boolean;
|
|
@@ -4592,6 +5780,34 @@ namespace reference.`microsoft.graph` {
|
|
|
4592
5780
|
guestUserRoleId: guid | null;
|
|
4593
5781
|
}
|
|
4594
5782
|
|
|
5783
|
+
@abstract
|
|
5784
|
+
@entity model baseItem extends entity {
|
|
5785
|
+
createdBy: identitySet | null;
|
|
5786
|
+
@computed createdDateTime: offsetDateTime;
|
|
5787
|
+
description: string | null;
|
|
5788
|
+
eTag: string | null;
|
|
5789
|
+
lastModifiedBy: identitySet | null;
|
|
5790
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
5791
|
+
name: string | null;
|
|
5792
|
+
parentReference: itemReference | null;
|
|
5793
|
+
webUrl: string | null;
|
|
5794
|
+
@references createdByUser: user | null;
|
|
5795
|
+
@references lastModifiedByUser: user | null;
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
@abstract
|
|
5799
|
+
@entity model baseItemVersion extends entity {
|
|
5800
|
+
lastModifiedBy: identitySet | null;
|
|
5801
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
5802
|
+
publication: publicationFacet | null;
|
|
5803
|
+
}
|
|
5804
|
+
|
|
5805
|
+
@entity model baseSitePage extends baseItem {
|
|
5806
|
+
pageLayout: pageLayoutType | null;
|
|
5807
|
+
publishingState: publicationFacet | null;
|
|
5808
|
+
title: string | null;
|
|
5809
|
+
}
|
|
5810
|
+
|
|
4595
5811
|
@entity model bitlocker extends entity {
|
|
4596
5812
|
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
4597
5813
|
}
|
|
@@ -4646,11 +5862,55 @@ namespace reference.`microsoft.graph` {
|
|
|
4646
5862
|
suggestedCalendarName: string | null;
|
|
4647
5863
|
}
|
|
4648
5864
|
|
|
5865
|
+
@entity model canvasLayout extends entity {
|
|
5866
|
+
@contains horizontalSections: horizontalSection[];
|
|
5867
|
+
@contains verticalSection: verticalSection | null;
|
|
5868
|
+
}
|
|
5869
|
+
|
|
4649
5870
|
@entity model certificateBasedAuthConfiguration extends entity {
|
|
4650
5871
|
certificateAuthorities: certificateAuthority[];
|
|
4651
5872
|
}
|
|
4652
5873
|
|
|
4653
|
-
@entity model claimsMappingPolicy extends stsPolicy {
|
|
5874
|
+
@entity model claimsMappingPolicy extends stsPolicy {
|
|
5875
|
+
}
|
|
5876
|
+
|
|
5877
|
+
@entity model columnDefinition extends entity {
|
|
5878
|
+
`boolean`: booleanColumn | null;
|
|
5879
|
+
calculated: calculatedColumn | null;
|
|
5880
|
+
choice: choiceColumn | null;
|
|
5881
|
+
columnGroup: string | null;
|
|
5882
|
+
contentApprovalStatus: contentApprovalStatusColumn | null;
|
|
5883
|
+
currency: currencyColumn | null;
|
|
5884
|
+
dateTime: dateTimeColumn | null;
|
|
5885
|
+
defaultValue: defaultColumnValue | null;
|
|
5886
|
+
description: string | null;
|
|
5887
|
+
displayName: string | null;
|
|
5888
|
+
enforceUniqueValues: boolean | null;
|
|
5889
|
+
geolocation: geolocationColumn | null;
|
|
5890
|
+
hidden: boolean | null;
|
|
5891
|
+
hyperlinkOrPicture: hyperlinkOrPictureColumn | null;
|
|
5892
|
+
indexed: boolean | null;
|
|
5893
|
+
isDeletable: boolean | null;
|
|
5894
|
+
isReorderable: boolean | null;
|
|
5895
|
+
isSealed: boolean | null;
|
|
5896
|
+
lookup: lookupColumn | null;
|
|
5897
|
+
name: string | null;
|
|
5898
|
+
number: numberColumn | null;
|
|
5899
|
+
personOrGroup: personOrGroupColumn | null;
|
|
5900
|
+
propagateChanges: boolean | null;
|
|
5901
|
+
readOnly: boolean | null;
|
|
5902
|
+
required: boolean | null;
|
|
5903
|
+
sourceContentType: contentTypeInfo | null;
|
|
5904
|
+
term: termColumn | null;
|
|
5905
|
+
text: textColumn | null;
|
|
5906
|
+
thumbnail: thumbnailColumn | null;
|
|
5907
|
+
type: columnTypes | null;
|
|
5908
|
+
validation: columnValidation | null;
|
|
5909
|
+
@references sourceColumn: columnDefinition | null;
|
|
5910
|
+
}
|
|
5911
|
+
|
|
5912
|
+
@entity model columnLink extends entity {
|
|
5913
|
+
name: string | null;
|
|
4654
5914
|
}
|
|
4655
5915
|
|
|
4656
5916
|
@entity model companySubscription extends entity {
|
|
@@ -4710,6 +5970,33 @@ namespace reference.`microsoft.graph` {
|
|
|
4710
5970
|
partnerState: deviceManagementPartnerTenantState;
|
|
4711
5971
|
}
|
|
4712
5972
|
|
|
5973
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
5974
|
+
conditions: conditionalAccessConditionSet;
|
|
5975
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
5976
|
+
description: string | null;
|
|
5977
|
+
displayName: string;
|
|
5978
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
5979
|
+
@computed @key id: string;
|
|
5980
|
+
modifiedDateTime: offsetDateTime | null;
|
|
5981
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
5982
|
+
state: conditionalAccessPolicyState;
|
|
5983
|
+
templateId: string | null;
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5986
|
+
@entity model conditionalAccessRoot extends entity {
|
|
5987
|
+
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
5988
|
+
@contains namedLocations: namedLocation[];
|
|
5989
|
+
@contains policies: conditionalAccessPolicy[];
|
|
5990
|
+
@contains templates: conditionalAccessTemplate[];
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5993
|
+
@entity model conditionalAccessTemplate extends entity {
|
|
5994
|
+
description: string;
|
|
5995
|
+
details: conditionalAccessPolicyDetail;
|
|
5996
|
+
name: string;
|
|
5997
|
+
scenarios: templateScenarios;
|
|
5998
|
+
}
|
|
5999
|
+
|
|
4713
6000
|
@open
|
|
4714
6001
|
@entity model contact extends outlookItem {
|
|
4715
6002
|
assistantName: string | null;
|
|
@@ -4760,6 +6047,28 @@ namespace reference.`microsoft.graph` {
|
|
|
4760
6047
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
4761
6048
|
}
|
|
4762
6049
|
|
|
6050
|
+
@entity model contentType extends entity {
|
|
6051
|
+
associatedHubsUrls: string[] | null;
|
|
6052
|
+
description: string | null;
|
|
6053
|
+
documentSet: documentSet | null;
|
|
6054
|
+
documentTemplate: documentSetContent | null;
|
|
6055
|
+
group: string | null;
|
|
6056
|
+
hidden: boolean | null;
|
|
6057
|
+
inheritedFrom: itemReference | null;
|
|
6058
|
+
isBuiltIn: boolean | null;
|
|
6059
|
+
name: string | null;
|
|
6060
|
+
order: contentTypeOrder | null;
|
|
6061
|
+
parentId: string | null;
|
|
6062
|
+
propagateChanges: boolean | null;
|
|
6063
|
+
readOnly: boolean | null;
|
|
6064
|
+
sealed: boolean | null;
|
|
6065
|
+
@references base: contentType | null;
|
|
6066
|
+
@references baseTypes: contentType[];
|
|
6067
|
+
@contains columnLinks: columnLink[];
|
|
6068
|
+
@references columnPositions: columnDefinition[];
|
|
6069
|
+
@contains columns: columnDefinition[];
|
|
6070
|
+
}
|
|
6071
|
+
|
|
4763
6072
|
@open
|
|
4764
6073
|
@entity model contract extends directoryObject {
|
|
4765
6074
|
contractType: string | null;
|
|
@@ -4789,6 +6098,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4789
6098
|
@contains posts: post[];
|
|
4790
6099
|
}
|
|
4791
6100
|
|
|
6101
|
+
@entity model countryNamedLocation extends namedLocation {
|
|
6102
|
+
countriesAndRegions: string[];
|
|
6103
|
+
countryLookupMethod: countryLookupMethodType | null;
|
|
6104
|
+
includeUnknownCountriesAndRegions: boolean;
|
|
6105
|
+
}
|
|
6106
|
+
|
|
4792
6107
|
@entity model crossTenantAccessPolicy extends policyBase {
|
|
4793
6108
|
@contains default: crossTenantAccessPolicyConfigurationDefault | null;
|
|
4794
6109
|
@contains partners: crossTenantAccessPolicyConfigurationPartner[];
|
|
@@ -6336,6 +7651,20 @@ namespace reference.`microsoft.graph` {
|
|
|
6336
7651
|
@contains subscriptions: companySubscription[];
|
|
6337
7652
|
}
|
|
6338
7653
|
|
|
7654
|
+
@entity model directoryAudit extends entity {
|
|
7655
|
+
activityDateTime: offsetDateTime;
|
|
7656
|
+
activityDisplayName: string;
|
|
7657
|
+
additionalDetails: keyValue[] | null;
|
|
7658
|
+
category: string;
|
|
7659
|
+
correlationId: string | null;
|
|
7660
|
+
initiatedBy: auditActivityInitiator;
|
|
7661
|
+
loggedByService: string | null;
|
|
7662
|
+
operationType: string | null;
|
|
7663
|
+
result: operationResult | null;
|
|
7664
|
+
resultReason: string | null;
|
|
7665
|
+
targetResources: targetResource[] | null;
|
|
7666
|
+
}
|
|
7667
|
+
|
|
6339
7668
|
@open
|
|
6340
7669
|
@entity model directoryObject extends entity {
|
|
6341
7670
|
deletedDateTime: offsetDateTime | null;
|
|
@@ -6362,6 +7691,14 @@ namespace reference.`microsoft.graph` {
|
|
|
6362
7691
|
displayName: string | null;
|
|
6363
7692
|
}
|
|
6364
7693
|
|
|
7694
|
+
@entity model documentSetVersion extends listItemVersion {
|
|
7695
|
+
comment: string | null;
|
|
7696
|
+
createdBy: identitySet | null;
|
|
7697
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7698
|
+
items: documentSetVersionItem[] | null;
|
|
7699
|
+
shouldCaptureMinorVersion: boolean | null;
|
|
7700
|
+
}
|
|
7701
|
+
|
|
6365
7702
|
@entity model domain extends entity {
|
|
6366
7703
|
authenticationType: string;
|
|
6367
7704
|
availabilityStatus: string | null;
|
|
@@ -6417,6 +7754,61 @@ namespace reference.`microsoft.graph` {
|
|
|
6417
7754
|
description: string | null;
|
|
6418
7755
|
}
|
|
6419
7756
|
|
|
7757
|
+
@entity model drive extends baseItem {
|
|
7758
|
+
driveType: string | null;
|
|
7759
|
+
owner: identitySet | null;
|
|
7760
|
+
quota: quota | null;
|
|
7761
|
+
sharePointIds: sharepointIds | null;
|
|
7762
|
+
system: systemFacet | null;
|
|
7763
|
+
@contains bundles: driveItem[];
|
|
7764
|
+
@contains following: driveItem[];
|
|
7765
|
+
@contains items: driveItem[];
|
|
7766
|
+
@contains list: list | null;
|
|
7767
|
+
@contains root: driveItem | null;
|
|
7768
|
+
@contains special: driveItem[];
|
|
7769
|
+
}
|
|
7770
|
+
|
|
7771
|
+
@open
|
|
7772
|
+
@entity model driveItem extends baseItem {
|
|
7773
|
+
audio: audio | null;
|
|
7774
|
+
bundle: bundle | null;
|
|
7775
|
+
content: stream | null;
|
|
7776
|
+
cTag: string | null;
|
|
7777
|
+
deleted: deleted | null;
|
|
7778
|
+
file: file | null;
|
|
7779
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
7780
|
+
folder: folder | null;
|
|
7781
|
+
image: image | null;
|
|
7782
|
+
location: geoCoordinates | null;
|
|
7783
|
+
malware: malware | null;
|
|
7784
|
+
`package`: `package` | null;
|
|
7785
|
+
pendingOperations: pendingOperations | null;
|
|
7786
|
+
photo: photo | null;
|
|
7787
|
+
publication: publicationFacet | null;
|
|
7788
|
+
remoteItem: remoteItem | null;
|
|
7789
|
+
root: root | null;
|
|
7790
|
+
searchResult: searchResult | null;
|
|
7791
|
+
shared: shared | null;
|
|
7792
|
+
sharepointIds: sharepointIds | null;
|
|
7793
|
+
size: int64 | null;
|
|
7794
|
+
specialFolder: specialFolder | null;
|
|
7795
|
+
video: video | null;
|
|
7796
|
+
webDavUrl: string | null;
|
|
7797
|
+
@references analytics: itemAnalytics | null;
|
|
7798
|
+
@contains children: driveItem[];
|
|
7799
|
+
@contains listItem: listItem | null;
|
|
7800
|
+
@contains permissions: permission[];
|
|
7801
|
+
@contains retentionLabel: itemRetentionLabel | null;
|
|
7802
|
+
@contains subscriptions: subscription[];
|
|
7803
|
+
@contains thumbnails: thumbnailSet[];
|
|
7804
|
+
@contains versions: driveItemVersion[];
|
|
7805
|
+
}
|
|
7806
|
+
|
|
7807
|
+
@entity model driveItemVersion extends baseItemVersion {
|
|
7808
|
+
content: stream | null;
|
|
7809
|
+
size: int64 | null;
|
|
7810
|
+
}
|
|
7811
|
+
|
|
6420
7812
|
/**
|
|
6421
7813
|
* Contains properties for the installation summary of a book for a device.
|
|
6422
7814
|
*/
|
|
@@ -6671,7 +8063,15 @@ namespace reference.`microsoft.graph` {
|
|
|
6671
8063
|
description: string | null;
|
|
6672
8064
|
issuer: string;
|
|
6673
8065
|
name: string;
|
|
6674
|
-
subject: string;
|
|
8066
|
+
subject: string | null;
|
|
8067
|
+
}
|
|
8068
|
+
|
|
8069
|
+
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
8070
|
+
allowedAAGUIDs: string[];
|
|
8071
|
+
}
|
|
8072
|
+
|
|
8073
|
+
@open
|
|
8074
|
+
@entity model fieldValueSet extends entity {
|
|
6675
8075
|
}
|
|
6676
8076
|
|
|
6677
8077
|
@entity model fileAttachment extends attachment {
|
|
@@ -6680,6 +8080,61 @@ namespace reference.`microsoft.graph` {
|
|
|
6680
8080
|
contentLocation: string | null;
|
|
6681
8081
|
}
|
|
6682
8082
|
|
|
8083
|
+
@entity model fileStorage extends entity {
|
|
8084
|
+
@contains containers: fileStorageContainer[];
|
|
8085
|
+
@contains containerTypeRegistrations: fileStorageContainerTypeRegistration[];
|
|
8086
|
+
@contains containerTypes: fileStorageContainerType[];
|
|
8087
|
+
@contains deletedContainers: fileStorageContainer[];
|
|
8088
|
+
}
|
|
8089
|
+
|
|
8090
|
+
@entity model fileStorageContainer extends entity {
|
|
8091
|
+
assignedSensitivityLabel: assignedLabel | null;
|
|
8092
|
+
containerTypeId: guid;
|
|
8093
|
+
@computed createdDateTime: offsetDateTime;
|
|
8094
|
+
customProperties: fileStorageContainerCustomPropertyDictionary | null;
|
|
8095
|
+
description: string | null;
|
|
8096
|
+
displayName: string;
|
|
8097
|
+
lockState: siteLockState | null;
|
|
8098
|
+
settings: fileStorageContainerSettings;
|
|
8099
|
+
status: fileStorageContainerStatus | null;
|
|
8100
|
+
viewpoint: fileStorageContainerViewpoint | null;
|
|
8101
|
+
@contains columns: columnDefinition[];
|
|
8102
|
+
@contains drive: drive | null;
|
|
8103
|
+
@contains migrationJobs: sharePointMigrationJob[];
|
|
8104
|
+
@contains permissions: permission[];
|
|
8105
|
+
@contains recycleBin: recycleBin | null;
|
|
8106
|
+
@contains sharePointGroups: sharePointGroup[];
|
|
8107
|
+
}
|
|
8108
|
+
|
|
8109
|
+
@entity model fileStorageContainerType extends entity {
|
|
8110
|
+
billingClassification: fileStorageContainerBillingClassification;
|
|
8111
|
+
billingStatus: fileStorageContainerBillingStatus;
|
|
8112
|
+
@computed createdDateTime: offsetDateTime;
|
|
8113
|
+
etag: string;
|
|
8114
|
+
expirationDateTime: offsetDateTime;
|
|
8115
|
+
name: string;
|
|
8116
|
+
owningAppId: guid;
|
|
8117
|
+
settings: fileStorageContainerTypeSettings;
|
|
8118
|
+
}
|
|
8119
|
+
|
|
8120
|
+
@entity model fileStorageContainerTypeAppPermissionGrant extends MsGraph.SharedModels.entity {
|
|
8121
|
+
@computed @key appId: string;
|
|
8122
|
+
applicationPermissions: fileStorageContainerTypeAppPermission[] | null;
|
|
8123
|
+
delegatedPermissions: fileStorageContainerTypeAppPermission[] | null;
|
|
8124
|
+
}
|
|
8125
|
+
|
|
8126
|
+
@entity model fileStorageContainerTypeRegistration extends entity {
|
|
8127
|
+
billingClassification: fileStorageContainerBillingClassification;
|
|
8128
|
+
billingStatus: fileStorageContainerBillingStatus;
|
|
8129
|
+
etag: string;
|
|
8130
|
+
expirationDateTime: offsetDateTime;
|
|
8131
|
+
name: string;
|
|
8132
|
+
owningAppId: guid;
|
|
8133
|
+
registeredDateTime: offsetDateTime;
|
|
8134
|
+
settings: fileStorageContainerTypeRegistrationSettings;
|
|
8135
|
+
@contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
|
|
8136
|
+
}
|
|
8137
|
+
|
|
6683
8138
|
@open
|
|
6684
8139
|
@entity model group extends directoryObject {
|
|
6685
8140
|
allowExternalSenders: boolean | null;
|
|
@@ -6732,6 +8187,8 @@ namespace reference.`microsoft.graph` {
|
|
|
6732
8187
|
@contains calendarView: event[];
|
|
6733
8188
|
@contains conversations: conversation[];
|
|
6734
8189
|
@references createdOnBehalfOf: directoryObject | null;
|
|
8190
|
+
@contains drive: drive | null;
|
|
8191
|
+
@contains drives: drive[];
|
|
6735
8192
|
@contains events: event[];
|
|
6736
8193
|
@contains extensions: extension[];
|
|
6737
8194
|
@contains groupLifecyclePolicies: groupLifecyclePolicy[];
|
|
@@ -6745,6 +8202,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6745
8202
|
@contains photos: profilePhoto[];
|
|
6746
8203
|
@contains rejectedSenders: directoryObject[];
|
|
6747
8204
|
@contains settings: groupSetting[];
|
|
8205
|
+
@contains sites: site[];
|
|
6748
8206
|
@contains threads: conversationThread[];
|
|
6749
8207
|
@references transitiveMemberOf: directoryObject[];
|
|
6750
8208
|
@references transitiveMembers: directoryObject[];
|
|
@@ -6773,7 +8231,19 @@ namespace reference.`microsoft.graph` {
|
|
|
6773
8231
|
@entity model homeRealmDiscoveryPolicy extends stsPolicy {
|
|
6774
8232
|
}
|
|
6775
8233
|
|
|
8234
|
+
@entity model horizontalSection extends entity {
|
|
8235
|
+
emphasis: sectionEmphasisType | null;
|
|
8236
|
+
layout: horizontalSectionLayoutType | null;
|
|
8237
|
+
@contains columns: horizontalSectionColumn[];
|
|
8238
|
+
}
|
|
8239
|
+
|
|
8240
|
+
@entity model horizontalSectionColumn extends entity {
|
|
8241
|
+
width: int32 | null;
|
|
8242
|
+
@contains webparts: webPart[];
|
|
8243
|
+
}
|
|
8244
|
+
|
|
6776
8245
|
@entity model identityContainer extends MsGraph.SharedModels.entity {
|
|
8246
|
+
@contains conditionalAccess: conditionalAccessRoot | null;
|
|
6777
8247
|
}
|
|
6778
8248
|
|
|
6779
8249
|
@entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
|
|
@@ -6788,6 +8258,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6788
8258
|
displayName: string | null;
|
|
6789
8259
|
}
|
|
6790
8260
|
|
|
8261
|
+
@entity model identitySecurityDefaultsEnforcementPolicy extends policyBase {
|
|
8262
|
+
isEnabled: boolean;
|
|
8263
|
+
}
|
|
8264
|
+
|
|
6791
8265
|
/**
|
|
6792
8266
|
* Imported windows autopilot devices.
|
|
6793
8267
|
*/
|
|
@@ -7819,16 +9293,86 @@ namespace reference.`microsoft.graph` {
|
|
|
7819
9293
|
@entity model iosVppEBookAssignment extends managedEBookAssignment {
|
|
7820
9294
|
}
|
|
7821
9295
|
|
|
9296
|
+
@entity model ipNamedLocation extends namedLocation {
|
|
9297
|
+
ipRanges: ipRange[];
|
|
9298
|
+
isTrusted: boolean;
|
|
9299
|
+
}
|
|
9300
|
+
|
|
9301
|
+
@open
|
|
9302
|
+
@entity model itemActivity extends entity {
|
|
9303
|
+
access: accessAction | null;
|
|
9304
|
+
activityDateTime: offsetDateTime | null;
|
|
9305
|
+
actor: identitySet | null;
|
|
9306
|
+
@contains driveItem: driveItem | null;
|
|
9307
|
+
}
|
|
9308
|
+
|
|
9309
|
+
@open
|
|
9310
|
+
@entity model itemActivityStat extends entity {
|
|
9311
|
+
access: itemActionStat | null;
|
|
9312
|
+
create: itemActionStat | null;
|
|
9313
|
+
delete: itemActionStat | null;
|
|
9314
|
+
edit: itemActionStat | null;
|
|
9315
|
+
endDateTime: offsetDateTime | null;
|
|
9316
|
+
incompleteData: incompleteData | null;
|
|
9317
|
+
isTrending: boolean | null;
|
|
9318
|
+
move: itemActionStat | null;
|
|
9319
|
+
startDateTime: offsetDateTime | null;
|
|
9320
|
+
@references activities: itemActivity[];
|
|
9321
|
+
}
|
|
9322
|
+
|
|
9323
|
+
@open
|
|
9324
|
+
@entity model itemAnalytics extends entity {
|
|
9325
|
+
@references allTime: itemActivityStat | null;
|
|
9326
|
+
@contains itemActivityStats: itemActivityStat[];
|
|
9327
|
+
@references lastSevenDays: itemActivityStat | null;
|
|
9328
|
+
}
|
|
9329
|
+
|
|
7822
9330
|
@entity model itemAttachment extends attachment {
|
|
7823
9331
|
@contains item: outlookItem | null;
|
|
7824
9332
|
}
|
|
7825
9333
|
|
|
9334
|
+
@entity model itemRetentionLabel extends entity {
|
|
9335
|
+
isLabelAppliedExplicitly: boolean | null;
|
|
9336
|
+
labelAppliedBy: identitySet | null;
|
|
9337
|
+
labelAppliedDateTime: offsetDateTime | null;
|
|
9338
|
+
name: string | null;
|
|
9339
|
+
retentionSettings: retentionLabelSettings | null;
|
|
9340
|
+
}
|
|
9341
|
+
|
|
7826
9342
|
@entity model licenseDetails extends entity {
|
|
7827
9343
|
servicePlans: servicePlanInfo[];
|
|
7828
9344
|
skuId: guid | null;
|
|
7829
9345
|
skuPartNumber: string | null;
|
|
7830
9346
|
}
|
|
7831
9347
|
|
|
9348
|
+
@entity model list extends baseItem {
|
|
9349
|
+
displayName: string | null;
|
|
9350
|
+
list: listInfo | null;
|
|
9351
|
+
sharepointIds: sharepointIds | null;
|
|
9352
|
+
system: systemFacet | null;
|
|
9353
|
+
@contains columns: columnDefinition[];
|
|
9354
|
+
@contains contentTypes: contentType[];
|
|
9355
|
+
@contains drive: drive | null;
|
|
9356
|
+
@contains items: listItem[];
|
|
9357
|
+
@contains operations: richLongRunningOperation[];
|
|
9358
|
+
@contains subscriptions: subscription[];
|
|
9359
|
+
}
|
|
9360
|
+
|
|
9361
|
+
@entity model listItem extends baseItem {
|
|
9362
|
+
contentType: contentTypeInfo | null;
|
|
9363
|
+
deleted: deleted | null;
|
|
9364
|
+
sharepointIds: sharepointIds | null;
|
|
9365
|
+
@references analytics: itemAnalytics | null;
|
|
9366
|
+
@contains documentSetVersions: documentSetVersion[];
|
|
9367
|
+
@contains driveItem: driveItem | null;
|
|
9368
|
+
@contains fields: fieldValueSet | null;
|
|
9369
|
+
@contains versions: listItemVersion[];
|
|
9370
|
+
}
|
|
9371
|
+
|
|
9372
|
+
@entity model listItemVersion extends baseItemVersion {
|
|
9373
|
+
@contains fields: fieldValueSet | null;
|
|
9374
|
+
}
|
|
9375
|
+
|
|
7832
9376
|
/**
|
|
7833
9377
|
* The text content of a Notification Message Template for the specified locale.
|
|
7834
9378
|
*/
|
|
@@ -7855,6 +9399,14 @@ namespace reference.`microsoft.graph` {
|
|
|
7855
9399
|
subject: string;
|
|
7856
9400
|
}
|
|
7857
9401
|
|
|
9402
|
+
@entity model longRunningOperation extends entity {
|
|
9403
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
9404
|
+
@computed lastActionDateTime: offsetDateTime | null;
|
|
9405
|
+
resourceLocation: string | null;
|
|
9406
|
+
status: longRunningOperationStatus | null;
|
|
9407
|
+
statusDetail: string | null;
|
|
9408
|
+
}
|
|
9409
|
+
|
|
7858
9410
|
/**
|
|
7859
9411
|
* This class contains compliance settings for Mac OS.
|
|
7860
9412
|
*/
|
|
@@ -9492,6 +11044,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9492
11044
|
value: string[] | null;
|
|
9493
11045
|
}
|
|
9494
11046
|
|
|
11047
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
11048
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11049
|
+
displayName: string;
|
|
11050
|
+
@computed @key id: string;
|
|
11051
|
+
modifiedDateTime: offsetDateTime | null;
|
|
11052
|
+
}
|
|
11053
|
+
|
|
9495
11054
|
/**
|
|
9496
11055
|
* Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
|
|
9497
11056
|
*/
|
|
@@ -9681,8 +11240,34 @@ namespace reference.`microsoft.graph` {
|
|
|
9681
11240
|
@contains masterCategories: outlookCategory[];
|
|
9682
11241
|
}
|
|
9683
11242
|
|
|
11243
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
11244
|
+
allowedPasskeyProfiles: guid | null;
|
|
11245
|
+
}
|
|
11246
|
+
|
|
9684
11247
|
@entity model peopleAdminSettings extends entity {
|
|
9685
11248
|
@contains itemInsights: insightsSettings | null;
|
|
11249
|
+
@contains profileCardProperties: profileCardProperty[];
|
|
11250
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
11251
|
+
@contains profileSources: profileSource[];
|
|
11252
|
+
@contains pronouns: pronounsSettings | null;
|
|
11253
|
+
}
|
|
11254
|
+
|
|
11255
|
+
@entity model permission extends entity {
|
|
11256
|
+
expirationDateTime: offsetDateTime | null;
|
|
11257
|
+
|
|
11258
|
+
@graphDeprecated("Removal")
|
|
11259
|
+
grantedTo: identitySet | null;
|
|
11260
|
+
|
|
11261
|
+
@graphDeprecated("Removal")
|
|
11262
|
+
grantedToIdentities: identitySet[] | null;
|
|
11263
|
+
grantedToIdentitiesV2: sharePointIdentitySet[] | null;
|
|
11264
|
+
grantedToV2: sharePointIdentitySet | null;
|
|
11265
|
+
hasPassword: boolean | null;
|
|
11266
|
+
inheritedFrom: itemReference | null;
|
|
11267
|
+
invitation: sharingInvitation | null;
|
|
11268
|
+
link: sharingLink | null;
|
|
11269
|
+
roles: string[] | null;
|
|
11270
|
+
shareId: string | null;
|
|
9686
11271
|
}
|
|
9687
11272
|
|
|
9688
11273
|
@entity model permissionGrantConditionSet extends entity {
|
|
@@ -9729,16 +11314,23 @@ namespace reference.`microsoft.graph` {
|
|
|
9729
11314
|
displayName: string | null;
|
|
9730
11315
|
}
|
|
9731
11316
|
|
|
9732
|
-
@
|
|
11317
|
+
@abstract
|
|
11318
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
11319
|
+
deletedDateTime: offsetDateTime | null;
|
|
11320
|
+
}
|
|
11321
|
+
|
|
11322
|
+
@entity model policyRoot extends entity {
|
|
9733
11323
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
9734
11324
|
@contains appManagementPolicies: appManagementPolicy[];
|
|
9735
11325
|
@contains authorizationPolicy: authorizationPolicy | null;
|
|
9736
11326
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
11327
|
+
@contains conditionalAccessPolicies: conditionalAccessPolicy[];
|
|
9737
11328
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
9738
11329
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
9739
11330
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
9740
11331
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
9741
11332
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
11333
|
+
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
9742
11334
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
9743
11335
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
9744
11336
|
@contains tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
@@ -9761,17 +11353,80 @@ namespace reference.`microsoft.graph` {
|
|
|
9761
11353
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
9762
11354
|
}
|
|
9763
11355
|
|
|
11356
|
+
@entity model profileCardProperty extends entity {
|
|
11357
|
+
annotations: profileCardAnnotation[] | null;
|
|
11358
|
+
directoryPropertyName: string | null;
|
|
11359
|
+
isVisible: boolean;
|
|
11360
|
+
}
|
|
11361
|
+
|
|
9764
11362
|
@entity model profilePhoto extends entity {
|
|
9765
11363
|
height: int32 | null;
|
|
9766
11364
|
width: int32 | null;
|
|
9767
11365
|
}
|
|
9768
11366
|
|
|
11367
|
+
@entity model profilePropertySetting extends entity {
|
|
11368
|
+
displayName: string | null;
|
|
11369
|
+
name: string | null;
|
|
11370
|
+
prioritizedSourceUrls: string[];
|
|
11371
|
+
}
|
|
11372
|
+
|
|
11373
|
+
@entity model profileSource extends entity {
|
|
11374
|
+
displayName: string | null;
|
|
11375
|
+
kind: string | null;
|
|
11376
|
+
localizations: profileSourceLocalization[];
|
|
11377
|
+
sourceId: string | null;
|
|
11378
|
+
webUrl: string | null;
|
|
11379
|
+
}
|
|
11380
|
+
|
|
11381
|
+
@entity model pronounsSettings extends entity {
|
|
11382
|
+
isEnabledInOrganization: boolean;
|
|
11383
|
+
}
|
|
11384
|
+
|
|
11385
|
+
@entity model provisioningObjectSummary extends entity {
|
|
11386
|
+
activityDateTime: offsetDateTime;
|
|
11387
|
+
changeId: string | null;
|
|
11388
|
+
cycleId: string | null;
|
|
11389
|
+
durationInMilliseconds: int32 | null;
|
|
11390
|
+
initiatedBy: initiator | null;
|
|
11391
|
+
jobId: string | null;
|
|
11392
|
+
modifiedProperties: modifiedProperty[] | null;
|
|
11393
|
+
provisioningAction: provisioningAction | null;
|
|
11394
|
+
provisioningStatusInfo: provisioningStatusInfo | null;
|
|
11395
|
+
provisioningSteps: provisioningStep[] | null;
|
|
11396
|
+
servicePrincipal: provisioningServicePrincipal | null;
|
|
11397
|
+
sourceIdentity: provisionedIdentity | null;
|
|
11398
|
+
sourceSystem: provisioningSystem | null;
|
|
11399
|
+
targetIdentity: provisionedIdentity | null;
|
|
11400
|
+
targetSystem: provisioningSystem | null;
|
|
11401
|
+
tenantId: string | null;
|
|
11402
|
+
}
|
|
11403
|
+
|
|
11404
|
+
@entity model qrPin extends entity {
|
|
11405
|
+
code: string;
|
|
11406
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11407
|
+
forceChangePinNextSignIn: boolean | null;
|
|
11408
|
+
updatedDateTime: offsetDateTime | null;
|
|
11409
|
+
}
|
|
11410
|
+
|
|
9769
11411
|
@entity model rbacApplication extends entity {
|
|
9770
11412
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
9771
11413
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
9772
11414
|
@contains roleDefinitions: unifiedRoleDefinition[];
|
|
9773
11415
|
}
|
|
9774
11416
|
|
|
11417
|
+
@open
|
|
11418
|
+
@entity model recycleBin extends baseItem {
|
|
11419
|
+
settings: recycleBinSettings | null;
|
|
11420
|
+
@contains items: recycleBinItem[];
|
|
11421
|
+
}
|
|
11422
|
+
|
|
11423
|
+
@open
|
|
11424
|
+
@entity model recycleBinItem extends baseItem {
|
|
11425
|
+
deletedDateTime: offsetDateTime | null;
|
|
11426
|
+
deletedFromLocation: string | null;
|
|
11427
|
+
size: int64 | null;
|
|
11428
|
+
}
|
|
11429
|
+
|
|
9775
11430
|
@entity model referenceAttachment extends attachment {
|
|
9776
11431
|
}
|
|
9777
11432
|
|
|
@@ -9804,6 +11459,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9804
11459
|
}
|
|
9805
11460
|
|
|
9806
11461
|
@entity model reportRoot extends MsGraph.SharedModels.entity {
|
|
11462
|
+
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
9807
11463
|
}
|
|
9808
11464
|
|
|
9809
11465
|
/**
|
|
@@ -9832,6 +11488,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9832
11488
|
resourceAppId: string | null;
|
|
9833
11489
|
}
|
|
9834
11490
|
|
|
11491
|
+
@entity model richLongRunningOperation extends longRunningOperation {
|
|
11492
|
+
error: publicError | null;
|
|
11493
|
+
percentageComplete: int32 | null;
|
|
11494
|
+
resourceId: string | null;
|
|
11495
|
+
type: string | null;
|
|
11496
|
+
}
|
|
11497
|
+
|
|
9835
11498
|
@entity model riskDetection extends entity {
|
|
9836
11499
|
activity: activityType | null;
|
|
9837
11500
|
activityDateTime: offsetDateTime | null;
|
|
@@ -10089,6 +11752,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10089
11752
|
unknownDeviceCount: int32;
|
|
10090
11753
|
}
|
|
10091
11754
|
|
|
11755
|
+
@entity model sharedDriveItem extends baseItem {
|
|
11756
|
+
owner: identitySet | null;
|
|
11757
|
+
@contains driveItem: driveItem | null;
|
|
11758
|
+
@contains items: driveItem[];
|
|
11759
|
+
@contains list: list | null;
|
|
11760
|
+
@contains listItem: listItem | null;
|
|
11761
|
+
@contains permission: permission | null;
|
|
11762
|
+
@contains root: driveItem | null;
|
|
11763
|
+
@contains site: site | null;
|
|
11764
|
+
}
|
|
11765
|
+
|
|
10092
11766
|
/**
|
|
10093
11767
|
* This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource.
|
|
10094
11768
|
*/
|
|
@@ -10143,10 +11817,185 @@ namespace reference.`microsoft.graph` {
|
|
|
10143
11817
|
maintenanceStartTime: offsetDateTime | null;
|
|
10144
11818
|
}
|
|
10145
11819
|
|
|
11820
|
+
@entity model sharepoint extends entity {
|
|
11821
|
+
@contains settings: sharepointSettings | null;
|
|
11822
|
+
}
|
|
11823
|
+
|
|
11824
|
+
@entity model sharePointGroup extends entity {
|
|
11825
|
+
description: string | null;
|
|
11826
|
+
principalId: string | null;
|
|
11827
|
+
title: string;
|
|
11828
|
+
@contains members: sharePointGroupMember[];
|
|
11829
|
+
}
|
|
11830
|
+
|
|
11831
|
+
@entity model sharePointGroupMember extends entity {
|
|
11832
|
+
identity: sharePointIdentitySet | null;
|
|
11833
|
+
}
|
|
11834
|
+
|
|
11835
|
+
@entity model sharePointMigrationEvent extends entity {
|
|
11836
|
+
correlationId: string;
|
|
11837
|
+
eventDateTime: offsetDateTime;
|
|
11838
|
+
jobId: string;
|
|
11839
|
+
}
|
|
11840
|
+
|
|
11841
|
+
@entity model sharePointMigrationFinishManifestFileUploadEvent extends sharePointMigrationEvent {
|
|
11842
|
+
manifestFileName: string;
|
|
11843
|
+
}
|
|
11844
|
+
|
|
11845
|
+
@entity model sharePointMigrationJob extends entity {
|
|
11846
|
+
containerInfo: sharePointMigrationContainerInfo;
|
|
11847
|
+
@contains progressEvents: sharePointMigrationEvent[];
|
|
11848
|
+
}
|
|
11849
|
+
|
|
11850
|
+
@entity model sharePointMigrationJobCancelledEvent extends sharePointMigrationEvent {
|
|
11851
|
+
isCancelledByUser: boolean;
|
|
11852
|
+
totalRetryCount: int32;
|
|
11853
|
+
}
|
|
11854
|
+
|
|
11855
|
+
@entity model sharePointMigrationJobDeletedEvent extends sharePointMigrationEvent {
|
|
11856
|
+
}
|
|
11857
|
+
|
|
11858
|
+
@entity model sharePointMigrationJobErrorEvent extends sharePointMigrationEvent {
|
|
11859
|
+
error: publicError;
|
|
11860
|
+
errorLevel: sharePointMigrationJobErrorLevel;
|
|
11861
|
+
objectId: string;
|
|
11862
|
+
objectType: sharePointMigrationObjectType;
|
|
11863
|
+
objectUrl: string;
|
|
11864
|
+
totalRetryCount: int32;
|
|
11865
|
+
}
|
|
11866
|
+
|
|
11867
|
+
@entity model sharePointMigrationJobPostponedEvent extends sharePointMigrationEvent {
|
|
11868
|
+
jobsInQueue: int64;
|
|
11869
|
+
nextPickupDateTime: offsetDateTime;
|
|
11870
|
+
reason: string;
|
|
11871
|
+
totalRetryCount: int32;
|
|
11872
|
+
}
|
|
11873
|
+
|
|
11874
|
+
@entity model sharePointMigrationJobProgressEvent extends sharePointMigrationEvent {
|
|
11875
|
+
bytesProcessed: int64;
|
|
11876
|
+
bytesProcessedOnlyCurrentVersion: int64;
|
|
11877
|
+
cpuDurationMs: int64;
|
|
11878
|
+
filesProcessed: int64;
|
|
11879
|
+
filesProcessedOnlyCurrentVersion: int64;
|
|
11880
|
+
isCompleted: boolean;
|
|
11881
|
+
lastProcessedObjectId: string;
|
|
11882
|
+
objectsProcessed: int64;
|
|
11883
|
+
sqlDurationMs: int64;
|
|
11884
|
+
sqlQueryCount: int64;
|
|
11885
|
+
totalDurationMs: int64;
|
|
11886
|
+
totalErrors: int64;
|
|
11887
|
+
totalExpectedBytes: int64;
|
|
11888
|
+
totalExpectedObjects: int64;
|
|
11889
|
+
totalRetryCount: int32;
|
|
11890
|
+
totalWarnings: int64;
|
|
11891
|
+
waitTimeOnSqlThrottlingMs: int64;
|
|
11892
|
+
}
|
|
11893
|
+
|
|
11894
|
+
@entity model sharePointMigrationJobQueuedEvent extends sharePointMigrationEvent {
|
|
11895
|
+
}
|
|
11896
|
+
|
|
11897
|
+
@entity model sharePointMigrationJobStartEvent extends sharePointMigrationEvent {
|
|
11898
|
+
isRestarted: boolean;
|
|
11899
|
+
totalRetryCount: int32;
|
|
11900
|
+
}
|
|
11901
|
+
|
|
11902
|
+
@entity model sharepointSettings extends entity {
|
|
11903
|
+
allowedDomainGuidsForSyncApp: guid | null;
|
|
11904
|
+
availableManagedPathsForSiteCreation: string[];
|
|
11905
|
+
deletedUserPersonalSiteRetentionPeriodInDays: int32 | null;
|
|
11906
|
+
excludedFileExtensionsForSyncApp: string[] | null;
|
|
11907
|
+
idleSessionSignOut: idleSessionSignOut | null;
|
|
11908
|
+
imageTaggingOption: imageTaggingChoice | null;
|
|
11909
|
+
isCommentingOnSitePagesEnabled: boolean | null;
|
|
11910
|
+
isFileActivityNotificationEnabled: boolean | null;
|
|
11911
|
+
isLegacyAuthProtocolsEnabled: boolean | null;
|
|
11912
|
+
isLoopEnabled: boolean | null;
|
|
11913
|
+
isMacSyncAppEnabled: boolean | null;
|
|
11914
|
+
isRequireAcceptingUserToMatchInvitedUserEnabled: boolean | null;
|
|
11915
|
+
isResharingByExternalUsersEnabled: boolean | null;
|
|
11916
|
+
isSharePointMobileNotificationEnabled: boolean | null;
|
|
11917
|
+
isSharePointNewsfeedEnabled: boolean | null;
|
|
11918
|
+
isSiteCreationEnabled: boolean | null;
|
|
11919
|
+
isSiteCreationUIEnabled: boolean | null;
|
|
11920
|
+
isSitePagesCreationEnabled: boolean | null;
|
|
11921
|
+
isSitesStorageLimitAutomatic: boolean | null;
|
|
11922
|
+
isSyncButtonHiddenOnPersonalSite: boolean | null;
|
|
11923
|
+
isUnmanagedSyncAppForTenantRestricted: boolean | null;
|
|
11924
|
+
personalSiteDefaultStorageLimitInMB: int64 | null;
|
|
11925
|
+
sharingAllowedDomainList: string[] | null;
|
|
11926
|
+
sharingBlockedDomainList: string[] | null;
|
|
11927
|
+
sharingCapability: sharingCapabilities | null;
|
|
11928
|
+
sharingDomainRestrictionMode: sharingDomainRestrictionMode | null;
|
|
11929
|
+
siteCreationDefaultManagedPath: string;
|
|
11930
|
+
siteCreationDefaultStorageLimitInMB: int32 | null;
|
|
11931
|
+
tenantDefaultTimezone: string | null;
|
|
11932
|
+
}
|
|
11933
|
+
|
|
11934
|
+
@entity model signIn extends entity {
|
|
11935
|
+
appDisplayName: string | null;
|
|
11936
|
+
appId: string | null;
|
|
11937
|
+
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
11938
|
+
clientAppUsed: string | null;
|
|
11939
|
+
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
11940
|
+
correlationId: string | null;
|
|
11941
|
+
@computed createdDateTime: offsetDateTime;
|
|
11942
|
+
deviceDetail: deviceDetail | null;
|
|
11943
|
+
ipAddress: string | null;
|
|
11944
|
+
isInteractive: boolean | null;
|
|
11945
|
+
location: signInLocation | null;
|
|
11946
|
+
resourceDisplayName: string | null;
|
|
11947
|
+
resourceId: string | null;
|
|
11948
|
+
riskDetail: riskDetail | null;
|
|
11949
|
+
riskEventTypes: riskEventType[] | null;
|
|
11950
|
+
riskEventTypes_v2: string[] | null;
|
|
11951
|
+
riskLevelAggregated: riskLevel | null;
|
|
11952
|
+
riskLevelDuringSignIn: riskLevel | null;
|
|
11953
|
+
riskState: riskState | null;
|
|
11954
|
+
status: signInStatus | null;
|
|
11955
|
+
userDisplayName: string | null;
|
|
11956
|
+
userId: string;
|
|
11957
|
+
userPrincipalName: string | null;
|
|
11958
|
+
}
|
|
11959
|
+
|
|
10146
11960
|
@entity model singleValueLegacyExtendedProperty extends entity {
|
|
10147
11961
|
value: string | null;
|
|
10148
11962
|
}
|
|
10149
11963
|
|
|
11964
|
+
@entity model site extends baseItem {
|
|
11965
|
+
displayName: string | null;
|
|
11966
|
+
error: publicError | null;
|
|
11967
|
+
isPersonalSite: boolean | null;
|
|
11968
|
+
root: root | null;
|
|
11969
|
+
sharepointIds: sharepointIds | null;
|
|
11970
|
+
siteCollection: siteCollection | null;
|
|
11971
|
+
@references analytics: itemAnalytics | null;
|
|
11972
|
+
@contains columns: columnDefinition[];
|
|
11973
|
+
@contains contentTypes: contentType[];
|
|
11974
|
+
@contains drive: drive | null;
|
|
11975
|
+
@contains drives: drive[];
|
|
11976
|
+
@references externalColumns: columnDefinition[];
|
|
11977
|
+
@contains items: baseItem[];
|
|
11978
|
+
@contains lists: list[];
|
|
11979
|
+
@contains operations: richLongRunningOperation[];
|
|
11980
|
+
@contains pages: baseSitePage[];
|
|
11981
|
+
@contains permissions: permission[];
|
|
11982
|
+
@contains sites: site[];
|
|
11983
|
+
@contains termStore: reference.`microsoft.graph.termStore`.store | null;
|
|
11984
|
+
@contains termStores: reference.`microsoft.graph.termStore`.store[];
|
|
11985
|
+
}
|
|
11986
|
+
|
|
11987
|
+
@open
|
|
11988
|
+
@entity model sitePage extends baseSitePage {
|
|
11989
|
+
promotionKind: pagePromotionType | null;
|
|
11990
|
+
reactions: reactionsFacet | null;
|
|
11991
|
+
showComments: boolean | null;
|
|
11992
|
+
showRecommendedPages: boolean | null;
|
|
11993
|
+
thumbnailWebUrl: string | null;
|
|
11994
|
+
titleArea: titleArea | null;
|
|
11995
|
+
@contains canvasLayout: canvasLayout | null;
|
|
11996
|
+
@contains webParts: webPart[];
|
|
11997
|
+
}
|
|
11998
|
+
|
|
10150
11999
|
@entity model softwareUpdateStatusSummary extends entity {
|
|
10151
12000
|
/**
|
|
10152
12001
|
* Number of compliant devices.
|
|
@@ -10210,6 +12059,16 @@ namespace reference.`microsoft.graph` {
|
|
|
10210
12059
|
unknownUserCount: int32;
|
|
10211
12060
|
}
|
|
10212
12061
|
|
|
12062
|
+
@entity model standardWebPart extends webPart {
|
|
12063
|
+
containerTextWebPartId: string | null;
|
|
12064
|
+
data: webPartData | null;
|
|
12065
|
+
webPartType: string | null;
|
|
12066
|
+
}
|
|
12067
|
+
|
|
12068
|
+
@entity model storage extends MsGraph.SharedModels.entity {
|
|
12069
|
+
@contains fileStorage: fileStorage | null;
|
|
12070
|
+
}
|
|
12071
|
+
|
|
10213
12072
|
@abstract
|
|
10214
12073
|
@entity model stsPolicy extends policyBase {
|
|
10215
12074
|
definition: string[];
|
|
@@ -10391,6 +12250,18 @@ namespace reference.`microsoft.graph` {
|
|
|
10391
12250
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
10392
12251
|
}
|
|
10393
12252
|
|
|
12253
|
+
@entity model textWebPart extends webPart {
|
|
12254
|
+
innerHtml: string | null;
|
|
12255
|
+
}
|
|
12256
|
+
|
|
12257
|
+
@open
|
|
12258
|
+
@entity model thumbnailSet extends entity {
|
|
12259
|
+
large: thumbnail | null;
|
|
12260
|
+
medium: thumbnail | null;
|
|
12261
|
+
small: thumbnail | null;
|
|
12262
|
+
source: thumbnail | null;
|
|
12263
|
+
}
|
|
12264
|
+
|
|
10394
12265
|
@entity model tokenIssuancePolicy extends stsPolicy {
|
|
10395
12266
|
}
|
|
10396
12267
|
|
|
@@ -10508,6 +12379,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10508
12379
|
schools: string[] | null;
|
|
10509
12380
|
securityIdentifier: string | null;
|
|
10510
12381
|
showInAddressList: boolean | null;
|
|
12382
|
+
signInActivity: signInActivity | null;
|
|
10511
12383
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
10512
12384
|
skills: string[] | null;
|
|
10513
12385
|
state: string | null;
|
|
@@ -10529,8 +12401,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10529
12401
|
*/
|
|
10530
12402
|
@contains deviceManagementTroubleshootingEvents: deviceManagementTroubleshootingEvent[];
|
|
10531
12403
|
@references directReports: directoryObject[];
|
|
12404
|
+
@contains drive: drive | null;
|
|
12405
|
+
@contains drives: drive[];
|
|
10532
12406
|
@contains events: event[];
|
|
10533
12407
|
@contains extensions: extension[];
|
|
12408
|
+
@references followedSites: site[];
|
|
10534
12409
|
@contains inferenceClassification: inferenceClassification | null;
|
|
10535
12410
|
@contains licenseDetails: licenseDetails[];
|
|
10536
12411
|
@contains mailFolders: mailFolder[];
|
|
@@ -11541,10 +13416,33 @@ namespace reference.`microsoft.graph` {
|
|
|
11541
13416
|
@contains deviceStates: deviceInstallState[];
|
|
11542
13417
|
}
|
|
11543
13418
|
|
|
13419
|
+
@entity model userRegistrationDetails extends entity {
|
|
13420
|
+
isAdmin: boolean | null;
|
|
13421
|
+
isMfaCapable: boolean;
|
|
13422
|
+
isMfaRegistered: boolean;
|
|
13423
|
+
isPasswordlessCapable: boolean;
|
|
13424
|
+
isSsprCapable: boolean;
|
|
13425
|
+
isSsprEnabled: boolean;
|
|
13426
|
+
isSsprRegistered: boolean;
|
|
13427
|
+
isSystemPreferredAuthenticationMethodEnabled: boolean | null;
|
|
13428
|
+
@computed lastUpdatedDateTime: offsetDateTime;
|
|
13429
|
+
methodsRegistered: string[] | null;
|
|
13430
|
+
systemPreferredAuthenticationMethods: string[] | null;
|
|
13431
|
+
userDisplayName: string;
|
|
13432
|
+
userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethod | null;
|
|
13433
|
+
userPrincipalName: string;
|
|
13434
|
+
userType: signInUserType | null;
|
|
13435
|
+
}
|
|
13436
|
+
|
|
11544
13437
|
@entity model userSettings extends entity {
|
|
11545
13438
|
@contains itemInsights: userInsightsSettings | null;
|
|
11546
13439
|
}
|
|
11547
13440
|
|
|
13441
|
+
@entity model verticalSection extends entity {
|
|
13442
|
+
emphasis: sectionEmphasisType | null;
|
|
13443
|
+
@contains webparts: webPart[];
|
|
13444
|
+
}
|
|
13445
|
+
|
|
11548
13446
|
/**
|
|
11549
13447
|
* You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
|
|
11550
13448
|
*/
|
|
@@ -11609,6 +13507,15 @@ namespace reference.`microsoft.graph` {
|
|
|
11609
13507
|
useManagedBrowser: boolean;
|
|
11610
13508
|
}
|
|
11611
13509
|
|
|
13510
|
+
@abstract
|
|
13511
|
+
@entity model webPart extends entity {
|
|
13512
|
+
}
|
|
13513
|
+
|
|
13514
|
+
@entity model whatIfAnalysisResult extends conditionalAccessPolicy {
|
|
13515
|
+
analysisReasons: whatIfAnalysisReasons;
|
|
13516
|
+
policyApplies: boolean;
|
|
13517
|
+
}
|
|
13518
|
+
|
|
11612
13519
|
/**
|
|
11613
13520
|
* Contains properties and inherited properties for Win32 apps.
|
|
11614
13521
|
*/
|
|
@@ -14111,6 +16018,11 @@ namespace reference.`microsoft.graph` {
|
|
|
14111
16018
|
appUrl: string | null;
|
|
14112
16019
|
}
|
|
14113
16020
|
|
|
16021
|
+
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
16022
|
+
allowedIssuerSkis: string[];
|
|
16023
|
+
allowedPolicyOIDs: string[];
|
|
16024
|
+
}
|
|
16025
|
+
|
|
14114
16026
|
/**
|
|
14115
16027
|
* State of the action on the device
|
|
14116
16028
|
*/
|
|
@@ -14161,6 +16073,13 @@ namespace reference.`microsoft.graph` {
|
|
|
14161
16073
|
servicePrincipal: 3,
|
|
14162
16074
|
}
|
|
14163
16075
|
|
|
16076
|
+
enum advancedConfigState {
|
|
16077
|
+
default: 0,
|
|
16078
|
+
enabled: 1,
|
|
16079
|
+
disabled: 2,
|
|
16080
|
+
unknownFutureValue: 3,
|
|
16081
|
+
}
|
|
16082
|
+
|
|
14164
16083
|
enum allowInvitesFrom {
|
|
14165
16084
|
none: 0,
|
|
14166
16085
|
adminsAndGuestInviters: 1,
|
|
@@ -14376,6 +16295,19 @@ namespace reference.`microsoft.graph` {
|
|
|
14376
16295
|
desktop: 2,
|
|
14377
16296
|
}
|
|
14378
16297
|
|
|
16298
|
+
enum appliedConditionalAccessPolicyResult {
|
|
16299
|
+
success: 0,
|
|
16300
|
+
failure: 1,
|
|
16301
|
+
notApplied: 2,
|
|
16302
|
+
notEnabled: 3,
|
|
16303
|
+
`unknown`: 4,
|
|
16304
|
+
unknownFutureValue: 5,
|
|
16305
|
+
reportOnlySuccess: 6,
|
|
16306
|
+
reportOnlyFailure: 7,
|
|
16307
|
+
reportOnlyNotApplied: 8,
|
|
16308
|
+
reportOnlyInterrupted: 9,
|
|
16309
|
+
}
|
|
16310
|
+
|
|
14379
16311
|
/**
|
|
14380
16312
|
* Possible values of the compliance app list.
|
|
14381
16313
|
*/
|
|
@@ -14469,12 +16401,121 @@ namespace reference.`microsoft.graph` {
|
|
|
14469
16401
|
resource: 2,
|
|
14470
16402
|
}
|
|
14471
16403
|
|
|
16404
|
+
enum attestationEnforcement {
|
|
16405
|
+
disabled: 0,
|
|
16406
|
+
registrationOnly: 1,
|
|
16407
|
+
unknownFutureValue: 2,
|
|
16408
|
+
}
|
|
16409
|
+
|
|
16410
|
+
enum attestationLevel {
|
|
16411
|
+
attested: 0,
|
|
16412
|
+
notAttested: 1,
|
|
16413
|
+
unknownFutureValue: 2,
|
|
16414
|
+
}
|
|
16415
|
+
|
|
16416
|
+
enum authenticationMethodFeature {
|
|
16417
|
+
ssprRegistered: 0,
|
|
16418
|
+
ssprEnabled: 1,
|
|
16419
|
+
ssprCapable: 2,
|
|
16420
|
+
passwordlessCapable: 3,
|
|
16421
|
+
mfaCapable: 4,
|
|
16422
|
+
unknownFutureValue: 5,
|
|
16423
|
+
}
|
|
16424
|
+
|
|
16425
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16426
|
+
enum authenticationMethodKeyStrength {
|
|
16427
|
+
normal: 0,
|
|
16428
|
+
weak: 1,
|
|
16429
|
+
`unknown`: 2,
|
|
16430
|
+
}
|
|
16431
|
+
|
|
16432
|
+
@graphFlags
|
|
16433
|
+
enum authenticationMethodModes {
|
|
16434
|
+
password: 1,
|
|
16435
|
+
voice: 2,
|
|
16436
|
+
hardwareOath: 4,
|
|
16437
|
+
softwareOath: 8,
|
|
16438
|
+
sms: 16,
|
|
16439
|
+
fido2: 32,
|
|
16440
|
+
windowsHelloForBusiness: 64,
|
|
16441
|
+
microsoftAuthenticatorPush: 128,
|
|
16442
|
+
deviceBasedPush: 256,
|
|
16443
|
+
temporaryAccessPassOneTime: 512,
|
|
16444
|
+
temporaryAccessPassMultiUse: 1024,
|
|
16445
|
+
email: 2048,
|
|
16446
|
+
x509CertificateSingleFactor: 4096,
|
|
16447
|
+
x509CertificateMultiFactor: 8192,
|
|
16448
|
+
federatedSingleFactor: 16384,
|
|
16449
|
+
federatedMultiFactor: 32768,
|
|
16450
|
+
unknownFutureValue: 65536,
|
|
16451
|
+
qrCodePin: 131072,
|
|
16452
|
+
}
|
|
16453
|
+
|
|
16454
|
+
enum authenticationMethodPlatform {
|
|
16455
|
+
`unknown`: 0,
|
|
16456
|
+
windows: 1,
|
|
16457
|
+
macOS: 2,
|
|
16458
|
+
iOS: 3,
|
|
16459
|
+
android: 4,
|
|
16460
|
+
linux: 5,
|
|
16461
|
+
unknownFutureValue: 6,
|
|
16462
|
+
}
|
|
16463
|
+
|
|
16464
|
+
enum authenticationMethodSignInState {
|
|
16465
|
+
notSupported: 0,
|
|
16466
|
+
notAllowedByPolicy: 1,
|
|
16467
|
+
notEnabled: 2,
|
|
16468
|
+
phoneNumberNotUnique: 3,
|
|
16469
|
+
ready: 4,
|
|
16470
|
+
notConfigured: 5,
|
|
16471
|
+
unknownFutureValue: 6,
|
|
16472
|
+
}
|
|
16473
|
+
|
|
16474
|
+
enum authenticationMethodsPolicyMigrationState {
|
|
16475
|
+
preMigration: 0,
|
|
16476
|
+
migrationInProgress: 1,
|
|
16477
|
+
migrationComplete: 2,
|
|
16478
|
+
unknownFutureValue: 3,
|
|
16479
|
+
}
|
|
16480
|
+
|
|
16481
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16482
|
+
enum authenticationMethodState {
|
|
16483
|
+
enabled: 0,
|
|
16484
|
+
disabled: 1,
|
|
16485
|
+
}
|
|
16486
|
+
|
|
16487
|
+
enum authenticationMethodTargetType {
|
|
16488
|
+
user: 0,
|
|
16489
|
+
group: 1,
|
|
16490
|
+
unknownFutureValue: 2,
|
|
16491
|
+
}
|
|
16492
|
+
|
|
16493
|
+
enum authenticationPhoneType {
|
|
16494
|
+
mobile: 0,
|
|
16495
|
+
alternateMobile: 1,
|
|
16496
|
+
office: 2,
|
|
16497
|
+
unknownFutureValue: 3,
|
|
16498
|
+
}
|
|
16499
|
+
|
|
14472
16500
|
enum authenticationProtocol {
|
|
14473
16501
|
wsFed: 0,
|
|
14474
16502
|
saml: 1,
|
|
14475
16503
|
unknownFutureValue: 2,
|
|
14476
16504
|
}
|
|
14477
16505
|
|
|
16506
|
+
enum authenticationStrengthPolicyType {
|
|
16507
|
+
builtIn: 0,
|
|
16508
|
+
custom: 1,
|
|
16509
|
+
unknownFutureValue: 2,
|
|
16510
|
+
}
|
|
16511
|
+
|
|
16512
|
+
@graphFlags
|
|
16513
|
+
enum authenticationStrengthRequirements {
|
|
16514
|
+
none: 0,
|
|
16515
|
+
mfa: 1,
|
|
16516
|
+
unknownFutureValue: 2,
|
|
16517
|
+
}
|
|
16518
|
+
|
|
14478
16519
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
14479
16520
|
enum automaticRepliesStatus {
|
|
14480
16521
|
disabled: 0,
|
|
@@ -14542,6 +16583,23 @@ namespace reference.`microsoft.graph` {
|
|
|
14542
16583
|
unknownFutureValue: 7,
|
|
14543
16584
|
}
|
|
14544
16585
|
|
|
16586
|
+
enum baseAuthenticationMethod {
|
|
16587
|
+
password: 1,
|
|
16588
|
+
voice: 2,
|
|
16589
|
+
hardwareOath: 3,
|
|
16590
|
+
softwareOath: 4,
|
|
16591
|
+
sms: 5,
|
|
16592
|
+
fido2: 6,
|
|
16593
|
+
windowsHelloForBusiness: 7,
|
|
16594
|
+
microsoftAuthenticator: 8,
|
|
16595
|
+
temporaryAccessPass: 9,
|
|
16596
|
+
email: 10,
|
|
16597
|
+
x509Certificate: 11,
|
|
16598
|
+
federation: 12,
|
|
16599
|
+
unknownFutureValue: 13,
|
|
16600
|
+
qrCodePin: 14,
|
|
16601
|
+
}
|
|
16602
|
+
|
|
14545
16603
|
/**
|
|
14546
16604
|
* BitLockerEncryptionMethod types
|
|
14547
16605
|
*/
|
|
@@ -14660,6 +16718,35 @@ namespace reference.`microsoft.graph` {
|
|
|
14660
16718
|
deleted: 2,
|
|
14661
16719
|
}
|
|
14662
16720
|
|
|
16721
|
+
enum cloudAppSecuritySessionControlType {
|
|
16722
|
+
mcasConfigured: 0,
|
|
16723
|
+
monitorOnly: 1,
|
|
16724
|
+
blockDownloads: 2,
|
|
16725
|
+
unknownFutureValue: 3,
|
|
16726
|
+
}
|
|
16727
|
+
|
|
16728
|
+
enum columnTypes {
|
|
16729
|
+
note: 0,
|
|
16730
|
+
text: 1,
|
|
16731
|
+
choice: 2,
|
|
16732
|
+
multichoice: 3,
|
|
16733
|
+
number: 4,
|
|
16734
|
+
currency: 5,
|
|
16735
|
+
dateTime: 6,
|
|
16736
|
+
lookup: 7,
|
|
16737
|
+
`boolean`: 8,
|
|
16738
|
+
user: 9,
|
|
16739
|
+
url: 10,
|
|
16740
|
+
calculated: 11,
|
|
16741
|
+
location: 12,
|
|
16742
|
+
geolocation: 13,
|
|
16743
|
+
term: 14,
|
|
16744
|
+
multiterm: 15,
|
|
16745
|
+
thumbnail: 16,
|
|
16746
|
+
approvalStatus: 17,
|
|
16747
|
+
unknownFutureValue: 18,
|
|
16748
|
+
}
|
|
16749
|
+
|
|
14663
16750
|
/**
|
|
14664
16751
|
* Compliance state.
|
|
14665
16752
|
*/
|
|
@@ -14707,6 +16794,85 @@ namespace reference.`microsoft.graph` {
|
|
|
14707
16794
|
notAssigned: 7,
|
|
14708
16795
|
}
|
|
14709
16796
|
|
|
16797
|
+
enum conditionalAccessClientApp {
|
|
16798
|
+
all: 0,
|
|
16799
|
+
browser: 1,
|
|
16800
|
+
mobileAppsAndDesktopClients: 2,
|
|
16801
|
+
exchangeActiveSync: 3,
|
|
16802
|
+
easSupported: 4,
|
|
16803
|
+
other: 5,
|
|
16804
|
+
unknownFutureValue: 6,
|
|
16805
|
+
}
|
|
16806
|
+
|
|
16807
|
+
enum conditionalAccessDevicePlatform {
|
|
16808
|
+
android: 0,
|
|
16809
|
+
iOS: 1,
|
|
16810
|
+
windows: 2,
|
|
16811
|
+
windowsPhone: 3,
|
|
16812
|
+
macOS: 4,
|
|
16813
|
+
all: 5,
|
|
16814
|
+
unknownFutureValue: 6,
|
|
16815
|
+
linux: 7,
|
|
16816
|
+
}
|
|
16817
|
+
|
|
16818
|
+
enum conditionalAccessExternalTenantsMembershipKind {
|
|
16819
|
+
all: 0,
|
|
16820
|
+
enumerated: 1,
|
|
16821
|
+
unknownFutureValue: 2,
|
|
16822
|
+
}
|
|
16823
|
+
|
|
16824
|
+
enum conditionalAccessGrantControl {
|
|
16825
|
+
block: 0,
|
|
16826
|
+
mfa: 1,
|
|
16827
|
+
compliantDevice: 2,
|
|
16828
|
+
domainJoinedDevice: 3,
|
|
16829
|
+
approvedApplication: 4,
|
|
16830
|
+
compliantApplication: 5,
|
|
16831
|
+
passwordChange: 6,
|
|
16832
|
+
unknownFutureValue: 7,
|
|
16833
|
+
riskRemediation: 8,
|
|
16834
|
+
}
|
|
16835
|
+
|
|
16836
|
+
@graphFlags
|
|
16837
|
+
enum conditionalAccessGuestOrExternalUserTypes {
|
|
16838
|
+
none: 0,
|
|
16839
|
+
internalGuest: 1,
|
|
16840
|
+
b2bCollaborationGuest: 2,
|
|
16841
|
+
b2bCollaborationMember: 4,
|
|
16842
|
+
b2bDirectConnectUser: 8,
|
|
16843
|
+
otherExternalUser: 16,
|
|
16844
|
+
serviceProvider: 32,
|
|
16845
|
+
unknownFutureValue: 64,
|
|
16846
|
+
}
|
|
16847
|
+
|
|
16848
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16849
|
+
enum conditionalAccessPolicyState {
|
|
16850
|
+
enabled: 0,
|
|
16851
|
+
disabled: 1,
|
|
16852
|
+
enabledForReportingButNotEnforced: 2,
|
|
16853
|
+
}
|
|
16854
|
+
|
|
16855
|
+
enum conditionalAccessStatus {
|
|
16856
|
+
success: 0,
|
|
16857
|
+
failure: 1,
|
|
16858
|
+
notApplied: 2,
|
|
16859
|
+
unknownFutureValue: 3,
|
|
16860
|
+
}
|
|
16861
|
+
|
|
16862
|
+
@graphFlags
|
|
16863
|
+
enum conditionalAccessTransferMethods {
|
|
16864
|
+
none: 0,
|
|
16865
|
+
deviceCodeFlow: 1,
|
|
16866
|
+
authenticationTransfer: 2,
|
|
16867
|
+
unknownFutureValue: 4,
|
|
16868
|
+
}
|
|
16869
|
+
|
|
16870
|
+
enum countryLookupMethodType {
|
|
16871
|
+
clientIpAddress: 0,
|
|
16872
|
+
authenticatorAppGps: 1,
|
|
16873
|
+
unknownFutureValue: 2,
|
|
16874
|
+
}
|
|
16875
|
+
|
|
14710
16876
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
14711
16877
|
allowed: 1,
|
|
14712
16878
|
blocked: 2,
|
|
@@ -15507,6 +17673,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15507
17673
|
unknownFutureValue: 3,
|
|
15508
17674
|
}
|
|
15509
17675
|
|
|
17676
|
+
enum driveItemSourceApplication {
|
|
17677
|
+
teams: 0,
|
|
17678
|
+
yammer: 1,
|
|
17679
|
+
sharePoint: 2,
|
|
17680
|
+
oneDrive: 3,
|
|
17681
|
+
stream: 4,
|
|
17682
|
+
powerPoint: 5,
|
|
17683
|
+
office: 6,
|
|
17684
|
+
loki: 7,
|
|
17685
|
+
loop: 8,
|
|
17686
|
+
other: 9,
|
|
17687
|
+
unknownFutureValue: 10,
|
|
17688
|
+
}
|
|
17689
|
+
|
|
15510
17690
|
/**
|
|
15511
17691
|
* Possible values to specify which cookies are allowed in Microsoft Edge.
|
|
15512
17692
|
*/
|
|
@@ -15603,6 +17783,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15603
17783
|
notContacted: 4,
|
|
15604
17784
|
}
|
|
15605
17785
|
|
|
17786
|
+
enum errorCorrectionLevel {
|
|
17787
|
+
l: 1,
|
|
17788
|
+
m: 2,
|
|
17789
|
+
q: 3,
|
|
17790
|
+
h: 4,
|
|
17791
|
+
unknownFutureValue: 5,
|
|
17792
|
+
}
|
|
17793
|
+
|
|
15606
17794
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15607
17795
|
enum eventType {
|
|
15608
17796
|
singleInstance: 0,
|
|
@@ -15627,6 +17815,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15627
17815
|
all: 2,
|
|
15628
17816
|
}
|
|
15629
17817
|
|
|
17818
|
+
enum externalEmailOtpState {
|
|
17819
|
+
default: 0,
|
|
17820
|
+
enabled: 1,
|
|
17821
|
+
disabled: 2,
|
|
17822
|
+
unknownFutureValue: 3,
|
|
17823
|
+
}
|
|
17824
|
+
|
|
17825
|
+
enum featureTargetType {
|
|
17826
|
+
group: 0,
|
|
17827
|
+
administrativeUnit: 1,
|
|
17828
|
+
role: 2,
|
|
17829
|
+
unknownFutureValue: 3,
|
|
17830
|
+
}
|
|
17831
|
+
|
|
15630
17832
|
enum federatedIdpMfaBehavior {
|
|
15631
17833
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
15632
17834
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -15634,6 +17836,67 @@ namespace reference.`microsoft.graph` {
|
|
|
15634
17836
|
unknownFutureValue: 3,
|
|
15635
17837
|
}
|
|
15636
17838
|
|
|
17839
|
+
enum fido2RestrictionEnforcementType {
|
|
17840
|
+
allow: 0,
|
|
17841
|
+
block: 1,
|
|
17842
|
+
unknownFutureValue: 2,
|
|
17843
|
+
}
|
|
17844
|
+
|
|
17845
|
+
enum fileStorageContainerBillingClassification {
|
|
17846
|
+
standard: 0,
|
|
17847
|
+
trial: 1,
|
|
17848
|
+
directToCustomer: 2,
|
|
17849
|
+
unknownFutureValue: 3,
|
|
17850
|
+
}
|
|
17851
|
+
|
|
17852
|
+
enum fileStorageContainerBillingStatus {
|
|
17853
|
+
invalid: 0,
|
|
17854
|
+
valid: 1,
|
|
17855
|
+
unknownFutureValue: 2,
|
|
17856
|
+
}
|
|
17857
|
+
|
|
17858
|
+
enum fileStorageContainerStatus {
|
|
17859
|
+
inactive: 0,
|
|
17860
|
+
active: 1,
|
|
17861
|
+
unknownFutureValue: 2,
|
|
17862
|
+
}
|
|
17863
|
+
|
|
17864
|
+
enum fileStorageContainerTypeAppPermission {
|
|
17865
|
+
none: 0,
|
|
17866
|
+
readContent: 1,
|
|
17867
|
+
writeContent: 2,
|
|
17868
|
+
manageContent: 3,
|
|
17869
|
+
create: 4,
|
|
17870
|
+
delete: 5,
|
|
17871
|
+
read: 6,
|
|
17872
|
+
write: 7,
|
|
17873
|
+
enumeratePermissions: 8,
|
|
17874
|
+
addPermissions: 9,
|
|
17875
|
+
updatePermissions: 10,
|
|
17876
|
+
deletePermissions: 11,
|
|
17877
|
+
deleteOwnPermission: 12,
|
|
17878
|
+
managePermissions: 13,
|
|
17879
|
+
full: 14,
|
|
17880
|
+
unknownFutureValue: 15,
|
|
17881
|
+
}
|
|
17882
|
+
|
|
17883
|
+
@graphFlags
|
|
17884
|
+
enum fileStorageContainerTypeSettingsOverride {
|
|
17885
|
+
urlTemplate: 0,
|
|
17886
|
+
isDiscoverabilityEnabled: 1,
|
|
17887
|
+
isSearchEnabled: 2,
|
|
17888
|
+
isItemVersioningEnabled: 3,
|
|
17889
|
+
itemMajorVersionLimit: 4,
|
|
17890
|
+
maxStoragePerContainerInBytes: 5,
|
|
17891
|
+
unknownFutureValue: 6,
|
|
17892
|
+
}
|
|
17893
|
+
|
|
17894
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17895
|
+
enum filterMode {
|
|
17896
|
+
include: 0,
|
|
17897
|
+
exclude: 1,
|
|
17898
|
+
}
|
|
17899
|
+
|
|
15637
17900
|
/**
|
|
15638
17901
|
* Possible values for firewallCertificateRevocationListCheckMethod
|
|
15639
17902
|
*/
|
|
@@ -15720,6 +17983,30 @@ namespace reference.`microsoft.graph` {
|
|
|
15720
17983
|
workingElsewhere: 4,
|
|
15721
17984
|
}
|
|
15722
17985
|
|
|
17986
|
+
enum groupType {
|
|
17987
|
+
unifiedGroups: 0,
|
|
17988
|
+
azureAD: 1,
|
|
17989
|
+
unknownFutureValue: 2,
|
|
17990
|
+
}
|
|
17991
|
+
|
|
17992
|
+
enum horizontalSectionLayoutType {
|
|
17993
|
+
none: 0,
|
|
17994
|
+
oneColumn: 1,
|
|
17995
|
+
twoColumns: 2,
|
|
17996
|
+
threeColumns: 3,
|
|
17997
|
+
oneThirdLeftColumn: 4,
|
|
17998
|
+
oneThirdRightColumn: 5,
|
|
17999
|
+
fullWidth: 6,
|
|
18000
|
+
unknownFutureValue: 7,
|
|
18001
|
+
}
|
|
18002
|
+
|
|
18003
|
+
enum imageTaggingChoice {
|
|
18004
|
+
disabled: 0,
|
|
18005
|
+
basic: 1,
|
|
18006
|
+
enhanced: 2,
|
|
18007
|
+
unknownFutureValue: 3,
|
|
18008
|
+
}
|
|
18009
|
+
|
|
15723
18010
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15724
18011
|
enum importance {
|
|
15725
18012
|
low: 0,
|
|
@@ -15771,12 +18058,34 @@ namespace reference.`microsoft.graph` {
|
|
|
15771
18058
|
error: 3,
|
|
15772
18059
|
}
|
|
15773
18060
|
|
|
18061
|
+
enum includedUserRoles {
|
|
18062
|
+
all: 0,
|
|
18063
|
+
privilegedAdmin: 1,
|
|
18064
|
+
admin: 2,
|
|
18065
|
+
user: 3,
|
|
18066
|
+
unknownFutureValue: 4,
|
|
18067
|
+
}
|
|
18068
|
+
|
|
18069
|
+
enum includedUserTypes {
|
|
18070
|
+
all: 0,
|
|
18071
|
+
member: 1,
|
|
18072
|
+
guest: 2,
|
|
18073
|
+
unknownFutureValue: 3,
|
|
18074
|
+
}
|
|
18075
|
+
|
|
15774
18076
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15775
18077
|
enum inferenceClassificationType {
|
|
15776
18078
|
focused: 0,
|
|
15777
18079
|
other: 1,
|
|
15778
18080
|
}
|
|
15779
18081
|
|
|
18082
|
+
enum initiatorType {
|
|
18083
|
+
user: 0,
|
|
18084
|
+
application: 1,
|
|
18085
|
+
system: 2,
|
|
18086
|
+
unknownFutureValue: 3,
|
|
18087
|
+
}
|
|
18088
|
+
|
|
15780
18089
|
/**
|
|
15781
18090
|
* Possible values for the install intent chosen by the admin.
|
|
15782
18091
|
*/
|
|
@@ -15935,6 +18244,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15935
18244
|
bing: 4,
|
|
15936
18245
|
}
|
|
15937
18246
|
|
|
18247
|
+
enum longRunningOperationStatus {
|
|
18248
|
+
notStarted: 0,
|
|
18249
|
+
running: 1,
|
|
18250
|
+
succeeded: 2,
|
|
18251
|
+
failed: 3,
|
|
18252
|
+
unknownFutureValue: 4,
|
|
18253
|
+
}
|
|
18254
|
+
|
|
15938
18255
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15939
18256
|
@graphFlags
|
|
15940
18257
|
enum mailTipsType {
|
|
@@ -16308,6 +18625,19 @@ namespace reference.`microsoft.graph` {
|
|
|
16308
18625
|
office365: 3,
|
|
16309
18626
|
}
|
|
16310
18627
|
|
|
18628
|
+
enum mediaSourceContentCategory {
|
|
18629
|
+
meeting: 0,
|
|
18630
|
+
liveStream: 1,
|
|
18631
|
+
presentation: 2,
|
|
18632
|
+
screenRecording: 3,
|
|
18633
|
+
story: 4,
|
|
18634
|
+
profile: 5,
|
|
18635
|
+
chat: 6,
|
|
18636
|
+
note: 7,
|
|
18637
|
+
comment: 8,
|
|
18638
|
+
unknownFutureValue: 9,
|
|
18639
|
+
}
|
|
18640
|
+
|
|
16311
18641
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16312
18642
|
enum meetingMessageType {
|
|
16313
18643
|
none: 0,
|
|
@@ -16344,6 +18674,13 @@ namespace reference.`microsoft.graph` {
|
|
|
16344
18674
|
review: 10,
|
|
16345
18675
|
}
|
|
16346
18676
|
|
|
18677
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18678
|
+
enum microsoftAuthenticatorAuthenticationMode {
|
|
18679
|
+
deviceBasedPush: 0,
|
|
18680
|
+
push: 1,
|
|
18681
|
+
any: 2,
|
|
18682
|
+
}
|
|
18683
|
+
|
|
16347
18684
|
/**
|
|
16348
18685
|
* The enum to specify the channels for Microsoft Edge apps.
|
|
16349
18686
|
*/
|
|
@@ -16624,6 +18961,27 @@ namespace reference.`microsoft.graph` {
|
|
|
16624
18961
|
unknownFutureValue: 4,
|
|
16625
18962
|
}
|
|
16626
18963
|
|
|
18964
|
+
enum operationResult {
|
|
18965
|
+
success: 0,
|
|
18966
|
+
failure: 1,
|
|
18967
|
+
timeout: 2,
|
|
18968
|
+
unknownFutureValue: 3,
|
|
18969
|
+
}
|
|
18970
|
+
|
|
18971
|
+
enum pageLayoutType {
|
|
18972
|
+
microsoftReserved: 0,
|
|
18973
|
+
article: 1,
|
|
18974
|
+
home: 2,
|
|
18975
|
+
unknownFutureValue: 3,
|
|
18976
|
+
}
|
|
18977
|
+
|
|
18978
|
+
enum pagePromotionType {
|
|
18979
|
+
microsoftReserved: 0,
|
|
18980
|
+
page: 1,
|
|
18981
|
+
newsPost: 2,
|
|
18982
|
+
unknownFutureValue: 3,
|
|
18983
|
+
}
|
|
18984
|
+
|
|
16627
18985
|
enum partnerTenantType {
|
|
16628
18986
|
microsoftSupport: 1,
|
|
16629
18987
|
syndicatePartner: 2,
|
|
@@ -16634,6 +18992,19 @@ namespace reference.`microsoft.graph` {
|
|
|
16634
18992
|
unknownFutureValue: 7,
|
|
16635
18993
|
}
|
|
16636
18994
|
|
|
18995
|
+
enum passkeyType {
|
|
18996
|
+
deviceBound: 0,
|
|
18997
|
+
synced: 1,
|
|
18998
|
+
unknownFutureValue: 2,
|
|
18999
|
+
}
|
|
19000
|
+
|
|
19001
|
+
@graphFlags
|
|
19002
|
+
enum passkeyTypes {
|
|
19003
|
+
deviceBound: 1,
|
|
19004
|
+
synced: 2,
|
|
19005
|
+
unknownFutureValue: 4,
|
|
19006
|
+
}
|
|
19007
|
+
|
|
16637
19008
|
enum permissionClassificationType {
|
|
16638
19009
|
low: 1,
|
|
16639
19010
|
medium: 2,
|
|
@@ -16648,6 +19019,12 @@ namespace reference.`microsoft.graph` {
|
|
|
16648
19019
|
application: 3,
|
|
16649
19020
|
}
|
|
16650
19021
|
|
|
19022
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19023
|
+
enum persistentBrowserSessionMode {
|
|
19024
|
+
always: 0,
|
|
19025
|
+
`never`: 1,
|
|
19026
|
+
}
|
|
19027
|
+
|
|
16651
19028
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16652
19029
|
enum phoneType {
|
|
16653
19030
|
home: 0,
|
|
@@ -16739,6 +19116,41 @@ namespace reference.`microsoft.graph` {
|
|
|
16739
19116
|
unknownFutureValue: 3,
|
|
16740
19117
|
}
|
|
16741
19118
|
|
|
19119
|
+
enum provisioningAction {
|
|
19120
|
+
other: 0,
|
|
19121
|
+
create: 1,
|
|
19122
|
+
delete: 2,
|
|
19123
|
+
disable: 3,
|
|
19124
|
+
update: 4,
|
|
19125
|
+
stagedDelete: 5,
|
|
19126
|
+
unknownFutureValue: 6,
|
|
19127
|
+
}
|
|
19128
|
+
|
|
19129
|
+
enum provisioningResult {
|
|
19130
|
+
success: 0,
|
|
19131
|
+
failure: 1,
|
|
19132
|
+
skipped: 2,
|
|
19133
|
+
warning: 3,
|
|
19134
|
+
unknownFutureValue: 4,
|
|
19135
|
+
}
|
|
19136
|
+
|
|
19137
|
+
enum provisioningStatusErrorCategory {
|
|
19138
|
+
failure: 0,
|
|
19139
|
+
nonServiceFailure: 1,
|
|
19140
|
+
success: 2,
|
|
19141
|
+
unknownFutureValue: 3,
|
|
19142
|
+
}
|
|
19143
|
+
|
|
19144
|
+
enum provisioningStepType {
|
|
19145
|
+
`import`: 0,
|
|
19146
|
+
scoping: 1,
|
|
19147
|
+
matching: 2,
|
|
19148
|
+
processing: 3,
|
|
19149
|
+
referenceResolution: 4,
|
|
19150
|
+
export: 5,
|
|
19151
|
+
unknownFutureValue: 6,
|
|
19152
|
+
}
|
|
19153
|
+
|
|
16742
19154
|
/**
|
|
16743
19155
|
* Apps rating as in media content
|
|
16744
19156
|
*/
|
|
@@ -17496,6 +19908,24 @@ namespace reference.`microsoft.graph` {
|
|
|
17496
19908
|
unknownFutureValue: 4,
|
|
17497
19909
|
}
|
|
17498
19910
|
|
|
19911
|
+
enum riskEventType {
|
|
19912
|
+
unlikelyTravel: 0,
|
|
19913
|
+
anonymizedIPAddress: 1,
|
|
19914
|
+
maliciousIPAddress: 2,
|
|
19915
|
+
unfamiliarFeatures: 3,
|
|
19916
|
+
malwareInfectedIPAddress: 4,
|
|
19917
|
+
suspiciousIPAddress: 5,
|
|
19918
|
+
leakedCredentials: 6,
|
|
19919
|
+
investigationsThreatIntelligence: 7,
|
|
19920
|
+
generic: 8,
|
|
19921
|
+
adminConfirmedUserCompromised: 9,
|
|
19922
|
+
mcasImpossibleTravel: 10,
|
|
19923
|
+
mcasSuspiciousInboxManipulationRules: 11,
|
|
19924
|
+
investigationsThreatIntelligenceSigninLinked: 12,
|
|
19925
|
+
maliciousIPAddressValidCredentialsBlockedIP: 13,
|
|
19926
|
+
unknownFutureValue: 14,
|
|
19927
|
+
}
|
|
19928
|
+
|
|
17499
19929
|
enum riskLevel {
|
|
17500
19930
|
low: 0,
|
|
17501
19931
|
medium: 1,
|
|
@@ -17557,6 +19987,14 @@ namespace reference.`microsoft.graph` {
|
|
|
17557
19987
|
unknownFutureValue: 4,
|
|
17558
19988
|
}
|
|
17559
19989
|
|
|
19990
|
+
enum sectionEmphasisType {
|
|
19991
|
+
none: 0,
|
|
19992
|
+
neutral: 1,
|
|
19993
|
+
soft: 2,
|
|
19994
|
+
strong: 3,
|
|
19995
|
+
unknownFutureValue: 4,
|
|
19996
|
+
}
|
|
19997
|
+
|
|
17560
19998
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17561
19999
|
enum selectionLikelihoodInfo {
|
|
17562
20000
|
notSpecified: 0,
|
|
@@ -17571,6 +20009,13 @@ namespace reference.`microsoft.graph` {
|
|
|
17571
20009
|
confidential: 3,
|
|
17572
20010
|
}
|
|
17573
20011
|
|
|
20012
|
+
enum sensitivityLabelAssignmentMethod {
|
|
20013
|
+
standard: 0,
|
|
20014
|
+
privileged: 1,
|
|
20015
|
+
auto: 2,
|
|
20016
|
+
unknownFutureValue: 3,
|
|
20017
|
+
}
|
|
20018
|
+
|
|
17574
20019
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17575
20020
|
enum settingSourceType {
|
|
17576
20021
|
deviceConfiguration: 0,
|
|
@@ -17612,6 +20057,81 @@ namespace reference.`microsoft.graph` {
|
|
|
17612
20057
|
domain: 2,
|
|
17613
20058
|
}
|
|
17614
20059
|
|
|
20060
|
+
enum sharePointMigrationJobErrorLevel {
|
|
20061
|
+
important: 0,
|
|
20062
|
+
warning: 1,
|
|
20063
|
+
error: 2,
|
|
20064
|
+
fatalError: 3,
|
|
20065
|
+
unknownFutureValue: 4,
|
|
20066
|
+
}
|
|
20067
|
+
|
|
20068
|
+
enum sharePointMigrationObjectType {
|
|
20069
|
+
site: 0,
|
|
20070
|
+
web: 1,
|
|
20071
|
+
folder: 2,
|
|
20072
|
+
list: 3,
|
|
20073
|
+
listItem: 4,
|
|
20074
|
+
file: 5,
|
|
20075
|
+
alert: 6,
|
|
20076
|
+
sharedWithObject: 7,
|
|
20077
|
+
invalid: 8,
|
|
20078
|
+
unknownFutureValue: 9,
|
|
20079
|
+
}
|
|
20080
|
+
|
|
20081
|
+
enum sharingCapabilities {
|
|
20082
|
+
disabled: 0,
|
|
20083
|
+
externalUserSharingOnly: 1,
|
|
20084
|
+
externalUserAndGuestSharing: 2,
|
|
20085
|
+
existingExternalUserSharingOnly: 3,
|
|
20086
|
+
unknownFutureValue: 4,
|
|
20087
|
+
}
|
|
20088
|
+
|
|
20089
|
+
enum sharingDomainRestrictionMode {
|
|
20090
|
+
none: 0,
|
|
20091
|
+
allowList: 1,
|
|
20092
|
+
blockList: 2,
|
|
20093
|
+
unknownFutureValue: 3,
|
|
20094
|
+
}
|
|
20095
|
+
|
|
20096
|
+
enum signInFrequencyAuthenticationType {
|
|
20097
|
+
primaryAndSecondaryAuthentication: 0,
|
|
20098
|
+
secondaryAuthentication: 1,
|
|
20099
|
+
unknownFutureValue: 2,
|
|
20100
|
+
}
|
|
20101
|
+
|
|
20102
|
+
enum signInFrequencyInterval {
|
|
20103
|
+
timeBased: 0,
|
|
20104
|
+
everyTime: 1,
|
|
20105
|
+
unknownFutureValue: 2,
|
|
20106
|
+
}
|
|
20107
|
+
|
|
20108
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20109
|
+
enum signinFrequencyType {
|
|
20110
|
+
days: 0,
|
|
20111
|
+
hours: 1,
|
|
20112
|
+
}
|
|
20113
|
+
|
|
20114
|
+
enum signInUserType {
|
|
20115
|
+
member: 0,
|
|
20116
|
+
guest: 1,
|
|
20117
|
+
unknownFutureValue: 3,
|
|
20118
|
+
}
|
|
20119
|
+
|
|
20120
|
+
enum siteArchiveStatus {
|
|
20121
|
+
recentlyArchived: 0,
|
|
20122
|
+
fullyArchived: 1,
|
|
20123
|
+
reactivating: 2,
|
|
20124
|
+
unknownFutureValue: 3,
|
|
20125
|
+
}
|
|
20126
|
+
|
|
20127
|
+
enum siteLockState {
|
|
20128
|
+
unlocked: 0,
|
|
20129
|
+
lockedReadOnly: 1,
|
|
20130
|
+
lockedNoAccess: 2,
|
|
20131
|
+
lockedNoAdditions: 3,
|
|
20132
|
+
unknownFutureValue: 4,
|
|
20133
|
+
}
|
|
20134
|
+
|
|
17615
20135
|
/**
|
|
17616
20136
|
* Possible values for site security level.
|
|
17617
20137
|
*/
|
|
@@ -17695,12 +20215,37 @@ namespace reference.`microsoft.graph` {
|
|
|
17695
20215
|
allApps: 4,
|
|
17696
20216
|
}
|
|
17697
20217
|
|
|
20218
|
+
@graphFlags
|
|
20219
|
+
enum templateScenarios {
|
|
20220
|
+
new: 0,
|
|
20221
|
+
secureFoundation: 1,
|
|
20222
|
+
zeroTrust: 2,
|
|
20223
|
+
remoteWork: 4,
|
|
20224
|
+
protectAdmins: 8,
|
|
20225
|
+
emergingThreats: 16,
|
|
20226
|
+
unknownFutureValue: 32,
|
|
20227
|
+
}
|
|
20228
|
+
|
|
17698
20229
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17699
20230
|
enum timeZoneStandard {
|
|
17700
20231
|
windows: 0,
|
|
17701
20232
|
iana: 1,
|
|
17702
20233
|
}
|
|
17703
20234
|
|
|
20235
|
+
enum titleAreaLayoutType {
|
|
20236
|
+
imageAndTitle: 0,
|
|
20237
|
+
plain: 1,
|
|
20238
|
+
colorBlock: 2,
|
|
20239
|
+
overlap: 3,
|
|
20240
|
+
unknownFutureValue: 4,
|
|
20241
|
+
}
|
|
20242
|
+
|
|
20243
|
+
enum titleAreaTextAlignmentType {
|
|
20244
|
+
left: 0,
|
|
20245
|
+
center: 1,
|
|
20246
|
+
unknownFutureValue: 2,
|
|
20247
|
+
}
|
|
20248
|
+
|
|
17704
20249
|
enum tokenIssuerType {
|
|
17705
20250
|
AzureAD: 0,
|
|
17706
20251
|
ADFederationServices: 1,
|
|
@@ -17710,6 +20255,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17710
20255
|
NPSExtension: 5,
|
|
17711
20256
|
}
|
|
17712
20257
|
|
|
20258
|
+
enum userAction {
|
|
20259
|
+
registerSecurityInformation: 0,
|
|
20260
|
+
registerOrJoinDevices: 1,
|
|
20261
|
+
unknownFutureValue: 2,
|
|
20262
|
+
}
|
|
20263
|
+
|
|
20264
|
+
enum userDefaultAuthenticationMethod {
|
|
20265
|
+
push: 0,
|
|
20266
|
+
oath: 1,
|
|
20267
|
+
voiceMobile: 2,
|
|
20268
|
+
voiceAlternateMobile: 3,
|
|
20269
|
+
voiceOffice: 4,
|
|
20270
|
+
sms: 5,
|
|
20271
|
+
none: 6,
|
|
20272
|
+
unknownFutureValue: 7,
|
|
20273
|
+
}
|
|
20274
|
+
|
|
17713
20275
|
enum userExperienceAnalyticsHealthState {
|
|
17714
20276
|
/**
|
|
17715
20277
|
* Indicates that the health state is unknown.
|
|
@@ -18031,6 +20593,31 @@ namespace reference.`microsoft.graph` {
|
|
|
18031
20593
|
showOrganizerAndTimeAndSubject: 2,
|
|
18032
20594
|
}
|
|
18033
20595
|
|
|
20596
|
+
@graphFlags
|
|
20597
|
+
enum whatIfAnalysisReasons {
|
|
20598
|
+
notSet: 0,
|
|
20599
|
+
notEnoughInformation: 1,
|
|
20600
|
+
invalidCondition: 2,
|
|
20601
|
+
users: 4,
|
|
20602
|
+
workloadIdentities: 8,
|
|
20603
|
+
application: 16,
|
|
20604
|
+
userActions: 32,
|
|
20605
|
+
authenticationContext: 64,
|
|
20606
|
+
devicePlatform: 128,
|
|
20607
|
+
devices: 256,
|
|
20608
|
+
clientApps: 512,
|
|
20609
|
+
location: 1024,
|
|
20610
|
+
signInRisk: 2048,
|
|
20611
|
+
emptyPolicy: 4096,
|
|
20612
|
+
invalidPolicy: 8192,
|
|
20613
|
+
policyNotEnabled: 16384,
|
|
20614
|
+
userRisk: 32768,
|
|
20615
|
+
time: 65536,
|
|
20616
|
+
insiderRisk: 131072,
|
|
20617
|
+
authenticationFlow: 262144,
|
|
20618
|
+
unknownFutureValue: 524288,
|
|
20619
|
+
}
|
|
20620
|
+
|
|
18034
20621
|
/**
|
|
18035
20622
|
* Contains value for delivery optimization priority.
|
|
18036
20623
|
*/
|
|
@@ -19229,4 +21816,117 @@ namespace reference.`microsoft.graph` {
|
|
|
19229
21816
|
unknownFutureValue: 2,
|
|
19230
21817
|
}
|
|
19231
21818
|
|
|
21819
|
+
enum x509CertificateAffinityLevel {
|
|
21820
|
+
low: 0,
|
|
21821
|
+
high: 1,
|
|
21822
|
+
unknownFutureValue: 2,
|
|
21823
|
+
}
|
|
21824
|
+
|
|
21825
|
+
enum x509CertificateAuthenticationMode {
|
|
21826
|
+
x509CertificateSingleFactor: 0,
|
|
21827
|
+
x509CertificateMultiFactor: 1,
|
|
21828
|
+
unknownFutureValue: 2,
|
|
21829
|
+
}
|
|
21830
|
+
|
|
21831
|
+
enum x509CertificateIssuerHintsState {
|
|
21832
|
+
disabled: 0,
|
|
21833
|
+
enabled: 1,
|
|
21834
|
+
unknownFutureValue: 2,
|
|
21835
|
+
}
|
|
21836
|
+
|
|
21837
|
+
enum x509CertificateRuleType {
|
|
21838
|
+
issuerSubject: 0,
|
|
21839
|
+
policyOID: 1,
|
|
21840
|
+
unknownFutureValue: 2,
|
|
21841
|
+
issuerSubjectAndPolicyOID: 3,
|
|
21842
|
+
}
|
|
21843
|
+
|
|
21844
|
+
}
|
|
21845
|
+
@publicNamespace("microsoft.graph.security")
|
|
21846
|
+
namespace reference.`microsoft.graph.security` {
|
|
21847
|
+
enum behaviorDuringRetentionPeriod {
|
|
21848
|
+
doNotRetain: 0,
|
|
21849
|
+
retain: 1,
|
|
21850
|
+
retainAsRecord: 2,
|
|
21851
|
+
retainAsRegulatoryRecord: 3,
|
|
21852
|
+
unknownFutureValue: 4,
|
|
21853
|
+
}
|
|
21854
|
+
|
|
21855
|
+
}
|
|
21856
|
+
@publicNamespace("microsoft.graph.termstore")
|
|
21857
|
+
namespace reference.`microsoft.graph.termStore` {
|
|
21858
|
+
@complex model localizedDescription {
|
|
21859
|
+
description: string | null;
|
|
21860
|
+
languageTag: string | null;
|
|
21861
|
+
}
|
|
21862
|
+
|
|
21863
|
+
@complex model localizedLabel {
|
|
21864
|
+
isDefault: boolean | null;
|
|
21865
|
+
languageTag: string | null;
|
|
21866
|
+
name: string | null;
|
|
21867
|
+
}
|
|
21868
|
+
|
|
21869
|
+
@complex model localizedName {
|
|
21870
|
+
languageTag: string | null;
|
|
21871
|
+
name: string | null;
|
|
21872
|
+
}
|
|
21873
|
+
|
|
21874
|
+
@entity model group extends reference.`microsoft.graph`.entity {
|
|
21875
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21876
|
+
description: string | null;
|
|
21877
|
+
displayName: string | null;
|
|
21878
|
+
parentSiteId: string | null;
|
|
21879
|
+
scope: termGroupScope | null;
|
|
21880
|
+
@contains sets: set[];
|
|
21881
|
+
}
|
|
21882
|
+
|
|
21883
|
+
@entity model relation extends reference.`microsoft.graph`.entity {
|
|
21884
|
+
relationship: relationType | null;
|
|
21885
|
+
@references fromTerm: term | null;
|
|
21886
|
+
@references set: set | null;
|
|
21887
|
+
@references toTerm: term | null;
|
|
21888
|
+
}
|
|
21889
|
+
|
|
21890
|
+
@entity model set extends reference.`microsoft.graph`.entity {
|
|
21891
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21892
|
+
description: string | null;
|
|
21893
|
+
localizedNames: localizedName[] | null;
|
|
21894
|
+
properties: reference.`microsoft.graph`.keyValue[] | null;
|
|
21895
|
+
@contains children: term[];
|
|
21896
|
+
@contains parentGroup: group;
|
|
21897
|
+
@contains relations: relation[];
|
|
21898
|
+
@contains terms: term[];
|
|
21899
|
+
}
|
|
21900
|
+
|
|
21901
|
+
@entity model store extends reference.`microsoft.graph`.entity {
|
|
21902
|
+
defaultLanguageTag: string;
|
|
21903
|
+
languageTags: string[];
|
|
21904
|
+
@contains groups: group[];
|
|
21905
|
+
@contains sets: set[];
|
|
21906
|
+
}
|
|
21907
|
+
|
|
21908
|
+
@entity model term extends reference.`microsoft.graph`.entity {
|
|
21909
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21910
|
+
descriptions: localizedDescription[] | null;
|
|
21911
|
+
labels: localizedLabel[] | null;
|
|
21912
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
21913
|
+
properties: reference.`microsoft.graph`.keyValue[] | null;
|
|
21914
|
+
@contains children: term[];
|
|
21915
|
+
@contains relations: relation[];
|
|
21916
|
+
@references set: set | null;
|
|
21917
|
+
}
|
|
21918
|
+
|
|
21919
|
+
enum relationType {
|
|
21920
|
+
pin: 0,
|
|
21921
|
+
reuse: 1,
|
|
21922
|
+
unknownFutureValue: 2,
|
|
21923
|
+
}
|
|
21924
|
+
|
|
21925
|
+
enum termGroupScope {
|
|
21926
|
+
global: 0,
|
|
21927
|
+
system: 1,
|
|
21928
|
+
siteCollection: 2,
|
|
21929
|
+
unknownFutureValue: 3,
|
|
21930
|
+
}
|
|
21931
|
+
|
|
19232
21932
|
}
|