@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +2222 -51
- package/lib/Bleu/V1.0/main.tsp +2203 -51
- package/lib/Delos/Beta/main.tsp +1721 -49
- package/lib/Delos/V1.0/main.tsp +308 -20
- package/lib/Fairfax/Beta/main.tsp +704 -60
- package/lib/Fairfax/V1.0/main.tsp +304 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +195 -0
- package/lib/Mooncake/Beta/main.tsp +653 -50
- package/lib/Mooncake/V1.0/main.tsp +171 -20
- package/lib/Prod/Beta/main.tsp +3553 -216
- package/lib/Prod/V1.0/main.tsp +979 -26
- package/lib/USNat/Beta/main.tsp +301 -37
- package/lib/USNat/V1.0/main.tsp +399 -3
- package/lib/USSec/Beta/main.tsp +700 -65
- package/lib/USSec/V1.0/main.tsp +702 -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,6 +9546,7 @@ 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[];
|
|
9196
9551
|
@contains rules: reference.`microsoft.graph.security`.rulesRoot | null;
|
|
9197
9552
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
@@ -9201,6 +9556,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9201
9556
|
@entity model sensitiveType extends entity {
|
|
9202
9557
|
classificationMethod: classificationMethod | null;
|
|
9203
9558
|
description: string | null;
|
|
9559
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
9204
9560
|
name: string | null;
|
|
9205
9561
|
publisherName: string | null;
|
|
9206
9562
|
rulePackageId: string | null;
|
|
@@ -9317,6 +9673,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9317
9673
|
errorUrl: string | null;
|
|
9318
9674
|
homepage: string | null;
|
|
9319
9675
|
info: informationalUrl | null;
|
|
9676
|
+
isDisabled: boolean | null;
|
|
9320
9677
|
keyCredentials: keyCredential[];
|
|
9321
9678
|
loginUrl: string | null;
|
|
9322
9679
|
logoutUrl: string | null;
|
|
@@ -9583,6 +9940,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9583
9940
|
authenticationRequirement: string | null;
|
|
9584
9941
|
authenticationRequirementPolicies: authenticationRequirementPolicy[] | null;
|
|
9585
9942
|
clientAppUsed: string | null;
|
|
9943
|
+
clientSessionId: string | null;
|
|
9586
9944
|
conditionalAccessAudiences: string[] | null;
|
|
9587
9945
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
9588
9946
|
correlationId: string | null;
|
|
@@ -9812,6 +10170,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9812
10170
|
signInCount: int64 | null;
|
|
9813
10171
|
status: signInStatus | null;
|
|
9814
10172
|
tenantId: string | null;
|
|
10173
|
+
tokenIssuerType: tokenIssuerType;
|
|
9815
10174
|
userPrincipalName: string | null;
|
|
9816
10175
|
}
|
|
9817
10176
|
|
|
@@ -10113,6 +10472,13 @@ namespace reference.`microsoft.graph` {
|
|
|
10113
10472
|
servicePrincipalRestrictions: appManagementServicePrincipalConfiguration | null;
|
|
10114
10473
|
}
|
|
10115
10474
|
|
|
10475
|
+
@entity model tenantDataSecurityAndGovernance extends dataSecurityAndGovernance {
|
|
10476
|
+
@contains protectionScopes: tenantProtectionScopeContainer;
|
|
10477
|
+
}
|
|
10478
|
+
|
|
10479
|
+
@entity model tenantProtectionScopeContainer extends entity {
|
|
10480
|
+
}
|
|
10481
|
+
|
|
10116
10482
|
@entity model tenantRelationship extends MsGraph.SharedModels.entity {
|
|
10117
10483
|
}
|
|
10118
10484
|
|
|
@@ -10495,6 +10861,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10495
10861
|
identities: objectIdentity[] | null;
|
|
10496
10862
|
identityParentId: string | null;
|
|
10497
10863
|
imAddresses: string[] | null;
|
|
10864
|
+
infoCatalogs: string[];
|
|
10498
10865
|
interests: string[] | null;
|
|
10499
10866
|
isManagementRestricted: boolean | null;
|
|
10500
10867
|
isResourceAccount: boolean | null;
|
|
@@ -10557,6 +10924,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10557
10924
|
@contains contactFolders: contactFolder[];
|
|
10558
10925
|
@contains contacts: contact[];
|
|
10559
10926
|
@references createdObjects: directoryObject[];
|
|
10927
|
+
@contains dataSecurityAndGovernance: userDataSecurityAndGovernance | null;
|
|
10560
10928
|
@references directReports: directoryObject[];
|
|
10561
10929
|
@contains drive: drive | null;
|
|
10562
10930
|
@contains drives: drive[];
|
|
@@ -10622,6 +10990,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10622
10990
|
userPrincipalName: string;
|
|
10623
10991
|
}
|
|
10624
10992
|
|
|
10993
|
+
@entity model userDataSecurityAndGovernance extends dataSecurityAndGovernance {
|
|
10994
|
+
@contains activities: activitiesContainer | null;
|
|
10995
|
+
@contains protectionScopes: userProtectionScopeContainer | null;
|
|
10996
|
+
}
|
|
10997
|
+
|
|
10625
10998
|
@entity model userEventsSummary extends entity {
|
|
10626
10999
|
authMethod: usageAuthMethod;
|
|
10627
11000
|
eventDateTime: offsetDateTime;
|
|
@@ -10650,6 +11023,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10650
11023
|
passwordResetsSelfServiceCount: int64 | null;
|
|
10651
11024
|
}
|
|
10652
11025
|
|
|
11026
|
+
@entity model userProtectionScopeContainer extends entity {
|
|
11027
|
+
}
|
|
11028
|
+
|
|
10653
11029
|
@entity model userRegistrationActivitySummary extends entity {
|
|
10654
11030
|
authMethod: usageAuthMethod;
|
|
10655
11031
|
failureActivityCount: int64;
|
|
@@ -11114,6 +11490,19 @@ namespace reference.`microsoft.graph` {
|
|
|
11114
11490
|
allowedPolicyOIDs: string[];
|
|
11115
11491
|
}
|
|
11116
11492
|
|
|
11493
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
11494
|
+
target: 1,
|
|
11495
|
+
createdBy: 2,
|
|
11496
|
+
unknownFutureValue: 99,
|
|
11497
|
+
}
|
|
11498
|
+
|
|
11499
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
11500
|
+
target: 1,
|
|
11501
|
+
createdBy: 2,
|
|
11502
|
+
approver: 3,
|
|
11503
|
+
unknownFutureValue: 99,
|
|
11504
|
+
}
|
|
11505
|
+
|
|
11117
11506
|
enum accessPackageCustomExtensionHandlerStatus {
|
|
11118
11507
|
requestSent: 1,
|
|
11119
11508
|
requestReceived: 2,
|
|
@@ -11130,6 +11519,18 @@ namespace reference.`microsoft.graph` {
|
|
|
11130
11519
|
unknownFutureValue: 7,
|
|
11131
11520
|
}
|
|
11132
11521
|
|
|
11522
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
11523
|
+
allowedRequestor: 1,
|
|
11524
|
+
unknownFutureValue: 99,
|
|
11525
|
+
}
|
|
11526
|
+
|
|
11527
|
+
enum accessPackageSubjectLifecycle {
|
|
11528
|
+
notDefined: 0,
|
|
11529
|
+
notGoverned: 1,
|
|
11530
|
+
governed: 2,
|
|
11531
|
+
unknownFutureValue: 3,
|
|
11532
|
+
}
|
|
11533
|
+
|
|
11133
11534
|
enum accessReviewHistoryDecisionFilter {
|
|
11134
11535
|
approve: 0,
|
|
11135
11536
|
deny: 1,
|
|
@@ -11174,12 +11575,6 @@ namespace reference.`microsoft.graph` {
|
|
|
11174
11575
|
unknownFutureValue: 99,
|
|
11175
11576
|
}
|
|
11176
11577
|
|
|
11177
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11178
|
-
enum accessScope {
|
|
11179
|
-
inOrganization: 0,
|
|
11180
|
-
notInOrganization: 1,
|
|
11181
|
-
}
|
|
11182
|
-
|
|
11183
11578
|
enum actionType {
|
|
11184
11579
|
tunnel: 0,
|
|
11185
11580
|
exclude: 1,
|
|
@@ -11423,6 +11818,14 @@ namespace reference.`microsoft.graph` {
|
|
|
11423
11818
|
DateTime: 5,
|
|
11424
11819
|
}
|
|
11425
11820
|
|
|
11821
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11822
|
+
enum auditLogRecordType {
|
|
11823
|
+
}
|
|
11824
|
+
|
|
11825
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11826
|
+
enum auditLogUserType {
|
|
11827
|
+
}
|
|
11828
|
+
|
|
11426
11829
|
enum authenticationAppAdminConfiguration {
|
|
11427
11830
|
notApplicable: 0,
|
|
11428
11831
|
enabled: 1,
|
|
@@ -11989,6 +12392,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11989
12392
|
unknownFutureValue: 4,
|
|
11990
12393
|
}
|
|
11991
12394
|
|
|
12395
|
+
enum connectedOrganizationState {
|
|
12396
|
+
configured: 0,
|
|
12397
|
+
proposed: 1,
|
|
12398
|
+
unknownFutureValue: 2,
|
|
12399
|
+
}
|
|
12400
|
+
|
|
11992
12401
|
enum connectionDirection {
|
|
11993
12402
|
`unknown`: 0,
|
|
11994
12403
|
inbound: 1,
|
|
@@ -12040,6 +12449,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12040
12449
|
unknownFutureValue: 6,
|
|
12041
12450
|
}
|
|
12042
12451
|
|
|
12452
|
+
enum contentProcessingErrorType {
|
|
12453
|
+
transient: 0,
|
|
12454
|
+
permanent: 1,
|
|
12455
|
+
unknownFutureValue: 2,
|
|
12456
|
+
}
|
|
12457
|
+
|
|
12043
12458
|
enum continuousAccessEvaluationMode {
|
|
12044
12459
|
strictEnforcement: 0,
|
|
12045
12460
|
disabled: 1,
|
|
@@ -12238,6 +12653,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12238
12653
|
restImmutableEntryId: 4,
|
|
12239
12654
|
}
|
|
12240
12655
|
|
|
12656
|
+
enum executionMode {
|
|
12657
|
+
evaluateInline: 1,
|
|
12658
|
+
evaluateOffline: 2,
|
|
12659
|
+
unknownFutureValue: 3,
|
|
12660
|
+
}
|
|
12661
|
+
|
|
12241
12662
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12242
12663
|
enum expirationPatternType {
|
|
12243
12664
|
notSpecified: 0,
|
|
@@ -12761,6 +13182,12 @@ namespace reference.`microsoft.graph` {
|
|
|
12761
13182
|
Unsynchronized: 6,
|
|
12762
13183
|
}
|
|
12763
13184
|
|
|
13185
|
+
enum onlineMeetingForwarders {
|
|
13186
|
+
everyone: 0,
|
|
13187
|
+
organizer: 1,
|
|
13188
|
+
unknownFutureValue: 2,
|
|
13189
|
+
}
|
|
13190
|
+
|
|
12764
13191
|
enum onlineMeetingPresenters {
|
|
12765
13192
|
everyone: 0,
|
|
12766
13193
|
organization: 1,
|
|
@@ -12833,14 +13260,6 @@ namespace reference.`microsoft.graph` {
|
|
|
12833
13260
|
unknownFutureValue: 1,
|
|
12834
13261
|
}
|
|
12835
13262
|
|
|
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
13263
|
enum pageLayoutType {
|
|
12845
13264
|
microsoftReserved: 0,
|
|
12846
13265
|
article: 1,
|
|
@@ -13021,6 +13440,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13021
13440
|
approvalCompletion: 8,
|
|
13022
13441
|
}
|
|
13023
13442
|
|
|
13443
|
+
enum policyPivotProperty {
|
|
13444
|
+
none: 0,
|
|
13445
|
+
activity: 1,
|
|
13446
|
+
location: 2,
|
|
13447
|
+
unknownFutureValue: 3,
|
|
13448
|
+
}
|
|
13449
|
+
|
|
13024
13450
|
enum postType {
|
|
13025
13451
|
regular: 0,
|
|
13026
13452
|
quick: 1,
|
|
@@ -13080,6 +13506,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13080
13506
|
unknownFutureValue: 3,
|
|
13081
13507
|
}
|
|
13082
13508
|
|
|
13509
|
+
enum protectionScopeState {
|
|
13510
|
+
notModified: 0,
|
|
13511
|
+
modified: 1,
|
|
13512
|
+
unknownFutureValue: 2,
|
|
13513
|
+
}
|
|
13514
|
+
|
|
13083
13515
|
@graphFlags
|
|
13084
13516
|
enum protocolType {
|
|
13085
13517
|
none: 0,
|
|
@@ -13293,6 +13725,22 @@ namespace reference.`microsoft.graph` {
|
|
|
13293
13725
|
unknownFutureValue: 20,
|
|
13294
13726
|
}
|
|
13295
13727
|
|
|
13728
|
+
enum resourceAccessStatus {
|
|
13729
|
+
none: 0,
|
|
13730
|
+
failure: 1,
|
|
13731
|
+
success: 2,
|
|
13732
|
+
unknownFutureValue: 4,
|
|
13733
|
+
}
|
|
13734
|
+
|
|
13735
|
+
@graphFlags
|
|
13736
|
+
enum resourceAccessType {
|
|
13737
|
+
none: 0,
|
|
13738
|
+
read: 1,
|
|
13739
|
+
write: 2,
|
|
13740
|
+
create: 4,
|
|
13741
|
+
unknownFutureValue: 8,
|
|
13742
|
+
}
|
|
13743
|
+
|
|
13296
13744
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13297
13745
|
enum responseType {
|
|
13298
13746
|
none: 0,
|
|
@@ -13339,6 +13787,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13339
13787
|
userChangedPasswordOnPremises: 15,
|
|
13340
13788
|
adminDismissedRiskForSignIn: 16,
|
|
13341
13789
|
adminConfirmedAccountSafe: 17,
|
|
13790
|
+
microsoftRevokedSessions: 18,
|
|
13342
13791
|
}
|
|
13343
13792
|
|
|
13344
13793
|
enum riskDetectionTimingType {
|
|
@@ -13543,12 +13992,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13543
13992
|
unknownFutureValue: 3,
|
|
13544
13993
|
}
|
|
13545
13994
|
|
|
13546
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13547
13995
|
@graphFlags
|
|
13548
13996
|
enum sensitivityLabelTarget {
|
|
13549
13997
|
email: 1,
|
|
13550
13998
|
site: 2,
|
|
13551
13999
|
unifiedGroup: 4,
|
|
14000
|
+
teamwork: 8,
|
|
14001
|
+
unknownFutureValue: 16,
|
|
13552
14002
|
}
|
|
13553
14003
|
|
|
13554
14004
|
enum sensorStatus {
|
|
@@ -14247,6 +14697,24 @@ namespace reference.`microsoft.graph` {
|
|
|
14247
14697
|
unknownFutureValue: 2,
|
|
14248
14698
|
}
|
|
14249
14699
|
|
|
14700
|
+
enum userActivityType {
|
|
14701
|
+
uploadText: 1,
|
|
14702
|
+
uploadFile: 2,
|
|
14703
|
+
downloadText: 3,
|
|
14704
|
+
downloadFile: 4,
|
|
14705
|
+
unknownFutureValue: 5,
|
|
14706
|
+
}
|
|
14707
|
+
|
|
14708
|
+
@graphFlags
|
|
14709
|
+
enum userActivityTypes {
|
|
14710
|
+
none: 0,
|
|
14711
|
+
uploadText: 1,
|
|
14712
|
+
uploadFile: 2,
|
|
14713
|
+
downloadText: 4,
|
|
14714
|
+
downloadFile: 8,
|
|
14715
|
+
unknownFutureValue: 16,
|
|
14716
|
+
}
|
|
14717
|
+
|
|
14250
14718
|
enum userDefaultAuthenticationMethod {
|
|
14251
14719
|
push: 0,
|
|
14252
14720
|
oath: 1,
|
|
@@ -14284,6 +14752,13 @@ namespace reference.`microsoft.graph` {
|
|
|
14284
14752
|
unknownFutureValue: 5,
|
|
14285
14753
|
}
|
|
14286
14754
|
|
|
14755
|
+
enum userScopeType {
|
|
14756
|
+
user: 1,
|
|
14757
|
+
group: 2,
|
|
14758
|
+
tenant: 3,
|
|
14759
|
+
unknownFutureValue: 4,
|
|
14760
|
+
}
|
|
14761
|
+
|
|
14287
14762
|
enum userSignInRecommendationScope {
|
|
14288
14763
|
tenant: 0,
|
|
14289
14764
|
application: 1,
|
|
@@ -14418,6 +14893,7 @@ namespace reference.`microsoft.graph.agentic` {
|
|
|
14418
14893
|
@publicNamespace("microsoft.graph.cloudlicensing")
|
|
14419
14894
|
namespace reference.`microsoft.graph.cloudLicensing` {
|
|
14420
14895
|
@complex model groupCloudLicensing {
|
|
14896
|
+
@references assignments: assignment[];
|
|
14421
14897
|
@contains usageRights: usageRight[];
|
|
14422
14898
|
}
|
|
14423
14899
|
|
|
@@ -14427,14 +14903,66 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
14427
14903
|
planName: string | null;
|
|
14428
14904
|
}
|
|
14429
14905
|
|
|
14906
|
+
@complex model subscription {
|
|
14907
|
+
nextLifecycleDate: offsetDateTime;
|
|
14908
|
+
startDate: offsetDateTime;
|
|
14909
|
+
state: subscriptionState;
|
|
14910
|
+
subscriptionId: string;
|
|
14911
|
+
tags: subscriptionTags;
|
|
14912
|
+
}
|
|
14913
|
+
|
|
14430
14914
|
@complex model userCloudLicensing {
|
|
14915
|
+
@references assignmentErrors: assignmentError[];
|
|
14916
|
+
@references assignments: assignment[];
|
|
14431
14917
|
@contains usageRights: usageRight[];
|
|
14918
|
+
@references waitingMembers: waitingMember[];
|
|
14919
|
+
}
|
|
14920
|
+
|
|
14921
|
+
@entity model adminCloudLicensing extends reference.`microsoft.graph`.entity {
|
|
14922
|
+
@contains allotments: allotment[];
|
|
14923
|
+
@contains assignmentErrors: assignmentError[];
|
|
14924
|
+
@contains assignments: assignment[];
|
|
14925
|
+
}
|
|
14926
|
+
|
|
14927
|
+
@entity model allotment extends reference.`microsoft.graph`.entity {
|
|
14928
|
+
allottedUnits: int32;
|
|
14929
|
+
assignableTo: assigneeTypes;
|
|
14930
|
+
consumedUnits: int32;
|
|
14931
|
+
services: service[];
|
|
14932
|
+
skuId: guid | null;
|
|
14933
|
+
skuPartNumber: string | null;
|
|
14934
|
+
subscriptions: subscription[];
|
|
14935
|
+
@references assignments: assignment[];
|
|
14936
|
+
@references waitingMembers: waitingMember[];
|
|
14937
|
+
}
|
|
14938
|
+
|
|
14939
|
+
@entity model assignment extends reference.`microsoft.graph`.entity {
|
|
14940
|
+
disabledServicePlanIds: guid;
|
|
14941
|
+
@references allotment: allotment | null;
|
|
14942
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14943
|
+
}
|
|
14944
|
+
|
|
14945
|
+
@entity model assignmentError extends reference.`microsoft.graph`.entity {
|
|
14946
|
+
code: string;
|
|
14947
|
+
message: string;
|
|
14948
|
+
occurrenceDateTime: offsetDateTime;
|
|
14949
|
+
skuId: guid | null;
|
|
14950
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14951
|
+
@references usageRight: usageRight | null;
|
|
14432
14952
|
}
|
|
14433
14953
|
|
|
14434
14954
|
@entity model usageRight extends reference.`microsoft.graph`.entity {
|
|
14435
14955
|
services: service[];
|
|
14436
14956
|
skuId: guid | null;
|
|
14437
14957
|
skuPartNumber: string | null;
|
|
14958
|
+
@references allotments: allotment[];
|
|
14959
|
+
@references assignments: assignment[];
|
|
14960
|
+
}
|
|
14961
|
+
|
|
14962
|
+
@entity model waitingMember extends reference.`microsoft.graph`.entity {
|
|
14963
|
+
waitingSinceDateTime: offsetDateTime;
|
|
14964
|
+
@references allotment: allotment;
|
|
14965
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
14438
14966
|
}
|
|
14439
14967
|
|
|
14440
14968
|
@graphFlags
|
|
@@ -14446,6 +14974,22 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
14446
14974
|
unknownFutureValue: 8,
|
|
14447
14975
|
}
|
|
14448
14976
|
|
|
14977
|
+
enum subscriptionState {
|
|
14978
|
+
active: 1,
|
|
14979
|
+
warning: 2,
|
|
14980
|
+
suspended: 3,
|
|
14981
|
+
lockedOut: 4,
|
|
14982
|
+
deleted: 5,
|
|
14983
|
+
unknownFutureValue: 6,
|
|
14984
|
+
}
|
|
14985
|
+
|
|
14986
|
+
@graphFlags
|
|
14987
|
+
enum subscriptionTags {
|
|
14988
|
+
none: 0,
|
|
14989
|
+
trial: 1,
|
|
14990
|
+
unknownFutureValue: 2,
|
|
14991
|
+
}
|
|
14992
|
+
|
|
14449
14993
|
}
|
|
14450
14994
|
@privatePreviewDefinition("organizationalUnit", "2025-08-12", "2025-11-30", "<theOwner>")
|
|
14451
14995
|
@publicNamespace("microsoft.graph.identitygovernance")
|
|
@@ -14849,6 +15393,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
14849
15393
|
}
|
|
14850
15394
|
|
|
14851
15395
|
}
|
|
15396
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
15397
|
+
@deprecatedDefinition("azureBlobContainer", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobContainer will be deprecated on April 30, 2023.")
|
|
15398
|
+
@deprecatedDefinition("azureBlobToken", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The azureBlobToken will be deprecated on April 30, 2023.")
|
|
15399
|
+
@deprecatedDefinition("outputFolderId", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The outputFolderId will be deprecated on April 30, 2023.")
|
|
15400
|
+
@deprecatedDefinition("fileInfo", "<ChangeLogCategory>", "2023-01-19", "2023-04-30", "The fileInfo will be deprecated on April 30, 2023.")
|
|
14852
15401
|
@publicNamespace("microsoft.graph.security")
|
|
14853
15402
|
namespace reference.`microsoft.graph.security` {
|
|
14854
15403
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
@@ -15546,6 +16095,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15546
16095
|
displayName: string | null;
|
|
15547
16096
|
domainName: string | null;
|
|
15548
16097
|
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
16098
|
+
tenantId: string | null;
|
|
15549
16099
|
userPrincipalName: string | null;
|
|
15550
16100
|
userSid: string | null;
|
|
15551
16101
|
}
|
|
@@ -15568,6 +16118,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15568
16118
|
alertPolicyId: string | null;
|
|
15569
16119
|
alertWebUrl: string | null;
|
|
15570
16120
|
assignedTo: string | null;
|
|
16121
|
+
categories: string[] | null;
|
|
16122
|
+
|
|
16123
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
15571
16124
|
category: string | null;
|
|
15572
16125
|
classification: alertClassification | null;
|
|
15573
16126
|
comments: alertComment[] | null;
|
|
@@ -15672,6 +16225,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15672
16225
|
externalId: string | null;
|
|
15673
16226
|
@contains caseMembers: ediscoveryCaseMember[];
|
|
15674
16227
|
@contains custodians: ediscoveryCustodian[];
|
|
16228
|
+
@contains legalHolds: ediscoveryHoldPolicy[];
|
|
15675
16229
|
@contains noncustodialDataSources: ediscoveryNoncustodialDataSource[];
|
|
15676
16230
|
@contains operations: caseOperation[];
|
|
15677
16231
|
@contains reviewSets: ediscoveryReviewSet[];
|
|
@@ -15716,18 +16270,40 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15716
16270
|
}
|
|
15717
16271
|
|
|
15718
16272
|
@entity model ediscoveryExportOperation extends caseOperation {
|
|
16273
|
+
|
|
16274
|
+
@graphDeprecated("azureBlobContainer")
|
|
16275
|
+
azureBlobContainer: string | null;
|
|
16276
|
+
|
|
16277
|
+
@graphDeprecated("azureBlobToken")
|
|
16278
|
+
azureBlobToken: string | null;
|
|
15719
16279
|
description: string | null;
|
|
15720
16280
|
exportFileMetadata: exportFileMetadata[] | null;
|
|
15721
16281
|
exportOptions: exportOptions | null;
|
|
15722
16282
|
exportStructure: exportFileStructure | null;
|
|
16283
|
+
|
|
16284
|
+
@graphDeprecated("outputFolderId")
|
|
16285
|
+
outputFolderId: string | null;
|
|
15723
16286
|
outputName: string | null;
|
|
15724
16287
|
@references reviewSet: ediscoveryReviewSet | null;
|
|
15725
16288
|
@references reviewSetQuery: ediscoveryReviewSetQuery | null;
|
|
15726
16289
|
}
|
|
15727
16290
|
|
|
16291
|
+
@entity model ediscoveryFile extends file {
|
|
16292
|
+
@references custodian: ediscoveryCustodian | null;
|
|
16293
|
+
@references tags: ediscoveryReviewTag[];
|
|
16294
|
+
}
|
|
16295
|
+
|
|
15728
16296
|
@entity model ediscoveryHoldOperation extends caseOperation {
|
|
15729
16297
|
}
|
|
15730
16298
|
|
|
16299
|
+
@entity model ediscoveryHoldPolicy extends policyBase {
|
|
16300
|
+
contentQuery: string | null;
|
|
16301
|
+
errors: string[] | null;
|
|
16302
|
+
isEnabled: boolean | null;
|
|
16303
|
+
@contains siteSources: siteSource[];
|
|
16304
|
+
@contains userSources: userSource[];
|
|
16305
|
+
}
|
|
16306
|
+
|
|
15731
16307
|
@entity model ediscoveryHoldPolicySyncOperation extends caseOperation {
|
|
15732
16308
|
reportFileMetadata: reportFileMetadata[] | null;
|
|
15733
16309
|
}
|
|
@@ -15741,9 +16317,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15741
16317
|
}
|
|
15742
16318
|
|
|
15743
16319
|
@entity model ediscoveryPurgeDataOperation extends caseOperation {
|
|
16320
|
+
reportFileMetadata: reportFileMetadata[] | null;
|
|
15744
16321
|
}
|
|
15745
16322
|
|
|
15746
16323
|
@entity model ediscoveryReviewSet extends dataSet {
|
|
16324
|
+
@contains files: ediscoveryFile[];
|
|
15747
16325
|
@contains queries: ediscoveryReviewSetQuery[];
|
|
15748
16326
|
}
|
|
15749
16327
|
|
|
@@ -15782,6 +16360,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15782
16360
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
15783
16361
|
}
|
|
15784
16362
|
|
|
16363
|
+
@entity model file extends reference.`microsoft.graph`.entity {
|
|
16364
|
+
content: stream | null;
|
|
16365
|
+
dateTime: offsetDateTime | null;
|
|
16366
|
+
extension: string | null;
|
|
16367
|
+
extractedTextContent: stream | null;
|
|
16368
|
+
mediaType: string | null;
|
|
16369
|
+
name: string | null;
|
|
16370
|
+
otherProperties: stringValueDictionary | null;
|
|
16371
|
+
processingStatus: fileProcessingStatus | null;
|
|
16372
|
+
senderOrAuthors: string[] | null;
|
|
16373
|
+
size: int64 | null;
|
|
16374
|
+
sourceType: sourceType | null;
|
|
16375
|
+
subjectTitle: string | null;
|
|
16376
|
+
}
|
|
16377
|
+
|
|
15785
16378
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
15786
16379
|
assignedTo: string | null;
|
|
15787
16380
|
classification: alertClassification | null;
|
|
@@ -15806,6 +16399,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
15806
16399
|
@references alerts: alert[];
|
|
15807
16400
|
}
|
|
15808
16401
|
|
|
16402
|
+
@abstract
|
|
16403
|
+
@entity model policyBase extends reference.`microsoft.graph`.entity {
|
|
16404
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
16405
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
16406
|
+
description: string | null;
|
|
16407
|
+
displayName: string | null;
|
|
16408
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
16409
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
16410
|
+
status: policyStatus | null;
|
|
16411
|
+
}
|
|
16412
|
+
|
|
15809
16413
|
@abstract
|
|
15810
16414
|
@entity model protectionRule extends reference.`microsoft.graph`.entity {
|
|
15811
16415
|
createdBy: string;
|
|
@@ -16248,12 +16852,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16248
16852
|
originalFiles: 1,
|
|
16249
16853
|
text: 2,
|
|
16250
16854
|
pdfReplacement: 4,
|
|
16855
|
+
@graphDeprecated("fileInfo")
|
|
16856
|
+
fileInfo: 8,
|
|
16251
16857
|
tags: 16,
|
|
16252
|
-
unknownFutureValue:
|
|
16253
|
-
splitSource:
|
|
16254
|
-
includeFolderAndPath:
|
|
16255
|
-
friendlyName:
|
|
16256
|
-
condensePaths:
|
|
16858
|
+
unknownFutureValue: 64,
|
|
16859
|
+
splitSource: 128,
|
|
16860
|
+
includeFolderAndPath: 256,
|
|
16861
|
+
friendlyName: 512,
|
|
16862
|
+
condensePaths: 1024,
|
|
16257
16863
|
}
|
|
16258
16864
|
|
|
16259
16865
|
@graphFlags
|
|
@@ -16274,6 +16880,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16274
16880
|
unknownFutureValue: 5,
|
|
16275
16881
|
}
|
|
16276
16882
|
|
|
16883
|
+
enum fileProcessingStatus {
|
|
16884
|
+
success: 0,
|
|
16885
|
+
internalError: 1,
|
|
16886
|
+
unknownError: 2,
|
|
16887
|
+
processingTimeout: 3,
|
|
16888
|
+
invalidFileId: 4,
|
|
16889
|
+
fileSizeIsZero: 5,
|
|
16890
|
+
fileSizeIsTooLarge: 6,
|
|
16891
|
+
fileDepthLimitExceeded: 7,
|
|
16892
|
+
fileBodyIsTooLong: 8,
|
|
16893
|
+
fileTypeIsUnknown: 9,
|
|
16894
|
+
fileTypeIsNotSupported: 10,
|
|
16895
|
+
malformedFile: 11,
|
|
16896
|
+
protectedFile: 12,
|
|
16897
|
+
poisonFile: 13,
|
|
16898
|
+
noReviewSetSummaryGenerated: 14,
|
|
16899
|
+
extractionException: 15,
|
|
16900
|
+
ocrProcessingTimeout: 16,
|
|
16901
|
+
ocrFileSizeExceedsLimit: 17,
|
|
16902
|
+
unknownFutureValue: 18,
|
|
16903
|
+
}
|
|
16904
|
+
|
|
16277
16905
|
@graphFlags
|
|
16278
16906
|
enum forceUserPasswordResetEntityIdentifier {
|
|
16279
16907
|
accountSid: 1,
|
|
@@ -16399,6 +17027,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
16399
17027
|
unknownFutureValue: 31,
|
|
16400
17028
|
}
|
|
16401
17029
|
|
|
17030
|
+
enum policyStatus {
|
|
17031
|
+
pending: 0,
|
|
17032
|
+
error: 1,
|
|
17033
|
+
success: 2,
|
|
17034
|
+
unknownFutureValue: 3,
|
|
17035
|
+
}
|
|
17036
|
+
|
|
16402
17037
|
enum protocolType {
|
|
16403
17038
|
tcp: 0,
|
|
16404
17039
|
udp: 1,
|