@microsoft/typespec-msgraph-reference 1.0.4 → 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 +18 -0
- package/lib/Bleu/Beta/main.tsp +310 -7
- package/lib/Bleu/V1.0/main.tsp +430 -1
- package/lib/Delos/Beta/main.tsp +4284 -23
- package/lib/Delos/V1.0/main.tsp +2815 -22
- package/lib/Fairfax/Beta/main.tsp +627 -23
- package/lib/Fairfax/V1.0/main.tsp +61 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +3 -1
- package/lib/Mooncake/Beta/main.tsp +269 -7
- package/lib/Mooncake/V1.0/main.tsp +60 -1
- package/lib/Prod/Beta/main.tsp +1695 -75
- package/lib/Prod/V1.0/main.tsp +4171 -167
- package/lib/USNat/Beta/main.tsp +576 -0
- package/lib/USNat/V1.0/main.tsp +465 -1
- package/lib/USSec/Beta/main.tsp +576 -0
- package/lib/USSec/V1.0/main.tsp +465 -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
|
*/
|
|
@@ -244,10 +276,39 @@ namespace reference.`microsoft.graph` {
|
|
|
244
276
|
status: responseStatus | null;
|
|
245
277
|
}
|
|
246
278
|
|
|
279
|
+
@complex model attendeeAvailability {
|
|
280
|
+
attendee: attendeeBase | null;
|
|
281
|
+
availability: freeBusyStatus | null;
|
|
282
|
+
}
|
|
283
|
+
|
|
247
284
|
@complex model attendeeBase extends recipient {
|
|
248
285
|
type: attendeeType | null;
|
|
249
286
|
}
|
|
250
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
|
+
|
|
251
312
|
/**
|
|
252
313
|
* A class containing the properties for Audit Actor.
|
|
253
314
|
*/
|
|
@@ -326,6 +387,33 @@ namespace reference.`microsoft.graph` {
|
|
|
326
387
|
resourceId: string | null;
|
|
327
388
|
}
|
|
328
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
|
+
|
|
329
417
|
@complex model authorizationInfo {
|
|
330
418
|
certificateUserIds: string[] | null;
|
|
331
419
|
}
|
|
@@ -375,6 +463,20 @@ namespace reference.`microsoft.graph` {
|
|
|
375
463
|
requireEncryptionForWriteAccess: boolean;
|
|
376
464
|
}
|
|
377
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
|
+
|
|
378
480
|
@complex model calendarSharingMessageAction {
|
|
379
481
|
action: calendarSharingAction | null;
|
|
380
482
|
actionType: calendarSharingActionType | null;
|
|
@@ -416,6 +518,28 @@ namespace reference.`microsoft.graph` {
|
|
|
416
518
|
encryptionCertificateThumbprint: string;
|
|
417
519
|
}
|
|
418
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
|
+
|
|
419
543
|
@open
|
|
420
544
|
@complex model ComplexExtensionValue {
|
|
421
545
|
}
|
|
@@ -430,6 +554,112 @@ namespace reference.`microsoft.graph` {
|
|
|
430
554
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
431
555
|
}
|
|
432
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
|
+
|
|
433
663
|
/**
|
|
434
664
|
* configuration Manager client enabled features
|
|
435
665
|
*/
|
|
@@ -470,6 +700,9 @@ namespace reference.`microsoft.graph` {
|
|
|
470
700
|
collectionId: string | null;
|
|
471
701
|
}
|
|
472
702
|
|
|
703
|
+
@complex model contentApprovalStatusColumn {
|
|
704
|
+
}
|
|
705
|
+
|
|
473
706
|
@complex model contentCustomization {
|
|
474
707
|
attributeCollection: keyValue[];
|
|
475
708
|
attributeCollectionRelativeUrl: string | null;
|
|
@@ -477,12 +710,25 @@ namespace reference.`microsoft.graph` {
|
|
|
477
710
|
registrationCampaignRelativeUrl: string | null;
|
|
478
711
|
}
|
|
479
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
|
+
|
|
480
723
|
@complex model convertIdResult {
|
|
481
724
|
errorDetails: genericError | null;
|
|
482
725
|
sourceId: string | null;
|
|
483
726
|
targetId: string | null;
|
|
484
727
|
}
|
|
485
728
|
|
|
729
|
+
@complex model createAction {
|
|
730
|
+
}
|
|
731
|
+
|
|
486
732
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
487
733
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
488
734
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -508,6 +754,10 @@ namespace reference.`microsoft.graph` {
|
|
|
508
754
|
isSyncAllowed: boolean | null;
|
|
509
755
|
}
|
|
510
756
|
|
|
757
|
+
@complex model currencyColumn {
|
|
758
|
+
locale: string | null;
|
|
759
|
+
}
|
|
760
|
+
|
|
511
761
|
@complex model customAppManagementApplicationConfiguration {
|
|
512
762
|
identifierUris: identifierUriConfiguration | null;
|
|
513
763
|
}
|
|
@@ -536,6 +786,11 @@ namespace reference.`microsoft.graph` {
|
|
|
536
786
|
standardOffset: standardTimeZoneOffset | null;
|
|
537
787
|
}
|
|
538
788
|
|
|
789
|
+
@complex model dateTimeColumn {
|
|
790
|
+
displayAs: string | null;
|
|
791
|
+
format: string | null;
|
|
792
|
+
}
|
|
793
|
+
|
|
539
794
|
@complex model dateTimeTimeZone {
|
|
540
795
|
dateTime: string;
|
|
541
796
|
timeZone: string | null;
|
|
@@ -545,6 +800,11 @@ namespace reference.`microsoft.graph` {
|
|
|
545
800
|
daylightBias: int32 | null;
|
|
546
801
|
}
|
|
547
802
|
|
|
803
|
+
@complex model defaultColumnValue {
|
|
804
|
+
formula: string | null;
|
|
805
|
+
value: string | null;
|
|
806
|
+
}
|
|
807
|
+
|
|
548
808
|
@complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
|
|
549
809
|
}
|
|
550
810
|
|
|
@@ -579,6 +839,15 @@ namespace reference.`microsoft.graph` {
|
|
|
579
839
|
severeSeverity: defenderThreatAction;
|
|
580
840
|
}
|
|
581
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
|
+
|
|
582
851
|
/**
|
|
583
852
|
* Delete user from shared apple device action result
|
|
584
853
|
*/
|
|
@@ -589,6 +858,10 @@ namespace reference.`microsoft.graph` {
|
|
|
589
858
|
userPrincipalName: string | null;
|
|
590
859
|
}
|
|
591
860
|
|
|
861
|
+
@open
|
|
862
|
+
@complex model detailsInfo {
|
|
863
|
+
}
|
|
864
|
+
|
|
592
865
|
/**
|
|
593
866
|
* Device action result
|
|
594
867
|
*/
|
|
@@ -733,6 +1006,16 @@ namespace reference.`microsoft.graph` {
|
|
|
733
1006
|
userPrincipalName: string | null;
|
|
734
1007
|
}
|
|
735
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
|
+
|
|
736
1019
|
/**
|
|
737
1020
|
* Platform specific enrollment restrictions
|
|
738
1021
|
*/
|
|
@@ -950,6 +1233,38 @@ namespace reference.`microsoft.graph` {
|
|
|
950
1233
|
windowsPE: string | null;
|
|
951
1234
|
}
|
|
952
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
|
+
|
|
953
1268
|
@complex model deviceLocalCredential {
|
|
954
1269
|
accountName: string;
|
|
955
1270
|
accountSid: string;
|
|
@@ -1089,12 +1404,63 @@ namespace reference.`microsoft.graph` {
|
|
|
1089
1404
|
@complex model deviceRegistrationMembership {
|
|
1090
1405
|
}
|
|
1091
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
|
+
|
|
1092
1438
|
@complex model domainState {
|
|
1093
1439
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1094
1440
|
operation: string | null;
|
|
1095
1441
|
status: string | null;
|
|
1096
1442
|
}
|
|
1097
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
|
+
|
|
1098
1464
|
/**
|
|
1099
1465
|
* Allows IT admins to set a predefined default search engine for MDM-Controlled devices.
|
|
1100
1466
|
*/
|
|
@@ -1122,6 +1488,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1122
1488
|
edgeSearchEngineOpenSearchXmlUrl: string;
|
|
1123
1489
|
}
|
|
1124
1490
|
|
|
1491
|
+
@complex model editAction {
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1125
1494
|
@complex model emailAddress {
|
|
1126
1495
|
address: string | null;
|
|
1127
1496
|
name: string | null;
|
|
@@ -1141,6 +1510,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1141
1510
|
scopes: string[];
|
|
1142
1511
|
}
|
|
1143
1512
|
|
|
1513
|
+
@complex model excludeTarget {
|
|
1514
|
+
id: string;
|
|
1515
|
+
targetType: authenticationMethodTargetType;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1144
1518
|
/**
|
|
1145
1519
|
* Represents a group that should be excluded from an assignment.
|
|
1146
1520
|
*/
|
|
@@ -1152,6 +1526,27 @@ namespace reference.`microsoft.graph` {
|
|
|
1152
1526
|
type: string | null;
|
|
1153
1527
|
}
|
|
1154
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
|
+
|
|
1155
1550
|
/**
|
|
1156
1551
|
* Contains properties for file encryption information for the content version of a line-of-business app.
|
|
1157
1552
|
*/
|
|
@@ -1186,6 +1581,65 @@ namespace reference.`microsoft.graph` {
|
|
|
1186
1581
|
profileIdentifier: string | null;
|
|
1187
1582
|
}
|
|
1188
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
|
+
|
|
1189
1643
|
@complex model followupFlag {
|
|
1190
1644
|
completedDateTime: dateTimeTimeZone | null;
|
|
1191
1645
|
dueDateTime: dateTimeTimeZone | null;
|
|
@@ -1209,6 +1663,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1209
1663
|
longitude: float64 | null;
|
|
1210
1664
|
}
|
|
1211
1665
|
|
|
1666
|
+
@complex model geolocationColumn {
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1212
1669
|
/**
|
|
1213
1670
|
* Represents an assignment to a group.
|
|
1214
1671
|
*/
|
|
@@ -1219,6 +1676,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1219
1676
|
groupId: string | null;
|
|
1220
1677
|
}
|
|
1221
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
|
+
|
|
1222
1690
|
@complex model identifierUriConfiguration {
|
|
1223
1691
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
1224
1692
|
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
@@ -1239,6 +1707,24 @@ namespace reference.`microsoft.graph` {
|
|
|
1239
1707
|
id: string | null;
|
|
1240
1708
|
}
|
|
1241
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
|
+
|
|
1242
1728
|
@complex model implicitGrantSettings {
|
|
1243
1729
|
enableAccessTokenIssuance: boolean | null;
|
|
1244
1730
|
enableIdTokenIssuance: boolean | null;
|
|
@@ -1268,6 +1754,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1268
1754
|
outboundAllowed: boolean | null;
|
|
1269
1755
|
}
|
|
1270
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
|
+
|
|
1271
1768
|
@complex model informationalUrl {
|
|
1272
1769
|
logoUrl: string | null;
|
|
1273
1770
|
marketingUrl: string | null;
|
|
@@ -1281,6 +1778,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1281
1778
|
kind: scopeCollectionKind;
|
|
1282
1779
|
}
|
|
1283
1780
|
|
|
1781
|
+
@open
|
|
1782
|
+
@complex model initiator extends identity {
|
|
1783
|
+
initiatorType: initiatorType | null;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1284
1786
|
/**
|
|
1285
1787
|
* The value in an user experience analytics insight.
|
|
1286
1788
|
*/
|
|
@@ -1655,14 +2157,34 @@ namespace reference.`microsoft.graph` {
|
|
|
1655
2157
|
upperAddress: string;
|
|
1656
2158
|
}
|
|
1657
2159
|
|
|
2160
|
+
@open
|
|
2161
|
+
@complex model itemActionStat {
|
|
2162
|
+
actionCount: int32 | null;
|
|
2163
|
+
actorCount: int32 | null;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
1658
2166
|
@complex model itemBody {
|
|
1659
2167
|
content: string | null;
|
|
1660
2168
|
contentType: bodyType | null;
|
|
1661
2169
|
}
|
|
1662
2170
|
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
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
|
+
|
|
1666
2188
|
@complex model Json {
|
|
1667
2189
|
}
|
|
1668
2190
|
|
|
@@ -1716,6 +2238,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1716
2238
|
warning: int32 | null;
|
|
1717
2239
|
}
|
|
1718
2240
|
|
|
2241
|
+
@complex model listInfo {
|
|
2242
|
+
contentTypesEnabled: boolean | null;
|
|
2243
|
+
hidden: boolean | null;
|
|
2244
|
+
template: string | null;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
1719
2247
|
@complex model localAdminPasswordSettings {
|
|
1720
2248
|
isEnabled: boolean | null;
|
|
1721
2249
|
}
|
|
@@ -1751,6 +2279,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1751
2279
|
uniqueIdType: locationUniqueIdType | null;
|
|
1752
2280
|
}
|
|
1753
2281
|
|
|
2282
|
+
@complex model locationConstraint {
|
|
2283
|
+
isRequired: boolean | null;
|
|
2284
|
+
locations: locationConstraintItem[] | null;
|
|
2285
|
+
suggestLocation: boolean | null;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
@complex model locationConstraintItem extends location {
|
|
2289
|
+
resolveAvailability: boolean | null;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
1754
2292
|
@complex model loginPageLayoutConfiguration {
|
|
1755
2293
|
isFooterShown: boolean | null;
|
|
1756
2294
|
isHeaderShown: boolean | null;
|
|
@@ -1766,6 +2304,14 @@ namespace reference.`microsoft.graph` {
|
|
|
1766
2304
|
hideTermsOfUse: boolean | null;
|
|
1767
2305
|
}
|
|
1768
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
|
+
|
|
1769
2315
|
/**
|
|
1770
2316
|
* Contains properties of an included .app in a MacOS app.
|
|
1771
2317
|
*/
|
|
@@ -1893,6 +2439,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1893
2439
|
message: string | null;
|
|
1894
2440
|
}
|
|
1895
2441
|
|
|
2442
|
+
@complex model malware {
|
|
2443
|
+
description: string | null;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
1896
2446
|
/**
|
|
1897
2447
|
* Represents diagnostics status.
|
|
1898
2448
|
*/
|
|
@@ -2024,6 +2574,29 @@ namespace reference.`microsoft.graph` {
|
|
|
2024
2574
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
2025
2575
|
}
|
|
2026
2576
|
|
|
2577
|
+
@complex model mediaSource {
|
|
2578
|
+
contentCategory: mediaSourceContentCategory | null;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
@complex model meetingTimeSuggestion {
|
|
2582
|
+
attendeeAvailability: attendeeAvailability[] | null;
|
|
2583
|
+
confidence: float64 | null;
|
|
2584
|
+
locations: location[] | null;
|
|
2585
|
+
meetingTimeSlot: timeSlot | null;
|
|
2586
|
+
order: int32 | null;
|
|
2587
|
+
organizerAvailability: freeBusyStatus | null;
|
|
2588
|
+
suggestionReason: string | null;
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
@complex model meetingTimeSuggestionsResult {
|
|
2592
|
+
emptySuggestionsReason: string | null;
|
|
2593
|
+
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
@complex model mentionAction {
|
|
2597
|
+
mentionees: identitySet[] | null;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2027
2600
|
@complex model messageRuleActions {
|
|
2028
2601
|
assignCategories: string[] | null;
|
|
2029
2602
|
copyToFolder: string | null;
|
|
@@ -2071,6 +2644,21 @@ namespace reference.`microsoft.graph` {
|
|
|
2071
2644
|
withinSizeRange: sizeRange | null;
|
|
2072
2645
|
}
|
|
2073
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
|
+
|
|
2074
2662
|
/**
|
|
2075
2663
|
* Contains properties used to assign an Microsoft Store for Business mobile app to a group.
|
|
2076
2664
|
*/
|
|
@@ -2127,12 +2715,30 @@ namespace reference.`microsoft.graph` {
|
|
|
2127
2715
|
useLocalTime: boolean;
|
|
2128
2716
|
}
|
|
2129
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
|
+
|
|
2130
2729
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
2131
2730
|
}
|
|
2132
2731
|
|
|
2133
2732
|
@complex model noScopes extends inheritableScopes {
|
|
2134
2733
|
}
|
|
2135
2734
|
|
|
2735
|
+
@complex model numberColumn {
|
|
2736
|
+
decimalPlaces: string | null;
|
|
2737
|
+
displayAs: string | null;
|
|
2738
|
+
maximum: float64 | null;
|
|
2739
|
+
minimum: float64 | null;
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2136
2742
|
@complex model objectIdentity {
|
|
2137
2743
|
issuer: string | null;
|
|
2138
2744
|
issuerAssignedId: string | null;
|
|
@@ -2255,6 +2861,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2255
2861
|
}
|
|
2256
2862
|
|
|
2257
2863
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
2864
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
2258
2865
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
2259
2866
|
blockSoftMatchEnabled: boolean | null;
|
|
2260
2867
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -2301,6 +2908,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2301
2908
|
value: string | null;
|
|
2302
2909
|
}
|
|
2303
2910
|
|
|
2911
|
+
@complex model openIdConnectSetting {
|
|
2912
|
+
clientId: string;
|
|
2913
|
+
discoveryUrl: string;
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2304
2916
|
@complex model optionalClaim {
|
|
2305
2917
|
additionalProperties: string[] | null;
|
|
2306
2918
|
essential: boolean;
|
|
@@ -2371,6 +2983,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2371
2983
|
userType: windowsUserType;
|
|
2372
2984
|
}
|
|
2373
2985
|
|
|
2986
|
+
@complex model `package` {
|
|
2987
|
+
type: string | null;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2374
2990
|
@complex model parentalControlSettings {
|
|
2375
2991
|
countriesBlockedForMinors: string[] | null;
|
|
2376
2992
|
legalAgeGroupRule: string | null;
|
|
@@ -2393,11 +3009,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2393
3009
|
password: string | null;
|
|
2394
3010
|
}
|
|
2395
3011
|
|
|
3012
|
+
@complex model passwordResetResponse {
|
|
3013
|
+
newPassword: string | null;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
2396
3016
|
@complex model patternedRecurrence {
|
|
2397
3017
|
pattern: recurrencePattern | null;
|
|
2398
3018
|
range: recurrenceRange | null;
|
|
2399
3019
|
}
|
|
2400
3020
|
|
|
3021
|
+
@complex model pendingContentUpdate {
|
|
3022
|
+
queuedDateTime: offsetDateTime | null;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
@complex model pendingOperations {
|
|
3026
|
+
pendingContentUpdate: pendingContentUpdate | null;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
2401
3029
|
@complex model permissionScope {
|
|
2402
3030
|
adminConsentDescription: string | null;
|
|
2403
3031
|
adminConsentDisplayName: string | null;
|
|
@@ -2410,6 +3038,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2410
3038
|
value: string | null;
|
|
2411
3039
|
}
|
|
2412
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
|
+
|
|
2413
3051
|
@complex model personType {
|
|
2414
3052
|
class: string | null;
|
|
2415
3053
|
subclass: string | null;
|
|
@@ -2422,6 +3060,18 @@ namespace reference.`microsoft.graph` {
|
|
|
2422
3060
|
type: phoneType | null;
|
|
2423
3061
|
}
|
|
2424
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
|
+
|
|
2425
3075
|
@complex model physicalAddress {
|
|
2426
3076
|
city: string | null;
|
|
2427
3077
|
countryOrRegion: string | null;
|
|
@@ -2449,12 +3099,59 @@ namespace reference.`microsoft.graph` {
|
|
|
2449
3099
|
statementUrl: string | null;
|
|
2450
3100
|
}
|
|
2451
3101
|
|
|
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
|
+
|
|
2452
3119
|
@complex model provisionedPlan {
|
|
2453
3120
|
capabilityStatus: string | null;
|
|
2454
3121
|
provisioningStatus: string | null;
|
|
2455
3122
|
service: string | null;
|
|
2456
3123
|
}
|
|
2457
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;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
2458
3155
|
/**
|
|
2459
3156
|
* Proxied Domain
|
|
2460
3157
|
*/
|
|
@@ -2469,10 +3166,60 @@ namespace reference.`microsoft.graph` {
|
|
|
2469
3166
|
proxy: string | null;
|
|
2470
3167
|
}
|
|
2471
3168
|
|
|
3169
|
+
@complex model publicationFacet {
|
|
3170
|
+
checkedOutBy: identitySet | null;
|
|
3171
|
+
level: string | null;
|
|
3172
|
+
versionId: string | null;
|
|
3173
|
+
}
|
|
3174
|
+
|
|
2472
3175
|
@complex model publicClientApplication {
|
|
2473
3176
|
redirectUris: string[];
|
|
2474
3177
|
}
|
|
2475
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
|
+
|
|
2476
3223
|
@complex model recipient {
|
|
2477
3224
|
emailAddress: emailAddress | null;
|
|
2478
3225
|
}
|
|
@@ -2495,11 +3242,19 @@ namespace reference.`microsoft.graph` {
|
|
|
2495
3242
|
type: recurrenceRangeType | null;
|
|
2496
3243
|
}
|
|
2497
3244
|
|
|
3245
|
+
@complex model recycleBinSettings {
|
|
3246
|
+
retentionPeriodOverrideDays: int32 | null;
|
|
3247
|
+
}
|
|
3248
|
+
|
|
2498
3249
|
@complex model redirectUriSettings {
|
|
2499
3250
|
index: int32 | null;
|
|
2500
3251
|
uri: string | null;
|
|
2501
3252
|
}
|
|
2502
3253
|
|
|
3254
|
+
@complex model registrationEnforcement {
|
|
3255
|
+
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
2503
3258
|
@complex model reminder {
|
|
2504
3259
|
changeKey: string | null;
|
|
2505
3260
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -2511,6 +3266,28 @@ namespace reference.`microsoft.graph` {
|
|
|
2511
3266
|
reminderFireTime: dateTimeTimeZone | null;
|
|
2512
3267
|
}
|
|
2513
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
|
+
|
|
2514
3291
|
/**
|
|
2515
3292
|
* Lock action result with a pin to unlock
|
|
2516
3293
|
*/
|
|
@@ -2521,6 +3298,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2521
3298
|
unlockPin: string | null;
|
|
2522
3299
|
}
|
|
2523
3300
|
|
|
3301
|
+
@complex model renameAction {
|
|
3302
|
+
newName: string | null;
|
|
3303
|
+
oldName: string | null;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
2524
3306
|
/**
|
|
2525
3307
|
* Device Configuration profile History reports.
|
|
2526
3308
|
*/
|
|
@@ -2585,6 +3367,18 @@ namespace reference.`microsoft.graph` {
|
|
|
2585
3367
|
time: offsetDateTime | null;
|
|
2586
3368
|
}
|
|
2587
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
|
+
|
|
2588
3382
|
/**
|
|
2589
3383
|
* Color in RGB.
|
|
2590
3384
|
*/
|
|
@@ -2623,6 +3417,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2623
3417
|
resourceActions: resourceAction[] | null;
|
|
2624
3418
|
}
|
|
2625
3419
|
|
|
3420
|
+
@complex model root {
|
|
3421
|
+
}
|
|
3422
|
+
|
|
2626
3423
|
/**
|
|
2627
3424
|
* RotateBitLockerKeys device action result
|
|
2628
3425
|
*/
|
|
@@ -2661,6 +3458,26 @@ namespace reference.`microsoft.graph` {
|
|
|
2661
3458
|
selectionLikelihood: selectionLikelihoodInfo | null;
|
|
2662
3459
|
}
|
|
2663
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
|
+
|
|
2664
3481
|
@complex model servicePlanInfo {
|
|
2665
3482
|
appliesTo: string | null;
|
|
2666
3483
|
provisioningStatus: string | null;
|
|
@@ -2676,6 +3493,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2676
3493
|
tokenEncryptionKeyId: boolean | null;
|
|
2677
3494
|
}
|
|
2678
3495
|
|
|
3496
|
+
@complex model servicePrincipalSignIn extends signInIdentity {
|
|
3497
|
+
servicePrincipalId: string | null;
|
|
3498
|
+
}
|
|
3499
|
+
|
|
2679
3500
|
@complex model settingSource {
|
|
2680
3501
|
displayName: string | null;
|
|
2681
3502
|
id: string | null;
|
|
@@ -2694,6 +3515,17 @@ namespace reference.`microsoft.graph` {
|
|
|
2694
3515
|
value: string | null;
|
|
2695
3516
|
}
|
|
2696
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
|
+
|
|
2697
3529
|
/**
|
|
2698
3530
|
* SharedPC Account Manager Policy. Only applies when the account manager is enabled.
|
|
2699
3531
|
*/
|
|
@@ -2716,11 +3548,98 @@ namespace reference.`microsoft.graph` {
|
|
|
2716
3548
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
2717
3549
|
}
|
|
2718
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
|
+
|
|
2719
3634
|
@complex model signingCertificateUpdateStatus {
|
|
2720
3635
|
certificateUpdateResult: string | null;
|
|
2721
3636
|
@computed lastRunDateTime: offsetDateTime | null;
|
|
2722
3637
|
}
|
|
2723
3638
|
|
|
3639
|
+
@abstract
|
|
3640
|
+
@complex model signInIdentity {
|
|
3641
|
+
}
|
|
3642
|
+
|
|
2724
3643
|
@complex model signInLocation {
|
|
2725
3644
|
city: string | null;
|
|
2726
3645
|
countryOrRegion: string | null;
|
|
@@ -2728,6 +3647,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2728
3647
|
state: string | null;
|
|
2729
3648
|
}
|
|
2730
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
|
+
|
|
2731
3667
|
@complex model sizeRange {
|
|
2732
3668
|
maximumSize: int32 | null;
|
|
2733
3669
|
minimumSize: int32 | null;
|
|
@@ -2737,6 +3673,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2737
3673
|
redirectUris: string[];
|
|
2738
3674
|
}
|
|
2739
3675
|
|
|
3676
|
+
@complex model specialFolder {
|
|
3677
|
+
name: string | null;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
2740
3680
|
@complex model standardTimeZoneOffset {
|
|
2741
3681
|
dayOccurrence: int32 | null;
|
|
2742
3682
|
dayOfWeek: dayOfWeek | null;
|
|
@@ -2745,6 +3685,22 @@ namespace reference.`microsoft.graph` {
|
|
|
2745
3685
|
year: int32 | null;
|
|
2746
3686
|
}
|
|
2747
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
|
+
|
|
2748
3704
|
@complex model tenantInformation {
|
|
2749
3705
|
defaultDomainName: string | null;
|
|
2750
3706
|
displayName: string | null;
|
|
@@ -2752,6 +3708,37 @@ namespace reference.`microsoft.graph` {
|
|
|
2752
3708
|
tenantId: string;
|
|
2753
3709
|
}
|
|
2754
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
|
+
|
|
3737
|
+
@complex model timeConstraint {
|
|
3738
|
+
activityDomain: activityDomain | null;
|
|
3739
|
+
timeSlots: timeSlot[] | null;
|
|
3740
|
+
}
|
|
3741
|
+
|
|
2755
3742
|
@complex model timeSlot {
|
|
2756
3743
|
end: dateTimeTimeZone;
|
|
2757
3744
|
start: dateTimeTimeZone;
|
|
@@ -2766,12 +3753,33 @@ namespace reference.`microsoft.graph` {
|
|
|
2766
3753
|
displayName: string | null;
|
|
2767
3754
|
}
|
|
2768
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
|
+
|
|
2769
3770
|
@complex model unifiedRolePermission {
|
|
2770
3771
|
allowedResourceActions: string[];
|
|
2771
3772
|
condition: string | null;
|
|
2772
3773
|
excludedResourceActions: string[] | null;
|
|
2773
3774
|
}
|
|
2774
3775
|
|
|
3776
|
+
@complex model updateAllowedCombinationsResult {
|
|
3777
|
+
additionalInformation: string | null;
|
|
3778
|
+
conditionalAccessReferences: string[] | null;
|
|
3779
|
+
currentCombinations: authenticationMethodModes[];
|
|
3780
|
+
previousCombinations: authenticationMethodModes[];
|
|
3781
|
+
}
|
|
3782
|
+
|
|
2775
3783
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
2776
3784
|
calendarSyncEnabled: boolean | null;
|
|
2777
3785
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -2787,6 +3795,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2787
3795
|
uploadUrl: string | null;
|
|
2788
3796
|
}
|
|
2789
3797
|
|
|
3798
|
+
@complex model userActionContext extends signInContext {
|
|
3799
|
+
userAction: userAction | null;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
2790
3802
|
/**
|
|
2791
3803
|
* The user experience analytics summary of Devices not windows autopilot ready.
|
|
2792
3804
|
*/
|
|
@@ -2944,6 +3956,42 @@ namespace reference.`microsoft.graph` {
|
|
|
2944
3956
|
windows10DevicesWithoutTenantAttach: int32;
|
|
2945
3957
|
}
|
|
2946
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
|
+
|
|
2947
3995
|
@complex model verifiedDomain {
|
|
2948
3996
|
capabilities: string | null;
|
|
2949
3997
|
isDefault: boolean | null;
|
|
@@ -2952,6 +4000,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2952
4000
|
type: string | null;
|
|
2953
4001
|
}
|
|
2954
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
|
+
|
|
2955
4020
|
/**
|
|
2956
4021
|
* Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type.
|
|
2957
4022
|
*/
|
|
@@ -2974,6 +4039,85 @@ namespace reference.`microsoft.graph` {
|
|
|
2974
4039
|
redirectUriSettings: redirectUriSettings[];
|
|
2975
4040
|
}
|
|
2976
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
|
+
|
|
2977
4121
|
@complex model website {
|
|
2978
4122
|
address: string | null;
|
|
2979
4123
|
displayName: string | null;
|
|
@@ -3660,9 +4804,46 @@ namespace reference.`microsoft.graph` {
|
|
|
3660
4804
|
timeZone: timeZoneBase | null;
|
|
3661
4805
|
}
|
|
3662
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
|
+
|
|
3663
4839
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
3664
4840
|
}
|
|
3665
4841
|
|
|
4842
|
+
@entity model admin extends MsGraph.SharedModels.entity {
|
|
4843
|
+
@contains people: peopleAdminSettings | null;
|
|
4844
|
+
@contains sharepoint: sharepoint | null;
|
|
4845
|
+
}
|
|
4846
|
+
|
|
3666
4847
|
@open
|
|
3667
4848
|
@entity model administrativeUnit extends directoryObject {
|
|
3668
4849
|
description: string | null;
|
|
@@ -4546,6 +5727,48 @@ namespace reference.`microsoft.graph` {
|
|
|
4546
5727
|
resources: auditResource[] | null;
|
|
4547
5728
|
}
|
|
4548
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
|
+
|
|
4549
5772
|
@entity model authorizationPolicy extends policyBase {
|
|
4550
5773
|
allowedToSignUpEmailBasedSubscriptions: boolean;
|
|
4551
5774
|
allowedToUseSSPR: boolean;
|
|
@@ -4557,6 +5780,34 @@ namespace reference.`microsoft.graph` {
|
|
|
4557
5780
|
guestUserRoleId: guid | null;
|
|
4558
5781
|
}
|
|
4559
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
|
+
|
|
4560
5811
|
@entity model bitlocker extends entity {
|
|
4561
5812
|
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
4562
5813
|
}
|
|
@@ -4611,6 +5862,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4611
5862
|
suggestedCalendarName: string | null;
|
|
4612
5863
|
}
|
|
4613
5864
|
|
|
5865
|
+
@entity model canvasLayout extends entity {
|
|
5866
|
+
@contains horizontalSections: horizontalSection[];
|
|
5867
|
+
@contains verticalSection: verticalSection | null;
|
|
5868
|
+
}
|
|
5869
|
+
|
|
4614
5870
|
@entity model certificateBasedAuthConfiguration extends entity {
|
|
4615
5871
|
certificateAuthorities: certificateAuthority[];
|
|
4616
5872
|
}
|
|
@@ -4618,6 +5874,45 @@ namespace reference.`microsoft.graph` {
|
|
|
4618
5874
|
@entity model claimsMappingPolicy extends stsPolicy {
|
|
4619
5875
|
}
|
|
4620
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;
|
|
5914
|
+
}
|
|
5915
|
+
|
|
4621
5916
|
@entity model companySubscription extends entity {
|
|
4622
5917
|
commerceSubscriptionId: string | null;
|
|
4623
5918
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -4675,6 +5970,33 @@ namespace reference.`microsoft.graph` {
|
|
|
4675
5970
|
partnerState: deviceManagementPartnerTenantState;
|
|
4676
5971
|
}
|
|
4677
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
|
+
|
|
4678
6000
|
@open
|
|
4679
6001
|
@entity model contact extends outlookItem {
|
|
4680
6002
|
assistantName: string | null;
|
|
@@ -4725,6 +6047,28 @@ namespace reference.`microsoft.graph` {
|
|
|
4725
6047
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
4726
6048
|
}
|
|
4727
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
|
+
|
|
4728
6072
|
@open
|
|
4729
6073
|
@entity model contract extends directoryObject {
|
|
4730
6074
|
contractType: string | null;
|
|
@@ -4754,6 +6098,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4754
6098
|
@contains posts: post[];
|
|
4755
6099
|
}
|
|
4756
6100
|
|
|
6101
|
+
@entity model countryNamedLocation extends namedLocation {
|
|
6102
|
+
countriesAndRegions: string[];
|
|
6103
|
+
countryLookupMethod: countryLookupMethodType | null;
|
|
6104
|
+
includeUnknownCountriesAndRegions: boolean;
|
|
6105
|
+
}
|
|
6106
|
+
|
|
4757
6107
|
@entity model crossTenantAccessPolicy extends policyBase {
|
|
4758
6108
|
@contains default: crossTenantAccessPolicyConfigurationDefault | null;
|
|
4759
6109
|
@contains partners: crossTenantAccessPolicyConfigurationPartner[];
|
|
@@ -6301,6 +7651,20 @@ namespace reference.`microsoft.graph` {
|
|
|
6301
7651
|
@contains subscriptions: companySubscription[];
|
|
6302
7652
|
}
|
|
6303
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
|
+
|
|
6304
7668
|
@open
|
|
6305
7669
|
@entity model directoryObject extends entity {
|
|
6306
7670
|
deletedDateTime: offsetDateTime | null;
|
|
@@ -6327,6 +7691,14 @@ namespace reference.`microsoft.graph` {
|
|
|
6327
7691
|
displayName: string | null;
|
|
6328
7692
|
}
|
|
6329
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
|
+
|
|
6330
7702
|
@entity model domain extends entity {
|
|
6331
7703
|
authenticationType: string;
|
|
6332
7704
|
availabilityStatus: string | null;
|
|
@@ -6382,6 +7754,61 @@ namespace reference.`microsoft.graph` {
|
|
|
6382
7754
|
description: string | null;
|
|
6383
7755
|
}
|
|
6384
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
|
+
|
|
6385
7812
|
/**
|
|
6386
7813
|
* Contains properties for the installation summary of a book for a device.
|
|
6387
7814
|
*/
|
|
@@ -6619,21 +8046,93 @@ namespace reference.`microsoft.graph` {
|
|
|
6619
8046
|
targetObjects: string[];
|
|
6620
8047
|
}
|
|
6621
8048
|
|
|
6622
|
-
@entity model externalDomainName extends entity {
|
|
8049
|
+
@entity model externalDomainName extends entity {
|
|
8050
|
+
}
|
|
8051
|
+
|
|
8052
|
+
@entity model featureRolloutPolicy extends entity {
|
|
8053
|
+
description: string | null;
|
|
8054
|
+
displayName: string;
|
|
8055
|
+
feature: stagedFeatureName;
|
|
8056
|
+
isAppliedToOrganization: boolean;
|
|
8057
|
+
isEnabled: boolean;
|
|
8058
|
+
@contains appliesTo: directoryObject[];
|
|
8059
|
+
}
|
|
8060
|
+
|
|
8061
|
+
@entity model federatedIdentityCredential extends entity {
|
|
8062
|
+
audiences: string[];
|
|
8063
|
+
description: string | null;
|
|
8064
|
+
issuer: string;
|
|
8065
|
+
name: 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 {
|
|
8075
|
+
}
|
|
8076
|
+
|
|
8077
|
+
@entity model fileAttachment extends attachment {
|
|
8078
|
+
contentBytes: binary | null;
|
|
8079
|
+
contentId: string | null;
|
|
8080
|
+
contentLocation: string | null;
|
|
8081
|
+
}
|
|
8082
|
+
|
|
8083
|
+
@entity model fileStorage extends entity {
|
|
8084
|
+
@contains containers: fileStorageContainer[];
|
|
8085
|
+
@contains containerTypeRegistrations: fileStorageContainerTypeRegistration[];
|
|
8086
|
+
@contains containerTypes: fileStorageContainerType[];
|
|
8087
|
+
@contains deletedContainers: fileStorageContainer[];
|
|
6623
8088
|
}
|
|
6624
8089
|
|
|
6625
|
-
@entity model
|
|
6626
|
-
|
|
8090
|
+
@entity model fileStorageContainer extends entity {
|
|
8091
|
+
assignedSensitivityLabel: assignedLabel | null;
|
|
8092
|
+
containerTypeId: guid;
|
|
8093
|
+
@computed createdDateTime: offsetDateTime;
|
|
8094
|
+
customProperties: fileStorageContainerCustomPropertyDictionary | null;
|
|
6627
8095
|
description: string | null;
|
|
6628
|
-
|
|
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;
|
|
6629
8115
|
name: string;
|
|
6630
|
-
|
|
8116
|
+
owningAppId: guid;
|
|
8117
|
+
settings: fileStorageContainerTypeSettings;
|
|
6631
8118
|
}
|
|
6632
8119
|
|
|
6633
|
-
@entity model
|
|
6634
|
-
|
|
6635
|
-
|
|
6636
|
-
|
|
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[];
|
|
6637
8136
|
}
|
|
6638
8137
|
|
|
6639
8138
|
@open
|
|
@@ -6662,6 +8161,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6662
8161
|
membershipRule: string | null;
|
|
6663
8162
|
membershipRuleProcessingState: string | null;
|
|
6664
8163
|
onPremisesDomainName: string | null;
|
|
8164
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
6665
8165
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
6666
8166
|
onPremisesNetBiosName: string | null;
|
|
6667
8167
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -6687,6 +8187,8 @@ namespace reference.`microsoft.graph` {
|
|
|
6687
8187
|
@contains calendarView: event[];
|
|
6688
8188
|
@contains conversations: conversation[];
|
|
6689
8189
|
@references createdOnBehalfOf: directoryObject | null;
|
|
8190
|
+
@contains drive: drive | null;
|
|
8191
|
+
@contains drives: drive[];
|
|
6690
8192
|
@contains events: event[];
|
|
6691
8193
|
@contains extensions: extension[];
|
|
6692
8194
|
@contains groupLifecyclePolicies: groupLifecyclePolicy[];
|
|
@@ -6696,8 +8198,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6696
8198
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
6697
8199
|
@references owners: directoryObject[];
|
|
6698
8200
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
8201
|
+
@contains photo: profilePhoto | null;
|
|
8202
|
+
@contains photos: profilePhoto[];
|
|
6699
8203
|
@contains rejectedSenders: directoryObject[];
|
|
6700
8204
|
@contains settings: groupSetting[];
|
|
8205
|
+
@contains sites: site[];
|
|
6701
8206
|
@contains threads: conversationThread[];
|
|
6702
8207
|
@references transitiveMemberOf: directoryObject[];
|
|
6703
8208
|
@references transitiveMembers: directoryObject[];
|
|
@@ -6726,7 +8231,19 @@ namespace reference.`microsoft.graph` {
|
|
|
6726
8231
|
@entity model homeRealmDiscoveryPolicy extends stsPolicy {
|
|
6727
8232
|
}
|
|
6728
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
|
+
|
|
6729
8245
|
@entity model identityContainer extends MsGraph.SharedModels.entity {
|
|
8246
|
+
@contains conditionalAccess: conditionalAccessRoot | null;
|
|
6730
8247
|
}
|
|
6731
8248
|
|
|
6732
8249
|
@entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
|
|
@@ -6741,6 +8258,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6741
8258
|
displayName: string | null;
|
|
6742
8259
|
}
|
|
6743
8260
|
|
|
8261
|
+
@entity model identitySecurityDefaultsEnforcementPolicy extends policyBase {
|
|
8262
|
+
isEnabled: boolean;
|
|
8263
|
+
}
|
|
8264
|
+
|
|
6744
8265
|
/**
|
|
6745
8266
|
* Imported windows autopilot devices.
|
|
6746
8267
|
*/
|
|
@@ -6811,6 +8332,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6811
8332
|
@computed @key resourceAppId: string;
|
|
6812
8333
|
}
|
|
6813
8334
|
|
|
8335
|
+
@entity model insightsSettings extends entity {
|
|
8336
|
+
disabledForGroup: string | null;
|
|
8337
|
+
isEnabledInOrganization: boolean | null;
|
|
8338
|
+
}
|
|
8339
|
+
|
|
6814
8340
|
@entity model internalDomainFederation extends samlOrWsFedProvider {
|
|
6815
8341
|
activeSignInUri: string | null;
|
|
6816
8342
|
federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
|
|
@@ -7767,16 +9293,86 @@ namespace reference.`microsoft.graph` {
|
|
|
7767
9293
|
@entity model iosVppEBookAssignment extends managedEBookAssignment {
|
|
7768
9294
|
}
|
|
7769
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
|
+
|
|
7770
9330
|
@entity model itemAttachment extends attachment {
|
|
7771
9331
|
@contains item: outlookItem | null;
|
|
7772
9332
|
}
|
|
7773
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
|
+
|
|
7774
9342
|
@entity model licenseDetails extends entity {
|
|
7775
9343
|
servicePlans: servicePlanInfo[];
|
|
7776
9344
|
skuId: guid | null;
|
|
7777
9345
|
skuPartNumber: string | null;
|
|
7778
9346
|
}
|
|
7779
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
|
+
|
|
7780
9376
|
/**
|
|
7781
9377
|
* The text content of a Notification Message Template for the specified locale.
|
|
7782
9378
|
*/
|
|
@@ -7803,6 +9399,14 @@ namespace reference.`microsoft.graph` {
|
|
|
7803
9399
|
subject: string;
|
|
7804
9400
|
}
|
|
7805
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
|
+
|
|
7806
9410
|
/**
|
|
7807
9411
|
* This class contains compliance settings for Mac OS.
|
|
7808
9412
|
*/
|
|
@@ -9440,6 +11044,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9440
11044
|
value: string[] | null;
|
|
9441
11045
|
}
|
|
9442
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
|
+
|
|
9443
11054
|
/**
|
|
9444
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.
|
|
9445
11056
|
*/
|
|
@@ -9629,6 +11240,36 @@ namespace reference.`microsoft.graph` {
|
|
|
9629
11240
|
@contains masterCategories: outlookCategory[];
|
|
9630
11241
|
}
|
|
9631
11242
|
|
|
11243
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
11244
|
+
allowedPasskeyProfiles: guid | null;
|
|
11245
|
+
}
|
|
11246
|
+
|
|
11247
|
+
@entity model peopleAdminSettings extends entity {
|
|
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;
|
|
11271
|
+
}
|
|
11272
|
+
|
|
9632
11273
|
@entity model permissionGrantConditionSet extends entity {
|
|
9633
11274
|
clientApplicationIds: string[] | null;
|
|
9634
11275
|
clientApplicationPublisherIds: string[] | null;
|
|
@@ -9673,15 +11314,23 @@ namespace reference.`microsoft.graph` {
|
|
|
9673
11314
|
displayName: string | null;
|
|
9674
11315
|
}
|
|
9675
11316
|
|
|
9676
|
-
@
|
|
11317
|
+
@abstract
|
|
11318
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
11319
|
+
deletedDateTime: offsetDateTime | null;
|
|
11320
|
+
}
|
|
11321
|
+
|
|
11322
|
+
@entity model policyRoot extends entity {
|
|
9677
11323
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
9678
11324
|
@contains appManagementPolicies: appManagementPolicy[];
|
|
9679
11325
|
@contains authorizationPolicy: authorizationPolicy | null;
|
|
9680
11326
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
11327
|
+
@contains conditionalAccessPolicies: conditionalAccessPolicy[];
|
|
9681
11328
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
9682
11329
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
9683
11330
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
11331
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
9684
11332
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
11333
|
+
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
9685
11334
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
9686
11335
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
9687
11336
|
@contains tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
@@ -9704,17 +11353,80 @@ namespace reference.`microsoft.graph` {
|
|
|
9704
11353
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
9705
11354
|
}
|
|
9706
11355
|
|
|
11356
|
+
@entity model profileCardProperty extends entity {
|
|
11357
|
+
annotations: profileCardAnnotation[] | null;
|
|
11358
|
+
directoryPropertyName: string | null;
|
|
11359
|
+
isVisible: boolean;
|
|
11360
|
+
}
|
|
11361
|
+
|
|
9707
11362
|
@entity model profilePhoto extends entity {
|
|
9708
11363
|
height: int32 | null;
|
|
9709
11364
|
width: int32 | null;
|
|
9710
11365
|
}
|
|
9711
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
|
+
|
|
9712
11411
|
@entity model rbacApplication extends entity {
|
|
9713
11412
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
9714
11413
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
9715
11414
|
@contains roleDefinitions: unifiedRoleDefinition[];
|
|
9716
11415
|
}
|
|
9717
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
|
+
|
|
9718
11430
|
@entity model referenceAttachment extends attachment {
|
|
9719
11431
|
}
|
|
9720
11432
|
|
|
@@ -9747,6 +11459,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9747
11459
|
}
|
|
9748
11460
|
|
|
9749
11461
|
@entity model reportRoot extends MsGraph.SharedModels.entity {
|
|
11462
|
+
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
9750
11463
|
}
|
|
9751
11464
|
|
|
9752
11465
|
/**
|
|
@@ -9775,6 +11488,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9775
11488
|
resourceAppId: string | null;
|
|
9776
11489
|
}
|
|
9777
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
|
+
|
|
9778
11498
|
@entity model riskDetection extends entity {
|
|
9779
11499
|
activity: activityType | null;
|
|
9780
11500
|
activityDateTime: offsetDateTime | null;
|
|
@@ -10032,6 +11752,17 @@ namespace reference.`microsoft.graph` {
|
|
|
10032
11752
|
unknownDeviceCount: int32;
|
|
10033
11753
|
}
|
|
10034
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
|
+
|
|
10035
11766
|
/**
|
|
10036
11767
|
* This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource.
|
|
10037
11768
|
*/
|
|
@@ -10086,10 +11817,185 @@ namespace reference.`microsoft.graph` {
|
|
|
10086
11817
|
maintenanceStartTime: offsetDateTime | null;
|
|
10087
11818
|
}
|
|
10088
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
|
+
|
|
10089
11960
|
@entity model singleValueLegacyExtendedProperty extends entity {
|
|
10090
11961
|
value: string | null;
|
|
10091
11962
|
}
|
|
10092
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
|
+
|
|
10093
11999
|
@entity model softwareUpdateStatusSummary extends entity {
|
|
10094
12000
|
/**
|
|
10095
12001
|
* Number of compliant devices.
|
|
@@ -10153,6 +12059,16 @@ namespace reference.`microsoft.graph` {
|
|
|
10153
12059
|
unknownUserCount: int32;
|
|
10154
12060
|
}
|
|
10155
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
|
+
|
|
10156
12072
|
@abstract
|
|
10157
12073
|
@entity model stsPolicy extends policyBase {
|
|
10158
12074
|
definition: string[];
|
|
@@ -10334,6 +12250,18 @@ namespace reference.`microsoft.graph` {
|
|
|
10334
12250
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
10335
12251
|
}
|
|
10336
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
|
+
|
|
10337
12265
|
@entity model tokenIssuancePolicy extends stsPolicy {
|
|
10338
12266
|
}
|
|
10339
12267
|
|
|
@@ -10451,6 +12379,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10451
12379
|
schools: string[] | null;
|
|
10452
12380
|
securityIdentifier: string | null;
|
|
10453
12381
|
showInAddressList: boolean | null;
|
|
12382
|
+
signInActivity: signInActivity | null;
|
|
10454
12383
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
10455
12384
|
skills: string[] | null;
|
|
10456
12385
|
state: string | null;
|
|
@@ -10472,8 +12401,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10472
12401
|
*/
|
|
10473
12402
|
@contains deviceManagementTroubleshootingEvents: deviceManagementTroubleshootingEvent[];
|
|
10474
12403
|
@references directReports: directoryObject[];
|
|
12404
|
+
@contains drive: drive | null;
|
|
12405
|
+
@contains drives: drive[];
|
|
10475
12406
|
@contains events: event[];
|
|
10476
12407
|
@contains extensions: extension[];
|
|
12408
|
+
@references followedSites: site[];
|
|
10477
12409
|
@contains inferenceClassification: inferenceClassification | null;
|
|
10478
12410
|
@contains licenseDetails: licenseDetails[];
|
|
10479
12411
|
@contains mailFolders: mailFolder[];
|
|
@@ -10494,6 +12426,8 @@ namespace reference.`microsoft.graph` {
|
|
|
10494
12426
|
@references ownedDevices: directoryObject[];
|
|
10495
12427
|
@references ownedObjects: directoryObject[];
|
|
10496
12428
|
@contains people: person[];
|
|
12429
|
+
@contains photo: profilePhoto | null;
|
|
12430
|
+
@contains photos: profilePhoto[];
|
|
10497
12431
|
@references registeredDevices: directoryObject[];
|
|
10498
12432
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
10499
12433
|
@references sponsors: directoryObject[];
|
|
@@ -11452,6 +13386,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11452
13386
|
workFromAnywhereScore: float64;
|
|
11453
13387
|
}
|
|
11454
13388
|
|
|
13389
|
+
@entity model userInsightsSettings extends entity {
|
|
13390
|
+
isEnabled: boolean;
|
|
13391
|
+
}
|
|
13392
|
+
|
|
11455
13393
|
/**
|
|
11456
13394
|
* Contains properties for the installation state summary for a user.
|
|
11457
13395
|
*/
|
|
@@ -11478,6 +13416,33 @@ namespace reference.`microsoft.graph` {
|
|
|
11478
13416
|
@contains deviceStates: deviceInstallState[];
|
|
11479
13417
|
}
|
|
11480
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
|
+
|
|
13437
|
+
@entity model userSettings extends entity {
|
|
13438
|
+
@contains itemInsights: userInsightsSettings | null;
|
|
13439
|
+
}
|
|
13440
|
+
|
|
13441
|
+
@entity model verticalSection extends entity {
|
|
13442
|
+
emphasis: sectionEmphasisType | null;
|
|
13443
|
+
@contains webparts: webPart[];
|
|
13444
|
+
}
|
|
13445
|
+
|
|
11481
13446
|
/**
|
|
11482
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.
|
|
11483
13448
|
*/
|
|
@@ -11542,6 +13507,15 @@ namespace reference.`microsoft.graph` {
|
|
|
11542
13507
|
useManagedBrowser: boolean;
|
|
11543
13508
|
}
|
|
11544
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
|
+
|
|
11545
13519
|
/**
|
|
11546
13520
|
* Contains properties and inherited properties for Win32 apps.
|
|
11547
13521
|
*/
|
|
@@ -14044,6 +16018,11 @@ namespace reference.`microsoft.graph` {
|
|
|
14044
16018
|
appUrl: string | null;
|
|
14045
16019
|
}
|
|
14046
16020
|
|
|
16021
|
+
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
16022
|
+
allowedIssuerSkis: string[];
|
|
16023
|
+
allowedPolicyOIDs: string[];
|
|
16024
|
+
}
|
|
16025
|
+
|
|
14047
16026
|
/**
|
|
14048
16027
|
* State of the action on the device
|
|
14049
16028
|
*/
|
|
@@ -14079,6 +16058,14 @@ namespace reference.`microsoft.graph` {
|
|
|
14079
16058
|
notSupported: 6,
|
|
14080
16059
|
}
|
|
14081
16060
|
|
|
16061
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16062
|
+
enum activityDomain {
|
|
16063
|
+
`unknown`: 0,
|
|
16064
|
+
work: 1,
|
|
16065
|
+
personal: 2,
|
|
16066
|
+
unrestricted: 3,
|
|
16067
|
+
}
|
|
16068
|
+
|
|
14082
16069
|
enum activityType {
|
|
14083
16070
|
signin: 0,
|
|
14084
16071
|
user: 1,
|
|
@@ -14086,6 +16073,13 @@ namespace reference.`microsoft.graph` {
|
|
|
14086
16073
|
servicePrincipal: 3,
|
|
14087
16074
|
}
|
|
14088
16075
|
|
|
16076
|
+
enum advancedConfigState {
|
|
16077
|
+
default: 0,
|
|
16078
|
+
enabled: 1,
|
|
16079
|
+
disabled: 2,
|
|
16080
|
+
unknownFutureValue: 3,
|
|
16081
|
+
}
|
|
16082
|
+
|
|
14089
16083
|
enum allowInvitesFrom {
|
|
14090
16084
|
none: 0,
|
|
14091
16085
|
adminsAndGuestInviters: 1,
|
|
@@ -14301,6 +16295,19 @@ namespace reference.`microsoft.graph` {
|
|
|
14301
16295
|
desktop: 2,
|
|
14302
16296
|
}
|
|
14303
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
|
+
|
|
14304
16311
|
/**
|
|
14305
16312
|
* Possible values of the compliance app list.
|
|
14306
16313
|
*/
|
|
@@ -14394,12 +16401,121 @@ namespace reference.`microsoft.graph` {
|
|
|
14394
16401
|
resource: 2,
|
|
14395
16402
|
}
|
|
14396
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
|
+
|
|
14397
16500
|
enum authenticationProtocol {
|
|
14398
16501
|
wsFed: 0,
|
|
14399
16502
|
saml: 1,
|
|
14400
16503
|
unknownFutureValue: 2,
|
|
14401
16504
|
}
|
|
14402
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
|
+
|
|
14403
16519
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
14404
16520
|
enum automaticRepliesStatus {
|
|
14405
16521
|
disabled: 0,
|
|
@@ -14467,6 +16583,23 @@ namespace reference.`microsoft.graph` {
|
|
|
14467
16583
|
unknownFutureValue: 7,
|
|
14468
16584
|
}
|
|
14469
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
|
+
|
|
14470
16603
|
/**
|
|
14471
16604
|
* BitLockerEncryptionMethod types
|
|
14472
16605
|
*/
|
|
@@ -14585,6 +16718,35 @@ namespace reference.`microsoft.graph` {
|
|
|
14585
16718
|
deleted: 2,
|
|
14586
16719
|
}
|
|
14587
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
|
+
|
|
14588
16750
|
/**
|
|
14589
16751
|
* Compliance state.
|
|
14590
16752
|
*/
|
|
@@ -14621,15 +16783,94 @@ namespace reference.`microsoft.graph` {
|
|
|
14621
16783
|
}
|
|
14622
16784
|
|
|
14623
16785
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
14624
|
-
enum complianceStatus {
|
|
14625
|
-
`unknown`: 0,
|
|
14626
|
-
notApplicable: 1,
|
|
14627
|
-
compliant: 2,
|
|
14628
|
-
remediated: 3,
|
|
14629
|
-
nonCompliant: 4,
|
|
14630
|
-
error: 5,
|
|
14631
|
-
conflict: 6,
|
|
14632
|
-
notAssigned: 7,
|
|
16786
|
+
enum complianceStatus {
|
|
16787
|
+
`unknown`: 0,
|
|
16788
|
+
notApplicable: 1,
|
|
16789
|
+
compliant: 2,
|
|
16790
|
+
remediated: 3,
|
|
16791
|
+
nonCompliant: 4,
|
|
16792
|
+
error: 5,
|
|
16793
|
+
conflict: 6,
|
|
16794
|
+
notAssigned: 7,
|
|
16795
|
+
}
|
|
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,
|
|
14633
16874
|
}
|
|
14634
16875
|
|
|
14635
16876
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
@@ -15432,6 +17673,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15432
17673
|
unknownFutureValue: 3,
|
|
15433
17674
|
}
|
|
15434
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
|
+
|
|
15435
17690
|
/**
|
|
15436
17691
|
* Possible values to specify which cookies are allowed in Microsoft Edge.
|
|
15437
17692
|
*/
|
|
@@ -15528,6 +17783,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15528
17783
|
notContacted: 4,
|
|
15529
17784
|
}
|
|
15530
17785
|
|
|
17786
|
+
enum errorCorrectionLevel {
|
|
17787
|
+
l: 1,
|
|
17788
|
+
m: 2,
|
|
17789
|
+
q: 3,
|
|
17790
|
+
h: 4,
|
|
17791
|
+
unknownFutureValue: 5,
|
|
17792
|
+
}
|
|
17793
|
+
|
|
15531
17794
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15532
17795
|
enum eventType {
|
|
15533
17796
|
singleInstance: 0,
|
|
@@ -15552,6 +17815,20 @@ namespace reference.`microsoft.graph` {
|
|
|
15552
17815
|
all: 2,
|
|
15553
17816
|
}
|
|
15554
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
|
+
|
|
15555
17832
|
enum federatedIdpMfaBehavior {
|
|
15556
17833
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
15557
17834
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -15559,6 +17836,67 @@ namespace reference.`microsoft.graph` {
|
|
|
15559
17836
|
unknownFutureValue: 3,
|
|
15560
17837
|
}
|
|
15561
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
|
+
|
|
15562
17900
|
/**
|
|
15563
17901
|
* Possible values for firewallCertificateRevocationListCheckMethod
|
|
15564
17902
|
*/
|
|
@@ -15645,6 +17983,30 @@ namespace reference.`microsoft.graph` {
|
|
|
15645
17983
|
workingElsewhere: 4,
|
|
15646
17984
|
}
|
|
15647
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
|
+
|
|
15648
18010
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15649
18011
|
enum importance {
|
|
15650
18012
|
low: 0,
|
|
@@ -15696,12 +18058,34 @@ namespace reference.`microsoft.graph` {
|
|
|
15696
18058
|
error: 3,
|
|
15697
18059
|
}
|
|
15698
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
|
+
|
|
15699
18076
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15700
18077
|
enum inferenceClassificationType {
|
|
15701
18078
|
focused: 0,
|
|
15702
18079
|
other: 1,
|
|
15703
18080
|
}
|
|
15704
18081
|
|
|
18082
|
+
enum initiatorType {
|
|
18083
|
+
user: 0,
|
|
18084
|
+
application: 1,
|
|
18085
|
+
system: 2,
|
|
18086
|
+
unknownFutureValue: 3,
|
|
18087
|
+
}
|
|
18088
|
+
|
|
15705
18089
|
/**
|
|
15706
18090
|
* Possible values for the install intent chosen by the admin.
|
|
15707
18091
|
*/
|
|
@@ -15860,6 +18244,14 @@ namespace reference.`microsoft.graph` {
|
|
|
15860
18244
|
bing: 4,
|
|
15861
18245
|
}
|
|
15862
18246
|
|
|
18247
|
+
enum longRunningOperationStatus {
|
|
18248
|
+
notStarted: 0,
|
|
18249
|
+
running: 1,
|
|
18250
|
+
succeeded: 2,
|
|
18251
|
+
failed: 3,
|
|
18252
|
+
unknownFutureValue: 4,
|
|
18253
|
+
}
|
|
18254
|
+
|
|
15863
18255
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
15864
18256
|
@graphFlags
|
|
15865
18257
|
enum mailTipsType {
|
|
@@ -16233,6 +18625,19 @@ namespace reference.`microsoft.graph` {
|
|
|
16233
18625
|
office365: 3,
|
|
16234
18626
|
}
|
|
16235
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
|
+
|
|
16236
18641
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16237
18642
|
enum meetingMessageType {
|
|
16238
18643
|
none: 0,
|
|
@@ -16269,6 +18674,13 @@ namespace reference.`microsoft.graph` {
|
|
|
16269
18674
|
review: 10,
|
|
16270
18675
|
}
|
|
16271
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
|
+
|
|
16272
18684
|
/**
|
|
16273
18685
|
* The enum to specify the channels for Microsoft Edge apps.
|
|
16274
18686
|
*/
|
|
@@ -16549,6 +18961,27 @@ namespace reference.`microsoft.graph` {
|
|
|
16549
18961
|
unknownFutureValue: 4,
|
|
16550
18962
|
}
|
|
16551
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
|
+
|
|
16552
18985
|
enum partnerTenantType {
|
|
16553
18986
|
microsoftSupport: 1,
|
|
16554
18987
|
syndicatePartner: 2,
|
|
@@ -16559,6 +18992,19 @@ namespace reference.`microsoft.graph` {
|
|
|
16559
18992
|
unknownFutureValue: 7,
|
|
16560
18993
|
}
|
|
16561
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
|
+
|
|
16562
19008
|
enum permissionClassificationType {
|
|
16563
19009
|
low: 1,
|
|
16564
19010
|
medium: 2,
|
|
@@ -16573,6 +19019,12 @@ namespace reference.`microsoft.graph` {
|
|
|
16573
19019
|
application: 3,
|
|
16574
19020
|
}
|
|
16575
19021
|
|
|
19022
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19023
|
+
enum persistentBrowserSessionMode {
|
|
19024
|
+
always: 0,
|
|
19025
|
+
`never`: 1,
|
|
19026
|
+
}
|
|
19027
|
+
|
|
16576
19028
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16577
19029
|
enum phoneType {
|
|
16578
19030
|
home: 0,
|
|
@@ -16587,6 +19039,14 @@ namespace reference.`microsoft.graph` {
|
|
|
16587
19039
|
radio: 9,
|
|
16588
19040
|
}
|
|
16589
19041
|
|
|
19042
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19043
|
+
enum physicalAddressType {
|
|
19044
|
+
`unknown`: 0,
|
|
19045
|
+
home: 1,
|
|
19046
|
+
business: 2,
|
|
19047
|
+
other: 3,
|
|
19048
|
+
}
|
|
19049
|
+
|
|
16590
19050
|
/**
|
|
16591
19051
|
* Supported platform types for policies.
|
|
16592
19052
|
*/
|
|
@@ -16656,6 +19116,41 @@ namespace reference.`microsoft.graph` {
|
|
|
16656
19116
|
unknownFutureValue: 3,
|
|
16657
19117
|
}
|
|
16658
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
|
+
|
|
16659
19154
|
/**
|
|
16660
19155
|
* Apps rating as in media content
|
|
16661
19156
|
*/
|
|
@@ -17413,6 +19908,24 @@ namespace reference.`microsoft.graph` {
|
|
|
17413
19908
|
unknownFutureValue: 4,
|
|
17414
19909
|
}
|
|
17415
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
|
+
|
|
17416
19929
|
enum riskLevel {
|
|
17417
19930
|
low: 0,
|
|
17418
19931
|
medium: 1,
|
|
@@ -17474,6 +19987,14 @@ namespace reference.`microsoft.graph` {
|
|
|
17474
19987
|
unknownFutureValue: 4,
|
|
17475
19988
|
}
|
|
17476
19989
|
|
|
19990
|
+
enum sectionEmphasisType {
|
|
19991
|
+
none: 0,
|
|
19992
|
+
neutral: 1,
|
|
19993
|
+
soft: 2,
|
|
19994
|
+
strong: 3,
|
|
19995
|
+
unknownFutureValue: 4,
|
|
19996
|
+
}
|
|
19997
|
+
|
|
17477
19998
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17478
19999
|
enum selectionLikelihoodInfo {
|
|
17479
20000
|
notSpecified: 0,
|
|
@@ -17488,6 +20009,13 @@ namespace reference.`microsoft.graph` {
|
|
|
17488
20009
|
confidential: 3,
|
|
17489
20010
|
}
|
|
17490
20011
|
|
|
20012
|
+
enum sensitivityLabelAssignmentMethod {
|
|
20013
|
+
standard: 0,
|
|
20014
|
+
privileged: 1,
|
|
20015
|
+
auto: 2,
|
|
20016
|
+
unknownFutureValue: 3,
|
|
20017
|
+
}
|
|
20018
|
+
|
|
17491
20019
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17492
20020
|
enum settingSourceType {
|
|
17493
20021
|
deviceConfiguration: 0,
|
|
@@ -17529,6 +20057,81 @@ namespace reference.`microsoft.graph` {
|
|
|
17529
20057
|
domain: 2,
|
|
17530
20058
|
}
|
|
17531
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
|
+
|
|
17532
20135
|
/**
|
|
17533
20136
|
* Possible values for site security level.
|
|
17534
20137
|
*/
|
|
@@ -17560,6 +20163,16 @@ namespace reference.`microsoft.graph` {
|
|
|
17560
20163
|
high: 5,
|
|
17561
20164
|
}
|
|
17562
20165
|
|
|
20166
|
+
enum stagedFeatureName {
|
|
20167
|
+
passthroughAuthentication: 0,
|
|
20168
|
+
seamlessSso: 1,
|
|
20169
|
+
passwordHashSync: 2,
|
|
20170
|
+
emailAsAlternateId: 3,
|
|
20171
|
+
unknownFutureValue: 4,
|
|
20172
|
+
certificateBasedAuthentication: 5,
|
|
20173
|
+
multiFactorAuthentication: 6,
|
|
20174
|
+
}
|
|
20175
|
+
|
|
17563
20176
|
/**
|
|
17564
20177
|
* State Management Setting.
|
|
17565
20178
|
*/
|
|
@@ -17602,12 +20215,37 @@ namespace reference.`microsoft.graph` {
|
|
|
17602
20215
|
allApps: 4,
|
|
17603
20216
|
}
|
|
17604
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
|
+
|
|
17605
20229
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17606
20230
|
enum timeZoneStandard {
|
|
17607
20231
|
windows: 0,
|
|
17608
20232
|
iana: 1,
|
|
17609
20233
|
}
|
|
17610
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
|
+
|
|
17611
20249
|
enum tokenIssuerType {
|
|
17612
20250
|
AzureAD: 0,
|
|
17613
20251
|
ADFederationServices: 1,
|
|
@@ -17617,6 +20255,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17617
20255
|
NPSExtension: 5,
|
|
17618
20256
|
}
|
|
17619
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
|
+
|
|
17620
20275
|
enum userExperienceAnalyticsHealthState {
|
|
17621
20276
|
/**
|
|
17622
20277
|
* Indicates that the health state is unknown.
|
|
@@ -17938,6 +20593,31 @@ namespace reference.`microsoft.graph` {
|
|
|
17938
20593
|
showOrganizerAndTimeAndSubject: 2,
|
|
17939
20594
|
}
|
|
17940
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
|
+
|
|
17941
20621
|
/**
|
|
17942
20622
|
* Contains value for delivery optimization priority.
|
|
17943
20623
|
*/
|
|
@@ -19136,4 +21816,117 @@ namespace reference.`microsoft.graph` {
|
|
|
19136
21816
|
unknownFutureValue: 2,
|
|
19137
21817
|
}
|
|
19138
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
|
+
|
|
19139
21932
|
}
|