@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +2411 -55
- package/lib/Bleu/V1.0/main.tsp +2245 -40
- package/lib/Delos/Beta/main.tsp +2674 -52
- package/lib/Delos/V1.0/main.tsp +401 -20
- package/lib/Fairfax/Beta/main.tsp +1261 -74
- package/lib/Fairfax/V1.0/main.tsp +307 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +196 -0
- package/lib/Mooncake/Beta/main.tsp +858 -54
- package/lib/Mooncake/V1.0/main.tsp +173 -20
- package/lib/Prod/Beta/main.tsp +4453 -269
- package/lib/Prod/V1.0/main.tsp +1457 -26
- package/lib/USNat/Beta/main.tsp +609 -37
- package/lib/USNat/V1.0/main.tsp +609 -3
- package/lib/USSec/Beta/main.tsp +1012 -69
- package/lib/USSec/V1.0/main.tsp +912 -3
- package/package.json +2 -2
package/lib/USNat/Beta/main.tsp
CHANGED
|
@@ -66,6 +66,20 @@ namespace reference.`microsoft.graph` {
|
|
|
66
66
|
state: string | null;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
@complex model accessPackageAssignmentRequestRequirements {
|
|
70
|
+
existingAnswers: accessPackageAnswer[] | null;
|
|
71
|
+
isApprovalRequired: boolean | null;
|
|
72
|
+
isApprovalRequiredForExtension: boolean | null;
|
|
73
|
+
isCustomAssignmentScheduleAllowed: boolean | null;
|
|
74
|
+
isRequestorJustificationRequired: boolean | null;
|
|
75
|
+
policyDescription: string | null;
|
|
76
|
+
policyDisplayName: string | null;
|
|
77
|
+
policyId: string | null;
|
|
78
|
+
questions: accessPackageQuestion[] | null;
|
|
79
|
+
schedule: requestSchedule | null;
|
|
80
|
+
verifiableCredentialRequirementStatus: verifiableCredentialRequirementStatus | null;
|
|
81
|
+
}
|
|
82
|
+
|
|
69
83
|
@complex model accessPackageLocalizedContent {
|
|
70
84
|
defaultText: string | null;
|
|
71
85
|
localizedTexts: accessPackageLocalizedText[] | null;
|
|
@@ -378,13 +392,14 @@ namespace reference.`microsoft.graph` {
|
|
|
378
392
|
identifierUris: identifierUriConfiguration | null;
|
|
379
393
|
}
|
|
380
394
|
|
|
395
|
+
@abstract
|
|
381
396
|
@complex model appManagementConfiguration {
|
|
382
397
|
|
|
383
398
|
|
|
384
399
|
}
|
|
385
400
|
|
|
386
401
|
@complex model appManagementPolicyActorExemptions {
|
|
387
|
-
|
|
402
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
388
403
|
}
|
|
389
404
|
|
|
390
405
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -711,6 +726,11 @@ namespace reference.`microsoft.graph` {
|
|
|
711
726
|
basis: string | null;
|
|
712
727
|
}
|
|
713
728
|
|
|
729
|
+
@complex model azureActiveDirectoryTenant extends identitySource {
|
|
730
|
+
displayName: string | null;
|
|
731
|
+
tenantId: string | null;
|
|
732
|
+
}
|
|
733
|
+
|
|
714
734
|
@complex model azureADJoinPolicy {
|
|
715
735
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
716
736
|
isAdminConfigurable: boolean | null;
|
|
@@ -1006,6 +1026,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1006
1026
|
errorDateTime: offsetDateTime | null;
|
|
1007
1027
|
}
|
|
1008
1028
|
|
|
1029
|
+
@complex model classificationLimit {
|
|
1030
|
+
allowedLimit: int32 | null;
|
|
1031
|
+
code: string | null;
|
|
1032
|
+
impactedSensitiveTypeIds: string[];
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1009
1035
|
@complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
|
|
1010
1036
|
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1011
1037
|
}
|
|
@@ -1310,6 +1336,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1310
1336
|
value: string | null;
|
|
1311
1337
|
}
|
|
1312
1338
|
|
|
1339
|
+
@complex model crossCloudAzureActiveDirectoryTenant extends identitySource {
|
|
1340
|
+
cloudInstance: string;
|
|
1341
|
+
displayName: string | null;
|
|
1342
|
+
tenantId: string | null;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1313
1345
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
1314
1346
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
1315
1347
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -1411,6 +1443,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1411
1443
|
clientConfiguration: customExtensionClientConfiguration | null;
|
|
1412
1444
|
}
|
|
1413
1445
|
|
|
1446
|
+
@abstract
|
|
1447
|
+
@complex model customSecurityAttributeExemption {
|
|
1448
|
+
id: string;
|
|
1449
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
1453
|
+
value: string | null;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1414
1456
|
@open
|
|
1415
1457
|
@complex model customSecurityAttributeValue {
|
|
1416
1458
|
}
|
|
@@ -1564,6 +1606,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1564
1606
|
triggers: restrictionTrigger[] | null;
|
|
1565
1607
|
}
|
|
1566
1608
|
|
|
1609
|
+
@complex model diagnosticMetadata {
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1567
1612
|
@open
|
|
1568
1613
|
@complex model Dictionary {
|
|
1569
1614
|
}
|
|
@@ -1650,6 +1695,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1650
1695
|
versionId: string | null;
|
|
1651
1696
|
}
|
|
1652
1697
|
|
|
1698
|
+
@complex model domainIdentitySource extends identitySource {
|
|
1699
|
+
displayName: string | null;
|
|
1700
|
+
domainName: string | null;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1653
1703
|
@complex model domainState {
|
|
1654
1704
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1655
1705
|
operation: string | null;
|
|
@@ -1782,6 +1832,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1782
1832
|
@complex model eventMessageDetail {
|
|
1783
1833
|
}
|
|
1784
1834
|
|
|
1835
|
+
@complex model exactDataMatchStoreColumn {
|
|
1836
|
+
ignoredDelimiters: string[] | null;
|
|
1837
|
+
isCaseInsensitive: boolean | null;
|
|
1838
|
+
isSearchable: boolean | null;
|
|
1839
|
+
name: string | null;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1785
1842
|
@complex model exactMatchClassificationRequest {
|
|
1786
1843
|
contentClassifications: contentClassification[] | null;
|
|
1787
1844
|
sensitiveTypeIds: string[] | null;
|
|
@@ -1797,6 +1854,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1797
1854
|
@complex model exactMatchDetectedSensitiveContent extends detectedSensitiveContentBase {
|
|
1798
1855
|
}
|
|
1799
1856
|
|
|
1857
|
+
@complex model exactMatchDiagnostic {
|
|
1858
|
+
classificationId: guid;
|
|
1859
|
+
classificationLimits: classificationLimit[];
|
|
1860
|
+
unmatchedItems: unmatched[];
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1800
1863
|
@complex model excludeTarget {
|
|
1801
1864
|
id: string;
|
|
1802
1865
|
targetType: authenticationMethodTargetType;
|
|
@@ -1825,6 +1888,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1825
1888
|
type: string | null;
|
|
1826
1889
|
}
|
|
1827
1890
|
|
|
1891
|
+
@complex model externalDomainFederation extends identitySource {
|
|
1892
|
+
displayName: string | null;
|
|
1893
|
+
domainName: string | null;
|
|
1894
|
+
issuerUri: string | null;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1828
1897
|
@complex model externalSponsors extends userSet {
|
|
1829
1898
|
}
|
|
1830
1899
|
|
|
@@ -2006,12 +2075,6 @@ namespace reference.`microsoft.graph` {
|
|
|
2006
2075
|
version: string | null;
|
|
2007
2076
|
}
|
|
2008
2077
|
|
|
2009
|
-
@complex model governancePermission {
|
|
2010
|
-
accessLevel: string | null;
|
|
2011
|
-
isActive: boolean | null;
|
|
2012
|
-
isEligible: boolean | null;
|
|
2013
|
-
}
|
|
2014
|
-
|
|
2015
2078
|
@complex model governancePolicy {
|
|
2016
2079
|
decisionMakerCriteria: governanceCriteria[] | null;
|
|
2017
2080
|
notificationPolicy: governanceNotificationPolicy | null;
|
|
@@ -2126,6 +2189,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2126
2189
|
user: identity | null;
|
|
2127
2190
|
}
|
|
2128
2191
|
|
|
2192
|
+
@abstract
|
|
2193
|
+
@complex model identitySource {
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2129
2196
|
@complex model idleSessionSignOut {
|
|
2130
2197
|
isEnabled: boolean | null;
|
|
2131
2198
|
signOutAfterInSeconds: int64 | null;
|
|
@@ -2347,6 +2414,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2347
2414
|
usage: string | null;
|
|
2348
2415
|
}
|
|
2349
2416
|
|
|
2417
|
+
|
|
2350
2418
|
@complex model keyValue {
|
|
2351
2419
|
key: string | null;
|
|
2352
2420
|
value: string | null;
|
|
@@ -3021,6 +3089,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3021
3089
|
startDateTime: offsetDateTime | null;
|
|
3022
3090
|
}
|
|
3023
3091
|
|
|
3092
|
+
|
|
3024
3093
|
@complex model passwordProfile {
|
|
3025
3094
|
forceChangePasswordNextSignIn: boolean | null;
|
|
3026
3095
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -3417,6 +3486,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3417
3486
|
localizations: displayNameLocalization[] | null;
|
|
3418
3487
|
}
|
|
3419
3488
|
|
|
3489
|
+
@complex model profileSourceLocalization {
|
|
3490
|
+
displayName: string | null;
|
|
3491
|
+
languageTag: string | null;
|
|
3492
|
+
webUrl: string | null;
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3420
3495
|
@open
|
|
3421
3496
|
@complex model programResource extends identity {
|
|
3422
3497
|
type: string | null;
|
|
@@ -4358,6 +4433,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4358
4433
|
userPrincipalName: string | null;
|
|
4359
4434
|
}
|
|
4360
4435
|
|
|
4436
|
+
@complex model targetUserSponsors extends userSet {
|
|
4437
|
+
}
|
|
4438
|
+
|
|
4361
4439
|
@complex model teamArchivedEventMessageDetail extends eventMessageDetail {
|
|
4362
4440
|
initiator: identitySet | null;
|
|
4363
4441
|
teamId: string | null;
|
|
@@ -4837,6 +4915,14 @@ namespace reference.`microsoft.graph` {
|
|
|
4837
4915
|
excludedResourceActions: string[] | null;
|
|
4838
4916
|
}
|
|
4839
4917
|
|
|
4918
|
+
@complex model unmatched {
|
|
4919
|
+
code: string | null;
|
|
4920
|
+
corroborativeEvidences: string[];
|
|
4921
|
+
idMatch: string | null;
|
|
4922
|
+
length: int32 | null;
|
|
4923
|
+
offset: int32 | null;
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4840
4926
|
@complex model unrestrictedAudience extends signInAudienceRestrictionsBase {
|
|
4841
4927
|
}
|
|
4842
4928
|
|
|
@@ -5259,6 +5345,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5259
5345
|
@contains accessPackageAssignmentPolicies: accessPackageAssignmentPolicy[];
|
|
5260
5346
|
@references accessPackageCatalog: accessPackageCatalog | null;
|
|
5261
5347
|
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
5348
|
+
@references accessPackagesIncompatibleWith: accessPackage[];
|
|
5349
|
+
@references incompatibleAccessPackages: accessPackage[];
|
|
5350
|
+
@contains incompatibleGroups: group[];
|
|
5262
5351
|
}
|
|
5263
5352
|
|
|
5264
5353
|
@entity model accessPackageAssignment extends entity {
|
|
@@ -5270,6 +5359,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5270
5359
|
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
5271
5360
|
expiredDateTime: offsetDateTime | null;
|
|
5272
5361
|
isExtended: boolean | null;
|
|
5362
|
+
schedule: requestSchedule | null;
|
|
5273
5363
|
targetId: string | null;
|
|
5274
5364
|
@contains accessPackage: accessPackage | null;
|
|
5275
5365
|
@contains accessPackageAssignmentPolicy: accessPackageAssignmentPolicy | null;
|
|
@@ -5291,17 +5381,19 @@ namespace reference.`microsoft.graph` {
|
|
|
5291
5381
|
expirationDateTime: offsetDateTime | null;
|
|
5292
5382
|
modifiedBy: string | null;
|
|
5293
5383
|
modifiedDateTime: offsetDateTime | null;
|
|
5384
|
+
questions: accessPackageQuestion[] | null;
|
|
5294
5385
|
requestApprovalSettings: approvalSettings | null;
|
|
5295
5386
|
requestorSettings: requestorSettings | null;
|
|
5296
5387
|
verifiableCredentialSettings: verifiableCredentialSettings | null;
|
|
5297
5388
|
@references accessPackage: accessPackage | null;
|
|
5298
5389
|
@contains accessPackageCatalog: accessPackageCatalog | null;
|
|
5299
|
-
@
|
|
5300
|
-
@
|
|
5390
|
+
@references customExtensionHandlers: customExtensionHandler[];
|
|
5391
|
+
@references customExtensionStageSettings: customExtensionStageSetting[];
|
|
5301
5392
|
}
|
|
5302
5393
|
|
|
5303
5394
|
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
5304
5395
|
@entity model accessPackageAssignmentRequest extends entity {
|
|
5396
|
+
answers: accessPackageAnswer[] | null;
|
|
5305
5397
|
completedDate: offsetDateTime | null;
|
|
5306
5398
|
@computed createdDateTime: offsetDateTime | null;
|
|
5307
5399
|
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
@@ -5312,6 +5404,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5312
5404
|
requestState: string | null;
|
|
5313
5405
|
requestStatus: string | null;
|
|
5314
5406
|
requestType: string | null;
|
|
5407
|
+
schedule: requestSchedule | null;
|
|
5315
5408
|
verifiedCredentialsData: verifiedCredentialData[] | null;
|
|
5316
5409
|
@references accessPackage: accessPackage | null;
|
|
5317
5410
|
@contains accessPackageAssignment: accessPackageAssignment | null;
|
|
@@ -5374,7 +5467,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5374
5467
|
originSystem: string | null;
|
|
5375
5468
|
resourceType: string | null;
|
|
5376
5469
|
url: string | null;
|
|
5377
|
-
@
|
|
5470
|
+
@references accessPackageResourceEnvironment: accessPackageResourceEnvironment | null;
|
|
5378
5471
|
@contains accessPackageResourceRoles: accessPackageResourceRole[];
|
|
5379
5472
|
@contains accessPackageResourceScopes: accessPackageResourceScope[];
|
|
5380
5473
|
}
|
|
@@ -5390,7 +5483,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5390
5483
|
modifiedDateTime: offsetDateTime | null;
|
|
5391
5484
|
originId: string;
|
|
5392
5485
|
originSystem: string;
|
|
5393
|
-
@
|
|
5486
|
+
@references accessPackageResources: accessPackageResource[];
|
|
5394
5487
|
}
|
|
5395
5488
|
|
|
5396
5489
|
@entity model accessPackageResourceRequest extends entity {
|
|
@@ -5437,12 +5530,14 @@ namespace reference.`microsoft.graph` {
|
|
|
5437
5530
|
@entity model accessPackageSubject extends entity {
|
|
5438
5531
|
altSecId: string | null;
|
|
5439
5532
|
cleanupScheduledDateTime: offsetDateTime | null;
|
|
5533
|
+
connectedOrganizationId: string | null;
|
|
5440
5534
|
displayName: string | null;
|
|
5441
5535
|
email: string | null;
|
|
5442
5536
|
objectId: string | null;
|
|
5443
5537
|
onPremisesSecurityIdentifier: string | null;
|
|
5444
5538
|
principalName: string | null;
|
|
5445
5539
|
type: string | null;
|
|
5540
|
+
@references connectedOrganization: connectedOrganization | null;
|
|
5446
5541
|
}
|
|
5447
5542
|
|
|
5448
5543
|
@entity model accessReview extends entity {
|
|
@@ -5774,9 +5869,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5774
5869
|
identifierUris: string[];
|
|
5775
5870
|
info: informationalUrl | null;
|
|
5776
5871
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
5872
|
+
isDisabled: boolean | null;
|
|
5777
5873
|
isFallbackPublicClient: boolean | null;
|
|
5778
5874
|
keyCredentials: keyCredential[];
|
|
5779
5875
|
logo: stream;
|
|
5876
|
+
managerApplications: guid;
|
|
5780
5877
|
notes: string | null;
|
|
5781
5878
|
onPremisesPublishing: onPremisesPublishing | null;
|
|
5782
5879
|
optionalClaims: optionalClaims | null;
|
|
@@ -5843,7 +5940,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5843
5940
|
|
|
5844
5941
|
@entity model appManagementPolicy extends policyBase {
|
|
5845
5942
|
isEnabled: boolean;
|
|
5846
|
-
restrictions:
|
|
5943
|
+
restrictions: customAppManagementConfiguration | null;
|
|
5847
5944
|
@references appliesTo: directoryObject[];
|
|
5848
5945
|
}
|
|
5849
5946
|
|
|
@@ -5946,6 +6043,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5946
6043
|
requirements: strongAuthenticationRequirements | null;
|
|
5947
6044
|
signInPreferences: signInPreferences | null;
|
|
5948
6045
|
@contains emailMethods: emailAuthenticationMethod[];
|
|
6046
|
+
@contains externalAuthenticationMethods: externalAuthenticationMethod[];
|
|
5949
6047
|
@contains fido2Methods: fido2AuthenticationMethod[];
|
|
5950
6048
|
@contains methods: authenticationMethod[];
|
|
5951
6049
|
@contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
|
|
@@ -6415,6 +6513,19 @@ namespace reference.`microsoft.graph` {
|
|
|
6415
6513
|
scenarios: templateScenarios;
|
|
6416
6514
|
}
|
|
6417
6515
|
|
|
6516
|
+
@entity model connectedOrganization extends entity {
|
|
6517
|
+
createdBy: string | null;
|
|
6518
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6519
|
+
description: string | null;
|
|
6520
|
+
displayName: string | null;
|
|
6521
|
+
identitySources: identitySource[] | null;
|
|
6522
|
+
modifiedBy: string | null;
|
|
6523
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6524
|
+
state: connectedOrganizationState | null;
|
|
6525
|
+
@contains externalSponsors: directoryObject[];
|
|
6526
|
+
@contains internalSponsors: directoryObject[];
|
|
6527
|
+
}
|
|
6528
|
+
|
|
6418
6529
|
@entity model connector extends entity {
|
|
6419
6530
|
externalIp: string;
|
|
6420
6531
|
machineName: string;
|
|
@@ -6680,15 +6791,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6680
6791
|
@contains allowedValues: allowedValue[];
|
|
6681
6792
|
}
|
|
6682
6793
|
|
|
6683
|
-
@abstract
|
|
6684
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
6685
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
6686
|
-
}
|
|
6687
|
-
|
|
6688
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
6689
|
-
value: string | null;
|
|
6690
|
-
}
|
|
6691
|
-
|
|
6692
6794
|
@entity model dataClassificationService extends entity {
|
|
6693
6795
|
@contains classifyFileJobs: jobResponseBase[];
|
|
6694
6796
|
@contains classifyTextJobs: jobResponseBase[];
|
|
@@ -7042,7 +7144,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7042
7144
|
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
7043
7145
|
@contains accessPackageResources: accessPackageResource[];
|
|
7044
7146
|
@contains accessPackages: accessPackage[];
|
|
7147
|
+
@contains connectedOrganizations: connectedOrganization[];
|
|
7045
7148
|
@contains settings: entitlementManagementSettings | null;
|
|
7149
|
+
@contains subjects: accessPackageSubject[];
|
|
7046
7150
|
}
|
|
7047
7151
|
|
|
7048
7152
|
@entity model entitlementManagementSettings extends entity {
|
|
@@ -7135,11 +7239,15 @@ namespace reference.`microsoft.graph` {
|
|
|
7135
7239
|
responseType: responseType | null;
|
|
7136
7240
|
}
|
|
7137
7241
|
|
|
7138
|
-
@entity model exactMatchDataStore extends
|
|
7242
|
+
@entity model exactMatchDataStore extends exactMatchDataStoreBase {
|
|
7243
|
+
@contains sessions: exactMatchSession[];
|
|
7244
|
+
}
|
|
7245
|
+
|
|
7246
|
+
@entity model exactMatchDataStoreBase extends entity {
|
|
7247
|
+
columns: exactDataMatchStoreColumn[] | null;
|
|
7139
7248
|
dataLastUpdatedDateTime: offsetDateTime | null;
|
|
7140
7249
|
description: string | null;
|
|
7141
7250
|
displayName: string | null;
|
|
7142
|
-
@contains sessions: exactMatchSession[];
|
|
7143
7251
|
}
|
|
7144
7252
|
|
|
7145
7253
|
@abstract
|
|
@@ -7156,23 +7264,26 @@ namespace reference.`microsoft.graph` {
|
|
|
7156
7264
|
@contains matchingRows: lookupResultRow[];
|
|
7157
7265
|
}
|
|
7158
7266
|
|
|
7159
|
-
@entity model exactMatchSession extends
|
|
7267
|
+
@entity model exactMatchSession extends exactMatchSessionBase {
|
|
7160
7268
|
checksum: string | null;
|
|
7161
|
-
datastoreId: string | null;
|
|
7162
7269
|
dataUploadURI: string | null;
|
|
7163
7270
|
fields: string[] | null;
|
|
7164
7271
|
fileName: string | null;
|
|
7272
|
+
rowsPerBlock: int32 | null;
|
|
7273
|
+
salt: string | null;
|
|
7274
|
+
uploadAgentId: string | null;
|
|
7275
|
+
@contains uploadAgent: exactMatchUploadAgent | null;
|
|
7276
|
+
}
|
|
7277
|
+
|
|
7278
|
+
@entity model exactMatchSessionBase extends exactMatchJobBase {
|
|
7279
|
+
dataStoreId: string | null;
|
|
7165
7280
|
processingCompletionDateTime: offsetDateTime | null;
|
|
7166
7281
|
remainingBlockCount: int32 | null;
|
|
7167
7282
|
remainingJobCount: int32 | null;
|
|
7168
|
-
rowsPerBlock: int32 | null;
|
|
7169
|
-
salt: string | null;
|
|
7170
7283
|
state: string | null;
|
|
7171
7284
|
totalBlockCount: int32 | null;
|
|
7172
7285
|
totalJobCount: int32 | null;
|
|
7173
|
-
uploadAgentId: string | null;
|
|
7174
7286
|
uploadCompletionDateTime: offsetDateTime | null;
|
|
7175
|
-
@contains uploadAgent: exactMatchUploadAgent | null;
|
|
7176
7287
|
}
|
|
7177
7288
|
|
|
7178
7289
|
@entity model exactMatchUploadAgent extends entity {
|
|
@@ -7194,6 +7305,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7194
7305
|
targetObjects: string[];
|
|
7195
7306
|
}
|
|
7196
7307
|
|
|
7308
|
+
@entity model externalAuthenticationMethod extends authenticationMethod {
|
|
7309
|
+
configurationId: string;
|
|
7310
|
+
displayName: string;
|
|
7311
|
+
}
|
|
7312
|
+
|
|
7197
7313
|
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
7198
7314
|
appId: string;
|
|
7199
7315
|
displayName: string;
|
|
@@ -7458,12 +7574,14 @@ namespace reference.`microsoft.graph` {
|
|
|
7458
7574
|
membershipRuleProcessingState: string | null;
|
|
7459
7575
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
7460
7576
|
onPremisesDomainName: string | null;
|
|
7577
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
7461
7578
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
7462
7579
|
onPremisesNetBiosName: string | null;
|
|
7463
7580
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
7464
7581
|
onPremisesSamAccountName: string | null;
|
|
7465
7582
|
onPremisesSecurityIdentifier: string | null;
|
|
7466
7583
|
onPremisesSyncEnabled: boolean | null;
|
|
7584
|
+
organizationId: string | null;
|
|
7467
7585
|
preferredDataLocation: string | null;
|
|
7468
7586
|
preferredLanguage: string | null;
|
|
7469
7587
|
proxyAddresses: string[];
|
|
@@ -7479,6 +7597,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7479
7597
|
unseenCount: int32 | null;
|
|
7480
7598
|
unseenMessagesCount: int32 | null;
|
|
7481
7599
|
visibility: string | null;
|
|
7600
|
+
welcomeMessageEnabled: boolean | null;
|
|
7482
7601
|
@contains acceptedSenders: directoryObject[];
|
|
7483
7602
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
7484
7603
|
@contains calendar: calendar | null;
|
|
@@ -7592,7 +7711,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7592
7711
|
}
|
|
7593
7712
|
|
|
7594
7713
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
7595
|
-
inheritableScopes: inheritableScopes;
|
|
7714
|
+
inheritableScopes: inheritableScopes | null;
|
|
7596
7715
|
@computed @key resourceAppId: string;
|
|
7597
7716
|
}
|
|
7598
7717
|
|
|
@@ -7758,7 +7877,6 @@ namespace reference.`microsoft.graph` {
|
|
|
7758
7877
|
type: string | null;
|
|
7759
7878
|
}
|
|
7760
7879
|
|
|
7761
|
-
|
|
7762
7880
|
@entity model labelContentRight extends entity {
|
|
7763
7881
|
cid: string | null;
|
|
7764
7882
|
format: string | null;
|
|
@@ -8295,7 +8413,6 @@ namespace reference.`microsoft.graph` {
|
|
|
8295
8413
|
password: string | null;
|
|
8296
8414
|
}
|
|
8297
8415
|
|
|
8298
|
-
|
|
8299
8416
|
@entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
|
|
8300
8417
|
|
|
8301
8418
|
@graphDeprecated("CreationDateTime")
|
|
@@ -8309,6 +8426,8 @@ namespace reference.`microsoft.graph` {
|
|
|
8309
8426
|
@contains namePronunciation: namePronunciationSettings | null;
|
|
8310
8427
|
@contains photoUpdateSettings: photoUpdateSettings | null;
|
|
8311
8428
|
@contains profileCardProperties: profileCardProperty[];
|
|
8429
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
8430
|
+
@contains profileSources: profileSource[];
|
|
8312
8431
|
@contains pronouns: pronounsSettings | null;
|
|
8313
8432
|
}
|
|
8314
8433
|
|
|
@@ -8819,6 +8938,20 @@ namespace reference.`microsoft.graph` {
|
|
|
8819
8938
|
width: int32 | null;
|
|
8820
8939
|
}
|
|
8821
8940
|
|
|
8941
|
+
@entity model profilePropertySetting extends entity {
|
|
8942
|
+
displayName: string | null;
|
|
8943
|
+
name: string | null;
|
|
8944
|
+
prioritizedSourceUrls: string[] | null;
|
|
8945
|
+
}
|
|
8946
|
+
|
|
8947
|
+
@entity model profileSource extends entity {
|
|
8948
|
+
displayName: string | null;
|
|
8949
|
+
kind: string | null;
|
|
8950
|
+
localizations: profileSourceLocalization[];
|
|
8951
|
+
sourceId: string | null;
|
|
8952
|
+
webUrl: string | null;
|
|
8953
|
+
}
|
|
8954
|
+
|
|
8822
8955
|
@entity model program extends entity {
|
|
8823
8956
|
description: string;
|
|
8824
8957
|
displayName: string;
|
|
@@ -9070,6 +9203,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9070
9203
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
9071
9204
|
@contains directory: rbacApplication | null;
|
|
9072
9205
|
@contains enterpriseApps: rbacApplication[];
|
|
9206
|
+
/**
|
|
9207
|
+
* The RbacApplication for Entitlement Management
|
|
9208
|
+
*/
|
|
9209
|
+
@contains entitlementManagement: rbacApplication | null;
|
|
9073
9210
|
@contains exchange: unifiedRbacApplication | null;
|
|
9074
9211
|
}
|
|
9075
9212
|
|
|
@@ -9184,9 +9321,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9184
9321
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
9185
9322
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
9186
9323
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
9324
|
+
@contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
|
|
9187
9325
|
@contains rules: reference.`microsoft.graph.security`.rulesRoot | null;
|
|
9188
9326
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
9189
9327
|
@contains secureScores: secureScore[];
|
|
9328
|
+
@contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
|
|
9329
|
+
@contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
|
|
9190
9330
|
}
|
|
9191
9331
|
|
|
9192
9332
|
@entity model sensitiveType extends entity {
|
|
@@ -9308,6 +9448,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9308
9448
|
errorUrl: string | null;
|
|
9309
9449
|
homepage: string | null;
|
|
9310
9450
|
info: informationalUrl | null;
|
|
9451
|
+
isDisabled: boolean | null;
|
|
9311
9452
|
keyCredentials: keyCredential[];
|
|
9312
9453
|
loginUrl: string | null;
|
|
9313
9454
|
logoutUrl: string | null;
|
|
@@ -9574,6 +9715,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9574
9715
|
authenticationRequirement: string | null;
|
|
9575
9716
|
authenticationRequirementPolicies: authenticationRequirementPolicy[] | null;
|
|
9576
9717
|
clientAppUsed: string | null;
|
|
9718
|
+
clientSessionId: string | null;
|
|
9577
9719
|
conditionalAccessAudiences: string[] | null;
|
|
9578
9720
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
9579
9721
|
correlationId: string | null;
|
|
@@ -9803,6 +9945,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9803
9945
|
signInCount: int64 | null;
|
|
9804
9946
|
status: signInStatus | null;
|
|
9805
9947
|
tenantId: string | null;
|
|
9948
|
+
tokenIssuerType: tokenIssuerType;
|
|
9806
9949
|
userPrincipalName: string | null;
|
|
9807
9950
|
}
|
|
9808
9951
|
|
|
@@ -10486,6 +10629,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10486
10629
|
identities: objectIdentity[] | null;
|
|
10487
10630
|
identityParentId: string | null;
|
|
10488
10631
|
imAddresses: string[] | null;
|
|
10632
|
+
infoCatalogs: string[];
|
|
10489
10633
|
interests: string[] | null;
|
|
10490
10634
|
isManagementRestricted: boolean | null;
|
|
10491
10635
|
isResourceAccount: boolean | null;
|
|
@@ -11105,6 +11249,19 @@ namespace reference.`microsoft.graph` {
|
|
|
11105
11249
|
allowedPolicyOIDs: string[];
|
|
11106
11250
|
}
|
|
11107
11251
|
|
|
11252
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
11253
|
+
target: 1,
|
|
11254
|
+
createdBy: 2,
|
|
11255
|
+
unknownFutureValue: 99,
|
|
11256
|
+
}
|
|
11257
|
+
|
|
11258
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
11259
|
+
target: 1,
|
|
11260
|
+
createdBy: 2,
|
|
11261
|
+
approver: 3,
|
|
11262
|
+
unknownFutureValue: 99,
|
|
11263
|
+
}
|
|
11264
|
+
|
|
11108
11265
|
enum accessPackageCustomExtensionHandlerStatus {
|
|
11109
11266
|
requestSent: 1,
|
|
11110
11267
|
requestReceived: 2,
|
|
@@ -11121,6 +11278,18 @@ namespace reference.`microsoft.graph` {
|
|
|
11121
11278
|
unknownFutureValue: 7,
|
|
11122
11279
|
}
|
|
11123
11280
|
|
|
11281
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
11282
|
+
allowedRequestor: 1,
|
|
11283
|
+
unknownFutureValue: 99,
|
|
11284
|
+
}
|
|
11285
|
+
|
|
11286
|
+
enum accessPackageSubjectLifecycle {
|
|
11287
|
+
notDefined: 0,
|
|
11288
|
+
notGoverned: 1,
|
|
11289
|
+
governed: 2,
|
|
11290
|
+
unknownFutureValue: 3,
|
|
11291
|
+
}
|
|
11292
|
+
|
|
11124
11293
|
enum accessReviewHistoryDecisionFilter {
|
|
11125
11294
|
approve: 0,
|
|
11126
11295
|
deny: 1,
|
|
@@ -11980,6 +12149,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11980
12149
|
unknownFutureValue: 4,
|
|
11981
12150
|
}
|
|
11982
12151
|
|
|
12152
|
+
enum connectedOrganizationState {
|
|
12153
|
+
configured: 0,
|
|
12154
|
+
proposed: 1,
|
|
12155
|
+
unknownFutureValue: 2,
|
|
12156
|
+
}
|
|
12157
|
+
|
|
11983
12158
|
enum connectionDirection {
|
|
11984
12159
|
`unknown`: 0,
|
|
11985
12160
|
inbound: 1,
|
|
@@ -13305,6 +13480,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13305
13480
|
userChangedPasswordOnPremises: 15,
|
|
13306
13481
|
adminDismissedRiskForSignIn: 16,
|
|
13307
13482
|
adminConfirmedAccountSafe: 17,
|
|
13483
|
+
microsoftRevokedSessions: 18,
|
|
13308
13484
|
}
|
|
13309
13485
|
|
|
13310
13486
|
enum riskDetectionTimingType {
|
|
@@ -14443,6 +14619,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14443
14619
|
triggerAttributes: triggerAttribute[];
|
|
14444
14620
|
}
|
|
14445
14621
|
|
|
14622
|
+
@complex model attributeSetEntry {
|
|
14623
|
+
name: string;
|
|
14624
|
+
value: string | null;
|
|
14625
|
+
}
|
|
14626
|
+
|
|
14627
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
14628
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
14629
|
+
statusReasons: string[];
|
|
14630
|
+
subject: workflowSubject | null;
|
|
14631
|
+
}
|
|
14632
|
+
|
|
14446
14633
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
14447
14634
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
14448
14635
|
}
|
|
@@ -14452,12 +14639,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14452
14639
|
}
|
|
14453
14640
|
|
|
14454
14641
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
14642
|
+
targetSubject: workflowSubject | null;
|
|
14455
14643
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
14456
14644
|
@references task: task | null;
|
|
14457
14645
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
14458
14646
|
@references workflow: workflow | null;
|
|
14459
14647
|
}
|
|
14460
14648
|
|
|
14649
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
14650
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
14651
|
+
statusReasons: string[];
|
|
14652
|
+
targetSubject: workflowSubject | null;
|
|
14653
|
+
}
|
|
14654
|
+
|
|
14461
14655
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
14462
14656
|
@references groups: reference.`microsoft.graph`.group[];
|
|
14463
14657
|
}
|
|
@@ -14482,6 +14676,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14482
14676
|
taskId: string;
|
|
14483
14677
|
}
|
|
14484
14678
|
|
|
14679
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
14680
|
+
}
|
|
14681
|
+
|
|
14682
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
14683
|
+
attributeSetEntries: attributeSetEntry[];
|
|
14684
|
+
id: string;
|
|
14685
|
+
}
|
|
14686
|
+
|
|
14485
14687
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
14486
14688
|
rule: string;
|
|
14487
14689
|
}
|
|
@@ -14592,10 +14794,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14592
14794
|
totalUsers: int32;
|
|
14593
14795
|
}
|
|
14594
14796
|
|
|
14797
|
+
@abstract
|
|
14798
|
+
@complex model workflowSubject {
|
|
14799
|
+
}
|
|
14800
|
+
|
|
14595
14801
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
14596
14802
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
14597
14803
|
@computed createdDateTime: offsetDateTime | null;
|
|
14598
14804
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
14805
|
+
replyMode: customTaskExtensionReplyMode;
|
|
14599
14806
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
14600
14807
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
14601
14808
|
}
|
|
@@ -14633,10 +14840,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14633
14840
|
totalUsersCount: int32;
|
|
14634
14841
|
workflowExecutionType: workflowExecutionType;
|
|
14635
14842
|
@references reprocessedRuns: run[];
|
|
14843
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
14636
14844
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
14637
14845
|
@contains userProcessingResults: userProcessingResult[];
|
|
14638
14846
|
}
|
|
14639
14847
|
|
|
14848
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
14849
|
+
completedDateTime: offsetDateTime | null;
|
|
14850
|
+
failedTasksCount: int32;
|
|
14851
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
14852
|
+
scheduledDateTime: offsetDateTime;
|
|
14853
|
+
startedDateTime: offsetDateTime | null;
|
|
14854
|
+
subject: workflowSubject;
|
|
14855
|
+
totalTasksCount: int32;
|
|
14856
|
+
totalUnprocessedTasksCount: int32;
|
|
14857
|
+
workflowExecutionType: workflowExecutionType;
|
|
14858
|
+
workflowVersion: int32;
|
|
14859
|
+
@references reprocessedRuns: run[];
|
|
14860
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
14861
|
+
}
|
|
14862
|
+
|
|
14640
14863
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
14641
14864
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
14642
14865
|
category: lifecycleTaskCategory;
|
|
@@ -14664,6 +14887,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14664
14887
|
failureReason: string | null;
|
|
14665
14888
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
14666
14889
|
startedDateTime: offsetDateTime | null;
|
|
14890
|
+
workflowSubject: workflowSubject | null;
|
|
14667
14891
|
@references subject: reference.`microsoft.graph`.user;
|
|
14668
14892
|
@references task: task;
|
|
14669
14893
|
}
|
|
@@ -14708,6 +14932,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14708
14932
|
@privatePreview("organizationalUnit")
|
|
14709
14933
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
14710
14934
|
@contains runs: run[];
|
|
14935
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
14711
14936
|
@contains taskReports: taskReport[];
|
|
14712
14937
|
@contains userProcessingResults: userProcessingResult[];
|
|
14713
14938
|
@contains versions: workflowVersion[];
|
|
@@ -14759,12 +14984,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14759
14984
|
unknownFutureValue: 2,
|
|
14760
14985
|
}
|
|
14761
14986
|
|
|
14987
|
+
enum customTaskExtensionReplyMode {
|
|
14988
|
+
none: 0,
|
|
14989
|
+
callback: 1,
|
|
14990
|
+
response: 2,
|
|
14991
|
+
unknownFutureValue: 3,
|
|
14992
|
+
}
|
|
14993
|
+
|
|
14762
14994
|
@graphFlags
|
|
14763
14995
|
enum lifecycleTaskCategory {
|
|
14764
14996
|
joiner: 1,
|
|
14765
14997
|
leaver: 2,
|
|
14766
14998
|
unknownFutureValue: 4,
|
|
14767
14999
|
mover: 8,
|
|
15000
|
+
extensibility: 16,
|
|
14768
15001
|
}
|
|
14769
15002
|
|
|
14770
15003
|
enum lifecycleWorkflowCategory {
|
|
@@ -14772,6 +15005,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14772
15005
|
leaver: 1,
|
|
14773
15006
|
unknownFutureValue: 2,
|
|
14774
15007
|
mover: 3,
|
|
15008
|
+
extensibility: 4,
|
|
14775
15009
|
}
|
|
14776
15010
|
|
|
14777
15011
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -14805,6 +15039,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14805
15039
|
activatedWithScope: 3,
|
|
14806
15040
|
@privatePreview("organizationalUnit")
|
|
14807
15041
|
preview: 4,
|
|
15042
|
+
extensibilityOnDemand: 5,
|
|
14808
15043
|
}
|
|
14809
15044
|
|
|
14810
15045
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -14815,6 +15050,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14815
15050
|
}
|
|
14816
15051
|
|
|
14817
15052
|
}
|
|
15053
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
15054
|
+
@deprecatedDefinition("azureBlobContainer", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobContainer will be deprecated on April 30, 2023.")
|
|
15055
|
+
@deprecatedDefinition("azureBlobToken", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobToken will be deprecated on April 30, 2023.")
|
|
15056
|
+
@deprecatedDefinition("outputFolderId", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The outputFolderId will be deprecated on April 30, 2023.")
|
|
15057
|
+
@deprecatedDefinition("fileInfo", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The fileInfo will be deprecated on April 30, 2023.")
|
|
14818
15058
|
@publicNamespace("microsoft.graph.security")
|
|
14819
15059
|
namespace reference.`microsoft.graph.security` {
|
|
14820
15060
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -15011,6 +15251,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15011
15251
|
emailAddress: string | null;
|
|
15012
15252
|
}
|
|
15013
15253
|
|
|
15254
|
+
@complex model eventPropagationResult {
|
|
15255
|
+
location: string | null;
|
|
15256
|
+
serviceName: string | null;
|
|
15257
|
+
status: eventPropagationStatus | null;
|
|
15258
|
+
statusInformation: string | null;
|
|
15259
|
+
}
|
|
15260
|
+
|
|
15261
|
+
@complex model eventQuery {
|
|
15262
|
+
query: string;
|
|
15263
|
+
queryType: queryType | null;
|
|
15264
|
+
}
|
|
15265
|
+
|
|
15014
15266
|
@complex model exportFileMetadata {
|
|
15015
15267
|
downloadUrl: string | null;
|
|
15016
15268
|
fileName: string | null;
|
|
@@ -15046,6 +15298,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15046
15298
|
value: string | null;
|
|
15047
15299
|
}
|
|
15048
15300
|
|
|
15301
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
15302
|
+
subcategory: filePlanSubcategory | null;
|
|
15303
|
+
}
|
|
15304
|
+
|
|
15305
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
15306
|
+
}
|
|
15307
|
+
|
|
15308
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
15309
|
+
citationJurisdiction: string | null;
|
|
15310
|
+
citationUrl: string | null;
|
|
15311
|
+
}
|
|
15312
|
+
|
|
15313
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
15314
|
+
}
|
|
15315
|
+
|
|
15316
|
+
@complex model filePlanDescriptorBase {
|
|
15317
|
+
displayName: string | null;
|
|
15318
|
+
}
|
|
15319
|
+
|
|
15320
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
15321
|
+
}
|
|
15322
|
+
|
|
15323
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
15324
|
+
}
|
|
15325
|
+
|
|
15049
15326
|
@complex model forceUserPasswordResetResponseAction extends responseAction {
|
|
15050
15327
|
identifier: forceUserPasswordResetEntityIdentifier;
|
|
15051
15328
|
}
|
|
@@ -15392,6 +15669,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15392
15669
|
identifier: deviceIdEntityIdentifier;
|
|
15393
15670
|
}
|
|
15394
15671
|
|
|
15672
|
+
@abstract
|
|
15673
|
+
@complex model retentionDuration {
|
|
15674
|
+
}
|
|
15675
|
+
|
|
15676
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
15677
|
+
}
|
|
15678
|
+
|
|
15679
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
15680
|
+
days: int32 | null;
|
|
15681
|
+
}
|
|
15682
|
+
|
|
15683
|
+
@complex model retentionEventStatus {
|
|
15684
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
15685
|
+
status: eventStatusType | null;
|
|
15686
|
+
}
|
|
15687
|
+
|
|
15395
15688
|
@complex model ruleSchedule {
|
|
15396
15689
|
nextRunDateTime: offsetDateTime | null;
|
|
15397
15690
|
period: string;
|
|
@@ -15512,6 +15805,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15512
15805
|
displayName: string | null;
|
|
15513
15806
|
domainName: string | null;
|
|
15514
15807
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
15808
|
+
tenantId: string | null;
|
|
15515
15809
|
userPrincipalName: string | null;
|
|
15516
15810
|
userSid: string | null;
|
|
15517
15811
|
}
|
|
@@ -15534,6 +15828,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15534
15828
|
alertPolicyId: string | null;
|
|
15535
15829
|
alertWebUrl: string | null;
|
|
15536
15830
|
assignedTo: string | null;
|
|
15831
|
+
categories: string[] | null;
|
|
15832
|
+
|
|
15833
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
15537
15834
|
category: string | null;
|
|
15538
15835
|
classification: alertClassification | null;
|
|
15539
15836
|
comments: alertComment[] | null;
|
|
@@ -15564,6 +15861,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15564
15861
|
title: string | null;
|
|
15565
15862
|
}
|
|
15566
15863
|
|
|
15864
|
+
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
15865
|
+
}
|
|
15866
|
+
|
|
15567
15867
|
@abstract
|
|
15568
15868
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
15569
15869
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -15588,6 +15888,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15588
15888
|
@contains ediscoveryCases: ediscoveryCase[];
|
|
15589
15889
|
}
|
|
15590
15890
|
|
|
15891
|
+
@entity model categoryTemplate extends filePlanDescriptorTemplate {
|
|
15892
|
+
@contains subcategories: subcategoryTemplate[];
|
|
15893
|
+
}
|
|
15894
|
+
|
|
15895
|
+
@entity model citationTemplate extends filePlanDescriptorTemplate {
|
|
15896
|
+
citationJurisdiction: string | null;
|
|
15897
|
+
citationUrl: string | null;
|
|
15898
|
+
}
|
|
15899
|
+
|
|
15591
15900
|
@abstract
|
|
15592
15901
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
15593
15902
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -15614,6 +15923,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15614
15923
|
status: dataSourceContainerStatus | null;
|
|
15615
15924
|
}
|
|
15616
15925
|
|
|
15926
|
+
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
15927
|
+
}
|
|
15928
|
+
|
|
15617
15929
|
@entity model detectionRule extends protectionRule {
|
|
15618
15930
|
detectionAction: detectionAction | null;
|
|
15619
15931
|
detectorId: string | null;
|
|
@@ -15622,6 +15934,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15622
15934
|
schedule: ruleSchedule | null;
|
|
15623
15935
|
}
|
|
15624
15936
|
|
|
15937
|
+
@entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
|
|
15938
|
+
name: string | null;
|
|
15939
|
+
reviewersEmailAddresses: string[] | null;
|
|
15940
|
+
@computed @key stageNumber: string;
|
|
15941
|
+
}
|
|
15942
|
+
|
|
15625
15943
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
15626
15944
|
additionalDataOptions: additionalDataOptions | null;
|
|
15627
15945
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -15638,6 +15956,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15638
15956
|
externalId: string | null;
|
|
15639
15957
|
@contains caseMembers: ediscoveryCaseMember[];
|
|
15640
15958
|
@contains custodians: ediscoveryCustodian[];
|
|
15959
|
+
@contains legalHolds: ediscoveryHoldPolicy[];
|
|
15641
15960
|
@contains noncustodialDataSources: ediscoveryNoncustodialDataSource[];
|
|
15642
15961
|
@contains operations: caseOperation[];
|
|
15643
15962
|
@contains reviewSets: ediscoveryReviewSet[];
|
|
@@ -15682,18 +16001,40 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15682
16001
|
}
|
|
15683
16002
|
|
|
15684
16003
|
@entity model ediscoveryExportOperation extends caseOperation {
|
|
16004
|
+
|
|
16005
|
+
@graphDeprecated("azureBlobContainer")
|
|
16006
|
+
azureBlobContainer: string | null;
|
|
16007
|
+
|
|
16008
|
+
@graphDeprecated("azureBlobToken")
|
|
16009
|
+
azureBlobToken: string | null;
|
|
15685
16010
|
description: string | null;
|
|
15686
16011
|
exportFileMetadata: exportFileMetadata[] | null;
|
|
15687
16012
|
exportOptions: exportOptions | null;
|
|
15688
16013
|
exportStructure: exportFileStructure | null;
|
|
16014
|
+
|
|
16015
|
+
@graphDeprecated("outputFolderId")
|
|
16016
|
+
outputFolderId: string | null;
|
|
15689
16017
|
outputName: string | null;
|
|
15690
16018
|
@references reviewSet: ediscoveryReviewSet | null;
|
|
15691
16019
|
@references reviewSetQuery: ediscoveryReviewSetQuery | null;
|
|
15692
16020
|
}
|
|
15693
16021
|
|
|
16022
|
+
@entity model ediscoveryFile extends file {
|
|
16023
|
+
@references custodian: ediscoveryCustodian | null;
|
|
16024
|
+
@references tags: ediscoveryReviewTag[];
|
|
16025
|
+
}
|
|
16026
|
+
|
|
15694
16027
|
@entity model ediscoveryHoldOperation extends caseOperation {
|
|
15695
16028
|
}
|
|
15696
16029
|
|
|
16030
|
+
@entity model ediscoveryHoldPolicy extends policyBase {
|
|
16031
|
+
contentQuery: string | null;
|
|
16032
|
+
errors: string[] | null;
|
|
16033
|
+
isEnabled: boolean | null;
|
|
16034
|
+
@contains siteSources: siteSource[];
|
|
16035
|
+
@contains userSources: userSource[];
|
|
16036
|
+
}
|
|
16037
|
+
|
|
15697
16038
|
@entity model ediscoveryHoldPolicySyncOperation extends caseOperation {
|
|
15698
16039
|
reportFileMetadata: reportFileMetadata[] | null;
|
|
15699
16040
|
}
|
|
@@ -15707,9 +16048,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15707
16048
|
}
|
|
15708
16049
|
|
|
15709
16050
|
@entity model ediscoveryPurgeDataOperation extends caseOperation {
|
|
16051
|
+
reportFileMetadata: reportFileMetadata[] | null;
|
|
15710
16052
|
}
|
|
15711
16053
|
|
|
15712
16054
|
@entity model ediscoveryReviewSet extends dataSet {
|
|
16055
|
+
@contains files: ediscoveryFile[];
|
|
15713
16056
|
@contains queries: ediscoveryReviewSetQuery[];
|
|
15714
16057
|
}
|
|
15715
16058
|
|
|
@@ -15748,6 +16091,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15748
16091
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
15749
16092
|
}
|
|
15750
16093
|
|
|
16094
|
+
@entity model entityDefinitionInput extends MsGraph.SharedModels.entity {
|
|
16095
|
+
@computed @key entityIdentifier: string;
|
|
16096
|
+
entityType: manualAlertEntityType;
|
|
16097
|
+
identifierValue: string;
|
|
16098
|
+
role: entityDefinitionInputRole;
|
|
16099
|
+
}
|
|
16100
|
+
|
|
16101
|
+
@entity model file extends reference.`microsoft.graph`.entity {
|
|
16102
|
+
content: stream | null;
|
|
16103
|
+
dateTime: offsetDateTime | null;
|
|
16104
|
+
extension: string | null;
|
|
16105
|
+
extractedTextContent: stream | null;
|
|
16106
|
+
mediaType: string | null;
|
|
16107
|
+
name: string | null;
|
|
16108
|
+
otherProperties: stringValueDictionary | null;
|
|
16109
|
+
processingStatus: fileProcessingStatus | null;
|
|
16110
|
+
senderOrAuthors: string[] | null;
|
|
16111
|
+
size: int64 | null;
|
|
16112
|
+
sourceType: sourceType | null;
|
|
16113
|
+
subjectTitle: string | null;
|
|
16114
|
+
}
|
|
16115
|
+
|
|
16116
|
+
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
16117
|
+
authority: filePlanAuthority | null;
|
|
16118
|
+
category: filePlanAppliedCategory | null;
|
|
16119
|
+
citation: filePlanCitation | null;
|
|
16120
|
+
department: filePlanDepartment | null;
|
|
16121
|
+
filePlanReference: filePlanReference | null;
|
|
16122
|
+
@references authorityTemplate: authorityTemplate | null;
|
|
16123
|
+
@references categoryTemplate: categoryTemplate | null;
|
|
16124
|
+
@references citationTemplate: citationTemplate | null;
|
|
16125
|
+
@references departmentTemplate: departmentTemplate | null;
|
|
16126
|
+
@references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
|
|
16127
|
+
}
|
|
16128
|
+
|
|
16129
|
+
@entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
|
|
16130
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16131
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16132
|
+
displayName: string | null;
|
|
16133
|
+
}
|
|
16134
|
+
|
|
16135
|
+
@entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
|
|
16136
|
+
}
|
|
16137
|
+
|
|
15751
16138
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
15752
16139
|
assignedTo: string | null;
|
|
15753
16140
|
classification: alertClassification | null;
|
|
@@ -15772,6 +16159,33 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15772
16159
|
@references alerts: alert[];
|
|
15773
16160
|
}
|
|
15774
16161
|
|
|
16162
|
+
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
16163
|
+
@contains authorities: authorityTemplate[];
|
|
16164
|
+
@contains categories: categoryTemplate[];
|
|
16165
|
+
@contains citations: citationTemplate[];
|
|
16166
|
+
@contains departments: departmentTemplate[];
|
|
16167
|
+
@contains filePlanReferences: filePlanReferenceTemplate[];
|
|
16168
|
+
@contains retentionLabels: retentionLabel[];
|
|
16169
|
+
}
|
|
16170
|
+
|
|
16171
|
+
@entity model manualAlert extends alert {
|
|
16172
|
+
isExcludedFromCorrelation: boolean;
|
|
16173
|
+
linkToIncident: int64 | null;
|
|
16174
|
+
sentinelWorkspace: string | null;
|
|
16175
|
+
@contains entityDefinitions: entityDefinitionInput[];
|
|
16176
|
+
}
|
|
16177
|
+
|
|
16178
|
+
@abstract
|
|
16179
|
+
@entity model policyBase extends reference.`microsoft.graph`.entity {
|
|
16180
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16181
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16182
|
+
description: string | null;
|
|
16183
|
+
displayName: string | null;
|
|
16184
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16185
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16186
|
+
status: policyStatus | null;
|
|
16187
|
+
}
|
|
16188
|
+
|
|
15775
16189
|
@abstract
|
|
15776
16190
|
@entity model protectionRule extends reference.`microsoft.graph`.entity {
|
|
15777
16191
|
createdBy: string;
|
|
@@ -15782,6 +16196,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15782
16196
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
15783
16197
|
}
|
|
15784
16198
|
|
|
16199
|
+
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
16200
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16201
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16202
|
+
description: string | null;
|
|
16203
|
+
displayName: string | null;
|
|
16204
|
+
eventPropagationResults: eventPropagationResult[] | null;
|
|
16205
|
+
eventQueries: eventQuery[] | null;
|
|
16206
|
+
eventStatus: retentionEventStatus | null;
|
|
16207
|
+
eventTriggerDateTime: offsetDateTime | null;
|
|
16208
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16209
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16210
|
+
@computed lastStatusUpdateDateTime: offsetDateTime | null;
|
|
16211
|
+
@references retentionEventType: retentionEventType | null;
|
|
16212
|
+
}
|
|
16213
|
+
|
|
16214
|
+
@entity model retentionEventType extends reference.`microsoft.graph`.entity {
|
|
16215
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16216
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16217
|
+
description: string | null;
|
|
16218
|
+
displayName: string | null;
|
|
16219
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16220
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16221
|
+
}
|
|
16222
|
+
|
|
16223
|
+
@entity model retentionLabel extends reference.`microsoft.graph`.entity {
|
|
16224
|
+
actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
|
|
16225
|
+
behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
|
|
16226
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16227
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16228
|
+
defaultRecordBehavior: defaultRecordBehavior | null;
|
|
16229
|
+
descriptionForAdmins: string | null;
|
|
16230
|
+
descriptionForUsers: string | null;
|
|
16231
|
+
displayName: string | null;
|
|
16232
|
+
isInUse: boolean | null;
|
|
16233
|
+
labelToBeApplied: string | null;
|
|
16234
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16235
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16236
|
+
retentionDuration: retentionDuration | null;
|
|
16237
|
+
retentionTrigger: retentionTrigger | null;
|
|
16238
|
+
@contains descriptors: filePlanDescriptor | null;
|
|
16239
|
+
@contains dispositionReviewStages: dispositionReviewStage[];
|
|
16240
|
+
@references retentionEventType: retentionEventType | null;
|
|
16241
|
+
}
|
|
16242
|
+
|
|
15785
16243
|
@entity model rulesRoot extends reference.`microsoft.graph`.entity {
|
|
15786
16244
|
@contains detectionRules: detectionRule[];
|
|
15787
16245
|
}
|
|
@@ -15801,6 +16259,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15801
16259
|
@references site: reference.`microsoft.graph`.site;
|
|
15802
16260
|
}
|
|
15803
16261
|
|
|
16262
|
+
@entity model subcategoryTemplate extends filePlanDescriptorTemplate {
|
|
16263
|
+
}
|
|
16264
|
+
|
|
15804
16265
|
@abstract
|
|
15805
16266
|
@entity model tag extends reference.`microsoft.graph`.entity {
|
|
15806
16267
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -15809,6 +16270,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15809
16270
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15810
16271
|
}
|
|
15811
16272
|
|
|
16273
|
+
@entity model triggersRoot extends reference.`microsoft.graph`.entity {
|
|
16274
|
+
@contains retentionEvents: retentionEvent[];
|
|
16275
|
+
}
|
|
16276
|
+
|
|
16277
|
+
@entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
|
|
16278
|
+
@contains retentionEventTypes: retentionEventType[];
|
|
16279
|
+
}
|
|
16280
|
+
|
|
15812
16281
|
@entity model unifiedGroupSource extends dataSource {
|
|
15813
16282
|
includedSources: sourceType | null;
|
|
15814
16283
|
@references group: reference.`microsoft.graph`.group;
|
|
@@ -15820,6 +16289,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15820
16289
|
siteWebUrl: string | null;
|
|
15821
16290
|
}
|
|
15822
16291
|
|
|
16292
|
+
enum actionAfterRetentionPeriod {
|
|
16293
|
+
none: 0,
|
|
16294
|
+
delete: 1,
|
|
16295
|
+
startDispositionReview: 2,
|
|
16296
|
+
relabel: 3,
|
|
16297
|
+
unknownFutureValue: 4,
|
|
16298
|
+
}
|
|
16299
|
+
|
|
15823
16300
|
@graphFlags
|
|
15824
16301
|
enum additionalDataOptions {
|
|
15825
16302
|
allVersions: 1,
|
|
@@ -16021,6 +16498,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16021
16498
|
unknownFutureValue: 16,
|
|
16022
16499
|
}
|
|
16023
16500
|
|
|
16501
|
+
enum defaultRecordBehavior {
|
|
16502
|
+
startLocked: 0,
|
|
16503
|
+
startUnlocked: 1,
|
|
16504
|
+
unknownFutureValue: 2,
|
|
16505
|
+
}
|
|
16506
|
+
|
|
16024
16507
|
enum defenderAvStatus {
|
|
16025
16508
|
notReporting: 0,
|
|
16026
16509
|
disabled: 1,
|
|
@@ -16138,6 +16621,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16138
16621
|
unknownFutureValue: 4,
|
|
16139
16622
|
}
|
|
16140
16623
|
|
|
16624
|
+
enum entityDefinitionInputRole {
|
|
16625
|
+
impacted: 0,
|
|
16626
|
+
related: 1,
|
|
16627
|
+
unknownFutureValue: 99,
|
|
16628
|
+
}
|
|
16629
|
+
|
|
16630
|
+
enum eventPropagationStatus {
|
|
16631
|
+
none: 0,
|
|
16632
|
+
inProcessing: 1,
|
|
16633
|
+
failed: 2,
|
|
16634
|
+
success: 3,
|
|
16635
|
+
unknownFutureValue: 4,
|
|
16636
|
+
}
|
|
16637
|
+
|
|
16638
|
+
enum eventStatusType {
|
|
16639
|
+
pending: 0,
|
|
16640
|
+
error: 1,
|
|
16641
|
+
success: 2,
|
|
16642
|
+
notAvaliable: 3,
|
|
16643
|
+
unknownFutureValue: 4,
|
|
16644
|
+
}
|
|
16645
|
+
|
|
16141
16646
|
enum evidenceRemediationStatus {
|
|
16142
16647
|
none: 0,
|
|
16143
16648
|
remediated: 1,
|
|
@@ -16214,12 +16719,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16214
16719
|
originalFiles: 1,
|
|
16215
16720
|
text: 2,
|
|
16216
16721
|
pdfReplacement: 4,
|
|
16722
|
+
@graphDeprecated("fileInfo")
|
|
16723
|
+
fileInfo: 8,
|
|
16217
16724
|
tags: 16,
|
|
16218
|
-
unknownFutureValue:
|
|
16219
|
-
splitSource:
|
|
16220
|
-
includeFolderAndPath:
|
|
16221
|
-
friendlyName:
|
|
16222
|
-
condensePaths:
|
|
16725
|
+
unknownFutureValue: 64,
|
|
16726
|
+
splitSource: 128,
|
|
16727
|
+
includeFolderAndPath: 256,
|
|
16728
|
+
friendlyName: 512,
|
|
16729
|
+
condensePaths: 1024,
|
|
16223
16730
|
}
|
|
16224
16731
|
|
|
16225
16732
|
@graphFlags
|
|
@@ -16240,6 +16747,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16240
16747
|
unknownFutureValue: 5,
|
|
16241
16748
|
}
|
|
16242
16749
|
|
|
16750
|
+
enum fileProcessingStatus {
|
|
16751
|
+
success: 0,
|
|
16752
|
+
internalError: 1,
|
|
16753
|
+
unknownError: 2,
|
|
16754
|
+
processingTimeout: 3,
|
|
16755
|
+
invalidFileId: 4,
|
|
16756
|
+
fileSizeIsZero: 5,
|
|
16757
|
+
fileSizeIsTooLarge: 6,
|
|
16758
|
+
fileDepthLimitExceeded: 7,
|
|
16759
|
+
fileBodyIsTooLong: 8,
|
|
16760
|
+
fileTypeIsUnknown: 9,
|
|
16761
|
+
fileTypeIsNotSupported: 10,
|
|
16762
|
+
malformedFile: 11,
|
|
16763
|
+
protectedFile: 12,
|
|
16764
|
+
poisonFile: 13,
|
|
16765
|
+
noReviewSetSummaryGenerated: 14,
|
|
16766
|
+
extractionException: 15,
|
|
16767
|
+
ocrProcessingTimeout: 16,
|
|
16768
|
+
ocrFileSizeExceedsLimit: 17,
|
|
16769
|
+
unknownFutureValue: 18,
|
|
16770
|
+
}
|
|
16771
|
+
|
|
16243
16772
|
@graphFlags
|
|
16244
16773
|
enum forceUserPasswordResetEntityIdentifier {
|
|
16245
16774
|
accountSid: 1,
|
|
@@ -16348,6 +16877,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16348
16877
|
unknownFutureValue: 31,
|
|
16349
16878
|
}
|
|
16350
16879
|
|
|
16880
|
+
enum manualAlertEntityType {
|
|
16881
|
+
user: 0,
|
|
16882
|
+
device: 1,
|
|
16883
|
+
file: 2,
|
|
16884
|
+
ip: 3,
|
|
16885
|
+
url: 4,
|
|
16886
|
+
cloudApplication: 5,
|
|
16887
|
+
mailbox: 6,
|
|
16888
|
+
securityGroup: 7,
|
|
16889
|
+
azureResource: 8,
|
|
16890
|
+
amazonResource: 9,
|
|
16891
|
+
googleCloudResource: 10,
|
|
16892
|
+
oAuthApplication: 11,
|
|
16893
|
+
emailMessage: 12,
|
|
16894
|
+
emailCluster: 13,
|
|
16895
|
+
process: 14,
|
|
16896
|
+
registryKey: 15,
|
|
16897
|
+
registryValue: 16,
|
|
16898
|
+
unknownFutureValue: 99,
|
|
16899
|
+
}
|
|
16900
|
+
|
|
16351
16901
|
@graphFlags
|
|
16352
16902
|
enum markUserAsCompromisedEntityIdentifier {
|
|
16353
16903
|
accountObjectId: 1,
|
|
@@ -16365,6 +16915,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16365
16915
|
unknownFutureValue: 31,
|
|
16366
16916
|
}
|
|
16367
16917
|
|
|
16918
|
+
enum policyStatus {
|
|
16919
|
+
pending: 0,
|
|
16920
|
+
error: 1,
|
|
16921
|
+
success: 2,
|
|
16922
|
+
unknownFutureValue: 3,
|
|
16923
|
+
}
|
|
16924
|
+
|
|
16368
16925
|
enum protocolType {
|
|
16369
16926
|
tcp: 0,
|
|
16370
16927
|
udp: 1,
|
|
@@ -16384,6 +16941,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16384
16941
|
permanentlyDelete: 2,
|
|
16385
16942
|
}
|
|
16386
16943
|
|
|
16944
|
+
enum queryType {
|
|
16945
|
+
files: 0,
|
|
16946
|
+
messages: 1,
|
|
16947
|
+
unknownFutureValue: 2,
|
|
16948
|
+
}
|
|
16949
|
+
|
|
16387
16950
|
@graphFlags
|
|
16388
16951
|
enum recipientType {
|
|
16389
16952
|
user: 1,
|
|
@@ -16391,6 +16954,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16391
16954
|
unknownFutureValue: 4,
|
|
16392
16955
|
}
|
|
16393
16956
|
|
|
16957
|
+
enum retentionTrigger {
|
|
16958
|
+
dateLabeled: 0,
|
|
16959
|
+
dateCreated: 1,
|
|
16960
|
+
dateModified: 2,
|
|
16961
|
+
dateOfEvent: 3,
|
|
16962
|
+
unknownFutureValue: 4,
|
|
16963
|
+
}
|
|
16964
|
+
|
|
16394
16965
|
@graphFlags
|
|
16395
16966
|
enum reviewSetSettings {
|
|
16396
16967
|
none: 0,
|
|
@@ -16425,6 +16996,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16425
16996
|
microsoftDefenderForCloud: 256,
|
|
16426
16997
|
microsoftSentinel: 512,
|
|
16427
16998
|
microsoftInsiderRiskManagement: 1024,
|
|
16999
|
+
microsoftSecurityForAI: 4096,
|
|
16428
17000
|
}
|
|
16429
17001
|
|
|
16430
17002
|
@graphFlags
|