@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/USSec/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;
|
|
@@ -256,6 +270,10 @@ namespace reference.`microsoft.graph` {
|
|
|
256
270
|
error: publicError | null;
|
|
257
271
|
}
|
|
258
272
|
|
|
273
|
+
@complex model activityMetadata {
|
|
274
|
+
activity: userActivityType;
|
|
275
|
+
}
|
|
276
|
+
|
|
259
277
|
@complex model addFooter extends markContent {
|
|
260
278
|
alignment: alignment | null;
|
|
261
279
|
margin: int32 | null;
|
|
@@ -280,6 +298,19 @@ namespace reference.`microsoft.graph` {
|
|
|
280
298
|
data: binary | null;
|
|
281
299
|
}
|
|
282
300
|
|
|
301
|
+
@complex model aiAgentInfo extends aiInteractionEntity {
|
|
302
|
+
blueprintId: string | null;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
@complex model aiInteractionEntity {
|
|
306
|
+
identifier: string | null;
|
|
307
|
+
name: string | null;
|
|
308
|
+
version: string | null;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
@complex model aiInteractionPlugin extends aiInteractionEntity {
|
|
312
|
+
}
|
|
313
|
+
|
|
283
314
|
@complex model album {
|
|
284
315
|
coverImageItemId: string | null;
|
|
285
316
|
}
|
|
@@ -378,13 +409,14 @@ namespace reference.`microsoft.graph` {
|
|
|
378
409
|
identifierUris: identifierUriConfiguration | null;
|
|
379
410
|
}
|
|
380
411
|
|
|
412
|
+
@abstract
|
|
381
413
|
@complex model appManagementConfiguration {
|
|
382
414
|
|
|
383
415
|
|
|
384
416
|
}
|
|
385
417
|
|
|
386
418
|
@complex model appManagementPolicyActorExemptions {
|
|
387
|
-
|
|
419
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
388
420
|
}
|
|
389
421
|
|
|
390
422
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -711,6 +743,11 @@ namespace reference.`microsoft.graph` {
|
|
|
711
743
|
basis: string | null;
|
|
712
744
|
}
|
|
713
745
|
|
|
746
|
+
@complex model azureActiveDirectoryTenant extends identitySource {
|
|
747
|
+
displayName: string | null;
|
|
748
|
+
tenantId: string | null;
|
|
749
|
+
}
|
|
750
|
+
|
|
714
751
|
@complex model azureADJoinPolicy {
|
|
715
752
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
716
753
|
isAdminConfigurable: boolean | null;
|
|
@@ -732,6 +769,10 @@ namespace reference.`microsoft.graph` {
|
|
|
732
769
|
resourceId: string | null;
|
|
733
770
|
}
|
|
734
771
|
|
|
772
|
+
@complex model binaryContent extends contentBase {
|
|
773
|
+
data: binary;
|
|
774
|
+
}
|
|
775
|
+
|
|
735
776
|
@complex model blockAccessAction extends dlpActionInfo {
|
|
736
777
|
}
|
|
737
778
|
|
|
@@ -995,6 +1036,11 @@ namespace reference.`microsoft.graph` {
|
|
|
995
1036
|
target: string | null;
|
|
996
1037
|
}
|
|
997
1038
|
|
|
1039
|
+
@complex model classificationAttribute {
|
|
1040
|
+
confidence: int32 | null;
|
|
1041
|
+
count: int32 | null;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
998
1044
|
@complex model classificationError extends classifcationErrorBase {
|
|
999
1045
|
details: classifcationErrorBase[] | null;
|
|
1000
1046
|
}
|
|
@@ -1006,6 +1052,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1006
1052
|
errorDateTime: offsetDateTime | null;
|
|
1007
1053
|
}
|
|
1008
1054
|
|
|
1055
|
+
@complex model classificationLimit {
|
|
1056
|
+
allowedLimit: int32 | null;
|
|
1057
|
+
code: string | null;
|
|
1058
|
+
impactedSensitiveTypeIds: string[];
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1009
1061
|
@complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
|
|
1010
1062
|
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1011
1063
|
}
|
|
@@ -1210,6 +1262,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1210
1262
|
@complex model contentApprovalStatusColumn {
|
|
1211
1263
|
}
|
|
1212
1264
|
|
|
1265
|
+
@abstract
|
|
1266
|
+
@complex model contentBase {
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1213
1269
|
@complex model contentClassification {
|
|
1214
1270
|
confidence: int32 | null;
|
|
1215
1271
|
matches: matchLocation[] | null;
|
|
@@ -1310,6 +1366,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1310
1366
|
value: string | null;
|
|
1311
1367
|
}
|
|
1312
1368
|
|
|
1369
|
+
@complex model crossCloudAzureActiveDirectoryTenant extends identitySource {
|
|
1370
|
+
cloudInstance: string;
|
|
1371
|
+
displayName: string | null;
|
|
1372
|
+
tenantId: string | null;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1313
1375
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
1314
1376
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
1315
1377
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -1411,6 +1473,20 @@ namespace reference.`microsoft.graph` {
|
|
|
1411
1473
|
clientConfiguration: customExtensionClientConfiguration | null;
|
|
1412
1474
|
}
|
|
1413
1475
|
|
|
1476
|
+
@open
|
|
1477
|
+
@complex model customMetadataDictionary extends Dictionary {
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
@abstract
|
|
1481
|
+
@complex model customSecurityAttributeExemption {
|
|
1482
|
+
id: string;
|
|
1483
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
1487
|
+
value: string | null;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1414
1490
|
@open
|
|
1415
1491
|
@complex model customSecurityAttributeValue {
|
|
1416
1492
|
}
|
|
@@ -1481,6 +1557,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1481
1557
|
}
|
|
1482
1558
|
|
|
1483
1559
|
@complex model detectedSensitiveContent extends detectedSensitiveContentBase {
|
|
1560
|
+
classificationAttributes: classificationAttribute[] | null;
|
|
1484
1561
|
classificationMethod: classificationMethod | null;
|
|
1485
1562
|
scope: sensitiveTypeScope | null;
|
|
1486
1563
|
sensitiveTypeSource: sensitiveTypeSource | null;
|
|
@@ -1555,6 +1632,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1555
1632
|
passwordBase64: string;
|
|
1556
1633
|
}
|
|
1557
1634
|
|
|
1635
|
+
@complex model deviceMetadata {
|
|
1636
|
+
deviceType: string | null;
|
|
1637
|
+
ipAddress: string | null;
|
|
1638
|
+
operatingSystemSpecifications: operatingSystemSpecifications | null;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
@complex model deviceProperties {
|
|
1642
|
+
deviceIdentifiers: string[] | null;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1558
1645
|
@complex model deviceRegistrationMembership {
|
|
1559
1646
|
}
|
|
1560
1647
|
|
|
@@ -1564,6 +1651,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1564
1651
|
triggers: restrictionTrigger[] | null;
|
|
1565
1652
|
}
|
|
1566
1653
|
|
|
1654
|
+
@complex model diagnosticMetadata {
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1567
1657
|
@open
|
|
1568
1658
|
@complex model Dictionary {
|
|
1569
1659
|
}
|
|
@@ -1584,6 +1674,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1584
1674
|
}
|
|
1585
1675
|
|
|
1586
1676
|
@complex model discoveredSensitiveType {
|
|
1677
|
+
classificationAttributes: classificationAttribute[] | null;
|
|
1587
1678
|
confidence: int32 | null;
|
|
1588
1679
|
count: int32 | null;
|
|
1589
1680
|
id: guid;
|
|
@@ -1605,7 +1696,6 @@ namespace reference.`microsoft.graph` {
|
|
|
1605
1696
|
}
|
|
1606
1697
|
|
|
1607
1698
|
@complex model dlpEvaluationInput {
|
|
1608
|
-
accessScope: accessScope | null;
|
|
1609
1699
|
currentLabel: currentLabel | null;
|
|
1610
1700
|
discoveredSensitiveTypes: discoveredSensitiveType[] | null;
|
|
1611
1701
|
}
|
|
@@ -1650,6 +1740,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1650
1740
|
versionId: string | null;
|
|
1651
1741
|
}
|
|
1652
1742
|
|
|
1743
|
+
@complex model domainIdentitySource extends identitySource {
|
|
1744
|
+
displayName: string | null;
|
|
1745
|
+
domainName: string | null;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1653
1748
|
@complex model domainState {
|
|
1654
1749
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1655
1750
|
operation: string | null;
|
|
@@ -1767,12 +1862,6 @@ namespace reference.`microsoft.graph` {
|
|
|
1767
1862
|
recommended: evaluateLabelJobResult | null;
|
|
1768
1863
|
}
|
|
1769
1864
|
|
|
1770
|
-
@complex model evaluateLabelsAndPoliciesResult {
|
|
1771
|
-
classificationResult: detectedSensitiveContentWrapper | null;
|
|
1772
|
-
dataLossPreventionPoliciesResult: dlpPoliciesJobResult | null;
|
|
1773
|
-
sensitivityLabelsResult: evaluateLabelJobResultGroup | null;
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
1865
|
@complex model evaluateSensitivityLabelsRequest {
|
|
1777
1866
|
currentLabel: currentLabel | null;
|
|
1778
1867
|
discoveredSensitiveTypes: discoveredSensitiveType[] | null;
|
|
@@ -1782,6 +1871,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1782
1871
|
@complex model eventMessageDetail {
|
|
1783
1872
|
}
|
|
1784
1873
|
|
|
1874
|
+
@complex model exactDataMatchStoreColumn {
|
|
1875
|
+
ignoredDelimiters: string[] | null;
|
|
1876
|
+
isCaseInsensitive: boolean | null;
|
|
1877
|
+
isSearchable: boolean | null;
|
|
1878
|
+
name: string | null;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1785
1881
|
@complex model exactMatchClassificationRequest {
|
|
1786
1882
|
contentClassifications: contentClassification[] | null;
|
|
1787
1883
|
sensitiveTypeIds: string[] | null;
|
|
@@ -1797,6 +1893,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1797
1893
|
@complex model exactMatchDetectedSensitiveContent extends detectedSensitiveContentBase {
|
|
1798
1894
|
}
|
|
1799
1895
|
|
|
1896
|
+
@complex model exactMatchDiagnostic {
|
|
1897
|
+
classificationId: guid;
|
|
1898
|
+
classificationLimits: classificationLimit[];
|
|
1899
|
+
unmatchedItems: unmatched[];
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1800
1902
|
@complex model excludeTarget {
|
|
1801
1903
|
id: string;
|
|
1802
1904
|
targetType: authenticationMethodTargetType;
|
|
@@ -1825,6 +1927,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1825
1927
|
type: string | null;
|
|
1826
1928
|
}
|
|
1827
1929
|
|
|
1930
|
+
@complex model externalDomainFederation extends identitySource {
|
|
1931
|
+
displayName: string | null;
|
|
1932
|
+
domainName: string | null;
|
|
1933
|
+
issuerUri: string | null;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1828
1936
|
@complex model externalSponsors extends userSet {
|
|
1829
1937
|
}
|
|
1830
1938
|
|
|
@@ -2006,12 +2114,6 @@ namespace reference.`microsoft.graph` {
|
|
|
2006
2114
|
version: string | null;
|
|
2007
2115
|
}
|
|
2008
2116
|
|
|
2009
|
-
@complex model governancePermission {
|
|
2010
|
-
accessLevel: string | null;
|
|
2011
|
-
isActive: boolean | null;
|
|
2012
|
-
isEligible: boolean | null;
|
|
2013
|
-
}
|
|
2014
|
-
|
|
2015
2117
|
@complex model governancePolicy {
|
|
2016
2118
|
decisionMakerCriteria: governanceCriteria[] | null;
|
|
2017
2119
|
notificationPolicy: governanceNotificationPolicy | null;
|
|
@@ -2060,6 +2162,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2060
2162
|
@complex model groupPeerOutlierRecommendationInsightSettings extends accessReviewRecommendationInsightSetting {
|
|
2061
2163
|
}
|
|
2062
2164
|
|
|
2165
|
+
@complex model groupScope extends scopeBase {
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2063
2168
|
@complex model hashes {
|
|
2064
2169
|
crc32Hash: string | null;
|
|
2065
2170
|
quickXorHash: string | null;
|
|
@@ -2126,6 +2231,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2126
2231
|
user: identity | null;
|
|
2127
2232
|
}
|
|
2128
2233
|
|
|
2234
|
+
@abstract
|
|
2235
|
+
@complex model identitySource {
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2129
2238
|
@complex model idleSessionSignOut {
|
|
2130
2239
|
isEnabled: boolean | null;
|
|
2131
2240
|
signOutAfterInSeconds: int64 | null;
|
|
@@ -2209,6 +2318,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2209
2318
|
start: int64 | null;
|
|
2210
2319
|
}
|
|
2211
2320
|
|
|
2321
|
+
@complex model integratedApplicationMetadata {
|
|
2322
|
+
name: string | null;
|
|
2323
|
+
version: string | null;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2212
2326
|
@complex model internalSponsors extends userSet {
|
|
2213
2327
|
}
|
|
2214
2328
|
|
|
@@ -2331,6 +2445,14 @@ namespace reference.`microsoft.graph` {
|
|
|
2331
2445
|
@complex model Json {
|
|
2332
2446
|
}
|
|
2333
2447
|
|
|
2448
|
+
@complex model justInTimeAuditConfiguration {
|
|
2449
|
+
isEnabled: boolean;
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
@complex model justInTimeEnforcementConfiguration {
|
|
2453
|
+
isEnabled: boolean;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2334
2456
|
@complex model kerberosSignOnSettings {
|
|
2335
2457
|
kerberosServicePrincipalName: string | null;
|
|
2336
2458
|
kerberosSignOnMappingAttributeType: kerberosSignOnMappingAttributeType | null;
|
|
@@ -2347,6 +2469,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2347
2469
|
usage: string | null;
|
|
2348
2470
|
}
|
|
2349
2471
|
|
|
2472
|
+
|
|
2350
2473
|
@complex model keyValue {
|
|
2351
2474
|
key: string | null;
|
|
2352
2475
|
value: string | null;
|
|
@@ -2553,6 +2676,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2553
2676
|
text: string | null;
|
|
2554
2677
|
}
|
|
2555
2678
|
|
|
2679
|
+
@complex model matchedCondition {
|
|
2680
|
+
condition: string;
|
|
2681
|
+
displayName: string;
|
|
2682
|
+
values: string[];
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2556
2685
|
@complex model matchingDlpRule {
|
|
2557
2686
|
actions: dlpActionInfo[] | null;
|
|
2558
2687
|
isMostRestrictive: boolean | null;
|
|
@@ -2763,7 +2892,6 @@ namespace reference.`microsoft.graph` {
|
|
|
2763
2892
|
@complex model notifyUserAction extends dlpActionInfo {
|
|
2764
2893
|
@computed actionLastModifiedDateTime: offsetDateTime | null;
|
|
2765
2894
|
emailText: string | null;
|
|
2766
|
-
overrideOption: overrideOption | null;
|
|
2767
2895
|
policyTip: string | null;
|
|
2768
2896
|
recipients: string[] | null;
|
|
2769
2897
|
}
|
|
@@ -2968,11 +3096,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2968
3096
|
discoveryUrl: string;
|
|
2969
3097
|
}
|
|
2970
3098
|
|
|
3099
|
+
@complex model operatingSystemSpecifications {
|
|
3100
|
+
operatingSystemPlatform: string;
|
|
3101
|
+
operatingSystemVersion: string;
|
|
3102
|
+
}
|
|
3103
|
+
|
|
2971
3104
|
@complex model operationError {
|
|
2972
3105
|
code: string | null;
|
|
2973
3106
|
message: string | null;
|
|
2974
3107
|
}
|
|
2975
3108
|
|
|
3109
|
+
@complex model opticalCharacterRecognitionConfiguration {
|
|
3110
|
+
isEnabled: boolean | null;
|
|
3111
|
+
}
|
|
3112
|
+
|
|
2976
3113
|
@complex model optionalClaim {
|
|
2977
3114
|
additionalProperties: string[] | null;
|
|
2978
3115
|
essential: boolean;
|
|
@@ -3026,6 +3163,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3026
3163
|
startDateTime: offsetDateTime | null;
|
|
3027
3164
|
}
|
|
3028
3165
|
|
|
3166
|
+
|
|
3029
3167
|
@complex model passwordProfile {
|
|
3030
3168
|
forceChangePasswordNextSignIn: boolean | null;
|
|
3031
3169
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -3375,6 +3513,40 @@ namespace reference.`microsoft.graph` {
|
|
|
3375
3513
|
usageRights: usageRightsInfo | null;
|
|
3376
3514
|
}
|
|
3377
3515
|
|
|
3516
|
+
@complex model policyBinding {
|
|
3517
|
+
exclusions: scopeBase[] | null;
|
|
3518
|
+
inclusions: scopeBase[];
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
@abstract
|
|
3522
|
+
@complex model policyLocation {
|
|
3523
|
+
value: string;
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
@complex model policyLocationApplication extends policyLocation {
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
@complex model policyLocationDomain extends policyLocation {
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
@complex model policyLocationUrl extends policyLocation {
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
@abstract
|
|
3536
|
+
@complex model policyScopeBase {
|
|
3537
|
+
activities: userActivityTypes;
|
|
3538
|
+
executionMode: executionMode;
|
|
3539
|
+
locations: policyLocation[];
|
|
3540
|
+
policyActions: dlpActionInfo[];
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
@complex model policyTenantScope extends policyScopeBase {
|
|
3544
|
+
policyScope: policyBinding | null;
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
@complex model policyUserScope extends policyScopeBase {
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3378
3550
|
@complex model positionDetail {
|
|
3379
3551
|
company: companyDetail | null;
|
|
3380
3552
|
description: string | null;
|
|
@@ -3417,11 +3589,74 @@ namespace reference.`microsoft.graph` {
|
|
|
3417
3589
|
processId: int32 | null;
|
|
3418
3590
|
}
|
|
3419
3591
|
|
|
3592
|
+
@complex model processContentBatchRequest {
|
|
3593
|
+
contentToProcess: processContentRequest;
|
|
3594
|
+
requestId: string | null;
|
|
3595
|
+
userId: string | null;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
@abstract
|
|
3599
|
+
@complex model processContentMetadataBase {
|
|
3600
|
+
content: contentBase | null;
|
|
3601
|
+
correlationId: string | null;
|
|
3602
|
+
@computed createdDateTime: offsetDateTime;
|
|
3603
|
+
identifier: string;
|
|
3604
|
+
isTruncated: boolean;
|
|
3605
|
+
length: int64 | null;
|
|
3606
|
+
modifiedDateTime: offsetDateTime;
|
|
3607
|
+
name: string;
|
|
3608
|
+
sequenceNumber: int64 | null;
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
@complex model processContentRequest {
|
|
3612
|
+
activityMetadata: activityMetadata;
|
|
3613
|
+
contentEntries: processContentMetadataBase[];
|
|
3614
|
+
deviceMetadata: deviceMetadata;
|
|
3615
|
+
integratedAppMetadata: integratedApplicationMetadata;
|
|
3616
|
+
protectedAppMetadata: protectedApplicationMetadata | null;
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
@complex model processContentResponse {
|
|
3620
|
+
policyActions: dlpActionInfo[];
|
|
3621
|
+
processingErrors: processingError[];
|
|
3622
|
+
protectionScopeState: protectionScopeState;
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
@complex model processContentResponses {
|
|
3626
|
+
requestId: string | null;
|
|
3627
|
+
results: processContentResponse;
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
@complex model processConversationMetadata extends processContentMetadataBase {
|
|
3631
|
+
|
|
3632
|
+
// Warning: Malformed version string '2020-08-20' detected.
|
|
3633
|
+
accessedResources: string[] | null;
|
|
3634
|
+
accessedResources_v2: resourceAccessDetail[] | null;
|
|
3635
|
+
agents: aiAgentInfo[] | null;
|
|
3636
|
+
parentMessageId: string | null;
|
|
3637
|
+
plugins: aiInteractionPlugin[] | null;
|
|
3638
|
+
}
|
|
3639
|
+
|
|
3640
|
+
@complex model processFileMetadata extends processContentMetadataBase {
|
|
3641
|
+
customProperties: customMetadataDictionary | null;
|
|
3642
|
+
ownerId: string | null;
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
@complex model processingError extends classificationError {
|
|
3646
|
+
errorType: contentProcessingErrorType;
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3420
3649
|
@complex model profileCardAnnotation {
|
|
3421
3650
|
displayName: string | null;
|
|
3422
3651
|
localizations: displayNameLocalization[] | null;
|
|
3423
3652
|
}
|
|
3424
3653
|
|
|
3654
|
+
@complex model profileSourceLocalization {
|
|
3655
|
+
displayName: string | null;
|
|
3656
|
+
languageTag: string | null;
|
|
3657
|
+
webUrl: string | null;
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3425
3660
|
@open
|
|
3426
3661
|
@complex model programResource extends identity {
|
|
3427
3662
|
type: string | null;
|
|
@@ -3432,6 +3667,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3432
3667
|
propertyValue: string | null;
|
|
3433
3668
|
}
|
|
3434
3669
|
|
|
3670
|
+
@complex model protectedApplicationMetadata extends integratedApplicationMetadata {
|
|
3671
|
+
applicationLocation: policyLocation | null;
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3435
3674
|
@complex model protectedContent {
|
|
3436
3675
|
cid: string | null;
|
|
3437
3676
|
format: string | null;
|
|
@@ -3444,6 +3683,14 @@ namespace reference.`microsoft.graph` {
|
|
|
3444
3683
|
privacy: groupPrivacy | null;
|
|
3445
3684
|
}
|
|
3446
3685
|
|
|
3686
|
+
@complex model protectOnlineMeetingAction extends labelActionBase {
|
|
3687
|
+
allowedForwarders: onlineMeetingForwarders | null;
|
|
3688
|
+
allowedPresenters: onlineMeetingPresenters | null;
|
|
3689
|
+
isCopyToClipboardEnabled: boolean | null;
|
|
3690
|
+
isLobbyEnabled: boolean | null;
|
|
3691
|
+
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3447
3694
|
@complex model protectSite extends labelActionBase {
|
|
3448
3695
|
accessType: siteAccessType | null;
|
|
3449
3696
|
conditionalAccessProtectionLevelId: string | null;
|
|
@@ -3696,6 +3943,17 @@ namespace reference.`microsoft.graph` {
|
|
|
3696
3943
|
type: string | null;
|
|
3697
3944
|
}
|
|
3698
3945
|
|
|
3946
|
+
@complex model resourceAccessDetail {
|
|
3947
|
+
accessType: resourceAccessType;
|
|
3948
|
+
identifier: string;
|
|
3949
|
+
isCrossPromptInjectionDetected: boolean;
|
|
3950
|
+
labelId: string | null;
|
|
3951
|
+
name: string;
|
|
3952
|
+
status: resourceAccessStatus;
|
|
3953
|
+
storageId: string | null;
|
|
3954
|
+
url: string | null;
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3699
3957
|
@open
|
|
3700
3958
|
@complex model resourceData {
|
|
3701
3959
|
}
|
|
@@ -3735,6 +3993,14 @@ namespace reference.`microsoft.graph` {
|
|
|
3735
3993
|
@complex model restoreAction {
|
|
3736
3994
|
}
|
|
3737
3995
|
|
|
3996
|
+
@complex model restrictAccessAction extends restrictAccessActionBase {
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
@abstract
|
|
4000
|
+
@complex model restrictAccessActionBase extends dlpActionInfo {
|
|
4001
|
+
restrictionAction: restrictionAction | null;
|
|
4002
|
+
}
|
|
4003
|
+
|
|
3738
4004
|
@complex model resultInfo {
|
|
3739
4005
|
code: int32;
|
|
3740
4006
|
message: string | null;
|
|
@@ -3808,6 +4074,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3808
4074
|
subject: string | null;
|
|
3809
4075
|
}
|
|
3810
4076
|
|
|
4077
|
+
@abstract
|
|
4078
|
+
@complex model scopeBase {
|
|
4079
|
+
identity: string | null;
|
|
4080
|
+
}
|
|
4081
|
+
|
|
3811
4082
|
@complex model searchResult {
|
|
3812
4083
|
onClickTelemetryUrl: string | null;
|
|
3813
4084
|
}
|
|
@@ -4363,6 +4634,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4363
4634
|
userPrincipalName: string | null;
|
|
4364
4635
|
}
|
|
4365
4636
|
|
|
4637
|
+
@complex model targetUserSponsors extends userSet {
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4366
4640
|
@complex model teamArchivedEventMessageDetail extends eventMessageDetail {
|
|
4367
4641
|
initiator: identitySet | null;
|
|
4368
4642
|
teamId: string | null;
|
|
@@ -4726,6 +5000,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4726
5000
|
tenantId: string;
|
|
4727
5001
|
}
|
|
4728
5002
|
|
|
5003
|
+
@complex model tenantScope extends scopeBase {
|
|
5004
|
+
}
|
|
5005
|
+
|
|
4729
5006
|
@complex model termColumn {
|
|
4730
5007
|
allowMultipleValues: boolean | null;
|
|
4731
5008
|
showFullyQualifiedName: boolean | null;
|
|
@@ -4746,6 +5023,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4746
5023
|
textType: string | null;
|
|
4747
5024
|
}
|
|
4748
5025
|
|
|
5026
|
+
@complex model textContent extends contentBase {
|
|
5027
|
+
data: string;
|
|
5028
|
+
}
|
|
5029
|
+
|
|
4749
5030
|
@complex model thumbnail {
|
|
4750
5031
|
content: stream | null;
|
|
4751
5032
|
height: int32 | null;
|
|
@@ -4811,6 +5092,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4811
5092
|
untranslatedLanguages: string[] | null;
|
|
4812
5093
|
}
|
|
4813
5094
|
|
|
5095
|
+
@complex model trustContainerConfiguration {
|
|
5096
|
+
isEnabled: boolean;
|
|
5097
|
+
}
|
|
5098
|
+
|
|
4814
5099
|
@complex model trustedSubjectNameAndIssuerConfiguration {
|
|
4815
5100
|
trustedCertificateSubjectAddition: trustedSubjectNameAndIssuerRestriction | null;
|
|
4816
5101
|
}
|
|
@@ -4842,6 +5127,14 @@ namespace reference.`microsoft.graph` {
|
|
|
4842
5127
|
excludedResourceActions: string[] | null;
|
|
4843
5128
|
}
|
|
4844
5129
|
|
|
5130
|
+
@complex model unmatched {
|
|
5131
|
+
code: string | null;
|
|
5132
|
+
corroborativeEvidences: string[];
|
|
5133
|
+
idMatch: string | null;
|
|
5134
|
+
length: int32 | null;
|
|
5135
|
+
offset: int32 | null;
|
|
5136
|
+
}
|
|
5137
|
+
|
|
4845
5138
|
@complex model unrestrictedAudience extends signInAudienceRestrictionsBase {
|
|
4846
5139
|
}
|
|
4847
5140
|
|
|
@@ -4923,6 +5216,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4923
5216
|
userTypes: includedUserTypes | null;
|
|
4924
5217
|
}
|
|
4925
5218
|
|
|
5219
|
+
@complex model userScope extends scopeBase {
|
|
5220
|
+
}
|
|
5221
|
+
|
|
4926
5222
|
@complex model userSecurityState {
|
|
4927
5223
|
aadUserId: string | null;
|
|
4928
5224
|
accountName: string | null;
|
|
@@ -5269,6 +5565,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5269
5565
|
@contains accessPackageAssignmentPolicies: accessPackageAssignmentPolicy[];
|
|
5270
5566
|
@references accessPackageCatalog: accessPackageCatalog | null;
|
|
5271
5567
|
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
5568
|
+
@references accessPackagesIncompatibleWith: accessPackage[];
|
|
5569
|
+
@references incompatibleAccessPackages: accessPackage[];
|
|
5570
|
+
@contains incompatibleGroups: group[];
|
|
5272
5571
|
}
|
|
5273
5572
|
|
|
5274
5573
|
@entity model accessPackageAssignment extends entity {
|
|
@@ -5280,6 +5579,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5280
5579
|
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
5281
5580
|
expiredDateTime: offsetDateTime | null;
|
|
5282
5581
|
isExtended: boolean | null;
|
|
5582
|
+
schedule: requestSchedule | null;
|
|
5283
5583
|
targetId: string | null;
|
|
5284
5584
|
@contains accessPackage: accessPackage | null;
|
|
5285
5585
|
@contains accessPackageAssignmentPolicy: accessPackageAssignmentPolicy | null;
|
|
@@ -5301,17 +5601,19 @@ namespace reference.`microsoft.graph` {
|
|
|
5301
5601
|
expirationDateTime: offsetDateTime | null;
|
|
5302
5602
|
modifiedBy: string | null;
|
|
5303
5603
|
modifiedDateTime: offsetDateTime | null;
|
|
5604
|
+
questions: accessPackageQuestion[] | null;
|
|
5304
5605
|
requestApprovalSettings: approvalSettings | null;
|
|
5305
5606
|
requestorSettings: requestorSettings | null;
|
|
5306
5607
|
verifiableCredentialSettings: verifiableCredentialSettings | null;
|
|
5307
5608
|
@references accessPackage: accessPackage | null;
|
|
5308
5609
|
@contains accessPackageCatalog: accessPackageCatalog | null;
|
|
5309
|
-
@
|
|
5310
|
-
@
|
|
5610
|
+
@references customExtensionHandlers: customExtensionHandler[];
|
|
5611
|
+
@references customExtensionStageSettings: customExtensionStageSetting[];
|
|
5311
5612
|
}
|
|
5312
5613
|
|
|
5313
5614
|
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
5314
5615
|
@entity model accessPackageAssignmentRequest extends entity {
|
|
5616
|
+
answers: accessPackageAnswer[] | null;
|
|
5315
5617
|
completedDate: offsetDateTime | null;
|
|
5316
5618
|
@computed createdDateTime: offsetDateTime | null;
|
|
5317
5619
|
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
@@ -5322,6 +5624,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5322
5624
|
requestState: string | null;
|
|
5323
5625
|
requestStatus: string | null;
|
|
5324
5626
|
requestType: string | null;
|
|
5627
|
+
schedule: requestSchedule | null;
|
|
5325
5628
|
verifiedCredentialsData: verifiedCredentialData[] | null;
|
|
5326
5629
|
@references accessPackage: accessPackage | null;
|
|
5327
5630
|
@contains accessPackageAssignment: accessPackageAssignment | null;
|
|
@@ -5384,7 +5687,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5384
5687
|
originSystem: string | null;
|
|
5385
5688
|
resourceType: string | null;
|
|
5386
5689
|
url: string | null;
|
|
5387
|
-
@
|
|
5690
|
+
@references accessPackageResourceEnvironment: accessPackageResourceEnvironment | null;
|
|
5388
5691
|
@contains accessPackageResourceRoles: accessPackageResourceRole[];
|
|
5389
5692
|
@contains accessPackageResourceScopes: accessPackageResourceScope[];
|
|
5390
5693
|
}
|
|
@@ -5400,7 +5703,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5400
5703
|
modifiedDateTime: offsetDateTime | null;
|
|
5401
5704
|
originId: string;
|
|
5402
5705
|
originSystem: string;
|
|
5403
|
-
@
|
|
5706
|
+
@references accessPackageResources: accessPackageResource[];
|
|
5404
5707
|
}
|
|
5405
5708
|
|
|
5406
5709
|
@entity model accessPackageResourceRequest extends entity {
|
|
@@ -5447,12 +5750,14 @@ namespace reference.`microsoft.graph` {
|
|
|
5447
5750
|
@entity model accessPackageSubject extends entity {
|
|
5448
5751
|
altSecId: string | null;
|
|
5449
5752
|
cleanupScheduledDateTime: offsetDateTime | null;
|
|
5753
|
+
connectedOrganizationId: string | null;
|
|
5450
5754
|
displayName: string | null;
|
|
5451
5755
|
email: string | null;
|
|
5452
5756
|
objectId: string | null;
|
|
5453
5757
|
onPremisesSecurityIdentifier: string | null;
|
|
5454
5758
|
principalName: string | null;
|
|
5455
5759
|
type: string | null;
|
|
5760
|
+
@references connectedOrganization: connectedOrganization | null;
|
|
5456
5761
|
}
|
|
5457
5762
|
|
|
5458
5763
|
@entity model accessReview extends entity {
|
|
@@ -5596,10 +5901,15 @@ namespace reference.`microsoft.graph` {
|
|
|
5596
5901
|
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
5597
5902
|
}
|
|
5598
5903
|
|
|
5904
|
+
@entity model activitiesContainer extends entity {
|
|
5905
|
+
@contains contentActivities: contentActivity[];
|
|
5906
|
+
}
|
|
5907
|
+
|
|
5599
5908
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
5600
5909
|
}
|
|
5601
5910
|
|
|
5602
5911
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
5912
|
+
@contains cloudLicensing: reference.`microsoft.graph.cloudLicensing`.adminCloudLicensing | null;
|
|
5603
5913
|
@contains people: peopleAdminSettings | null;
|
|
5604
5914
|
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
5605
5915
|
@contains sharepoint: sharepoint | null;
|
|
@@ -5783,9 +6093,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5783
6093
|
identifierUris: string[];
|
|
5784
6094
|
info: informationalUrl | null;
|
|
5785
6095
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
6096
|
+
isDisabled: boolean | null;
|
|
5786
6097
|
isFallbackPublicClient: boolean | null;
|
|
5787
6098
|
keyCredentials: keyCredential[];
|
|
5788
6099
|
logo: stream;
|
|
6100
|
+
managerApplications: guid;
|
|
5789
6101
|
notes: string | null;
|
|
5790
6102
|
onPremisesPublishing: onPremisesPublishing | null;
|
|
5791
6103
|
optionalClaims: optionalClaims | null;
|
|
@@ -5852,7 +6164,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5852
6164
|
|
|
5853
6165
|
@entity model appManagementPolicy extends policyBase {
|
|
5854
6166
|
isEnabled: boolean;
|
|
5855
|
-
restrictions:
|
|
6167
|
+
restrictions: customAppManagementConfiguration | null;
|
|
5856
6168
|
@references appliesTo: directoryObject[];
|
|
5857
6169
|
}
|
|
5858
6170
|
|
|
@@ -5955,6 +6267,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5955
6267
|
requirements: strongAuthenticationRequirements | null;
|
|
5956
6268
|
signInPreferences: signInPreferences | null;
|
|
5957
6269
|
@contains emailMethods: emailAuthenticationMethod[];
|
|
6270
|
+
@contains externalAuthenticationMethods: externalAuthenticationMethod[];
|
|
5958
6271
|
@contains fido2Methods: fido2AuthenticationMethod[];
|
|
5959
6272
|
@contains methods: authenticationMethod[];
|
|
5960
6273
|
@contains microsoftAuthenticatorMethods: microsoftAuthenticatorAuthenticationMethod[];
|
|
@@ -6424,6 +6737,19 @@ namespace reference.`microsoft.graph` {
|
|
|
6424
6737
|
scenarios: templateScenarios;
|
|
6425
6738
|
}
|
|
6426
6739
|
|
|
6740
|
+
@entity model connectedOrganization extends entity {
|
|
6741
|
+
createdBy: string | null;
|
|
6742
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6743
|
+
description: string | null;
|
|
6744
|
+
displayName: string | null;
|
|
6745
|
+
identitySources: identitySource[] | null;
|
|
6746
|
+
modifiedBy: string | null;
|
|
6747
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6748
|
+
state: connectedOrganizationState | null;
|
|
6749
|
+
@contains externalSponsors: directoryObject[];
|
|
6750
|
+
@contains internalSponsors: directoryObject[];
|
|
6751
|
+
}
|
|
6752
|
+
|
|
6427
6753
|
@entity model connector extends entity {
|
|
6428
6754
|
externalIp: string;
|
|
6429
6755
|
machineName: string;
|
|
@@ -6492,6 +6818,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6492
6818
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
6493
6819
|
}
|
|
6494
6820
|
|
|
6821
|
+
@entity model contentActivity extends entity {
|
|
6822
|
+
contentMetadata: processContentRequest;
|
|
6823
|
+
scopeIdentifier: string | null;
|
|
6824
|
+
userId: string | null;
|
|
6825
|
+
}
|
|
6826
|
+
|
|
6495
6827
|
@entity model contentModel extends entity {
|
|
6496
6828
|
createdBy: identitySet | null;
|
|
6497
6829
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -6689,15 +7021,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6689
7021
|
@contains allowedValues: allowedValue[];
|
|
6690
7022
|
}
|
|
6691
7023
|
|
|
6692
|
-
@abstract
|
|
6693
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
6694
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
6695
|
-
}
|
|
6696
|
-
|
|
6697
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
6698
|
-
value: string | null;
|
|
6699
|
-
}
|
|
6700
|
-
|
|
6701
7024
|
@entity model dataClassificationService extends entity {
|
|
6702
7025
|
@contains classifyFileJobs: jobResponseBase[];
|
|
6703
7026
|
@contains classifyTextJobs: jobResponseBase[];
|
|
@@ -6706,7 +7029,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6706
7029
|
@contains exactMatchDataStores: exactMatchDataStore[];
|
|
6707
7030
|
@contains exactMatchUploadAgents: exactMatchUploadAgent[];
|
|
6708
7031
|
@contains jobs: jobResponseBase[];
|
|
6709
|
-
@contains labelsAndPoliciesEvaluationJobs: jobResponseBase[];
|
|
6710
7032
|
@contains sensitiveTypes: sensitiveType[];
|
|
6711
7033
|
@contains sensitivityLabels: sensitivityLabel[];
|
|
6712
7034
|
}
|
|
@@ -7051,7 +7373,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7051
7373
|
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
7052
7374
|
@contains accessPackageResources: accessPackageResource[];
|
|
7053
7375
|
@contains accessPackages: accessPackage[];
|
|
7376
|
+
@contains connectedOrganizations: connectedOrganization[];
|
|
7054
7377
|
@contains settings: entitlementManagementSettings | null;
|
|
7378
|
+
@contains subjects: accessPackageSubject[];
|
|
7055
7379
|
}
|
|
7056
7380
|
|
|
7057
7381
|
@entity model entitlementManagementSettings extends entity {
|
|
@@ -7068,10 +7392,6 @@ namespace reference.`microsoft.graph` {
|
|
|
7068
7392
|
result: evaluateLabelJobResultGroup | null;
|
|
7069
7393
|
}
|
|
7070
7394
|
|
|
7071
|
-
@entity model evaluateLabelsAndPoliciesJobResponse extends jobResponseBase {
|
|
7072
|
-
result: evaluateLabelsAndPoliciesResult | null;
|
|
7073
|
-
}
|
|
7074
|
-
|
|
7075
7395
|
@open
|
|
7076
7396
|
@entity model event extends outlookItem {
|
|
7077
7397
|
allowNewTimeProposals: boolean | null;
|
|
@@ -7144,11 +7464,15 @@ namespace reference.`microsoft.graph` {
|
|
|
7144
7464
|
responseType: responseType | null;
|
|
7145
7465
|
}
|
|
7146
7466
|
|
|
7147
|
-
@entity model exactMatchDataStore extends
|
|
7467
|
+
@entity model exactMatchDataStore extends exactMatchDataStoreBase {
|
|
7468
|
+
@contains sessions: exactMatchSession[];
|
|
7469
|
+
}
|
|
7470
|
+
|
|
7471
|
+
@entity model exactMatchDataStoreBase extends entity {
|
|
7472
|
+
columns: exactDataMatchStoreColumn[] | null;
|
|
7148
7473
|
dataLastUpdatedDateTime: offsetDateTime | null;
|
|
7149
7474
|
description: string | null;
|
|
7150
7475
|
displayName: string | null;
|
|
7151
|
-
@contains sessions: exactMatchSession[];
|
|
7152
7476
|
}
|
|
7153
7477
|
|
|
7154
7478
|
@abstract
|
|
@@ -7165,23 +7489,26 @@ namespace reference.`microsoft.graph` {
|
|
|
7165
7489
|
@contains matchingRows: lookupResultRow[];
|
|
7166
7490
|
}
|
|
7167
7491
|
|
|
7168
|
-
@entity model exactMatchSession extends
|
|
7492
|
+
@entity model exactMatchSession extends exactMatchSessionBase {
|
|
7169
7493
|
checksum: string | null;
|
|
7170
|
-
datastoreId: string | null;
|
|
7171
7494
|
dataUploadURI: string | null;
|
|
7172
7495
|
fields: string[] | null;
|
|
7173
7496
|
fileName: string | null;
|
|
7497
|
+
rowsPerBlock: int32 | null;
|
|
7498
|
+
salt: string | null;
|
|
7499
|
+
uploadAgentId: string | null;
|
|
7500
|
+
@contains uploadAgent: exactMatchUploadAgent | null;
|
|
7501
|
+
}
|
|
7502
|
+
|
|
7503
|
+
@entity model exactMatchSessionBase extends exactMatchJobBase {
|
|
7504
|
+
dataStoreId: string | null;
|
|
7174
7505
|
processingCompletionDateTime: offsetDateTime | null;
|
|
7175
7506
|
remainingBlockCount: int32 | null;
|
|
7176
7507
|
remainingJobCount: int32 | null;
|
|
7177
|
-
rowsPerBlock: int32 | null;
|
|
7178
|
-
salt: string | null;
|
|
7179
7508
|
state: string | null;
|
|
7180
7509
|
totalBlockCount: int32 | null;
|
|
7181
7510
|
totalJobCount: int32 | null;
|
|
7182
|
-
uploadAgentId: string | null;
|
|
7183
7511
|
uploadCompletionDateTime: offsetDateTime | null;
|
|
7184
|
-
@contains uploadAgent: exactMatchUploadAgent | null;
|
|
7185
7512
|
}
|
|
7186
7513
|
|
|
7187
7514
|
@entity model exactMatchUploadAgent extends entity {
|
|
@@ -7203,6 +7530,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7203
7530
|
targetObjects: string[];
|
|
7204
7531
|
}
|
|
7205
7532
|
|
|
7533
|
+
@entity model externalAuthenticationMethod extends authenticationMethod {
|
|
7534
|
+
configurationId: string;
|
|
7535
|
+
displayName: string;
|
|
7536
|
+
}
|
|
7537
|
+
|
|
7206
7538
|
@entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
7207
7539
|
appId: string;
|
|
7208
7540
|
displayName: string;
|
|
@@ -7467,12 +7799,14 @@ namespace reference.`microsoft.graph` {
|
|
|
7467
7799
|
membershipRuleProcessingState: string | null;
|
|
7468
7800
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
7469
7801
|
onPremisesDomainName: string | null;
|
|
7802
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
7470
7803
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
7471
7804
|
onPremisesNetBiosName: string | null;
|
|
7472
7805
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
7473
7806
|
onPremisesSamAccountName: string | null;
|
|
7474
7807
|
onPremisesSecurityIdentifier: string | null;
|
|
7475
7808
|
onPremisesSyncEnabled: boolean | null;
|
|
7809
|
+
organizationId: string | null;
|
|
7476
7810
|
preferredDataLocation: string | null;
|
|
7477
7811
|
preferredLanguage: string | null;
|
|
7478
7812
|
proxyAddresses: string[];
|
|
@@ -7488,6 +7822,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7488
7822
|
unseenCount: int32 | null;
|
|
7489
7823
|
unseenMessagesCount: int32 | null;
|
|
7490
7824
|
visibility: string | null;
|
|
7825
|
+
welcomeMessageEnabled: boolean | null;
|
|
7491
7826
|
@contains acceptedSenders: directoryObject[];
|
|
7492
7827
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
7493
7828
|
@contains calendar: calendar | null;
|
|
@@ -7601,7 +7936,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7601
7936
|
}
|
|
7602
7937
|
|
|
7603
7938
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
7604
|
-
inheritableScopes: inheritableScopes;
|
|
7939
|
+
inheritableScopes: inheritableScopes | null;
|
|
7605
7940
|
@computed @key resourceAppId: string;
|
|
7606
7941
|
}
|
|
7607
7942
|
|
|
@@ -7765,9 +8100,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7765
8100
|
status: string | null;
|
|
7766
8101
|
tenantId: string | null;
|
|
7767
8102
|
type: string | null;
|
|
8103
|
+
userId: string | null;
|
|
7768
8104
|
}
|
|
7769
8105
|
|
|
7770
|
-
|
|
7771
8106
|
@entity model labelContentRight extends entity {
|
|
7772
8107
|
cid: string | null;
|
|
7773
8108
|
format: string | null;
|
|
@@ -8304,7 +8639,6 @@ namespace reference.`microsoft.graph` {
|
|
|
8304
8639
|
password: string | null;
|
|
8305
8640
|
}
|
|
8306
8641
|
|
|
8307
|
-
|
|
8308
8642
|
@entity model passwordlessMicrosoftAuthenticatorAuthenticationMethod extends authenticationMethod {
|
|
8309
8643
|
|
|
8310
8644
|
@graphDeprecated("CreationDateTime")
|
|
@@ -8318,6 +8652,8 @@ namespace reference.`microsoft.graph` {
|
|
|
8318
8652
|
@contains namePronunciation: namePronunciationSettings | null;
|
|
8319
8653
|
@contains photoUpdateSettings: photoUpdateSettings | null;
|
|
8320
8654
|
@contains profileCardProperties: profileCardProperty[];
|
|
8655
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
8656
|
+
@contains profileSources: profileSource[];
|
|
8321
8657
|
@contains pronouns: pronounsSettings | null;
|
|
8322
8658
|
}
|
|
8323
8659
|
|
|
@@ -8828,6 +9164,20 @@ namespace reference.`microsoft.graph` {
|
|
|
8828
9164
|
width: int32 | null;
|
|
8829
9165
|
}
|
|
8830
9166
|
|
|
9167
|
+
@entity model profilePropertySetting extends entity {
|
|
9168
|
+
displayName: string | null;
|
|
9169
|
+
name: string | null;
|
|
9170
|
+
prioritizedSourceUrls: string[] | null;
|
|
9171
|
+
}
|
|
9172
|
+
|
|
9173
|
+
@entity model profileSource extends entity {
|
|
9174
|
+
displayName: string | null;
|
|
9175
|
+
kind: string | null;
|
|
9176
|
+
localizations: profileSourceLocalization[];
|
|
9177
|
+
sourceId: string | null;
|
|
9178
|
+
webUrl: string | null;
|
|
9179
|
+
}
|
|
9180
|
+
|
|
8831
9181
|
@entity model program extends entity {
|
|
8832
9182
|
description: string;
|
|
8833
9183
|
displayName: string;
|
|
@@ -9079,6 +9429,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9079
9429
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
9080
9430
|
@contains directory: rbacApplication | null;
|
|
9081
9431
|
@contains enterpriseApps: rbacApplication[];
|
|
9432
|
+
/**
|
|
9433
|
+
* The RbacApplication for Entitlement Management
|
|
9434
|
+
*/
|
|
9435
|
+
@contains entitlementManagement: rbacApplication | null;
|
|
9082
9436
|
@contains exchange: unifiedRbacApplication | null;
|
|
9083
9437
|
}
|
|
9084
9438
|
|
|
@@ -9192,15 +9546,20 @@ namespace reference.`microsoft.graph` {
|
|
|
9192
9546
|
@contains alerts: alert[];
|
|
9193
9547
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
9194
9548
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
9549
|
+
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
9195
9550
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
9551
|
+
@contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
|
|
9196
9552
|
@contains rules: reference.`microsoft.graph.security`.rulesRoot | null;
|
|
9197
9553
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
9198
9554
|
@contains secureScores: secureScore[];
|
|
9555
|
+
@contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
|
|
9556
|
+
@contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
|
|
9199
9557
|
}
|
|
9200
9558
|
|
|
9201
9559
|
@entity model sensitiveType extends entity {
|
|
9202
9560
|
classificationMethod: classificationMethod | null;
|
|
9203
9561
|
description: string | null;
|
|
9562
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
9204
9563
|
name: string | null;
|
|
9205
9564
|
publisherName: string | null;
|
|
9206
9565
|
rulePackageId: string | null;
|
|
@@ -9317,6 +9676,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9317
9676
|
errorUrl: string | null;
|
|
9318
9677
|
homepage: string | null;
|
|
9319
9678
|
info: informationalUrl | null;
|
|
9679
|
+
isDisabled: boolean | null;
|
|
9320
9680
|
keyCredentials: keyCredential[];
|
|
9321
9681
|
loginUrl: string | null;
|
|
9322
9682
|
logoutUrl: string | null;
|
|
@@ -9583,6 +9943,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9583
9943
|
authenticationRequirement: string | null;
|
|
9584
9944
|
authenticationRequirementPolicies: authenticationRequirementPolicy[] | null;
|
|
9585
9945
|
clientAppUsed: string | null;
|
|
9946
|
+
clientSessionId: string | null;
|
|
9586
9947
|
conditionalAccessAudiences: string[] | null;
|
|
9587
9948
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
9588
9949
|
correlationId: string | null;
|
|
@@ -9812,6 +10173,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9812
10173
|
signInCount: int64 | null;
|
|
9813
10174
|
status: signInStatus | null;
|
|
9814
10175
|
tenantId: string | null;
|
|
10176
|
+
tokenIssuerType: tokenIssuerType;
|
|
9815
10177
|
userPrincipalName: string | null;
|
|
9816
10178
|
}
|
|
9817
10179
|
|
|
@@ -10113,6 +10475,13 @@ namespace reference.`microsoft.graph` {
|
|
|
10113
10475
|
servicePrincipalRestrictions: appManagementServicePrincipalConfiguration | null;
|
|
10114
10476
|
}
|
|
10115
10477
|
|
|
10478
|
+
@entity model tenantDataSecurityAndGovernance extends dataSecurityAndGovernance {
|
|
10479
|
+
@contains protectionScopes: tenantProtectionScopeContainer;
|
|
10480
|
+
}
|
|
10481
|
+
|
|
10482
|
+
@entity model tenantProtectionScopeContainer extends entity {
|
|
10483
|
+
}
|
|
10484
|
+
|
|
10116
10485
|
@entity model tenantRelationship extends MsGraph.SharedModels.entity {
|
|
10117
10486
|
}
|
|
10118
10487
|
|
|
@@ -10495,6 +10864,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10495
10864
|
identities: objectIdentity[] | null;
|
|
10496
10865
|
identityParentId: string | null;
|
|
10497
10866
|
imAddresses: string[] | null;
|
|
10867
|
+
infoCatalogs: string[];
|
|
10498
10868
|
interests: string[] | null;
|
|
10499
10869
|
isManagementRestricted: boolean | null;
|
|
10500
10870
|
isResourceAccount: boolean | null;
|
|
@@ -10557,6 +10927,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10557
10927
|
@contains contactFolders: contactFolder[];
|
|
10558
10928
|
@contains contacts: contact[];
|
|
10559
10929
|
@references createdObjects: directoryObject[];
|
|
10930
|
+
@contains dataSecurityAndGovernance: userDataSecurityAndGovernance | null;
|
|
10560
10931
|
@references directReports: directoryObject[];
|
|
10561
10932
|
@contains drive: drive | null;
|
|
10562
10933
|
@contains drives: drive[];
|
|
@@ -10622,6 +10993,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10622
10993
|
userPrincipalName: string;
|
|
10623
10994
|
}
|
|
10624
10995
|
|
|
10996
|
+
@entity model userDataSecurityAndGovernance extends dataSecurityAndGovernance {
|
|
10997
|
+
@contains activities: activitiesContainer | null;
|
|
10998
|
+
@contains protectionScopes: userProtectionScopeContainer | null;
|
|
10999
|
+
}
|
|
11000
|
+
|
|
10625
11001
|
@entity model userEventsSummary extends entity {
|
|
10626
11002
|
authMethod: usageAuthMethod;
|
|
10627
11003
|
eventDateTime: offsetDateTime;
|
|
@@ -10650,6 +11026,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10650
11026
|
passwordResetsSelfServiceCount: int64 | null;
|
|
10651
11027
|
}
|
|
10652
11028
|
|
|
11029
|
+
@entity model userProtectionScopeContainer extends entity {
|
|
11030
|
+
}
|
|
11031
|
+
|
|
10653
11032
|
@entity model userRegistrationActivitySummary extends entity {
|
|
10654
11033
|
authMethod: usageAuthMethod;
|
|
10655
11034
|
failureActivityCount: int64;
|
|
@@ -11114,10 +11493,23 @@ namespace reference.`microsoft.graph` {
|
|
|
11114
11493
|
allowedPolicyOIDs: string[];
|
|
11115
11494
|
}
|
|
11116
11495
|
|
|
11117
|
-
enum
|
|
11118
|
-
|
|
11119
|
-
|
|
11120
|
-
unknownFutureValue:
|
|
11496
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
11497
|
+
target: 1,
|
|
11498
|
+
createdBy: 2,
|
|
11499
|
+
unknownFutureValue: 99,
|
|
11500
|
+
}
|
|
11501
|
+
|
|
11502
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
11503
|
+
target: 1,
|
|
11504
|
+
createdBy: 2,
|
|
11505
|
+
approver: 3,
|
|
11506
|
+
unknownFutureValue: 99,
|
|
11507
|
+
}
|
|
11508
|
+
|
|
11509
|
+
enum accessPackageCustomExtensionHandlerStatus {
|
|
11510
|
+
requestSent: 1,
|
|
11511
|
+
requestReceived: 2,
|
|
11512
|
+
unknownFutureValue: 3,
|
|
11121
11513
|
}
|
|
11122
11514
|
|
|
11123
11515
|
enum accessPackageCustomExtensionStage {
|
|
@@ -11130,6 +11522,18 @@ namespace reference.`microsoft.graph` {
|
|
|
11130
11522
|
unknownFutureValue: 7,
|
|
11131
11523
|
}
|
|
11132
11524
|
|
|
11525
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
11526
|
+
allowedRequestor: 1,
|
|
11527
|
+
unknownFutureValue: 99,
|
|
11528
|
+
}
|
|
11529
|
+
|
|
11530
|
+
enum accessPackageSubjectLifecycle {
|
|
11531
|
+
notDefined: 0,
|
|
11532
|
+
notGoverned: 1,
|
|
11533
|
+
governed: 2,
|
|
11534
|
+
unknownFutureValue: 3,
|
|
11535
|
+
}
|
|
11536
|
+
|
|
11133
11537
|
enum accessReviewHistoryDecisionFilter {
|
|
11134
11538
|
approve: 0,
|
|
11135
11539
|
deny: 1,
|
|
@@ -11174,12 +11578,6 @@ namespace reference.`microsoft.graph` {
|
|
|
11174
11578
|
unknownFutureValue: 99,
|
|
11175
11579
|
}
|
|
11176
11580
|
|
|
11177
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11178
|
-
enum accessScope {
|
|
11179
|
-
inOrganization: 0,
|
|
11180
|
-
notInOrganization: 1,
|
|
11181
|
-
}
|
|
11182
|
-
|
|
11183
11581
|
enum actionType {
|
|
11184
11582
|
tunnel: 0,
|
|
11185
11583
|
exclude: 1,
|
|
@@ -11423,6 +11821,14 @@ namespace reference.`microsoft.graph` {
|
|
|
11423
11821
|
DateTime: 5,
|
|
11424
11822
|
}
|
|
11425
11823
|
|
|
11824
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11825
|
+
enum auditLogRecordType {
|
|
11826
|
+
}
|
|
11827
|
+
|
|
11828
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11829
|
+
enum auditLogUserType {
|
|
11830
|
+
}
|
|
11831
|
+
|
|
11426
11832
|
enum authenticationAppAdminConfiguration {
|
|
11427
11833
|
notApplicable: 0,
|
|
11428
11834
|
enabled: 1,
|
|
@@ -11989,6 +12395,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11989
12395
|
unknownFutureValue: 4,
|
|
11990
12396
|
}
|
|
11991
12397
|
|
|
12398
|
+
enum connectedOrganizationState {
|
|
12399
|
+
configured: 0,
|
|
12400
|
+
proposed: 1,
|
|
12401
|
+
unknownFutureValue: 2,
|
|
12402
|
+
}
|
|
12403
|
+
|
|
11992
12404
|
enum connectionDirection {
|
|
11993
12405
|
`unknown`: 0,
|
|
11994
12406
|
inbound: 1,
|
|
@@ -12040,6 +12452,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12040
12452
|
unknownFutureValue: 6,
|
|
12041
12453
|
}
|
|
12042
12454
|
|
|
12455
|
+
enum contentProcessingErrorType {
|
|
12456
|
+
transient: 0,
|
|
12457
|
+
permanent: 1,
|
|
12458
|
+
unknownFutureValue: 2,
|
|
12459
|
+
}
|
|
12460
|
+
|
|
12043
12461
|
enum continuousAccessEvaluationMode {
|
|
12044
12462
|
strictEnforcement: 0,
|
|
12045
12463
|
disabled: 1,
|
|
@@ -12238,6 +12656,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12238
12656
|
restImmutableEntryId: 4,
|
|
12239
12657
|
}
|
|
12240
12658
|
|
|
12659
|
+
enum executionMode {
|
|
12660
|
+
evaluateInline: 1,
|
|
12661
|
+
evaluateOffline: 2,
|
|
12662
|
+
unknownFutureValue: 3,
|
|
12663
|
+
}
|
|
12664
|
+
|
|
12241
12665
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12242
12666
|
enum expirationPatternType {
|
|
12243
12667
|
notSpecified: 0,
|
|
@@ -12761,6 +13185,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12761
13185
|
Unsynchronized: 6,
|
|
12762
13186
|
}
|
|
12763
13187
|
|
|
13188
|
+
enum onlineMeetingForwarders {
|
|
13189
|
+
everyone: 0,
|
|
13190
|
+
organizer: 1,
|
|
13191
|
+
unknownFutureValue: 2,
|
|
13192
|
+
}
|
|
13193
|
+
|
|
12764
13194
|
enum onlineMeetingPresenters {
|
|
12765
13195
|
everyone: 0,
|
|
12766
13196
|
organization: 1,
|
|
@@ -12833,14 +13263,6 @@ namespace reference.`microsoft.graph` {
|
|
|
12833
13263
|
unknownFutureValue: 1,
|
|
12834
13264
|
}
|
|
12835
13265
|
|
|
12836
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12837
|
-
enum overrideOption {
|
|
12838
|
-
notAllowed: 0,
|
|
12839
|
-
allowFalsePositiveOverride: 1,
|
|
12840
|
-
allowWithJustification: 2,
|
|
12841
|
-
allowWithoutJustification: 4,
|
|
12842
|
-
}
|
|
12843
|
-
|
|
12844
13266
|
enum pageLayoutType {
|
|
12845
13267
|
microsoftReserved: 0,
|
|
12846
13268
|
article: 1,
|
|
@@ -13021,6 +13443,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13021
13443
|
approvalCompletion: 8,
|
|
13022
13444
|
}
|
|
13023
13445
|
|
|
13446
|
+
enum policyPivotProperty {
|
|
13447
|
+
none: 0,
|
|
13448
|
+
activity: 1,
|
|
13449
|
+
location: 2,
|
|
13450
|
+
unknownFutureValue: 3,
|
|
13451
|
+
}
|
|
13452
|
+
|
|
13024
13453
|
enum postType {
|
|
13025
13454
|
regular: 0,
|
|
13026
13455
|
quick: 1,
|
|
@@ -13080,6 +13509,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13080
13509
|
unknownFutureValue: 3,
|
|
13081
13510
|
}
|
|
13082
13511
|
|
|
13512
|
+
enum protectionScopeState {
|
|
13513
|
+
notModified: 0,
|
|
13514
|
+
modified: 1,
|
|
13515
|
+
unknownFutureValue: 2,
|
|
13516
|
+
}
|
|
13517
|
+
|
|
13083
13518
|
@graphFlags
|
|
13084
13519
|
enum protocolType {
|
|
13085
13520
|
none: 0,
|
|
@@ -13293,6 +13728,22 @@ namespace reference.`microsoft.graph` {
|
|
|
13293
13728
|
unknownFutureValue: 20,
|
|
13294
13729
|
}
|
|
13295
13730
|
|
|
13731
|
+
enum resourceAccessStatus {
|
|
13732
|
+
none: 0,
|
|
13733
|
+
failure: 1,
|
|
13734
|
+
success: 2,
|
|
13735
|
+
unknownFutureValue: 4,
|
|
13736
|
+
}
|
|
13737
|
+
|
|
13738
|
+
@graphFlags
|
|
13739
|
+
enum resourceAccessType {
|
|
13740
|
+
none: 0,
|
|
13741
|
+
read: 1,
|
|
13742
|
+
write: 2,
|
|
13743
|
+
create: 4,
|
|
13744
|
+
unknownFutureValue: 8,
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13296
13747
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13297
13748
|
enum responseType {
|
|
13298
13749
|
none: 0,
|
|
@@ -13339,6 +13790,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13339
13790
|
userChangedPasswordOnPremises: 15,
|
|
13340
13791
|
adminDismissedRiskForSignIn: 16,
|
|
13341
13792
|
adminConfirmedAccountSafe: 17,
|
|
13793
|
+
microsoftRevokedSessions: 18,
|
|
13342
13794
|
}
|
|
13343
13795
|
|
|
13344
13796
|
enum riskDetectionTimingType {
|
|
@@ -13543,12 +13995,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13543
13995
|
unknownFutureValue: 3,
|
|
13544
13996
|
}
|
|
13545
13997
|
|
|
13546
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13547
13998
|
@graphFlags
|
|
13548
13999
|
enum sensitivityLabelTarget {
|
|
13549
14000
|
email: 1,
|
|
13550
14001
|
site: 2,
|
|
13551
14002
|
unifiedGroup: 4,
|
|
14003
|
+
teamwork: 8,
|
|
14004
|
+
unknownFutureValue: 16,
|
|
13552
14005
|
}
|
|
13553
14006
|
|
|
13554
14007
|
enum sensorStatus {
|
|
@@ -14247,6 +14700,24 @@ namespace reference.`microsoft.graph` {
|
|
|
14247
14700
|
unknownFutureValue: 2,
|
|
14248
14701
|
}
|
|
14249
14702
|
|
|
14703
|
+
enum userActivityType {
|
|
14704
|
+
uploadText: 1,
|
|
14705
|
+
uploadFile: 2,
|
|
14706
|
+
downloadText: 3,
|
|
14707
|
+
downloadFile: 4,
|
|
14708
|
+
unknownFutureValue: 5,
|
|
14709
|
+
}
|
|
14710
|
+
|
|
14711
|
+
@graphFlags
|
|
14712
|
+
enum userActivityTypes {
|
|
14713
|
+
none: 0,
|
|
14714
|
+
uploadText: 1,
|
|
14715
|
+
uploadFile: 2,
|
|
14716
|
+
downloadText: 4,
|
|
14717
|
+
downloadFile: 8,
|
|
14718
|
+
unknownFutureValue: 16,
|
|
14719
|
+
}
|
|
14720
|
+
|
|
14250
14721
|
enum userDefaultAuthenticationMethod {
|
|
14251
14722
|
push: 0,
|
|
14252
14723
|
oath: 1,
|
|
@@ -14284,6 +14755,13 @@ namespace reference.`microsoft.graph` {
|
|
|
14284
14755
|
unknownFutureValue: 5,
|
|
14285
14756
|
}
|
|
14286
14757
|
|
|
14758
|
+
enum userScopeType {
|
|
14759
|
+
user: 1,
|
|
14760
|
+
group: 2,
|
|
14761
|
+
tenant: 3,
|
|
14762
|
+
unknownFutureValue: 4,
|
|
14763
|
+
}
|
|
14764
|
+
|
|
14287
14765
|
enum userSignInRecommendationScope {
|
|
14288
14766
|
tenant: 0,
|
|
14289
14767
|
application: 1,
|
|
@@ -14418,6 +14896,7 @@ namespace reference.`microsoft.graph.agentic` {
|
|
|
14418
14896
|
@publicNamespace("microsoft.graph.cloudlicensing")
|
|
14419
14897
|
namespace reference.`microsoft.graph.cloudLicensing` {
|
|
14420
14898
|
@complex model groupCloudLicensing {
|
|
14899
|
+
@references assignments: assignment[];
|
|
14421
14900
|
@contains usageRights: usageRight[];
|
|
14422
14901
|
}
|
|
14423
14902
|
|
|
@@ -14427,14 +14906,66 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
14427
14906
|
planName: string | null;
|
|
14428
14907
|
}
|
|
14429
14908
|
|
|
14909
|
+
@complex model subscription {
|
|
14910
|
+
nextLifecycleDate: offsetDateTime;
|
|
14911
|
+
startDate: offsetDateTime;
|
|
14912
|
+
state: subscriptionState;
|
|
14913
|
+
subscriptionId: string;
|
|
14914
|
+
tags: subscriptionTags;
|
|
14915
|
+
}
|
|
14916
|
+
|
|
14430
14917
|
@complex model userCloudLicensing {
|
|
14918
|
+
@references assignmentErrors: assignmentError[];
|
|
14919
|
+
@references assignments: assignment[];
|
|
14431
14920
|
@contains usageRights: usageRight[];
|
|
14921
|
+
@references waitingMembers: waitingMember[];
|
|
14922
|
+
}
|
|
14923
|
+
|
|
14924
|
+
@entity model adminCloudLicensing extends reference.`microsoft.graph`.entity {
|
|
14925
|
+
@contains allotments: allotment[];
|
|
14926
|
+
@contains assignmentErrors: assignmentError[];
|
|
14927
|
+
@contains assignments: assignment[];
|
|
14928
|
+
}
|
|
14929
|
+
|
|
14930
|
+
@entity model allotment extends reference.`microsoft.graph`.entity {
|
|
14931
|
+
allottedUnits: int32;
|
|
14932
|
+
assignableTo: assigneeTypes;
|
|
14933
|
+
consumedUnits: int32;
|
|
14934
|
+
services: service[];
|
|
14935
|
+
skuId: guid | null;
|
|
14936
|
+
skuPartNumber: string | null;
|
|
14937
|
+
subscriptions: subscription[];
|
|
14938
|
+
@references assignments: assignment[];
|
|
14939
|
+
@references waitingMembers: waitingMember[];
|
|
14940
|
+
}
|
|
14941
|
+
|
|
14942
|
+
@entity model assignment extends reference.`microsoft.graph`.entity {
|
|
14943
|
+
disabledServicePlanIds: guid;
|
|
14944
|
+
@references allotment: allotment | null;
|
|
14945
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14946
|
+
}
|
|
14947
|
+
|
|
14948
|
+
@entity model assignmentError extends reference.`microsoft.graph`.entity {
|
|
14949
|
+
code: string;
|
|
14950
|
+
message: string;
|
|
14951
|
+
occurrenceDateTime: offsetDateTime;
|
|
14952
|
+
skuId: guid | null;
|
|
14953
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14954
|
+
@references usageRight: usageRight | null;
|
|
14432
14955
|
}
|
|
14433
14956
|
|
|
14434
14957
|
@entity model usageRight extends reference.`microsoft.graph`.entity {
|
|
14435
14958
|
services: service[];
|
|
14436
14959
|
skuId: guid | null;
|
|
14437
14960
|
skuPartNumber: string | null;
|
|
14961
|
+
@references allotments: allotment[];
|
|
14962
|
+
@references assignments: assignment[];
|
|
14963
|
+
}
|
|
14964
|
+
|
|
14965
|
+
@entity model waitingMember extends reference.`microsoft.graph`.entity {
|
|
14966
|
+
waitingSinceDateTime: offsetDateTime;
|
|
14967
|
+
@references allotment: allotment;
|
|
14968
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14438
14969
|
}
|
|
14439
14970
|
|
|
14440
14971
|
@graphFlags
|
|
@@ -14446,6 +14977,22 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
14446
14977
|
unknownFutureValue: 8,
|
|
14447
14978
|
}
|
|
14448
14979
|
|
|
14980
|
+
enum subscriptionState {
|
|
14981
|
+
active: 1,
|
|
14982
|
+
warning: 2,
|
|
14983
|
+
suspended: 3,
|
|
14984
|
+
lockedOut: 4,
|
|
14985
|
+
deleted: 5,
|
|
14986
|
+
unknownFutureValue: 6,
|
|
14987
|
+
}
|
|
14988
|
+
|
|
14989
|
+
@graphFlags
|
|
14990
|
+
enum subscriptionTags {
|
|
14991
|
+
none: 0,
|
|
14992
|
+
trial: 1,
|
|
14993
|
+
unknownFutureValue: 2,
|
|
14994
|
+
}
|
|
14995
|
+
|
|
14449
14996
|
}
|
|
14450
14997
|
@privatePreviewDefinition("organizationalUnit", "2025-08-12", "2025-11-30", "<theOwner>")
|
|
14451
14998
|
@publicNamespace("microsoft.graph.identitygovernance")
|
|
@@ -14477,6 +15024,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14477
15024
|
triggerAttributes: triggerAttribute[];
|
|
14478
15025
|
}
|
|
14479
15026
|
|
|
15027
|
+
@complex model attributeSetEntry {
|
|
15028
|
+
name: string;
|
|
15029
|
+
value: string | null;
|
|
15030
|
+
}
|
|
15031
|
+
|
|
15032
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
15033
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
15034
|
+
statusReasons: string[];
|
|
15035
|
+
subject: workflowSubject | null;
|
|
15036
|
+
}
|
|
15037
|
+
|
|
14480
15038
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
14481
15039
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
14482
15040
|
}
|
|
@@ -14486,12 +15044,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14486
15044
|
}
|
|
14487
15045
|
|
|
14488
15046
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
15047
|
+
targetSubject: workflowSubject | null;
|
|
14489
15048
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
14490
15049
|
@references task: task | null;
|
|
14491
15050
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
14492
15051
|
@references workflow: workflow | null;
|
|
14493
15052
|
}
|
|
14494
15053
|
|
|
15054
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
15055
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
15056
|
+
statusReasons: string[];
|
|
15057
|
+
targetSubject: workflowSubject | null;
|
|
15058
|
+
}
|
|
15059
|
+
|
|
14495
15060
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
14496
15061
|
@references groups: reference.`microsoft.graph`.group[];
|
|
14497
15062
|
}
|
|
@@ -14516,6 +15081,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14516
15081
|
taskId: string;
|
|
14517
15082
|
}
|
|
14518
15083
|
|
|
15084
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
15085
|
+
}
|
|
15086
|
+
|
|
15087
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
15088
|
+
attributeSetEntries: attributeSetEntry[];
|
|
15089
|
+
id: string;
|
|
15090
|
+
}
|
|
15091
|
+
|
|
14519
15092
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
14520
15093
|
rule: string;
|
|
14521
15094
|
}
|
|
@@ -14626,10 +15199,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14626
15199
|
totalUsers: int32;
|
|
14627
15200
|
}
|
|
14628
15201
|
|
|
15202
|
+
@abstract
|
|
15203
|
+
@complex model workflowSubject {
|
|
15204
|
+
}
|
|
15205
|
+
|
|
14629
15206
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
14630
15207
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
14631
15208
|
@computed createdDateTime: offsetDateTime | null;
|
|
14632
15209
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15210
|
+
replyMode: customTaskExtensionReplyMode;
|
|
14633
15211
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
14634
15212
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
14635
15213
|
}
|
|
@@ -14667,10 +15245,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14667
15245
|
totalUsersCount: int32;
|
|
14668
15246
|
workflowExecutionType: workflowExecutionType;
|
|
14669
15247
|
@references reprocessedRuns: run[];
|
|
15248
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
14670
15249
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
14671
15250
|
@contains userProcessingResults: userProcessingResult[];
|
|
14672
15251
|
}
|
|
14673
15252
|
|
|
15253
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
15254
|
+
completedDateTime: offsetDateTime | null;
|
|
15255
|
+
failedTasksCount: int32;
|
|
15256
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
15257
|
+
scheduledDateTime: offsetDateTime;
|
|
15258
|
+
startedDateTime: offsetDateTime | null;
|
|
15259
|
+
subject: workflowSubject;
|
|
15260
|
+
totalTasksCount: int32;
|
|
15261
|
+
totalUnprocessedTasksCount: int32;
|
|
15262
|
+
workflowExecutionType: workflowExecutionType;
|
|
15263
|
+
workflowVersion: int32;
|
|
15264
|
+
@references reprocessedRuns: run[];
|
|
15265
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
15266
|
+
}
|
|
15267
|
+
|
|
14674
15268
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
14675
15269
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
14676
15270
|
category: lifecycleTaskCategory;
|
|
@@ -14698,6 +15292,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14698
15292
|
failureReason: string | null;
|
|
14699
15293
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
14700
15294
|
startedDateTime: offsetDateTime | null;
|
|
15295
|
+
workflowSubject: workflowSubject | null;
|
|
14701
15296
|
@references subject: reference.`microsoft.graph`.user;
|
|
14702
15297
|
@references task: task;
|
|
14703
15298
|
}
|
|
@@ -14742,6 +15337,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14742
15337
|
@privatePreview("organizationalUnit")
|
|
14743
15338
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
14744
15339
|
@contains runs: run[];
|
|
15340
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
14745
15341
|
@contains taskReports: taskReport[];
|
|
14746
15342
|
@contains userProcessingResults: userProcessingResult[];
|
|
14747
15343
|
@contains versions: workflowVersion[];
|
|
@@ -14793,12 +15389,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14793
15389
|
unknownFutureValue: 2,
|
|
14794
15390
|
}
|
|
14795
15391
|
|
|
15392
|
+
enum customTaskExtensionReplyMode {
|
|
15393
|
+
none: 0,
|
|
15394
|
+
callback: 1,
|
|
15395
|
+
response: 2,
|
|
15396
|
+
unknownFutureValue: 3,
|
|
15397
|
+
}
|
|
15398
|
+
|
|
14796
15399
|
@graphFlags
|
|
14797
15400
|
enum lifecycleTaskCategory {
|
|
14798
15401
|
joiner: 1,
|
|
14799
15402
|
leaver: 2,
|
|
14800
15403
|
unknownFutureValue: 4,
|
|
14801
15404
|
mover: 8,
|
|
15405
|
+
extensibility: 16,
|
|
14802
15406
|
}
|
|
14803
15407
|
|
|
14804
15408
|
enum lifecycleWorkflowCategory {
|
|
@@ -14806,6 +15410,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14806
15410
|
leaver: 1,
|
|
14807
15411
|
unknownFutureValue: 2,
|
|
14808
15412
|
mover: 3,
|
|
15413
|
+
extensibility: 4,
|
|
14809
15414
|
}
|
|
14810
15415
|
|
|
14811
15416
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -14839,6 +15444,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14839
15444
|
activatedWithScope: 3,
|
|
14840
15445
|
@privatePreview("organizationalUnit")
|
|
14841
15446
|
preview: 4,
|
|
15447
|
+
extensibilityOnDemand: 5,
|
|
14842
15448
|
}
|
|
14843
15449
|
|
|
14844
15450
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -14849,6 +15455,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14849
15455
|
}
|
|
14850
15456
|
|
|
14851
15457
|
}
|
|
15458
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
15459
|
+
@deprecatedDefinition("azureBlobContainer", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobContainer will be deprecated on April 30, 2023.")
|
|
15460
|
+
@deprecatedDefinition("azureBlobToken", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobToken will be deprecated on April 30, 2023.")
|
|
15461
|
+
@deprecatedDefinition("outputFolderId", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The outputFolderId will be deprecated on April 30, 2023.")
|
|
15462
|
+
@deprecatedDefinition("fileInfo", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The fileInfo will be deprecated on April 30, 2023.")
|
|
14852
15463
|
@publicNamespace("microsoft.graph.security")
|
|
14853
15464
|
namespace reference.`microsoft.graph.security` {
|
|
14854
15465
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -15045,6 +15656,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15045
15656
|
emailAddress: string | null;
|
|
15046
15657
|
}
|
|
15047
15658
|
|
|
15659
|
+
@complex model eventPropagationResult {
|
|
15660
|
+
location: string | null;
|
|
15661
|
+
serviceName: string | null;
|
|
15662
|
+
status: eventPropagationStatus | null;
|
|
15663
|
+
statusInformation: string | null;
|
|
15664
|
+
}
|
|
15665
|
+
|
|
15666
|
+
@complex model eventQuery {
|
|
15667
|
+
query: string;
|
|
15668
|
+
queryType: queryType | null;
|
|
15669
|
+
}
|
|
15670
|
+
|
|
15048
15671
|
@complex model exportFileMetadata {
|
|
15049
15672
|
downloadUrl: string | null;
|
|
15050
15673
|
fileName: string | null;
|
|
@@ -15080,6 +15703,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15080
15703
|
value: string | null;
|
|
15081
15704
|
}
|
|
15082
15705
|
|
|
15706
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
15707
|
+
subcategory: filePlanSubcategory | null;
|
|
15708
|
+
}
|
|
15709
|
+
|
|
15710
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
15711
|
+
}
|
|
15712
|
+
|
|
15713
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
15714
|
+
citationJurisdiction: string | null;
|
|
15715
|
+
citationUrl: string | null;
|
|
15716
|
+
}
|
|
15717
|
+
|
|
15718
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
15719
|
+
}
|
|
15720
|
+
|
|
15721
|
+
@complex model filePlanDescriptorBase {
|
|
15722
|
+
displayName: string | null;
|
|
15723
|
+
}
|
|
15724
|
+
|
|
15725
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
15726
|
+
}
|
|
15727
|
+
|
|
15728
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
15729
|
+
}
|
|
15730
|
+
|
|
15083
15731
|
@complex model forceUserPasswordResetResponseAction extends responseAction {
|
|
15084
15732
|
identifier: forceUserPasswordResetEntityIdentifier;
|
|
15085
15733
|
}
|
|
@@ -15426,6 +16074,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15426
16074
|
identifier: deviceIdEntityIdentifier;
|
|
15427
16075
|
}
|
|
15428
16076
|
|
|
16077
|
+
@abstract
|
|
16078
|
+
@complex model retentionDuration {
|
|
16079
|
+
}
|
|
16080
|
+
|
|
16081
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
16082
|
+
}
|
|
16083
|
+
|
|
16084
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
16085
|
+
days: int32 | null;
|
|
16086
|
+
}
|
|
16087
|
+
|
|
16088
|
+
@complex model retentionEventStatus {
|
|
16089
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
16090
|
+
status: eventStatusType | null;
|
|
16091
|
+
}
|
|
16092
|
+
|
|
15429
16093
|
@complex model ruleSchedule {
|
|
15430
16094
|
nextRunDateTime: offsetDateTime | null;
|
|
15431
16095
|
period: string;
|
|
@@ -15546,6 +16210,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15546
16210
|
displayName: string | null;
|
|
15547
16211
|
domainName: string | null;
|
|
15548
16212
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
16213
|
+
tenantId: string | null;
|
|
15549
16214
|
userPrincipalName: string | null;
|
|
15550
16215
|
userSid: string | null;
|
|
15551
16216
|
}
|
|
@@ -15568,6 +16233,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15568
16233
|
alertPolicyId: string | null;
|
|
15569
16234
|
alertWebUrl: string | null;
|
|
15570
16235
|
assignedTo: string | null;
|
|
16236
|
+
categories: string[] | null;
|
|
16237
|
+
|
|
16238
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
15571
16239
|
category: string | null;
|
|
15572
16240
|
classification: alertClassification | null;
|
|
15573
16241
|
comments: alertComment[] | null;
|
|
@@ -15598,6 +16266,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15598
16266
|
title: string | null;
|
|
15599
16267
|
}
|
|
15600
16268
|
|
|
16269
|
+
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
16270
|
+
}
|
|
16271
|
+
|
|
15601
16272
|
@abstract
|
|
15602
16273
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
15603
16274
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -15622,6 +16293,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15622
16293
|
@contains ediscoveryCases: ediscoveryCase[];
|
|
15623
16294
|
}
|
|
15624
16295
|
|
|
16296
|
+
@entity model categoryTemplate extends filePlanDescriptorTemplate {
|
|
16297
|
+
@contains subcategories: subcategoryTemplate[];
|
|
16298
|
+
}
|
|
16299
|
+
|
|
16300
|
+
@entity model citationTemplate extends filePlanDescriptorTemplate {
|
|
16301
|
+
citationJurisdiction: string | null;
|
|
16302
|
+
citationUrl: string | null;
|
|
16303
|
+
}
|
|
16304
|
+
|
|
15625
16305
|
@abstract
|
|
15626
16306
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
15627
16307
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -15648,6 +16328,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15648
16328
|
status: dataSourceContainerStatus | null;
|
|
15649
16329
|
}
|
|
15650
16330
|
|
|
16331
|
+
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
16332
|
+
}
|
|
16333
|
+
|
|
15651
16334
|
@entity model detectionRule extends protectionRule {
|
|
15652
16335
|
detectionAction: detectionAction | null;
|
|
15653
16336
|
detectorId: string | null;
|
|
@@ -15656,6 +16339,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15656
16339
|
schedule: ruleSchedule | null;
|
|
15657
16340
|
}
|
|
15658
16341
|
|
|
16342
|
+
@entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
|
|
16343
|
+
name: string | null;
|
|
16344
|
+
reviewersEmailAddresses: string[] | null;
|
|
16345
|
+
@computed @key stageNumber: string;
|
|
16346
|
+
}
|
|
16347
|
+
|
|
15659
16348
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
15660
16349
|
additionalDataOptions: additionalDataOptions | null;
|
|
15661
16350
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -15672,6 +16361,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15672
16361
|
externalId: string | null;
|
|
15673
16362
|
@contains caseMembers: ediscoveryCaseMember[];
|
|
15674
16363
|
@contains custodians: ediscoveryCustodian[];
|
|
16364
|
+
@contains legalHolds: ediscoveryHoldPolicy[];
|
|
15675
16365
|
@contains noncustodialDataSources: ediscoveryNoncustodialDataSource[];
|
|
15676
16366
|
@contains operations: caseOperation[];
|
|
15677
16367
|
@contains reviewSets: ediscoveryReviewSet[];
|
|
@@ -15716,18 +16406,40 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15716
16406
|
}
|
|
15717
16407
|
|
|
15718
16408
|
@entity model ediscoveryExportOperation extends caseOperation {
|
|
16409
|
+
|
|
16410
|
+
@graphDeprecated("azureBlobContainer")
|
|
16411
|
+
azureBlobContainer: string | null;
|
|
16412
|
+
|
|
16413
|
+
@graphDeprecated("azureBlobToken")
|
|
16414
|
+
azureBlobToken: string | null;
|
|
15719
16415
|
description: string | null;
|
|
15720
16416
|
exportFileMetadata: exportFileMetadata[] | null;
|
|
15721
16417
|
exportOptions: exportOptions | null;
|
|
15722
16418
|
exportStructure: exportFileStructure | null;
|
|
16419
|
+
|
|
16420
|
+
@graphDeprecated("outputFolderId")
|
|
16421
|
+
outputFolderId: string | null;
|
|
15723
16422
|
outputName: string | null;
|
|
15724
16423
|
@references reviewSet: ediscoveryReviewSet | null;
|
|
15725
16424
|
@references reviewSetQuery: ediscoveryReviewSetQuery | null;
|
|
15726
16425
|
}
|
|
15727
16426
|
|
|
16427
|
+
@entity model ediscoveryFile extends file {
|
|
16428
|
+
@references custodian: ediscoveryCustodian | null;
|
|
16429
|
+
@references tags: ediscoveryReviewTag[];
|
|
16430
|
+
}
|
|
16431
|
+
|
|
15728
16432
|
@entity model ediscoveryHoldOperation extends caseOperation {
|
|
15729
16433
|
}
|
|
15730
16434
|
|
|
16435
|
+
@entity model ediscoveryHoldPolicy extends policyBase {
|
|
16436
|
+
contentQuery: string | null;
|
|
16437
|
+
errors: string[] | null;
|
|
16438
|
+
isEnabled: boolean | null;
|
|
16439
|
+
@contains siteSources: siteSource[];
|
|
16440
|
+
@contains userSources: userSource[];
|
|
16441
|
+
}
|
|
16442
|
+
|
|
15731
16443
|
@entity model ediscoveryHoldPolicySyncOperation extends caseOperation {
|
|
15732
16444
|
reportFileMetadata: reportFileMetadata[] | null;
|
|
15733
16445
|
}
|
|
@@ -15741,9 +16453,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15741
16453
|
}
|
|
15742
16454
|
|
|
15743
16455
|
@entity model ediscoveryPurgeDataOperation extends caseOperation {
|
|
16456
|
+
reportFileMetadata: reportFileMetadata[] | null;
|
|
15744
16457
|
}
|
|
15745
16458
|
|
|
15746
16459
|
@entity model ediscoveryReviewSet extends dataSet {
|
|
16460
|
+
@contains files: ediscoveryFile[];
|
|
15747
16461
|
@contains queries: ediscoveryReviewSetQuery[];
|
|
15748
16462
|
}
|
|
15749
16463
|
|
|
@@ -15782,6 +16496,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15782
16496
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
15783
16497
|
}
|
|
15784
16498
|
|
|
16499
|
+
@entity model entityDefinitionInput extends MsGraph.SharedModels.entity {
|
|
16500
|
+
@computed @key entityIdentifier: string;
|
|
16501
|
+
entityType: manualAlertEntityType;
|
|
16502
|
+
identifierValue: string;
|
|
16503
|
+
role: entityDefinitionInputRole;
|
|
16504
|
+
}
|
|
16505
|
+
|
|
16506
|
+
@entity model file extends reference.`microsoft.graph`.entity {
|
|
16507
|
+
content: stream | null;
|
|
16508
|
+
dateTime: offsetDateTime | null;
|
|
16509
|
+
extension: string | null;
|
|
16510
|
+
extractedTextContent: stream | null;
|
|
16511
|
+
mediaType: string | null;
|
|
16512
|
+
name: string | null;
|
|
16513
|
+
otherProperties: stringValueDictionary | null;
|
|
16514
|
+
processingStatus: fileProcessingStatus | null;
|
|
16515
|
+
senderOrAuthors: string[] | null;
|
|
16516
|
+
size: int64 | null;
|
|
16517
|
+
sourceType: sourceType | null;
|
|
16518
|
+
subjectTitle: string | null;
|
|
16519
|
+
}
|
|
16520
|
+
|
|
16521
|
+
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
16522
|
+
authority: filePlanAuthority | null;
|
|
16523
|
+
category: filePlanAppliedCategory | null;
|
|
16524
|
+
citation: filePlanCitation | null;
|
|
16525
|
+
department: filePlanDepartment | null;
|
|
16526
|
+
filePlanReference: filePlanReference | null;
|
|
16527
|
+
@references authorityTemplate: authorityTemplate | null;
|
|
16528
|
+
@references categoryTemplate: categoryTemplate | null;
|
|
16529
|
+
@references citationTemplate: citationTemplate | null;
|
|
16530
|
+
@references departmentTemplate: departmentTemplate | null;
|
|
16531
|
+
@references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
|
|
16532
|
+
}
|
|
16533
|
+
|
|
16534
|
+
@entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
|
|
16535
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16536
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16537
|
+
displayName: string | null;
|
|
16538
|
+
}
|
|
16539
|
+
|
|
16540
|
+
@entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
|
|
16541
|
+
}
|
|
16542
|
+
|
|
15785
16543
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
15786
16544
|
assignedTo: string | null;
|
|
15787
16545
|
classification: alertClassification | null;
|
|
@@ -15806,6 +16564,33 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15806
16564
|
@references alerts: alert[];
|
|
15807
16565
|
}
|
|
15808
16566
|
|
|
16567
|
+
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
16568
|
+
@contains authorities: authorityTemplate[];
|
|
16569
|
+
@contains categories: categoryTemplate[];
|
|
16570
|
+
@contains citations: citationTemplate[];
|
|
16571
|
+
@contains departments: departmentTemplate[];
|
|
16572
|
+
@contains filePlanReferences: filePlanReferenceTemplate[];
|
|
16573
|
+
@contains retentionLabels: retentionLabel[];
|
|
16574
|
+
}
|
|
16575
|
+
|
|
16576
|
+
@entity model manualAlert extends alert {
|
|
16577
|
+
isExcludedFromCorrelation: boolean;
|
|
16578
|
+
linkToIncident: int64 | null;
|
|
16579
|
+
sentinelWorkspace: string | null;
|
|
16580
|
+
@contains entityDefinitions: entityDefinitionInput[];
|
|
16581
|
+
}
|
|
16582
|
+
|
|
16583
|
+
@abstract
|
|
16584
|
+
@entity model policyBase extends reference.`microsoft.graph`.entity {
|
|
16585
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16586
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16587
|
+
description: string | null;
|
|
16588
|
+
displayName: string | null;
|
|
16589
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16590
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16591
|
+
status: policyStatus | null;
|
|
16592
|
+
}
|
|
16593
|
+
|
|
15809
16594
|
@abstract
|
|
15810
16595
|
@entity model protectionRule extends reference.`microsoft.graph`.entity {
|
|
15811
16596
|
createdBy: string;
|
|
@@ -15816,6 +16601,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15816
16601
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
15817
16602
|
}
|
|
15818
16603
|
|
|
16604
|
+
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
16605
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16606
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16607
|
+
description: string | null;
|
|
16608
|
+
displayName: string | null;
|
|
16609
|
+
eventPropagationResults: eventPropagationResult[] | null;
|
|
16610
|
+
eventQueries: eventQuery[] | null;
|
|
16611
|
+
eventStatus: retentionEventStatus | null;
|
|
16612
|
+
eventTriggerDateTime: offsetDateTime | null;
|
|
16613
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16614
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16615
|
+
@computed lastStatusUpdateDateTime: offsetDateTime | null;
|
|
16616
|
+
@references retentionEventType: retentionEventType | null;
|
|
16617
|
+
}
|
|
16618
|
+
|
|
16619
|
+
@entity model retentionEventType extends reference.`microsoft.graph`.entity {
|
|
16620
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16621
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16622
|
+
description: string | null;
|
|
16623
|
+
displayName: string | null;
|
|
16624
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16625
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16626
|
+
}
|
|
16627
|
+
|
|
16628
|
+
@entity model retentionLabel extends reference.`microsoft.graph`.entity {
|
|
16629
|
+
actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
|
|
16630
|
+
behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
|
|
16631
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16632
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16633
|
+
defaultRecordBehavior: defaultRecordBehavior | null;
|
|
16634
|
+
descriptionForAdmins: string | null;
|
|
16635
|
+
descriptionForUsers: string | null;
|
|
16636
|
+
displayName: string | null;
|
|
16637
|
+
isInUse: boolean | null;
|
|
16638
|
+
labelToBeApplied: string | null;
|
|
16639
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16640
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16641
|
+
retentionDuration: retentionDuration | null;
|
|
16642
|
+
retentionTrigger: retentionTrigger | null;
|
|
16643
|
+
@contains descriptors: filePlanDescriptor | null;
|
|
16644
|
+
@contains dispositionReviewStages: dispositionReviewStage[];
|
|
16645
|
+
@references retentionEventType: retentionEventType | null;
|
|
16646
|
+
}
|
|
16647
|
+
|
|
15819
16648
|
@entity model rulesRoot extends reference.`microsoft.graph`.entity {
|
|
15820
16649
|
@contains detectionRules: detectionRule[];
|
|
15821
16650
|
}
|
|
@@ -15835,6 +16664,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15835
16664
|
@references site: reference.`microsoft.graph`.site;
|
|
15836
16665
|
}
|
|
15837
16666
|
|
|
16667
|
+
@entity model subcategoryTemplate extends filePlanDescriptorTemplate {
|
|
16668
|
+
}
|
|
16669
|
+
|
|
15838
16670
|
@abstract
|
|
15839
16671
|
@entity model tag extends reference.`microsoft.graph`.entity {
|
|
15840
16672
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -15843,6 +16675,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15843
16675
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15844
16676
|
}
|
|
15845
16677
|
|
|
16678
|
+
@entity model triggersRoot extends reference.`microsoft.graph`.entity {
|
|
16679
|
+
@contains retentionEvents: retentionEvent[];
|
|
16680
|
+
}
|
|
16681
|
+
|
|
16682
|
+
@entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
|
|
16683
|
+
@contains retentionEventTypes: retentionEventType[];
|
|
16684
|
+
}
|
|
16685
|
+
|
|
15846
16686
|
@entity model unifiedGroupSource extends dataSource {
|
|
15847
16687
|
includedSources: sourceType | null;
|
|
15848
16688
|
@references group: reference.`microsoft.graph`.group;
|
|
@@ -15854,6 +16694,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15854
16694
|
siteWebUrl: string | null;
|
|
15855
16695
|
}
|
|
15856
16696
|
|
|
16697
|
+
enum actionAfterRetentionPeriod {
|
|
16698
|
+
none: 0,
|
|
16699
|
+
delete: 1,
|
|
16700
|
+
startDispositionReview: 2,
|
|
16701
|
+
relabel: 3,
|
|
16702
|
+
unknownFutureValue: 4,
|
|
16703
|
+
}
|
|
16704
|
+
|
|
15857
16705
|
@graphFlags
|
|
15858
16706
|
enum additionalDataOptions {
|
|
15859
16707
|
allVersions: 1,
|
|
@@ -16055,6 +16903,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16055
16903
|
unknownFutureValue: 16,
|
|
16056
16904
|
}
|
|
16057
16905
|
|
|
16906
|
+
enum defaultRecordBehavior {
|
|
16907
|
+
startLocked: 0,
|
|
16908
|
+
startUnlocked: 1,
|
|
16909
|
+
unknownFutureValue: 2,
|
|
16910
|
+
}
|
|
16911
|
+
|
|
16058
16912
|
enum defenderAvStatus {
|
|
16059
16913
|
notReporting: 0,
|
|
16060
16914
|
disabled: 1,
|
|
@@ -16172,6 +17026,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16172
17026
|
unknownFutureValue: 4,
|
|
16173
17027
|
}
|
|
16174
17028
|
|
|
17029
|
+
enum entityDefinitionInputRole {
|
|
17030
|
+
impacted: 0,
|
|
17031
|
+
related: 1,
|
|
17032
|
+
unknownFutureValue: 99,
|
|
17033
|
+
}
|
|
17034
|
+
|
|
17035
|
+
enum eventPropagationStatus {
|
|
17036
|
+
none: 0,
|
|
17037
|
+
inProcessing: 1,
|
|
17038
|
+
failed: 2,
|
|
17039
|
+
success: 3,
|
|
17040
|
+
unknownFutureValue: 4,
|
|
17041
|
+
}
|
|
17042
|
+
|
|
17043
|
+
enum eventStatusType {
|
|
17044
|
+
pending: 0,
|
|
17045
|
+
error: 1,
|
|
17046
|
+
success: 2,
|
|
17047
|
+
notAvaliable: 3,
|
|
17048
|
+
unknownFutureValue: 4,
|
|
17049
|
+
}
|
|
17050
|
+
|
|
16175
17051
|
enum evidenceRemediationStatus {
|
|
16176
17052
|
none: 0,
|
|
16177
17053
|
remediated: 1,
|
|
@@ -16248,12 +17124,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16248
17124
|
originalFiles: 1,
|
|
16249
17125
|
text: 2,
|
|
16250
17126
|
pdfReplacement: 4,
|
|
17127
|
+
@graphDeprecated("fileInfo")
|
|
17128
|
+
fileInfo: 8,
|
|
16251
17129
|
tags: 16,
|
|
16252
|
-
unknownFutureValue:
|
|
16253
|
-
splitSource:
|
|
16254
|
-
includeFolderAndPath:
|
|
16255
|
-
friendlyName:
|
|
16256
|
-
condensePaths:
|
|
17130
|
+
unknownFutureValue: 64,
|
|
17131
|
+
splitSource: 128,
|
|
17132
|
+
includeFolderAndPath: 256,
|
|
17133
|
+
friendlyName: 512,
|
|
17134
|
+
condensePaths: 1024,
|
|
16257
17135
|
}
|
|
16258
17136
|
|
|
16259
17137
|
@graphFlags
|
|
@@ -16274,6 +17152,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16274
17152
|
unknownFutureValue: 5,
|
|
16275
17153
|
}
|
|
16276
17154
|
|
|
17155
|
+
enum fileProcessingStatus {
|
|
17156
|
+
success: 0,
|
|
17157
|
+
internalError: 1,
|
|
17158
|
+
unknownError: 2,
|
|
17159
|
+
processingTimeout: 3,
|
|
17160
|
+
invalidFileId: 4,
|
|
17161
|
+
fileSizeIsZero: 5,
|
|
17162
|
+
fileSizeIsTooLarge: 6,
|
|
17163
|
+
fileDepthLimitExceeded: 7,
|
|
17164
|
+
fileBodyIsTooLong: 8,
|
|
17165
|
+
fileTypeIsUnknown: 9,
|
|
17166
|
+
fileTypeIsNotSupported: 10,
|
|
17167
|
+
malformedFile: 11,
|
|
17168
|
+
protectedFile: 12,
|
|
17169
|
+
poisonFile: 13,
|
|
17170
|
+
noReviewSetSummaryGenerated: 14,
|
|
17171
|
+
extractionException: 15,
|
|
17172
|
+
ocrProcessingTimeout: 16,
|
|
17173
|
+
ocrFileSizeExceedsLimit: 17,
|
|
17174
|
+
unknownFutureValue: 18,
|
|
17175
|
+
}
|
|
17176
|
+
|
|
16277
17177
|
@graphFlags
|
|
16278
17178
|
enum forceUserPasswordResetEntityIdentifier {
|
|
16279
17179
|
accountSid: 1,
|
|
@@ -16382,6 +17282,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16382
17282
|
unknownFutureValue: 31,
|
|
16383
17283
|
}
|
|
16384
17284
|
|
|
17285
|
+
enum manualAlertEntityType {
|
|
17286
|
+
user: 0,
|
|
17287
|
+
device: 1,
|
|
17288
|
+
file: 2,
|
|
17289
|
+
ip: 3,
|
|
17290
|
+
url: 4,
|
|
17291
|
+
cloudApplication: 5,
|
|
17292
|
+
mailbox: 6,
|
|
17293
|
+
securityGroup: 7,
|
|
17294
|
+
azureResource: 8,
|
|
17295
|
+
amazonResource: 9,
|
|
17296
|
+
googleCloudResource: 10,
|
|
17297
|
+
oAuthApplication: 11,
|
|
17298
|
+
emailMessage: 12,
|
|
17299
|
+
emailCluster: 13,
|
|
17300
|
+
process: 14,
|
|
17301
|
+
registryKey: 15,
|
|
17302
|
+
registryValue: 16,
|
|
17303
|
+
unknownFutureValue: 99,
|
|
17304
|
+
}
|
|
17305
|
+
|
|
16385
17306
|
@graphFlags
|
|
16386
17307
|
enum markUserAsCompromisedEntityIdentifier {
|
|
16387
17308
|
accountObjectId: 1,
|
|
@@ -16399,6 +17320,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16399
17320
|
unknownFutureValue: 31,
|
|
16400
17321
|
}
|
|
16401
17322
|
|
|
17323
|
+
enum policyStatus {
|
|
17324
|
+
pending: 0,
|
|
17325
|
+
error: 1,
|
|
17326
|
+
success: 2,
|
|
17327
|
+
unknownFutureValue: 3,
|
|
17328
|
+
}
|
|
17329
|
+
|
|
16402
17330
|
enum protocolType {
|
|
16403
17331
|
tcp: 0,
|
|
16404
17332
|
udp: 1,
|
|
@@ -16418,6 +17346,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16418
17346
|
permanentlyDelete: 2,
|
|
16419
17347
|
}
|
|
16420
17348
|
|
|
17349
|
+
enum queryType {
|
|
17350
|
+
files: 0,
|
|
17351
|
+
messages: 1,
|
|
17352
|
+
unknownFutureValue: 2,
|
|
17353
|
+
}
|
|
17354
|
+
|
|
16421
17355
|
@graphFlags
|
|
16422
17356
|
enum recipientType {
|
|
16423
17357
|
user: 1,
|
|
@@ -16425,6 +17359,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16425
17359
|
unknownFutureValue: 4,
|
|
16426
17360
|
}
|
|
16427
17361
|
|
|
17362
|
+
enum retentionTrigger {
|
|
17363
|
+
dateLabeled: 0,
|
|
17364
|
+
dateCreated: 1,
|
|
17365
|
+
dateModified: 2,
|
|
17366
|
+
dateOfEvent: 3,
|
|
17367
|
+
unknownFutureValue: 4,
|
|
17368
|
+
}
|
|
17369
|
+
|
|
16428
17370
|
@graphFlags
|
|
16429
17371
|
enum reviewSetSettings {
|
|
16430
17372
|
none: 0,
|
|
@@ -16459,6 +17401,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16459
17401
|
microsoftDefenderForCloud: 256,
|
|
16460
17402
|
microsoftSentinel: 512,
|
|
16461
17403
|
microsoftInsiderRiskManagement: 1024,
|
|
17404
|
+
microsoftSecurityForAI: 4096,
|
|
16462
17405
|
}
|
|
16463
17406
|
|
|
16464
17407
|
@graphFlags
|